diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 0211cc3..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.babelrc.json b/.babelrc.json new file mode 100644 index 0000000..00ca841 --- /dev/null +++ b/.babelrc.json @@ -0,0 +1,16 @@ +{ + "sourceType": "unambiguous", + "presets": [ + [ + "@babel/preset-env", + { + "targets": { + "chrome": 100 + } + } + ], + "@babel/preset-typescript", + "@babel/preset-react" + ], + "plugins": [] +} diff --git a/.eslintrc.js b/.eslintrc.js index fb30fde..1592b38 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -17,11 +17,12 @@ module.exports = { } }, extends: [ - "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react - 'airbnb-typescript', - "plugin:@typescript-eslint/recommended", // Uses the recommended rules from the @typescript-eslint/eslint-plugin - "prettier/@typescript-eslint", // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier - "plugin:prettier/recommended" // Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array. + "plugin:react/recommended", + "airbnb-typescript", + "plugin:@typescript-eslint/recommended", + "prettier/@typescript-eslint", + "plugin:prettier/recommended", + "plugin:storybook/recommended" ], rules: { // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4e1bf9f..98d2022 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,11 +12,11 @@ jobs: runs-on: ubuntu-latest steps: # Checkout the code - - uses: actions/checkout@v3 - # Setup node with version 16.x and NPM registry url - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + # Setup node with version 20.x and NPM registry url + - uses: actions/setup-node@v4 with: - node-version: "16.x" + node-version: "20.x" registry-url: "https://registry.npmjs.org" # Run npm install to install project packages - run: npm install diff --git a/.storybook/main.ts b/.storybook/main.ts new file mode 100644 index 0000000..f56130c --- /dev/null +++ b/.storybook/main.ts @@ -0,0 +1,41 @@ +import type { StorybookConfig } from '@storybook/react-webpack5'; + +const config: StorybookConfig = { + stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'], + staticDirs: ['../src/images', '../src/fonts'], + addons: [ + '@storybook/addon-links', + '@storybook/addon-essentials', + '@storybook/addon-onboarding', + '@storybook/addon-interactions', + '@storybook/addon-mdx-gfm', + '@storybook/addon-webpack5-compiler-babel', + { + name: '@storybook/addon-styling-webpack', + options: { + rules: [ + // Replaces existing CSS rules with given rule + { + test: /\.css$/, + use: [ + 'style-loader', + 'css-loader', + { + loader: "sass-loader", + options: { implementation: require.resolve("sass") } + }, + ], + } + ] + } + } + ], + framework: { + name: '@storybook/react-webpack5', + options: {}, + }, + docs: { + autodocs: 'tag', + } +}; +export default config; diff --git a/.storybook/preview.ts b/.storybook/preview.ts new file mode 100644 index 0000000..c4e39a4 --- /dev/null +++ b/.storybook/preview.ts @@ -0,0 +1,15 @@ +import type { Preview } from '@storybook/react'; + +const preview: Preview = { + parameters: { + actions: { argTypesRegex: '^on[A-Z].*' }, + controls: { + matchers: { + color: /(background|color)$/i, + date: /Date$/, + }, + }, + }, +}; + +export default preview; diff --git a/.vscode/settings.json b/.vscode/settings.json index 6d7c8b2..90d6660 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,6 @@ { "editor.codeActionsOnSave": { - "source.fixAll": true + "source.fixAll": "explicit" }, "git.enableCommitSigning": true } diff --git a/CSSStub.js b/CSSStub.js new file mode 100644 index 0000000..f053ebf --- /dev/null +++ b/CSSStub.js @@ -0,0 +1 @@ +module.exports = {}; diff --git a/deploy.txt b/deploy.txt index 45c6e7d..c822d8c 100644 --- a/deploy.txt +++ b/deploy.txt @@ -9,4 +9,5 @@ If this is a release 2. npm publish --access public note npm version patch | npm version minor | npm version major from the command line can bump the version -DON'T forget to update the version in RCPCChart.tsx \ No newline at end of file + +So long as the version has been bumped, publishing should happen on creation of a new release on Github \ No newline at end of file diff --git a/fileTransformer.js b/fileTransformer.js new file mode 100644 index 0000000..2c32ed7 --- /dev/null +++ b/fileTransformer.js @@ -0,0 +1,9 @@ +const path = require("path"); + +module.exports = { + process(sourceText, sourcePath, options) { + return { + code: `module.exports = ${JSON.stringify(path.basename(sourcePath))};`, + }; + }, +}; diff --git a/jest.config.js b/jest.config.js deleted file mode 100644 index ccd649c..0000000 --- a/jest.config.js +++ /dev/null @@ -1,16 +0,0 @@ -module.exports = { - roots: ["src"], - setupFilesAfterEnv: ["./jest.setup.ts"], - moduleFileExtensions: ["ts", "tsx", "js"], - testPathIgnorePatterns: ["node_modules/"], - transform: { - "^.+\\.tsx?$": "ts-jest" - }, - testMatch: ["**/*.test.(ts|tsx)"], - moduleNameMapper: { - // Mocks out all these file formats when tests are run. - "\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": - "identity-obj-proxy", - "\\.(css|less|scss|sass)$": "identity-obj-proxy" - } -}; diff --git a/jest.config.ts b/jest.config.ts new file mode 100644 index 0000000..63aa64c --- /dev/null +++ b/jest.config.ts @@ -0,0 +1,17 @@ +import type {Config} from 'jest'; + +const config: Config = { + preset: 'ts-jest', + verbose: true, + moduleFileExtensions: ["js", "jsx", "ts", "tsx"], + moduleDirectories: ["node_modules", "src"], + transform: { + '\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': + '/fileTransformer.js', + }, + moduleNameMapper:{ + "\\.(css|less|sass|scss)$": '/CSSStub.js' + } +}; + +export default config; \ No newline at end of file diff --git a/jest.setup.ts b/jest.setup.ts deleted file mode 100644 index d0de870..0000000 --- a/jest.setup.ts +++ /dev/null @@ -1 +0,0 @@ -import "@testing-library/jest-dom"; diff --git a/output/index.js b/output/index.js deleted file mode 100644 index 5de1ca2..0000000 --- a/output/index.js +++ /dev/null @@ -1,321545 +0,0 @@ -'use strict'; - -Object.defineProperty(exports, '__esModule', { value: true }); - -function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } - -var React = require('react'); -var React__default = _interopDefault(React); -var styled = require('styled-components'); -var styled__default = _interopDefault(styled); - -function styleInject(css, ref) { - if ( ref === void 0 ) ref = {}; - var insertAt = ref.insertAt; - - if (!css || typeof document === 'undefined') { return; } - - var head = document.head || document.getElementsByTagName('head')[0]; - var style = document.createElement('style'); - style.type = 'text/css'; - - if (insertAt === 'top') { - if (head.firstChild) { - head.insertBefore(style, head.firstChild); - } else { - head.appendChild(style); - } - } else { - head.appendChild(style); - } - - if (style.styleSheet) { - style.styleSheet.cssText = css; - } else { - style.appendChild(document.createTextNode(css)); - } -} - -var css_248z = ".foo-bar {\n font-family: \"Montserrat\", Helvetica, Arial, sans-serif;\n color: #c8cacc; }\n"; -styleInject(css_248z); - -/*! ***************************************************************************** -Copyright (c) Microsoft Corporation. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. -***************************************************************************** */ -/* global Reflect, Promise */ - -var extendStatics = function(d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); -}; - -function __extends(d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); -} - -var __assign = function() { - __assign = Object.assign || function __assign(t) { - for (var s, i = 1, n = arguments.length; i < n; i++) { - s = arguments[i]; - for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; - } - return t; - }; - return __assign.apply(this, arguments); -}; - -function __rest(s, e) { - var t = {}; - for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) - t[p] = s[p]; - if (s != null && typeof Object.getOwnPropertySymbols === "function") - for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { - if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) - t[p[i]] = s[p[i]]; - } - return t; -} - -/** @deprecated */ -function __spreadArrays() { - for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; - for (var r = Array(s), k = 0, i = 0; i < il; i++) - for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) - r[k] = a[j]; - return r; -} - -function __makeTemplateObject(cooked, raw) { - if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; } - return cooked; -} - -function unwrapExports (x) { - return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x; -} - -function createCommonjsModule(fn, module) { - return module = { exports: {} }, fn(module, module.exports), module.exports; -} - -/** @license React v16.13.1 - * react-is.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ -var b="function"===typeof Symbol&&Symbol.for,c=b?Symbol.for("react.element"):60103,d=b?Symbol.for("react.portal"):60106,e=b?Symbol.for("react.fragment"):60107,f=b?Symbol.for("react.strict_mode"):60108,g=b?Symbol.for("react.profiler"):60114,h=b?Symbol.for("react.provider"):60109,k=b?Symbol.for("react.context"):60110,l=b?Symbol.for("react.async_mode"):60111,m=b?Symbol.for("react.concurrent_mode"):60111,n=b?Symbol.for("react.forward_ref"):60112,p=b?Symbol.for("react.suspense"):60113,q=b? -Symbol.for("react.suspense_list"):60120,r=b?Symbol.for("react.memo"):60115,t=b?Symbol.for("react.lazy"):60116,v=b?Symbol.for("react.block"):60121,w=b?Symbol.for("react.fundamental"):60117,x=b?Symbol.for("react.responder"):60118,y=b?Symbol.for("react.scope"):60119; -function z(a){if("object"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c:switch(a=a.type,a){case l:case m:case e:case g:case f:case p:return a;default:switch(a=a&&a.$$typeof,a){case k:case n:case t:case r:case h:return a;default:return u}}case d:return u}}}function A(a){return z(a)===m}var AsyncMode=l;var ConcurrentMode=m;var ContextConsumer=k;var ContextProvider=h;var Element$1=c;var ForwardRef=n;var Fragment=e;var Lazy=t;var Memo=r;var Portal=d; -var Profiler=g;var StrictMode=f;var Suspense=p;var isAsyncMode=function(a){return A(a)||z(a)===l};var isConcurrentMode=A;var isContextConsumer=function(a){return z(a)===k};var isContextProvider=function(a){return z(a)===h};var isElement=function(a){return "object"===typeof a&&null!==a&&a.$$typeof===c};var isForwardRef=function(a){return z(a)===n};var isFragment=function(a){return z(a)===e};var isLazy=function(a){return z(a)===t}; -var isMemo=function(a){return z(a)===r};var isPortal=function(a){return z(a)===d};var isProfiler=function(a){return z(a)===g};var isStrictMode=function(a){return z(a)===f};var isSuspense=function(a){return z(a)===p}; -var isValidElementType=function(a){return "string"===typeof a||"function"===typeof a||a===e||a===m||a===g||a===f||a===p||a===q||"object"===typeof a&&null!==a&&(a.$$typeof===t||a.$$typeof===r||a.$$typeof===h||a.$$typeof===k||a.$$typeof===n||a.$$typeof===w||a.$$typeof===x||a.$$typeof===y||a.$$typeof===v)};var typeOf=z; - -var reactIs_production_min = { - AsyncMode: AsyncMode, - ConcurrentMode: ConcurrentMode, - ContextConsumer: ContextConsumer, - ContextProvider: ContextProvider, - Element: Element$1, - ForwardRef: ForwardRef, - Fragment: Fragment, - Lazy: Lazy, - Memo: Memo, - Portal: Portal, - Profiler: Profiler, - StrictMode: StrictMode, - Suspense: Suspense, - isAsyncMode: isAsyncMode, - isConcurrentMode: isConcurrentMode, - isContextConsumer: isContextConsumer, - isContextProvider: isContextProvider, - isElement: isElement, - isForwardRef: isForwardRef, - isFragment: isFragment, - isLazy: isLazy, - isMemo: isMemo, - isPortal: isPortal, - isProfiler: isProfiler, - isStrictMode: isStrictMode, - isSuspense: isSuspense, - isValidElementType: isValidElementType, - typeOf: typeOf -}; - -var reactIs_development = createCommonjsModule(function (module, exports) { - - - -if (process.env.NODE_ENV !== "production") { - (function() { - -// The Symbol used to tag the ReactElement-like types. If there is no native Symbol -// nor polyfill, then a plain number is used for performance. -var hasSymbol = typeof Symbol === 'function' && Symbol.for; -var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7; -var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca; -var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb; -var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc; -var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2; -var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd; -var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary -// (unstable) APIs that have been removed. Can we remove the symbols? - -var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf; -var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf; -var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0; -var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1; -var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for('react.suspense_list') : 0xead8; -var REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3; -var REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4; -var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for('react.block') : 0xead9; -var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for('react.fundamental') : 0xead5; -var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for('react.responder') : 0xead6; -var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for('react.scope') : 0xead7; - -function isValidElementType(type) { - return typeof type === 'string' || typeof type === 'function' || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill. - type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === 'object' && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE); -} - -function typeOf(object) { - if (typeof object === 'object' && object !== null) { - var $$typeof = object.$$typeof; - - switch ($$typeof) { - case REACT_ELEMENT_TYPE: - var type = object.type; - - switch (type) { - case REACT_ASYNC_MODE_TYPE: - case REACT_CONCURRENT_MODE_TYPE: - case REACT_FRAGMENT_TYPE: - case REACT_PROFILER_TYPE: - case REACT_STRICT_MODE_TYPE: - case REACT_SUSPENSE_TYPE: - return type; - - default: - var $$typeofType = type && type.$$typeof; - - switch ($$typeofType) { - case REACT_CONTEXT_TYPE: - case REACT_FORWARD_REF_TYPE: - case REACT_LAZY_TYPE: - case REACT_MEMO_TYPE: - case REACT_PROVIDER_TYPE: - return $$typeofType; - - default: - return $$typeof; - } - - } - - case REACT_PORTAL_TYPE: - return $$typeof; - } - } - - return undefined; -} // AsyncMode is deprecated along with isAsyncMode - -var AsyncMode = REACT_ASYNC_MODE_TYPE; -var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE; -var ContextConsumer = REACT_CONTEXT_TYPE; -var ContextProvider = REACT_PROVIDER_TYPE; -var Element = REACT_ELEMENT_TYPE; -var ForwardRef = REACT_FORWARD_REF_TYPE; -var Fragment = REACT_FRAGMENT_TYPE; -var Lazy = REACT_LAZY_TYPE; -var Memo = REACT_MEMO_TYPE; -var Portal = REACT_PORTAL_TYPE; -var Profiler = REACT_PROFILER_TYPE; -var StrictMode = REACT_STRICT_MODE_TYPE; -var Suspense = REACT_SUSPENSE_TYPE; -var hasWarnedAboutDeprecatedIsAsyncMode = false; // AsyncMode should be deprecated - -function isAsyncMode(object) { - { - if (!hasWarnedAboutDeprecatedIsAsyncMode) { - hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint - - console['warn']('The ReactIs.isAsyncMode() alias has been deprecated, ' + 'and will be removed in React 17+. Update your code to use ' + 'ReactIs.isConcurrentMode() instead. It has the exact same API.'); - } - } - - return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE; -} -function isConcurrentMode(object) { - return typeOf(object) === REACT_CONCURRENT_MODE_TYPE; -} -function isContextConsumer(object) { - return typeOf(object) === REACT_CONTEXT_TYPE; -} -function isContextProvider(object) { - return typeOf(object) === REACT_PROVIDER_TYPE; -} -function isElement(object) { - return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE; -} -function isForwardRef(object) { - return typeOf(object) === REACT_FORWARD_REF_TYPE; -} -function isFragment(object) { - return typeOf(object) === REACT_FRAGMENT_TYPE; -} -function isLazy(object) { - return typeOf(object) === REACT_LAZY_TYPE; -} -function isMemo(object) { - return typeOf(object) === REACT_MEMO_TYPE; -} -function isPortal(object) { - return typeOf(object) === REACT_PORTAL_TYPE; -} -function isProfiler(object) { - return typeOf(object) === REACT_PROFILER_TYPE; -} -function isStrictMode(object) { - return typeOf(object) === REACT_STRICT_MODE_TYPE; -} -function isSuspense(object) { - return typeOf(object) === REACT_SUSPENSE_TYPE; -} - -exports.AsyncMode = AsyncMode; -exports.ConcurrentMode = ConcurrentMode; -exports.ContextConsumer = ContextConsumer; -exports.ContextProvider = ContextProvider; -exports.Element = Element; -exports.ForwardRef = ForwardRef; -exports.Fragment = Fragment; -exports.Lazy = Lazy; -exports.Memo = Memo; -exports.Portal = Portal; -exports.Profiler = Profiler; -exports.StrictMode = StrictMode; -exports.Suspense = Suspense; -exports.isAsyncMode = isAsyncMode; -exports.isConcurrentMode = isConcurrentMode; -exports.isContextConsumer = isContextConsumer; -exports.isContextProvider = isContextProvider; -exports.isElement = isElement; -exports.isForwardRef = isForwardRef; -exports.isFragment = isFragment; -exports.isLazy = isLazy; -exports.isMemo = isMemo; -exports.isPortal = isPortal; -exports.isProfiler = isProfiler; -exports.isStrictMode = isStrictMode; -exports.isSuspense = isSuspense; -exports.isValidElementType = isValidElementType; -exports.typeOf = typeOf; - })(); -} -}); -var reactIs_development_1 = reactIs_development.AsyncMode; -var reactIs_development_2 = reactIs_development.ConcurrentMode; -var reactIs_development_3 = reactIs_development.ContextConsumer; -var reactIs_development_4 = reactIs_development.ContextProvider; -var reactIs_development_5 = reactIs_development.Element; -var reactIs_development_6 = reactIs_development.ForwardRef; -var reactIs_development_7 = reactIs_development.Fragment; -var reactIs_development_8 = reactIs_development.Lazy; -var reactIs_development_9 = reactIs_development.Memo; -var reactIs_development_10 = reactIs_development.Portal; -var reactIs_development_11 = reactIs_development.Profiler; -var reactIs_development_12 = reactIs_development.StrictMode; -var reactIs_development_13 = reactIs_development.Suspense; -var reactIs_development_14 = reactIs_development.isAsyncMode; -var reactIs_development_15 = reactIs_development.isConcurrentMode; -var reactIs_development_16 = reactIs_development.isContextConsumer; -var reactIs_development_17 = reactIs_development.isContextProvider; -var reactIs_development_18 = reactIs_development.isElement; -var reactIs_development_19 = reactIs_development.isForwardRef; -var reactIs_development_20 = reactIs_development.isFragment; -var reactIs_development_21 = reactIs_development.isLazy; -var reactIs_development_22 = reactIs_development.isMemo; -var reactIs_development_23 = reactIs_development.isPortal; -var reactIs_development_24 = reactIs_development.isProfiler; -var reactIs_development_25 = reactIs_development.isStrictMode; -var reactIs_development_26 = reactIs_development.isSuspense; -var reactIs_development_27 = reactIs_development.isValidElementType; -var reactIs_development_28 = reactIs_development.typeOf; - -var reactIs = createCommonjsModule(function (module) { - -if (process.env.NODE_ENV === 'production') { - module.exports = reactIs_production_min; -} else { - module.exports = reactIs_development; -} -}); - -/* -object-assign -(c) Sindre Sorhus -@license MIT -*/ -/* eslint-disable no-unused-vars */ -var getOwnPropertySymbols = Object.getOwnPropertySymbols; -var hasOwnProperty = Object.prototype.hasOwnProperty; -var propIsEnumerable = Object.prototype.propertyIsEnumerable; - -function toObject(val) { - if (val === null || val === undefined) { - throw new TypeError('Object.assign cannot be called with null or undefined'); - } - - return Object(val); -} - -function shouldUseNative() { - try { - if (!Object.assign) { - return false; - } - - // Detect buggy property enumeration order in older V8 versions. - - // https://bugs.chromium.org/p/v8/issues/detail?id=4118 - var test1 = new String('abc'); // eslint-disable-line no-new-wrappers - test1[5] = 'de'; - if (Object.getOwnPropertyNames(test1)[0] === '5') { - return false; - } - - // https://bugs.chromium.org/p/v8/issues/detail?id=3056 - var test2 = {}; - for (var i = 0; i < 10; i++) { - test2['_' + String.fromCharCode(i)] = i; - } - var order2 = Object.getOwnPropertyNames(test2).map(function (n) { - return test2[n]; - }); - if (order2.join('') !== '0123456789') { - return false; - } - - // https://bugs.chromium.org/p/v8/issues/detail?id=3056 - var test3 = {}; - 'abcdefghijklmnopqrst'.split('').forEach(function (letter) { - test3[letter] = letter; - }); - if (Object.keys(Object.assign({}, test3)).join('') !== - 'abcdefghijklmnopqrst') { - return false; - } - - return true; - } catch (err) { - // We don't expect any of the above to throw, but better to be safe. - return false; - } -} - -var objectAssign = shouldUseNative() ? Object.assign : function (target, source) { - var from; - var to = toObject(target); - var symbols; - - for (var s = 1; s < arguments.length; s++) { - from = Object(arguments[s]); - - for (var key in from) { - if (hasOwnProperty.call(from, key)) { - to[key] = from[key]; - } - } - - if (getOwnPropertySymbols) { - symbols = getOwnPropertySymbols(from); - for (var i = 0; i < symbols.length; i++) { - if (propIsEnumerable.call(from, symbols[i])) { - to[symbols[i]] = from[symbols[i]]; - } - } - } - } - - return to; -}; - -/** - * Copyright (c) 2013-present, Facebook, Inc. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED'; - -var ReactPropTypesSecret_1 = ReactPropTypesSecret; - -var printWarning = function() {}; - -if (process.env.NODE_ENV !== 'production') { - var ReactPropTypesSecret$1 = ReactPropTypesSecret_1; - var loggedTypeFailures = {}; - var has = Function.call.bind(Object.prototype.hasOwnProperty); - - printWarning = function(text) { - var message = 'Warning: ' + text; - if (typeof console !== 'undefined') { - console.error(message); - } - try { - // --- Welcome to debugging React --- - // This error was thrown as a convenience so that you can use this stack - // to find the callsite that caused this warning to fire. - throw new Error(message); - } catch (x) {} - }; -} - -/** - * Assert that the values match with the type specs. - * Error messages are memorized and will only be shown once. - * - * @param {object} typeSpecs Map of name to a ReactPropType - * @param {object} values Runtime values that need to be type-checked - * @param {string} location e.g. "prop", "context", "child context" - * @param {string} componentName Name of the component for error messages. - * @param {?Function} getStack Returns the component stack. - * @private - */ -function checkPropTypes(typeSpecs, values, location, componentName, getStack) { - if (process.env.NODE_ENV !== 'production') { - for (var typeSpecName in typeSpecs) { - if (has(typeSpecs, typeSpecName)) { - var error; - // Prop type validation may throw. In case they do, we don't want to - // fail the render phase where it didn't fail before. So we log it. - // After these have been cleaned up, we'll let them throw. - try { - // This is intentionally an invariant that gets caught. It's the same - // behavior as without this statement except with a better message. - if (typeof typeSpecs[typeSpecName] !== 'function') { - var err = Error( - (componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + - 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' - ); - err.name = 'Invariant Violation'; - throw err; - } - error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret$1); - } catch (ex) { - error = ex; - } - if (error && !(error instanceof Error)) { - printWarning( - (componentName || 'React class') + ': type specification of ' + - location + ' `' + typeSpecName + '` is invalid; the type checker ' + - 'function must return `null` or an `Error` but returned a ' + typeof error + '. ' + - 'You may have forgotten to pass an argument to the type checker ' + - 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + - 'shape all require an argument).' - ); - } - if (error instanceof Error && !(error.message in loggedTypeFailures)) { - // Only monitor this failure once because there tends to be a lot of the - // same error. - loggedTypeFailures[error.message] = true; - - var stack = getStack ? getStack() : ''; - - printWarning( - 'Failed ' + location + ' type: ' + error.message + (stack != null ? stack : '') - ); - } - } - } - } -} - -/** - * Resets warning cache when testing. - * - * @private - */ -checkPropTypes.resetWarningCache = function() { - if (process.env.NODE_ENV !== 'production') { - loggedTypeFailures = {}; - } -}; - -var checkPropTypes_1 = checkPropTypes; - -var has$1 = Function.call.bind(Object.prototype.hasOwnProperty); -var printWarning$1 = function() {}; - -if (process.env.NODE_ENV !== 'production') { - printWarning$1 = function(text) { - var message = 'Warning: ' + text; - if (typeof console !== 'undefined') { - console.error(message); - } - try { - // --- Welcome to debugging React --- - // This error was thrown as a convenience so that you can use this stack - // to find the callsite that caused this warning to fire. - throw new Error(message); - } catch (x) {} - }; -} - -function emptyFunctionThatReturnsNull() { - return null; -} - -var factoryWithTypeCheckers = function(isValidElement, throwOnDirectAccess) { - /* global Symbol */ - var ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator; - var FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec. - - /** - * Returns the iterator method function contained on the iterable object. - * - * Be sure to invoke the function with the iterable as context: - * - * var iteratorFn = getIteratorFn(myIterable); - * if (iteratorFn) { - * var iterator = iteratorFn.call(myIterable); - * ... - * } - * - * @param {?object} maybeIterable - * @return {?function} - */ - function getIteratorFn(maybeIterable) { - var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]); - if (typeof iteratorFn === 'function') { - return iteratorFn; - } - } - - /** - * Collection of methods that allow declaration and validation of props that are - * supplied to React components. Example usage: - * - * var Props = require('ReactPropTypes'); - * var MyArticle = React.createClass({ - * propTypes: { - * // An optional string prop named "description". - * description: Props.string, - * - * // A required enum prop named "category". - * category: Props.oneOf(['News','Photos']).isRequired, - * - * // A prop named "dialog" that requires an instance of Dialog. - * dialog: Props.instanceOf(Dialog).isRequired - * }, - * render: function() { ... } - * }); - * - * A more formal specification of how these methods are used: - * - * type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...) - * decl := ReactPropTypes.{type}(.isRequired)? - * - * Each and every declaration produces a function with the same signature. This - * allows the creation of custom validation functions. For example: - * - * var MyLink = React.createClass({ - * propTypes: { - * // An optional string or URI prop named "href". - * href: function(props, propName, componentName) { - * var propValue = props[propName]; - * if (propValue != null && typeof propValue !== 'string' && - * !(propValue instanceof URI)) { - * return new Error( - * 'Expected a string or an URI for ' + propName + ' in ' + - * componentName - * ); - * } - * } - * }, - * render: function() {...} - * }); - * - * @internal - */ - - var ANONYMOUS = '<>'; - - // Important! - // Keep this list in sync with production version in `./factoryWithThrowingShims.js`. - var ReactPropTypes = { - array: createPrimitiveTypeChecker('array'), - bool: createPrimitiveTypeChecker('boolean'), - func: createPrimitiveTypeChecker('function'), - number: createPrimitiveTypeChecker('number'), - object: createPrimitiveTypeChecker('object'), - string: createPrimitiveTypeChecker('string'), - symbol: createPrimitiveTypeChecker('symbol'), - - any: createAnyTypeChecker(), - arrayOf: createArrayOfTypeChecker, - element: createElementTypeChecker(), - elementType: createElementTypeTypeChecker(), - instanceOf: createInstanceTypeChecker, - node: createNodeChecker(), - objectOf: createObjectOfTypeChecker, - oneOf: createEnumTypeChecker, - oneOfType: createUnionTypeChecker, - shape: createShapeTypeChecker, - exact: createStrictShapeTypeChecker, - }; - - /** - * inlined Object.is polyfill to avoid requiring consumers ship their own - * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is - */ - /*eslint-disable no-self-compare*/ - function is(x, y) { - // SameValue algorithm - if (x === y) { - // Steps 1-5, 7-10 - // Steps 6.b-6.e: +0 != -0 - return x !== 0 || 1 / x === 1 / y; - } else { - // Step 6.a: NaN == NaN - return x !== x && y !== y; - } - } - /*eslint-enable no-self-compare*/ - - /** - * We use an Error-like object for backward compatibility as people may call - * PropTypes directly and inspect their output. However, we don't use real - * Errors anymore. We don't inspect their stack anyway, and creating them - * is prohibitively expensive if they are created too often, such as what - * happens in oneOfType() for any type before the one that matched. - */ - function PropTypeError(message) { - this.message = message; - this.stack = ''; - } - // Make `instanceof Error` still work for returned errors. - PropTypeError.prototype = Error.prototype; - - function createChainableTypeChecker(validate) { - if (process.env.NODE_ENV !== 'production') { - var manualPropTypeCallCache = {}; - var manualPropTypeWarningCount = 0; - } - function checkType(isRequired, props, propName, componentName, location, propFullName, secret) { - componentName = componentName || ANONYMOUS; - propFullName = propFullName || propName; - - if (secret !== ReactPropTypesSecret_1) { - if (throwOnDirectAccess) { - // New behavior only for users of `prop-types` package - var err = new Error( - 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' + - 'Use `PropTypes.checkPropTypes()` to call them. ' + - 'Read more at http://fb.me/use-check-prop-types' - ); - err.name = 'Invariant Violation'; - throw err; - } else if (process.env.NODE_ENV !== 'production' && typeof console !== 'undefined') { - // Old behavior for people using React.PropTypes - var cacheKey = componentName + ':' + propName; - if ( - !manualPropTypeCallCache[cacheKey] && - // Avoid spamming the console because they are often not actionable except for lib authors - manualPropTypeWarningCount < 3 - ) { - printWarning$1( - 'You are manually calling a React.PropTypes validation ' + - 'function for the `' + propFullName + '` prop on `' + componentName + '`. This is deprecated ' + - 'and will throw in the standalone `prop-types` package. ' + - 'You may be seeing this warning due to a third-party PropTypes ' + - 'library. See https://fb.me/react-warning-dont-call-proptypes ' + 'for details.' - ); - manualPropTypeCallCache[cacheKey] = true; - manualPropTypeWarningCount++; - } - } - } - if (props[propName] == null) { - if (isRequired) { - if (props[propName] === null) { - return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required ' + ('in `' + componentName + '`, but its value is `null`.')); - } - return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required in ' + ('`' + componentName + '`, but its value is `undefined`.')); - } - return null; - } else { - return validate(props, propName, componentName, location, propFullName); - } - } - - var chainedCheckType = checkType.bind(null, false); - chainedCheckType.isRequired = checkType.bind(null, true); - - return chainedCheckType; - } - - function createPrimitiveTypeChecker(expectedType) { - function validate(props, propName, componentName, location, propFullName, secret) { - var propValue = props[propName]; - var propType = getPropType(propValue); - if (propType !== expectedType) { - // `propValue` being instance of, say, date/regexp, pass the 'object' - // check, but we can offer a more precise error message here rather than - // 'of type `object`'. - var preciseType = getPreciseType(propValue); - - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + preciseType + '` supplied to `' + componentName + '`, expected ') + ('`' + expectedType + '`.')); - } - return null; - } - return createChainableTypeChecker(validate); - } - - function createAnyTypeChecker() { - return createChainableTypeChecker(emptyFunctionThatReturnsNull); - } - - function createArrayOfTypeChecker(typeChecker) { - function validate(props, propName, componentName, location, propFullName) { - if (typeof typeChecker !== 'function') { - return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside arrayOf.'); - } - var propValue = props[propName]; - if (!Array.isArray(propValue)) { - var propType = getPropType(propValue); - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.')); - } - for (var i = 0; i < propValue.length; i++) { - var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret_1); - if (error instanceof Error) { - return error; - } - } - return null; - } - return createChainableTypeChecker(validate); - } - - function createElementTypeChecker() { - function validate(props, propName, componentName, location, propFullName) { - var propValue = props[propName]; - if (!isValidElement(propValue)) { - var propType = getPropType(propValue); - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.')); - } - return null; - } - return createChainableTypeChecker(validate); - } - - function createElementTypeTypeChecker() { - function validate(props, propName, componentName, location, propFullName) { - var propValue = props[propName]; - if (!reactIs.isValidElementType(propValue)) { - var propType = getPropType(propValue); - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement type.')); - } - return null; - } - return createChainableTypeChecker(validate); - } - - function createInstanceTypeChecker(expectedClass) { - function validate(props, propName, componentName, location, propFullName) { - if (!(props[propName] instanceof expectedClass)) { - var expectedClassName = expectedClass.name || ANONYMOUS; - var actualClassName = getClassName(props[propName]); - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + actualClassName + '` supplied to `' + componentName + '`, expected ') + ('instance of `' + expectedClassName + '`.')); - } - return null; - } - return createChainableTypeChecker(validate); - } - - function createEnumTypeChecker(expectedValues) { - if (!Array.isArray(expectedValues)) { - if (process.env.NODE_ENV !== 'production') { - if (arguments.length > 1) { - printWarning$1( - 'Invalid arguments supplied to oneOf, expected an array, got ' + arguments.length + ' arguments. ' + - 'A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).' - ); - } else { - printWarning$1('Invalid argument supplied to oneOf, expected an array.'); - } - } - return emptyFunctionThatReturnsNull; - } - - function validate(props, propName, componentName, location, propFullName) { - var propValue = props[propName]; - for (var i = 0; i < expectedValues.length; i++) { - if (is(propValue, expectedValues[i])) { - return null; - } - } - - var valuesString = JSON.stringify(expectedValues, function replacer(key, value) { - var type = getPreciseType(value); - if (type === 'symbol') { - return String(value); - } - return value; - }); - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of value `' + String(propValue) + '` ' + ('supplied to `' + componentName + '`, expected one of ' + valuesString + '.')); - } - return createChainableTypeChecker(validate); - } - - function createObjectOfTypeChecker(typeChecker) { - function validate(props, propName, componentName, location, propFullName) { - if (typeof typeChecker !== 'function') { - return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside objectOf.'); - } - var propValue = props[propName]; - var propType = getPropType(propValue); - if (propType !== 'object') { - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an object.')); - } - for (var key in propValue) { - if (has$1(propValue, key)) { - var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret_1); - if (error instanceof Error) { - return error; - } - } - } - return null; - } - return createChainableTypeChecker(validate); - } - - function createUnionTypeChecker(arrayOfTypeCheckers) { - if (!Array.isArray(arrayOfTypeCheckers)) { - process.env.NODE_ENV !== 'production' ? printWarning$1('Invalid argument supplied to oneOfType, expected an instance of array.') : void 0; - return emptyFunctionThatReturnsNull; - } - - for (var i = 0; i < arrayOfTypeCheckers.length; i++) { - var checker = arrayOfTypeCheckers[i]; - if (typeof checker !== 'function') { - printWarning$1( - 'Invalid argument supplied to oneOfType. Expected an array of check functions, but ' + - 'received ' + getPostfixForTypeWarning(checker) + ' at index ' + i + '.' - ); - return emptyFunctionThatReturnsNull; - } - } - - function validate(props, propName, componentName, location, propFullName) { - for (var i = 0; i < arrayOfTypeCheckers.length; i++) { - var checker = arrayOfTypeCheckers[i]; - if (checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret_1) == null) { - return null; - } - } - - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`.')); - } - return createChainableTypeChecker(validate); - } - - function createNodeChecker() { - function validate(props, propName, componentName, location, propFullName) { - if (!isNode(props[propName])) { - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`, expected a ReactNode.')); - } - return null; - } - return createChainableTypeChecker(validate); - } - - function createShapeTypeChecker(shapeTypes) { - function validate(props, propName, componentName, location, propFullName) { - var propValue = props[propName]; - var propType = getPropType(propValue); - if (propType !== 'object') { - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.')); - } - for (var key in shapeTypes) { - var checker = shapeTypes[key]; - if (!checker) { - continue; - } - var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret_1); - if (error) { - return error; - } - } - return null; - } - return createChainableTypeChecker(validate); - } - - function createStrictShapeTypeChecker(shapeTypes) { - function validate(props, propName, componentName, location, propFullName) { - var propValue = props[propName]; - var propType = getPropType(propValue); - if (propType !== 'object') { - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.')); - } - // We need to check all keys in case some are required but missing from - // props. - var allKeys = objectAssign({}, props[propName], shapeTypes); - for (var key in allKeys) { - var checker = shapeTypes[key]; - if (!checker) { - return new PropTypeError( - 'Invalid ' + location + ' `' + propFullName + '` key `' + key + '` supplied to `' + componentName + '`.' + - '\nBad object: ' + JSON.stringify(props[propName], null, ' ') + - '\nValid keys: ' + JSON.stringify(Object.keys(shapeTypes), null, ' ') - ); - } - var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret_1); - if (error) { - return error; - } - } - return null; - } - - return createChainableTypeChecker(validate); - } - - function isNode(propValue) { - switch (typeof propValue) { - case 'number': - case 'string': - case 'undefined': - return true; - case 'boolean': - return !propValue; - case 'object': - if (Array.isArray(propValue)) { - return propValue.every(isNode); - } - if (propValue === null || isValidElement(propValue)) { - return true; - } - - var iteratorFn = getIteratorFn(propValue); - if (iteratorFn) { - var iterator = iteratorFn.call(propValue); - var step; - if (iteratorFn !== propValue.entries) { - while (!(step = iterator.next()).done) { - if (!isNode(step.value)) { - return false; - } - } - } else { - // Iterator will provide entry [k,v] tuples rather than values. - while (!(step = iterator.next()).done) { - var entry = step.value; - if (entry) { - if (!isNode(entry[1])) { - return false; - } - } - } - } - } else { - return false; - } - - return true; - default: - return false; - } - } - - function isSymbol(propType, propValue) { - // Native Symbol. - if (propType === 'symbol') { - return true; - } - - // falsy value can't be a Symbol - if (!propValue) { - return false; - } - - // 19.4.3.5 Symbol.prototype[@@toStringTag] === 'Symbol' - if (propValue['@@toStringTag'] === 'Symbol') { - return true; - } - - // Fallback for non-spec compliant Symbols which are polyfilled. - if (typeof Symbol === 'function' && propValue instanceof Symbol) { - return true; - } - - return false; - } - - // Equivalent of `typeof` but with special handling for array and regexp. - function getPropType(propValue) { - var propType = typeof propValue; - if (Array.isArray(propValue)) { - return 'array'; - } - if (propValue instanceof RegExp) { - // Old webkits (at least until Android 4.0) return 'function' rather than - // 'object' for typeof a RegExp. We'll normalize this here so that /bla/ - // passes PropTypes.object. - return 'object'; - } - if (isSymbol(propType, propValue)) { - return 'symbol'; - } - return propType; - } - - // This handles more types than `getPropType`. Only used for error messages. - // See `createPrimitiveTypeChecker`. - function getPreciseType(propValue) { - if (typeof propValue === 'undefined' || propValue === null) { - return '' + propValue; - } - var propType = getPropType(propValue); - if (propType === 'object') { - if (propValue instanceof Date) { - return 'date'; - } else if (propValue instanceof RegExp) { - return 'regexp'; - } - } - return propType; - } - - // Returns a string that is postfixed to a warning about an invalid type. - // For example, "undefined" or "of type array" - function getPostfixForTypeWarning(value) { - var type = getPreciseType(value); - switch (type) { - case 'array': - case 'object': - return 'an ' + type; - case 'boolean': - case 'date': - case 'regexp': - return 'a ' + type; - default: - return type; - } - } - - // Returns class name of the object, if any. - function getClassName(propValue) { - if (!propValue.constructor || !propValue.constructor.name) { - return ANONYMOUS; - } - return propValue.constructor.name; - } - - ReactPropTypes.checkPropTypes = checkPropTypes_1; - ReactPropTypes.resetWarningCache = checkPropTypes_1.resetWarningCache; - ReactPropTypes.PropTypes = ReactPropTypes; - - return ReactPropTypes; -}; - -function emptyFunction() {} -function emptyFunctionWithReset() {} -emptyFunctionWithReset.resetWarningCache = emptyFunction; - -var factoryWithThrowingShims = function() { - function shim(props, propName, componentName, location, propFullName, secret) { - if (secret === ReactPropTypesSecret_1) { - // It is still safe when called from React. - return; - } - var err = new Error( - 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' + - 'Use PropTypes.checkPropTypes() to call them. ' + - 'Read more at http://fb.me/use-check-prop-types' - ); - err.name = 'Invariant Violation'; - throw err; - } shim.isRequired = shim; - function getShim() { - return shim; - } // Important! - // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`. - var ReactPropTypes = { - array: shim, - bool: shim, - func: shim, - number: shim, - object: shim, - string: shim, - symbol: shim, - - any: shim, - arrayOf: getShim, - element: shim, - elementType: shim, - instanceOf: getShim, - node: shim, - objectOf: getShim, - oneOf: getShim, - oneOfType: getShim, - shape: getShim, - exact: getShim, - - checkPropTypes: emptyFunctionWithReset, - resetWarningCache: emptyFunction - }; - - ReactPropTypes.PropTypes = ReactPropTypes; - - return ReactPropTypes; -}; - -var propTypes = createCommonjsModule(function (module) { -/** - * Copyright (c) 2013-present, Facebook, Inc. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -if (process.env.NODE_ENV !== 'production') { - var ReactIs = reactIs; - - // By explicitly using `prop-types` you are opting into new development behavior. - // http://fb.me/prop-types-in-prod - var throwOnDirectAccess = true; - module.exports = factoryWithTypeCheckers(ReactIs.isElement, throwOnDirectAccess); -} else { - // By explicitly using `prop-types` you are opting into new production behavior. - // http://fb.me/prop-types-in-prod - module.exports = factoryWithThrowingShims(); -} -}); - -function linear(t) { - return +t; -} - -function quadIn(t) { - return t * t; -} - -function quadOut(t) { - return t * (2 - t); -} - -function quadInOut(t) { - return ((t *= 2) <= 1 ? t * t : --t * (2 - t) + 1) / 2; -} - -function cubicIn(t) { - return t * t * t; -} - -function cubicOut(t) { - return --t * t * t + 1; -} - -function cubicInOut(t) { - return ((t *= 2) <= 1 ? t * t * t : (t -= 2) * t * t + 2) / 2; -} - -var exponent = 3; - -var polyIn = (function custom(e) { - e = +e; - - function polyIn(t) { - return Math.pow(t, e); - } - - polyIn.exponent = custom; - - return polyIn; -})(exponent); - -var polyOut = (function custom(e) { - e = +e; - - function polyOut(t) { - return 1 - Math.pow(1 - t, e); - } - - polyOut.exponent = custom; - - return polyOut; -})(exponent); - -var polyInOut = (function custom(e) { - e = +e; - - function polyInOut(t) { - return ((t *= 2) <= 1 ? Math.pow(t, e) : 2 - Math.pow(2 - t, e)) / 2; - } - - polyInOut.exponent = custom; - - return polyInOut; -})(exponent); - -var pi = Math.PI, - halfPi = pi / 2; - -function sinIn(t) { - return (+t === 1) ? 1 : 1 - Math.cos(t * halfPi); -} - -function sinOut(t) { - return Math.sin(t * halfPi); -} - -function sinInOut(t) { - return (1 - Math.cos(pi * t)) / 2; -} - -// tpmt is two power minus ten times t scaled to [0,1] -function tpmt(x) { - return (Math.pow(2, -10 * x) - 0.0009765625) * 1.0009775171065494; -} - -function expIn(t) { - return tpmt(1 - +t); -} - -function expOut(t) { - return 1 - tpmt(t); -} - -function expInOut(t) { - return ((t *= 2) <= 1 ? tpmt(1 - t) : 2 - tpmt(t - 1)) / 2; -} - -function circleIn(t) { - return 1 - Math.sqrt(1 - t * t); -} - -function circleOut(t) { - return Math.sqrt(1 - --t * t); -} - -function circleInOut(t) { - return ((t *= 2) <= 1 ? 1 - Math.sqrt(1 - t * t) : Math.sqrt(1 - (t -= 2) * t) + 1) / 2; -} - -var b1 = 4 / 11, - b2 = 6 / 11, - b3 = 8 / 11, - b4 = 3 / 4, - b5 = 9 / 11, - b6 = 10 / 11, - b7 = 15 / 16, - b8 = 21 / 22, - b9 = 63 / 64, - b0 = 1 / b1 / b1; - -function bounceIn(t) { - return 1 - bounceOut(1 - t); -} - -function bounceOut(t) { - return (t = +t) < b1 ? b0 * t * t : t < b3 ? b0 * (t -= b2) * t + b4 : t < b6 ? b0 * (t -= b5) * t + b7 : b0 * (t -= b8) * t + b9; -} - -function bounceInOut(t) { - return ((t *= 2) <= 1 ? 1 - bounceOut(1 - t) : bounceOut(t - 1) + 1) / 2; -} - -var overshoot = 1.70158; - -var backIn = (function custom(s) { - s = +s; - - function backIn(t) { - return (t = +t) * t * (s * (t - 1) + t); - } - - backIn.overshoot = custom; - - return backIn; -})(overshoot); - -var backOut = (function custom(s) { - s = +s; - - function backOut(t) { - return --t * t * ((t + 1) * s + t) + 1; - } - - backOut.overshoot = custom; - - return backOut; -})(overshoot); - -var backInOut = (function custom(s) { - s = +s; - - function backInOut(t) { - return ((t *= 2) < 1 ? t * t * ((s + 1) * t - s) : (t -= 2) * t * ((s + 1) * t + s) + 2) / 2; - } - - backInOut.overshoot = custom; - - return backInOut; -})(overshoot); - -var tau = 2 * Math.PI, - amplitude = 1, - period = 0.3; - -var elasticIn = (function custom(a, p) { - var s = Math.asin(1 / (a = Math.max(1, a))) * (p /= tau); - - function elasticIn(t) { - return a * tpmt(-(--t)) * Math.sin((s - t) / p); - } - - elasticIn.amplitude = function(a) { return custom(a, p * tau); }; - elasticIn.period = function(p) { return custom(a, p); }; - - return elasticIn; -})(amplitude, period); - -var elasticOut = (function custom(a, p) { - var s = Math.asin(1 / (a = Math.max(1, a))) * (p /= tau); - - function elasticOut(t) { - return 1 - a * tpmt(t = +t) * Math.sin((t + s) / p); - } - - elasticOut.amplitude = function(a) { return custom(a, p * tau); }; - elasticOut.period = function(p) { return custom(a, p); }; - - return elasticOut; -})(amplitude, period); - -var elasticInOut = (function custom(a, p) { - var s = Math.asin(1 / (a = Math.max(1, a))) * (p /= tau); - - function elasticInOut(t) { - return ((t = t * 2 - 1) < 0 - ? a * tpmt(-t) * Math.sin((s - t) / p) - : 2 - a * tpmt(t) * Math.sin((s + t) / p)) / 2; - } - - elasticInOut.amplitude = function(a) { return custom(a, p * tau); }; - elasticInOut.period = function(p) { return custom(a, p); }; - - return elasticInOut; -})(amplitude, period); - - - -var d3Ease = /*#__PURE__*/Object.freeze({ - __proto__: null, - easeLinear: linear, - easeQuad: quadInOut, - easeQuadIn: quadIn, - easeQuadOut: quadOut, - easeQuadInOut: quadInOut, - easeCubic: cubicInOut, - easeCubicIn: cubicIn, - easeCubicOut: cubicOut, - easeCubicInOut: cubicInOut, - easePoly: polyInOut, - easePolyIn: polyIn, - easePolyOut: polyOut, - easePolyInOut: polyInOut, - easeSin: sinInOut, - easeSinIn: sinIn, - easeSinOut: sinOut, - easeSinInOut: sinInOut, - easeExp: expInOut, - easeExpIn: expIn, - easeExpOut: expOut, - easeExpInOut: expInOut, - easeCircle: circleInOut, - easeCircleIn: circleIn, - easeCircleOut: circleOut, - easeCircleInOut: circleInOut, - easeBounce: bounceOut, - easeBounceIn: bounceIn, - easeBounceOut: bounceOut, - easeBounceInOut: bounceInOut, - easeBack: backInOut, - easeBackIn: backIn, - easeBackOut: backOut, - easeBackInOut: backInOut, - easeElastic: elasticOut, - easeElasticIn: elasticIn, - easeElasticOut: elasticOut, - easeElasticInOut: elasticInOut -}); - -/** - * A specialized version of `_.map` for arrays without support for iteratee - * shorthands. - * - * @private - * @param {Array} [array] The array to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Array} Returns the new mapped array. - */ -function arrayMap(array, iteratee) { - var index = -1, - length = array == null ? 0 : array.length, - result = Array(length); - - while (++index < length) { - result[index] = iteratee(array[index], index, array); - } - return result; -} - -var _arrayMap = arrayMap; - -/** - * Checks if `value` is classified as an `Array` object. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an array, else `false`. - * @example - * - * _.isArray([1, 2, 3]); - * // => true - * - * _.isArray(document.body.children); - * // => false - * - * _.isArray('abc'); - * // => false - * - * _.isArray(_.noop); - * // => false - */ -var isArray = Array.isArray; - -var isArray_1 = isArray; - -/** Detect free variable `global` from Node.js. */ -var freeGlobal = typeof global == 'object' && global && global.Object === Object && global; - -var _freeGlobal = freeGlobal; - -/** Detect free variable `self`. */ -var freeSelf = typeof self == 'object' && self && self.Object === Object && self; - -/** Used as a reference to the global object. */ -var root = _freeGlobal || freeSelf || Function('return this')(); - -var _root = root; - -/** Built-in value references. */ -var Symbol$1 = _root.Symbol; - -var _Symbol = Symbol$1; - -/** Used for built-in method references. */ -var objectProto = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty$1 = objectProto.hasOwnProperty; - -/** - * Used to resolve the - * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) - * of values. - */ -var nativeObjectToString = objectProto.toString; - -/** Built-in value references. */ -var symToStringTag = _Symbol ? _Symbol.toStringTag : undefined; - -/** - * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. - * - * @private - * @param {*} value The value to query. - * @returns {string} Returns the raw `toStringTag`. - */ -function getRawTag(value) { - var isOwn = hasOwnProperty$1.call(value, symToStringTag), - tag = value[symToStringTag]; - - try { - value[symToStringTag] = undefined; - var unmasked = true; - } catch (e) {} - - var result = nativeObjectToString.call(value); - if (unmasked) { - if (isOwn) { - value[symToStringTag] = tag; - } else { - delete value[symToStringTag]; - } - } - return result; -} - -var _getRawTag = getRawTag; - -/** Used for built-in method references. */ -var objectProto$1 = Object.prototype; - -/** - * Used to resolve the - * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) - * of values. - */ -var nativeObjectToString$1 = objectProto$1.toString; - -/** - * Converts `value` to a string using `Object.prototype.toString`. - * - * @private - * @param {*} value The value to convert. - * @returns {string} Returns the converted string. - */ -function objectToString(value) { - return nativeObjectToString$1.call(value); -} - -var _objectToString = objectToString; - -/** `Object#toString` result references. */ -var nullTag = '[object Null]', - undefinedTag = '[object Undefined]'; - -/** Built-in value references. */ -var symToStringTag$1 = _Symbol ? _Symbol.toStringTag : undefined; - -/** - * The base implementation of `getTag` without fallbacks for buggy environments. - * - * @private - * @param {*} value The value to query. - * @returns {string} Returns the `toStringTag`. - */ -function baseGetTag(value) { - if (value == null) { - return value === undefined ? undefinedTag : nullTag; - } - return (symToStringTag$1 && symToStringTag$1 in Object(value)) - ? _getRawTag(value) - : _objectToString(value); -} - -var _baseGetTag = baseGetTag; - -/** - * Checks if `value` is object-like. A value is object-like if it's not `null` - * and has a `typeof` result of "object". - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is object-like, else `false`. - * @example - * - * _.isObjectLike({}); - * // => true - * - * _.isObjectLike([1, 2, 3]); - * // => true - * - * _.isObjectLike(_.noop); - * // => false - * - * _.isObjectLike(null); - * // => false - */ -function isObjectLike(value) { - return value != null && typeof value == 'object'; -} - -var isObjectLike_1 = isObjectLike; - -/** `Object#toString` result references. */ -var symbolTag = '[object Symbol]'; - -/** - * Checks if `value` is classified as a `Symbol` primitive or object. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. - * @example - * - * _.isSymbol(Symbol.iterator); - * // => true - * - * _.isSymbol('abc'); - * // => false - */ -function isSymbol(value) { - return typeof value == 'symbol' || - (isObjectLike_1(value) && _baseGetTag(value) == symbolTag); -} - -var isSymbol_1 = isSymbol; - -/** Used to match property names within property paths. */ -var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, - reIsPlainProp = /^\w*$/; - -/** - * Checks if `value` is a property name and not a property path. - * - * @private - * @param {*} value The value to check. - * @param {Object} [object] The object to query keys on. - * @returns {boolean} Returns `true` if `value` is a property name, else `false`. - */ -function isKey(value, object) { - if (isArray_1(value)) { - return false; - } - var type = typeof value; - if (type == 'number' || type == 'symbol' || type == 'boolean' || - value == null || isSymbol_1(value)) { - return true; - } - return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || - (object != null && value in Object(object)); -} - -var _isKey = isKey; - -/** - * Checks if `value` is the - * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) - * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an object, else `false`. - * @example - * - * _.isObject({}); - * // => true - * - * _.isObject([1, 2, 3]); - * // => true - * - * _.isObject(_.noop); - * // => true - * - * _.isObject(null); - * // => false - */ -function isObject(value) { - var type = typeof value; - return value != null && (type == 'object' || type == 'function'); -} - -var isObject_1 = isObject; - -/** `Object#toString` result references. */ -var asyncTag = '[object AsyncFunction]', - funcTag = '[object Function]', - genTag = '[object GeneratorFunction]', - proxyTag = '[object Proxy]'; - -/** - * Checks if `value` is classified as a `Function` object. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a function, else `false`. - * @example - * - * _.isFunction(_); - * // => true - * - * _.isFunction(/abc/); - * // => false - */ -function isFunction(value) { - if (!isObject_1(value)) { - return false; - } - // The use of `Object#toString` avoids issues with the `typeof` operator - // in Safari 9 which returns 'object' for typed arrays and other constructors. - var tag = _baseGetTag(value); - return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; -} - -var isFunction_1 = isFunction; - -/** Used to detect overreaching core-js shims. */ -var coreJsData = _root['__core-js_shared__']; - -var _coreJsData = coreJsData; - -/** Used to detect methods masquerading as native. */ -var maskSrcKey = (function() { - var uid = /[^.]+$/.exec(_coreJsData && _coreJsData.keys && _coreJsData.keys.IE_PROTO || ''); - return uid ? ('Symbol(src)_1.' + uid) : ''; -}()); - -/** - * Checks if `func` has its source masked. - * - * @private - * @param {Function} func The function to check. - * @returns {boolean} Returns `true` if `func` is masked, else `false`. - */ -function isMasked(func) { - return !!maskSrcKey && (maskSrcKey in func); -} - -var _isMasked = isMasked; - -/** Used for built-in method references. */ -var funcProto = Function.prototype; - -/** Used to resolve the decompiled source of functions. */ -var funcToString = funcProto.toString; - -/** - * Converts `func` to its source code. - * - * @private - * @param {Function} func The function to convert. - * @returns {string} Returns the source code. - */ -function toSource(func) { - if (func != null) { - try { - return funcToString.call(func); - } catch (e) {} - try { - return (func + ''); - } catch (e) {} - } - return ''; -} - -var _toSource = toSource; - -/** - * Used to match `RegExp` - * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). - */ -var reRegExpChar = /[\\^$.*+?()[\]{}|]/g; - -/** Used to detect host constructors (Safari). */ -var reIsHostCtor = /^\[object .+?Constructor\]$/; - -/** Used for built-in method references. */ -var funcProto$1 = Function.prototype, - objectProto$2 = Object.prototype; - -/** Used to resolve the decompiled source of functions. */ -var funcToString$1 = funcProto$1.toString; - -/** Used to check objects for own properties. */ -var hasOwnProperty$2 = objectProto$2.hasOwnProperty; - -/** Used to detect if a method is native. */ -var reIsNative = RegExp('^' + - funcToString$1.call(hasOwnProperty$2).replace(reRegExpChar, '\\$&') - .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' -); - -/** - * The base implementation of `_.isNative` without bad shim checks. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a native function, - * else `false`. - */ -function baseIsNative(value) { - if (!isObject_1(value) || _isMasked(value)) { - return false; - } - var pattern = isFunction_1(value) ? reIsNative : reIsHostCtor; - return pattern.test(_toSource(value)); -} - -var _baseIsNative = baseIsNative; - -/** - * Gets the value at `key` of `object`. - * - * @private - * @param {Object} [object] The object to query. - * @param {string} key The key of the property to get. - * @returns {*} Returns the property value. - */ -function getValue(object, key) { - return object == null ? undefined : object[key]; -} - -var _getValue = getValue; - -/** - * Gets the native function at `key` of `object`. - * - * @private - * @param {Object} object The object to query. - * @param {string} key The key of the method to get. - * @returns {*} Returns the function if it's native, else `undefined`. - */ -function getNative(object, key) { - var value = _getValue(object, key); - return _baseIsNative(value) ? value : undefined; -} - -var _getNative = getNative; - -/* Built-in method references that are verified to be native. */ -var nativeCreate = _getNative(Object, 'create'); - -var _nativeCreate = nativeCreate; - -/** - * Removes all key-value entries from the hash. - * - * @private - * @name clear - * @memberOf Hash - */ -function hashClear() { - this.__data__ = _nativeCreate ? _nativeCreate(null) : {}; - this.size = 0; -} - -var _hashClear = hashClear; - -/** - * Removes `key` and its value from the hash. - * - * @private - * @name delete - * @memberOf Hash - * @param {Object} hash The hash to modify. - * @param {string} key The key of the value to remove. - * @returns {boolean} Returns `true` if the entry was removed, else `false`. - */ -function hashDelete(key) { - var result = this.has(key) && delete this.__data__[key]; - this.size -= result ? 1 : 0; - return result; -} - -var _hashDelete = hashDelete; - -/** Used to stand-in for `undefined` hash values. */ -var HASH_UNDEFINED = '__lodash_hash_undefined__'; - -/** Used for built-in method references. */ -var objectProto$3 = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty$3 = objectProto$3.hasOwnProperty; - -/** - * Gets the hash value for `key`. - * - * @private - * @name get - * @memberOf Hash - * @param {string} key The key of the value to get. - * @returns {*} Returns the entry value. - */ -function hashGet(key) { - var data = this.__data__; - if (_nativeCreate) { - var result = data[key]; - return result === HASH_UNDEFINED ? undefined : result; - } - return hasOwnProperty$3.call(data, key) ? data[key] : undefined; -} - -var _hashGet = hashGet; - -/** Used for built-in method references. */ -var objectProto$4 = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty$4 = objectProto$4.hasOwnProperty; - -/** - * Checks if a hash value for `key` exists. - * - * @private - * @name has - * @memberOf Hash - * @param {string} key The key of the entry to check. - * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. - */ -function hashHas(key) { - var data = this.__data__; - return _nativeCreate ? (data[key] !== undefined) : hasOwnProperty$4.call(data, key); -} - -var _hashHas = hashHas; - -/** Used to stand-in for `undefined` hash values. */ -var HASH_UNDEFINED$1 = '__lodash_hash_undefined__'; - -/** - * Sets the hash `key` to `value`. - * - * @private - * @name set - * @memberOf Hash - * @param {string} key The key of the value to set. - * @param {*} value The value to set. - * @returns {Object} Returns the hash instance. - */ -function hashSet(key, value) { - var data = this.__data__; - this.size += this.has(key) ? 0 : 1; - data[key] = (_nativeCreate && value === undefined) ? HASH_UNDEFINED$1 : value; - return this; -} - -var _hashSet = hashSet; - -/** - * Creates a hash object. - * - * @private - * @constructor - * @param {Array} [entries] The key-value pairs to cache. - */ -function Hash(entries) { - var index = -1, - length = entries == null ? 0 : entries.length; - - this.clear(); - while (++index < length) { - var entry = entries[index]; - this.set(entry[0], entry[1]); - } -} - -// Add methods to `Hash`. -Hash.prototype.clear = _hashClear; -Hash.prototype['delete'] = _hashDelete; -Hash.prototype.get = _hashGet; -Hash.prototype.has = _hashHas; -Hash.prototype.set = _hashSet; - -var _Hash = Hash; - -/** - * Removes all key-value entries from the list cache. - * - * @private - * @name clear - * @memberOf ListCache - */ -function listCacheClear() { - this.__data__ = []; - this.size = 0; -} - -var _listCacheClear = listCacheClear; - -/** - * Performs a - * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * comparison between two values to determine if they are equivalent. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {boolean} Returns `true` if the values are equivalent, else `false`. - * @example - * - * var object = { 'a': 1 }; - * var other = { 'a': 1 }; - * - * _.eq(object, object); - * // => true - * - * _.eq(object, other); - * // => false - * - * _.eq('a', 'a'); - * // => true - * - * _.eq('a', Object('a')); - * // => false - * - * _.eq(NaN, NaN); - * // => true - */ -function eq(value, other) { - return value === other || (value !== value && other !== other); -} - -var eq_1 = eq; - -/** - * Gets the index at which the `key` is found in `array` of key-value pairs. - * - * @private - * @param {Array} array The array to inspect. - * @param {*} key The key to search for. - * @returns {number} Returns the index of the matched value, else `-1`. - */ -function assocIndexOf(array, key) { - var length = array.length; - while (length--) { - if (eq_1(array[length][0], key)) { - return length; - } - } - return -1; -} - -var _assocIndexOf = assocIndexOf; - -/** Used for built-in method references. */ -var arrayProto = Array.prototype; - -/** Built-in value references. */ -var splice = arrayProto.splice; - -/** - * Removes `key` and its value from the list cache. - * - * @private - * @name delete - * @memberOf ListCache - * @param {string} key The key of the value to remove. - * @returns {boolean} Returns `true` if the entry was removed, else `false`. - */ -function listCacheDelete(key) { - var data = this.__data__, - index = _assocIndexOf(data, key); - - if (index < 0) { - return false; - } - var lastIndex = data.length - 1; - if (index == lastIndex) { - data.pop(); - } else { - splice.call(data, index, 1); - } - --this.size; - return true; -} - -var _listCacheDelete = listCacheDelete; - -/** - * Gets the list cache value for `key`. - * - * @private - * @name get - * @memberOf ListCache - * @param {string} key The key of the value to get. - * @returns {*} Returns the entry value. - */ -function listCacheGet(key) { - var data = this.__data__, - index = _assocIndexOf(data, key); - - return index < 0 ? undefined : data[index][1]; -} - -var _listCacheGet = listCacheGet; - -/** - * Checks if a list cache value for `key` exists. - * - * @private - * @name has - * @memberOf ListCache - * @param {string} key The key of the entry to check. - * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. - */ -function listCacheHas(key) { - return _assocIndexOf(this.__data__, key) > -1; -} - -var _listCacheHas = listCacheHas; - -/** - * Sets the list cache `key` to `value`. - * - * @private - * @name set - * @memberOf ListCache - * @param {string} key The key of the value to set. - * @param {*} value The value to set. - * @returns {Object} Returns the list cache instance. - */ -function listCacheSet(key, value) { - var data = this.__data__, - index = _assocIndexOf(data, key); - - if (index < 0) { - ++this.size; - data.push([key, value]); - } else { - data[index][1] = value; - } - return this; -} - -var _listCacheSet = listCacheSet; - -/** - * Creates an list cache object. - * - * @private - * @constructor - * @param {Array} [entries] The key-value pairs to cache. - */ -function ListCache(entries) { - var index = -1, - length = entries == null ? 0 : entries.length; - - this.clear(); - while (++index < length) { - var entry = entries[index]; - this.set(entry[0], entry[1]); - } -} - -// Add methods to `ListCache`. -ListCache.prototype.clear = _listCacheClear; -ListCache.prototype['delete'] = _listCacheDelete; -ListCache.prototype.get = _listCacheGet; -ListCache.prototype.has = _listCacheHas; -ListCache.prototype.set = _listCacheSet; - -var _ListCache = ListCache; - -/* Built-in method references that are verified to be native. */ -var Map = _getNative(_root, 'Map'); - -var _Map = Map; - -/** - * Removes all key-value entries from the map. - * - * @private - * @name clear - * @memberOf MapCache - */ -function mapCacheClear() { - this.size = 0; - this.__data__ = { - 'hash': new _Hash, - 'map': new (_Map || _ListCache), - 'string': new _Hash - }; -} - -var _mapCacheClear = mapCacheClear; - -/** - * Checks if `value` is suitable for use as unique object key. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is suitable, else `false`. - */ -function isKeyable(value) { - var type = typeof value; - return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean') - ? (value !== '__proto__') - : (value === null); -} - -var _isKeyable = isKeyable; - -/** - * Gets the data for `map`. - * - * @private - * @param {Object} map The map to query. - * @param {string} key The reference key. - * @returns {*} Returns the map data. - */ -function getMapData(map, key) { - var data = map.__data__; - return _isKeyable(key) - ? data[typeof key == 'string' ? 'string' : 'hash'] - : data.map; -} - -var _getMapData = getMapData; - -/** - * Removes `key` and its value from the map. - * - * @private - * @name delete - * @memberOf MapCache - * @param {string} key The key of the value to remove. - * @returns {boolean} Returns `true` if the entry was removed, else `false`. - */ -function mapCacheDelete(key) { - var result = _getMapData(this, key)['delete'](key); - this.size -= result ? 1 : 0; - return result; -} - -var _mapCacheDelete = mapCacheDelete; - -/** - * Gets the map value for `key`. - * - * @private - * @name get - * @memberOf MapCache - * @param {string} key The key of the value to get. - * @returns {*} Returns the entry value. - */ -function mapCacheGet(key) { - return _getMapData(this, key).get(key); -} - -var _mapCacheGet = mapCacheGet; - -/** - * Checks if a map value for `key` exists. - * - * @private - * @name has - * @memberOf MapCache - * @param {string} key The key of the entry to check. - * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. - */ -function mapCacheHas(key) { - return _getMapData(this, key).has(key); -} - -var _mapCacheHas = mapCacheHas; - -/** - * Sets the map `key` to `value`. - * - * @private - * @name set - * @memberOf MapCache - * @param {string} key The key of the value to set. - * @param {*} value The value to set. - * @returns {Object} Returns the map cache instance. - */ -function mapCacheSet(key, value) { - var data = _getMapData(this, key), - size = data.size; - - data.set(key, value); - this.size += data.size == size ? 0 : 1; - return this; -} - -var _mapCacheSet = mapCacheSet; - -/** - * Creates a map cache object to store key-value pairs. - * - * @private - * @constructor - * @param {Array} [entries] The key-value pairs to cache. - */ -function MapCache(entries) { - var index = -1, - length = entries == null ? 0 : entries.length; - - this.clear(); - while (++index < length) { - var entry = entries[index]; - this.set(entry[0], entry[1]); - } -} - -// Add methods to `MapCache`. -MapCache.prototype.clear = _mapCacheClear; -MapCache.prototype['delete'] = _mapCacheDelete; -MapCache.prototype.get = _mapCacheGet; -MapCache.prototype.has = _mapCacheHas; -MapCache.prototype.set = _mapCacheSet; - -var _MapCache = MapCache; - -/** Error message constants. */ -var FUNC_ERROR_TEXT = 'Expected a function'; - -/** - * Creates a function that memoizes the result of `func`. If `resolver` is - * provided, it determines the cache key for storing the result based on the - * arguments provided to the memoized function. By default, the first argument - * provided to the memoized function is used as the map cache key. The `func` - * is invoked with the `this` binding of the memoized function. - * - * **Note:** The cache is exposed as the `cache` property on the memoized - * function. Its creation may be customized by replacing the `_.memoize.Cache` - * constructor with one whose instances implement the - * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object) - * method interface of `clear`, `delete`, `get`, `has`, and `set`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Function - * @param {Function} func The function to have its output memoized. - * @param {Function} [resolver] The function to resolve the cache key. - * @returns {Function} Returns the new memoized function. - * @example - * - * var object = { 'a': 1, 'b': 2 }; - * var other = { 'c': 3, 'd': 4 }; - * - * var values = _.memoize(_.values); - * values(object); - * // => [1, 2] - * - * values(other); - * // => [3, 4] - * - * object.a = 2; - * values(object); - * // => [1, 2] - * - * // Modify the result cache. - * values.cache.set(object, ['a', 'b']); - * values(object); - * // => ['a', 'b'] - * - * // Replace `_.memoize.Cache`. - * _.memoize.Cache = WeakMap; - */ -function memoize(func, resolver) { - if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) { - throw new TypeError(FUNC_ERROR_TEXT); - } - var memoized = function() { - var args = arguments, - key = resolver ? resolver.apply(this, args) : args[0], - cache = memoized.cache; - - if (cache.has(key)) { - return cache.get(key); - } - var result = func.apply(this, args); - memoized.cache = cache.set(key, result) || cache; - return result; - }; - memoized.cache = new (memoize.Cache || _MapCache); - return memoized; -} - -// Expose `MapCache`. -memoize.Cache = _MapCache; - -var memoize_1 = memoize; - -/** Used as the maximum memoize cache size. */ -var MAX_MEMOIZE_SIZE = 500; - -/** - * A specialized version of `_.memoize` which clears the memoized function's - * cache when it exceeds `MAX_MEMOIZE_SIZE`. - * - * @private - * @param {Function} func The function to have its output memoized. - * @returns {Function} Returns the new memoized function. - */ -function memoizeCapped(func) { - var result = memoize_1(func, function(key) { - if (cache.size === MAX_MEMOIZE_SIZE) { - cache.clear(); - } - return key; - }); - - var cache = result.cache; - return result; -} - -var _memoizeCapped = memoizeCapped; - -/** Used to match property names within property paths. */ -var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; - -/** Used to match backslashes in property paths. */ -var reEscapeChar = /\\(\\)?/g; - -/** - * Converts `string` to a property path array. - * - * @private - * @param {string} string The string to convert. - * @returns {Array} Returns the property path array. - */ -var stringToPath = _memoizeCapped(function(string) { - var result = []; - if (string.charCodeAt(0) === 46 /* . */) { - result.push(''); - } - string.replace(rePropName, function(match, number, quote, subString) { - result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match)); - }); - return result; -}); - -var _stringToPath = stringToPath; - -/** Used as references for various `Number` constants. */ -var INFINITY = 1 / 0; - -/** Used to convert symbols to primitives and strings. */ -var symbolProto = _Symbol ? _Symbol.prototype : undefined, - symbolToString = symbolProto ? symbolProto.toString : undefined; - -/** - * The base implementation of `_.toString` which doesn't convert nullish - * values to empty strings. - * - * @private - * @param {*} value The value to process. - * @returns {string} Returns the string. - */ -function baseToString(value) { - // Exit early for strings to avoid a performance hit in some environments. - if (typeof value == 'string') { - return value; - } - if (isArray_1(value)) { - // Recursively convert values (susceptible to call stack limits). - return _arrayMap(value, baseToString) + ''; - } - if (isSymbol_1(value)) { - return symbolToString ? symbolToString.call(value) : ''; - } - var result = (value + ''); - return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; -} - -var _baseToString = baseToString; - -/** - * Converts `value` to a string. An empty string is returned for `null` - * and `undefined` values. The sign of `-0` is preserved. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to convert. - * @returns {string} Returns the converted string. - * @example - * - * _.toString(null); - * // => '' - * - * _.toString(-0); - * // => '-0' - * - * _.toString([1, 2, 3]); - * // => '1,2,3' - */ -function toString(value) { - return value == null ? '' : _baseToString(value); -} - -var toString_1 = toString; - -/** - * Casts `value` to a path array if it's not one. - * - * @private - * @param {*} value The value to inspect. - * @param {Object} [object] The object to query keys on. - * @returns {Array} Returns the cast property path array. - */ -function castPath(value, object) { - if (isArray_1(value)) { - return value; - } - return _isKey(value, object) ? [value] : _stringToPath(toString_1(value)); -} - -var _castPath = castPath; - -/** Used as references for various `Number` constants. */ -var INFINITY$1 = 1 / 0; - -/** - * Converts `value` to a string key if it's not a string or symbol. - * - * @private - * @param {*} value The value to inspect. - * @returns {string|symbol} Returns the key. - */ -function toKey(value) { - if (typeof value == 'string' || isSymbol_1(value)) { - return value; - } - var result = (value + ''); - return (result == '0' && (1 / value) == -INFINITY$1) ? '-0' : result; -} - -var _toKey = toKey; - -/** - * The base implementation of `_.get` without support for default values. - * - * @private - * @param {Object} object The object to query. - * @param {Array|string} path The path of the property to get. - * @returns {*} Returns the resolved value. - */ -function baseGet(object, path) { - path = _castPath(path, object); - - var index = 0, - length = path.length; - - while (object != null && index < length) { - object = object[_toKey(path[index++])]; - } - return (index && index == length) ? object : undefined; -} - -var _baseGet = baseGet; - -/** - * Removes all key-value entries from the stack. - * - * @private - * @name clear - * @memberOf Stack - */ -function stackClear() { - this.__data__ = new _ListCache; - this.size = 0; -} - -var _stackClear = stackClear; - -/** - * Removes `key` and its value from the stack. - * - * @private - * @name delete - * @memberOf Stack - * @param {string} key The key of the value to remove. - * @returns {boolean} Returns `true` if the entry was removed, else `false`. - */ -function stackDelete(key) { - var data = this.__data__, - result = data['delete'](key); - - this.size = data.size; - return result; -} - -var _stackDelete = stackDelete; - -/** - * Gets the stack value for `key`. - * - * @private - * @name get - * @memberOf Stack - * @param {string} key The key of the value to get. - * @returns {*} Returns the entry value. - */ -function stackGet(key) { - return this.__data__.get(key); -} - -var _stackGet = stackGet; - -/** - * Checks if a stack value for `key` exists. - * - * @private - * @name has - * @memberOf Stack - * @param {string} key The key of the entry to check. - * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. - */ -function stackHas(key) { - return this.__data__.has(key); -} - -var _stackHas = stackHas; - -/** Used as the size to enable large array optimizations. */ -var LARGE_ARRAY_SIZE = 200; - -/** - * Sets the stack `key` to `value`. - * - * @private - * @name set - * @memberOf Stack - * @param {string} key The key of the value to set. - * @param {*} value The value to set. - * @returns {Object} Returns the stack cache instance. - */ -function stackSet(key, value) { - var data = this.__data__; - if (data instanceof _ListCache) { - var pairs = data.__data__; - if (!_Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) { - pairs.push([key, value]); - this.size = ++data.size; - return this; - } - data = this.__data__ = new _MapCache(pairs); - } - data.set(key, value); - this.size = data.size; - return this; -} - -var _stackSet = stackSet; - -/** - * Creates a stack cache object to store key-value pairs. - * - * @private - * @constructor - * @param {Array} [entries] The key-value pairs to cache. - */ -function Stack(entries) { - var data = this.__data__ = new _ListCache(entries); - this.size = data.size; -} - -// Add methods to `Stack`. -Stack.prototype.clear = _stackClear; -Stack.prototype['delete'] = _stackDelete; -Stack.prototype.get = _stackGet; -Stack.prototype.has = _stackHas; -Stack.prototype.set = _stackSet; - -var _Stack = Stack; - -/** Used to stand-in for `undefined` hash values. */ -var HASH_UNDEFINED$2 = '__lodash_hash_undefined__'; - -/** - * Adds `value` to the array cache. - * - * @private - * @name add - * @memberOf SetCache - * @alias push - * @param {*} value The value to cache. - * @returns {Object} Returns the cache instance. - */ -function setCacheAdd(value) { - this.__data__.set(value, HASH_UNDEFINED$2); - return this; -} - -var _setCacheAdd = setCacheAdd; - -/** - * Checks if `value` is in the array cache. - * - * @private - * @name has - * @memberOf SetCache - * @param {*} value The value to search for. - * @returns {number} Returns `true` if `value` is found, else `false`. - */ -function setCacheHas(value) { - return this.__data__.has(value); -} - -var _setCacheHas = setCacheHas; - -/** - * - * Creates an array cache object to store unique values. - * - * @private - * @constructor - * @param {Array} [values] The values to cache. - */ -function SetCache(values) { - var index = -1, - length = values == null ? 0 : values.length; - - this.__data__ = new _MapCache; - while (++index < length) { - this.add(values[index]); - } -} - -// Add methods to `SetCache`. -SetCache.prototype.add = SetCache.prototype.push = _setCacheAdd; -SetCache.prototype.has = _setCacheHas; - -var _SetCache = SetCache; - -/** - * A specialized version of `_.some` for arrays without support for iteratee - * shorthands. - * - * @private - * @param {Array} [array] The array to iterate over. - * @param {Function} predicate The function invoked per iteration. - * @returns {boolean} Returns `true` if any element passes the predicate check, - * else `false`. - */ -function arraySome(array, predicate) { - var index = -1, - length = array == null ? 0 : array.length; - - while (++index < length) { - if (predicate(array[index], index, array)) { - return true; - } - } - return false; -} - -var _arraySome = arraySome; - -/** - * Checks if a `cache` value for `key` exists. - * - * @private - * @param {Object} cache The cache to query. - * @param {string} key The key of the entry to check. - * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. - */ -function cacheHas(cache, key) { - return cache.has(key); -} - -var _cacheHas = cacheHas; - -/** Used to compose bitmasks for value comparisons. */ -var COMPARE_PARTIAL_FLAG = 1, - COMPARE_UNORDERED_FLAG = 2; - -/** - * A specialized version of `baseIsEqualDeep` for arrays with support for - * partial deep comparisons. - * - * @private - * @param {Array} array The array to compare. - * @param {Array} other The other array to compare. - * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. - * @param {Function} customizer The function to customize comparisons. - * @param {Function} equalFunc The function to determine equivalents of values. - * @param {Object} stack Tracks traversed `array` and `other` objects. - * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`. - */ -function equalArrays(array, other, bitmask, customizer, equalFunc, stack) { - var isPartial = bitmask & COMPARE_PARTIAL_FLAG, - arrLength = array.length, - othLength = other.length; - - if (arrLength != othLength && !(isPartial && othLength > arrLength)) { - return false; - } - // Check that cyclic values are equal. - var arrStacked = stack.get(array); - var othStacked = stack.get(other); - if (arrStacked && othStacked) { - return arrStacked == other && othStacked == array; - } - var index = -1, - result = true, - seen = (bitmask & COMPARE_UNORDERED_FLAG) ? new _SetCache : undefined; - - stack.set(array, other); - stack.set(other, array); - - // Ignore non-index properties. - while (++index < arrLength) { - var arrValue = array[index], - othValue = other[index]; - - if (customizer) { - var compared = isPartial - ? customizer(othValue, arrValue, index, other, array, stack) - : customizer(arrValue, othValue, index, array, other, stack); - } - if (compared !== undefined) { - if (compared) { - continue; - } - result = false; - break; - } - // Recursively compare arrays (susceptible to call stack limits). - if (seen) { - if (!_arraySome(other, function(othValue, othIndex) { - if (!_cacheHas(seen, othIndex) && - (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) { - return seen.push(othIndex); - } - })) { - result = false; - break; - } - } else if (!( - arrValue === othValue || - equalFunc(arrValue, othValue, bitmask, customizer, stack) - )) { - result = false; - break; - } - } - stack['delete'](array); - stack['delete'](other); - return result; -} - -var _equalArrays = equalArrays; - -/** Built-in value references. */ -var Uint8Array = _root.Uint8Array; - -var _Uint8Array = Uint8Array; - -/** - * Converts `map` to its key-value pairs. - * - * @private - * @param {Object} map The map to convert. - * @returns {Array} Returns the key-value pairs. - */ -function mapToArray(map) { - var index = -1, - result = Array(map.size); - - map.forEach(function(value, key) { - result[++index] = [key, value]; - }); - return result; -} - -var _mapToArray = mapToArray; - -/** - * Converts `set` to an array of its values. - * - * @private - * @param {Object} set The set to convert. - * @returns {Array} Returns the values. - */ -function setToArray(set) { - var index = -1, - result = Array(set.size); - - set.forEach(function(value) { - result[++index] = value; - }); - return result; -} - -var _setToArray = setToArray; - -/** Used to compose bitmasks for value comparisons. */ -var COMPARE_PARTIAL_FLAG$1 = 1, - COMPARE_UNORDERED_FLAG$1 = 2; - -/** `Object#toString` result references. */ -var boolTag = '[object Boolean]', - dateTag = '[object Date]', - errorTag = '[object Error]', - mapTag = '[object Map]', - numberTag = '[object Number]', - regexpTag = '[object RegExp]', - setTag = '[object Set]', - stringTag = '[object String]', - symbolTag$1 = '[object Symbol]'; - -var arrayBufferTag = '[object ArrayBuffer]', - dataViewTag = '[object DataView]'; - -/** Used to convert symbols to primitives and strings. */ -var symbolProto$1 = _Symbol ? _Symbol.prototype : undefined, - symbolValueOf = symbolProto$1 ? symbolProto$1.valueOf : undefined; - -/** - * A specialized version of `baseIsEqualDeep` for comparing objects of - * the same `toStringTag`. - * - * **Note:** This function only supports comparing values with tags of - * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. - * - * @private - * @param {Object} object The object to compare. - * @param {Object} other The other object to compare. - * @param {string} tag The `toStringTag` of the objects to compare. - * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. - * @param {Function} customizer The function to customize comparisons. - * @param {Function} equalFunc The function to determine equivalents of values. - * @param {Object} stack Tracks traversed `object` and `other` objects. - * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. - */ -function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) { - switch (tag) { - case dataViewTag: - if ((object.byteLength != other.byteLength) || - (object.byteOffset != other.byteOffset)) { - return false; - } - object = object.buffer; - other = other.buffer; - - case arrayBufferTag: - if ((object.byteLength != other.byteLength) || - !equalFunc(new _Uint8Array(object), new _Uint8Array(other))) { - return false; - } - return true; - - case boolTag: - case dateTag: - case numberTag: - // Coerce booleans to `1` or `0` and dates to milliseconds. - // Invalid dates are coerced to `NaN`. - return eq_1(+object, +other); - - case errorTag: - return object.name == other.name && object.message == other.message; - - case regexpTag: - case stringTag: - // Coerce regexes to strings and treat strings, primitives and objects, - // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring - // for more details. - return object == (other + ''); - - case mapTag: - var convert = _mapToArray; - - case setTag: - var isPartial = bitmask & COMPARE_PARTIAL_FLAG$1; - convert || (convert = _setToArray); - - if (object.size != other.size && !isPartial) { - return false; - } - // Assume cyclic values are equal. - var stacked = stack.get(object); - if (stacked) { - return stacked == other; - } - bitmask |= COMPARE_UNORDERED_FLAG$1; - - // Recursively compare objects (susceptible to call stack limits). - stack.set(object, other); - var result = _equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack); - stack['delete'](object); - return result; - - case symbolTag$1: - if (symbolValueOf) { - return symbolValueOf.call(object) == symbolValueOf.call(other); - } - } - return false; -} - -var _equalByTag = equalByTag; - -/** - * Appends the elements of `values` to `array`. - * - * @private - * @param {Array} array The array to modify. - * @param {Array} values The values to append. - * @returns {Array} Returns `array`. - */ -function arrayPush(array, values) { - var index = -1, - length = values.length, - offset = array.length; - - while (++index < length) { - array[offset + index] = values[index]; - } - return array; -} - -var _arrayPush = arrayPush; - -/** - * The base implementation of `getAllKeys` and `getAllKeysIn` which uses - * `keysFunc` and `symbolsFunc` to get the enumerable property names and - * symbols of `object`. - * - * @private - * @param {Object} object The object to query. - * @param {Function} keysFunc The function to get the keys of `object`. - * @param {Function} symbolsFunc The function to get the symbols of `object`. - * @returns {Array} Returns the array of property names and symbols. - */ -function baseGetAllKeys(object, keysFunc, symbolsFunc) { - var result = keysFunc(object); - return isArray_1(object) ? result : _arrayPush(result, symbolsFunc(object)); -} - -var _baseGetAllKeys = baseGetAllKeys; - -/** - * A specialized version of `_.filter` for arrays without support for - * iteratee shorthands. - * - * @private - * @param {Array} [array] The array to iterate over. - * @param {Function} predicate The function invoked per iteration. - * @returns {Array} Returns the new filtered array. - */ -function arrayFilter(array, predicate) { - var index = -1, - length = array == null ? 0 : array.length, - resIndex = 0, - result = []; - - while (++index < length) { - var value = array[index]; - if (predicate(value, index, array)) { - result[resIndex++] = value; - } - } - return result; -} - -var _arrayFilter = arrayFilter; - -/** - * This method returns a new empty array. - * - * @static - * @memberOf _ - * @since 4.13.0 - * @category Util - * @returns {Array} Returns the new empty array. - * @example - * - * var arrays = _.times(2, _.stubArray); - * - * console.log(arrays); - * // => [[], []] - * - * console.log(arrays[0] === arrays[1]); - * // => false - */ -function stubArray() { - return []; -} - -var stubArray_1 = stubArray; - -/** Used for built-in method references. */ -var objectProto$5 = Object.prototype; - -/** Built-in value references. */ -var propertyIsEnumerable = objectProto$5.propertyIsEnumerable; - -/* Built-in method references for those with the same name as other `lodash` methods. */ -var nativeGetSymbols = Object.getOwnPropertySymbols; - -/** - * Creates an array of the own enumerable symbols of `object`. - * - * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the array of symbols. - */ -var getSymbols = !nativeGetSymbols ? stubArray_1 : function(object) { - if (object == null) { - return []; - } - object = Object(object); - return _arrayFilter(nativeGetSymbols(object), function(symbol) { - return propertyIsEnumerable.call(object, symbol); - }); -}; - -var _getSymbols = getSymbols; - -/** - * The base implementation of `_.times` without support for iteratee shorthands - * or max array length checks. - * - * @private - * @param {number} n The number of times to invoke `iteratee`. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Array} Returns the array of results. - */ -function baseTimes(n, iteratee) { - var index = -1, - result = Array(n); - - while (++index < n) { - result[index] = iteratee(index); - } - return result; -} - -var _baseTimes = baseTimes; - -/** `Object#toString` result references. */ -var argsTag = '[object Arguments]'; - -/** - * The base implementation of `_.isArguments`. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an `arguments` object, - */ -function baseIsArguments(value) { - return isObjectLike_1(value) && _baseGetTag(value) == argsTag; -} - -var _baseIsArguments = baseIsArguments; - -/** Used for built-in method references. */ -var objectProto$6 = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty$5 = objectProto$6.hasOwnProperty; - -/** Built-in value references. */ -var propertyIsEnumerable$1 = objectProto$6.propertyIsEnumerable; - -/** - * Checks if `value` is likely an `arguments` object. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an `arguments` object, - * else `false`. - * @example - * - * _.isArguments(function() { return arguments; }()); - * // => true - * - * _.isArguments([1, 2, 3]); - * // => false - */ -var isArguments = _baseIsArguments(function() { return arguments; }()) ? _baseIsArguments : function(value) { - return isObjectLike_1(value) && hasOwnProperty$5.call(value, 'callee') && - !propertyIsEnumerable$1.call(value, 'callee'); -}; - -var isArguments_1 = isArguments; - -/** - * This method returns `false`. - * - * @static - * @memberOf _ - * @since 4.13.0 - * @category Util - * @returns {boolean} Returns `false`. - * @example - * - * _.times(2, _.stubFalse); - * // => [false, false] - */ -function stubFalse() { - return false; -} - -var stubFalse_1 = stubFalse; - -var isBuffer_1 = createCommonjsModule(function (module, exports) { -/** Detect free variable `exports`. */ -var freeExports = exports && !exports.nodeType && exports; - -/** Detect free variable `module`. */ -var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module; - -/** Detect the popular CommonJS extension `module.exports`. */ -var moduleExports = freeModule && freeModule.exports === freeExports; - -/** Built-in value references. */ -var Buffer = moduleExports ? _root.Buffer : undefined; - -/* Built-in method references for those with the same name as other `lodash` methods. */ -var nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined; - -/** - * Checks if `value` is a buffer. - * - * @static - * @memberOf _ - * @since 4.3.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a buffer, else `false`. - * @example - * - * _.isBuffer(new Buffer(2)); - * // => true - * - * _.isBuffer(new Uint8Array(2)); - * // => false - */ -var isBuffer = nativeIsBuffer || stubFalse_1; - -module.exports = isBuffer; -}); - -/** Used as references for various `Number` constants. */ -var MAX_SAFE_INTEGER = 9007199254740991; - -/** Used to detect unsigned integer values. */ -var reIsUint = /^(?:0|[1-9]\d*)$/; - -/** - * Checks if `value` is a valid array-like index. - * - * @private - * @param {*} value The value to check. - * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. - * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. - */ -function isIndex(value, length) { - var type = typeof value; - length = length == null ? MAX_SAFE_INTEGER : length; - - return !!length && - (type == 'number' || - (type != 'symbol' && reIsUint.test(value))) && - (value > -1 && value % 1 == 0 && value < length); -} - -var _isIndex = isIndex; - -/** Used as references for various `Number` constants. */ -var MAX_SAFE_INTEGER$1 = 9007199254740991; - -/** - * Checks if `value` is a valid array-like length. - * - * **Note:** This method is loosely based on - * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. - * @example - * - * _.isLength(3); - * // => true - * - * _.isLength(Number.MIN_VALUE); - * // => false - * - * _.isLength(Infinity); - * // => false - * - * _.isLength('3'); - * // => false - */ -function isLength(value) { - return typeof value == 'number' && - value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER$1; -} - -var isLength_1 = isLength; - -/** `Object#toString` result references. */ -var argsTag$1 = '[object Arguments]', - arrayTag = '[object Array]', - boolTag$1 = '[object Boolean]', - dateTag$1 = '[object Date]', - errorTag$1 = '[object Error]', - funcTag$1 = '[object Function]', - mapTag$1 = '[object Map]', - numberTag$1 = '[object Number]', - objectTag = '[object Object]', - regexpTag$1 = '[object RegExp]', - setTag$1 = '[object Set]', - stringTag$1 = '[object String]', - weakMapTag = '[object WeakMap]'; - -var arrayBufferTag$1 = '[object ArrayBuffer]', - dataViewTag$1 = '[object DataView]', - float32Tag = '[object Float32Array]', - float64Tag = '[object Float64Array]', - int8Tag = '[object Int8Array]', - int16Tag = '[object Int16Array]', - int32Tag = '[object Int32Array]', - uint8Tag = '[object Uint8Array]', - uint8ClampedTag = '[object Uint8ClampedArray]', - uint16Tag = '[object Uint16Array]', - uint32Tag = '[object Uint32Array]'; - -/** Used to identify `toStringTag` values of typed arrays. */ -var typedArrayTags = {}; -typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = -typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = -typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = -typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = -typedArrayTags[uint32Tag] = true; -typedArrayTags[argsTag$1] = typedArrayTags[arrayTag] = -typedArrayTags[arrayBufferTag$1] = typedArrayTags[boolTag$1] = -typedArrayTags[dataViewTag$1] = typedArrayTags[dateTag$1] = -typedArrayTags[errorTag$1] = typedArrayTags[funcTag$1] = -typedArrayTags[mapTag$1] = typedArrayTags[numberTag$1] = -typedArrayTags[objectTag] = typedArrayTags[regexpTag$1] = -typedArrayTags[setTag$1] = typedArrayTags[stringTag$1] = -typedArrayTags[weakMapTag] = false; - -/** - * The base implementation of `_.isTypedArray` without Node.js optimizations. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. - */ -function baseIsTypedArray(value) { - return isObjectLike_1(value) && - isLength_1(value.length) && !!typedArrayTags[_baseGetTag(value)]; -} - -var _baseIsTypedArray = baseIsTypedArray; - -/** - * The base implementation of `_.unary` without support for storing metadata. - * - * @private - * @param {Function} func The function to cap arguments for. - * @returns {Function} Returns the new capped function. - */ -function baseUnary(func) { - return function(value) { - return func(value); - }; -} - -var _baseUnary = baseUnary; - -var _nodeUtil = createCommonjsModule(function (module, exports) { -/** Detect free variable `exports`. */ -var freeExports = exports && !exports.nodeType && exports; - -/** Detect free variable `module`. */ -var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module; - -/** Detect the popular CommonJS extension `module.exports`. */ -var moduleExports = freeModule && freeModule.exports === freeExports; - -/** Detect free variable `process` from Node.js. */ -var freeProcess = moduleExports && _freeGlobal.process; - -/** Used to access faster Node.js helpers. */ -var nodeUtil = (function() { - try { - // Use `util.types` for Node.js 10+. - var types = freeModule && freeModule.require && freeModule.require('util').types; - - if (types) { - return types; - } - - // Legacy `process.binding('util')` for Node.js < 10. - return freeProcess && freeProcess.binding && freeProcess.binding('util'); - } catch (e) {} -}()); - -module.exports = nodeUtil; -}); - -/* Node.js helper references. */ -var nodeIsTypedArray = _nodeUtil && _nodeUtil.isTypedArray; - -/** - * Checks if `value` is classified as a typed array. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. - * @example - * - * _.isTypedArray(new Uint8Array); - * // => true - * - * _.isTypedArray([]); - * // => false - */ -var isTypedArray = nodeIsTypedArray ? _baseUnary(nodeIsTypedArray) : _baseIsTypedArray; - -var isTypedArray_1 = isTypedArray; - -/** Used for built-in method references. */ -var objectProto$7 = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty$6 = objectProto$7.hasOwnProperty; - -/** - * Creates an array of the enumerable property names of the array-like `value`. - * - * @private - * @param {*} value The value to query. - * @param {boolean} inherited Specify returning inherited property names. - * @returns {Array} Returns the array of property names. - */ -function arrayLikeKeys(value, inherited) { - var isArr = isArray_1(value), - isArg = !isArr && isArguments_1(value), - isBuff = !isArr && !isArg && isBuffer_1(value), - isType = !isArr && !isArg && !isBuff && isTypedArray_1(value), - skipIndexes = isArr || isArg || isBuff || isType, - result = skipIndexes ? _baseTimes(value.length, String) : [], - length = result.length; - - for (var key in value) { - if ((inherited || hasOwnProperty$6.call(value, key)) && - !(skipIndexes && ( - // Safari 9 has enumerable `arguments.length` in strict mode. - key == 'length' || - // Node.js 0.10 has enumerable non-index properties on buffers. - (isBuff && (key == 'offset' || key == 'parent')) || - // PhantomJS 2 has enumerable non-index properties on typed arrays. - (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) || - // Skip index properties. - _isIndex(key, length) - ))) { - result.push(key); - } - } - return result; -} - -var _arrayLikeKeys = arrayLikeKeys; - -/** Used for built-in method references. */ -var objectProto$8 = Object.prototype; - -/** - * Checks if `value` is likely a prototype object. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a prototype, else `false`. - */ -function isPrototype(value) { - var Ctor = value && value.constructor, - proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto$8; - - return value === proto; -} - -var _isPrototype = isPrototype; - -/** - * Creates a unary function that invokes `func` with its argument transformed. - * - * @private - * @param {Function} func The function to wrap. - * @param {Function} transform The argument transform. - * @returns {Function} Returns the new function. - */ -function overArg(func, transform) { - return function(arg) { - return func(transform(arg)); - }; -} - -var _overArg = overArg; - -/* Built-in method references for those with the same name as other `lodash` methods. */ -var nativeKeys = _overArg(Object.keys, Object); - -var _nativeKeys = nativeKeys; - -/** Used for built-in method references. */ -var objectProto$9 = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty$7 = objectProto$9.hasOwnProperty; - -/** - * The base implementation of `_.keys` which doesn't treat sparse arrays as dense. - * - * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names. - */ -function baseKeys(object) { - if (!_isPrototype(object)) { - return _nativeKeys(object); - } - var result = []; - for (var key in Object(object)) { - if (hasOwnProperty$7.call(object, key) && key != 'constructor') { - result.push(key); - } - } - return result; -} - -var _baseKeys = baseKeys; - -/** - * Checks if `value` is array-like. A value is considered array-like if it's - * not a function and has a `value.length` that's an integer greater than or - * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is array-like, else `false`. - * @example - * - * _.isArrayLike([1, 2, 3]); - * // => true - * - * _.isArrayLike(document.body.children); - * // => true - * - * _.isArrayLike('abc'); - * // => true - * - * _.isArrayLike(_.noop); - * // => false - */ -function isArrayLike(value) { - return value != null && isLength_1(value.length) && !isFunction_1(value); -} - -var isArrayLike_1 = isArrayLike; - -/** - * Creates an array of the own enumerable property names of `object`. - * - * **Note:** Non-object values are coerced to objects. See the - * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) - * for more details. - * - * @static - * @since 0.1.0 - * @memberOf _ - * @category Object - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names. - * @example - * - * function Foo() { - * this.a = 1; - * this.b = 2; - * } - * - * Foo.prototype.c = 3; - * - * _.keys(new Foo); - * // => ['a', 'b'] (iteration order is not guaranteed) - * - * _.keys('hi'); - * // => ['0', '1'] - */ -function keys(object) { - return isArrayLike_1(object) ? _arrayLikeKeys(object) : _baseKeys(object); -} - -var keys_1 = keys; - -/** - * Creates an array of own enumerable property names and symbols of `object`. - * - * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names and symbols. - */ -function getAllKeys(object) { - return _baseGetAllKeys(object, keys_1, _getSymbols); -} - -var _getAllKeys = getAllKeys; - -/** Used to compose bitmasks for value comparisons. */ -var COMPARE_PARTIAL_FLAG$2 = 1; - -/** Used for built-in method references. */ -var objectProto$a = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty$8 = objectProto$a.hasOwnProperty; - -/** - * A specialized version of `baseIsEqualDeep` for objects with support for - * partial deep comparisons. - * - * @private - * @param {Object} object The object to compare. - * @param {Object} other The other object to compare. - * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. - * @param {Function} customizer The function to customize comparisons. - * @param {Function} equalFunc The function to determine equivalents of values. - * @param {Object} stack Tracks traversed `object` and `other` objects. - * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. - */ -function equalObjects(object, other, bitmask, customizer, equalFunc, stack) { - var isPartial = bitmask & COMPARE_PARTIAL_FLAG$2, - objProps = _getAllKeys(object), - objLength = objProps.length, - othProps = _getAllKeys(other), - othLength = othProps.length; - - if (objLength != othLength && !isPartial) { - return false; - } - var index = objLength; - while (index--) { - var key = objProps[index]; - if (!(isPartial ? key in other : hasOwnProperty$8.call(other, key))) { - return false; - } - } - // Check that cyclic values are equal. - var objStacked = stack.get(object); - var othStacked = stack.get(other); - if (objStacked && othStacked) { - return objStacked == other && othStacked == object; - } - var result = true; - stack.set(object, other); - stack.set(other, object); - - var skipCtor = isPartial; - while (++index < objLength) { - key = objProps[index]; - var objValue = object[key], - othValue = other[key]; - - if (customizer) { - var compared = isPartial - ? customizer(othValue, objValue, key, other, object, stack) - : customizer(objValue, othValue, key, object, other, stack); - } - // Recursively compare objects (susceptible to call stack limits). - if (!(compared === undefined - ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack)) - : compared - )) { - result = false; - break; - } - skipCtor || (skipCtor = key == 'constructor'); - } - if (result && !skipCtor) { - var objCtor = object.constructor, - othCtor = other.constructor; - - // Non `Object` object instances with different constructors are not equal. - if (objCtor != othCtor && - ('constructor' in object && 'constructor' in other) && - !(typeof objCtor == 'function' && objCtor instanceof objCtor && - typeof othCtor == 'function' && othCtor instanceof othCtor)) { - result = false; - } - } - stack['delete'](object); - stack['delete'](other); - return result; -} - -var _equalObjects = equalObjects; - -/* Built-in method references that are verified to be native. */ -var DataView$1 = _getNative(_root, 'DataView'); - -var _DataView = DataView$1; - -/* Built-in method references that are verified to be native. */ -var Promise = _getNative(_root, 'Promise'); - -var _Promise = Promise; - -/* Built-in method references that are verified to be native. */ -var Set = _getNative(_root, 'Set'); - -var _Set = Set; - -/* Built-in method references that are verified to be native. */ -var WeakMap = _getNative(_root, 'WeakMap'); - -var _WeakMap = WeakMap; - -/** `Object#toString` result references. */ -var mapTag$2 = '[object Map]', - objectTag$1 = '[object Object]', - promiseTag = '[object Promise]', - setTag$2 = '[object Set]', - weakMapTag$1 = '[object WeakMap]'; - -var dataViewTag$2 = '[object DataView]'; - -/** Used to detect maps, sets, and weakmaps. */ -var dataViewCtorString = _toSource(_DataView), - mapCtorString = _toSource(_Map), - promiseCtorString = _toSource(_Promise), - setCtorString = _toSource(_Set), - weakMapCtorString = _toSource(_WeakMap); - -/** - * Gets the `toStringTag` of `value`. - * - * @private - * @param {*} value The value to query. - * @returns {string} Returns the `toStringTag`. - */ -var getTag = _baseGetTag; - -// Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6. -if ((_DataView && getTag(new _DataView(new ArrayBuffer(1))) != dataViewTag$2) || - (_Map && getTag(new _Map) != mapTag$2) || - (_Promise && getTag(_Promise.resolve()) != promiseTag) || - (_Set && getTag(new _Set) != setTag$2) || - (_WeakMap && getTag(new _WeakMap) != weakMapTag$1)) { - getTag = function(value) { - var result = _baseGetTag(value), - Ctor = result == objectTag$1 ? value.constructor : undefined, - ctorString = Ctor ? _toSource(Ctor) : ''; - - if (ctorString) { - switch (ctorString) { - case dataViewCtorString: return dataViewTag$2; - case mapCtorString: return mapTag$2; - case promiseCtorString: return promiseTag; - case setCtorString: return setTag$2; - case weakMapCtorString: return weakMapTag$1; - } - } - return result; - }; -} - -var _getTag = getTag; - -/** Used to compose bitmasks for value comparisons. */ -var COMPARE_PARTIAL_FLAG$3 = 1; - -/** `Object#toString` result references. */ -var argsTag$2 = '[object Arguments]', - arrayTag$1 = '[object Array]', - objectTag$2 = '[object Object]'; - -/** Used for built-in method references. */ -var objectProto$b = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty$9 = objectProto$b.hasOwnProperty; - -/** - * A specialized version of `baseIsEqual` for arrays and objects which performs - * deep comparisons and tracks traversed objects enabling objects with circular - * references to be compared. - * - * @private - * @param {Object} object The object to compare. - * @param {Object} other The other object to compare. - * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. - * @param {Function} customizer The function to customize comparisons. - * @param {Function} equalFunc The function to determine equivalents of values. - * @param {Object} [stack] Tracks traversed `object` and `other` objects. - * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. - */ -function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) { - var objIsArr = isArray_1(object), - othIsArr = isArray_1(other), - objTag = objIsArr ? arrayTag$1 : _getTag(object), - othTag = othIsArr ? arrayTag$1 : _getTag(other); - - objTag = objTag == argsTag$2 ? objectTag$2 : objTag; - othTag = othTag == argsTag$2 ? objectTag$2 : othTag; - - var objIsObj = objTag == objectTag$2, - othIsObj = othTag == objectTag$2, - isSameTag = objTag == othTag; - - if (isSameTag && isBuffer_1(object)) { - if (!isBuffer_1(other)) { - return false; - } - objIsArr = true; - objIsObj = false; - } - if (isSameTag && !objIsObj) { - stack || (stack = new _Stack); - return (objIsArr || isTypedArray_1(object)) - ? _equalArrays(object, other, bitmask, customizer, equalFunc, stack) - : _equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack); - } - if (!(bitmask & COMPARE_PARTIAL_FLAG$3)) { - var objIsWrapped = objIsObj && hasOwnProperty$9.call(object, '__wrapped__'), - othIsWrapped = othIsObj && hasOwnProperty$9.call(other, '__wrapped__'); - - if (objIsWrapped || othIsWrapped) { - var objUnwrapped = objIsWrapped ? object.value() : object, - othUnwrapped = othIsWrapped ? other.value() : other; - - stack || (stack = new _Stack); - return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack); - } - } - if (!isSameTag) { - return false; - } - stack || (stack = new _Stack); - return _equalObjects(object, other, bitmask, customizer, equalFunc, stack); -} - -var _baseIsEqualDeep = baseIsEqualDeep; - -/** - * The base implementation of `_.isEqual` which supports partial comparisons - * and tracks traversed objects. - * - * @private - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @param {boolean} bitmask The bitmask flags. - * 1 - Unordered comparison - * 2 - Partial comparison - * @param {Function} [customizer] The function to customize comparisons. - * @param {Object} [stack] Tracks traversed `value` and `other` objects. - * @returns {boolean} Returns `true` if the values are equivalent, else `false`. - */ -function baseIsEqual(value, other, bitmask, customizer, stack) { - if (value === other) { - return true; - } - if (value == null || other == null || (!isObjectLike_1(value) && !isObjectLike_1(other))) { - return value !== value && other !== other; - } - return _baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack); -} - -var _baseIsEqual = baseIsEqual; - -/** Used to compose bitmasks for value comparisons. */ -var COMPARE_PARTIAL_FLAG$4 = 1, - COMPARE_UNORDERED_FLAG$2 = 2; - -/** - * The base implementation of `_.isMatch` without support for iteratee shorthands. - * - * @private - * @param {Object} object The object to inspect. - * @param {Object} source The object of property values to match. - * @param {Array} matchData The property names, values, and compare flags to match. - * @param {Function} [customizer] The function to customize comparisons. - * @returns {boolean} Returns `true` if `object` is a match, else `false`. - */ -function baseIsMatch(object, source, matchData, customizer) { - var index = matchData.length, - length = index, - noCustomizer = !customizer; - - if (object == null) { - return !length; - } - object = Object(object); - while (index--) { - var data = matchData[index]; - if ((noCustomizer && data[2]) - ? data[1] !== object[data[0]] - : !(data[0] in object) - ) { - return false; - } - } - while (++index < length) { - data = matchData[index]; - var key = data[0], - objValue = object[key], - srcValue = data[1]; - - if (noCustomizer && data[2]) { - if (objValue === undefined && !(key in object)) { - return false; - } - } else { - var stack = new _Stack; - if (customizer) { - var result = customizer(objValue, srcValue, key, object, source, stack); - } - if (!(result === undefined - ? _baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG$4 | COMPARE_UNORDERED_FLAG$2, customizer, stack) - : result - )) { - return false; - } - } - } - return true; -} - -var _baseIsMatch = baseIsMatch; - -/** - * Checks if `value` is suitable for strict equality comparisons, i.e. `===`. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` if suitable for strict - * equality comparisons, else `false`. - */ -function isStrictComparable(value) { - return value === value && !isObject_1(value); -} - -var _isStrictComparable = isStrictComparable; - -/** - * Gets the property names, values, and compare flags of `object`. - * - * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the match data of `object`. - */ -function getMatchData(object) { - var result = keys_1(object), - length = result.length; - - while (length--) { - var key = result[length], - value = object[key]; - - result[length] = [key, value, _isStrictComparable(value)]; - } - return result; -} - -var _getMatchData = getMatchData; - -/** - * A specialized version of `matchesProperty` for source values suitable - * for strict equality comparisons, i.e. `===`. - * - * @private - * @param {string} key The key of the property to get. - * @param {*} srcValue The value to match. - * @returns {Function} Returns the new spec function. - */ -function matchesStrictComparable(key, srcValue) { - return function(object) { - if (object == null) { - return false; - } - return object[key] === srcValue && - (srcValue !== undefined || (key in Object(object))); - }; -} - -var _matchesStrictComparable = matchesStrictComparable; - -/** - * The base implementation of `_.matches` which doesn't clone `source`. - * - * @private - * @param {Object} source The object of property values to match. - * @returns {Function} Returns the new spec function. - */ -function baseMatches(source) { - var matchData = _getMatchData(source); - if (matchData.length == 1 && matchData[0][2]) { - return _matchesStrictComparable(matchData[0][0], matchData[0][1]); - } - return function(object) { - return object === source || _baseIsMatch(object, source, matchData); - }; -} - -var _baseMatches = baseMatches; - -/** - * Gets the value at `path` of `object`. If the resolved value is - * `undefined`, the `defaultValue` is returned in its place. - * - * @static - * @memberOf _ - * @since 3.7.0 - * @category Object - * @param {Object} object The object to query. - * @param {Array|string} path The path of the property to get. - * @param {*} [defaultValue] The value returned for `undefined` resolved values. - * @returns {*} Returns the resolved value. - * @example - * - * var object = { 'a': [{ 'b': { 'c': 3 } }] }; - * - * _.get(object, 'a[0].b.c'); - * // => 3 - * - * _.get(object, ['a', '0', 'b', 'c']); - * // => 3 - * - * _.get(object, 'a.b.c', 'default'); - * // => 'default' - */ -function get(object, path, defaultValue) { - var result = object == null ? undefined : _baseGet(object, path); - return result === undefined ? defaultValue : result; -} - -var get_1 = get; - -/** - * The base implementation of `_.hasIn` without support for deep paths. - * - * @private - * @param {Object} [object] The object to query. - * @param {Array|string} key The key to check. - * @returns {boolean} Returns `true` if `key` exists, else `false`. - */ -function baseHasIn(object, key) { - return object != null && key in Object(object); -} - -var _baseHasIn = baseHasIn; - -/** - * Checks if `path` exists on `object`. - * - * @private - * @param {Object} object The object to query. - * @param {Array|string} path The path to check. - * @param {Function} hasFunc The function to check properties. - * @returns {boolean} Returns `true` if `path` exists, else `false`. - */ -function hasPath(object, path, hasFunc) { - path = _castPath(path, object); - - var index = -1, - length = path.length, - result = false; - - while (++index < length) { - var key = _toKey(path[index]); - if (!(result = object != null && hasFunc(object, key))) { - break; - } - object = object[key]; - } - if (result || ++index != length) { - return result; - } - length = object == null ? 0 : object.length; - return !!length && isLength_1(length) && _isIndex(key, length) && - (isArray_1(object) || isArguments_1(object)); -} - -var _hasPath = hasPath; - -/** - * Checks if `path` is a direct or inherited property of `object`. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Object - * @param {Object} object The object to query. - * @param {Array|string} path The path to check. - * @returns {boolean} Returns `true` if `path` exists, else `false`. - * @example - * - * var object = _.create({ 'a': _.create({ 'b': 2 }) }); - * - * _.hasIn(object, 'a'); - * // => true - * - * _.hasIn(object, 'a.b'); - * // => true - * - * _.hasIn(object, ['a', 'b']); - * // => true - * - * _.hasIn(object, 'b'); - * // => false - */ -function hasIn(object, path) { - return object != null && _hasPath(object, path, _baseHasIn); -} - -var hasIn_1 = hasIn; - -/** Used to compose bitmasks for value comparisons. */ -var COMPARE_PARTIAL_FLAG$5 = 1, - COMPARE_UNORDERED_FLAG$3 = 2; - -/** - * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`. - * - * @private - * @param {string} path The path of the property to get. - * @param {*} srcValue The value to match. - * @returns {Function} Returns the new spec function. - */ -function baseMatchesProperty(path, srcValue) { - if (_isKey(path) && _isStrictComparable(srcValue)) { - return _matchesStrictComparable(_toKey(path), srcValue); - } - return function(object) { - var objValue = get_1(object, path); - return (objValue === undefined && objValue === srcValue) - ? hasIn_1(object, path) - : _baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG$5 | COMPARE_UNORDERED_FLAG$3); - }; -} - -var _baseMatchesProperty = baseMatchesProperty; - -/** - * This method returns the first argument it receives. - * - * @static - * @since 0.1.0 - * @memberOf _ - * @category Util - * @param {*} value Any value. - * @returns {*} Returns `value`. - * @example - * - * var object = { 'a': 1 }; - * - * console.log(_.identity(object) === object); - * // => true - */ -function identity(value) { - return value; -} - -var identity_1 = identity; - -/** - * The base implementation of `_.property` without support for deep paths. - * - * @private - * @param {string} key The key of the property to get. - * @returns {Function} Returns the new accessor function. - */ -function baseProperty(key) { - return function(object) { - return object == null ? undefined : object[key]; - }; -} - -var _baseProperty = baseProperty; - -/** - * A specialized version of `baseProperty` which supports deep paths. - * - * @private - * @param {Array|string} path The path of the property to get. - * @returns {Function} Returns the new accessor function. - */ -function basePropertyDeep(path) { - return function(object) { - return _baseGet(object, path); - }; -} - -var _basePropertyDeep = basePropertyDeep; - -/** - * Creates a function that returns the value at `path` of a given object. - * - * @static - * @memberOf _ - * @since 2.4.0 - * @category Util - * @param {Array|string} path The path of the property to get. - * @returns {Function} Returns the new accessor function. - * @example - * - * var objects = [ - * { 'a': { 'b': 2 } }, - * { 'a': { 'b': 1 } } - * ]; - * - * _.map(objects, _.property('a.b')); - * // => [2, 1] - * - * _.map(_.sortBy(objects, _.property(['a', 'b'])), 'a.b'); - * // => [1, 2] - */ -function property(path) { - return _isKey(path) ? _baseProperty(_toKey(path)) : _basePropertyDeep(path); -} - -var property_1 = property; - -/** - * The base implementation of `_.iteratee`. - * - * @private - * @param {*} [value=_.identity] The value to convert to an iteratee. - * @returns {Function} Returns the iteratee. - */ -function baseIteratee(value) { - // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9. - // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details. - if (typeof value == 'function') { - return value; - } - if (value == null) { - return identity_1; - } - if (typeof value == 'object') { - return isArray_1(value) - ? _baseMatchesProperty(value[0], value[1]) - : _baseMatches(value); - } - return property_1(value); -} - -var _baseIteratee = baseIteratee; - -/** - * Creates a base function for methods like `_.forIn` and `_.forOwn`. - * - * @private - * @param {boolean} [fromRight] Specify iterating from right to left. - * @returns {Function} Returns the new base function. - */ -function createBaseFor(fromRight) { - return function(object, iteratee, keysFunc) { - var index = -1, - iterable = Object(object), - props = keysFunc(object), - length = props.length; - - while (length--) { - var key = props[fromRight ? length : ++index]; - if (iteratee(iterable[key], key, iterable) === false) { - break; - } - } - return object; - }; -} - -var _createBaseFor = createBaseFor; - -/** - * The base implementation of `baseForOwn` which iterates over `object` - * properties returned by `keysFunc` and invokes `iteratee` for each property. - * Iteratee functions may exit iteration early by explicitly returning `false`. - * - * @private - * @param {Object} object The object to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @param {Function} keysFunc The function to get the keys of `object`. - * @returns {Object} Returns `object`. - */ -var baseFor = _createBaseFor(); - -var _baseFor = baseFor; - -/** - * The base implementation of `_.forOwn` without support for iteratee shorthands. - * - * @private - * @param {Object} object The object to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Object} Returns `object`. - */ -function baseForOwn(object, iteratee) { - return object && _baseFor(object, iteratee, keys_1); -} - -var _baseForOwn = baseForOwn; - -/** - * Creates a `baseEach` or `baseEachRight` function. - * - * @private - * @param {Function} eachFunc The function to iterate over a collection. - * @param {boolean} [fromRight] Specify iterating from right to left. - * @returns {Function} Returns the new base function. - */ -function createBaseEach(eachFunc, fromRight) { - return function(collection, iteratee) { - if (collection == null) { - return collection; - } - if (!isArrayLike_1(collection)) { - return eachFunc(collection, iteratee); - } - var length = collection.length, - index = fromRight ? length : -1, - iterable = Object(collection); - - while ((fromRight ? index-- : ++index < length)) { - if (iteratee(iterable[index], index, iterable) === false) { - break; - } - } - return collection; - }; -} - -var _createBaseEach = createBaseEach; - -/** - * The base implementation of `_.forEach` without support for iteratee shorthands. - * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Array|Object} Returns `collection`. - */ -var baseEach = _createBaseEach(_baseForOwn); - -var _baseEach = baseEach; - -/** - * The base implementation of `_.map` without support for iteratee shorthands. - * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Array} Returns the new mapped array. - */ -function baseMap(collection, iteratee) { - var index = -1, - result = isArrayLike_1(collection) ? Array(collection.length) : []; - - _baseEach(collection, function(value, key, collection) { - result[++index] = iteratee(value, key, collection); - }); - return result; -} - -var _baseMap = baseMap; - -/** - * The base implementation of `_.sortBy` which uses `comparer` to define the - * sort order of `array` and replaces criteria objects with their corresponding - * values. - * - * @private - * @param {Array} array The array to sort. - * @param {Function} comparer The function to define sort order. - * @returns {Array} Returns `array`. - */ -function baseSortBy(array, comparer) { - var length = array.length; - - array.sort(comparer); - while (length--) { - array[length] = array[length].value; - } - return array; -} - -var _baseSortBy = baseSortBy; - -/** - * Compares values to sort them in ascending order. - * - * @private - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {number} Returns the sort order indicator for `value`. - */ -function compareAscending(value, other) { - if (value !== other) { - var valIsDefined = value !== undefined, - valIsNull = value === null, - valIsReflexive = value === value, - valIsSymbol = isSymbol_1(value); - - var othIsDefined = other !== undefined, - othIsNull = other === null, - othIsReflexive = other === other, - othIsSymbol = isSymbol_1(other); - - if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) || - (valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) || - (valIsNull && othIsDefined && othIsReflexive) || - (!valIsDefined && othIsReflexive) || - !valIsReflexive) { - return 1; - } - if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) || - (othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) || - (othIsNull && valIsDefined && valIsReflexive) || - (!othIsDefined && valIsReflexive) || - !othIsReflexive) { - return -1; - } - } - return 0; -} - -var _compareAscending = compareAscending; - -/** - * Used by `_.orderBy` to compare multiple properties of a value to another - * and stable sort them. - * - * If `orders` is unspecified, all values are sorted in ascending order. Otherwise, - * specify an order of "desc" for descending or "asc" for ascending sort order - * of corresponding values. - * - * @private - * @param {Object} object The object to compare. - * @param {Object} other The other object to compare. - * @param {boolean[]|string[]} orders The order to sort by for each property. - * @returns {number} Returns the sort order indicator for `object`. - */ -function compareMultiple(object, other, orders) { - var index = -1, - objCriteria = object.criteria, - othCriteria = other.criteria, - length = objCriteria.length, - ordersLength = orders.length; - - while (++index < length) { - var result = _compareAscending(objCriteria[index], othCriteria[index]); - if (result) { - if (index >= ordersLength) { - return result; - } - var order = orders[index]; - return result * (order == 'desc' ? -1 : 1); - } - } - // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications - // that causes it, under certain circumstances, to provide the same value for - // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247 - // for more details. - // - // This also ensures a stable sort in V8 and other engines. - // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details. - return object.index - other.index; -} - -var _compareMultiple = compareMultiple; - -/** - * The base implementation of `_.orderBy` without param guards. - * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by. - * @param {string[]} orders The sort orders of `iteratees`. - * @returns {Array} Returns the new sorted array. - */ -function baseOrderBy(collection, iteratees, orders) { - if (iteratees.length) { - iteratees = _arrayMap(iteratees, function(iteratee) { - if (isArray_1(iteratee)) { - return function(value) { - return _baseGet(value, iteratee.length === 1 ? iteratee[0] : iteratee); - } - } - return iteratee; - }); - } else { - iteratees = [identity_1]; - } - - var index = -1; - iteratees = _arrayMap(iteratees, _baseUnary(_baseIteratee)); - - var result = _baseMap(collection, function(value, key, collection) { - var criteria = _arrayMap(iteratees, function(iteratee) { - return iteratee(value); - }); - return { 'criteria': criteria, 'index': ++index, 'value': value }; - }); - - return _baseSortBy(result, function(object, other) { - return _compareMultiple(object, other, orders); - }); -} - -var _baseOrderBy = baseOrderBy; - -/** - * This method is like `_.sortBy` except that it allows specifying the sort - * orders of the iteratees to sort by. If `orders` is unspecified, all values - * are sorted in ascending order. Otherwise, specify an order of "desc" for - * descending or "asc" for ascending sort order of corresponding values. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Array[]|Function[]|Object[]|string[]} [iteratees=[_.identity]] - * The iteratees to sort by. - * @param {string[]} [orders] The sort orders of `iteratees`. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. - * @returns {Array} Returns the new sorted array. - * @example - * - * var users = [ - * { 'user': 'fred', 'age': 48 }, - * { 'user': 'barney', 'age': 34 }, - * { 'user': 'fred', 'age': 40 }, - * { 'user': 'barney', 'age': 36 } - * ]; - * - * // Sort by `user` in ascending order and by `age` in descending order. - * _.orderBy(users, ['user', 'age'], ['asc', 'desc']); - * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]] - */ -function orderBy(collection, iteratees, orders, guard) { - if (collection == null) { - return []; - } - if (!isArray_1(iteratees)) { - iteratees = iteratees == null ? [] : [iteratees]; - } - orders = guard ? undefined : orders; - if (!isArray_1(orders)) { - orders = orders == null ? [] : [orders]; - } - return _baseOrderBy(collection, iteratees, orders); -} - -var orderBy_1 = orderBy; - -/** Built-in value references. */ -var getPrototype = _overArg(Object.getPrototypeOf, Object); - -var _getPrototype = getPrototype; - -/** `Object#toString` result references. */ -var objectTag$3 = '[object Object]'; - -/** Used for built-in method references. */ -var funcProto$2 = Function.prototype, - objectProto$c = Object.prototype; - -/** Used to resolve the decompiled source of functions. */ -var funcToString$2 = funcProto$2.toString; - -/** Used to check objects for own properties. */ -var hasOwnProperty$a = objectProto$c.hasOwnProperty; - -/** Used to infer the `Object` constructor. */ -var objectCtorString = funcToString$2.call(Object); - -/** - * Checks if `value` is a plain object, that is, an object created by the - * `Object` constructor or one with a `[[Prototype]]` of `null`. - * - * @static - * @memberOf _ - * @since 0.8.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. - * @example - * - * function Foo() { - * this.a = 1; - * } - * - * _.isPlainObject(new Foo); - * // => false - * - * _.isPlainObject([1, 2, 3]); - * // => false - * - * _.isPlainObject({ 'x': 0, 'y': 0 }); - * // => true - * - * _.isPlainObject(Object.create(null)); - * // => true - */ -function isPlainObject(value) { - if (!isObjectLike_1(value) || _baseGetTag(value) != objectTag$3) { - return false; - } - var proto = _getPrototype(value); - if (proto === null) { - return true; - } - var Ctor = hasOwnProperty$a.call(proto, 'constructor') && proto.constructor; - return typeof Ctor == 'function' && Ctor instanceof Ctor && - funcToString$2.call(Ctor) == objectCtorString; -} - -var isPlainObject_1 = isPlainObject; - -function define(constructor, factory, prototype) { - constructor.prototype = factory.prototype = prototype; - prototype.constructor = constructor; -} - -function extend(parent, definition) { - var prototype = Object.create(parent.prototype); - for (var key in definition) prototype[key] = definition[key]; - return prototype; -} - -function Color() {} - -var darker = 0.7; -var brighter = 1 / darker; - -var reI = "\\s*([+-]?\\d+)\\s*", - reN = "\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)\\s*", - reP = "\\s*([+-]?\\d*\\.?\\d+(?:[eE][+-]?\\d+)?)%\\s*", - reHex = /^#([0-9a-f]{3,8})$/, - reRgbInteger = new RegExp("^rgb\\(" + [reI, reI, reI] + "\\)$"), - reRgbPercent = new RegExp("^rgb\\(" + [reP, reP, reP] + "\\)$"), - reRgbaInteger = new RegExp("^rgba\\(" + [reI, reI, reI, reN] + "\\)$"), - reRgbaPercent = new RegExp("^rgba\\(" + [reP, reP, reP, reN] + "\\)$"), - reHslPercent = new RegExp("^hsl\\(" + [reN, reP, reP] + "\\)$"), - reHslaPercent = new RegExp("^hsla\\(" + [reN, reP, reP, reN] + "\\)$"); - -var named = { - aliceblue: 0xf0f8ff, - antiquewhite: 0xfaebd7, - aqua: 0x00ffff, - aquamarine: 0x7fffd4, - azure: 0xf0ffff, - beige: 0xf5f5dc, - bisque: 0xffe4c4, - black: 0x000000, - blanchedalmond: 0xffebcd, - blue: 0x0000ff, - blueviolet: 0x8a2be2, - brown: 0xa52a2a, - burlywood: 0xdeb887, - cadetblue: 0x5f9ea0, - chartreuse: 0x7fff00, - chocolate: 0xd2691e, - coral: 0xff7f50, - cornflowerblue: 0x6495ed, - cornsilk: 0xfff8dc, - crimson: 0xdc143c, - cyan: 0x00ffff, - darkblue: 0x00008b, - darkcyan: 0x008b8b, - darkgoldenrod: 0xb8860b, - darkgray: 0xa9a9a9, - darkgreen: 0x006400, - darkgrey: 0xa9a9a9, - darkkhaki: 0xbdb76b, - darkmagenta: 0x8b008b, - darkolivegreen: 0x556b2f, - darkorange: 0xff8c00, - darkorchid: 0x9932cc, - darkred: 0x8b0000, - darksalmon: 0xe9967a, - darkseagreen: 0x8fbc8f, - darkslateblue: 0x483d8b, - darkslategray: 0x2f4f4f, - darkslategrey: 0x2f4f4f, - darkturquoise: 0x00ced1, - darkviolet: 0x9400d3, - deeppink: 0xff1493, - deepskyblue: 0x00bfff, - dimgray: 0x696969, - dimgrey: 0x696969, - dodgerblue: 0x1e90ff, - firebrick: 0xb22222, - floralwhite: 0xfffaf0, - forestgreen: 0x228b22, - fuchsia: 0xff00ff, - gainsboro: 0xdcdcdc, - ghostwhite: 0xf8f8ff, - gold: 0xffd700, - goldenrod: 0xdaa520, - gray: 0x808080, - green: 0x008000, - greenyellow: 0xadff2f, - grey: 0x808080, - honeydew: 0xf0fff0, - hotpink: 0xff69b4, - indianred: 0xcd5c5c, - indigo: 0x4b0082, - ivory: 0xfffff0, - khaki: 0xf0e68c, - lavender: 0xe6e6fa, - lavenderblush: 0xfff0f5, - lawngreen: 0x7cfc00, - lemonchiffon: 0xfffacd, - lightblue: 0xadd8e6, - lightcoral: 0xf08080, - lightcyan: 0xe0ffff, - lightgoldenrodyellow: 0xfafad2, - lightgray: 0xd3d3d3, - lightgreen: 0x90ee90, - lightgrey: 0xd3d3d3, - lightpink: 0xffb6c1, - lightsalmon: 0xffa07a, - lightseagreen: 0x20b2aa, - lightskyblue: 0x87cefa, - lightslategray: 0x778899, - lightslategrey: 0x778899, - lightsteelblue: 0xb0c4de, - lightyellow: 0xffffe0, - lime: 0x00ff00, - limegreen: 0x32cd32, - linen: 0xfaf0e6, - magenta: 0xff00ff, - maroon: 0x800000, - mediumaquamarine: 0x66cdaa, - mediumblue: 0x0000cd, - mediumorchid: 0xba55d3, - mediumpurple: 0x9370db, - mediumseagreen: 0x3cb371, - mediumslateblue: 0x7b68ee, - mediumspringgreen: 0x00fa9a, - mediumturquoise: 0x48d1cc, - mediumvioletred: 0xc71585, - midnightblue: 0x191970, - mintcream: 0xf5fffa, - mistyrose: 0xffe4e1, - moccasin: 0xffe4b5, - navajowhite: 0xffdead, - navy: 0x000080, - oldlace: 0xfdf5e6, - olive: 0x808000, - olivedrab: 0x6b8e23, - orange: 0xffa500, - orangered: 0xff4500, - orchid: 0xda70d6, - palegoldenrod: 0xeee8aa, - palegreen: 0x98fb98, - paleturquoise: 0xafeeee, - palevioletred: 0xdb7093, - papayawhip: 0xffefd5, - peachpuff: 0xffdab9, - peru: 0xcd853f, - pink: 0xffc0cb, - plum: 0xdda0dd, - powderblue: 0xb0e0e6, - purple: 0x800080, - rebeccapurple: 0x663399, - red: 0xff0000, - rosybrown: 0xbc8f8f, - royalblue: 0x4169e1, - saddlebrown: 0x8b4513, - salmon: 0xfa8072, - sandybrown: 0xf4a460, - seagreen: 0x2e8b57, - seashell: 0xfff5ee, - sienna: 0xa0522d, - silver: 0xc0c0c0, - skyblue: 0x87ceeb, - slateblue: 0x6a5acd, - slategray: 0x708090, - slategrey: 0x708090, - snow: 0xfffafa, - springgreen: 0x00ff7f, - steelblue: 0x4682b4, - tan: 0xd2b48c, - teal: 0x008080, - thistle: 0xd8bfd8, - tomato: 0xff6347, - turquoise: 0x40e0d0, - violet: 0xee82ee, - wheat: 0xf5deb3, - white: 0xffffff, - whitesmoke: 0xf5f5f5, - yellow: 0xffff00, - yellowgreen: 0x9acd32 -}; - -define(Color, color, { - copy: function(channels) { - return Object.assign(new this.constructor, this, channels); - }, - displayable: function() { - return this.rgb().displayable(); - }, - hex: color_formatHex, // Deprecated! Use color.formatHex. - formatHex: color_formatHex, - formatHsl: color_formatHsl, - formatRgb: color_formatRgb, - toString: color_formatRgb -}); - -function color_formatHex() { - return this.rgb().formatHex(); -} - -function color_formatHsl() { - return hslConvert(this).formatHsl(); -} - -function color_formatRgb() { - return this.rgb().formatRgb(); -} - -function color(format) { - var m, l; - format = (format + "").trim().toLowerCase(); - return (m = reHex.exec(format)) ? (l = m[1].length, m = parseInt(m[1], 16), l === 6 ? rgbn(m) // #ff0000 - : l === 3 ? new Rgb((m >> 8 & 0xf) | (m >> 4 & 0xf0), (m >> 4 & 0xf) | (m & 0xf0), ((m & 0xf) << 4) | (m & 0xf), 1) // #f00 - : l === 8 ? rgba(m >> 24 & 0xff, m >> 16 & 0xff, m >> 8 & 0xff, (m & 0xff) / 0xff) // #ff000000 - : l === 4 ? rgba((m >> 12 & 0xf) | (m >> 8 & 0xf0), (m >> 8 & 0xf) | (m >> 4 & 0xf0), (m >> 4 & 0xf) | (m & 0xf0), (((m & 0xf) << 4) | (m & 0xf)) / 0xff) // #f000 - : null) // invalid hex - : (m = reRgbInteger.exec(format)) ? new Rgb(m[1], m[2], m[3], 1) // rgb(255, 0, 0) - : (m = reRgbPercent.exec(format)) ? new Rgb(m[1] * 255 / 100, m[2] * 255 / 100, m[3] * 255 / 100, 1) // rgb(100%, 0%, 0%) - : (m = reRgbaInteger.exec(format)) ? rgba(m[1], m[2], m[3], m[4]) // rgba(255, 0, 0, 1) - : (m = reRgbaPercent.exec(format)) ? rgba(m[1] * 255 / 100, m[2] * 255 / 100, m[3] * 255 / 100, m[4]) // rgb(100%, 0%, 0%, 1) - : (m = reHslPercent.exec(format)) ? hsla(m[1], m[2] / 100, m[3] / 100, 1) // hsl(120, 50%, 50%) - : (m = reHslaPercent.exec(format)) ? hsla(m[1], m[2] / 100, m[3] / 100, m[4]) // hsla(120, 50%, 50%, 1) - : named.hasOwnProperty(format) ? rgbn(named[format]) // eslint-disable-line no-prototype-builtins - : format === "transparent" ? new Rgb(NaN, NaN, NaN, 0) - : null; -} - -function rgbn(n) { - return new Rgb(n >> 16 & 0xff, n >> 8 & 0xff, n & 0xff, 1); -} - -function rgba(r, g, b, a) { - if (a <= 0) r = g = b = NaN; - return new Rgb(r, g, b, a); -} - -function rgbConvert(o) { - if (!(o instanceof Color)) o = color(o); - if (!o) return new Rgb; - o = o.rgb(); - return new Rgb(o.r, o.g, o.b, o.opacity); -} - -function rgb(r, g, b, opacity) { - return arguments.length === 1 ? rgbConvert(r) : new Rgb(r, g, b, opacity == null ? 1 : opacity); -} - -function Rgb(r, g, b, opacity) { - this.r = +r; - this.g = +g; - this.b = +b; - this.opacity = +opacity; -} - -define(Rgb, rgb, extend(Color, { - brighter: function(k) { - k = k == null ? brighter : Math.pow(brighter, k); - return new Rgb(this.r * k, this.g * k, this.b * k, this.opacity); - }, - darker: function(k) { - k = k == null ? darker : Math.pow(darker, k); - return new Rgb(this.r * k, this.g * k, this.b * k, this.opacity); - }, - rgb: function() { - return this; - }, - displayable: function() { - return (-0.5 <= this.r && this.r < 255.5) - && (-0.5 <= this.g && this.g < 255.5) - && (-0.5 <= this.b && this.b < 255.5) - && (0 <= this.opacity && this.opacity <= 1); - }, - hex: rgb_formatHex, // Deprecated! Use color.formatHex. - formatHex: rgb_formatHex, - formatRgb: rgb_formatRgb, - toString: rgb_formatRgb -})); - -function rgb_formatHex() { - return "#" + hex(this.r) + hex(this.g) + hex(this.b); -} - -function rgb_formatRgb() { - var a = this.opacity; a = isNaN(a) ? 1 : Math.max(0, Math.min(1, a)); - return (a === 1 ? "rgb(" : "rgba(") - + Math.max(0, Math.min(255, Math.round(this.r) || 0)) + ", " - + Math.max(0, Math.min(255, Math.round(this.g) || 0)) + ", " - + Math.max(0, Math.min(255, Math.round(this.b) || 0)) - + (a === 1 ? ")" : ", " + a + ")"); -} - -function hex(value) { - value = Math.max(0, Math.min(255, Math.round(value) || 0)); - return (value < 16 ? "0" : "") + value.toString(16); -} - -function hsla(h, s, l, a) { - if (a <= 0) h = s = l = NaN; - else if (l <= 0 || l >= 1) h = s = NaN; - else if (s <= 0) h = NaN; - return new Hsl(h, s, l, a); -} - -function hslConvert(o) { - if (o instanceof Hsl) return new Hsl(o.h, o.s, o.l, o.opacity); - if (!(o instanceof Color)) o = color(o); - if (!o) return new Hsl; - if (o instanceof Hsl) return o; - o = o.rgb(); - var r = o.r / 255, - g = o.g / 255, - b = o.b / 255, - min = Math.min(r, g, b), - max = Math.max(r, g, b), - h = NaN, - s = max - min, - l = (max + min) / 2; - if (s) { - if (r === max) h = (g - b) / s + (g < b) * 6; - else if (g === max) h = (b - r) / s + 2; - else h = (r - g) / s + 4; - s /= l < 0.5 ? max + min : 2 - max - min; - h *= 60; - } else { - s = l > 0 && l < 1 ? 0 : h; - } - return new Hsl(h, s, l, o.opacity); -} - -function hsl(h, s, l, opacity) { - return arguments.length === 1 ? hslConvert(h) : new Hsl(h, s, l, opacity == null ? 1 : opacity); -} - -function Hsl(h, s, l, opacity) { - this.h = +h; - this.s = +s; - this.l = +l; - this.opacity = +opacity; -} - -define(Hsl, hsl, extend(Color, { - brighter: function(k) { - k = k == null ? brighter : Math.pow(brighter, k); - return new Hsl(this.h, this.s, this.l * k, this.opacity); - }, - darker: function(k) { - k = k == null ? darker : Math.pow(darker, k); - return new Hsl(this.h, this.s, this.l * k, this.opacity); - }, - rgb: function() { - var h = this.h % 360 + (this.h < 0) * 360, - s = isNaN(h) || isNaN(this.s) ? 0 : this.s, - l = this.l, - m2 = l + (l < 0.5 ? l : 1 - l) * s, - m1 = 2 * l - m2; - return new Rgb( - hsl2rgb(h >= 240 ? h - 240 : h + 120, m1, m2), - hsl2rgb(h, m1, m2), - hsl2rgb(h < 120 ? h + 240 : h - 120, m1, m2), - this.opacity - ); - }, - displayable: function() { - return (0 <= this.s && this.s <= 1 || isNaN(this.s)) - && (0 <= this.l && this.l <= 1) - && (0 <= this.opacity && this.opacity <= 1); - }, - formatHsl: function() { - var a = this.opacity; a = isNaN(a) ? 1 : Math.max(0, Math.min(1, a)); - return (a === 1 ? "hsl(" : "hsla(") - + (this.h || 0) + ", " - + (this.s || 0) * 100 + "%, " - + (this.l || 0) * 100 + "%" - + (a === 1 ? ")" : ", " + a + ")"); - } -})); - -/* From FvD 13.37, CSS Color Module Level 3 */ -function hsl2rgb(h, m1, m2) { - return (h < 60 ? m1 + (m2 - m1) * h / 60 - : h < 180 ? m2 - : h < 240 ? m1 + (m2 - m1) * (240 - h) / 60 - : m1) * 255; -} - -var deg2rad = Math.PI / 180; -var rad2deg = 180 / Math.PI; - -var A$1 = -0.14861, - B = +1.78277, - C = -0.29227, - D = -0.90649, - E = +1.97294, - ED = E * D, - EB = E * B, - BC_DA = B * C - D * A$1; - -function cubehelixConvert(o) { - if (o instanceof Cubehelix) return new Cubehelix(o.h, o.s, o.l, o.opacity); - if (!(o instanceof Rgb)) o = rgbConvert(o); - var r = o.r / 255, - g = o.g / 255, - b = o.b / 255, - l = (BC_DA * b + ED * r - EB * g) / (BC_DA + ED - EB), - bl = b - l, - k = (E * (g - l) - C * bl) / D, - s = Math.sqrt(k * k + bl * bl) / (E * l * (1 - l)), // NaN if l=0 or l=1 - h = s ? Math.atan2(k, bl) * rad2deg - 120 : NaN; - return new Cubehelix(h < 0 ? h + 360 : h, s, l, o.opacity); -} - -function cubehelix(h, s, l, opacity) { - return arguments.length === 1 ? cubehelixConvert(h) : new Cubehelix(h, s, l, opacity == null ? 1 : opacity); -} - -function Cubehelix(h, s, l, opacity) { - this.h = +h; - this.s = +s; - this.l = +l; - this.opacity = +opacity; -} - -define(Cubehelix, cubehelix, extend(Color, { - brighter: function(k) { - k = k == null ? brighter : Math.pow(brighter, k); - return new Cubehelix(this.h, this.s, this.l * k, this.opacity); - }, - darker: function(k) { - k = k == null ? darker : Math.pow(darker, k); - return new Cubehelix(this.h, this.s, this.l * k, this.opacity); - }, - rgb: function() { - var h = isNaN(this.h) ? 0 : (this.h + 120) * deg2rad, - l = +this.l, - a = isNaN(this.s) ? 0 : this.s * l * (1 - l), - cosh = Math.cos(h), - sinh = Math.sin(h); - return new Rgb( - 255 * (l + a * (A$1 * cosh + B * sinh)), - 255 * (l + a * (C * cosh + D * sinh)), - 255 * (l + a * (E * cosh)), - this.opacity - ); - } -})); - -function constant(x) { - return function() { - return x; - }; -} - -function linear$1(a, d) { - return function(t) { - return a + t * d; - }; -} - -function exponential(a, b, y) { - return a = Math.pow(a, y), b = Math.pow(b, y) - a, y = 1 / y, function(t) { - return Math.pow(a + t * b, y); - }; -} - -function hue(a, b) { - var d = b - a; - return d ? linear$1(a, d > 180 || d < -180 ? d - 360 * Math.round(d / 360) : d) : constant(isNaN(a) ? b : a); -} - -function gamma(y) { - return (y = +y) === 1 ? nogamma : function(a, b) { - return b - a ? exponential(a, b, y) : constant(isNaN(a) ? b : a); - }; -} - -function nogamma(a, b) { - var d = b - a; - return d ? linear$1(a, d) : constant(isNaN(a) ? b : a); -} - -var rgb$1 = (function rgbGamma(y) { - var color = gamma(y); - - function rgb$1(start, end) { - var r = color((start = rgb(start)).r, (end = rgb(end)).r), - g = color(start.g, end.g), - b = color(start.b, end.b), - opacity = nogamma(start.opacity, end.opacity); - return function(t) { - start.r = r(t); - start.g = g(t); - start.b = b(t); - start.opacity = opacity(t); - return start + ""; - }; - } - - rgb$1.gamma = rgbGamma; - - return rgb$1; -})(1); - -function numberArray(a, b) { - if (!b) b = []; - var n = a ? Math.min(b.length, a.length) : 0, - c = b.slice(), - i; - return function(t) { - for (i = 0; i < n; ++i) c[i] = a[i] * (1 - t) + b[i] * t; - return c; - }; -} - -function isNumberArray(x) { - return ArrayBuffer.isView(x) && !(x instanceof DataView); -} - -function genericArray(a, b) { - var nb = b ? b.length : 0, - na = a ? Math.min(nb, a.length) : 0, - x = new Array(na), - c = new Array(nb), - i; - - for (i = 0; i < na; ++i) x[i] = interpolateValue(a[i], b[i]); - for (; i < nb; ++i) c[i] = b[i]; - - return function(t) { - for (i = 0; i < na; ++i) c[i] = x[i](t); - return c; - }; -} - -function date(a, b) { - var d = new Date; - return a = +a, b = +b, function(t) { - return d.setTime(a * (1 - t) + b * t), d; - }; -} - -function reinterpolate(a, b) { - return a = +a, b = +b, function(t) { - return a * (1 - t) + b * t; - }; -} - -function object(a, b) { - var i = {}, - c = {}, - k; - - if (a === null || typeof a !== "object") a = {}; - if (b === null || typeof b !== "object") b = {}; - - for (k in b) { - if (k in a) { - i[k] = interpolateValue(a[k], b[k]); - } else { - c[k] = b[k]; - } - } - - return function(t) { - for (k in i) c[k] = i[k](t); - return c; - }; -} - -var reA = /[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g, - reB = new RegExp(reA.source, "g"); - -function zero(b) { - return function() { - return b; - }; -} - -function one(b) { - return function(t) { - return b(t) + ""; - }; -} - -function string(a, b) { - var bi = reA.lastIndex = reB.lastIndex = 0, // scan index for next number in b - am, // current match in a - bm, // current match in b - bs, // string preceding current number in b, if any - i = -1, // index in s - s = [], // string constants and placeholders - q = []; // number interpolators - - // Coerce inputs to strings. - a = a + "", b = b + ""; - - // Interpolate pairs of numbers in a & b. - while ((am = reA.exec(a)) - && (bm = reB.exec(b))) { - if ((bs = bm.index) > bi) { // a string precedes the next number in b - bs = b.slice(bi, bs); - if (s[i]) s[i] += bs; // coalesce with previous string - else s[++i] = bs; - } - if ((am = am[0]) === (bm = bm[0])) { // numbers in a & b match - if (s[i]) s[i] += bm; // coalesce with previous string - else s[++i] = bm; - } else { // interpolate non-matching numbers - s[++i] = null; - q.push({i: i, x: reinterpolate(am, bm)}); - } - bi = reB.lastIndex; - } - - // Add remains of b. - if (bi < b.length) { - bs = b.slice(bi); - if (s[i]) s[i] += bs; // coalesce with previous string - else s[++i] = bs; - } - - // Special optimization for only a single match. - // Otherwise, interpolate each of the numbers and rejoin the string. - return s.length < 2 ? (q[0] - ? one(q[0].x) - : zero(b)) - : (b = q.length, function(t) { - for (var i = 0, o; i < b; ++i) s[(o = q[i]).i] = o.x(t); - return s.join(""); - }); -} - -function interpolateValue(a, b) { - var t = typeof b, c; - return b == null || t === "boolean" ? constant(b) - : (t === "number" ? reinterpolate - : t === "string" ? ((c = color(b)) ? (b = c, rgb$1) : string) - : b instanceof color ? rgb$1 - : b instanceof Date ? date - : isNumberArray(b) ? numberArray - : Array.isArray(b) ? genericArray - : typeof b.valueOf !== "function" && typeof b.toString !== "function" || isNaN(b) ? object - : reinterpolate)(a, b); -} - -function interpolateRound(a, b) { - return a = +a, b = +b, function(t) { - return Math.round(a * (1 - t) + b * t); - }; -} - -function cubehelix$1(hue) { - return (function cubehelixGamma(y) { - y = +y; - - function cubehelix$1(start, end) { - var h = hue((start = cubehelix(start)).h, (end = cubehelix(end)).h), - s = nogamma(start.s, end.s), - l = nogamma(start.l, end.l), - opacity = nogamma(start.opacity, end.opacity); - return function(t) { - start.h = h(t); - start.s = s(t); - start.l = l(Math.pow(t, y)); - start.opacity = opacity(t); - return start + ""; - }; - } - - cubehelix$1.gamma = cubehelixGamma; - - return cubehelix$1; - })(1); -} - -cubehelix$1(hue); -var cubehelixLong = cubehelix$1(nogamma); - -var isInterpolatable = function (obj) { - // d3 turns null into 0 and undefined into NaN, which we don't want. - if (obj !== null) { - switch (typeof obj) { - case "undefined": - return false; - - case "number": - // The standard `isNaN` is fine in this case since we already know the - // type is number. - return !isNaN(obj) && obj !== Number.POSITIVE_INFINITY && obj !== Number.NEGATIVE_INFINITY; - - case "string": - // d3 might not *actually* be able to interpolate the string, but it - // won't cause any issues to let it try. - return true; - - case "boolean": - // d3 turns Booleans into integers, which we don't want. Sure, we could - // interpolate from 0 -> 1, but we'd be sending a non-Boolean to - // something expecting a Boolean. - return false; - - case "object": - // Don't try to interpolate class instances (except Date or Array). - return obj instanceof Date || Array.isArray(obj) || isPlainObject_1(obj); - - case "function": - // Careful! There may be extra properties on function objects that the - // component expects to access - for instance, it may be a `d3.scale()` - // function, which has its own methods attached. We don't know if the - // component is only going to call the function (in which case it's - // safely interpolatable) or if it's going to access special properties - // (in which case our function generated from `interpolateFunction` will - // most likely cause an error. We could check for enumerable properties - // on the function object here to see if it's a "plain" function, but - // let's just require that components prevent such function props from - // being animated in the first place. - return true; - } - } - - return false; -}; -/** - * Interpolate immediately to the end value at the given step `when`. - * Some nicer default behavior might be to jump at the halfway point or return - * `a` if `t` is 0 (instead of always returning `b`). But d3's default - * interpolator does not do these things: - * - * d3.interpolate('aaa', 'bbb')(0) === 'bbb' - * - * ...and things might get wonky if we don't replicate that behavior. - * - * @param {any} a - Start value. - * @param {any} b - End value. - * @param {Number} when - Step value (0 to 1) at which to jump to `b`. - * @returns {Function} An interpolation function. - */ - -var interpolateImmediate = function (a, b) { - var when = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0; - return function (t) { - return t < when ? a : b; - }; -}; -/** - * Interpolate to or from a function. The interpolated value will be a function - * that calls `a` (if it's a function) and `b` (if it's a function) and calls - * `d3.interpolate` on the resulting values. Note that our function won't - * necessarily be called (that's up to the component this eventually gets - * passed to) - but if it does get called, it will return an appropriately - * interpolated value. - * - * @param {any} a - Start value. - * @param {any} b - End value. - * @returns {Function} An interpolation function. - */ - -var interpolateFunction = function (a, b) { - return function (t) { - if (t >= 1) { - return b; - } - - return function () { - /* eslint-disable no-invalid-this */ - var aval = typeof a === "function" ? a.apply(this, arguments) : a; - var bval = typeof b === "function" ? b.apply(this, arguments) : b; - return interpolateValue(aval, bval)(t); - }; - }; -}; -/** - * Interpolate to or from an object. This method is a modification of the object interpolator in - * d3-interpolate https://github.com/d3/d3-interpolate/blob/master/src/object.js. This interpolator - * differs in that it uses our custom interpolators when interpolating the value of each property in - * an object. This allows the correct interpolation of nested objects, including styles - * - * @param {any} a - Start value. - * @param {any} b - End value. - * @returns {Function} An interpolation function. - */ - -var interpolateObject = function (a, b) { - var interpolateTypes = function (x, y) { - if (x === y || !isInterpolatable(x) || !isInterpolatable(y)) { - return interpolateImmediate(x, y); - } - - if (typeof x === "function" || typeof y === "function") { - return interpolateFunction(x, y); - } - - if (typeof x === "object" && isPlainObject_1(x) || typeof y === "object" && isPlainObject_1(y)) { - return interpolateObject(x, y); - } - - return interpolateValue(x, y); - }; // When the value is an array, attempt to sort by "key" so that animating nodes may be identified - // based on "key" instead of index - - - var keyData = function (val) { - return Array.isArray(val) ? orderBy_1(val, "key") : val; - }; - - var i = {}; - var c = {}; - var k; - - if (a === null || typeof a !== "object") { - a = {}; - } - - if (b === null || typeof b !== "object") { - b = {}; - } - - for (k in b) { - if (k in a) { - i[k] = interpolateTypes(keyData(a[k]), keyData(b[k])); - } else { - c[k] = b[k]; - } - } - - return function (t) { - for (k in i) { - c[k] = i[k](t); - } - - return c; - }; -}; -var interpolateString = function (a, b) { - var format = function (val) { - return typeof val === "string" ? val.replace(/,/g, "") : val; - }; - - return interpolateValue(format(a), format(b)); -}; -/** - * By default, the list of interpolators used by `d3.interpolate` has a few - * downsides: - * - * - `null` values get turned into 0. - * - `undefined`, `function`, and some other value types get turned into NaN. - * - Boolean types get turned into numbers, which probably will be meaningless - * to whatever is consuming them. - * - It tries to interpolate between identical start and end values, doing - * unnecessary calculations that sometimes result in floating point rounding - * errors. - * - * If only the default interpolators are used, `VictoryAnimation` will happily - * pass down NaN (and other bad) values as props to the wrapped component. - * The component will then either use the incorrect values or complain that it - * was passed props of the incorrect type. This custom interpolator is added - * using the `d3.interpolators` API, and prevents such cases from happening - * for most values. - * - * @param {any} a - Start value. - * @param {any} b - End value. - * @returns {Function|undefined} An interpolation function, if necessary. - */ - -var victoryInterpolator = function (a, b) { - // If the values are strictly equal, or either value is not interpolatable, - // just use either the start value `a` or end value `b` at every step, as - // there is no reasonable in-between value. - if (a === b || !isInterpolatable(a) || !isInterpolatable(b)) { - return interpolateImmediate(a, b); - } - - if (typeof a === "function" || typeof b === "function") { - return interpolateFunction(a, b); - } - - if (isPlainObject_1(a) || isPlainObject_1(b)) { - return interpolateObject(a, b); - } - - if (typeof a === "string" || typeof b === "string") { - return interpolateString(a, b); - } - - return interpolateValue(a, b); -}; - -var frame = 0, // is an animation frame pending? - timeout = 0, // is a timeout pending? - interval = 0, // are any timers active? - pokeDelay = 1000, // how frequently we check for clock skew - taskHead, - taskTail, - clockLast = 0, - clockNow = 0, - clockSkew = 0, - clock = typeof performance === "object" && performance.now ? performance : Date, - setFrame = typeof window === "object" && window.requestAnimationFrame ? window.requestAnimationFrame.bind(window) : function(f) { setTimeout(f, 17); }; - -function now() { - return clockNow || (setFrame(clearNow), clockNow = clock.now() + clockSkew); -} - -function clearNow() { - clockNow = 0; -} - -function Timer() { - this._call = - this._time = - this._next = null; -} - -Timer.prototype = timer.prototype = { - constructor: Timer, - restart: function(callback, delay, time) { - if (typeof callback !== "function") throw new TypeError("callback is not a function"); - time = (time == null ? now() : +time) + (delay == null ? 0 : +delay); - if (!this._next && taskTail !== this) { - if (taskTail) taskTail._next = this; - else taskHead = this; - taskTail = this; - } - this._call = callback; - this._time = time; - sleep(); - }, - stop: function() { - if (this._call) { - this._call = null; - this._time = Infinity; - sleep(); - } - } -}; - -function timer(callback, delay, time) { - var t = new Timer; - t.restart(callback, delay, time); - return t; -} - -function timerFlush() { - now(); // Get the current time, if not already set. - ++frame; // Pretend we’ve set an alarm, if we haven’t already. - var t = taskHead, e; - while (t) { - if ((e = clockNow - t._time) >= 0) t._call.call(null, e); - t = t._next; - } - --frame; -} - -function wake() { - clockNow = (clockLast = clock.now()) + clockSkew; - frame = timeout = 0; - try { - timerFlush(); - } finally { - frame = 0; - nap(); - clockNow = 0; - } -} - -function poke() { - var now = clock.now(), delay = now - clockLast; - if (delay > pokeDelay) clockSkew -= delay, clockLast = now; -} - -function nap() { - var t0, t1 = taskHead, t2, time = Infinity; - while (t1) { - if (t1._call) { - if (time > t1._time) time = t1._time; - t0 = t1, t1 = t1._next; - } else { - t2 = t1._next, t1._next = null; - t1 = t0 ? t0._next = t2 : taskHead = t2; - } - } - taskTail = t0; - sleep(time); -} - -function sleep(time) { - if (frame) return; // Soonest alarm already set, or will be. - if (timeout) timeout = clearTimeout(timeout); - var delay = time - clockNow; // Strictly less than if we recomputed clockNow. - if (delay > 24) { - if (time < Infinity) timeout = setTimeout(wake, time - clock.now() - clockSkew); - if (interval) interval = clearInterval(interval); - } else { - if (!interval) clockLast = clock.now(), interval = setInterval(poke, pokeDelay); - frame = 1, setFrame(wake); - } -} - -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } - -var Timer$1 = -/*#__PURE__*/ -function () { - function Timer() { - _classCallCheck(this, Timer); - - this.shouldAnimate = true; - this.subscribers = []; - this.loop = this.loop.bind(this); - this.timer = null; - this.activeSubscriptions = 0; - } - - _createClass(Timer, [{ - key: "bypassAnimation", - value: function bypassAnimation() { - this.shouldAnimate = false; - } - }, { - key: "resumeAnimation", - value: function resumeAnimation() { - this.shouldAnimate = true; - } - }, { - key: "loop", - value: function loop() { - this.subscribers.forEach(function (s) { - s.callback(now() - s.startTime, s.duration); - }); - } - }, { - key: "start", - value: function start() { - if (!this.timer) { - this.timer = timer(this.loop); - } - } - }, { - key: "stop", - value: function stop() { - if (this.timer) { - this.timer.stop(); - this.timer = null; - } - } - }, { - key: "subscribe", - value: function subscribe(callback, duration) { - duration = this.shouldAnimate ? duration : 0; - var subscriptionID = this.subscribers.push({ - startTime: now(), - callback: callback, - duration: duration - }); - this.activeSubscriptions++; - this.start(); - return subscriptionID; - } - }, { - key: "unsubscribe", - value: function unsubscribe(id) { - if (id !== null && this.subscribers[id - 1]) { - delete this.subscribers[id - 1]; - this.activeSubscriptions--; - } - - if (this.activeSubscriptions === 0) { - this.stop(); - } - } - }]); - - return Timer; -}(); - -/** - * The React context object consumers may use to access or override the global - * timer. - */ - -var TimerContext = React__default.createContext({ - transitionTimer: new Timer$1(), - animationTimer: new Timer$1() -}); -TimerContext.displayName = "TimerContext"; - -var isArray$1 = Array.isArray; -var keyList = Object.keys; -var hasProp = Object.prototype.hasOwnProperty; -var hasElementType = typeof Element !== 'undefined'; - -function equal(a, b) { - // fast-deep-equal index.js 2.0.1 - if (a === b) return true; - - if (a && b && typeof a == 'object' && typeof b == 'object') { - var arrA = isArray$1(a) - , arrB = isArray$1(b) - , i - , length - , key; - - if (arrA && arrB) { - length = a.length; - if (length != b.length) return false; - for (i = length; i-- !== 0;) - if (!equal(a[i], b[i])) return false; - return true; - } - - if (arrA != arrB) return false; - - var dateA = a instanceof Date - , dateB = b instanceof Date; - if (dateA != dateB) return false; - if (dateA && dateB) return a.getTime() == b.getTime(); - - var regexpA = a instanceof RegExp - , regexpB = b instanceof RegExp; - if (regexpA != regexpB) return false; - if (regexpA && regexpB) return a.toString() == b.toString(); - - var keys = keyList(a); - length = keys.length; - - if (length !== keyList(b).length) - return false; - - for (i = length; i-- !== 0;) - if (!hasProp.call(b, keys[i])) return false; - // end fast-deep-equal - - // start react-fast-compare - // custom handling for DOM elements - if (hasElementType && a instanceof Element && b instanceof Element) - return a === b; - - // custom handling for React - for (i = length; i-- !== 0;) { - key = keys[i]; - if (key === '_owner' && a.$$typeof) { - // React-specific: avoid traversing React elements' _owner. - // _owner contains circular references - // and is not needed when comparing the actual elements (and not their owners) - // .$$typeof and ._store on just reasonable markers of a react element - continue; - } else { - // all other properties should be traversed as usual - if (!equal(a[key], b[key])) return false; - } - } - // end react-fast-compare - - // fast-deep-equal index.js 2.0.1 - return true; - } - - return a !== a && b !== b; -} -// end fast-deep-equal - -var reactFastCompare = function exportedEqual(a, b) { - try { - return equal(a, b); - } catch (error) { - if ((error.message && error.message.match(/stack|recursion/i)) || (error.number === -2146828260)) { - // warn on circular references, don't crash - // browsers give this different errors name and messages: - // chrome/safari: "RangeError", "Maximum call stack size exceeded" - // firefox: "InternalError", too much recursion" - // edge: "Error", "Out of stack space" - console.warn('Warning: react-fast-compare does not handle circular references.', error.name, error.message); - return false; - } - // some other error. we should definitely know about these - throw error; - } -}; - -function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread(); } - -function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function _classCallCheck$1(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$1(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$1(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$1(Constructor.prototype, protoProps); if (staticProps) _defineProperties$1(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } - -function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } - -function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -var VictoryAnimation = -/*#__PURE__*/ -function (_React$Component) { - _inherits(VictoryAnimation, _React$Component); - - function VictoryAnimation(props, context) { - var _this; - - _classCallCheck$1(this, VictoryAnimation); - - _this = _possibleConstructorReturn(this, (VictoryAnimation.__proto__ || Object.getPrototypeOf(VictoryAnimation)).call(this, props, context)); - /* defaults */ - - _this.state = { - data: Array.isArray(_this.props.data) ? _this.props.data[0] : _this.props.data, - animationInfo: { - progress: 0, - animating: false - } - }; - _this.interpolator = null; - _this.queue = Array.isArray(_this.props.data) ? _this.props.data.slice(1) : []; - /* build easing function */ - - _this.ease = d3Ease[_this.toNewName(_this.props.easing)]; - /* - There is no autobinding of this in ES6 classes - so we bind functionToBeRunEachFrame to current instance of victory animation class - */ - - _this.functionToBeRunEachFrame = _this.functionToBeRunEachFrame.bind(_assertThisInitialized(_this)); - _this.timer = _this.context.animationTimer; - return _this; - } - - _createClass$1(VictoryAnimation, [{ - key: "componentDidMount", - value: function componentDidMount() { - // Length check prevents us from triggering `onEnd` in `traverseQueue`. - if (this.queue.length) { - this.traverseQueue(); - } - } - }, { - key: "shouldComponentUpdate", - value: function shouldComponentUpdate(nextProps, nextState) { - var equalProps = reactFastCompare(this.props, nextProps); - - if (!equalProps) { - /* cancel existing loop if it exists */ - this.timer.unsubscribe(this.loopID); - /* If an object was supplied */ - - if (!Array.isArray(nextProps.data)) { - // Replace the tween queue. Could set `this.queue = [nextProps.data]`, - // but let's reuse the same array. - this.queue.length = 0; - this.queue.push(nextProps.data); - /* If an array was supplied */ - } else { - var _queue; - - /* Extend the tween queue */ - (_queue = this.queue).push.apply(_queue, _toConsumableArray(nextProps.data)); - } - /* Start traversing the tween queue */ - - - this.traverseQueue(); - } - - return nextState.animationInfo.animating || nextState.animationInfo.terminating || !equalProps; - } - }, { - key: "componentWillUnmount", - value: function componentWillUnmount() { - if (this.loopID) { - this.timer.unsubscribe(this.loopID); - } else { - this.timer.stop(); - } - } - }, { - key: "toNewName", - value: function toNewName(ease) { - // d3-ease changed the naming scheme for ease from "linear" -> "easeLinear" etc. - var capitalize = function (s) { - return s && s[0].toUpperCase() + s.slice(1); - }; - - return "ease".concat(capitalize(ease)); - } - /* Traverse the tween queue */ - - }, { - key: "traverseQueue", - value: function traverseQueue() { - var _this2 = this; - - if (this.queue.length) { - /* Get the next index */ - var data = this.queue[0]; - /* compare cached version to next props */ - - this.interpolator = victoryInterpolator(this.state.data, data); - /* reset step to zero */ - - if (this.props.delay) { - setTimeout(function () { - _this2.loopID = _this2.timer.subscribe(_this2.functionToBeRunEachFrame, _this2.props.duration); - }, this.props.delay); - } else { - this.loopID = this.timer.subscribe(this.functionToBeRunEachFrame, this.props.duration); - } - } else if (this.props.onEnd) { - this.props.onEnd(); - } - } - /* every frame we... */ - - }, { - key: "functionToBeRunEachFrame", - value: function functionToBeRunEachFrame(elapsed, duration) { - /* - step can generate imprecise values, sometimes greater than 1 - if this happens set the state to 1 and return, cancelling the timer - */ - duration = duration !== undefined ? duration : this.props.duration; - var step = duration ? elapsed / duration : 1; - - if (step >= 1) { - this.setState({ - data: this.interpolator(1), - animationInfo: { - progress: 1, - animating: false, - terminating: true - } - }); - - if (this.loopID) { - this.timer.unsubscribe(this.loopID); - } - - this.queue.shift(); - this.traverseQueue(); - return; - } - /* - if we're not at the end of the timer, set the state by passing - current step value that's transformed by the ease function to the - interpolator, which is cached for performance whenever props are received - */ - - - this.setState({ - data: this.interpolator(this.ease(step)), - animationInfo: { - progress: step, - animating: step < 1 - } - }); - } - }, { - key: "render", - value: function render() { - return this.props.children(this.state.data, this.state.animationInfo); - } - }]); - - return VictoryAnimation; -}(React__default.Component); - -Object.defineProperty(VictoryAnimation, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryAnimation" -}); -Object.defineProperty(VictoryAnimation, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: { - children: propTypes.func, - data: propTypes.oneOfType([propTypes.object, propTypes.array]), - delay: propTypes.number, - duration: propTypes.number, - easing: propTypes.oneOf(["back", "backIn", "backOut", "backInOut", "bounce", "bounceIn", "bounceOut", "bounceInOut", "circle", "circleIn", "circleOut", "circleInOut", "linear", "linearIn", "linearOut", "linearInOut", "cubic", "cubicIn", "cubicOut", "cubicInOut", "elastic", "elasticIn", "elasticOut", "elasticInOut", "exp", "expIn", "expOut", "expInOut", "poly", "polyIn", "polyOut", "polyInOut", "quad", "quadIn", "quadOut", "quadInOut", "sin", "sinIn", "sinOut", "sinInOut"]), - onEnd: propTypes.func - } -}); -Object.defineProperty(VictoryAnimation, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: { - data: {}, - delay: 0, - duration: 1000, - easing: "quadInOut" - } -}); -Object.defineProperty(VictoryAnimation, "contextType", { - configurable: true, - enumerable: true, - writable: true, - value: TimerContext -}); - -/** Used to generate unique IDs. */ -var idCounter = 0; - -/** - * Generates a unique ID. If `prefix` is given, the ID is appended to it. - * - * @static - * @since 0.1.0 - * @memberOf _ - * @category Util - * @param {string} [prefix=''] The value to prefix the ID with. - * @returns {string} Returns the unique ID. - * @example - * - * _.uniqueId('contact_'); - * // => 'contact_104' - * - * _.uniqueId(); - * // => '105' - */ -function uniqueId(prefix) { - var id = ++idCounter; - return toString_1(prefix) + id; -} - -var uniqueId_1 = uniqueId; - -/** - * A faster alternative to `Function#apply`, this function invokes `func` - * with the `this` binding of `thisArg` and the arguments of `args`. - * - * @private - * @param {Function} func The function to invoke. - * @param {*} thisArg The `this` binding of `func`. - * @param {Array} args The arguments to invoke `func` with. - * @returns {*} Returns the result of `func`. - */ -function apply(func, thisArg, args) { - switch (args.length) { - case 0: return func.call(thisArg); - case 1: return func.call(thisArg, args[0]); - case 2: return func.call(thisArg, args[0], args[1]); - case 3: return func.call(thisArg, args[0], args[1], args[2]); - } - return func.apply(thisArg, args); -} - -var _apply = apply; - -/* Built-in method references for those with the same name as other `lodash` methods. */ -var nativeMax = Math.max; - -/** - * A specialized version of `baseRest` which transforms the rest array. - * - * @private - * @param {Function} func The function to apply a rest parameter to. - * @param {number} [start=func.length-1] The start position of the rest parameter. - * @param {Function} transform The rest array transform. - * @returns {Function} Returns the new function. - */ -function overRest(func, start, transform) { - start = nativeMax(start === undefined ? (func.length - 1) : start, 0); - return function() { - var args = arguments, - index = -1, - length = nativeMax(args.length - start, 0), - array = Array(length); - - while (++index < length) { - array[index] = args[start + index]; - } - index = -1; - var otherArgs = Array(start + 1); - while (++index < start) { - otherArgs[index] = args[index]; - } - otherArgs[start] = transform(array); - return _apply(func, this, otherArgs); - }; -} - -var _overRest = overRest; - -/** - * Creates a function that returns `value`. - * - * @static - * @memberOf _ - * @since 2.4.0 - * @category Util - * @param {*} value The value to return from the new function. - * @returns {Function} Returns the new constant function. - * @example - * - * var objects = _.times(2, _.constant({ 'a': 1 })); - * - * console.log(objects); - * // => [{ 'a': 1 }, { 'a': 1 }] - * - * console.log(objects[0] === objects[1]); - * // => true - */ -function constant$1(value) { - return function() { - return value; - }; -} - -var constant_1 = constant$1; - -var defineProperty = (function() { - try { - var func = _getNative(Object, 'defineProperty'); - func({}, '', {}); - return func; - } catch (e) {} -}()); - -var _defineProperty = defineProperty; - -/** - * The base implementation of `setToString` without support for hot loop shorting. - * - * @private - * @param {Function} func The function to modify. - * @param {Function} string The `toString` result. - * @returns {Function} Returns `func`. - */ -var baseSetToString = !_defineProperty ? identity_1 : function(func, string) { - return _defineProperty(func, 'toString', { - 'configurable': true, - 'enumerable': false, - 'value': constant_1(string), - 'writable': true - }); -}; - -var _baseSetToString = baseSetToString; - -/** Used to detect hot functions by number of calls within a span of milliseconds. */ -var HOT_COUNT = 800, - HOT_SPAN = 16; - -/* Built-in method references for those with the same name as other `lodash` methods. */ -var nativeNow = Date.now; - -/** - * Creates a function that'll short out and invoke `identity` instead - * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN` - * milliseconds. - * - * @private - * @param {Function} func The function to restrict. - * @returns {Function} Returns the new shortable function. - */ -function shortOut(func) { - var count = 0, - lastCalled = 0; - - return function() { - var stamp = nativeNow(), - remaining = HOT_SPAN - (stamp - lastCalled); - - lastCalled = stamp; - if (remaining > 0) { - if (++count >= HOT_COUNT) { - return arguments[0]; - } - } else { - count = 0; - } - return func.apply(undefined, arguments); - }; -} - -var _shortOut = shortOut; - -/** - * Sets the `toString` method of `func` to return `string`. - * - * @private - * @param {Function} func The function to modify. - * @param {Function} string The `toString` result. - * @returns {Function} Returns `func`. - */ -var setToString = _shortOut(_baseSetToString); - -var _setToString = setToString; - -/** - * The base implementation of `_.rest` which doesn't validate or coerce arguments. - * - * @private - * @param {Function} func The function to apply a rest parameter to. - * @param {number} [start=func.length-1] The start position of the rest parameter. - * @returns {Function} Returns the new function. - */ -function baseRest(func, start) { - return _setToString(_overRest(func, start, identity_1), func + ''); -} - -var _baseRest = baseRest; - -/** - * Checks if the given arguments are from an iteratee call. - * - * @private - * @param {*} value The potential iteratee value argument. - * @param {*} index The potential iteratee index or key argument. - * @param {*} object The potential iteratee object argument. - * @returns {boolean} Returns `true` if the arguments are from an iteratee call, - * else `false`. - */ -function isIterateeCall(value, index, object) { - if (!isObject_1(object)) { - return false; - } - var type = typeof index; - if (type == 'number' - ? (isArrayLike_1(object) && _isIndex(index, object.length)) - : (type == 'string' && index in object) - ) { - return eq_1(object[index], value); - } - return false; -} - -var _isIterateeCall = isIterateeCall; - -/** - * This function is like - * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) - * except that it includes inherited enumerable properties. - * - * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names. - */ -function nativeKeysIn(object) { - var result = []; - if (object != null) { - for (var key in Object(object)) { - result.push(key); - } - } - return result; -} - -var _nativeKeysIn = nativeKeysIn; - -/** Used for built-in method references. */ -var objectProto$d = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty$b = objectProto$d.hasOwnProperty; - -/** - * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense. - * - * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names. - */ -function baseKeysIn(object) { - if (!isObject_1(object)) { - return _nativeKeysIn(object); - } - var isProto = _isPrototype(object), - result = []; - - for (var key in object) { - if (!(key == 'constructor' && (isProto || !hasOwnProperty$b.call(object, key)))) { - result.push(key); - } - } - return result; -} - -var _baseKeysIn = baseKeysIn; - -/** - * Creates an array of the own and inherited enumerable property names of `object`. - * - * **Note:** Non-object values are coerced to objects. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Object - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names. - * @example - * - * function Foo() { - * this.a = 1; - * this.b = 2; - * } - * - * Foo.prototype.c = 3; - * - * _.keysIn(new Foo); - * // => ['a', 'b', 'c'] (iteration order is not guaranteed) - */ -function keysIn(object) { - return isArrayLike_1(object) ? _arrayLikeKeys(object, true) : _baseKeysIn(object); -} - -var keysIn_1 = keysIn; - -/** Used for built-in method references. */ -var objectProto$e = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty$c = objectProto$e.hasOwnProperty; - -/** - * Assigns own and inherited enumerable string keyed properties of source - * objects to the destination object for all destination properties that - * resolve to `undefined`. Source objects are applied from left to right. - * Once a property is set, additional values of the same property are ignored. - * - * **Note:** This method mutates `object`. - * - * @static - * @since 0.1.0 - * @memberOf _ - * @category Object - * @param {Object} object The destination object. - * @param {...Object} [sources] The source objects. - * @returns {Object} Returns `object`. - * @see _.defaultsDeep - * @example - * - * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); - * // => { 'a': 1, 'b': 2 } - */ -var defaults = _baseRest(function(object, sources) { - object = Object(object); - - var index = -1; - var length = sources.length; - var guard = length > 2 ? sources[2] : undefined; - - if (guard && _isIterateeCall(sources[0], sources[1], guard)) { - length = 1; - } - - while (++index < length) { - var source = sources[index]; - var props = keysIn_1(source); - var propsIndex = -1; - var propsLength = props.length; - - while (++propsIndex < propsLength) { - var key = props[propsIndex]; - var value = object[key]; - - if (value === undefined || - (eq_1(value, objectProto$e[key]) && !hasOwnProperty$c.call(object, key))) { - object[key] = source[key]; - } - } - } - - return object; -}); - -var defaults_1 = defaults; - -/** - * The base implementation of `assignValue` and `assignMergeValue` without - * value checks. - * - * @private - * @param {Object} object The object to modify. - * @param {string} key The key of the property to assign. - * @param {*} value The value to assign. - */ -function baseAssignValue(object, key, value) { - if (key == '__proto__' && _defineProperty) { - _defineProperty(object, key, { - 'configurable': true, - 'enumerable': true, - 'value': value, - 'writable': true - }); - } else { - object[key] = value; - } -} - -var _baseAssignValue = baseAssignValue; - -/** Used for built-in method references. */ -var objectProto$f = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty$d = objectProto$f.hasOwnProperty; - -/** - * Assigns `value` to `key` of `object` if the existing value is not equivalent - * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * for equality comparisons. - * - * @private - * @param {Object} object The object to modify. - * @param {string} key The key of the property to assign. - * @param {*} value The value to assign. - */ -function assignValue(object, key, value) { - var objValue = object[key]; - if (!(hasOwnProperty$d.call(object, key) && eq_1(objValue, value)) || - (value === undefined && !(key in object))) { - _baseAssignValue(object, key, value); - } -} - -var _assignValue = assignValue; - -/** - * Copies properties of `source` to `object`. - * - * @private - * @param {Object} source The object to copy properties from. - * @param {Array} props The property identifiers to copy. - * @param {Object} [object={}] The object to copy properties to. - * @param {Function} [customizer] The function to customize copied values. - * @returns {Object} Returns `object`. - */ -function copyObject(source, props, object, customizer) { - var isNew = !object; - object || (object = {}); - - var index = -1, - length = props.length; - - while (++index < length) { - var key = props[index]; - - var newValue = customizer - ? customizer(object[key], source[key], key, object, source) - : undefined; - - if (newValue === undefined) { - newValue = source[key]; - } - if (isNew) { - _baseAssignValue(object, key, newValue); - } else { - _assignValue(object, key, newValue); - } - } - return object; -} - -var _copyObject = copyObject; - -/** - * Creates a function like `_.assign`. - * - * @private - * @param {Function} assigner The function to assign values. - * @returns {Function} Returns the new assigner function. - */ -function createAssigner(assigner) { - return _baseRest(function(object, sources) { - var index = -1, - length = sources.length, - customizer = length > 1 ? sources[length - 1] : undefined, - guard = length > 2 ? sources[2] : undefined; - - customizer = (assigner.length > 3 && typeof customizer == 'function') - ? (length--, customizer) - : undefined; - - if (guard && _isIterateeCall(sources[0], sources[1], guard)) { - customizer = length < 3 ? undefined : customizer; - length = 1; - } - object = Object(object); - while (++index < length) { - var source = sources[index]; - if (source) { - assigner(object, source, index, customizer); - } - } - return object; - }); -} - -var _createAssigner = createAssigner; - -/** Used for built-in method references. */ -var objectProto$g = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty$e = objectProto$g.hasOwnProperty; - -/** - * Assigns own enumerable string keyed properties of source objects to the - * destination object. Source objects are applied from left to right. - * Subsequent sources overwrite property assignments of previous sources. - * - * **Note:** This method mutates `object` and is loosely based on - * [`Object.assign`](https://mdn.io/Object/assign). - * - * @static - * @memberOf _ - * @since 0.10.0 - * @category Object - * @param {Object} object The destination object. - * @param {...Object} [sources] The source objects. - * @returns {Object} Returns `object`. - * @see _.assignIn - * @example - * - * function Foo() { - * this.a = 1; - * } - * - * function Bar() { - * this.c = 3; - * } - * - * Foo.prototype.b = 2; - * Bar.prototype.d = 4; - * - * _.assign({ 'a': 0 }, new Foo, new Bar); - * // => { 'a': 1, 'c': 3 } - */ -var assign = _createAssigner(function(object, source) { - if (_isPrototype(source) || isArrayLike_1(source)) { - _copyObject(source, keys_1(source), object); - return; - } - for (var key in source) { - if (hasOwnProperty$e.call(source, key)) { - _assignValue(object, key, source[key]); - } - } -}); - -var assign_1 = assign; - -/** `Object#toString` result references. */ -var regexpTag$2 = '[object RegExp]'; - -/** - * The base implementation of `_.isRegExp` without Node.js optimizations. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. - */ -function baseIsRegExp(value) { - return isObjectLike_1(value) && _baseGetTag(value) == regexpTag$2; -} - -var _baseIsRegExp = baseIsRegExp; - -/* Node.js helper references. */ -var nodeIsRegExp = _nodeUtil && _nodeUtil.isRegExp; - -/** - * Checks if `value` is classified as a `RegExp` object. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. - * @example - * - * _.isRegExp(/abc/); - * // => true - * - * _.isRegExp('/abc/'); - * // => false - */ -var isRegExp = nodeIsRegExp ? _baseUnary(nodeIsRegExp) : _baseIsRegExp; - -var isRegExp_1 = isRegExp; - -/** - * Creates a `_.find` or `_.findLast` function. - * - * @private - * @param {Function} findIndexFunc The function to find the collection index. - * @returns {Function} Returns the new find function. - */ -function createFind(findIndexFunc) { - return function(collection, predicate, fromIndex) { - var iterable = Object(collection); - if (!isArrayLike_1(collection)) { - var iteratee = _baseIteratee(predicate); - collection = keys_1(collection); - predicate = function(key) { return iteratee(iterable[key], key, iterable); }; - } - var index = findIndexFunc(collection, predicate, fromIndex); - return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined; - }; -} - -var _createFind = createFind; - -/** - * The base implementation of `_.findIndex` and `_.findLastIndex` without - * support for iteratee shorthands. - * - * @private - * @param {Array} array The array to inspect. - * @param {Function} predicate The function invoked per iteration. - * @param {number} fromIndex The index to search from. - * @param {boolean} [fromRight] Specify iterating from right to left. - * @returns {number} Returns the index of the matched value, else `-1`. - */ -function baseFindIndex(array, predicate, fromIndex, fromRight) { - var length = array.length, - index = fromIndex + (fromRight ? 1 : -1); - - while ((fromRight ? index-- : ++index < length)) { - if (predicate(array[index], index, array)) { - return index; - } - } - return -1; -} - -var _baseFindIndex = baseFindIndex; - -/** Used to match a single whitespace character. */ -var reWhitespace = /\s/; - -/** - * Used by `_.trim` and `_.trimEnd` to get the index of the last non-whitespace - * character of `string`. - * - * @private - * @param {string} string The string to inspect. - * @returns {number} Returns the index of the last non-whitespace character. - */ -function trimmedEndIndex(string) { - var index = string.length; - - while (index-- && reWhitespace.test(string.charAt(index))) {} - return index; -} - -var _trimmedEndIndex = trimmedEndIndex; - -/** Used to match leading whitespace. */ -var reTrimStart = /^\s+/; - -/** - * The base implementation of `_.trim`. - * - * @private - * @param {string} string The string to trim. - * @returns {string} Returns the trimmed string. - */ -function baseTrim(string) { - return string - ? string.slice(0, _trimmedEndIndex(string) + 1).replace(reTrimStart, '') - : string; -} - -var _baseTrim = baseTrim; - -/** Used as references for various `Number` constants. */ -var NAN = 0 / 0; - -/** Used to detect bad signed hexadecimal string values. */ -var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; - -/** Used to detect binary string values. */ -var reIsBinary = /^0b[01]+$/i; - -/** Used to detect octal string values. */ -var reIsOctal = /^0o[0-7]+$/i; - -/** Built-in method references without a dependency on `root`. */ -var freeParseInt = parseInt; - -/** - * Converts `value` to a number. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to process. - * @returns {number} Returns the number. - * @example - * - * _.toNumber(3.2); - * // => 3.2 - * - * _.toNumber(Number.MIN_VALUE); - * // => 5e-324 - * - * _.toNumber(Infinity); - * // => Infinity - * - * _.toNumber('3.2'); - * // => 3.2 - */ -function toNumber(value) { - if (typeof value == 'number') { - return value; - } - if (isSymbol_1(value)) { - return NAN; - } - if (isObject_1(value)) { - var other = typeof value.valueOf == 'function' ? value.valueOf() : value; - value = isObject_1(other) ? (other + '') : other; - } - if (typeof value != 'string') { - return value === 0 ? value : +value; - } - value = _baseTrim(value); - var isBinary = reIsBinary.test(value); - return (isBinary || reIsOctal.test(value)) - ? freeParseInt(value.slice(2), isBinary ? 2 : 8) - : (reIsBadHex.test(value) ? NAN : +value); -} - -var toNumber_1 = toNumber; - -/** Used as references for various `Number` constants. */ -var INFINITY$2 = 1 / 0, - MAX_INTEGER = 1.7976931348623157e+308; - -/** - * Converts `value` to a finite number. - * - * @static - * @memberOf _ - * @since 4.12.0 - * @category Lang - * @param {*} value The value to convert. - * @returns {number} Returns the converted number. - * @example - * - * _.toFinite(3.2); - * // => 3.2 - * - * _.toFinite(Number.MIN_VALUE); - * // => 5e-324 - * - * _.toFinite(Infinity); - * // => 1.7976931348623157e+308 - * - * _.toFinite('3.2'); - * // => 3.2 - */ -function toFinite(value) { - if (!value) { - return value === 0 ? value : 0; - } - value = toNumber_1(value); - if (value === INFINITY$2 || value === -INFINITY$2) { - var sign = (value < 0 ? -1 : 1); - return sign * MAX_INTEGER; - } - return value === value ? value : 0; -} - -var toFinite_1 = toFinite; - -/** - * Converts `value` to an integer. - * - * **Note:** This method is loosely based on - * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to convert. - * @returns {number} Returns the converted integer. - * @example - * - * _.toInteger(3.2); - * // => 3 - * - * _.toInteger(Number.MIN_VALUE); - * // => 0 - * - * _.toInteger(Infinity); - * // => 1.7976931348623157e+308 - * - * _.toInteger('3.2'); - * // => 3 - */ -function toInteger(value) { - var result = toFinite_1(value), - remainder = result % 1; - - return result === result ? (remainder ? result - remainder : result) : 0; -} - -var toInteger_1 = toInteger; - -/* Built-in method references for those with the same name as other `lodash` methods. */ -var nativeMax$1 = Math.max; - -/** - * This method is like `_.find` except that it returns the index of the first - * element `predicate` returns truthy for instead of the element itself. - * - * @static - * @memberOf _ - * @since 1.1.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @param {number} [fromIndex=0] The index to search from. - * @returns {number} Returns the index of the found element, else `-1`. - * @example - * - * var users = [ - * { 'user': 'barney', 'active': false }, - * { 'user': 'fred', 'active': false }, - * { 'user': 'pebbles', 'active': true } - * ]; - * - * _.findIndex(users, function(o) { return o.user == 'barney'; }); - * // => 0 - * - * // The `_.matches` iteratee shorthand. - * _.findIndex(users, { 'user': 'fred', 'active': false }); - * // => 1 - * - * // The `_.matchesProperty` iteratee shorthand. - * _.findIndex(users, ['active', false]); - * // => 0 - * - * // The `_.property` iteratee shorthand. - * _.findIndex(users, 'active'); - * // => 2 - */ -function findIndex(array, predicate, fromIndex) { - var length = array == null ? 0 : array.length; - if (!length) { - return -1; - } - var index = fromIndex == null ? 0 : toInteger_1(fromIndex); - if (index < 0) { - index = nativeMax$1(length + index, 0); - } - return _baseFindIndex(array, _baseIteratee(predicate), index); -} - -var findIndex_1 = findIndex; - -/** - * Iterates over elements of `collection`, returning the first element - * `predicate` returns truthy for. The predicate is invoked with three - * arguments: (value, index|key, collection). - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to inspect. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @param {number} [fromIndex=0] The index to search from. - * @returns {*} Returns the matched element, else `undefined`. - * @example - * - * var users = [ - * { 'user': 'barney', 'age': 36, 'active': true }, - * { 'user': 'fred', 'age': 40, 'active': false }, - * { 'user': 'pebbles', 'age': 1, 'active': true } - * ]; - * - * _.find(users, function(o) { return o.age < 40; }); - * // => object for 'barney' - * - * // The `_.matches` iteratee shorthand. - * _.find(users, { 'age': 1, 'active': true }); - * // => object for 'pebbles' - * - * // The `_.matchesProperty` iteratee shorthand. - * _.find(users, ['active', false]); - * // => object for 'fred' - * - * // The `_.property` iteratee shorthand. - * _.find(users, 'active'); - * // => object for 'barney' - */ -var find = _createFind(findIndex_1); - -var find_1 = find; - -/* global console */ - -/* eslint-disable no-console */ -// TODO: Use "warning" npm module like React is switching to. -var Log = { - warn: function (message) { - if (process.env.NODE_ENV !== "production") { - if (console && console.warn) { - console.warn(message); - } - } - } -}; - -function _defineProperty$1(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } -/** - * Return a new validator based on `validator` but with the option to chain - * `isRequired` onto the validation. This is nearly identical to how React - * does it internally, but they don't expose their helper for us to use. - * @param {Function} validator Validation function. - * @returns {Function} Validator with `isRequired` option. - */ - -var makeChainable = function (validator) { - /* eslint-disable max-params */ - var _chainable = function (isRequired, props, propName, componentName) { - var value = props[propName]; - - if (value === undefined || value === null) { - if (isRequired) { - return new Error("Required `".concat(propName, "` was not specified in `").concat(componentName, "`.")); - } - - return null; - } - - for (var _len = arguments.length, rest = new Array(_len > 4 ? _len - 4 : 0), _key = 4; _key < _len; _key++) { - rest[_key - 4] = arguments[_key]; - } - - return validator.apply(void 0, [props, propName, componentName].concat(rest)); - }; - - var chainable = _chainable.bind(null, false); - - chainable.isRequired = _chainable.bind(null, true); - return chainable; -}; - -var nullConstructor = function () { - return null; -}; - -var undefinedConstructor = function () { - return undefined; -}; -/** - * Get the constructor of `value`. If `value` is null or undefined, return the - * special singletons `nullConstructor` or `undefinedConstructor`, respectively. - * @param {*} value Instance to return the constructor of. - * @returns {Function} Constructor of `value`. - */ - - -var getConstructor = function (value) { - if (value === undefined) { - return undefinedConstructor; - } else if (value === null) { - return nullConstructor; - } else { - return value.constructor; - } -}; -/** - * Get the name of the constructor used to create `value`, using - * `Object.protoype.toString`. If the value is null or undefined, return - * "null" or "undefined", respectively. - * @param {*} value Instance to return the constructor name of. - * @returns {String} Name of the constructor. - */ - - -var getConstructorName = function (value) { - if (value === undefined) { - return "undefined"; - } else if (value === null) { - return "null"; - } - - return Object.prototype.toString.call(value).slice(8, -1); // eslint-disable-line no-magic-numbers -}; - -var CustomPropTypes = { - /** - * Return a new validator based on `propType` but which logs a `console.error` - * with `explanation` if used. - * @param {Function} propType The old, deprecated propType. - * @param {String} explanation The message to provide the user of the deprecated propType. - * @returns {Function} Validator which logs usage of this propType - */ - deprecated: function (propType, explanation) { - return function (props, propName, componentName) { - var value = props[propName]; - - if (value !== null && value !== undefined) { - Log.warn("\"".concat(propName, "\" property of \"").concat(componentName, "\" has been deprecated ").concat(explanation)); - } - - return propTypes.checkPropTypes(_defineProperty$1({}, propName, propType), props, propName, componentName); - }; - }, - - /** - * Return a new validator which returns true - * if and only if all validators passed as arguments return true. - * Like React.propTypes.oneOfType, except "all" instead of "any" - * @param {Array} validators Validation functions. - * @returns {Function} Combined validator function - */ - allOfType: function (validators) { - return makeChainable(function (props, propName, componentName) { - for (var _len2 = arguments.length, rest = new Array(_len2 > 3 ? _len2 - 3 : 0), _key2 = 3; _key2 < _len2; _key2++) { - rest[_key2 - 3] = arguments[_key2]; - } - - return validators.reduce(function (result, validator) { - return result || validator.apply(void 0, [props, propName, componentName].concat(rest)); - }, undefined); - }); - }, - - /** - * Check that the value is a non-negative number. - */ - nonNegative: makeChainable(function (props, propName, componentName) { - var value = props[propName]; - - if (typeof value !== "number" || value < 0) { - return new Error("`".concat(propName, "` in `").concat(componentName, "` must be a non-negative number.")); - } - - return undefined; - }), - - /** - * Check that the value is an integer. - */ - integer: makeChainable(function (props, propName, componentName) { - var value = props[propName]; - - if (typeof value !== "number" || value % 1 !== 0) { - return new Error("`".concat(propName, "` in `").concat(componentName, "` must be an integer.")); - } - - return undefined; - }), - - /** - * Check that the value is greater than zero. - */ - greaterThanZero: makeChainable(function (props, propName, componentName) { - var value = props[propName]; - - if (typeof value !== "number" || value <= 0) { - return new Error("`".concat(propName, "` in `").concat(componentName, "` must be a number greater than zero.")); - } - - return undefined; - }), - - /** - * Check that the value is an Array of two unique values. - */ - domain: makeChainable(function (props, propName, componentName) { - var value = props[propName]; - - if (!Array.isArray(value) || value.length !== 2 || value[1] === value[0]) { - return new Error("`".concat(propName, "` in `").concat(componentName, "` must be an array of two unique numeric values.")); - } - - return undefined; - }), - - /** - * Check that the value looks like a d3 `scale` function. - */ - scale: makeChainable(function (props, propName, componentName) { - var supportedScaleStrings = ["linear", "time", "log", "sqrt"]; - - var validScale = function (scl) { - if (isFunction_1(scl)) { - return isFunction_1(scl.copy) && isFunction_1(scl.domain) && isFunction_1(scl.range); - } else if (typeof scl === "string") { - return supportedScaleStrings.indexOf(scl) !== -1; - } - - return false; - }; - - var value = props[propName]; - - if (!validScale(value)) { - return new Error("`".concat(propName, "` in `").concat(componentName, "` must be a d3 scale.")); - } - - return undefined; - }), - - /** - * Check that an array contains items of the same type. - */ - homogeneousArray: makeChainable(function (props, propName, componentName) { - var values = props[propName]; - - if (!Array.isArray(values)) { - return new Error("`".concat(propName, "` in `").concat(componentName, "` must be an array.")); - } - - if (values.length < 2) { - return undefined; - } - - var comparisonConstructor = getConstructor(values[0]); - - var typeMismatchedValue = find_1(values, function (value) { - return comparisonConstructor !== getConstructor(value); - }); - - if (typeMismatchedValue) { - var constructorName = getConstructorName(values[0]); - var otherConstructorName = getConstructorName(typeMismatchedValue); - return new Error("Expected `".concat(propName, "` in `").concat(componentName, "` to be a ") + "homogeneous array, but found types `".concat(constructorName, "` and ") + "`".concat(otherConstructorName, "`.")); - } - - return undefined; - }), - - /** - * Check that array prop length matches props.data.length - */ - matchDataLength: makeChainable(function (props, propName) { - if (props[propName] && Array.isArray(props[propName]) && props[propName].length !== props.data.length) { - return new Error("Length of data and ".concat(propName, " arrays must match.")); - } - - return undefined; - }), - - /** - * Check that the value is a regular expression - */ - regExp: makeChainable(function (props, propName, componentName) { - if (props[propName] && !isRegExp_1(props[propName])) { - return new Error("`".concat(propName, "` in `").concat(componentName, "` must be a regular expression.")); - } - - return undefined; - }) -}; - -function _classCallCheck$2(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$2(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$2(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$2(Constructor.prototype, protoProps); if (staticProps) _defineProperties$2(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$1(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$1(self); } - -function _inherits$1(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } - -function _assertThisInitialized$1(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -var Portal$1 = -/*#__PURE__*/ -function (_React$Component) { - _inherits$1(Portal, _React$Component); - - function Portal(props) { - var _this; - - _classCallCheck$2(this, Portal); - - _this = _possibleConstructorReturn$1(this, (Portal.__proto__ || Object.getPrototypeOf(Portal)).call(this, props)); - _this.map = {}; - _this.index = 1; - _this.portalUpdate = _this.portalUpdate.bind(_assertThisInitialized$1(_this)); - _this.portalRegister = _this.portalRegister.bind(_assertThisInitialized$1(_this)); - _this.portalDeregister = _this.portalDeregister.bind(_assertThisInitialized$1(_this)); - return _this; - } - - _createClass$2(Portal, [{ - key: "portalRegister", - value: function portalRegister() { - return ++this.index; - } - }, { - key: "portalUpdate", - value: function portalUpdate(key, element) { - this.map[key] = element; - this.forceUpdate(); - } - }, { - key: "portalDeregister", - value: function portalDeregister(key) { - delete this.map[key]; - this.forceUpdate(); - } - }, { - key: "getChildren", - value: function getChildren() { - var _this2 = this; - - return keys_1(this.map).map(function (key) { - var el = _this2.map[key]; - return el ? React__default.cloneElement(el, { - key: key - }) : el; - }); - } // Overridden in victory-core-native - - }, { - key: "render", - value: function render() { - return React__default.createElement("svg", this.props, this.getChildren()); - } - }]); - - return Portal; -}(React__default.Component); - -Object.defineProperty(Portal$1, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "Portal" -}); -Object.defineProperty(Portal$1, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: { - className: propTypes.string, - height: CustomPropTypes.nonNegative, - style: propTypes.object, - viewBox: propTypes.string, - width: CustomPropTypes.nonNegative - } -}); - -/** - * The React context object consumers may use to access the context of the - * portal. - */ - -var PortalContext = React__default.createContext({}); -PortalContext.displayName = "PortalContext"; - -/** - * The base implementation of `_.set`. - * - * @private - * @param {Object} object The object to modify. - * @param {Array|string} path The path of the property to set. - * @param {*} value The value to set. - * @param {Function} [customizer] The function to customize path creation. - * @returns {Object} Returns `object`. - */ -function baseSet(object, path, value, customizer) { - if (!isObject_1(object)) { - return object; - } - path = _castPath(path, object); - - var index = -1, - length = path.length, - lastIndex = length - 1, - nested = object; - - while (nested != null && ++index < length) { - var key = _toKey(path[index]), - newValue = value; - - if (key === '__proto__' || key === 'constructor' || key === 'prototype') { - return object; - } - - if (index != lastIndex) { - var objValue = nested[key]; - newValue = customizer ? customizer(objValue, key, nested) : undefined; - if (newValue === undefined) { - newValue = isObject_1(objValue) - ? objValue - : (_isIndex(path[index + 1]) ? [] : {}); - } - } - _assignValue(nested, key, newValue); - nested = nested[key]; - } - return object; -} - -var _baseSet = baseSet; - -/** - * The base implementation of `_.pickBy` without support for iteratee shorthands. - * - * @private - * @param {Object} object The source object. - * @param {string[]} paths The property paths to pick. - * @param {Function} predicate The function invoked per property. - * @returns {Object} Returns the new object. - */ -function basePickBy(object, paths, predicate) { - var index = -1, - length = paths.length, - result = {}; - - while (++index < length) { - var path = paths[index], - value = _baseGet(object, path); - - if (predicate(value, path)) { - _baseSet(result, _castPath(path, object), value); - } - } - return result; -} - -var _basePickBy = basePickBy; - -/** - * The base implementation of `_.pick` without support for individual - * property identifiers. - * - * @private - * @param {Object} object The source object. - * @param {string[]} paths The property paths to pick. - * @returns {Object} Returns the new object. - */ -function basePick(object, paths) { - return _basePickBy(object, paths, function(value, path) { - return hasIn_1(object, path); - }); -} - -var _basePick = basePick; - -/** Built-in value references. */ -var spreadableSymbol = _Symbol ? _Symbol.isConcatSpreadable : undefined; - -/** - * Checks if `value` is a flattenable `arguments` object or array. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is flattenable, else `false`. - */ -function isFlattenable(value) { - return isArray_1(value) || isArguments_1(value) || - !!(spreadableSymbol && value && value[spreadableSymbol]); -} - -var _isFlattenable = isFlattenable; - -/** - * The base implementation of `_.flatten` with support for restricting flattening. - * - * @private - * @param {Array} array The array to flatten. - * @param {number} depth The maximum recursion depth. - * @param {boolean} [predicate=isFlattenable] The function invoked per iteration. - * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks. - * @param {Array} [result=[]] The initial result value. - * @returns {Array} Returns the new flattened array. - */ -function baseFlatten(array, depth, predicate, isStrict, result) { - var index = -1, - length = array.length; - - predicate || (predicate = _isFlattenable); - result || (result = []); - - while (++index < length) { - var value = array[index]; - if (depth > 0 && predicate(value)) { - if (depth > 1) { - // Recursively flatten arrays (susceptible to call stack limits). - baseFlatten(value, depth - 1, predicate, isStrict, result); - } else { - _arrayPush(result, value); - } - } else if (!isStrict) { - result[result.length] = value; - } - } - return result; -} - -var _baseFlatten = baseFlatten; - -/** - * Flattens `array` a single level deep. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to flatten. - * @returns {Array} Returns the new flattened array. - * @example - * - * _.flatten([1, [2, [3, [4]], 5]]); - * // => [1, 2, [3, [4]], 5] - */ -function flatten(array) { - var length = array == null ? 0 : array.length; - return length ? _baseFlatten(array, 1) : []; -} - -var flatten_1 = flatten; - -/** - * A specialized version of `baseRest` which flattens the rest array. - * - * @private - * @param {Function} func The function to apply a rest parameter to. - * @returns {Function} Returns the new function. - */ -function flatRest(func) { - return _setToString(_overRest(func, undefined, flatten_1), func + ''); -} - -var _flatRest = flatRest; - -/** - * Creates an object composed of the picked `object` properties. - * - * @static - * @since 0.1.0 - * @memberOf _ - * @category Object - * @param {Object} object The source object. - * @param {...(string|string[])} [paths] The property paths to pick. - * @returns {Object} Returns the new object. - * @example - * - * var object = { 'a': 1, 'b': '2', 'c': 3 }; - * - * _.pick(object, ['a', 'c']); - * // => { 'a': 1, 'c': 3 } - */ -var pick = _flatRest(function(object, paths) { - return object == null ? {} : _basePick(object, paths); -}); - -var pick_1 = pick; - -// Private Functions -function getCartesianRange(props, axis) { - // determine how to lay the axis and what direction positive and negative are - var vertical = axis !== "x"; - var padding = getPadding(props); - - if (vertical) { - return [props.height - padding.bottom, padding.top]; - } - - return [padding.left, props.width - padding.right]; -} - -function getPolarRange(props, axis) { - if (axis === "x") { - var startAngle = degreesToRadians(props.startAngle || 0); - var endAngle = degreesToRadians(props.endAngle || 360); - return [startAngle, endAngle]; - } - - return [props.innerRadius || 0, getRadius(props)]; -} // Exported Functions - -/** - * creates an object with some keys excluded - * replacement for lodash.omit for performance. does not mimick the entire lodash.omit api - * @param {Object} originalObject: created object will be based on this object - * @param {Array} ks: an array of keys to omit from the new object - * @returns {Object} new object with same properties as originalObject - */ - - -function omit(originalObject) { - var ks = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : []; - // code based on babel's _objectWithoutProperties - var newObject = {}; - - for (var key in originalObject) { - if (ks.indexOf(key) >= 0) { - continue; - } - - if (!Object.prototype.hasOwnProperty.call(originalObject, key)) { - continue; - } - - newObject[key] = originalObject[key]; - } - - return newObject; -} - -function getPoint(datum) { - var exists = function (val) { - return val !== undefined; - }; - - var _x = datum._x, - _x1 = datum._x1, - _x0 = datum._x0, - _voronoiX = datum._voronoiX, - _y = datum._y, - _y1 = datum._y1, - _y0 = datum._y0, - _voronoiY = datum._voronoiY; - var defaultX = exists(_x1) ? _x1 : _x; - var defaultY = exists(_y1) ? _y1 : _y; - var point = { - x: exists(_voronoiX) ? _voronoiX : defaultX, - x0: exists(_x0) ? _x0 : _x, - y: exists(_voronoiY) ? _voronoiY : defaultY, - y0: exists(_y0) ? _y0 : _y - }; - return defaults_1({}, point, datum); -} - -function scalePoint(props, datum) { - var scale = props.scale, - polar = props.polar, - horizontal = props.horizontal; - var d = getPoint(datum); - var origin = props.origin || { - x: 0, - y: 0 - }; - var x = horizontal ? scale.y(d.y) : scale.x(d.x); - var x0 = horizontal ? scale.y(d.y0) : scale.x(d.x0); - var y = horizontal ? scale.x(d.x) : scale.y(d.y); - var y0 = horizontal ? scale.x(d.x0) : scale.y(d.y0); - return { - x: polar ? y * Math.cos(x) + origin.x : x, - x0: polar ? y0 * Math.cos(x0) + origin.x : x0, - y: polar ? -y * Math.sin(x) + origin.y : y, - y0: polar ? -y0 * Math.sin(x0) + origin.x : y0 - }; -} - -function getPadding(props) { - var name = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : "padding"; - var padding = props[name]; - var paddingVal = typeof padding === "number" ? padding : 0; - var paddingObj = typeof padding === "object" ? padding : {}; - return { - top: paddingObj.top || paddingVal, - bottom: paddingObj.bottom || paddingVal, - left: paddingObj.left || paddingVal, - right: paddingObj.right || paddingVal - }; -} - -function isTooltip(component) { - var labelRole = component && component.type && component.type.role; - return labelRole === "tooltip"; -} - -function getDefaultStyles(props, role) { - var _props$theme = props.theme, - theme = _props$theme === void 0 ? {} : _props$theme, - labelComponent = props.labelComponent; - var defaultStyles = theme[role] && theme[role].style || {}; - - if (!isTooltip(labelComponent)) { - return defaultStyles; - } - - var tooltipStyle = theme.tooltip && theme.tooltip.style || {}; - - var labelStyle = defaults_1({}, tooltipStyle, defaultStyles.labels); - - return defaults_1({}, { - labels: labelStyle - }, defaultStyles); -} - -function getStyles(style, defaultStyles) { - var width = "100%"; - var height = "100%"; - - if (!style) { - return defaults_1({ - parent: { - height: height, - width: width - } - }, defaultStyles); - } - - var data = style.data, - labels = style.labels, - parent = style.parent; - var defaultParent = defaultStyles && defaultStyles.parent || {}; - var defaultLabels = defaultStyles && defaultStyles.labels || {}; - var defaultData = defaultStyles && defaultStyles.data || {}; - return { - parent: defaults_1({}, parent, defaultParent, { - width: width, - height: height - }), - labels: defaults_1({}, labels, defaultLabels), - data: defaults_1({}, data, defaultData) - }; -} - -function evaluateProp(prop, props) { - return isFunction_1(prop) ? prop(props) : prop; -} - -function evaluateStyle(style, props) { - if (!style || !keys_1(style).some(function (value) { - return isFunction_1(style[value]); - })) { - return style; - } - - return keys_1(style).reduce(function (prev, curr) { - prev[curr] = evaluateProp(style[curr], props); - return prev; - }, {}); -} - -function degreesToRadians(degrees) { - return typeof degrees === "number" ? degrees * (Math.PI / 180) : degrees; -} - -function radiansToDegrees(radians) { - return typeof radians === "number" ? radians / (Math.PI / 180) : radians; -} - -function getRadius(props) { - var _getPadding = getPadding(props), - left = _getPadding.left, - right = _getPadding.right, - top = _getPadding.top, - bottom = _getPadding.bottom; - - var width = props.width, - height = props.height; - return Math.min(width - left - right, height - top - bottom) / 2; -} - -function getPolarOrigin(props) { - var width = props.width, - height = props.height; - - var _getPadding2 = getPadding(props), - top = _getPadding2.top, - bottom = _getPadding2.bottom, - left = _getPadding2.left, - right = _getPadding2.right; - - var radius = Math.min(width - left - right, height - top - bottom) / 2; - var offsetWidth = width / 2 + left - right; - var offsetHeight = height / 2 + top - bottom; - return { - x: offsetWidth + radius > width ? radius + left - right : offsetWidth, - y: offsetHeight + radius > height ? radius + top - bottom : offsetHeight - }; -} - -function getRange(props, axis) { - if (props.range && props.range[axis]) { - return props.range[axis]; - } else if (props.range && Array.isArray(props.range)) { - return props.range; - } - - return props.polar ? getPolarRange(props, axis) : getCartesianRange(props, axis); -} - -function createAccessor(key) { - // creates a data accessor function - // given a property key, path, array index, or null for identity. - if (isFunction_1(key)) { - return key; - } else if (key === null || key === undefined) { - // null/undefined means "return the data item itself" - return function (x) { - return x; - }; - } // otherwise, assume it is an array index, property key or path (_.property handles all three) - - - return property_1(key); -} - -function modifyProps(props, fallbackProps, role) { - var theme = props.theme && props.theme[role] ? props.theme[role] : {}; - var themeProps = omit(theme, ["style"]); - var horizontal = isHorizontal(props); - var defaultObject = horizontal === undefined ? {} : { - horizontal: horizontal - }; - return defaults_1(defaultObject, props, themeProps, fallbackProps); -} -/** - * Returns the given axis or the opposite axis when horizontal - * @param {string} axis: the given axis, either "x" pr "y" - * @param {Boolean} horizontal: true when the chart is flipped to the horizontal orientation - * @returns {String} the dimension appropriate for the axis given its props "x" or "y" - */ - - -function getCurrentAxis(axis, horizontal) { - var otherAxis = axis === "x" ? "y" : "x"; - return horizontal ? otherAxis : axis; -} -/** - * @param {Array} children: an array of child components - * @param {Function} iteratee: a function with arguments "child", "childName", and "parent" - * @param {Object} parentProps: props from the parent that are applied to children - * @param {any} initialMemo: The object in which the iteration results are combined. - * @param {Function} combine: Combines the result of the iteratee with the current memo - * to the memo for the next iteration step - * @returns {Array} returns an array of results from calling the iteratee on all nested children - */ - -/* eslint-disable max-params */ - - -function reduceChildren(children, iteratee) { - var parentProps = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - var initialMemo = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : []; - var combine = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : function (memo, item) { - return memo.concat(item); - }; - var sharedProps = ["data", "domain", "categories", "polar", "startAngle", "endAngle", "minDomain", "maxDomain", "horizontal"]; - - var traverseChildren = function (childArray, names, parent) { - return childArray.reduce(function (memo, child, index) { - var childRole = child.type && child.type.role; - var childName = child.props.name || "".concat(childRole, "-").concat(names[index]); - - if (child.props && child.props.children) { - var childProps = assign_1({}, child.props, pick_1(parentProps, sharedProps)); - - var nestedChildren = child.type && child.type.role === "stack" && isFunction_1(child.type.getChildren) ? child.type.getChildren(childProps) : React__default.Children.toArray(child.props.children).map(function (c) { - var nestedChildProps = assign_1({}, c.props, pick_1(childProps, sharedProps)); - - return React__default.cloneElement(c, nestedChildProps); - }); - - var _childNames = nestedChildren.map(function (c, i) { - return "".concat(childName, "-").concat(i); - }); - - var nestedResults = traverseChildren(nestedChildren, _childNames, child); - memo = combine(memo, nestedResults); - } else { - var result = iteratee(child, childName, parent); - - if (result) { - memo = combine(memo, result); - } - } - - return memo; - }, initialMemo); - }; - - var childNames = children.map(function (c, i) { - return i; - }); - return traverseChildren(children, childNames); -} -/** - * @param {Object} props: the props object - * @returns {Boolean} returns true if the props object contains `horizontal: true` of if any - * children or nested children are hoizontal - */ - - -function isHorizontal(props) { - if (props.horizontal !== undefined || !props.children) { - return props.horizontal; - } - - var traverseChildren = function (childArray) { - return childArray.reduce(function (memo, child) { - var childProps = child.props || {}; - - if (memo || childProps.horizontal || !childProps.children) { - memo = memo || childProps.horizontal; - return memo; - } - - return traverseChildren(React__default.Children.toArray(childProps.children)); - }, false); - }; - - return traverseChildren(React__default.Children.toArray(props.children)); -} - -var Helpers = { - omit: omit, - getPoint: getPoint, - scalePoint: scalePoint, - getPadding: getPadding, - getDefaultStyles: getDefaultStyles, - getStyles: getStyles, - evaluateProp: evaluateProp, - evaluateStyle: evaluateStyle, - degreesToRadians: degreesToRadians, - radiansToDegrees: radiansToDegrees, - getRadius: getRadius, - getPolarOrigin: getPolarOrigin, - getRange: getRange, - createAccessor: createAccessor, - modifyProps: modifyProps, - getCurrentAxis: getCurrentAxis, - reduceChildren: reduceChildren, - isHorizontal: isHorizontal, - isTooltip: isTooltip -}; - -function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } - -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$2(target, key, source[key]); }); } return target; } - -function _defineProperty$2(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _classCallCheck$3(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$3(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$3(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$3(Constructor.prototype, protoProps); if (staticProps) _defineProperties$3(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$2(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$2(self); } - -function _assertThisInitialized$2(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _inherits$2(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } - -var VictoryContainer = -/*#__PURE__*/ -function (_React$Component) { - _inherits$2(VictoryContainer, _React$Component); - - function VictoryContainer(props) { - var _this; - - _classCallCheck$3(this, VictoryContainer); - - _this = _possibleConstructorReturn$2(this, (VictoryContainer.__proto__ || Object.getPrototypeOf(VictoryContainer)).call(this, props)); - _this.containerId = !isObject_1(props) || props.containerId === undefined ? uniqueId_1("victory-container-") : props.containerId; - - _this.savePortalRef = function (portal) { - _this.portalRef = portal; - return portal; - }; - - _this.portalUpdate = function (key, el) { - return _this.portalRef.portalUpdate(key, el); - }; - - _this.portalRegister = function () { - return _this.portalRef.portalRegister(); - }; - - _this.portalDeregister = function (key) { - return _this.portalRef.portalDeregister(key); - }; - - _this.saveContainerRef = props && isFunction_1(props.containerRef) ? props.containerRef : function (container) { - _this.containerRef = container; - return container; - }; - _this.shouldHandleWheel = props && props.events && props.events.onWheel; - - if (_this.shouldHandleWheel) { - _this.handleWheel = function (e) { - return e.preventDefault(); - }; - } - - return _this; - } - - _createClass$3(VictoryContainer, [{ - key: "componentDidMount", - value: function componentDidMount() { - if (this.shouldHandleWheel && this.containerRef) { - this.containerRef.addEventListener("wheel", this.handleWheel); - } - } - }, { - key: "componentWillUnmount", - value: function componentWillUnmount() { - if (this.shouldHandleWheel && this.containerRef) { - this.containerRef.removeEventListener("wheel", this.handleWheel); - } - } - }, { - key: "getIdForElement", - value: function getIdForElement(elementName) { - return "".concat(this.containerId, "-").concat(elementName); - } // overridden in custom containers - - }, { - key: "getChildren", - value: function getChildren(props) { - return props.children; - } // Get props defined by the Open UI Automation (OUIA) 1.0-RC spec - // See https://ouia.readthedocs.io/en/latest/README.html#ouia-component - - }, { - key: "getOUIAProps", - value: function getOUIAProps(props) { - var ouiaId = props.ouiaId, - ouiaSafe = props.ouiaSafe, - ouiaType = props.ouiaType; - return _objectSpread({}, ouiaId && { - "data-ouia-component-id": ouiaId - }, ouiaType && { - "data-ouia-component-type": ouiaType - }, ouiaSafe !== undefined && { - "data-ouia-safe": ouiaSafe - }); - } - }, { - key: "renderContainer", - value: function renderContainer(props, svgProps, style) { - var title = props.title, - desc = props.desc, - portalComponent = props.portalComponent, - className = props.className, - width = props.width, - height = props.height, - portalZIndex = props.portalZIndex, - responsive = props.responsive; - var children = this.getChildren(props); - var dimensions = responsive ? { - width: "100%", - height: "100%" - } : { - width: width, - height: height - }; - - var divStyle = assign_1({ - pointerEvents: "none", - touchAction: "none", - position: "relative" - }, dimensions); - - var portalDivStyle = assign_1({ - zIndex: portalZIndex, - position: "absolute", - top: 0, - left: 0 - }, dimensions); - - var svgStyle = assign_1({ - pointerEvents: "all" - }, dimensions); - - var portalSvgStyle = assign_1({ - overflow: "visible" - }, dimensions); - - var portalProps = { - width: width, - height: height, - viewBox: svgProps.viewBox, - preserveAspectRatio: svgProps.preserveAspectRatio, - style: portalSvgStyle - }; - return React__default.createElement(PortalContext.Provider, { - value: { - portalUpdate: this.portalUpdate, - portalRegister: this.portalRegister, - portalDeregister: this.portalDeregister - } - }, React__default.createElement("div", _extends({ - style: defaults_1({}, style, divStyle), - className: className, - ref: this.saveContainerRef - }, this.getOUIAProps(props)), React__default.createElement("svg", _extends({}, svgProps, { - style: svgStyle - }), title ? React__default.createElement("title", { - id: this.getIdForElement("title") - }, title) : null, desc ? React__default.createElement("desc", { - id: this.getIdForElement("desc") - }, desc) : null, children), React__default.createElement("div", { - style: portalDivStyle - }, React__default.cloneElement(portalComponent, _objectSpread({}, portalProps, { - ref: this.savePortalRef - }))))); - } - }, { - key: "render", - value: function render() { - var _props = this.props, - width = _props.width, - height = _props.height, - responsive = _props.responsive, - events = _props.events, - title = _props.title, - desc = _props.desc, - tabIndex = _props.tabIndex, - preserveAspectRatio = _props.preserveAspectRatio, - role = _props.role; - var style = responsive ? this.props.style : Helpers.omit(this.props.style, ["height", "width"]); - - var svgProps = assign_1({ - width: width, - height: height, - tabIndex: tabIndex, - role: role, - "aria-labelledby": [title && this.getIdForElement("title"), this.props["aria-labelledby"]].filter(Boolean).join(" ") || undefined, - "aria-describedby": [desc && this.getIdForElement("desc"), this.props["aria-describedby"]].filter(Boolean).join(" ") || undefined, - viewBox: responsive ? "0 0 ".concat(width, " ").concat(height) : undefined, - preserveAspectRatio: responsive ? preserveAspectRatio : undefined - }, events); - - return this.renderContainer(this.props, svgProps, style); - } - }]); - - return VictoryContainer; -}(React__default.Component); - -Object.defineProperty(VictoryContainer, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryContainer" -}); -Object.defineProperty(VictoryContainer, "role", { - configurable: true, - enumerable: true, - writable: true, - value: "container" -}); -Object.defineProperty(VictoryContainer, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: { - "aria-describedby": propTypes.string, - "aria-labelledby": propTypes.string, - children: propTypes.oneOfType([propTypes.arrayOf(propTypes.node), propTypes.node]), - className: propTypes.string, - containerId: propTypes.oneOfType([propTypes.number, propTypes.string]), - containerRef: propTypes.func, - desc: propTypes.string, - events: propTypes.object, - height: CustomPropTypes.nonNegative, - name: propTypes.string, - origin: propTypes.shape({ - x: CustomPropTypes.nonNegative, - y: CustomPropTypes.nonNegative - }), - ouiaId: propTypes.oneOfType([propTypes.number, propTypes.string]), - ouiaSafe: propTypes.bool, - ouiaType: propTypes.string, - polar: propTypes.bool, - portalComponent: propTypes.element, - portalZIndex: CustomPropTypes.integer, - preserveAspectRatio: propTypes.string, - responsive: propTypes.bool, - role: propTypes.string, - style: propTypes.object, - tabIndex: propTypes.number, - theme: propTypes.object, - title: propTypes.string, - width: CustomPropTypes.nonNegative - } -}); -Object.defineProperty(VictoryContainer, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: { - className: "VictoryContainer", - portalComponent: React__default.createElement(Portal$1, null), - portalZIndex: 99, - responsive: true, - role: "img" - } -}); -Object.defineProperty(VictoryContainer, "contextType", { - configurable: true, - enumerable: true, - writable: true, - value: TimerContext -}); - -/** `Object#toString` result references. */ -var mapTag$3 = '[object Map]', - setTag$3 = '[object Set]'; - -/** Used for built-in method references. */ -var objectProto$h = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty$f = objectProto$h.hasOwnProperty; - -/** - * Checks if `value` is an empty object, collection, map, or set. - * - * Objects are considered empty if they have no own enumerable string keyed - * properties. - * - * Array-like values such as `arguments` objects, arrays, buffers, strings, or - * jQuery-like collections are considered empty if they have a `length` of `0`. - * Similarly, maps and sets are considered empty if they have a `size` of `0`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is empty, else `false`. - * @example - * - * _.isEmpty(null); - * // => true - * - * _.isEmpty(true); - * // => true - * - * _.isEmpty(1); - * // => true - * - * _.isEmpty([1, 2, 3]); - * // => false - * - * _.isEmpty({ 'a': 1 }); - * // => false - */ -function isEmpty(value) { - if (value == null) { - return true; - } - if (isArrayLike_1(value) && - (isArray_1(value) || typeof value == 'string' || typeof value.splice == 'function' || - isBuffer_1(value) || isTypedArray_1(value) || isArguments_1(value))) { - return !value.length; - } - var tag = _getTag(value); - if (tag == mapTag$3 || tag == setTag$3) { - return !value.size; - } - if (_isPrototype(value)) { - return !_baseKeys(value).length; - } - for (var key in value) { - if (hasOwnProperty$f.call(value, key)) { - return false; - } - } - return true; -} - -var isEmpty_1 = isEmpty; - -function _classCallCheck$4(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$4(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$4(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$4(Constructor.prototype, protoProps); if (staticProps) _defineProperties$4(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$3(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$3(self); } - -function _assertThisInitialized$3(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _inherits$3(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } - -var VictoryPortal = -/*#__PURE__*/ -function (_React$Component) { - _inherits$3(VictoryPortal, _React$Component); - - function VictoryPortal() { - _classCallCheck$4(this, VictoryPortal); - - return _possibleConstructorReturn$3(this, (VictoryPortal.__proto__ || Object.getPrototypeOf(VictoryPortal)).apply(this, arguments)); - } - - _createClass$4(VictoryPortal, [{ - key: "componentDidMount", - value: function componentDidMount() { - if (!this.checkedContext) { - if (typeof this.context.portalUpdate !== "function") { - var msg = "`renderInPortal` is not supported outside of `VictoryContainer`. " + "Component will be rendered in place"; - Log.warn(msg); - this.renderInPlace = true; - } - - this.checkedContext = true; - } - - this.forceUpdate(); - } - }, { - key: "componentDidUpdate", - value: function componentDidUpdate() { - if (!this.renderInPlace) { - this.portalKey = this.portalKey || this.context.portalRegister(); - this.context.portalUpdate(this.portalKey, this.element); - } - } - }, { - key: "componentWillUnmount", - value: function componentWillUnmount() { - if (this.context && this.context.portalDeregister) { - this.context.portalDeregister(this.portalKey); - } - } // Overridden in victory-core-native - - }, { - key: "renderPortal", - value: function renderPortal(child) { - if (this.renderInPlace) { - return child; - } - - this.element = child; - return null; - } - }, { - key: "render", - value: function render() { - var children = Array.isArray(this.props.children) ? this.props.children[0] : this.props.children; - var groupComponent = this.props.groupComponent; - var childProps = children && children.props || {}; - var standardProps = childProps.groupComponent ? { - groupComponent: groupComponent, - standalone: false - } : {}; - - var newProps = defaults_1(standardProps, childProps, Helpers.omit(this.props, ["children", "groupComponent"])); - - var child = children && React__default.cloneElement(children, newProps); - return this.renderPortal(child); - } - }]); - - return VictoryPortal; -}(React__default.Component); - -Object.defineProperty(VictoryPortal, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryPortal" -}); -Object.defineProperty(VictoryPortal, "role", { - configurable: true, - enumerable: true, - writable: true, - value: "portal" -}); -Object.defineProperty(VictoryPortal, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: { - children: propTypes.node, - groupComponent: propTypes.element - } -}); -Object.defineProperty(VictoryPortal, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: { - groupComponent: React__default.createElement("g", null) - } -}); -Object.defineProperty(VictoryPortal, "contextType", { - configurable: true, - enumerable: true, - writable: true, - value: PortalContext -}); - -function _extends$1() { _extends$1 = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1.apply(this, arguments); } - -function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } - -var Rect = function (props) { - // eslint-disable-next-line react/prop-types - var desc = props.desc, - rest = _objectWithoutProperties(props, ["desc"]); - - return desc ? React__default.createElement("rect", _extends$1({ - vectorEffect: "non-scaling-stroke" - }, rest), React__default.createElement("desc", null, desc)) : React__default.createElement("rect", _extends$1({ - vectorEffect: "non-scaling-stroke" - }, rest)); -}; - -// Private Functions -function getVerticalAnchor(props, datum) { - datum = datum || {}; - var sign = datum._y >= 0 ? 1 : -1; - var labelStyle = props.style && props.style.labels || {}; - - if (datum.verticalAnchor || labelStyle.verticalAnchor) { - return datum.verticalAnchor || labelStyle.verticalAnchor; - } else if (!props.horizontal) { - return sign >= 0 ? "end" : "start"; - } else { - return "middle"; - } -} - -function getTextAnchor(props, datum) { - datum = datum || {}; - var style = props.style, - horizontal = props.horizontal; - var sign = datum._y >= 0 ? 1 : -1; - var labelStyle = style && style.labels || {}; - - if (datum.verticalAnchor || labelStyle.verticalAnchor) { - return datum.verticalAnchor || labelStyle.verticalAnchor; - } else if (!horizontal) { - return "middle"; - } else { - return sign >= 0 ? "start" : "end"; - } -} - -function getAngle(props, datum) { - datum = datum || {}; - var labelStyle = props.style && props.style.labels || {}; - return datum.angle === undefined ? labelStyle.angle : datum.angle; -} - -function getPadding$1(props, datum) { - datum = datum || {}; - var horizontal = props.horizontal, - style = props.style; - var labelStyle = style.labels || {}; - var defaultPadding = Helpers.evaluateProp(labelStyle.padding, props) || 0; - var sign = datum._y < 0 ? -1 : 1; - return { - x: horizontal ? sign * defaultPadding : 0, - y: horizontal ? 0 : -1 * sign * defaultPadding - }; -} - -function getOffset(props, datum) { - if (props.polar) { - return {}; - } - - var padding = getPadding$1(props, datum); - return { - dx: padding.x, - dy: padding.y - }; -} - -function getPosition(props, datum) { - var polar = props.polar; - - var _Helpers$scalePoint = Helpers.scalePoint(props, datum), - x = _Helpers$scalePoint.x, - y = _Helpers$scalePoint.y; - - if (!polar) { - return { - x: x, - y: y - }; - } else { - var polarPadding = getPolarPadding(props, datum); - return { - x: x + polarPadding.x, - y: y + polarPadding.y - }; - } -} - -function getPolarPadding(props, datum) { - var style = props.style; - var degrees = getDegrees(props, datum); - var labelStyle = style.labels || {}; - var padding = Helpers.evaluateProp(labelStyle.padding, props) || 0; - var angle = Helpers.degreesToRadians(degrees); - return { - x: padding * Math.cos(angle), - y: -padding * Math.sin(angle) - }; -} - -function getLabelPlacement(props) { - var labelComponent = props.labelComponent, - labelPlacement = props.labelPlacement, - polar = props.polar; - var defaultLabelPlacement = polar ? "perpendicular" : "vertical"; - return labelPlacement ? labelPlacement : labelComponent.props && labelComponent.props.labelPlacement || defaultLabelPlacement; -} - -function getPolarOrientation(degrees) { - // eslint-disable-next-line no-magic-numbers - if (degrees < 45 || degrees > 315) { - return "right"; // eslint-disable-next-line no-magic-numbers - } else if (degrees >= 45 && degrees <= 135) { - return "top"; // eslint-disable-next-line no-magic-numbers - } else if (degrees > 135 && degrees < 225) { - return "left"; - } else { - return "bottom"; - } -} // Exported Functions - - -function getText(props, datum, index) { - datum = datum || {}; - - if (datum.label !== undefined) { - return datum.label; - } - - return Array.isArray(props.labels) ? props.labels[index] : props.labels; -} - -function getPolarTextAnchor(props, degrees) { - var labelPlacement = getLabelPlacement(props); - - if (labelPlacement === "perpendicular" || labelPlacement === "vertical" && (degrees === 90 || degrees === 270)) { - return "middle"; - } - - return degrees <= 90 || degrees > 270 ? "start" : "end"; -} - -function getPolarVerticalAnchor(props, degrees) { - var labelPlacement = getLabelPlacement(props); - var orientation = getPolarOrientation(degrees); - - if (labelPlacement === "parallel" || orientation === "left" || orientation === "right") { - return "middle"; - } - - return orientation === "top" ? "end" : "start"; -} - -function getPolarAngle(props, baseAngle) { - var labelPlacement = props.labelPlacement, - datum = props.datum; - - if (!labelPlacement || labelPlacement === "vertical") { - return 0; - } - - var degrees = baseAngle !== undefined ? baseAngle % 360 : getDegrees(props, datum); - var sign = degrees > 90 && degrees < 180 || degrees > 270 ? 1 : -1; - var angle = 0; - - if (degrees === 0 || degrees === 180) { - angle = 90; - } else if (degrees > 0 && degrees < 180) { - angle = 90 - degrees; - } else if (degrees > 180 && degrees < 360) { - angle = 270 - degrees; - } - - var labelRotation = labelPlacement === "perpendicular" ? 0 : 90; - return angle + sign * labelRotation; -} - -function getDegrees(props, datum) { - var _Helpers$getPoint = Helpers.getPoint(datum), - x = _Helpers$getPoint.x; - - return Helpers.radiansToDegrees(props.scale.x(x)) % 360; -} - -function getProps(props, index) { - var scale = props.scale, - data = props.data, - style = props.style, - horizontal = props.horizontal, - polar = props.polar, - width = props.width, - height = props.height, - theme = props.theme, - labelComponent = props.labelComponent; - var datum = data[index]; - var degrees = getDegrees(props, datum); - var textAnchor = polar ? getPolarTextAnchor(props, degrees) : getTextAnchor(props, datum); - var verticalAnchor = polar ? getPolarVerticalAnchor(props, degrees) : getVerticalAnchor(props, datum); - var angle = getAngle(props, datum); - var text = getText(props, datum, index); - var labelPlacement = getLabelPlacement(props); - - var _getPosition = getPosition(props, datum), - x = _getPosition.x, - y = _getPosition.y; - - var _getOffset = getOffset(props, datum), - dx = _getOffset.dx, - dy = _getOffset.dy; - - var labelProps = { - angle: angle, - data: data, - datum: datum, - horizontal: horizontal, - index: index, - polar: polar, - scale: scale, - labelPlacement: labelPlacement, - text: text, - textAnchor: textAnchor, - verticalAnchor: verticalAnchor, - x: x, - y: y, - dx: dx, - dy: dy, - width: width, - height: height, - style: style.labels - }; - - if (!Helpers.isTooltip(labelComponent)) { - return labelProps; - } - - var tooltipTheme = theme && theme.tooltip || {}; - return defaults_1({}, labelProps, Helpers.omit(tooltipTheme, ["style"])); -} - -var LabelHelpers = { - getText: getText, - getPolarTextAnchor: getPolarTextAnchor, - getPolarVerticalAnchor: getPolarVerticalAnchor, - getPolarAngle: getPolarAngle, - getDegrees: getDegrees, - getProps: getProps -}; - -/** - * Given an object with CSS/SVG transform definitions, return the string value - * for use with the `transform` CSS property or SVG attribute. Note that we - * can't always guarantee the order will match the author's intended order, so - * authors should only use the object notation if they know that their transform - * is commutative or that there is only one. - * @param {Object} obj An object of transform definitions. - * @returns {String} The generated transform string. - */ -var toTransformString = function (obj) { - for (var _len = arguments.length, more = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { - more[_key - 1] = arguments[_key]; - } - - if (more.length > 0) { - return more.reduce(function (memo, currentObj) { - return [memo, toTransformString(currentObj)].join(" "); - }, toTransformString(obj)).trim(); - } else { - if (obj === undefined || obj === null || typeof obj === "string") { - return obj; - } - - var transforms = []; - - for (var key in obj) { - if (obj.hasOwnProperty(key)) { - var value = obj[key]; - transforms.push("".concat(key, "(").concat(value, ")")); - } - } - - return transforms.join(" ").trim(); - } -}; - -var Style = { - toTransformString: toTransformString, - - /** - * Given the name of a color scale, getColorScale will return an array - * of 5 hex string values in that color scale. If no 'name' parameter - * is given, it will return the Victory default grayscale. - * @param {String} name The name of the color scale to return (optional). - * @returns {Array} An array of 5 hex string values composing a color scale. - */ - getColorScale: function (name) { - var scales = { - grayscale: ["#cccccc", "#969696", "#636363", "#252525"], - qualitative: ["#334D5C", "#45B29D", "#EFC94C", "#E27A3F", "#DF5A49", "#4F7DA1", "#55DBC1", "#EFDA97", "#E2A37F", "#DF948A"], - heatmap: ["#428517", "#77D200", "#D6D305", "#EC8E19", "#C92B05"], - warm: ["#940031", "#C43343", "#DC5429", "#FF821D", "#FFAF55"], - cool: ["#2746B9", "#0B69D4", "#2794DB", "#31BB76", "#60E83B"], - red: ["#FCAE91", "#FB6A4A", "#DE2D26", "#A50F15", "#750B0E"], - blue: ["#002C61", "#004B8F", "#006BC9", "#3795E5", "#65B4F4"], - green: ["#354722", "#466631", "#649146", "#8AB25C", "#A9C97E"] - }; - return name ? scales[name] : scales.grayscale; - } -}; - -function _toConsumableArray$1(arr) { return _arrayWithoutHoles$1(arr) || _iterableToArray$1(arr) || _nonIterableSpread$1(); } - -function _nonIterableSpread$1() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$1(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$1(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -// Based on measuring specific character widths -// as in the following example https://bl.ocks.org/tophtucker/62f93a4658387bb61e4510c37e2e97cf -//prettier-ignore -var fonts = { - "American Typewriter": { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.4203125, 0.3296875, 0.6, 0.6375, 0.8015625, 0.8203125, 0.1875, 0.45625, 0.45625, 0.6375, 0.5, 0.2734375, 0.309375, 0.2734375, 0.4390625, 0.6375, 0.6375, 0.6375, 0.6375, 0.6375, 0.6375, 0.6375, 0.6375, 0.6375, 0.6375, 0.2734375, 0.2734375, 0.5, 0.5, 0.5, 0.6, 0.6921875, 0.7640625, 0.6921875, 0.6375, 0.728125, 0.6734375, 0.6203125, 0.7109375, 0.784375, 0.3828125, 0.6421875, 0.7859375, 0.6375, 0.9484375, 0.7640625, 0.65625, 0.6375, 0.65625, 0.7296875, 0.6203125, 0.6375, 0.7109375, 0.740625, 0.940625, 0.784375, 0.7578125, 0.6203125, 0.4375, 0.5, 0.4375, 0.5, 0.5, 0.4921875, 0.5734375, 0.5890625, 0.5109375, 0.6, 0.528125, 0.43125, 0.5578125, 0.6375, 0.3109375, 0.40625, 0.6234375, 0.309375, 0.928125, 0.6375, 0.546875, 0.6, 0.58125, 0.4921875, 0.4921875, 0.4, 0.6203125, 0.625, 0.825, 0.6375, 0.640625, 0.528125, 0.5, 0.5, 0.5, 0.6671875], - avg: 0.5793421052631578 - }, - Arial: { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.278125, 0.278125, 0.35625, 0.55625, 0.55625, 0.890625, 0.6671875, 0.1921875, 0.334375, 0.334375, 0.390625, 0.584375, 0.278125, 0.334375, 0.278125, 0.278125, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.278125, 0.278125, 0.584375, 0.584375, 0.584375, 0.55625, 1.015625, 0.6703125, 0.6671875, 0.7234375, 0.7234375, 0.6671875, 0.6109375, 0.778125, 0.7234375, 0.278125, 0.5, 0.6671875, 0.55625, 0.834375, 0.7234375, 0.778125, 0.6671875, 0.778125, 0.7234375, 0.6671875, 0.6109375, 0.7234375, 0.6671875, 0.9453125, 0.6671875, 0.6671875, 0.6109375, 0.278125, 0.278125, 0.278125, 0.4703125, 0.584375, 0.334375, 0.55625, 0.55625, 0.5, 0.55625, 0.55625, 0.3125, 0.55625, 0.55625, 0.2234375, 0.2703125, 0.5, 0.2234375, 0.834375, 0.55625, 0.55625, 0.55625, 0.55625, 0.346875, 0.5, 0.278125, 0.55625, 0.5, 0.7234375, 0.5, 0.5, 0.5, 0.334375, 0.2609375, 0.334375, 0.584375], - avg: 0.528733552631579 - }, - "Arial Black": { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.33125, 0.334375, 0.5, 0.6609375, 0.6671875, 1, 0.890625, 0.278125, 0.390625, 0.390625, 0.55625, 0.6609375, 0.334375, 0.334375, 0.334375, 0.28125, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.334375, 0.334375, 0.6609375, 0.6609375, 0.6609375, 0.6109375, 0.7453125, 0.78125, 0.778125, 0.778125, 0.778125, 0.7234375, 0.6671875, 0.834375, 0.834375, 0.390625, 0.6671875, 0.834375, 0.6671875, 0.9453125, 0.834375, 0.834375, 0.7234375, 0.834375, 0.78125, 0.7234375, 0.7234375, 0.834375, 0.7796875, 1.003125, 0.78125, 0.78125, 0.7234375, 0.390625, 0.28125, 0.390625, 0.6609375, 0.5125, 0.334375, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.41875, 0.6671875, 0.6671875, 0.334375, 0.384375, 0.6671875, 0.334375, 1, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.4703125, 0.6109375, 0.4453125, 0.6671875, 0.6140625, 0.946875, 0.6671875, 0.615625, 0.55625, 0.390625, 0.278125, 0.390625, 0.6609375], - avg: 0.6213157894736842 - }, - Baskerville: { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.40625, 0.6671875, 0.490625, 0.875, 0.7015625, 0.178125, 0.2453125, 0.246875, 0.4171875, 0.6671875, 0.25, 0.3125, 0.25, 0.521875, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.25, 0.25, 0.6671875, 0.6671875, 0.6671875, 0.396875, 0.9171875, 0.684375, 0.615625, 0.71875, 0.7609375, 0.625, 0.553125, 0.771875, 0.803125, 0.3546875, 0.515625, 0.78125, 0.6046875, 0.928125, 0.75, 0.8234375, 0.5625, 0.96875, 0.7296875, 0.5421875, 0.6984375, 0.771875, 0.7296875, 0.9484375, 0.771875, 0.678125, 0.6359375, 0.3640625, 0.521875, 0.3640625, 0.46875, 0.5125, 0.334375, 0.46875, 0.521875, 0.428125, 0.521875, 0.4375, 0.3890625, 0.4765625, 0.53125, 0.25, 0.359375, 0.4640625, 0.240625, 0.803125, 0.53125, 0.5, 0.521875, 0.521875, 0.365625, 0.334375, 0.2921875, 0.521875, 0.4640625, 0.678125, 0.4796875, 0.465625, 0.428125, 0.4796875, 0.5109375, 0.4796875, 0.6671875], - avg: 0.5323519736842108 - }, - Courier: { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.5984375, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6078125, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.61875, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.615625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6140625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625], - avg: 0.6020559210526316 - }, - "Courier New": { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.5984375, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625], - avg: 0.6015296052631579 - }, - cursive: { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.1921875, 0.24375, 0.40625, 0.5671875, 0.3984375, 0.721875, 0.909375, 0.2328125, 0.434375, 0.365625, 0.4734375, 0.5578125, 0.19375, 0.3484375, 0.19375, 0.7734375, 0.503125, 0.4171875, 0.5453125, 0.45, 0.6046875, 0.4703125, 0.5984375, 0.55625, 0.503125, 0.5546875, 0.20625, 0.2, 0.5625, 0.5546875, 0.546875, 0.403125, 0.70625, 0.734375, 0.7078125, 0.64375, 0.85, 0.753125, 0.75, 0.6484375, 1.0765625, 0.44375, 0.5359375, 0.8359375, 0.653125, 1.0109375, 1.1515625, 0.6796875, 0.6984375, 1.0625, 0.8234375, 0.5125, 0.9234375, 0.8546875, 0.70625, 0.9109375, 0.7421875, 0.715625, 0.6015625, 0.4640625, 0.3359375, 0.4109375, 0.5421875, 0.5421875, 0.4328125, 0.5125, 0.5, 0.3859375, 0.7375, 0.359375, 0.75625, 0.540625, 0.5328125, 0.3203125, 0.5296875, 0.5015625, 0.484375, 0.7890625, 0.5640625, 0.4203125, 0.703125, 0.471875, 0.4734375, 0.35, 0.4125, 0.5640625, 0.471875, 0.6484375, 0.5296875, 0.575, 0.4140625, 0.415625, 0.20625, 0.3796875, 0.5421875], - avg: 0.5604440789473684 - }, - fantasy: { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.215625, 0.2625, 0.3265625, 0.6109375, 0.534375, 0.7625, 0.7828125, 0.2, 0.4359375, 0.4359375, 0.3765625, 0.5109375, 0.2796875, 0.4609375, 0.2796875, 0.5296875, 0.6640625, 0.253125, 0.521875, 0.4765625, 0.6640625, 0.490625, 0.528125, 0.5546875, 0.496875, 0.5421875, 0.2796875, 0.2796875, 0.5625, 0.4609375, 0.5625, 0.4828125, 0.609375, 0.740625, 0.7234375, 0.740625, 0.8265625, 0.7234375, 0.6171875, 0.7359375, 0.765625, 0.240625, 0.5453125, 0.715625, 0.6078125, 0.8640625, 0.653125, 0.9125, 0.6484375, 0.946875, 0.6921875, 0.653125, 0.6953125, 0.8015625, 0.58125, 0.784375, 0.671875, 0.6265625, 0.690625, 0.4359375, 0.5296875, 0.4359375, 0.53125, 0.5, 0.2875, 0.5375, 0.603125, 0.4984375, 0.60625, 0.53125, 0.434375, 0.6421875, 0.56875, 0.209375, 0.4671875, 0.5484375, 0.2203125, 0.709375, 0.55, 0.5984375, 0.6140625, 0.5765625, 0.40625, 0.4734375, 0.3734375, 0.559375, 0.4421875, 0.6421875, 0.4890625, 0.578125, 0.4484375, 0.2546875, 0.2203125, 0.2546875, 0.55], - avg: 0.536496710526316 - }, - Geneva: { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.3328125, 0.3046875, 0.5, 0.6671875, 0.6671875, 0.90625, 0.728125, 0.3046875, 0.446875, 0.446875, 0.5078125, 0.6671875, 0.3046875, 0.3796875, 0.3046875, 0.5390625, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.6671875, 0.3046875, 0.3046875, 0.6671875, 0.6671875, 0.6671875, 0.56875, 0.871875, 0.728125, 0.6375, 0.6515625, 0.7015625, 0.5765625, 0.5546875, 0.675, 0.690625, 0.2421875, 0.4921875, 0.6640625, 0.584375, 0.7890625, 0.709375, 0.7359375, 0.584375, 0.78125, 0.60625, 0.60625, 0.640625, 0.6671875, 0.728125, 0.946875, 0.6109375, 0.6109375, 0.5765625, 0.446875, 0.5390625, 0.446875, 0.6671875, 0.6671875, 0.5921875, 0.5546875, 0.6109375, 0.546875, 0.603125, 0.5765625, 0.390625, 0.6109375, 0.584375, 0.2359375, 0.334375, 0.5390625, 0.2359375, 0.8953125, 0.584375, 0.60625, 0.603125, 0.603125, 0.3875, 0.509375, 0.44375, 0.584375, 0.565625, 0.78125, 0.53125, 0.571875, 0.5546875, 0.4515625, 0.246875, 0.4515625, 0.6671875], - avg: 0.5762664473684211 - }, - Georgia: { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2421875, 0.33125, 0.4125, 0.64375, 0.6109375, 0.81875, 0.7109375, 0.215625, 0.375, 0.375, 0.4734375, 0.64375, 0.2703125, 0.375, 0.2703125, 0.46875, 0.6140625, 0.4296875, 0.559375, 0.553125, 0.565625, 0.5296875, 0.5671875, 0.503125, 0.596875, 0.5671875, 0.3125, 0.3125, 0.64375, 0.64375, 0.64375, 0.4796875, 0.9296875, 0.715625, 0.6546875, 0.6421875, 0.75, 0.6546875, 0.6, 0.7265625, 0.815625, 0.390625, 0.51875, 0.7203125, 0.6046875, 0.928125, 0.7671875, 0.7453125, 0.6109375, 0.7453125, 0.7234375, 0.5625, 0.61875, 0.7578125, 0.70625, 0.99375, 0.7125, 0.6640625, 0.6015625, 0.375, 0.46875, 0.375, 0.64375, 0.65, 0.5, 0.5046875, 0.56875, 0.4546875, 0.575, 0.484375, 0.39375, 0.509375, 0.5828125, 0.29375, 0.3671875, 0.546875, 0.2875, 0.88125, 0.5921875, 0.5390625, 0.571875, 0.5640625, 0.4109375, 0.4328125, 0.3453125, 0.5765625, 0.5203125, 0.75625, 0.50625, 0.5171875, 0.4453125, 0.43125, 0.375, 0.43125, 0.64375], - avg: 0.5551809210526316 - }, - "Gill Sans": { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2765625, 0.271875, 0.3546875, 0.584375, 0.5421875, 0.6765625, 0.625, 0.1890625, 0.3234375, 0.3234375, 0.4171875, 0.584375, 0.2203125, 0.3234375, 0.2203125, 0.28125, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.2203125, 0.2296875, 0.584375, 0.584375, 0.584375, 0.334375, 1.0109375, 0.6671875, 0.5640625, 0.709375, 0.75, 0.5, 0.4703125, 0.740625, 0.7296875, 0.25, 0.3125, 0.65625, 0.490625, 0.78125, 0.78125, 0.8234375, 0.5109375, 0.8234375, 0.6046875, 0.459375, 0.6046875, 0.709375, 0.6046875, 1.0421875, 0.709375, 0.6046875, 0.646875, 0.334375, 0.28125, 0.334375, 0.4703125, 0.5828125, 0.334375, 0.428125, 0.5, 0.4390625, 0.5109375, 0.4796875, 0.296875, 0.428125, 0.5, 0.2203125, 0.2265625, 0.5, 0.2203125, 0.771875, 0.5, 0.553125, 0.5, 0.5, 0.3984375, 0.3859375, 0.334375, 0.5, 0.4390625, 0.7203125, 0.5, 0.4390625, 0.4171875, 0.334375, 0.2609375, 0.334375, 0.584375], - avg: 0.4933717105263159 - }, - Helvetica: { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2796875, 0.2765625, 0.3546875, 0.5546875, 0.5546875, 0.8890625, 0.665625, 0.190625, 0.3328125, 0.3328125, 0.3890625, 0.5828125, 0.2765625, 0.3328125, 0.2765625, 0.3015625, 0.5546875, 0.5546875, 0.5546875, 0.5546875, 0.5546875, 0.5546875, 0.5546875, 0.5546875, 0.5546875, 0.5546875, 0.2765625, 0.2765625, 0.584375, 0.5828125, 0.584375, 0.5546875, 1.0140625, 0.665625, 0.665625, 0.721875, 0.721875, 0.665625, 0.609375, 0.7765625, 0.721875, 0.2765625, 0.5, 0.665625, 0.5546875, 0.8328125, 0.721875, 0.7765625, 0.665625, 0.7765625, 0.721875, 0.665625, 0.609375, 0.721875, 0.665625, 0.94375, 0.665625, 0.665625, 0.609375, 0.2765625, 0.3546875, 0.2765625, 0.4765625, 0.5546875, 0.3328125, 0.5546875, 0.5546875, 0.5, 0.5546875, 0.5546875, 0.2765625, 0.5546875, 0.5546875, 0.221875, 0.240625, 0.5, 0.221875, 0.8328125, 0.5546875, 0.5546875, 0.5546875, 0.5546875, 0.3328125, 0.5, 0.2765625, 0.5546875, 0.5, 0.721875, 0.5, 0.5, 0.5, 0.3546875, 0.259375, 0.353125, 0.5890625], - avg: 0.5279276315789471 - }, - "Helvetica Neue": { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.278125, 0.259375, 0.4265625, 0.55625, 0.55625, 1, 0.6453125, 0.278125, 0.2703125, 0.26875, 0.353125, 0.6, 0.278125, 0.3890625, 0.278125, 0.36875, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.278125, 0.278125, 0.6, 0.6, 0.6, 0.55625, 0.8, 0.6625, 0.6859375, 0.7234375, 0.7046875, 0.6125, 0.575, 0.759375, 0.7234375, 0.259375, 0.5203125, 0.6703125, 0.55625, 0.871875, 0.7234375, 0.7609375, 0.6484375, 0.7609375, 0.6859375, 0.6484375, 0.575, 0.7234375, 0.6140625, 0.9265625, 0.6125, 0.6484375, 0.6125, 0.259375, 0.36875, 0.259375, 0.6, 0.5, 0.25625, 0.5375, 0.59375, 0.5375, 0.59375, 0.5375, 0.2984375, 0.575, 0.55625, 0.2234375, 0.2375, 0.5203125, 0.2234375, 0.853125, 0.55625, 0.575, 0.59375, 0.59375, 0.334375, 0.5, 0.315625, 0.55625, 0.5, 0.759375, 0.51875, 0.5, 0.48125, 0.334375, 0.2234375, 0.334375, 0.6], - avg: 0.5279440789473684 - }, - "Hoefler Text": { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2359375, 0.2234375, 0.3921875, 0.7125, 0.49375, 0.8859375, 0.771875, 0.2125, 0.3078125, 0.309375, 0.375, 0.4234375, 0.234375, 0.3125, 0.234375, 0.3, 0.5828125, 0.365625, 0.434375, 0.3921875, 0.5234375, 0.3984375, 0.5125, 0.4328125, 0.46875, 0.5125, 0.234375, 0.234375, 0.515625, 0.4234375, 0.515625, 0.340625, 0.7609375, 0.7359375, 0.6359375, 0.721875, 0.8125, 0.6375, 0.5875, 0.8078125, 0.853125, 0.4296875, 0.503125, 0.78125, 0.609375, 0.9609375, 0.8515625, 0.8140625, 0.6125, 0.8140625, 0.71875, 0.49375, 0.7125, 0.76875, 0.771875, 1.125, 0.7765625, 0.7734375, 0.65625, 0.321875, 0.3078125, 0.321875, 0.3546875, 0.5, 0.3375, 0.446875, 0.5359375, 0.45, 0.5296875, 0.4546875, 0.425, 0.4921875, 0.54375, 0.2671875, 0.240625, 0.5390625, 0.25, 0.815625, 0.5375, 0.5234375, 0.5390625, 0.5421875, 0.365625, 0.36875, 0.35625, 0.5171875, 0.5015625, 0.75, 0.5, 0.509375, 0.44375, 0.2421875, 0.14375, 0.2421875, 0.35], - avg: 0.5116447368421051 - }, - "Montserrat": { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2625, 0.2609375, 0.3734375, 0.696875, 0.615625, 0.8296875, 0.6703125, 0.203125, 0.3296875, 0.3296875, 0.3875, 0.575, 0.2125, 0.3828125, 0.2125, 0.3953125, 0.6625, 0.3625, 0.56875, 0.5640625, 0.6625, 0.5671875, 0.609375, 0.5890625, 0.6390625, 0.609375, 0.2125, 0.2125, 0.575, 0.575, 0.575, 0.5671875, 1.034375, 0.7171875, 0.7546875, 0.7203125, 0.8265625, 0.6703125, 0.634375, 0.7734375, 0.8140625, 0.303125, 0.5078125, 0.7125, 0.5890625, 0.95625, 0.8140625, 0.8390625, 0.71875, 0.8390625, 0.7234375, 0.615625, 0.575, 0.7921875, 0.6984375, 1.1125, 0.65625, 0.6359375, 0.6515625, 0.31875, 0.396875, 0.31875, 0.5765625, 0.5, 0.6, 0.590625, 0.678125, 0.5640625, 0.678125, 0.6046875, 0.375, 0.6875, 0.678125, 0.2703125, 0.365625, 0.6015625, 0.2703125, 1.0625, 0.678125, 0.628125, 0.678125, 0.678125, 0.4015625, 0.4890625, 0.40625, 0.6734375, 0.5421875, 0.8796875, 0.534375, 0.5671875, 0.5125, 0.334375, 0.2953125, 0.334375, 0.575], - avg: 0.571792763157895 - }, - monospace: { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.5984375, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6078125, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.61875, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.615625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6140625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625, 0.6015625], - avg: 0.6020559210526316 - }, - Overpass: { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2296875, 0.2765625, 0.4203125, 0.68125, 0.584375, 0.8515625, 0.7015625, 0.2203125, 0.3453125, 0.3453125, 0.53125, 0.63125, 0.2234375, 0.3953125, 0.2234375, 0.509375, 0.65, 0.4046875, 0.6171875, 0.60625, 0.6484375, 0.60625, 0.6015625, 0.5375, 0.615625, 0.6015625, 0.2234375, 0.2234375, 0.63125, 0.63125, 0.63125, 0.5015625, 0.8203125, 0.696875, 0.6671875, 0.65, 0.6859375, 0.6015625, 0.559375, 0.690625, 0.7078125, 0.2953125, 0.565625, 0.678125, 0.58125, 0.8046875, 0.7109375, 0.740625, 0.6421875, 0.740625, 0.6765625, 0.6046875, 0.590625, 0.696875, 0.6640625, 0.853125, 0.65, 0.6671875, 0.6625, 0.3734375, 0.509375, 0.3734375, 0.63125, 0.5125, 0.4, 0.5328125, 0.5625, 0.51875, 0.5625, 0.546875, 0.3359375, 0.5625, 0.565625, 0.25625, 0.3203125, 0.55, 0.265625, 0.85, 0.565625, 0.5671875, 0.5625, 0.5625, 0.4046875, 0.4765625, 0.3796875, 0.565625, 0.521875, 0.7265625, 0.53125, 0.5390625, 0.5125, 0.3671875, 0.275, 0.3671875, 0.63125], - avg: 0.5430756578947369 - }, - Palatino: { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.278125, 0.371875, 0.60625, 0.5, 0.840625, 0.778125, 0.209375, 0.334375, 0.334375, 0.390625, 0.60625, 0.2578125, 0.334375, 0.25, 0.60625, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.25, 0.25, 0.60625, 0.60625, 0.60625, 0.4453125, 0.7484375, 0.778125, 0.6109375, 0.709375, 0.775, 0.6109375, 0.55625, 0.7640625, 0.8328125, 0.3375, 0.346875, 0.7265625, 0.6109375, 0.946875, 0.83125, 0.7875, 0.6046875, 0.7875, 0.66875, 0.525, 0.6140625, 0.778125, 0.7234375, 1, 0.6671875, 0.6671875, 0.6671875, 0.334375, 0.60625, 0.334375, 0.60625, 0.5, 0.334375, 0.5, 0.565625, 0.4453125, 0.6109375, 0.4796875, 0.340625, 0.55625, 0.5828125, 0.2921875, 0.2671875, 0.5640625, 0.2921875, 0.8828125, 0.5828125, 0.546875, 0.6015625, 0.5609375, 0.3953125, 0.425, 0.3265625, 0.603125, 0.565625, 0.834375, 0.5171875, 0.55625, 0.5, 0.334375, 0.60625, 0.334375, 0.60625], - avg: 0.5408552631578947 - }, - "RedHatText": { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2328125, 0.2203125, 0.35625, 0.6890625, 0.55, 0.7390625, 0.6703125, 0.2140625, 0.4015625, 0.4015625, 0.4546875, 0.53125, 0.2203125, 0.45625, 0.2203125, 0.515625, 0.6609375, 0.3078125, 0.5484375, 0.5875, 0.61875, 0.5703125, 0.6203125, 0.559375, 0.6140625, 0.6203125, 0.2203125, 0.2234375, 0.465625, 0.534375, 0.465625, 0.5125, 0.7671875, 0.6609375, 0.6703125, 0.7265625, 0.728125, 0.6203125, 0.6109375, 0.8, 0.73125, 0.253125, 0.6, 0.6125, 0.6078125, 0.8625, 0.7390625, 0.8109375, 0.6546875, 0.809375, 0.6484375, 0.6234375, 0.6171875, 0.7125, 0.6609375, 0.8984375, 0.6546875, 0.646875, 0.60625, 0.3625, 0.5203125, 0.3625, 0.540625, 0.4609375, 0.5234375, 0.5265625, 0.584375, 0.509375, 0.5828125, 0.5578125, 0.3703125, 0.5828125, 0.553125, 0.2234375, 0.24375, 0.4890625, 0.2234375, 0.8453125, 0.553125, 0.58125, 0.584375, 0.5828125, 0.353125, 0.453125, 0.378125, 0.553125, 0.5015625, 0.6984375, 0.4875, 0.4984375, 0.459375, 0.3953125, 0.2921875, 0.3953125, 0.58125], - avg: 0.5341940789473685 - }, - "sans-serif": { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.278125, 0.278125, 0.35625, 0.55625, 0.55625, 0.890625, 0.6671875, 0.1921875, 0.334375, 0.334375, 0.390625, 0.584375, 0.278125, 0.334375, 0.278125, 0.303125, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.55625, 0.278125, 0.278125, 0.5859375, 0.584375, 0.5859375, 0.55625, 1.015625, 0.6671875, 0.6671875, 0.7234375, 0.7234375, 0.6671875, 0.6109375, 0.778125, 0.7234375, 0.278125, 0.5, 0.6671875, 0.55625, 0.834375, 0.7234375, 0.778125, 0.6671875, 0.778125, 0.7234375, 0.6671875, 0.6109375, 0.7234375, 0.6671875, 0.9453125, 0.6671875, 0.6671875, 0.6109375, 0.278125, 0.35625, 0.278125, 0.478125, 0.55625, 0.334375, 0.55625, 0.55625, 0.5, 0.55625, 0.55625, 0.278125, 0.55625, 0.55625, 0.2234375, 0.2421875, 0.5, 0.2234375, 0.834375, 0.55625, 0.55625, 0.55625, 0.55625, 0.334375, 0.5, 0.278125, 0.55625, 0.5, 0.7234375, 0.5, 0.5, 0.5, 0.35625, 0.2609375, 0.3546875, 0.590625], - avg: 0.5293256578947368 - }, - Seravek: { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.215625, 0.296875, 0.4171875, 0.6734375, 0.4953125, 0.9125, 0.740625, 0.2421875, 0.3375, 0.3375, 0.409375, 0.60625, 0.2609375, 0.35625, 0.25625, 0.41875, 0.5921875, 0.3515625, 0.475, 0.4875, 0.5375, 0.509375, 0.5484375, 0.4546875, 0.5421875, 0.5484375, 0.25625, 0.2546875, 0.5875, 0.6171875, 0.5875, 0.4578125, 0.8140625, 0.6765625, 0.5703125, 0.6109375, 0.684375, 0.5109375, 0.4953125, 0.678125, 0.6859375, 0.2625, 0.2625, 0.5859375, 0.4734375, 0.846875, 0.709375, 0.740625, 0.509375, 0.740625, 0.584375, 0.5015625, 0.528125, 0.675, 0.5953125, 0.9453125, 0.596875, 0.540625, 0.540625, 0.359375, 0.4203125, 0.359375, 0.5109375, 0.421875, 0.4046875, 0.5015625, 0.5421875, 0.446875, 0.5453125, 0.484375, 0.38125, 0.5140625, 0.5546875, 0.240625, 0.2640625, 0.490625, 0.2765625, 0.8625, 0.5546875, 0.546875, 0.5453125, 0.5453125, 0.3625, 0.41875, 0.3890625, 0.5453125, 0.4703125, 0.7546875, 0.4921875, 0.4609375, 0.453125, 0.4015625, 0.2640625, 0.4015625, 0.58125], - avg: 0.5044078947368421 - }, - serif: { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2484375, 0.334375, 0.409375, 0.5, 0.5, 0.834375, 0.778125, 0.18125, 0.334375, 0.334375, 0.5, 0.5640625, 0.25, 0.334375, 0.25, 0.278125, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.278125, 0.278125, 0.5640625, 0.5640625, 0.5640625, 0.4453125, 0.921875, 0.7234375, 0.6671875, 0.6671875, 0.7234375, 0.6109375, 0.55625, 0.7234375, 0.7234375, 0.334375, 0.390625, 0.7234375, 0.6109375, 0.890625, 0.7234375, 0.7234375, 0.55625, 0.7234375, 0.6671875, 0.55625, 0.6109375, 0.7234375, 0.7234375, 0.9453125, 0.7234375, 0.7234375, 0.6109375, 0.334375, 0.340625, 0.334375, 0.4703125, 0.5, 0.3453125, 0.4453125, 0.5, 0.4453125, 0.5, 0.4453125, 0.3828125, 0.5, 0.5, 0.278125, 0.3359375, 0.5, 0.278125, 0.778125, 0.5, 0.5, 0.5, 0.5, 0.3375, 0.390625, 0.2796875, 0.5, 0.5, 0.7234375, 0.5, 0.5, 0.4453125, 0.48125, 0.2015625, 0.48125, 0.5421875], - avg: 0.5126315789473684 - }, - Tahoma: { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.3109375, 0.3328125, 0.4015625, 0.728125, 0.546875, 0.9765625, 0.70625, 0.2109375, 0.3828125, 0.3828125, 0.546875, 0.728125, 0.303125, 0.3640625, 0.303125, 0.3953125, 0.546875, 0.546875, 0.546875, 0.546875, 0.546875, 0.546875, 0.546875, 0.546875, 0.546875, 0.546875, 0.3546875, 0.3546875, 0.728125, 0.728125, 0.728125, 0.475, 0.909375, 0.6109375, 0.590625, 0.6015625, 0.6796875, 0.5625, 0.521875, 0.66875, 0.6765625, 0.3734375, 0.4171875, 0.6046875, 0.4984375, 0.771875, 0.66875, 0.7078125, 0.5515625, 0.7078125, 0.6375, 0.5578125, 0.5875, 0.65625, 0.60625, 0.903125, 0.58125, 0.5890625, 0.559375, 0.3828125, 0.39375, 0.3828125, 0.728125, 0.5625, 0.546875, 0.525, 0.553125, 0.4625, 0.553125, 0.5265625, 0.3546875, 0.553125, 0.5578125, 0.2296875, 0.328125, 0.51875, 0.2296875, 0.840625, 0.5578125, 0.54375, 0.553125, 0.553125, 0.3609375, 0.446875, 0.3359375, 0.5578125, 0.4984375, 0.7421875, 0.4953125, 0.4984375, 0.4453125, 0.48125, 0.3828125, 0.48125, 0.728125], - avg: 0.5384374999999998 - }, - "Times New Roman": { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.2484375, 0.334375, 0.409375, 0.5, 0.5, 0.834375, 0.778125, 0.18125, 0.334375, 0.334375, 0.5, 0.5640625, 0.25, 0.334375, 0.25, 0.28125, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.278125, 0.278125, 0.5640625, 0.5640625, 0.5640625, 0.4453125, 0.921875, 0.7234375, 0.6671875, 0.6671875, 0.7234375, 0.6109375, 0.55625, 0.7234375, 0.7234375, 0.334375, 0.390625, 0.73125, 0.6109375, 0.890625, 0.7375, 0.7234375, 0.55625, 0.7234375, 0.6765625, 0.55625, 0.6109375, 0.7234375, 0.7234375, 0.9453125, 0.7234375, 0.7234375, 0.6109375, 0.334375, 0.28125, 0.334375, 0.4703125, 0.51875, 0.334375, 0.4453125, 0.503125, 0.4453125, 0.503125, 0.4453125, 0.4359375, 0.5, 0.5, 0.278125, 0.35625, 0.50625, 0.278125, 0.778125, 0.5, 0.5, 0.5046875, 0.5, 0.340625, 0.390625, 0.2796875, 0.5, 0.5, 0.7234375, 0.5, 0.5, 0.4453125, 0.48125, 0.2015625, 0.48125, 0.5421875], - avg: 0.5134375 - }, - "Trebuchet MS": { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.3015625, 0.3671875, 0.325, 0.53125, 0.525, 0.6015625, 0.70625, 0.1609375, 0.3671875, 0.3671875, 0.3671875, 0.525, 0.3671875, 0.3671875, 0.3671875, 0.525, 0.525, 0.525, 0.525, 0.525, 0.525, 0.525, 0.525, 0.525, 0.525, 0.525, 0.3671875, 0.3671875, 0.525, 0.525, 0.525, 0.3671875, 0.771875, 0.590625, 0.5671875, 0.5984375, 0.6140625, 0.5359375, 0.525, 0.6765625, 0.6546875, 0.2796875, 0.4765625, 0.5765625, 0.5078125, 0.7109375, 0.6390625, 0.675, 0.5578125, 0.7421875, 0.5828125, 0.48125, 0.58125, 0.6484375, 0.5875, 0.853125, 0.5578125, 0.5703125, 0.5515625, 0.3671875, 0.3578125, 0.3671875, 0.525, 0.53125, 0.525, 0.5265625, 0.5578125, 0.4953125, 0.5578125, 0.546875, 0.375, 0.503125, 0.546875, 0.2859375, 0.3671875, 0.5046875, 0.2953125, 0.83125, 0.546875, 0.5375, 0.5578125, 0.5578125, 0.3890625, 0.40625, 0.396875, 0.546875, 0.490625, 0.7453125, 0.5015625, 0.49375, 0.475, 0.3671875, 0.525, 0.3671875, 0.525], - avg: 0.5085197368421052 - }, - Verdana: { - widths: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.35, 0.39375, 0.459375, 0.81875, 0.6359375, 1.0765625, 0.759375, 0.26875, 0.4546875, 0.4546875, 0.6359375, 0.81875, 0.3640625, 0.4546875, 0.3640625, 0.4703125, 0.6359375, 0.6359375, 0.6359375, 0.6359375, 0.6359375, 0.6359375, 0.6359375, 0.6359375, 0.6359375, 0.6359375, 0.4546875, 0.4546875, 0.81875, 0.81875, 0.81875, 0.546875, 1, 0.684375, 0.6859375, 0.6984375, 0.771875, 0.6328125, 0.575, 0.7765625, 0.7515625, 0.421875, 0.4546875, 0.69375, 0.5578125, 0.84375, 0.7484375, 0.7875, 0.603125, 0.7875, 0.7, 0.684375, 0.6171875, 0.7328125, 0.684375, 0.9890625, 0.6859375, 0.615625, 0.6859375, 0.4546875, 0.46875, 0.4546875, 0.81875, 0.6421875, 0.6359375, 0.6015625, 0.6234375, 0.521875, 0.6234375, 0.596875, 0.384375, 0.6234375, 0.6328125, 0.275, 0.3765625, 0.5921875, 0.275, 0.9734375, 0.6328125, 0.6078125, 0.6234375, 0.6234375, 0.43125, 0.521875, 0.3953125, 0.6328125, 0.5921875, 0.81875, 0.5921875, 0.5921875, 0.5265625, 0.6359375, 0.4546875, 0.6359375, 0.81875], - avg: 0.6171875000000003 - } //https://developer.mozilla.org/en/docs/Web/CSS/length - // Absolute sizes in pixels for obsolete measurement units. - -}; -var absoluteMeasurementUnitsToPixels = { - mm: 3.8, - sm: 38, - pt: 1.33, - pc: 16, - in: 96, - px: 1 -}; -var relativeMeasurementUnitsCoef = { - em: 1, - ex: 0.5 -}; -var coefficients = { - heightOverlapCoef: 1.05, - // Coefficient for height value to prevent overlap. - lineCapitalCoef: 1.15 // Coefficient for height value. Reserve space for capital chars. - -}; -var defaultStyle = { - lineHeight: 1, - letterSpacing: "0px", - fontSize: 0, - angle: 0, - fontFamily: "" -}; - -var _degreeToRadian = function (angle) { - return angle * Math.PI / 180; -}; - -var _getFontData = function (fontFamily) { - var possibleFonts = fontFamily.split(",").map(function (f) { - return f.replace(/'|"/g, ""); - }); - var fontMatch = possibleFonts.find(function (f) { - return fonts[f]; - }) || "Helvetica"; - return fonts[fontMatch]; -}; - -var _splitToLines = function (text) { - return Array.isArray(text) ? text : text.toString().split(/\r\n|\r|\n/g); -}; - -var _getSizeWithRotate = function (axisSize, dependentSize, angle) { - var angleInRadian = _degreeToRadian(angle); - - return Math.abs(Math.cos(angleInRadian) * axisSize) + Math.abs(Math.sin(angleInRadian) * dependentSize); -}; -/** - * Convert length-type parameters from specific measurement units to pixels - * @param {string} length Css length string value. - * @param {number} fontSize Current text font-size. - * @returns {number} Approximate Css length in pixels. - */ - - -var convertLengthToPixels = function (length, fontSize) { - var attribute = length.match(/[a-zA-Z%]+/) && length.match(/[a-zA-Z%]+/)[0]; - var value = length.match(/[0-9.,]+/); - var result; - - if (!attribute) { - result = value || 0; - } else if (absoluteMeasurementUnitsToPixels.hasOwnProperty(attribute)) { - result = value * absoluteMeasurementUnitsToPixels[attribute]; - } else if (relativeMeasurementUnitsCoef.hasOwnProperty(attribute)) { - result = (fontSize ? value * fontSize : value * defaultStyle.fontSize) * relativeMeasurementUnitsCoef[attribute]; - } else { - result = value; - } - - return result; -}; - -var _prepareParams = function (inputStyle, index) { - var lineStyle = Array.isArray(inputStyle) ? inputStyle[index] : inputStyle; - - var style = defaults_1({}, lineStyle, defaultStyle); - - return assign_1({}, style, { - fontFamily: style.fontFamily, - letterSpacing: typeof style.letterSpacing === "number" ? style.letterSpacing : convertLengthToPixels(String(style.letterSpacing), style.fontSize), - fontSize: typeof style.fontSize === "number" ? style.fontSize : convertLengthToPixels(String(style.fontSize)) - }); -}; - -var _approximateTextWidthInternal = function (text, style) { - if (text === undefined || text === "" || text === null) { - return 0; - } - - var widths = _splitToLines(text).map(function (line, index) { - var len = line.toString().length; - - var _prepareParams2 = _prepareParams(style, index), - fontSize = _prepareParams2.fontSize, - letterSpacing = _prepareParams2.letterSpacing, - fontFamily = _prepareParams2.fontFamily; - - var fontData = _getFontData(fontFamily); - - var width = line.toString().split("").map(function (c) { - return c.charCodeAt(0) < fontData.widths.length ? fontData.widths[c.charCodeAt(0)] : fontData.avg; - }).reduce(function (cur, acc) { - return acc + cur; - }, 0) * fontSize; - return width + letterSpacing * Math.max(len - 1, 0); - }); - - return Math.max.apply(Math, _toConsumableArray$1(widths)); -}; - -var _approximateTextHeightInternal = function (text, style) { - if (text === undefined || text === "" || text === null) { - return 0; - } - - return _splitToLines(text).reduce(function (total, line, index) { - var lineStyle = _prepareParams(style, index); - - var containsCaps = line.toString().match(/[(A-Z)(0-9)]/); - var height = containsCaps ? lineStyle.fontSize * coefficients.lineCapitalCoef : lineStyle.fontSize; - return total + lineStyle.lineHeight * height; - }, 0); -}; -/** - * Predict text size by font params. - * @param {string} text Content for width calculation. - * @param {Object} style Text styles, ,fontFamily, fontSize, etc. - * @param {string} style.fontFamily Text fontFamily. - * @param {(number|string)} style.fontSize Text fontSize. - * @param {number} style.angle Text rotate angle. - * @param {string} style.letterSpacing Text letterSpacing(space between letters). - * @param {number} style.lineHeight Line height coefficient. - * @returns {number} Approximate text label height. - */ - - -var approximateTextSize = function (text, style) { - var angle = Array.isArray(style) ? style[0] && style[0].angle : style && style.angle; - - var height = _approximateTextHeightInternal(text, style); - - var width = _approximateTextWidthInternal(text, style); - - var widthWithRotate = angle ? _getSizeWithRotate(width, height, angle) : width; - var heightWithRotate = angle ? _getSizeWithRotate(height, width, angle) : height; - return { - width: widthWithRotate, - height: heightWithRotate * coefficients.heightOverlapCoef - }; -}; - -var TextSize = { - approximateTextSize: approximateTextSize, - convertLengthToPixels: convertLengthToPixels -}; - -var TSpan = function (props) { - return React__default.createElement("tspan", props); -}; - -function _objectWithoutProperties$1(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } - -var Text = function (props) { - var children = props.children, - title = props.title, - desc = props.desc, - rest = _objectWithoutProperties$1(props, ["children", "title", "desc"]); - - return React__default.createElement("text", rest, title && React__default.createElement("title", null, title), desc && React__default.createElement("desc", null, desc), children); -}; - -Text.propTypes = { - children: propTypes.node, - desc: propTypes.string, - title: propTypes.string -}; - -function _objectSpread$1(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$3(target, key, source[key]); }); } return target; } - -function _defineProperty$3(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _toConsumableArray$2(arr) { return _arrayWithoutHoles$2(arr) || _iterableToArray$2(arr) || _nonIterableSpread$2(); } - -function _nonIterableSpread$2() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$2(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$2(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } -var defaultStyles = { - fill: "#252525", - fontSize: 14, - fontFamily: "'Gill Sans', 'Gill Sans MT', 'Ser­avek', 'Trebuchet MS', sans-serif", - stroke: "transparent" -}; - -var getPosition$1 = function (props, dimension) { - if (!props.datum) { - return 0; - } - - var scaledPoint = Helpers.scalePoint(props, props.datum); - return scaledPoint[dimension]; -}; - -var getFontSize = function (style) { - var baseSize = style && style.fontSize; - - if (typeof baseSize === "number") { - return baseSize; - } else if (baseSize === undefined || baseSize === null) { - return defaultStyles.fontSize; - } else if (typeof baseSize === "string") { - var fontSize = +baseSize.replace("px", ""); - - if (!isNaN(fontSize)) { - return fontSize; - } else { - Log.warn("fontSize should be expressed as a number of pixels"); - return defaultStyles.fontSize; - } - } - - return defaultStyles.fontSize; -}; - -var getSingleValue = function (prop) { - var index = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0; - return Array.isArray(prop) ? prop[index] || prop[0] : prop; -}; - -var useMultiLineBackgrounds = function (props) { - var backgroundStyle = props.backgroundStyle, - backgroundPadding = props.backgroundPadding; - return Array.isArray(backgroundStyle) && !isEmpty_1(backgroundStyle) || Array.isArray(backgroundPadding) && !isEmpty_1(backgroundPadding); -}; - -var getStyles$1 = function (style, props) { - var getSingleStyle = function (s) { - s = s ? defaults_1({}, s, defaultStyles) : defaultStyles; - var baseStyles = Helpers.evaluateStyle(s, props); - return assign_1({}, baseStyles, { - fontSize: getFontSize(baseStyles) - }); - }; - - return Array.isArray(style) && !isEmpty_1(style) ? style.map(function (s) { - return getSingleStyle(s); - }) : getSingleStyle(style); -}; - -var getBackgroundStyles = function (style, props) { - if (!style) { - return undefined; - } - - return Array.isArray(style) && !isEmpty_1(style) ? style.map(function (s) { - return Helpers.evaluateStyle(s, props); - }) : Helpers.evaluateStyle(style, props); -}; - -var getBackgroundPadding = function (props) { - if (props.backgroundPadding && Array.isArray(props.backgroundPadding)) { - return props.backgroundPadding.map(function (backgroundPadding) { - var padding = Helpers.evaluateProp(backgroundPadding, props); - return Helpers.getPadding({ - padding: padding - }); - }); - } else { - var padding = Helpers.evaluateProp(props.backgroundPadding, props); - return Helpers.getPadding({ - padding: padding - }); - } -}; - -var getLineHeight = function (props) { - var lineHeight = Helpers.evaluateProp(props.lineHeight, props); - - if (Array.isArray(lineHeight)) { - return isEmpty_1(lineHeight) ? [1] : lineHeight; - } else { - return lineHeight; - } -}; - -var getContent = function (text, props) { - if (text === undefined || text === null) { - return undefined; - } - - if (Array.isArray(text)) { - return text.map(function (line) { - return Helpers.evaluateProp(line, props); - }); - } - - var child = Helpers.evaluateProp(text, props); - - if (child === undefined || child === null) { - return undefined; - } - - return Array.isArray(child) ? child : "".concat(child).split("\n"); -}; - -var getDy = function (props, verticalAnchor, lineHeight) { - var dy = props.dy ? Helpers.evaluateProp(props.dy, props) : 0; - var length = props.inline ? 1 : props.text.length; - var capHeight = Helpers.evaluateProp(props.capHeight, props); - var anchor = verticalAnchor ? Helpers.evaluateProp(verticalAnchor, props) : "middle"; - - var fontSizes = _toConsumableArray$2(Array(length).keys()).map(function (i) { - return getSingleValue(props.style, i).fontSize; - }); - - var lineHeights = _toConsumableArray$2(Array(length).keys()).map(function (i) { - return getSingleValue(lineHeight, i); - }); - - if (anchor === "start") { - return dy + (capHeight / 2 + lineHeights[0] / 2) * fontSizes[0]; - } else if (props.inline) { - return anchor === "end" ? dy + (capHeight / 2 - lineHeights[0] / 2) * fontSizes[0] : dy + capHeight / 2 * fontSizes[0]; - } else if (length === 1) { - return anchor === "end" ? dy + (capHeight / 2 + (0.5 - length) * lineHeights[0]) * fontSizes[0] : dy + (capHeight / 2 + (0.5 - length / 2) * lineHeights[0]) * fontSizes[0]; - } else { - var allHeights = _toConsumableArray$2(Array(length).keys()).reduce(function (memo, i) { - return memo + (capHeight / 2 + (0.5 - length) * lineHeights[i]) * fontSizes[i] / length; - }, 0); - - return anchor === "end" ? dy + allHeights : dy + allHeights / 2 + capHeight / 2 * lineHeights[length - 1] * fontSizes[length - 1]; - } -}; - -var getTransform = function (props, x, y) { - var polar = props.polar; - var style = getSingleValue(props.style); - var defaultAngle = polar ? LabelHelpers.getPolarAngle(props) : 0; - var baseAngle = style.angle === undefined ? Helpers.evaluateProp(props.angle, props) : style.angle; - var angle = baseAngle === undefined ? defaultAngle : baseAngle; - var transform = props.transform || style.transform; - var transformPart = transform && Helpers.evaluateProp(transform, props); - var rotatePart = angle && { - rotate: [angle, x, y] - }; - return transformPart || angle ? Style.toTransformString(transformPart, rotatePart) : undefined; -}; - -var getXCoordinate = function (calculatedProps, labelSizeWidth) { - var direction = calculatedProps.direction, - textAnchor = calculatedProps.textAnchor, - x = calculatedProps.x, - dx = calculatedProps.dx; - - if (direction === "rtl") { - return x - labelSizeWidth; - } - - switch (textAnchor) { - case "middle": - return Math.round(x - labelSizeWidth / 2); - - case "end": - return Math.round(x - labelSizeWidth); - - default: - // start - return x + (dx || 0); - } -}; - -var getYCoordinate = function (calculatedProps, textHeight) { - var verticalAnchor = calculatedProps.verticalAnchor, - y = calculatedProps.y, - _calculatedProps$orig = calculatedProps.originalDy, - originalDy = _calculatedProps$orig === void 0 ? 0 : _calculatedProps$orig; - var offset = y + originalDy; - - switch (verticalAnchor) { - case "start": - return Math.floor(offset); - - case "end": - return Math.ceil(offset - textHeight); - - default: - // middle - return Math.floor(offset - textHeight / 2); - } -}; - -var getFullBackground = function (calculatedProps, tspanValues) { - var _calculatedProps$dx = calculatedProps.dx, - dx = _calculatedProps$dx === void 0 ? 0 : _calculatedProps$dx, - transform = calculatedProps.transform, - backgroundComponent = calculatedProps.backgroundComponent, - backgroundStyle = calculatedProps.backgroundStyle, - inline = calculatedProps.inline, - backgroundPadding = calculatedProps.backgroundPadding, - capHeight = calculatedProps.capHeight; - var textSizes = tspanValues.map(function (tspan) { - return tspan.textSize; - }); - var height = inline ? Math.max.apply(Math, _toConsumableArray$2(textSizes.map(function (size) { - return size.height; - }))) : textSizes.reduce(function (memo, size, i) { - var capHeightAdjustment = i ? 0 : capHeight / 2; - return memo + size.height * (tspanValues[i].lineHeight - capHeightAdjustment); - }, 0); - var width = inline ? textSizes.reduce(function (memo, size, index) { - var offset = index ? dx : 0; - return memo + size.width + offset; - }, 0) : Math.max.apply(Math, _toConsumableArray$2(textSizes.map(function (size) { - return size.width; - }))); - var xCoordinate = getXCoordinate(calculatedProps, width); - var yCoordinate = getYCoordinate(calculatedProps, height); - var backgroundProps = { - key: "background", - height: height + backgroundPadding.top + backgroundPadding.bottom, - style: backgroundStyle, - transform: transform, - width: width + backgroundPadding.left + backgroundPadding.right, - x: inline ? xCoordinate - backgroundPadding.left : xCoordinate + dx - backgroundPadding.left, - y: yCoordinate - }; - return React__default.cloneElement(backgroundComponent, defaults_1({}, backgroundComponent.props, backgroundProps)); -}; - -var getInlineXOffset = function (calculatedProps, textElements, index) { - var textAnchor = calculatedProps.textAnchor; - var widths = textElements.map(function (t) { - return t.widthWithPadding; - }); - var totalWidth = widths.reduce(function (memo, width) { - return memo + width; - }, 0); - var centerOffset = -totalWidth / 2; - - switch (textAnchor) { - case "start": - return widths.reduce(function (memo, width, i) { - memo = i < index ? memo + width : memo; - return memo; - }, 0); - - case "end": - return widths.reduce(function (memo, width, i) { - memo = i > index ? memo - width : memo; - return memo; - }, 0); - - default: - // middle - return widths.reduce(function (memo, width, i) { - var offsetWidth = i < index ? width : 0; - memo = i === index ? memo + width / 2 : memo + offsetWidth; - return memo; - }, centerOffset); - } -}; - -var getChildBackgrounds = function (calculatedProps, tspanValues) { - var dy = calculatedProps.dy, - dx = calculatedProps.dx, - transform = calculatedProps.transform, - backgroundStyle = calculatedProps.backgroundStyle, - backgroundPadding = calculatedProps.backgroundPadding, - backgroundComponent = calculatedProps.backgroundComponent, - inline = calculatedProps.inline, - y = calculatedProps.y; - var textElements = tspanValues.map(function (current, i) { - var previous = getSingleValue(tspanValues, i - 1); - var labelSize = current.textSize; - var totalLineHeight = current.fontSize * current.lineHeight; - var textHeight = Math.ceil(totalLineHeight); - var padding = getSingleValue(backgroundPadding, i); - var prevPadding = getSingleValue(backgroundPadding, i - 1); - var xOffset = inline ? dx || 0 : 0; - var childDy = i && !inline ? previous.fontSize * previous.lineHeight + prevPadding.top + prevPadding.bottom : dy - totalLineHeight * 0.5 - (current.fontSize - current.capHeight); - return { - textHeight: textHeight, - labelSize: labelSize, - heightWithPadding: textHeight + padding.top + padding.bottom, - widthWithPadding: labelSize.width + padding.left + padding.right + xOffset, - y: y, - fontSize: current.fontSize, - dy: childDy - }; - }); - return textElements.map(function (textElement, i) { - var xCoordinate = getXCoordinate(calculatedProps, textElement.labelSize.width); - var yCoordinate = textElements.slice(0, i + 1).reduce(function (prev, curr) { - return prev + curr.dy; - }, y); - var padding = getSingleValue(backgroundPadding, i); - var height = textElement.heightWithPadding; - var xCoord = inline ? getInlineXOffset(calculatedProps, textElements, i) + xCoordinate - padding.left : xCoordinate; - var yCoord = inline ? getYCoordinate(calculatedProps, height) - padding.top : yCoordinate; - var backgroundProps = { - key: "tspan-background-".concat(i), - height: height, - style: getSingleValue(backgroundStyle, i), - width: textElement.widthWithPadding, - transform: transform, - x: xCoord - padding.left, - y: yCoord - }; - return React__default.cloneElement(backgroundComponent, defaults_1({}, backgroundComponent.props, backgroundProps)); - }); -}; - -var getBackgroundElement = function (calculatedProps, tspanValues) { - return useMultiLineBackgrounds(calculatedProps) ? getChildBackgrounds(calculatedProps, tspanValues) : getFullBackground(calculatedProps, tspanValues); -}; - -var calculateSpanDy = function (tspanValues, i, calculatedProps) { - var current = getSingleValue(tspanValues, i); - var previous = getSingleValue(tspanValues, i - 1); - var previousHeight = previous.fontSize * previous.lineHeight; - var currentHeight = current.fontSize * current.lineHeight; - var previousCaps = previous.fontSize - previous.capHeight; - var currentCaps = current.fontSize - current.capHeight; - var textHeight = previousHeight - previous.fontSize / 2 + current.fontSize / 2 - previousHeight / 2 + currentHeight / 2 - currentCaps / 2 + previousCaps / 2; - return useMultiLineBackgrounds(calculatedProps) ? textHeight + current.backgroundPadding.top + previous.backgroundPadding.bottom : textHeight; -}; - -var getTSpanDy = function (tspanValues, calculatedProps, i) { - var inline = calculatedProps.inline; - var current = getSingleValue(tspanValues, i); - - if (i && !inline) { - return calculateSpanDy(tspanValues, i, calculatedProps); - } else if (inline) { - return i === 0 ? current.backgroundPadding.top : undefined; - } else { - return current.backgroundPadding.top; - } -}; - -var evaluateProps = function (props) { - /* Potential evaluated props are - 1) text - 2) style - 3) everything else - */ - var text = getContent(props.text, props); - var style = getStyles$1(props.style, assign_1({}, props, { - text: text - })); - var backgroundStyle = getBackgroundStyles(props.backgroundStyle, assign_1({}, props, { - text: text, - style: style - })); - var backgroundPadding = getBackgroundPadding(assign_1({}, props, { - text: text, - style: style, - backgroundStyle: backgroundStyle - })); - var id = Helpers.evaluateProp(props.id, props); - return assign_1({}, props, { - backgroundStyle: backgroundStyle, - backgroundPadding: backgroundPadding, - style: style, - text: text, - id: id - }); -}; - -var getCalculatedProps = function (props) { - var ariaLabel = Helpers.evaluateProp(props.ariaLabel, props); - var style = getSingleValue(props.style); - var lineHeight = getLineHeight(props); - var direction = props.direction ? Helpers.evaluateProp(props.direction, props) : "inherit"; - var textAnchor = props.textAnchor ? Helpers.evaluateProp(props.textAnchor, props) : style.textAnchor || "start"; - var verticalAnchor = props.verticalAnchor ? Helpers.evaluateProp(props.verticalAnchor, props) : style.verticalAnchor || "middle"; - var dx = props.dx ? Helpers.evaluateProp(props.dx, props) : 0; - var dy = getDy(props, verticalAnchor, lineHeight); - var x = props.x !== undefined ? props.x : getPosition$1(props, "x"); - var y = props.y !== undefined ? props.y : getPosition$1(props, "y"); - var transform = getTransform(props, x, y); - return assign_1({}, props, { - ariaLabel: ariaLabel, - lineHeight: lineHeight, - direction: direction, - textAnchor: textAnchor, - verticalAnchor: verticalAnchor, - dx: dx, - dy: dy, - originalDy: props.dy, - transform: transform, - x: x, - y: y - }); -}; - -var renderLabel = function (calculatedProps, tspanValues) { - var ariaLabel = calculatedProps.ariaLabel, - inline = calculatedProps.inline, - className = calculatedProps.className, - title = calculatedProps.title, - events = calculatedProps.events, - direction = calculatedProps.direction, - text = calculatedProps.text, - textAnchor = calculatedProps.textAnchor, - dx = calculatedProps.dx, - dy = calculatedProps.dy, - transform = calculatedProps.transform, - x = calculatedProps.x, - y = calculatedProps.y, - desc = calculatedProps.desc, - id = calculatedProps.id, - tabIndex = calculatedProps.tabIndex, - tspanComponent = calculatedProps.tspanComponent, - textComponent = calculatedProps.textComponent; - - var textProps = _objectSpread$1({ - "aria-label": ariaLabel, - key: "text" - }, events, { - direction: direction, - dx: dx, - x: x, - y: y + dy, - transform: transform, - className: className, - title: title, - desc: Helpers.evaluateProp(desc, calculatedProps), - tabIndex: Helpers.evaluateProp(tabIndex, calculatedProps), - id: id - }); - - var tspans = text.map(function (line, i) { - var currentStyle = tspanValues[i].style; - var tspanProps = { - key: "".concat(id, "-key-").concat(i), - x: !inline ? x : undefined, - dx: inline ? dx + tspanValues[i].backgroundPadding.left : dx, - dy: getTSpanDy(tspanValues, calculatedProps, i), - textAnchor: currentStyle.textAnchor || textAnchor, - style: currentStyle, - children: line - }; - return React__default.cloneElement(tspanComponent, tspanProps); - }); - return React__default.cloneElement(textComponent, textProps, tspans); -}; - -var VictoryLabel = function (props) { - props = evaluateProps(props); - - if (props.text === null || props.text === undefined) { - return null; - } - - var calculatedProps = getCalculatedProps(props); - var text = calculatedProps.text, - style = calculatedProps.style, - capHeight = calculatedProps.capHeight, - backgroundPadding = calculatedProps.backgroundPadding, - lineHeight = calculatedProps.lineHeight; - var tspanValues = text.map(function (line, i) { - var currentStyle = getSingleValue(style, i); - var capHeightPx = TextSize.convertLengthToPixels("".concat(capHeight, "em"), currentStyle.fontSize); - var currentLineHeight = getSingleValue(lineHeight, i); - return { - style: currentStyle, - fontSize: currentStyle.fontSize || defaultStyles.fontSize, - capHeight: capHeightPx, - text: line, - textSize: TextSize.approximateTextSize(line, currentStyle), - lineHeight: currentLineHeight, - backgroundPadding: getSingleValue(backgroundPadding, i) - }; - }); - var label = renderLabel(calculatedProps, tspanValues); - - if (props.backgroundStyle) { - var backgroundElement = getBackgroundElement(calculatedProps, tspanValues); - var children = [backgroundElement, label]; - var backgroundWithLabel = React__default.cloneElement(props.groupComponent, {}, children); - return props.renderInPortal ? React__default.createElement(VictoryPortal, null, backgroundWithLabel) : backgroundWithLabel; - } - - return props.renderInPortal ? React__default.createElement(VictoryPortal, null, label) : label; -}; - -VictoryLabel.displayName = "VictoryLabel"; -VictoryLabel.role = "label"; -VictoryLabel.defaultStyles = defaultStyles; -VictoryLabel.propTypes = { - active: propTypes.bool, - angle: propTypes.oneOfType([propTypes.string, propTypes.number, propTypes.func]), - ariaLabel: propTypes.oneOfType([propTypes.string, propTypes.func]), - backgroundComponent: propTypes.element, - backgroundPadding: propTypes.oneOfType([propTypes.number, propTypes.object, propTypes.array]), - backgroundStyle: propTypes.oneOfType([propTypes.object, propTypes.array]), - capHeight: propTypes.oneOfType([propTypes.string, CustomPropTypes.nonNegative, propTypes.func]), - className: propTypes.string, - data: propTypes.array, - datum: propTypes.any, - desc: propTypes.oneOfType([propTypes.string, propTypes.func]), - direction: propTypes.oneOf(["rtl", "ltr", "inherit"]), - dx: propTypes.oneOfType([propTypes.number, propTypes.string, propTypes.func]), - dy: propTypes.oneOfType([propTypes.number, propTypes.string, propTypes.func]), - events: propTypes.object, - groupComponent: propTypes.element, - id: propTypes.oneOfType([propTypes.number, propTypes.string, propTypes.func]), - index: propTypes.oneOfType([propTypes.number, propTypes.string]), - inline: propTypes.bool, - labelPlacement: propTypes.oneOf(["parallel", "perpendicular", "vertical"]), - lineHeight: propTypes.oneOfType([propTypes.string, CustomPropTypes.nonNegative, propTypes.func, propTypes.array]), - origin: propTypes.shape({ - x: CustomPropTypes.nonNegative, - y: CustomPropTypes.nonNegative - }), - polar: propTypes.bool, - renderInPortal: propTypes.bool, - scale: propTypes.shape({ - x: CustomPropTypes.scale, - y: CustomPropTypes.scale - }), - style: propTypes.oneOfType([propTypes.object, propTypes.array]), - tabIndex: propTypes.oneOfType([propTypes.number, propTypes.func]), - text: propTypes.oneOfType([propTypes.string, propTypes.number, propTypes.func, propTypes.array]), - textAnchor: propTypes.oneOfType([propTypes.oneOf(["start", "middle", "end", "inherit"]), propTypes.func]), - textComponent: propTypes.element, - title: propTypes.string, - transform: propTypes.oneOfType([propTypes.string, propTypes.object, propTypes.func]), - tspanComponent: propTypes.element, - verticalAnchor: propTypes.oneOfType([propTypes.oneOf(["start", "middle", "end"]), propTypes.func]), - x: propTypes.oneOfType([propTypes.number, propTypes.string]), - y: propTypes.oneOfType([propTypes.number, propTypes.string]) -}; -VictoryLabel.defaultProps = { - backgroundComponent: React__default.createElement(Rect, null), - groupComponent: React__default.createElement("g", null), - direction: "inherit", - textComponent: React__default.createElement(Text, null), - tspanComponent: React__default.createElement(TSpan, null), - capHeight: 0.71, - // Magic number from d3. - lineHeight: 1 -}; - -function _toConsumableArray$3(arr) { return _arrayWithoutHoles$3(arr) || _iterableToArray$3(arr) || _nonIterableSpread$3(); } - -function _nonIterableSpread$3() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$3(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$3(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -/* eslint-disable func-style */ - -/* eslint-disable no-use-before-define */ -function isNonEmptyArray(collection) { - return Array.isArray(collection) && collection.length > 0; -} - -function containsStrings(collection) { - return Array.isArray(collection) && collection.some(function (value) { - return typeof value === "string"; - }); -} - -function containsDates(collection) { - return Array.isArray(collection) && collection.some(function (value) { - return value instanceof Date; - }); -} - -function containsNumbers(collection) { - return Array.isArray(collection) && collection.some(function (value) { - return typeof value === "number"; - }); -} - -function containsOnlyStrings(collection) { - return isNonEmptyArray(collection) && collection.every(function (value) { - return typeof value === "string"; - }); -} - -function isArrayOfArrays(collection) { - return isNonEmptyArray(collection) && collection.every(Array.isArray); -} - -function removeUndefined(arr) { - return arr.filter(function (el) { - return el !== undefined; - }); -} - -function getMaxValue(arr) { - for (var _len = arguments.length, values = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { - values[_key - 1] = arguments[_key]; - } - - var array = arr.concat(values); - return containsDates(array) ? new Date(Math.max.apply(Math, _toConsumableArray$3(array))) : Math.max.apply(Math, _toConsumableArray$3(array)); -} - -function getMinValue(arr) { - for (var _len2 = arguments.length, values = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) { - values[_key2 - 1] = arguments[_key2]; - } - - var array = arr.concat(values); - return containsDates(array) ? new Date(Math.min.apply(Math, _toConsumableArray$3(array))) : Math.min.apply(Math, _toConsumableArray$3(array)); -} - -var Collection = { - containsDates: containsDates, - containsNumbers: containsNumbers, - containsOnlyStrings: containsOnlyStrings, - containsStrings: containsStrings, - getMaxValue: getMaxValue, - getMinValue: getMinValue, - isArrayOfArrays: isArrayOfArrays, - removeUndefined: removeUndefined -}; - -function getDatumKey(datum, idx) { - return (datum.key || idx).toString(); -} - -function getKeyedData(data) { - return data.reduce(function (keyedData, datum, idx) { - var key = getDatumKey(datum, idx); - keyedData[key] = datum; - return keyedData; - }, {}); -} - -function getKeyedDataDifference(a, b) { - var hasDifference = false; - - var difference = keys_1(a).reduce(function (_difference, key) { - if (!(key in b)) { - hasDifference = true; - _difference[key] = true; - } - - return _difference; - }, {}); - - return hasDifference && difference; -} -/** - * Calculate which data-points exist in oldData and not nextData - - * these are the `exiting` data-points. Also calculate which - * data-points exist in nextData and not oldData - these are the - * `entering` data-points. - * - * @param {Array} oldData this.props.data Array - * @param {Array} nextData this.props.data Array - * - * @return {Object} Object with `entering` and `exiting` properties. - * entering[datum.key] will be true if the data is - * entering, and similarly for `exiting`. - */ - - -function getNodeTransitions(oldData, nextData) { - var oldDataKeyed = oldData && getKeyedData(oldData); - var nextDataKeyed = nextData && getKeyedData(nextData); - return { - entering: oldDataKeyed && getKeyedDataDifference(nextDataKeyed, oldDataKeyed), - exiting: nextDataKeyed && getKeyedDataDifference(oldDataKeyed, nextDataKeyed) - }; -} - -function getChildData(child) { - if (child.type && child.type.getData) { - return child.type.getData(child.props); - } - - return child.props && child.props.data || false; -} -/** - * If a parent component has animation enabled, calculate the transitions - * for any data of any child component that supports data transitions - * Data transitions are defined as any two datasets where data nodes exist - * in the first set and not the second, in the second and not the first, - * or both. - * - * @param {Children} oldChildren this.props.children from old props - * @param {Children} nextChildren this.props.children from next props - * - * @return {Object} Object with the following properties: - * - nodesWillExit - * - nodesWillEnter - * - childrenTransitions - * - nodesShouldEnter - */ - - -function getInitialTransitionState(oldChildren, nextChildren) { - var nodesWillExit = false; - var nodesWillEnter = false; - - var getTransition = function (oldChild, newChild) { - if (!newChild || oldChild.type !== newChild.type) { - return {}; - } - - var _ref = getNodeTransitions(getChildData(oldChild), getChildData(newChild)) || {}, - entering = _ref.entering, - exiting = _ref.exiting; - - nodesWillExit = nodesWillExit || !!exiting; - nodesWillEnter = nodesWillEnter || !!entering; - return { - entering: entering || false, - exiting: exiting || false - }; - }; - - var getTransitionsFromChildren = function (old, next) { - return old.map(function (child, idx) { - if (child && child.props && child.props.children && next[idx]) { - return getTransitionsFromChildren(React__default.Children.toArray(old[idx].props.children), React__default.Children.toArray(next[idx].props.children)); - } // get Transition entering and exiting nodes - - - return getTransition(child, next[idx]); - }); - }; - - var childrenTransitions = getTransitionsFromChildren(React__default.Children.toArray(oldChildren), React__default.Children.toArray(nextChildren)); - return { - nodesWillExit: nodesWillExit, - nodesWillEnter: nodesWillEnter, - childrenTransitions: childrenTransitions, - // TODO: This may need to be refactored for the following situation. - // The component receives new props, and the data provided - // is a perfect match for the previous data and domain except - // for new nodes. In this case, we wouldn't want a delay before - // the new nodes appear. - nodesShouldEnter: false - }; -} - -function getInitialChildProps(animate, data) { - var after = animate.onEnter && animate.onEnter.after ? animate.onEnter.after : identity_1; - return { - data: data.map(function (datum, idx) { - return assign_1({}, datum, after(datum, idx, data)); - }) - }; -} // eslint-disable-next-line max-params - - -function getChildBeforeLoad(animate, child, data, cb) { - animate = assign_1({}, animate, { - onEnd: cb - }); - - if (animate && animate.onLoad && !animate.onLoad.duration) { - return { - animate: animate, - data: data - }; - } - - var before = animate.onLoad && animate.onLoad.before ? animate.onLoad.before : identity_1; // If nodes need to exit, transform them with the provided onLoad.before function. - - data = data.map(function (datum, idx) { - return assign_1({}, datum, before(datum, idx, data)); - }); - return { - animate: animate, - data: data, - clipWidth: 0 - }; -} // eslint-disable-next-line max-params - - -function getChildOnLoad(animate, data, cb) { - animate = assign_1({}, animate, { - onEnd: cb - }); - - if (animate && animate.onLoad && !animate.onLoad.duration) { - return { - animate: animate, - data: data - }; - } - - var after = animate.onLoad && animate.onLoad.after ? animate.onLoad.after : identity_1; // If nodes need to exit, transform them with the provided onLoad.after function. - - data = data.map(function (datum, idx) { - return assign_1({}, datum, after(datum, idx, data)); - }); - return { - animate: animate, - data: data - }; -} // eslint-disable-next-line max-params, max-len - - -function getChildPropsOnExit(animate, child, data, exitingNodes, cb) { - // Whether or not _this_ child has exiting nodes, we want the exit- - // transition for all children to have the same duration, delay, etc. - var onExit = animate && animate.onExit; - animate = assign_1({}, animate, onExit); - - if (exitingNodes) { - // After the exit transition occurs, trigger the animations for - // nodes that are neither exiting or entering. - animate.onEnd = cb; - var before = animate.onExit && animate.onExit.before ? animate.onExit.before : identity_1; // If nodes need to exit, transform them with the provided onExit.before function. - - data = data.map(function (datum, idx) { - var key = (datum.key || idx).toString(); - return exitingNodes[key] ? assign_1({}, datum, before(datum, idx, data)) : datum; - }); - } - - return { - animate: animate, - data: data - }; -} // eslint-disable-next-line max-params,max-len - - -function getChildPropsBeforeEnter(animate, child, data, enteringNodes, cb) { - if (enteringNodes) { - // Perform a normal animation here, except - when it finishes - trigger - // the transition for entering nodes. - animate = assign_1({}, animate, { - onEnd: cb - }); - var before = animate.onEnter && animate.onEnter.before ? animate.onEnter.before : identity_1; // We want the entering nodes to be included in the transition target - // domain. However, we may not want these nodes to be displayed initially, - // so perform the `onEnter.before` transformation on each node. - - data = data.map(function (datum, idx) { - var key = (datum.key || idx).toString(); - return enteringNodes[key] ? assign_1({}, datum, before(datum, idx, data)) : datum; - }); - } - - return { - animate: animate, - data: data - }; -} // eslint-disable-next-line max-params, max-len - - -function getChildPropsOnEnter(animate, data, enteringNodes, cb) { - // Whether or not _this_ child has entering nodes, we want the entering- - // transition for all children to have the same duration, delay, etc. - var onEnter = animate && animate.onEnter; - animate = assign_1({}, animate, onEnter); - - if (enteringNodes) { - // Old nodes have been transitioned to their new values, and the - // domain should encompass the nodes that will now enter. So perform - // the `onEnter.after` transformation on each node. - animate.onEnd = cb; - var after = animate.onEnter && animate.onEnter.after ? animate.onEnter.after : identity_1; - data = data.map(function (datum, idx) { - var key = getDatumKey(datum, idx); - return enteringNodes[key] ? assign_1({}, datum, after(datum, idx, data)) : datum; - }); - } - - return { - animate: animate, - data: data - }; -} -/** - * getTransitionPropsFactory - putting the Java in JavaScript. This will return a - * function that returns prop transformations for a child, given that child's props - * and its index in the parent's children array. - * - * In particular, this will include an `animate` object that is set appropriately - * so that each child will be synchoronized for each stage of a transition - * animation. It will also include a transformed `data` object, where each datum - * is transformed by `animate.onExit` and `animate.onEnter` `before` and `after` - * functions. - * - * @param {Object} props `this.props` for the parent component. - * @param {Object} state `this.state` for the parent component. - * @param {Function} setState Function that, when called, will `this.setState` on - * the parent component with the provided object. - * - * @return {Function} Child-prop transformation function. - */ - - -function getTransitionPropsFactory(props, state, setState) { - var nodesWillExit = state && state.nodesWillExit; - var nodesWillEnter = state && state.nodesWillEnter; - var nodesShouldEnter = state && state.nodesShouldEnter; - var nodesShouldLoad = state && state.nodesShouldLoad; - var nodesDoneLoad = state && state.nodesDoneLoad; - var childrenTransitions = state && state.childrenTransitions || []; - var transitionDurations = { - enter: props.animate && props.animate.onEnter && props.animate.onEnter.duration, - exit: props.animate && props.animate.onExit && props.animate.onExit.duration, - load: props.animate && props.animate.onLoad && props.animate.onLoad.duration, - move: props.animate && props.animate.duration - }; - - var onLoad = function (child, data, animate) { - if (nodesShouldLoad) { - return getChildOnLoad(animate, data, function () { - setState({ - nodesShouldLoad: false, - nodesDoneLoad: true - }); - }); - } - - return getChildBeforeLoad(animate, child, data, function () { - setState({ - nodesDoneLoad: true - }); - }); - }; // eslint-disable-next-line max-params - - - var onExit = function (nodes, child, data, animate) { - return getChildPropsOnExit(animate, child, data, nodes, function () { - setState({ - nodesWillExit: false - }); - }); - }; // eslint-disable-next-line max-params - - - var onEnter = function (nodes, child, data, animate) { - if (nodesShouldEnter) { - return getChildPropsOnEnter(animate, data, nodes, function () { - setState({ - nodesWillEnter: false - }); - }); - } - - return getChildPropsBeforeEnter(animate, child, data, nodes, function () { - setState({ - nodesShouldEnter: true - }); - }); - }; - - var getChildTransitionDuration = function (child, type) { - var animate = child.props.animate; - - if (!child.type) { - return {}; - } - - var defaultTransitions = child.props && child.props.polar ? child.type.defaultPolarTransitions || child.type.defaultTransitions : child.type.defaultTransitions; - - if (defaultTransitions) { - var animationDuration = animate[type] && animate[type].duration; - return animationDuration !== undefined ? animationDuration : defaultTransitions[type] && defaultTransitions[type].duration; - } else { - return {}; - } - }; // eslint-disable-next-line max-statements, complexity, max-len - - - return function getTransitionProps(child, index) { - var data = getChildData(child) || []; - - var animate = defaults_1({}, props.animate, child.props.animate); - - var defaultTransitions = child.props.polar ? child.type.defaultPolarTransitions || child.type.defaultTransitions : child.type.defaultTransitions; - animate.onExit = defaults_1({}, animate.onExit, defaultTransitions && defaultTransitions.onExit); - animate.onEnter = defaults_1({}, animate.onEnter, defaultTransitions && defaultTransitions.onEnter); - animate.onLoad = defaults_1({}, animate.onLoad, defaultTransitions && defaultTransitions.onLoad); - var childTransitions = childrenTransitions[index] || childrenTransitions[0]; - - if (!nodesDoneLoad) { - // should do onLoad animation - var load = transitionDurations.load !== undefined ? transitionDurations.load : getChildTransitionDuration(child, "onLoad"); - var animation = { - duration: load - }; - return onLoad(child, data, assign_1({}, animate, animation)); - } else if (nodesWillExit) { - var exitingNodes = childTransitions && childTransitions.exiting; - var exit = transitionDurations.exit !== undefined ? transitionDurations.exit : getChildTransitionDuration(child, "onExit"); // if nodesWillExit, but this child has no exiting nodes, set a delay instead of a duration - - var _animation = exitingNodes ? { - duration: exit - } : { - delay: exit - }; - - return onExit(exitingNodes, child, data, assign_1({}, animate, _animation)); - } else if (nodesWillEnter) { - var enteringNodes = childTransitions && childTransitions.entering; - var enter = transitionDurations.enter !== undefined ? transitionDurations.enter : getChildTransitionDuration(child, "onEnter"); - var move = transitionDurations.move !== undefined ? transitionDurations.move : child.props.animate && child.props.animate.duration; - var _animation2 = { - duration: nodesShouldEnter && enteringNodes ? enter : move - }; - return onEnter(enteringNodes, child, data, assign_1({}, animate, _animation2)); - } else if (!state && animate && animate.onExit) { - // This is the initial render, and nodes may enter when props change. Because - // animation interpolation is determined by old- and next- props, data may need - // to be augmented with certain properties. - // - // For example, it may be desired that exiting nodes go from `opacity: 1` to - // `opacity: 0`. Without setting this on a per-datum basis, the interpolation - // might go from `opacity: undefined` to `opacity: 0`, which would result in - // interpolated `opacity: NaN` values. - // - return getInitialChildProps(animate, data); - } - - return { - animate: animate, - data: data - }; - }; -} - -var Transitions = { - getInitialTransitionState: getInitialTransitionState, - getTransitionPropsFactory: getTransitionPropsFactory -}; - -function _extends$2() { _extends$2 = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$2.apply(this, arguments); } - -function _classCallCheck$5(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$5(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$5(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$5(Constructor.prototype, protoProps); if (staticProps) _defineProperties$5(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$4(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$4(self); } - -function _inherits$4(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } - -function _assertThisInitialized$4(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -var VictoryTransition = -/*#__PURE__*/ -function (_React$Component) { - _inherits$4(VictoryTransition, _React$Component); - - function VictoryTransition(props, context) { - var _this; - - _classCallCheck$5(this, VictoryTransition); - - _this = _possibleConstructorReturn$4(this, (VictoryTransition.__proto__ || Object.getPrototypeOf(VictoryTransition)).call(this, props, context)); - _this.state = { - nodesShouldLoad: false, - nodesDoneLoad: false - }; - var child = _this.props.children; - var polar = child.props.polar; - _this.continuous = !polar && child.type && child.type.continuous === true; - _this.getTransitionState = _this.getTransitionState.bind(_assertThisInitialized$4(_this)); - _this.timer = _this.context.transitionTimer; - return _this; - } - - _createClass$5(VictoryTransition, [{ - key: "componentDidMount", - value: function componentDidMount() { - this.setState({ - nodesShouldLoad: true - }); //eslint-disable-line react/no-did-mount-set-state - } - }, { - key: "shouldComponentUpdate", - value: function shouldComponentUpdate(nextProps) { - var _this2 = this; - - if (!reactFastCompare(this.props, nextProps)) { - this.timer.bypassAnimation(); - this.setState(this.getTransitionState(this.props, nextProps), function () { - return _this2.timer.resumeAnimation(); - }); - } - - return true; - } - }, { - key: "componentWillUnmount", - value: function componentWillUnmount() { - this.timer.stop(); - } - }, { - key: "getTransitionState", - value: function getTransitionState(props, nextProps) { - var animate = props.animate; - - if (!animate) { - return {}; - } else if (animate.parentState) { - var state = animate.parentState; - var oldProps = state.nodesWillExit ? props : null; - return { - oldProps: oldProps, - nextProps: nextProps - }; - } else { - var oldChildren = React__default.Children.toArray(props.children); - var nextChildren = React__default.Children.toArray(nextProps.children); - - var _Transitions$getIniti = Transitions.getInitialTransitionState(oldChildren, nextChildren), - nodesWillExit = _Transitions$getIniti.nodesWillExit, - nodesWillEnter = _Transitions$getIniti.nodesWillEnter, - childrenTransitions = _Transitions$getIniti.childrenTransitions, - nodesShouldEnter = _Transitions$getIniti.nodesShouldEnter; - - return { - nodesWillExit: nodesWillExit, - nodesWillEnter: nodesWillEnter, - childrenTransitions: childrenTransitions, - nodesShouldEnter: nodesShouldEnter, - oldProps: nodesWillExit ? props : null, - nextProps: nextProps - }; - } - } - }, { - key: "getDomainFromChildren", - value: function getDomainFromChildren(props, axis) { - var getChildDomains = function (children) { - return children.reduce(function (memo, child) { - if (child.type && isFunction_1(child.type.getDomain)) { - var childDomain = child.props && child.type.getDomain(child.props, axis); - return childDomain ? memo.concat(childDomain) : memo; - } else if (child.props && child.props.children) { - return memo.concat(getChildDomains(React__default.Children.toArray(child.props.children))); - } - - return memo; - }, []); - }; - - var child = React__default.Children.toArray(props.children)[0]; - var childProps = child.props || {}; - var domain = Array.isArray(childProps.domain) ? childProps.domain : childProps.domain && childProps.domain[axis]; - - if (!childProps.children && domain) { - return domain; - } else { - var childDomains = getChildDomains([child]); - return childDomains.length === 0 ? [0, 1] : [Collection.getMinValue(childDomains), Collection.getMaxValue(childDomains)]; - } - } - }, { - key: "pickProps", - value: function pickProps() { - if (!this.state) { - return this.props; - } - - return this.state.nodesWillExit ? this.state.oldProps || this.props : this.props; - } - }, { - key: "pickDomainProps", - value: function pickDomainProps(props) { - var parentState = isObject_1(props.animate) && props.animate.parentState; - - if (parentState && parentState.nodesWillExit) { - return this.continous || parentState.continuous ? parentState.nextProps || this.state.nextProps || props : props; - } - - return this.continuous && this.state.nodesWillExit ? this.state.nextProps || props : props; - } - }, { - key: "getClipWidth", - value: function getClipWidth(props, child) { - var getDefaultClipWidth = function () { - var range = Helpers.getRange(child.props, "x"); - return range ? Math.abs(range[1] - range[0]) : props.width; - }; - - var clipWidth = this.transitionProps ? this.transitionProps.clipWidth : undefined; - return clipWidth !== undefined ? clipWidth : getDefaultClipWidth(); - } - }, { - key: "render", - value: function render() { - var _this3 = this; - - var props = this.pickProps(); - var getTransitionProps = isObject_1(this.props.animate) && this.props.animate.getTransitions ? this.props.animate.getTransitions : Transitions.getTransitionPropsFactory(props, this.state, function (newState) { - return _this3.setState(newState); - }); - var child = React__default.Children.toArray(props.children)[0]; - var transitionProps = getTransitionProps(child); - this.transitionProps = transitionProps; - var domain = { - x: this.getDomainFromChildren(this.pickDomainProps(props), "x"), - y: this.getDomainFromChildren(props, "y") - }; - var clipWidth = this.getClipWidth(props, child); - - var combinedProps = defaults_1({ - domain: domain, - clipWidth: clipWidth - }, transitionProps, child.props); - - var animationWhitelist = props.animationWhitelist || []; - var whitelist = animationWhitelist.concat(["clipWidth"]); - var propsToAnimate = whitelist.length ? pick_1(combinedProps, whitelist) : combinedProps; - return React__default.createElement(VictoryAnimation, _extends$2({}, combinedProps.animate, { - data: propsToAnimate - }), function (newProps) { - if (child.props.groupComponent) { - var groupComponent = _this3.continuous ? React__default.cloneElement(child.props.groupComponent, { - clipWidth: newProps.clipWidth || 0 - }) : child.props.groupComponent; - return React__default.cloneElement(child, defaults_1({ - animate: null, - animating: true, - groupComponent: groupComponent - }, newProps, combinedProps)); - } - - return React__default.cloneElement(child, defaults_1({ - animate: null, - animating: true - }, newProps, combinedProps)); - }); - } - }]); - - return VictoryTransition; -}(React__default.Component); - -Object.defineProperty(VictoryTransition, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryTransition" -}); -Object.defineProperty(VictoryTransition, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: { - animate: propTypes.oneOfType([propTypes.bool, propTypes.object]), - animationWhitelist: propTypes.array, - children: propTypes.node - } -}); -Object.defineProperty(VictoryTransition, "contextType", { - configurable: true, - enumerable: true, - writable: true, - value: TimerContext -}); - -var ClipPath = function (props) { - return React__default.createElement("defs", null, React__default.createElement("clipPath", { - id: props.clipId - }, props.children)); -}; - -ClipPath.propTypes = { - children: propTypes.oneOfType([propTypes.arrayOf(propTypes.node), propTypes.node]), - clipId: propTypes.oneOfType([propTypes.number, propTypes.string]) -}; - -function _extends$3() { _extends$3 = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$3.apply(this, arguments); } - -function _objectWithoutProperties$2(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } - -var Circle = function (props) { - // eslint-disable-next-line react/prop-types - var desc = props.desc, - rest = _objectWithoutProperties$2(props, ["desc"]); - - return desc ? React__default.createElement("circle", _extends$3({ - vectorEffect: "non-scaling-stroke" - }, rest), React__default.createElement("desc", null, desc)) : React__default.createElement("circle", _extends$3({ - vectorEffect: "non-scaling-stroke" - }, rest)); -}; - -function _toConsumableArray$4(arr) { return _arrayWithoutHoles$4(arr) || _iterableToArray$4(arr) || _nonIterableSpread$4(); } - -function _nonIterableSpread$4() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$4(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$4(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function _objectSpread$2(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$4(target, key, source[key]); }); } return target; } - -function _defineProperty$4(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _classCallCheck$6(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$6(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$6(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$6(Constructor.prototype, protoProps); if (staticProps) _defineProperties$6(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$5(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$5(self); } - -function _assertThisInitialized$5(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _inherits$5(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } - -var VictoryClipContainer = -/*#__PURE__*/ -function (_React$Component) { - _inherits$5(VictoryClipContainer, _React$Component); - - function VictoryClipContainer(props) { - var _this; - - _classCallCheck$6(this, VictoryClipContainer); - - _this = _possibleConstructorReturn$5(this, (VictoryClipContainer.__proto__ || Object.getPrototypeOf(VictoryClipContainer)).call(this, props)); - _this.clipId = !isObject_1(props) || props.clipId === undefined ? uniqueId_1("victory-clip-") : props.clipId; - return _this; - } - - _createClass$6(VictoryClipContainer, [{ - key: "calculateAttributes", - value: function calculateAttributes(props) { - var polar = props.polar, - origin = props.origin, - _props$clipWidth = props.clipWidth, - clipWidth = _props$clipWidth === void 0 ? 0 : _props$clipWidth, - _props$clipHeight = props.clipHeight, - clipHeight = _props$clipHeight === void 0 ? 0 : _props$clipHeight, - _props$translateX = props.translateX, - translateX = _props$translateX === void 0 ? 0 : _props$translateX, - _props$translateY = props.translateY, - translateY = _props$translateY === void 0 ? 0 : _props$translateY; - var clipPadding = Helpers.getPadding({ - padding: props.clipPadding - }); - var radius = props.radius || Helpers.getRadius(props); - return { - x: (polar ? origin.x : translateX) - clipPadding.left, - y: (polar ? origin.y : translateY) - clipPadding.top, - width: Math.max((polar ? radius : clipWidth) + clipPadding.left + clipPadding.right, 0), - height: Math.max((polar ? radius : clipHeight) + clipPadding.top + clipPadding.bottom, 0) - }; - } - }, { - key: "renderClippedGroup", - value: function renderClippedGroup(props, clipId) { - var style = props.style, - events = props.events, - transform = props.transform, - children = props.children, - className = props.className, - groupComponent = props.groupComponent, - tabIndex = props.tabIndex; - var clipComponent = this.renderClipComponent(props, clipId); - - var groupProps = assign_1({ - className: className, - style: style, - transform: transform, - key: "clipped-group-".concat(clipId), - clipPath: "url(#".concat(clipId, ")") - }, events); - - return React__default.cloneElement(groupComponent, _objectSpread$2({}, groupProps, { - "aria-label": props["aria-label"], - tabIndex: tabIndex - }), [clipComponent].concat(_toConsumableArray$4(React__default.Children.toArray(children)))); - } - }, { - key: "renderGroup", - value: function renderGroup(props) { - var style = props.style, - events = props.events, - transform = props.transform, - children = props.children, - className = props.className, - groupComponent = props.groupComponent, - tabIndex = props.tabIndex; - return React__default.cloneElement(groupComponent, assign_1({ - className: className, - style: style, - transform: transform, - "aria-label": props["aria-label"], - tabIndex: tabIndex - }, events), children); - } - }, { - key: "renderClipComponent", - value: function renderClipComponent(props, clipId) { - var polar = props.polar, - origin = props.origin, - _props$clipWidth2 = props.clipWidth, - clipWidth = _props$clipWidth2 === void 0 ? 0 : _props$clipWidth2, - _props$clipHeight2 = props.clipHeight, - clipHeight = _props$clipHeight2 === void 0 ? 0 : _props$clipHeight2, - _props$translateX2 = props.translateX, - translateX = _props$translateX2 === void 0 ? 0 : _props$translateX2, - _props$translateY2 = props.translateY, - translateY = _props$translateY2 === void 0 ? 0 : _props$translateY2, - circleComponent = props.circleComponent, - rectComponent = props.rectComponent, - clipPathComponent = props.clipPathComponent; - - var _Helpers$getPadding = Helpers.getPadding({ - padding: props.clipPadding - }), - top = _Helpers$getPadding.top, - bottom = _Helpers$getPadding.bottom, - left = _Helpers$getPadding.left, - right = _Helpers$getPadding.right; - - var child; - - if (polar) { - var radius = props.radius || Helpers.getRadius(props); - var circleProps = { - r: Math.max(radius + left + right, radius + top + bottom, 0), - cx: origin.x - left, - cy: origin.y - top - }; - child = React__default.cloneElement(circleComponent, circleProps); - } else { - var rectProps = { - x: translateX - left, - y: translateY - top, - width: Math.max(clipWidth + left + right, 0), - height: Math.max(clipHeight + top + bottom, 0) - }; - child = React__default.cloneElement(rectComponent, rectProps); - } - - return React__default.cloneElement(clipPathComponent, assign_1({ - key: "clip-path-".concat(clipId) - }, props, { - clipId: clipId - }), child); - } - }, { - key: "getClipValue", - value: function getClipValue(props, axis) { - var clipValues = { - x: props.clipWidth, - y: props.clipHeight - }; - - if (clipValues[axis] !== undefined) { - return clipValues[axis]; - } - - var range = Helpers.getRange(props, axis); - return range ? Math.abs(range[0] - range[1]) || undefined : undefined; - } - }, { - key: "getTranslateValue", - value: function getTranslateValue(props, axis) { - var translateValues = { - x: props.translateX, - y: props.translateY - }; - - if (translateValues[axis] !== undefined) { - return translateValues[axis]; - } - - var range = Helpers.getRange(props, axis); - return range ? Math.min.apply(Math, _toConsumableArray$4(range)) : undefined; - } - }, { - key: "render", - value: function render() { - var clipHeight = this.getClipValue(this.props, "y"); - var clipWidth = this.getClipValue(this.props, "x"); - - if (clipWidth === undefined || clipHeight === undefined) { - return this.renderGroup(this.props); - } - - var translateX = this.getTranslateValue(this.props, "x"); - var translateY = this.getTranslateValue(this.props, "y"); - - var clipProps = defaults_1({}, this.props, { - clipHeight: clipHeight, - clipWidth: clipWidth, - translateX: translateX, - translateY: translateY - }); - - return this.renderClippedGroup(clipProps, this.clipId); - } - }]); - - return VictoryClipContainer; -}(React__default.Component); - -Object.defineProperty(VictoryClipContainer, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryClipContainer" -}); -Object.defineProperty(VictoryClipContainer, "role", { - configurable: true, - enumerable: true, - writable: true, - value: "container" -}); -Object.defineProperty(VictoryClipContainer, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: { - "aria-label": propTypes.string, - children: propTypes.oneOfType([propTypes.arrayOf(propTypes.node), propTypes.node]), - circleComponent: propTypes.element, - className: propTypes.string, - clipHeight: CustomPropTypes.nonNegative, - clipId: propTypes.oneOfType([propTypes.number, propTypes.string]), - clipPadding: propTypes.shape({ - top: propTypes.number, - bottom: propTypes.number, - left: propTypes.number, - right: propTypes.number - }), - clipPathComponent: propTypes.element, - clipWidth: CustomPropTypes.nonNegative, - events: propTypes.object, - groupComponent: propTypes.element, - origin: propTypes.shape({ - x: CustomPropTypes.nonNegative, - y: CustomPropTypes.nonNegative - }), - polar: propTypes.bool, - radius: CustomPropTypes.nonNegative, - style: propTypes.object, - tabIndex: propTypes.number, - transform: propTypes.string, - translateX: propTypes.number, - translateY: propTypes.number - } -}); -Object.defineProperty(VictoryClipContainer, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: { - circleComponent: React__default.createElement(Circle, null), - rectComponent: React__default.createElement(Rect, null), - clipPathComponent: React__default.createElement(ClipPath, null), - groupComponent: React__default.createElement("g", null) - } -}); - -// * -// * Colors -// * -var yellow200 = "#FFF59D"; -var deepOrange600 = "#F4511E"; -var lime300 = "#DCE775"; -var lightGreen500 = "#8BC34A"; -var teal700 = "#00796B"; -var cyan900 = "#006064"; -var colors = [deepOrange600, yellow200, lime300, lightGreen500, teal700, cyan900]; -var blueGrey50 = "#ECEFF1"; -var blueGrey300 = "#90A4AE"; -var blueGrey700 = "#455A64"; -var grey900 = "#212121"; // * -// * Typography -// * - -var sansSerif = "'Helvetica Neue', 'Helvetica', sans-serif"; -var letterSpacing = "normal"; -var fontSize = 12; // * -// * Layout -// * - -var padding = 8; -var baseProps = { - width: 350, - height: 350, - padding: 50 -}; // * -// * Labels -// * - -var baseLabelStyles = { - fontFamily: sansSerif, - fontSize: fontSize, - letterSpacing: letterSpacing, - padding: padding, - fill: blueGrey700, - stroke: "transparent", - strokeWidth: 0 -}; - -var centeredLabelStyles = assign_1({ - textAnchor: "middle" -}, baseLabelStyles); // * -// * Strokes -// * - - -var strokeDasharray = "10, 5"; -var strokeLinecap = "round"; -var strokeLinejoin = "round"; -var materialTheme = { - area: assign_1({ - style: { - data: { - fill: grey900 - }, - labels: baseLabelStyles - } - }, baseProps), - axis: assign_1({ - style: { - axis: { - fill: "transparent", - stroke: blueGrey300, - strokeWidth: 2, - strokeLinecap: strokeLinecap, - strokeLinejoin: strokeLinejoin - }, - axisLabel: assign_1({}, centeredLabelStyles, { - padding: padding, - stroke: "transparent" - }), - grid: { - fill: "none", - stroke: blueGrey50, - strokeDasharray: strokeDasharray, - strokeLinecap: strokeLinecap, - strokeLinejoin: strokeLinejoin, - pointerEvents: "painted" - }, - ticks: { - fill: "transparent", - size: 5, - stroke: blueGrey300, - strokeWidth: 1, - strokeLinecap: strokeLinecap, - strokeLinejoin: strokeLinejoin - }, - tickLabels: assign_1({}, baseLabelStyles, { - fill: blueGrey700 - }) - } - }, baseProps), - polarDependentAxis: assign_1({ - style: { - ticks: { - fill: "transparent", - size: 1, - stroke: "transparent" - } - } - }), - bar: assign_1({ - style: { - data: { - fill: blueGrey700, - padding: padding, - strokeWidth: 0 - }, - labels: baseLabelStyles - } - }, baseProps), - boxplot: assign_1({ - style: { - max: { - padding: padding, - stroke: blueGrey700, - strokeWidth: 1 - }, - maxLabels: assign_1({}, baseLabelStyles, { - padding: 3 - }), - median: { - padding: padding, - stroke: blueGrey700, - strokeWidth: 1 - }, - medianLabels: assign_1({}, baseLabelStyles, { - padding: 3 - }), - min: { - padding: padding, - stroke: blueGrey700, - strokeWidth: 1 - }, - minLabels: assign_1({}, baseLabelStyles, { - padding: 3 - }), - q1: { - padding: padding, - fill: blueGrey700 - }, - q1Labels: assign_1({}, baseLabelStyles, { - padding: 3 - }), - q3: { - padding: padding, - fill: blueGrey700 - }, - q3Labels: assign_1({}, baseLabelStyles, { - padding: 3 - }) - }, - boxWidth: 20 - }, baseProps), - candlestick: assign_1({ - style: { - data: { - stroke: blueGrey700 - }, - labels: assign_1({}, baseLabelStyles, { - padding: 5 - }) - }, - candleColors: { - positive: "#ffffff", - negative: blueGrey700 - } - }, baseProps), - chart: baseProps, - errorbar: assign_1({ - borderWidth: 8, - style: { - data: { - fill: "transparent", - opacity: 1, - stroke: blueGrey700, - strokeWidth: 2 - }, - labels: baseLabelStyles - } - }, baseProps), - group: assign_1({ - colorScale: colors - }, baseProps), - histogram: assign_1({ - style: { - data: { - fill: blueGrey700, - stroke: grey900, - strokeWidth: 2 - }, - labels: baseLabelStyles - } - }, baseProps), - legend: { - colorScale: colors, - gutter: 10, - orientation: "vertical", - titleOrientation: "top", - style: { - data: { - type: "circle" - }, - labels: baseLabelStyles, - title: assign_1({}, baseLabelStyles, { - padding: 5 - }) - } - }, - line: assign_1({ - style: { - data: { - fill: "transparent", - opacity: 1, - stroke: blueGrey700, - strokeWidth: 2 - }, - labels: baseLabelStyles - } - }, baseProps), - pie: assign_1({ - colorScale: colors, - style: { - data: { - padding: padding, - stroke: blueGrey50, - strokeWidth: 1 - }, - labels: assign_1({}, baseLabelStyles, { - padding: 20 - }) - } - }, baseProps), - scatter: assign_1({ - style: { - data: { - fill: blueGrey700, - opacity: 1, - stroke: "transparent", - strokeWidth: 0 - }, - labels: baseLabelStyles - } - }, baseProps), - stack: assign_1({ - colorScale: colors - }, baseProps), - tooltip: { - style: assign_1({}, baseLabelStyles, { - padding: 0, - pointerEvents: "none" - }), - flyoutStyle: { - stroke: grey900, - strokeWidth: 1, - fill: "#f0f0f0", - pointerEvents: "none" - }, - flyoutPadding: 5, - cornerRadius: 5, - pointerLength: 10 - }, - voronoi: assign_1({ - style: { - data: { - fill: "transparent", - stroke: "transparent", - strokeWidth: 0 - }, - labels: assign_1({}, baseLabelStyles, { - padding: 5, - pointerEvents: "none" - }), - flyout: { - stroke: grey900, - strokeWidth: 1, - fill: "#f0f0f0", - pointerEvents: "none" - } - } - }, baseProps) -}; - -// * -// * Colors -// * -var colors$1 = ["#252525", "#525252", "#737373", "#969696", "#bdbdbd", "#d9d9d9", "#f0f0f0"]; -var charcoal = "#252525"; -var grey = "#969696"; // * -// * Typography -// * - -var sansSerif$1 = "'Gill Sans', 'Seravek', 'Trebuchet MS', sans-serif"; -var letterSpacing$1 = "normal"; -var fontSize$1 = 14; // * -// * Layout -// * - -var baseProps$1 = { - width: 450, - height: 300, - padding: 50, - colorScale: colors$1 -}; // * -// * Labels -// * - -var baseLabelStyles$1 = { - fontFamily: sansSerif$1, - fontSize: fontSize$1, - letterSpacing: letterSpacing$1, - padding: 10, - fill: charcoal, - stroke: "transparent" -}; - -var centeredLabelStyles$1 = assign_1({ - textAnchor: "middle" -}, baseLabelStyles$1); // * -// * Strokes -// * - - -var strokeLinecap$1 = "round"; -var strokeLinejoin$1 = "round"; -var grayscaleTheme = { - area: assign_1({ - style: { - data: { - fill: charcoal - }, - labels: baseLabelStyles$1 - } - }, baseProps$1), - axis: assign_1({ - style: { - axis: { - fill: "transparent", - stroke: charcoal, - strokeWidth: 1, - strokeLinecap: strokeLinecap$1, - strokeLinejoin: strokeLinejoin$1 - }, - axisLabel: assign_1({}, centeredLabelStyles$1, { - padding: 25 - }), - grid: { - fill: "none", - stroke: "none", - pointerEvents: "painted" - }, - ticks: { - fill: "transparent", - size: 1, - stroke: "transparent" - }, - tickLabels: baseLabelStyles$1 - } - }, baseProps$1), - bar: assign_1({ - style: { - data: { - fill: charcoal, - padding: 8, - strokeWidth: 0 - }, - labels: baseLabelStyles$1 - } - }, baseProps$1), - boxplot: assign_1({ - style: { - max: { - padding: 8, - stroke: charcoal, - strokeWidth: 1 - }, - maxLabels: assign_1({}, baseLabelStyles$1, { - padding: 3 - }), - median: { - padding: 8, - stroke: charcoal, - strokeWidth: 1 - }, - medianLabels: assign_1({}, baseLabelStyles$1, { - padding: 3 - }), - min: { - padding: 8, - stroke: charcoal, - strokeWidth: 1 - }, - minLabels: assign_1({}, baseLabelStyles$1, { - padding: 3 - }), - q1: { - padding: 8, - fill: grey - }, - q1Labels: assign_1({}, baseLabelStyles$1, { - padding: 3 - }), - q3: { - padding: 8, - fill: grey - }, - q3Labels: assign_1({}, baseLabelStyles$1, { - padding: 3 - }) - }, - boxWidth: 20 - }, baseProps$1), - candlestick: assign_1({ - style: { - data: { - stroke: charcoal, - strokeWidth: 1 - }, - labels: assign_1({}, baseLabelStyles$1, { - padding: 5 - }) - }, - candleColors: { - positive: "#ffffff", - negative: charcoal - } - }, baseProps$1), - chart: baseProps$1, - errorbar: assign_1({ - borderWidth: 8, - style: { - data: { - fill: "transparent", - stroke: charcoal, - strokeWidth: 2 - }, - labels: baseLabelStyles$1 - } - }, baseProps$1), - group: assign_1({ - colorScale: colors$1 - }, baseProps$1), - histogram: assign_1({ - style: { - data: { - fill: grey, - stroke: charcoal, - strokeWidth: 2 - }, - labels: baseLabelStyles$1 - } - }, baseProps$1), - legend: { - colorScale: colors$1, - gutter: 10, - orientation: "vertical", - titleOrientation: "top", - style: { - data: { - type: "circle" - }, - labels: baseLabelStyles$1, - title: assign_1({}, baseLabelStyles$1, { - padding: 5 - }) - } - }, - line: assign_1({ - style: { - data: { - fill: "transparent", - stroke: charcoal, - strokeWidth: 2 - }, - labels: baseLabelStyles$1 - } - }, baseProps$1), - pie: { - style: { - data: { - padding: 10, - stroke: "transparent", - strokeWidth: 1 - }, - labels: assign_1({}, baseLabelStyles$1, { - padding: 20 - }) - }, - colorScale: colors$1, - width: 400, - height: 400, - padding: 50 - }, - scatter: assign_1({ - style: { - data: { - fill: charcoal, - stroke: "transparent", - strokeWidth: 0 - }, - labels: baseLabelStyles$1 - } - }, baseProps$1), - stack: assign_1({ - colorScale: colors$1 - }, baseProps$1), - tooltip: { - style: assign_1({}, baseLabelStyles$1, { - padding: 0, - pointerEvents: "none" - }), - flyoutStyle: { - stroke: charcoal, - strokeWidth: 1, - fill: "#f0f0f0", - pointerEvents: "none" - }, - flyoutPadding: 5, - cornerRadius: 5, - pointerLength: 10 - }, - voronoi: assign_1({ - style: { - data: { - fill: "transparent", - stroke: "transparent", - strokeWidth: 0 - }, - labels: assign_1({}, baseLabelStyles$1, { - padding: 5, - pointerEvents: "none" - }), - flyout: { - stroke: charcoal, - strokeWidth: 1, - fill: "#f0f0f0", - pointerEvents: "none" - } - } - }, baseProps$1) -}; - -var VictoryTheme = { - material: materialTheme, - grayscale: grayscaleTheme -}; - -var dataProps = { - categories: propTypes.oneOfType([propTypes.arrayOf(propTypes.string), propTypes.shape({ - x: propTypes.arrayOf(propTypes.string), - y: propTypes.arrayOf(propTypes.string) - })]), - data: propTypes.oneOfType([propTypes.array, propTypes.object]), - dataComponent: propTypes.element, - labelComponent: propTypes.element, - labels: propTypes.oneOfType([propTypes.func, propTypes.array]), - samples: CustomPropTypes.nonNegative, - sortKey: propTypes.oneOfType([propTypes.func, CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.nonNegative]), propTypes.string, propTypes.arrayOf(propTypes.string)]), - sortOrder: propTypes.oneOf(["ascending", "descending"]), - style: propTypes.shape({ - parent: propTypes.object, - data: propTypes.object, - labels: propTypes.object - }), - x: propTypes.oneOfType([propTypes.func, CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.nonNegative]), propTypes.string, propTypes.arrayOf(propTypes.string)]), - y: propTypes.oneOfType([propTypes.func, CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.nonNegative]), propTypes.string, propTypes.arrayOf(propTypes.string)]), - y0: propTypes.oneOfType([propTypes.func, CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.nonNegative]), propTypes.string, propTypes.arrayOf(propTypes.string)]) -}; -var baseProps$2 = { - animate: propTypes.oneOfType([propTypes.bool, propTypes.object]), - containerComponent: propTypes.element, - domain: propTypes.oneOfType([CustomPropTypes.domain, propTypes.shape({ - x: CustomPropTypes.domain, - y: CustomPropTypes.domain - })]), - maxDomain: propTypes.oneOfType([propTypes.number, propTypes.instanceOf(Date), propTypes.shape({ - x: propTypes.oneOfType([propTypes.number, propTypes.instanceOf(Date)]), - y: propTypes.oneOfType([propTypes.number, propTypes.instanceOf(Date)]) - })]), - minDomain: propTypes.oneOfType([propTypes.number, propTypes.instanceOf(Date), propTypes.shape({ - x: propTypes.oneOfType([propTypes.number, propTypes.instanceOf(Date)]), - y: propTypes.oneOfType([propTypes.number, propTypes.instanceOf(Date)]) - })]), - domainPadding: propTypes.oneOfType([propTypes.shape({ - x: propTypes.oneOfType([propTypes.number, propTypes.arrayOf(propTypes.number)]), - y: propTypes.oneOfType([propTypes.number, propTypes.arrayOf(propTypes.number)]) - }), propTypes.number, propTypes.arrayOf(propTypes.number)]), - eventKey: propTypes.oneOfType([propTypes.func, CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.nonNegative]), propTypes.string]), - events: propTypes.arrayOf(propTypes.shape({ - target: propTypes.oneOf(["data", "labels", "parent"]), - eventKey: propTypes.oneOfType([propTypes.array, CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.nonNegative]), propTypes.string]), - eventHandlers: propTypes.object - })), - externalEventMutations: propTypes.arrayOf(propTypes.shape({ - callback: propTypes.function, - childName: propTypes.oneOfType([propTypes.string, propTypes.array]), - eventKey: propTypes.oneOfType([propTypes.array, CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.nonNegative]), propTypes.string]), - mutation: propTypes.function, - target: propTypes.oneOfType([propTypes.string, propTypes.array]) - })), - groupComponent: propTypes.element, - height: CustomPropTypes.nonNegative, - name: propTypes.string, - origin: propTypes.shape({ - x: propTypes.number, - y: propTypes.number - }), - padding: propTypes.oneOfType([propTypes.number, propTypes.shape({ - top: propTypes.number, - bottom: propTypes.number, - left: propTypes.number, - right: propTypes.number - })]), - polar: propTypes.bool, - range: propTypes.oneOfType([CustomPropTypes.domain, propTypes.shape({ - x: CustomPropTypes.domain, - y: CustomPropTypes.domain - })]), - scale: propTypes.oneOfType([CustomPropTypes.scale, propTypes.shape({ - x: CustomPropTypes.scale, - y: CustomPropTypes.scale - })]), - sharedEvents: propTypes.shape({ - events: propTypes.array, - getEventState: propTypes.func - }), - singleQuadrantDomainPadding: propTypes.oneOfType([propTypes.bool, propTypes.shape({ - x: propTypes.oneOfType([propTypes.bool]), - y: propTypes.oneOfType([propTypes.bool]) - })]), - standalone: propTypes.bool, - theme: propTypes.object, - width: CustomPropTypes.nonNegative -}; -var primitiveProps = { - active: propTypes.bool, - ariaLabel: propTypes.oneOfType([propTypes.string, propTypes.func]), - className: propTypes.string, - clipPath: propTypes.string, - data: propTypes.oneOfType([propTypes.array, propTypes.object]), - desc: propTypes.oneOfType([propTypes.string, propTypes.func]), - events: propTypes.object, - id: propTypes.oneOfType([propTypes.number, propTypes.string, propTypes.func]), - index: propTypes.oneOfType([propTypes.number, propTypes.string]), - origin: propTypes.shape({ - x: propTypes.number, - y: propTypes.number - }), - polar: propTypes.bool, - role: propTypes.string, - scale: propTypes.oneOfType([CustomPropTypes.scale, propTypes.shape({ - x: CustomPropTypes.scale, - y: CustomPropTypes.scale - })]), - shapeRendering: propTypes.string, - style: propTypes.object, - tabIndex: propTypes.oneOfType([propTypes.number, propTypes.func]), - transform: propTypes.string -}; -var CommonProps = { - baseProps: baseProps$2, - dataProps: dataProps, - primitiveProps: primitiveProps -}; - -function _objectWithoutProperties$3(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } - -var Path = function (props) { - // eslint-disable-next-line react/prop-types - var desc = props.desc, - rest = _objectWithoutProperties$3(props, ["desc"]); - - return desc ? React__default.createElement("path", rest, React__default.createElement("desc", null, desc)) : React__default.createElement("path", rest); -}; - -function _objectSpread$3(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$5(target, key, source[key]); }); } return target; } - -function _defineProperty$5(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -var getArcPath = function (props) { - var cx = props.cx, - cy = props.cy, - r = props.r, - startAngle = props.startAngle, - endAngle = props.endAngle, - closedPath = props.closedPath; // Always draw the path as two arcs so that complete circles may be rendered. - - var halfAngle = Math.abs(endAngle - startAngle) / 2 + startAngle; - var x1 = cx + r * Math.cos(Helpers.degreesToRadians(startAngle)); - var y1 = cy - r * Math.sin(Helpers.degreesToRadians(startAngle)); - var x2 = cx + r * Math.cos(Helpers.degreesToRadians(halfAngle)); - var y2 = cy - r * Math.sin(Helpers.degreesToRadians(halfAngle)); - var x3 = cx + r * Math.cos(Helpers.degreesToRadians(endAngle)); - var y3 = cy - r * Math.sin(Helpers.degreesToRadians(endAngle)); - var largerArcFlag1 = halfAngle - startAngle <= 180 ? 0 : 1; - var largerArcFlag2 = endAngle - halfAngle <= 180 ? 0 : 1; - var arcStart = closedPath ? " M ".concat(cx, ", ").concat(cy, " L ").concat(x1, ", ").concat(y1) : "M ".concat(x1, ", ").concat(y1); - var arc1 = "A ".concat(r, ", ").concat(r, ", 0, ").concat(largerArcFlag1, ", 0, ").concat(x2, ", ").concat(y2); - var arc2 = "A ".concat(r, ", ").concat(r, ", 0, ").concat(largerArcFlag2, ", 0, ").concat(x3, ", ").concat(y3); - var arcEnd = closedPath ? "Z" : ""; - return "".concat(arcStart, " ").concat(arc1, " ").concat(arc2, " ").concat(arcEnd); -}; - -var evaluateProps$1 = function (props) { - /** - * Potential evaluated props are: - * `ariaLabel` - * `desc` - * `id` - * `style` - * `tabIndex` - */ - var ariaLabel = Helpers.evaluateProp(props.ariaLabel, props); - var desc = Helpers.evaluateProp(props.desc, props); - var id = Helpers.evaluateProp(props.id, props); - var style = Helpers.evaluateStyle(assign_1({ - stroke: "black", - fill: "none" - }, props.style), props); - var tabIndex = Helpers.evaluateProp(props.tabIndex, props); - return assign_1({}, props, { - ariaLabel: ariaLabel, - desc: desc, - id: id, - style: style, - tabIndex: tabIndex - }); -}; - -var Arc = function (props) { - props = evaluateProps$1(props); - return React__default.cloneElement(props.pathComponent, _objectSpread$3({}, props.events, { - "aria-label": props.ariaLabel, - d: getArcPath(props), - style: props.style, - desc: props.desc, - tabIndex: props.tabIndex, - className: props.className, - role: props.role, - shapeRendering: props.shapeRendering, - transform: props.transform, - clipPath: props.clipPath - })); -}; - -Arc.propTypes = _objectSpread$3({}, CommonProps.primitiveProps, { - closedPath: propTypes.bool, - cx: propTypes.number, - cy: propTypes.number, - datum: propTypes.any, - endAngle: propTypes.number, - pathComponent: propTypes.element, - r: propTypes.number, - startAngle: propTypes.number -}); -Arc.defaultProps = { - pathComponent: React__default.createElement(Path, null), - role: "presentation", - shapeRendering: "auto" -}; - -function _objectSpread$4(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$6(target, key, source[key]); }); } return target; } - -function _defineProperty$6(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -var evaluateProps$2 = function (props) { - /** - * Potential evaluated prop is: - * `id` - */ - var id = Helpers.evaluateProp(props.id, props); - return assign_1({}, props, { - id: id - }); -}; - -var Background = function (props) { - props = evaluateProps$2(props); - return props.polar ? React__default.cloneElement(props.circleComponent, _objectSpread$4({}, props.events, { - style: props.style, - role: props.role, - shapeRendering: props.shapeRendering, - cx: props.x, - cy: props.y, - r: props.height, - className: props.className - })) : React__default.cloneElement(props.rectComponent, _objectSpread$4({}, props.events, { - style: props.style, - role: props.role, - shapeRendering: props.shapeRendering, - x: props.x, - y: props.y, - rx: props.rx, - ry: props.ry, - width: props.width, - height: props.height, - className: props.className - })); -}; - -Background.propTypes = _objectSpread$4({}, CommonProps.primitiveProps, { - circleComponent: propTypes.element, - height: propTypes.number, - rectComponent: propTypes.element, - rx: propTypes.number, - ry: propTypes.number, - width: propTypes.number, - x: propTypes.number, - y: propTypes.number -}); -Background.defaultProps = { - circleComponent: React__default.createElement(Circle, null), - rectComponent: React__default.createElement(Rect, null), - role: "presentation", - shapeRendering: "auto" -}; - -function _objectSpread$5(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$7(target, key, source[key]); }); } return target; } - -function _defineProperty$7(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -var evaluateProps$3 = function (props) { - /** - * Potential evaluated props are: - * `ariaLabel` - * `desc` - * `id` - * `style` - * `tabIndex` - */ - var ariaLabel = Helpers.evaluateProp(props.ariaLabel, props); - var desc = Helpers.evaluateProp(props.desc, props); - var id = Helpers.evaluateProp(props.id, props); - var style = Helpers.evaluateStyle(assign_1({ - fill: "none" - }, props.style), props); - var tabIndex = Helpers.evaluateProp(props.tabIndex, props); - return assign_1({}, props, { - ariaLabel: ariaLabel, - desc: desc, - id: id, - style: style, - tabIndex: tabIndex - }); -}; - -var Border = function (props) { - props = evaluateProps$3(props); - return React__default.cloneElement(props.rectComponent, _objectSpread$5({}, props.events, { - "aria-label": props.ariaLabel, - style: props.style, - desc: props.desc, - tabIndex: props.tabIndex, - transform: props.transform, - className: props.className, - role: props.role, - shapeRendering: props.shapeRendering, - x: props.x, - y: props.y, - width: props.width, - height: props.height, - clipPath: props.clipPath - })); -}; - -Border.propTypes = _objectSpread$5({}, CommonProps.primitiveProps, { - height: propTypes.number, - rectComponent: propTypes.element, - width: propTypes.number, - x: propTypes.number, - y: propTypes.number -}); -Border.defaultProps = { - rectComponent: React__default.createElement(Rect, null), - role: "presentation", - shapeRendering: "auto" -}; - -function _extends$4() { _extends$4 = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$4.apply(this, arguments); } - -function _objectWithoutProperties$4(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } - -var Line = function (props) { - // eslint-disable-next-line react/prop-types - var desc = props.desc, - rest = _objectWithoutProperties$4(props, ["desc"]); - - return desc ? React__default.createElement("line", _extends$4({ - vectorEffect: "non-scaling-stroke" - }, rest), React__default.createElement("desc", null, desc)) : React__default.createElement("line", _extends$4({ - vectorEffect: "non-scaling-stroke" - }, rest)); -}; - -function _objectSpread$6(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$8(target, key, source[key]); }); } return target; } - -function _defineProperty$8(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -var evaluateProps$4 = function (props) { - /** - * Potential evaluated props are: - * `ariaLabel` - * `desc` - * `id` - * `style` - * `tabIndex` - */ - var ariaLabel = Helpers.evaluateProp(props.ariaLabel, props); - var desc = Helpers.evaluateProp(props.desc, props); - var id = Helpers.evaluateProp(props.id, props); - var style = Helpers.evaluateStyle(assign_1({ - stroke: "black" - }, props.style), props); - var tabIndex = Helpers.evaluateProp(props.tabIndex, props); - return assign_1({}, props, { - ariaLabel: ariaLabel, - desc: desc, - id: id, - style: style, - tabIndex: tabIndex - }); -}; - -var LineSegment = function (props) { - props = evaluateProps$4(props); - return React__default.cloneElement(props.lineComponent, _objectSpread$6({}, props.events, { - "aria-label": props.ariaLabel, - style: props.style, - desc: props.desc, - tabIndex: props.tabIndex, - className: props.className, - role: props.role, - shapeRendering: props.shapeRendering, - x1: props.x1, - x2: props.x2, - y1: props.y1, - y2: props.y2, - transform: props.transform, - clipPath: props.clipPath - })); -}; - -LineSegment.propTypes = _objectSpread$6({}, CommonProps.primitiveProps, { - datum: propTypes.any, - lineComponent: propTypes.element, - x1: propTypes.number, - x2: propTypes.number, - y1: propTypes.number, - y2: propTypes.number -}); -LineSegment.defaultProps = { - lineComponent: React__default.createElement(Line, null), - role: "presentation", - shapeRendering: "auto" -}; - -/* Built-in method references for those with the same name as other `lodash` methods. */ -var nativeCeil = Math.ceil, - nativeMax$2 = Math.max; - -/** - * The base implementation of `_.range` and `_.rangeRight` which doesn't - * coerce arguments. - * - * @private - * @param {number} start The start of the range. - * @param {number} end The end of the range. - * @param {number} step The value to increment or decrement by. - * @param {boolean} [fromRight] Specify iterating from right to left. - * @returns {Array} Returns the range of numbers. - */ -function baseRange(start, end, step, fromRight) { - var index = -1, - length = nativeMax$2(nativeCeil((end - start) / (step || 1)), 0), - result = Array(length); - - while (length--) { - result[fromRight ? length : ++index] = start; - start += step; - } - return result; -} - -var _baseRange = baseRange; - -/** - * Creates a `_.range` or `_.rangeRight` function. - * - * @private - * @param {boolean} [fromRight] Specify iterating from right to left. - * @returns {Function} Returns the new range function. - */ -function createRange(fromRight) { - return function(start, end, step) { - if (step && typeof step != 'number' && _isIterateeCall(start, end, step)) { - end = step = undefined; - } - // Ensure the sign of `-0` is preserved. - start = toFinite_1(start); - if (end === undefined) { - end = start; - start = 0; - } else { - end = toFinite_1(end); - } - step = step === undefined ? (start < end ? 1 : -1) : toFinite_1(step); - return _baseRange(start, end, step, fromRight); - }; -} - -var _createRange = createRange; - -/** - * Creates an array of numbers (positive and/or negative) progressing from - * `start` up to, but not including, `end`. A step of `-1` is used if a negative - * `start` is specified without an `end` or `step`. If `end` is not specified, - * it's set to `start` with `start` then set to `0`. - * - * **Note:** JavaScript follows the IEEE-754 standard for resolving - * floating-point values which can produce unexpected results. - * - * @static - * @since 0.1.0 - * @memberOf _ - * @category Util - * @param {number} [start=0] The start of the range. - * @param {number} end The end of the range. - * @param {number} [step=1] The value to increment or decrement by. - * @returns {Array} Returns the range of numbers. - * @see _.inRange, _.rangeRight - * @example - * - * _.range(4); - * // => [0, 1, 2, 3] - * - * _.range(-4); - * // => [0, -1, -2, -3] - * - * _.range(1, 5); - * // => [1, 2, 3, 4] - * - * _.range(0, 20, 5); - * // => [0, 5, 10, 15] - * - * _.range(0, -4, -1); - * // => [0, -1, -2, -3] - * - * _.range(1, 4, 0); - * // => [1, 1, 1] - * - * _.range(0); - * // => [] - */ -var range = _createRange(); - -var range_1 = range; - -var pathHelpers = { - circle: function (x, y, size) { - return "M ".concat(x, ", ").concat(y, "\n m ").concat(-size, ", 0\n a ").concat(size, ", ").concat(size, " 0 1,0 ").concat(size * 2, ",0\n a ").concat(size, ", ").concat(size, " 0 1,0 ").concat(-size * 2, ",0"); - }, - square: function (x, y, size) { - var baseSize = 0.87 * size; // eslint-disable-line no-magic-numbers - - var x0 = x - baseSize; - var y1 = y + baseSize; - var distance = x + baseSize - x0; - return "M ".concat(x0, ", ").concat(y1, "\n h").concat(distance, "\n v-").concat(distance, "\n h-").concat(distance, "\n z"); - }, - diamond: function (x, y, size) { - var baseSize = 0.87 * size; // eslint-disable-line no-magic-numbers - - var length = Math.sqrt(2 * (baseSize * baseSize)); - return "M ".concat(x, ", ").concat(y + length, "\n l ").concat(length, ", -").concat(length, "\n l -").concat(length, ", -").concat(length, "\n l -").concat(length, ", ").concat(length, "\n l ").concat(length, ", ").concat(length, "\n z"); - }, - triangleDown: function (x, y, size) { - var height = size / 2 * Math.sqrt(3); - var x0 = x - size; - var x1 = x + size; - var y0 = y - size; - var y1 = y + height; - return "M ".concat(x0, ", ").concat(y0, "\n L ").concat(x1, ", ").concat(y0, "\n L ").concat(x, ", ").concat(y1, "\n z"); - }, - triangleUp: function (x, y, size) { - var height = size / 2 * Math.sqrt(3); - var x0 = x - size; - var x1 = x + size; - var y0 = y - height; - var y1 = y + size; - return "M ".concat(x0, ", ").concat(y1, "\n L ").concat(x1, ", ").concat(y1, "\n L ").concat(x, ", ").concat(y0, "\n z"); - }, - plus: function (x, y, size) { - var baseSize = 1.1 * size; // eslint-disable-line no-magic-numbers - - var distance = baseSize / 1.5; // eslint-disable-line no-magic-numbers - - return "\n M ".concat(x - distance / 2, ", ").concat(y + baseSize, "\n v-").concat(distance, "\n h-").concat(distance, "\n v-").concat(distance, "\n h").concat(distance, "\n v-").concat(distance, "\n h").concat(distance, "\n v").concat(distance, "\n h").concat(distance, "\n v").concat(distance, "\n h-").concat(distance, "\n v").concat(distance, "\n z"); - }, - cross: function (x, y, size) { - var baseSize = 0.8 * size; // eslint-disable-line no-magic-numbers - - var distance = baseSize / 1.5; // eslint-disable-line no-magic-numbers - - return "\n M ".concat(x - distance / 2, ", ").concat(y + baseSize + distance, "\n v-").concat(distance * 2, "\n h-").concat(distance, "\n v-").concat(distance, "\n h").concat(distance, "\n v-").concat(distance, "\n h").concat(distance, "\n v").concat(distance, "\n h").concat(distance, "\n v").concat(distance, "\n h-").concat(distance, "\n v").concat(distance * 2, "\n z"); - }, - minus: function (x, y, size) { - var baseSize = 1.1 * size; // eslint-disable-line no-magic-numbers - - var lineHeight = baseSize - baseSize * 0.3; // eslint-disable-line no-magic-numbers - - var x0 = x - baseSize; - var y1 = y + lineHeight / 2; - var distance = x + baseSize - x0; - return "M ".concat(x0, ", ").concat(y1, "\n h").concat(distance, "\n v-").concat(lineHeight, "\n h-").concat(distance, "\n z"); - }, - star: function (x, y, size) { - var baseSize = 1.35 * size; // eslint-disable-line no-magic-numbers - - var angle = Math.PI / 5; // eslint-disable-line no-magic-numbers - // eslint-disable-next-line no-magic-numbers - - var starCoords = range_1(10).map(function (index) { - var length = index % 2 === 0 ? baseSize : baseSize / 2; - return "".concat(length * Math.sin(angle * (index + 1)) + x, ",\n ").concat(length * Math.cos(angle * (index + 1)) + y); - }); - - return "M ".concat(starCoords.join("L"), " z"); - } -}; - -function _objectSpread$7(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$9(target, key, source[key]); }); } return target; } - -function _defineProperty$9(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -var getPath = function (props) { - var x = props.x, - y = props.y, - size = props.size, - symbol = props.symbol; - - if (props.getPath) { - return props.getPath(x, y, size); - } - - var pathFunctions = { - circle: pathHelpers.circle, - square: pathHelpers.square, - diamond: pathHelpers.diamond, - triangleDown: pathHelpers.triangleDown, - triangleUp: pathHelpers.triangleUp, - plus: pathHelpers.plus, - minus: pathHelpers.minus, - star: pathHelpers.star, - cross: pathHelpers.cross - }; - var symbolFunction = typeof pathFunctions[symbol] === "function" ? pathFunctions[symbol] : pathFunctions.circle; - return symbolFunction(x, y, size); -}; - -var evaluateProps$5 = function (props) { - /** - * Potential evaluated props are: - * `ariaLabel` - * `desc` - * `id` - * `size` - * `style` - * `symbol` - * `tabIndex` - */ - var ariaLabel = Helpers.evaluateProp(props.ariaLabel, props); - var desc = Helpers.evaluateProp(props.desc, props); - var id = Helpers.evaluateProp(props.id, props); - var size = Helpers.evaluateProp(props.size, props); - var style = Helpers.evaluateStyle(props.style, props); - var symbol = Helpers.evaluateProp(props.symbol, props); - var tabIndex = Helpers.evaluateProp(props.tabIndex, props); - return assign_1({}, props, { - ariaLabel: ariaLabel, - desc: desc, - id: id, - size: size, - style: style, - symbol: symbol, - tabIndex: tabIndex - }); -}; - -var Point = function (props) { - props = evaluateProps$5(props); - return React__default.cloneElement(props.pathComponent, _objectSpread$7({}, props.events, { - "aria-label": props.ariaLabel, - d: getPath(props), - style: props.style, - desc: props.desc, - tabIndex: props.tabIndex, - role: props.role, - shapeRendering: props.shapeRendering, - className: props.className, - transform: props.transform, - clipPath: props.clipPath - })); -}; - -Point.propTypes = _objectSpread$7({}, CommonProps.primitiveProps, { - datum: propTypes.object, - getPath: propTypes.func, - pathComponent: propTypes.element, - size: propTypes.oneOfType([propTypes.number, propTypes.func]), - symbol: propTypes.oneOfType([propTypes.oneOf(["circle", "cross", "diamond", "plus", "minus", "square", "star", "triangleDown", "triangleUp"]), propTypes.func]), - x: propTypes.number, - y: propTypes.number -}); -Point.defaultProps = { - pathComponent: React__default.createElement(Path, null), - role: "presentation", - shapeRendering: "auto" -}; - -/** - * The base implementation of `_.isNaN` without support for number objects. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. - */ -function baseIsNaN(value) { - return value !== value; -} - -var _baseIsNaN = baseIsNaN; - -/** - * A specialized version of `_.indexOf` which performs strict equality - * comparisons of values, i.e. `===`. - * - * @private - * @param {Array} array The array to inspect. - * @param {*} value The value to search for. - * @param {number} fromIndex The index to search from. - * @returns {number} Returns the index of the matched value, else `-1`. - */ -function strictIndexOf(array, value, fromIndex) { - var index = fromIndex - 1, - length = array.length; - - while (++index < length) { - if (array[index] === value) { - return index; - } - } - return -1; -} - -var _strictIndexOf = strictIndexOf; - -/** - * The base implementation of `_.indexOf` without `fromIndex` bounds checks. - * - * @private - * @param {Array} array The array to inspect. - * @param {*} value The value to search for. - * @param {number} fromIndex The index to search from. - * @returns {number} Returns the index of the matched value, else `-1`. - */ -function baseIndexOf(array, value, fromIndex) { - return value === value - ? _strictIndexOf(array, value, fromIndex) - : _baseFindIndex(array, _baseIsNaN, fromIndex); -} - -var _baseIndexOf = baseIndexOf; - -/** - * A specialized version of `_.includes` for arrays without support for - * specifying an index to search from. - * - * @private - * @param {Array} [array] The array to inspect. - * @param {*} target The value to search for. - * @returns {boolean} Returns `true` if `target` is found, else `false`. - */ -function arrayIncludes(array, value) { - var length = array == null ? 0 : array.length; - return !!length && _baseIndexOf(array, value, 0) > -1; -} - -var _arrayIncludes = arrayIncludes; - -/** - * This function is like `arrayIncludes` except that it accepts a comparator. - * - * @private - * @param {Array} [array] The array to inspect. - * @param {*} target The value to search for. - * @param {Function} comparator The comparator invoked per element. - * @returns {boolean} Returns `true` if `target` is found, else `false`. - */ -function arrayIncludesWith(array, value, comparator) { - var index = -1, - length = array == null ? 0 : array.length; - - while (++index < length) { - if (comparator(value, array[index])) { - return true; - } - } - return false; -} - -var _arrayIncludesWith = arrayIncludesWith; - -/** Used as the size to enable large array optimizations. */ -var LARGE_ARRAY_SIZE$1 = 200; - -/** - * The base implementation of methods like `_.difference` without support - * for excluding multiple arrays or iteratee shorthands. - * - * @private - * @param {Array} array The array to inspect. - * @param {Array} values The values to exclude. - * @param {Function} [iteratee] The iteratee invoked per element. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new array of filtered values. - */ -function baseDifference(array, values, iteratee, comparator) { - var index = -1, - includes = _arrayIncludes, - isCommon = true, - length = array.length, - result = [], - valuesLength = values.length; - - if (!length) { - return result; - } - if (iteratee) { - values = _arrayMap(values, _baseUnary(iteratee)); - } - if (comparator) { - includes = _arrayIncludesWith; - isCommon = false; - } - else if (values.length >= LARGE_ARRAY_SIZE$1) { - includes = _cacheHas; - isCommon = false; - values = new _SetCache(values); - } - outer: - while (++index < length) { - var value = array[index], - computed = iteratee == null ? value : iteratee(value); - - value = (comparator || value !== 0) ? value : 0; - if (isCommon && computed === computed) { - var valuesIndex = valuesLength; - while (valuesIndex--) { - if (values[valuesIndex] === computed) { - continue outer; - } - } - result.push(value); - } - else if (!includes(values, computed, comparator)) { - result.push(value); - } - } - return result; -} - -var _baseDifference = baseDifference; - -/** - * This method is like `_.isArrayLike` except that it also checks if `value` - * is an object. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an array-like object, - * else `false`. - * @example - * - * _.isArrayLikeObject([1, 2, 3]); - * // => true - * - * _.isArrayLikeObject(document.body.children); - * // => true - * - * _.isArrayLikeObject('abc'); - * // => false - * - * _.isArrayLikeObject(_.noop); - * // => false - */ -function isArrayLikeObject(value) { - return isObjectLike_1(value) && isArrayLike_1(value); -} - -var isArrayLikeObject_1 = isArrayLikeObject; - -/** - * Creates an array of `array` values not included in the other given arrays - * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * for equality comparisons. The order and references of result values are - * determined by the first array. - * - * **Note:** Unlike `_.pullAll`, this method returns a new array. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {...Array} [values] The values to exclude. - * @returns {Array} Returns the new array of filtered values. - * @see _.without, _.xor - * @example - * - * _.difference([2, 1], [2, 3]); - * // => [1] - */ -var difference = _baseRest(function(array, values) { - return isArrayLikeObject_1(array) - ? _baseDifference(array, _baseFlatten(values, 1, isArrayLikeObject_1, true)) - : []; -}); - -var difference_1 = difference; - -/** - * Checks if `value` is `null` or `undefined`. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is nullish, else `false`. - * @example - * - * _.isNil(null); - * // => true - * - * _.isNil(void 0); - * // => true - * - * _.isNil(NaN); - * // => false - */ -function isNil(value) { - return value == null; -} - -var isNil_1 = isNil; - -/** - * Creates an array excluding all given values using - * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * for equality comparisons. - * - * **Note:** Unlike `_.pull`, this method returns a new array. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {...*} [values] The values to exclude. - * @returns {Array} Returns the new array of filtered values. - * @see _.difference, _.xor - * @example - * - * _.without([2, 1, 2, 3], 1, 2); - * // => [3] - */ -var without = _baseRest(function(array, values) { - return isArrayLikeObject_1(array) - ? _baseDifference(array, values) - : []; -}); - -var without_1 = without; - -/** `Object#toString` result references. */ -var stringTag$2 = '[object String]'; - -/** - * Checks if `value` is classified as a `String` primitive or object. - * - * @static - * @since 0.1.0 - * @memberOf _ - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a string, else `false`. - * @example - * - * _.isString('abc'); - * // => true - * - * _.isString(1); - * // => false - */ -function isString(value) { - return typeof value == 'string' || - (!isArray_1(value) && isObjectLike_1(value) && _baseGetTag(value) == stringTag$2); -} - -var isString_1 = isString; - -/** - * The base implementation of `_.values` and `_.valuesIn` which creates an - * array of `object` property values corresponding to the property names - * of `props`. - * - * @private - * @param {Object} object The object to query. - * @param {Array} props The property names to get values for. - * @returns {Object} Returns the array of property values. - */ -function baseValues(object, props) { - return _arrayMap(props, function(key) { - return object[key]; - }); -} - -var _baseValues = baseValues; - -/** - * Creates an array of the own enumerable string keyed property values of `object`. - * - * **Note:** Non-object values are coerced to objects. - * - * @static - * @since 0.1.0 - * @memberOf _ - * @category Object - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property values. - * @example - * - * function Foo() { - * this.a = 1; - * this.b = 2; - * } - * - * Foo.prototype.c = 3; - * - * _.values(new Foo); - * // => [1, 2] (iteration order is not guaranteed) - * - * _.values('hi'); - * // => ['h', 'i'] - */ -function values(object) { - return object == null ? [] : _baseValues(object, keys_1(object)); -} - -var values_1 = values; - -/* Built-in method references for those with the same name as other `lodash` methods. */ -var nativeMax$3 = Math.max; - -/** - * Checks if `value` is in `collection`. If `collection` is a string, it's - * checked for a substring of `value`, otherwise - * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * is used for equality comparisons. If `fromIndex` is negative, it's used as - * the offset from the end of `collection`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object|string} collection The collection to inspect. - * @param {*} value The value to search for. - * @param {number} [fromIndex=0] The index to search from. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. - * @returns {boolean} Returns `true` if `value` is found, else `false`. - * @example - * - * _.includes([1, 2, 3], 1); - * // => true - * - * _.includes([1, 2, 3], 1, 2); - * // => false - * - * _.includes({ 'a': 1, 'b': 2 }, 1); - * // => true - * - * _.includes('abcd', 'bc'); - * // => true - */ -function includes(collection, value, fromIndex, guard) { - collection = isArrayLike_1(collection) ? collection : values_1(collection); - fromIndex = (fromIndex && !guard) ? toInteger_1(fromIndex) : 0; - - var length = collection.length; - if (fromIndex < 0) { - fromIndex = nativeMax$3(length + fromIndex, 0); - } - return isString_1(collection) - ? (fromIndex <= length && collection.indexOf(value, fromIndex) > -1) - : (!!length && _baseIndexOf(collection, value, fromIndex) > -1); -} - -var includes_1 = includes; - -/** - * This method returns `undefined`. - * - * @static - * @memberOf _ - * @since 2.3.0 - * @category Util - * @example - * - * _.times(2, _.noop); - * // => [undefined, undefined] - */ -function noop() { - // No operation performed. -} - -var noop_1 = noop; - -/** Used as references for various `Number` constants. */ -var INFINITY$3 = 1 / 0; - -/** - * Creates a set object of `values`. - * - * @private - * @param {Array} values The values to add to the set. - * @returns {Object} Returns the new set. - */ -var createSet = !(_Set && (1 / _setToArray(new _Set([,-0]))[1]) == INFINITY$3) ? noop_1 : function(values) { - return new _Set(values); -}; - -var _createSet = createSet; - -/** Used as the size to enable large array optimizations. */ -var LARGE_ARRAY_SIZE$2 = 200; - -/** - * The base implementation of `_.uniqBy` without support for iteratee shorthands. - * - * @private - * @param {Array} array The array to inspect. - * @param {Function} [iteratee] The iteratee invoked per element. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new duplicate free array. - */ -function baseUniq(array, iteratee, comparator) { - var index = -1, - includes = _arrayIncludes, - length = array.length, - isCommon = true, - result = [], - seen = result; - - if (comparator) { - isCommon = false; - includes = _arrayIncludesWith; - } - else if (length >= LARGE_ARRAY_SIZE$2) { - var set = iteratee ? null : _createSet(array); - if (set) { - return _setToArray(set); - } - isCommon = false; - includes = _cacheHas; - seen = new _SetCache; - } - else { - seen = iteratee ? [] : result; - } - outer: - while (++index < length) { - var value = array[index], - computed = iteratee ? iteratee(value) : value; - - value = (comparator || value !== 0) ? value : 0; - if (isCommon && computed === computed) { - var seenIndex = seen.length; - while (seenIndex--) { - if (seen[seenIndex] === computed) { - continue outer; - } - } - if (iteratee) { - seen.push(computed); - } - result.push(value); - } - else if (!includes(seen, computed, comparator)) { - if (seen !== result) { - seen.push(computed); - } - result.push(value); - } - } - return result; -} - -var _baseUniq = baseUniq; - -/** - * Creates a duplicate-free version of an array, using - * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * for equality comparisons, in which only the first occurrence of each element - * is kept. The order of result values is determined by the order they occur - * in the array. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to inspect. - * @returns {Array} Returns the new duplicate free array. - * @example - * - * _.uniq([2, 1, 2]); - * // => [2, 1] - */ -function uniq(array) { - return (array && array.length) ? _baseUniq(array) : []; -} - -var uniq_1 = uniq; - -/** Error message constants. */ -var FUNC_ERROR_TEXT$1 = 'Expected a function'; - -/** - * Creates a function that negates the result of the predicate `func`. The - * `func` predicate is invoked with the `this` binding and arguments of the - * created function. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Function - * @param {Function} predicate The predicate to negate. - * @returns {Function} Returns the new negated function. - * @example - * - * function isEven(n) { - * return n % 2 == 0; - * } - * - * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven)); - * // => [1, 3, 5] - */ -function negate(predicate) { - if (typeof predicate != 'function') { - throw new TypeError(FUNC_ERROR_TEXT$1); - } - return function() { - var args = arguments; - switch (args.length) { - case 0: return !predicate.call(this); - case 1: return !predicate.call(this, args[0]); - case 2: return !predicate.call(this, args[0], args[1]); - case 3: return !predicate.call(this, args[0], args[1], args[2]); - } - return !predicate.apply(this, args); - }; -} - -var negate_1 = negate; - -/* Built-in method references for those with the same name as other `lodash` methods. */ -var nativeGetSymbols$1 = Object.getOwnPropertySymbols; - -/** - * Creates an array of the own and inherited enumerable symbols of `object`. - * - * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the array of symbols. - */ -var getSymbolsIn = !nativeGetSymbols$1 ? stubArray_1 : function(object) { - var result = []; - while (object) { - _arrayPush(result, _getSymbols(object)); - object = _getPrototype(object); - } - return result; -}; - -var _getSymbolsIn = getSymbolsIn; - -/** - * Creates an array of own and inherited enumerable property names and - * symbols of `object`. - * - * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names and symbols. - */ -function getAllKeysIn(object) { - return _baseGetAllKeys(object, keysIn_1, _getSymbolsIn); -} - -var _getAllKeysIn = getAllKeysIn; - -/** - * Creates an object composed of the `object` properties `predicate` returns - * truthy for. The predicate is invoked with two arguments: (value, key). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Object - * @param {Object} object The source object. - * @param {Function} [predicate=_.identity] The function invoked per property. - * @returns {Object} Returns the new object. - * @example - * - * var object = { 'a': 1, 'b': '2', 'c': 3 }; - * - * _.pickBy(object, _.isNumber); - * // => { 'a': 1, 'c': 3 } - */ -function pickBy(object, predicate) { - if (object == null) { - return {}; - } - var props = _arrayMap(_getAllKeysIn(object), function(prop) { - return [prop]; - }); - predicate = _baseIteratee(predicate); - return _basePickBy(object, props, function(value, path) { - return predicate(value, path[0]); - }); -} - -var pickBy_1 = pickBy; - -/** - * The opposite of `_.pickBy`; this method creates an object composed of - * the own and inherited enumerable string keyed properties of `object` that - * `predicate` doesn't return truthy for. The predicate is invoked with two - * arguments: (value, key). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Object - * @param {Object} object The source object. - * @param {Function} [predicate=_.identity] The function invoked per property. - * @returns {Object} Returns the new object. - * @example - * - * var object = { 'a': 1, 'b': '2', 'c': 3 }; - * - * _.omitBy(object, _.isNumber); - * // => { 'b': '2' } - */ -function omitBy(object, predicate) { - return pickBy_1(object, negate_1(_baseIteratee(predicate))); -} - -var omitBy_1 = omitBy; - -function _defineProperty$a(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _toConsumableArray$5(arr) { return _arrayWithoutHoles$5(arr) || _iterableToArray$5(arr) || _nonIterableSpread$5(); } - -function _nonIterableSpread$5() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$5(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$5(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -var GLOBAL_EVENT_REGEX = /^onGlobal(.*)$/; -var Events = { - /* Returns all own and shared events that should be attached to a single target element, - * i.e. an individual bar specified by target: "data", eventKey: [index]. - * Returned events are scoped to the appropriate state. Either that of the component itself - * (i.e. VictoryBar) in the case of own events, or that of the parent component - * (i.e. VictoryChart) in the case of shared events - */ - // eslint-disable-next-line max-params - getEvents: function (props, target, eventKey, getScopedEvents) { - var _this = this; - - // Returns all events that apply to a particular target element - var getEventsByTarget = function (events) { - var getSelectedEvents = function () { - var targetEvents = events.reduce(function (memo, event) { - if (event.target !== undefined) { - var matchesTarget = Array.isArray(event.target) ? includes_1(event.target, target) : "".concat(event.target) === "".concat(target); - return matchesTarget ? memo.concat(event) : memo; - } - - return memo.concat(event); - }, []); - - if (eventKey !== undefined && target !== "parent") { - return targetEvents.filter(function (obj) { - var targetKeys = obj.eventKey; - - var useKey = function (key) { - return key ? "".concat(key) === "".concat(eventKey) : true; - }; - - return Array.isArray(targetKeys) ? targetKeys.some(function (k) { - return useKey(k); - }) : useKey(targetKeys); - }); - } - - return targetEvents; - }; - - var selectedEvents = getSelectedEvents(); - return Array.isArray(selectedEvents) && selectedEvents.reduce(function (memo, event) { - return event ? assign_1(memo, event.eventHandlers) : memo; - }, {}); - }; - /* Returns all events from props and defaultEvents from components. Events handlers - * specified in props will override handlers for the same event if they are also - * specified in defaultEvents of a sub-component - */ - - - var getAllEvents = function () { - if (Array.isArray(_this.componentEvents)) { - var _this$componentEvents; - - return Array.isArray(props.events) ? (_this$componentEvents = _this.componentEvents).concat.apply(_this$componentEvents, _toConsumableArray$5(props.events)) : _this.componentEvents; - } - - return props.events; - }; - - var allEvents = getAllEvents(); - var ownEvents = allEvents && isFunction_1(getScopedEvents) ? getScopedEvents(getEventsByTarget(allEvents), target) : undefined; - - if (!props.sharedEvents) { - return ownEvents; - } - - var getSharedEvents = props.sharedEvents.getEvents; - var sharedEvents = props.sharedEvents.events && getSharedEvents(getEventsByTarget(props.sharedEvents.events), target); - return assign_1({}, sharedEvents, ownEvents); - }, - - /* Returns a modified events object where each event handler is replaced by a new - * function that calls the original handler and then calls setState with the return - * of the original event handler assigned to state property that maps to the target - * element. - */ - // eslint-disable-next-line max-params - getScopedEvents: function (events, namespace, childType, baseProps) { - var _this2 = this; - - if (isEmpty_1(events)) { - return {}; - } - - baseProps = baseProps || this.baseProps; // returns the original base props or base state of a given target element - - var getTargetProps = function (identifier, type) { - var childName = identifier.childName, - target = identifier.target, - key = identifier.key; - var baseType = type === "props" ? baseProps : _this2.state || {}; - var base = childName === undefined || childName === null || !baseType[childName] ? baseType : baseType[childName]; - return key === "parent" ? base.parent : base[key] && base[key][target]; - }; // Returns the state object with the mutation caused by a given eventReturn - // applied to the appropriate property on the state object - - - var parseEvent = function (eventReturn, eventKey) { - var childNames = namespace === "parent" ? eventReturn.childName : eventReturn.childName || childType; - var target = eventReturn.target || namespace; // returns all eventKeys to modify for a targeted childName - - var getKeys = function (childName) { - if (target === "parent") { - return "parent"; - } - - if (eventReturn.eventKey === "all") { - return baseProps[childName] ? without_1(keys_1(baseProps[childName]), "parent") : without_1(keys_1(baseProps), "parent"); - } else if (eventReturn.eventKey === undefined && eventKey === "parent") { - return baseProps[childName] ? keys_1(baseProps[childName]) : keys_1(baseProps); - } - - return eventReturn.eventKey !== undefined ? eventReturn.eventKey : eventKey; - }; // returns the state object with mutated props applied for a single key - - - var getMutationObject = function (key, childName) { - var baseState = _this2.state || {}; - - if (!isFunction_1(eventReturn.mutation)) { - return baseState; - } - - var mutationTargetProps = getTargetProps({ - childName: childName, - key: key, - target: target - }, "props"); - var mutationTargetState = getTargetProps({ - childName: childName, - key: key, - target: target - }, "state"); - var mutatedProps = eventReturn.mutation(assign_1({}, mutationTargetProps, mutationTargetState), baseProps); - var childState = baseState[childName] || {}; - - var filterState = function (state) { - if (state[key] && state[key][target]) { - delete state[key][target]; - } - - if (state[key] && !keys_1(state[key]).length) { - delete state[key]; - } - - return state; - }; - - var extendState = function (state) { - return target === "parent" ? assign_1(state, _defineProperty$a({}, key, assign_1(state[key], mutatedProps))) : assign_1(state, _defineProperty$a({}, key, assign_1(state[key], _defineProperty$a({}, target, mutatedProps)))); - }; - - var updateState = function (state) { - return mutatedProps ? extendState(state) : filterState(state); - }; - - return childName !== undefined && childName !== null ? assign_1(baseState, _defineProperty$a({}, childName, updateState(childState))) : updateState(baseState); - }; // returns entire mutated state for a given childName - - - var getReturnByChild = function (childName) { - var mutationKeys = getKeys(childName); - return Array.isArray(mutationKeys) ? mutationKeys.reduce(function (memo, key) { - return assign_1(memo, getMutationObject(key, childName)); - }, {}) : getMutationObject(mutationKeys, childName); - }; // returns an entire mutated state for all children - - - var allChildNames = childNames === "all" ? without_1(keys_1(baseProps), "parent") : childNames; - return Array.isArray(allChildNames) ? allChildNames.reduce(function (memo, childName) { - return assign_1(memo, getReturnByChild(childName)); - }, {}) : getReturnByChild(allChildNames); - }; // Parses an array of event returns into a single state mutation - - - var parseEventReturn = function (eventReturn, eventKey) { - return Array.isArray(eventReturn) ? eventReturn.reduce(function (memo, props) { - memo = assign_1({}, memo, parseEvent(props, eventKey)); - return memo; - }, {}) : parseEvent(eventReturn, eventKey); - }; - - var compileCallbacks = function (eventReturn) { - var getCallback = function (obj) { - return isFunction_1(obj.callback) && obj.callback; - }; - - var callbacks = Array.isArray(eventReturn) ? eventReturn.map(function (evtObj) { - return getCallback(evtObj); - }) : [getCallback(eventReturn)]; - var callbackArray = callbacks.filter(function (callback) { - return callback !== false; - }); - return callbackArray.length ? function () { - return callbackArray.forEach(function (callback) { - return callback(); - }); - } : undefined; - }; // A function that calls a particular event handler, parses its return - // into a state mutation, and calls setState - // eslint-disable-next-line max-params - - - var onEvent = function (evt, childProps, eventKey, eventName) { - var eventReturn = events[eventName](evt, childProps, eventKey, _this2); - - if (!isEmpty_1(eventReturn)) { - var callbacks = compileCallbacks(eventReturn); - - _this2.setState(parseEventReturn(eventReturn, eventKey), callbacks); - } - }; // returns a new events object with enhanced event handlers - - - return keys_1(events).reduce(function (memo, event) { - memo[event] = onEvent; - return memo; - }, {}); - }, - - /* Returns a partially applied event handler for a specific target element - * This allows event handlers to have access to props controlling each element - */ - getPartialEvents: function (events, eventKey, childProps) { - return events ? keys_1(events).reduce(function (memo, eventName) { - var appliedEvent = function (evt) { - return events[eventName](evt, childProps, eventKey, eventName); - }; - - memo[eventName] = appliedEvent; - return memo; - }, {}) : {}; - }, - - /* Returns the property of the state object corresponding to event changes for - * a particular element - */ - getEventState: function (eventKey, namespace, childType) { - var state = this.state || {}; - - if (!childType) { - return eventKey === "parent" ? state[eventKey] && state[eventKey][namespace] || state[eventKey] : state[eventKey] && state[eventKey][namespace]; - } - - return state[childType] && state[childType][eventKey] && state[childType][eventKey][namespace]; - }, - - /** - * Returns a set of all mutations for shared events - * - * @param {Array} mutations an array of mutations objects - * @param {Object} baseProps an object that describes all props for children of VictorySharedEvents - * @param {Object} baseState an object that describes state for children of VictorySharedEvents - * @param {Array} childNames an array of childNames - * - * @return {Object} a object describing all mutations for VictorySharedEvents - */ - // eslint-disable-next-line max-params - getExternalMutationsWithChildren: function (mutations, baseProps, baseState, childNames) { - var _this3 = this; - - baseProps = baseProps || {}; - baseState = baseState || {}; - return childNames.reduce(function (memo, childName) { - var childState = baseState[childName]; - - var mutation = _this3.getExternalMutations(mutations, baseProps[childName], baseState[childName], childName); - - memo[childName] = mutation ? mutation : childState; - return pickBy_1(memo, function (v) { - return !isEmpty_1(v); - }); - }, {}); - }, - - /** - * Returns a set of all mutations for a component - * - * @param {Array} mutations an array of mutations objects - * @param {Object} baseProps a props object (scoped to a childName when used by shared events) - * @param {Object} baseState a state object (scoped to a childName when used by shared events) - * @param {String} childName an optional childName - * - * @return {Object} a object describing mutations for a given component - */ - // eslint-disable-next-line max-params - getExternalMutations: function (mutations, baseProps, baseState, childName) { - var _this4 = this; - - baseProps = baseProps || {}; - baseState = baseState || {}; - - var eventKeys = keys_1(baseProps); - - return eventKeys.reduce(function (memo, eventKey) { - var keyState = baseState[eventKey] || {}; - var keyProps = baseProps[eventKey] || {}; - - if (eventKey === "parent") { - var identifier = { - eventKey: eventKey, - target: "parent" - }; - - var mutation = _this4.getExternalMutation(mutations, keyProps, keyState, identifier); - - memo[eventKey] = mutation !== undefined ? assign_1({}, keyState, mutation) : keyState; - } else { - // use keys from both state and props so that elements not intially included in baseProps - // will be used. (i.e. labels) - var targets = uniq_1(keys_1(keyProps).concat(keys_1(keyState))); - - memo[eventKey] = targets.reduce(function (m, target) { - var identifier = { - eventKey: eventKey, - target: target, - childName: childName - }; - - var mutation = _this4.getExternalMutation(mutations, keyProps[target], keyState[target], identifier); - - m[target] = mutation !== undefined ? assign_1({}, keyState[target], mutation) : keyState[target]; - return pickBy_1(m, function (v) { - return !isEmpty_1(v); - }); - }, {}); - } - - return pickBy_1(memo, function (v) { - return !isEmpty_1(v); - }); - }, {}); - }, - - /** - * Returns a set of mutations for a particular element given scoped baseProps and baseState - * - * @param {Array} mutations an array of mutations objects - * @param {Object} baseProps a props object (scoped the element specified by the identifier) - * @param {Object} baseState a state object (scoped the element specified by the identifier) - * @param {Object} identifier { eventKey, target, childName } - * - * @return {Object | undefined} a object describing mutations for a given element, or undefined - */ - // eslint-disable-next-line max-params - getExternalMutation: function (mutations, baseProps, baseState, identifier) { - var filterMutations = function (mutation, type) { - if (typeof mutation[type] === "string") { - return mutation[type] === "all" || mutation[type] === identifier[type]; - } else if (Array.isArray(mutation[type])) { - // coerce arrays to strings before matching - var stringArray = mutation[type].map(function (m) { - return "".concat(m); - }); - return includes_1(stringArray, identifier[type]); - } else { - return false; - } - }; - - mutations = Array.isArray(mutations) ? mutations : [mutations]; - var scopedMutations = mutations; - - if (identifier.childName) { - scopedMutations = mutations.filter(function (m) { - return filterMutations(m, "childName"); - }); - } // find any mutation objects that match the target - - - var targetMutations = scopedMutations.filter(function (m) { - return filterMutations(m, "target"); - }); - - if (isEmpty_1(targetMutations)) { - return undefined; - } - - var keyMutations = targetMutations.filter(function (m) { - return filterMutations(m, "eventKey"); - }); - - if (isEmpty_1(keyMutations)) { - return undefined; - } - - return keyMutations.reduce(function (memo, curr) { - var mutationFunction = curr && isFunction_1(curr.mutation) ? curr.mutation : function () { - return undefined; - }; - var currentMutation = mutationFunction(assign_1({}, baseProps, baseState)); - return assign_1({}, memo, currentMutation); - }, {}); - }, - - /* Returns an array of defaultEvents from sub-components of a given component. - * i.e. any static `defaultEvents` on `labelComponent` will be returned - */ - getComponentEvents: function (props, components) { - var events = Array.isArray(components) && components.reduce(function (memo, componentName) { - var _memo; - - var component = props[componentName]; - var defaultEvents = component && component.type && component.type.defaultEvents; - var componentEvents = isFunction_1(defaultEvents) ? defaultEvents(component.props) : defaultEvents; - memo = Array.isArray(componentEvents) ? (_memo = memo).concat.apply(_memo, _toConsumableArray$5(componentEvents)) : memo; - return memo; - }, []); - return events && events.length ? events : undefined; - }, - getGlobalEventNameFromKey: function (key) { - var match = key.match(GLOBAL_EVENT_REGEX); - return match && match[1] && match[1].toLowerCase(); - }, - getGlobalEvents: function (events) { - return pickBy_1(events, function (_, key) { - return GLOBAL_EVENT_REGEX.test(key); - }); - }, - omitGlobalEvents: function (events) { - return omitBy_1(events, function (_, key) { - return GLOBAL_EVENT_REGEX.test(key); - }); - }, - emulateReactEvent: function (event) { - return assign_1(event, { - nativeEvent: event - }); - } -}; - -function _toConsumableArray$6(arr) { return _arrayWithoutHoles$6(arr) || _iterableToArray$6(arr) || _nonIterableSpread$6(); } - -function _nonIterableSpread$6() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$6(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$6(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function _classCallCheck$7(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$7(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$7(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$7(Constructor.prototype, protoProps); if (staticProps) _defineProperties$7(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$6(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$6(self); } - -function _inherits$6(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } - -function _assertThisInitialized$6(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -var datumHasXandY = function (datum) { - return !isNil_1(datum._x) && !isNil_1(datum._y); -}; // used for checking state changes. Expected components can be passed in via options - - -var defaultComponents = [{ - name: "parent", - index: "parent" -}, { - name: "data" -}, { - name: "labels" -}]; -var addEvents = (function (WrappedComponent, options) { - return ( - /*#__PURE__*/ - function (_WrappedComponent) { - _inherits$6(addEvents, _WrappedComponent); - - function addEvents(props) { - var _this; - - _classCallCheck$7(this, addEvents); - - _this = _possibleConstructorReturn$6(this, (addEvents.__proto__ || Object.getPrototypeOf(addEvents)).call(this, props)); - var getScopedEvents = Events.getScopedEvents.bind(_assertThisInitialized$6(_this)); - var boundGetEvents = Events.getEvents.bind(_assertThisInitialized$6(_this)); - _this.state = {}; - - _this.getEvents = function (p, target, eventKey) { - return boundGetEvents(p, target, eventKey, getScopedEvents); - }; - - _this.getEventState = Events.getEventState.bind(_assertThisInitialized$6(_this)); - - var calculatedValues = _this.getCalculatedValues(props); - - _this.cacheValues(calculatedValues); - - _this.externalMutations = _this.getExternalMutations(props); - _this.calculatedState = _this.getStateChanges(props); - _this.globalEvents = {}; - _this.prevGlobalEventKeys = []; - _this.boundGlobalEvents = {}; - return _this; - } - - _createClass$7(addEvents, [{ - key: "shouldComponentUpdate", - value: function shouldComponentUpdate(nextProps) { - var externalMutations = this.getExternalMutations(nextProps); - var animating = this.props.animating || this.props.animate; - var newMutation = !reactFastCompare(externalMutations, this.externalMutations); - - if (animating || newMutation) { - this.cacheValues(this.getCalculatedValues(nextProps)); - this.externalMutations = externalMutations; - this.applyExternalMutations(nextProps, externalMutations); - return true; - } - - var calculatedState = this.getStateChanges(nextProps); - - if (!reactFastCompare(this.calculatedState, calculatedState)) { - this.cacheValues(this.getCalculatedValues(nextProps)); - return true; - } - - if (!reactFastCompare(this.props, nextProps)) { - this.cacheValues(this.getCalculatedValues(nextProps)); - return true; - } - - return false; - } - }, { - key: "componentDidMount", - value: function componentDidMount() { - var _this2 = this; - - var globalEventKeys = keys_1(this.globalEvents); - - globalEventKeys.forEach(function (key) { - return _this2.addGlobalListener(key); - }); - this.prevGlobalEventKeys = globalEventKeys; - } - }, { - key: "componentDidUpdate", - value: function componentDidUpdate(prevProps) { - var _this3 = this; - - var calculatedState = this.getStateChanges(prevProps); - this.calculatedState = calculatedState; - - var globalEventKeys = keys_1(this.globalEvents); - - var removedGlobalEventKeys = difference_1(this.prevGlobalEventKeys, globalEventKeys); - - removedGlobalEventKeys.forEach(function (key) { - return _this3.removeGlobalListener(key); - }); - - var addedGlobalEventKeys = difference_1(globalEventKeys, this.prevGlobalEventKeys); - - addedGlobalEventKeys.forEach(function (key) { - return _this3.addGlobalListener(key); - }); - this.prevGlobalEventKeys = globalEventKeys; - } - }, { - key: "componentWillUnmount", - value: function componentWillUnmount() { - var _this4 = this; - - this.prevGlobalEventKeys.forEach(function (key) { - return _this4.removeGlobalListener(key); - }); - } - }, { - key: "addGlobalListener", - value: function addGlobalListener(key) { - var _this5 = this; - - var boundListener = function (event) { - var listener = _this5.globalEvents[key]; - return listener && listener(Events.emulateReactEvent(event)); - }; - - this.boundGlobalEvents[key] = boundListener; - window.addEventListener(Events.getGlobalEventNameFromKey(key), boundListener); - } - }, { - key: "removeGlobalListener", - value: function removeGlobalListener(key) { - window.removeEventListener(Events.getGlobalEventNameFromKey(key), this.boundGlobalEvents[key]); - } // compile all state changes from own and parent state. Order doesn't matter, as any state - // state change should trigger a re-render - - }, { - key: "getStateChanges", - value: function getStateChanges(props) { - var _this6 = this; - - if (!this.hasEvents) { - return {}; - } - - var getState = function (key, type) { - var result = defaults_1({}, _this6.getEventState(key, type), _this6.getSharedEventState(key, type)); - - return isEmpty_1(result) ? undefined : result; - }; - - options = options || {}; - var components = options.components || defaultComponents; - var stateChanges = components.map(function (component) { - if (!props.standalone && component.name === "parent") { - // don't check for changes on parent props for non-standalone components - return undefined; - } else { - return component.index !== undefined ? getState(component.index, component.name) : _this6.dataKeys.map(function (key) { - return getState(key, component.name); - }).filter(Boolean); - } - }).filter(Boolean); - return stateChanges; - } - }, { - key: "applyExternalMutations", - value: function applyExternalMutations(props, externalMutations) { - if (!isEmpty_1(externalMutations)) { - var callbacks = props.externalEventMutations.reduce(function (memo, mutation) { - memo = isFunction_1(mutation.callback) ? memo.concat(mutation.callback) : memo; - return memo; - }, []); - var compiledCallbacks = callbacks.length ? function () { - callbacks.forEach(function (c) { - return c(); - }); - } : undefined; - this.setState(externalMutations, compiledCallbacks); - } - } - }, { - key: "getCalculatedValues", - value: function getCalculatedValues(props) { - var sharedEvents = props.sharedEvents; - var components = WrappedComponent.expectedComponents; - var componentEvents = Events.getComponentEvents(props, components); - var getSharedEventState = sharedEvents && isFunction_1(sharedEvents.getEventState) ? sharedEvents.getEventState : function () { - return undefined; - }; - var baseProps = this.getBaseProps(props, getSharedEventState); - - var dataKeys = keys_1(baseProps).filter(function (key) { - return key !== "parent"; - }); - - var hasEvents = props.events || props.sharedEvents || componentEvents; - var events = this.getAllEvents(props); - return { - componentEvents: componentEvents, - getSharedEventState: getSharedEventState, - baseProps: baseProps, - dataKeys: dataKeys, - hasEvents: hasEvents, - events: events - }; - } - }, { - key: "getExternalMutations", - value: function getExternalMutations(props) { - var sharedEvents = props.sharedEvents, - externalEventMutations = props.externalEventMutations; - return isEmpty_1(externalEventMutations) || sharedEvents ? undefined : Events.getExternalMutations(externalEventMutations, this.baseProps, this.state); - } - }, { - key: "cacheValues", - value: function cacheValues(obj) { - var _this7 = this; - - keys_1(obj).forEach(function (key) { - _this7[key] = obj[key]; - }); - } - }, { - key: "getBaseProps", - value: function getBaseProps(props, getSharedEventState) { - getSharedEventState = getSharedEventState || this.getSharedEventState; - var sharedParentState = getSharedEventState("parent", "parent"); - var parentState = this.getEventState("parent", "parent"); - - var baseParentProps = defaults_1({}, parentState, sharedParentState); - - var parentPropsList = baseParentProps.parentControlledProps; - var parentProps = parentPropsList ? pick_1(baseParentProps, parentPropsList) : {}; - - var modifiedProps = defaults_1({}, parentProps, props); - - return isFunction_1(WrappedComponent.getBaseProps) ? WrappedComponent.getBaseProps(modifiedProps) : {}; - } - }, { - key: "getAllEvents", - value: function getAllEvents(props) { - if (Array.isArray(this.componentEvents)) { - var _componentEvents; - - return Array.isArray(props.events) ? (_componentEvents = this.componentEvents).concat.apply(_componentEvents, _toConsumableArray$6(props.events)) : this.componentEvents; - } - - return props.events; - } - }, { - key: "getComponentProps", - value: function getComponentProps(component, type, index) { - var name = this.props.name || WrappedComponent.role; - var key = this.dataKeys && this.dataKeys[index] || index; - var id = "".concat(name, "-").concat(type, "-").concat(key); - var baseProps = this.baseProps[key] && this.baseProps[key][type] || this.baseProps[key]; - - if (!baseProps && !this.hasEvents) { - return undefined; - } - - if (this.hasEvents) { - var baseEvents = this.getEvents(this.props, type, key); - - var componentProps = defaults_1({ - index: index, - key: id - }, this.getEventState(key, type), this.getSharedEventState(key, type), component.props, baseProps, { - id: id - }); - - var events = defaults_1({}, Events.getPartialEvents(baseEvents, key, componentProps), componentProps.events); - - return assign_1({}, componentProps, { - events: events - }); - } - - return defaults_1({ - index: index, - key: id - }, component.props, baseProps, { - id: id - }); - } - }, { - key: "renderContainer", - value: function renderContainer(component, children) { - var isContainer = component.type && component.type.role === "container"; - var parentProps = isContainer ? this.getComponentProps(component, "parent", "parent") : {}; - - if (parentProps.events) { - this.globalEvents = Events.getGlobalEvents(parentProps.events); - parentProps.events = Events.omitGlobalEvents(parentProps.events); - } - - return React__default.cloneElement(component, parentProps, children); - } - }, { - key: "animateComponent", - value: function animateComponent(props, defaultAnimationWhitelist) { - var animationWhitelist = props.animate && props.animate.animationWhitelist ? props.animate.animationWhitelist : defaultAnimationWhitelist; - return React__default.createElement(VictoryTransition, { - animate: props.animate, - animationWhitelist: animationWhitelist - }, React__default.createElement(this.constructor, props)); - } // Used by `VictoryLine` and `VictoryArea` - - }, { - key: "renderContinuousData", - value: function renderContinuousData(props) { - var _this8 = this; - - var dataComponent = props.dataComponent, - labelComponent = props.labelComponent, - groupComponent = props.groupComponent; - - var dataKeys = without_1(this.dataKeys, "all"); - - var labelComponents = dataKeys.reduce(function (memo, key) { - var labelProps = _this8.getComponentProps(labelComponent, "labels", key); - - if (labelProps && labelProps.text !== undefined && labelProps.text !== null) { - memo = memo.concat(React__default.cloneElement(labelComponent, labelProps)); - } - - return memo; - }, []); - var dataProps = this.getComponentProps(dataComponent, "data", "all"); - var children = [React__default.cloneElement(dataComponent, dataProps)].concat(_toConsumableArray$6(labelComponents)); - return this.renderContainer(groupComponent, children); - } - }, { - key: "renderData", - value: function renderData(props) { - var _this9 = this; - - var shouldRenderDatum = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : datumHasXandY; - var dataComponent = props.dataComponent, - labelComponent = props.labelComponent, - groupComponent = props.groupComponent; - var dataComponents = this.dataKeys.reduce(function (validDataComponents, _dataKey, index) { - var dataProps = _this9.getComponentProps(dataComponent, "data", index); - - if (shouldRenderDatum(dataProps.datum)) { - validDataComponents.push(React__default.cloneElement(dataComponent, dataProps)); - } - - return validDataComponents; - }, []); - var labelComponents = this.dataKeys.map(function (_dataKey, index) { - var labelProps = _this9.getComponentProps(labelComponent, "labels", index); - - if (labelProps.text !== undefined && labelProps.text !== null) { - return React__default.cloneElement(labelComponent, labelProps); - } - - return undefined; - }).filter(Boolean); - - var children = _toConsumableArray$6(dataComponents).concat(_toConsumableArray$6(labelComponents)); - - return this.renderContainer(groupComponent, children); - } - }]); - - return addEvents; - }(WrappedComponent) - ); -}); - -/** - * Performs a deep comparison between two values to determine if they are - * equivalent. - * - * **Note:** This method supports comparing arrays, array buffers, booleans, - * date objects, error objects, maps, numbers, `Object` objects, regexes, - * sets, strings, symbols, and typed arrays. `Object` objects are compared - * by their own, not inherited, enumerable properties. Functions and DOM - * nodes are compared by strict equality, i.e. `===`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {boolean} Returns `true` if the values are equivalent, else `false`. - * @example - * - * var object = { 'a': 1 }; - * var other = { 'a': 1 }; - * - * _.isEqual(object, other); - * // => true - * - * object === other; - * // => false - */ -function isEqual(value, other) { - return _baseIsEqual(value, other); -} - -var isEqual_1 = isEqual; - -/** - * Gets the last element of `array`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to query. - * @returns {*} Returns the last element of `array`. - * @example - * - * _.last([1, 2, 3]); - * // => 3 - */ -function last(array) { - var length = array == null ? 0 : array.length; - return length ? array[length - 1] : undefined; -} - -var last_1 = last; - -function ascending(a, b) { - return a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN; -} - -function bisector(compare) { - if (compare.length === 1) compare = ascendingComparator(compare); - return { - left: function(a, x, lo, hi) { - if (lo == null) lo = 0; - if (hi == null) hi = a.length; - while (lo < hi) { - var mid = lo + hi >>> 1; - if (compare(a[mid], x) < 0) lo = mid + 1; - else hi = mid; - } - return lo; - }, - right: function(a, x, lo, hi) { - if (lo == null) lo = 0; - if (hi == null) hi = a.length; - while (lo < hi) { - var mid = lo + hi >>> 1; - if (compare(a[mid], x) > 0) hi = mid; - else lo = mid + 1; - } - return lo; - } - }; -} - -function ascendingComparator(f) { - return function(d, x) { - return ascending(f(d), x); - }; -} - -var ascendingBisect = bisector(ascending); -var bisectRight = ascendingBisect.right; - -function number(x) { - return x === null ? NaN : +x; -} - -function sequence(start, stop, step) { - start = +start, stop = +stop, step = (n = arguments.length) < 2 ? (stop = start, start = 0, 1) : n < 3 ? 1 : +step; - - var i = -1, - n = Math.max(0, Math.ceil((stop - start) / step)) | 0, - range = new Array(n); - - while (++i < n) { - range[i] = start + i * step; - } - - return range; -} - -var e10 = Math.sqrt(50), - e5 = Math.sqrt(10), - e2 = Math.sqrt(2); - -function ticks(start, stop, count) { - var reverse, - i = -1, - n, - ticks, - step; - - stop = +stop, start = +start, count = +count; - if (start === stop && count > 0) return [start]; - if (reverse = stop < start) n = start, start = stop, stop = n; - if ((step = tickIncrement(start, stop, count)) === 0 || !isFinite(step)) return []; - - if (step > 0) { - start = Math.ceil(start / step); - stop = Math.floor(stop / step); - ticks = new Array(n = Math.ceil(stop - start + 1)); - while (++i < n) ticks[i] = (start + i) * step; - } else { - start = Math.floor(start * step); - stop = Math.ceil(stop * step); - ticks = new Array(n = Math.ceil(start - stop + 1)); - while (++i < n) ticks[i] = (start - i) / step; - } - - if (reverse) ticks.reverse(); - - return ticks; -} - -function tickIncrement(start, stop, count) { - var step = (stop - start) / Math.max(0, count), - power = Math.floor(Math.log(step) / Math.LN10), - error = step / Math.pow(10, power); - return power >= 0 - ? (error >= e10 ? 10 : error >= e5 ? 5 : error >= e2 ? 2 : 1) * Math.pow(10, power) - : -Math.pow(10, -power) / (error >= e10 ? 10 : error >= e5 ? 5 : error >= e2 ? 2 : 1); -} - -function tickStep(start, stop, count) { - var step0 = Math.abs(stop - start) / Math.max(0, count), - step1 = Math.pow(10, Math.floor(Math.log(step0) / Math.LN10)), - error = step0 / step1; - if (error >= e10) step1 *= 10; - else if (error >= e5) step1 *= 5; - else if (error >= e2) step1 *= 2; - return stop < start ? -step1 : step1; -} - -function d3Quantile(values, p, valueof) { - if (valueof == null) valueof = number; - if (!(n = values.length)) return; - if ((p = +p) <= 0 || n < 2) return +valueof(values[0], 0, values); - if (p >= 1) return +valueof(values[n - 1], n - 1, values); - var n, - i = (n - 1) * p, - i0 = Math.floor(i), - value0 = +valueof(values[i0], i0, values), - value1 = +valueof(values[i0 + 1], i0 + 1, values); - return value0 + (value1 - value0) * (i - i0); -} - -var prefix = "$"; - -function Map$1() {} - -Map$1.prototype = map.prototype = { - constructor: Map$1, - has: function(key) { - return (prefix + key) in this; - }, - get: function(key) { - return this[prefix + key]; - }, - set: function(key, value) { - this[prefix + key] = value; - return this; - }, - remove: function(key) { - var property = prefix + key; - return property in this && delete this[property]; - }, - clear: function() { - for (var property in this) if (property[0] === prefix) delete this[property]; - }, - keys: function() { - var keys = []; - for (var property in this) if (property[0] === prefix) keys.push(property.slice(1)); - return keys; - }, - values: function() { - var values = []; - for (var property in this) if (property[0] === prefix) values.push(this[property]); - return values; - }, - entries: function() { - var entries = []; - for (var property in this) if (property[0] === prefix) entries.push({key: property.slice(1), value: this[property]}); - return entries; - }, - size: function() { - var size = 0; - for (var property in this) if (property[0] === prefix) ++size; - return size; - }, - empty: function() { - for (var property in this) if (property[0] === prefix) return false; - return true; - }, - each: function(f) { - for (var property in this) if (property[0] === prefix) f(this[property], property.slice(1), this); - } -}; - -function map(object, f) { - var map = new Map$1; - - // Copy constructor. - if (object instanceof Map$1) object.each(function(value, key) { map.set(key, value); }); - - // Index array by numeric index or specified key function. - else if (Array.isArray(object)) { - var i = -1, - n = object.length, - o; - - if (f == null) while (++i < n) map.set(i, object[i]); - else while (++i < n) map.set(f(o = object[i], i, object), o); - } - - // Convert object to map. - else if (object) for (var key in object) map.set(key, object[key]); - - return map; -} - -function Set$1() {} - -var proto = map.prototype; - -Set$1.prototype = set.prototype = { - constructor: Set$1, - has: proto.has, - add: function(value) { - value += ""; - this[prefix + value] = value; - return this; - }, - remove: proto.remove, - clear: proto.clear, - values: proto.keys, - size: proto.size, - empty: proto.empty, - each: proto.each -}; - -function set(object, f) { - var set = new Set$1; - - // Copy constructor. - if (object instanceof Set$1) object.each(function(value) { set.add(value); }); - - // Otherwise, assume it’s an array. - else if (object) { - var i = -1, n = object.length; - if (f == null) while (++i < n) set.add(object[i]); - else while (++i < n) set.add(f(object[i], i, object)); - } - - return set; -} - -var array = Array.prototype; - -var map$1 = array.map; -var slice = array.slice; - -var implicit = {name: "implicit"}; - -function ordinal(range) { - var index = map(), - domain = [], - unknown = implicit; - - range = range == null ? [] : slice.call(range); - - function scale(d) { - var key = d + "", i = index.get(key); - if (!i) { - if (unknown !== implicit) return unknown; - index.set(key, i = domain.push(d)); - } - return range[(i - 1) % range.length]; - } - - scale.domain = function(_) { - if (!arguments.length) return domain.slice(); - domain = [], index = map(); - var i = -1, n = _.length, d, key; - while (++i < n) if (!index.has(key = (d = _[i]) + "")) index.set(key, domain.push(d)); - return scale; - }; - - scale.range = function(_) { - return arguments.length ? (range = slice.call(_), scale) : range.slice(); - }; - - scale.unknown = function(_) { - return arguments.length ? (unknown = _, scale) : unknown; - }; - - scale.copy = function() { - return ordinal() - .domain(domain) - .range(range) - .unknown(unknown); - }; - - return scale; -} - -function band() { - var scale = ordinal().unknown(undefined), - domain = scale.domain, - ordinalRange = scale.range, - range = [0, 1], - step, - bandwidth, - round = false, - paddingInner = 0, - paddingOuter = 0, - align = 0.5; - - delete scale.unknown; - - function rescale() { - var n = domain().length, - reverse = range[1] < range[0], - start = range[reverse - 0], - stop = range[1 - reverse]; - step = (stop - start) / Math.max(1, n - paddingInner + paddingOuter * 2); - if (round) step = Math.floor(step); - start += (stop - start - step * (n - paddingInner)) * align; - bandwidth = step * (1 - paddingInner); - if (round) start = Math.round(start), bandwidth = Math.round(bandwidth); - var values = sequence(n).map(function(i) { return start + step * i; }); - return ordinalRange(reverse ? values.reverse() : values); - } - - scale.domain = function(_) { - return arguments.length ? (domain(_), rescale()) : domain(); - }; - - scale.range = function(_) { - return arguments.length ? (range = [+_[0], +_[1]], rescale()) : range.slice(); - }; - - scale.rangeRound = function(_) { - return range = [+_[0], +_[1]], round = true, rescale(); - }; - - scale.bandwidth = function() { - return bandwidth; - }; - - scale.step = function() { - return step; - }; - - scale.round = function(_) { - return arguments.length ? (round = !!_, rescale()) : round; - }; - - scale.padding = function(_) { - return arguments.length ? (paddingInner = paddingOuter = Math.max(0, Math.min(1, _)), rescale()) : paddingInner; - }; - - scale.paddingInner = function(_) { - return arguments.length ? (paddingInner = Math.max(0, Math.min(1, _)), rescale()) : paddingInner; - }; - - scale.paddingOuter = function(_) { - return arguments.length ? (paddingOuter = Math.max(0, Math.min(1, _)), rescale()) : paddingOuter; - }; - - scale.align = function(_) { - return arguments.length ? (align = Math.max(0, Math.min(1, _)), rescale()) : align; - }; - - scale.copy = function() { - return band() - .domain(domain()) - .range(range) - .round(round) - .paddingInner(paddingInner) - .paddingOuter(paddingOuter) - .align(align); - }; - - return rescale(); -} - -function pointish(scale) { - var copy = scale.copy; - - scale.padding = scale.paddingOuter; - delete scale.paddingInner; - delete scale.paddingOuter; - - scale.copy = function() { - return pointish(copy()); - }; - - return scale; -} - -function point() { - return pointish(band().paddingInner(1)); -} - -function constant$2(x) { - return function() { - return x; - }; -} - -function number$1(x) { - return +x; -} - -var unit = [0, 1]; - -function deinterpolateLinear(a, b) { - return (b -= (a = +a)) - ? function(x) { return (x - a) / b; } - : constant$2(b); -} - -function deinterpolateClamp(deinterpolate) { - return function(a, b) { - var d = deinterpolate(a = +a, b = +b); - return function(x) { return x <= a ? 0 : x >= b ? 1 : d(x); }; - }; -} - -function reinterpolateClamp(reinterpolate) { - return function(a, b) { - var r = reinterpolate(a = +a, b = +b); - return function(t) { return t <= 0 ? a : t >= 1 ? b : r(t); }; - }; -} - -function bimap(domain, range, deinterpolate, reinterpolate) { - var d0 = domain[0], d1 = domain[1], r0 = range[0], r1 = range[1]; - if (d1 < d0) d0 = deinterpolate(d1, d0), r0 = reinterpolate(r1, r0); - else d0 = deinterpolate(d0, d1), r0 = reinterpolate(r0, r1); - return function(x) { return r0(d0(x)); }; -} - -function polymap(domain, range, deinterpolate, reinterpolate) { - var j = Math.min(domain.length, range.length) - 1, - d = new Array(j), - r = new Array(j), - i = -1; - - // Reverse descending domains. - if (domain[j] < domain[0]) { - domain = domain.slice().reverse(); - range = range.slice().reverse(); - } - - while (++i < j) { - d[i] = deinterpolate(domain[i], domain[i + 1]); - r[i] = reinterpolate(range[i], range[i + 1]); - } - - return function(x) { - var i = bisectRight(domain, x, 1, j) - 1; - return r[i](d[i](x)); - }; -} - -function copy(source, target) { - return target - .domain(source.domain()) - .range(source.range()) - .interpolate(source.interpolate()) - .clamp(source.clamp()); -} - -// deinterpolate(a, b)(x) takes a domain value x in [a,b] and returns the corresponding parameter t in [0,1]. -// reinterpolate(a, b)(t) takes a parameter t in [0,1] and returns the corresponding domain value x in [a,b]. -function continuous(deinterpolate, reinterpolate) { - var domain = unit, - range = unit, - interpolate = interpolateValue, - clamp = false, - piecewise, - output, - input; - - function rescale() { - piecewise = Math.min(domain.length, range.length) > 2 ? polymap : bimap; - output = input = null; - return scale; - } - - function scale(x) { - return (output || (output = piecewise(domain, range, clamp ? deinterpolateClamp(deinterpolate) : deinterpolate, interpolate)))(+x); - } - - scale.invert = function(y) { - return (input || (input = piecewise(range, domain, deinterpolateLinear, clamp ? reinterpolateClamp(reinterpolate) : reinterpolate)))(+y); - }; - - scale.domain = function(_) { - return arguments.length ? (domain = map$1.call(_, number$1), rescale()) : domain.slice(); - }; - - scale.range = function(_) { - return arguments.length ? (range = slice.call(_), rescale()) : range.slice(); - }; - - scale.rangeRound = function(_) { - return range = slice.call(_), interpolate = interpolateRound, rescale(); - }; - - scale.clamp = function(_) { - return arguments.length ? (clamp = !!_, rescale()) : clamp; - }; - - scale.interpolate = function(_) { - return arguments.length ? (interpolate = _, rescale()) : interpolate; - }; - - return rescale(); -} - -function formatDecimal(x) { - return Math.abs(x = Math.round(x)) >= 1e21 - ? x.toLocaleString("en").replace(/,/g, "") - : x.toString(10); -} - -// Computes the decimal coefficient and exponent of the specified number x with -// significant digits p, where x is positive and p is in [1, 21] or undefined. -// For example, formatDecimalParts(1.23) returns ["123", 0]. -function formatDecimalParts(x, p) { - if ((i = (x = p ? x.toExponential(p - 1) : x.toExponential()).indexOf("e")) < 0) return null; // NaN, ±Infinity - var i, coefficient = x.slice(0, i); - - // The string returned by toExponential either has the form \d\.\d+e[-+]\d+ - // (e.g., 1.2e+3) or the form \de[-+]\d+ (e.g., 1e+3). - return [ - coefficient.length > 1 ? coefficient[0] + coefficient.slice(2) : coefficient, - +x.slice(i + 1) - ]; -} - -function exponent$1(x) { - return x = formatDecimalParts(Math.abs(x)), x ? x[1] : NaN; -} - -function formatGroup(grouping, thousands) { - return function(value, width) { - var i = value.length, - t = [], - j = 0, - g = grouping[0], - length = 0; - - while (i > 0 && g > 0) { - if (length + g + 1 > width) g = Math.max(1, width - length); - t.push(value.substring(i -= g, i + g)); - if ((length += g + 1) > width) break; - g = grouping[j = (j + 1) % grouping.length]; - } - - return t.reverse().join(thousands); - }; -} - -function formatNumerals(numerals) { - return function(value) { - return value.replace(/[0-9]/g, function(i) { - return numerals[+i]; - }); - }; -} - -// [[fill]align][sign][symbol][0][width][,][.precision][~][type] -var re = /^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i; - -function formatSpecifier(specifier) { - if (!(match = re.exec(specifier))) throw new Error("invalid format: " + specifier); - var match; - return new FormatSpecifier({ - fill: match[1], - align: match[2], - sign: match[3], - symbol: match[4], - zero: match[5], - width: match[6], - comma: match[7], - precision: match[8] && match[8].slice(1), - trim: match[9], - type: match[10] - }); -} - -formatSpecifier.prototype = FormatSpecifier.prototype; // instanceof - -function FormatSpecifier(specifier) { - this.fill = specifier.fill === undefined ? " " : specifier.fill + ""; - this.align = specifier.align === undefined ? ">" : specifier.align + ""; - this.sign = specifier.sign === undefined ? "-" : specifier.sign + ""; - this.symbol = specifier.symbol === undefined ? "" : specifier.symbol + ""; - this.zero = !!specifier.zero; - this.width = specifier.width === undefined ? undefined : +specifier.width; - this.comma = !!specifier.comma; - this.precision = specifier.precision === undefined ? undefined : +specifier.precision; - this.trim = !!specifier.trim; - this.type = specifier.type === undefined ? "" : specifier.type + ""; -} - -FormatSpecifier.prototype.toString = function() { - return this.fill - + this.align - + this.sign - + this.symbol - + (this.zero ? "0" : "") - + (this.width === undefined ? "" : Math.max(1, this.width | 0)) - + (this.comma ? "," : "") - + (this.precision === undefined ? "" : "." + Math.max(0, this.precision | 0)) - + (this.trim ? "~" : "") - + this.type; -}; - -// Trims insignificant zeros, e.g., replaces 1.2000k with 1.2k. -function formatTrim(s) { - out: for (var n = s.length, i = 1, i0 = -1, i1; i < n; ++i) { - switch (s[i]) { - case ".": i0 = i1 = i; break; - case "0": if (i0 === 0) i0 = i; i1 = i; break; - default: if (!+s[i]) break out; if (i0 > 0) i0 = 0; break; - } - } - return i0 > 0 ? s.slice(0, i0) + s.slice(i1 + 1) : s; -} - -var prefixExponent; - -function formatPrefixAuto(x, p) { - var d = formatDecimalParts(x, p); - if (!d) return x + ""; - var coefficient = d[0], - exponent = d[1], - i = exponent - (prefixExponent = Math.max(-8, Math.min(8, Math.floor(exponent / 3))) * 3) + 1, - n = coefficient.length; - return i === n ? coefficient - : i > n ? coefficient + new Array(i - n + 1).join("0") - : i > 0 ? coefficient.slice(0, i) + "." + coefficient.slice(i) - : "0." + new Array(1 - i).join("0") + formatDecimalParts(x, Math.max(0, p + i - 1))[0]; // less than 1y! -} - -function formatRounded(x, p) { - var d = formatDecimalParts(x, p); - if (!d) return x + ""; - var coefficient = d[0], - exponent = d[1]; - return exponent < 0 ? "0." + new Array(-exponent).join("0") + coefficient - : coefficient.length > exponent + 1 ? coefficient.slice(0, exponent + 1) + "." + coefficient.slice(exponent + 1) - : coefficient + new Array(exponent - coefficient.length + 2).join("0"); -} - -var formatTypes = { - "%": function(x, p) { return (x * 100).toFixed(p); }, - "b": function(x) { return Math.round(x).toString(2); }, - "c": function(x) { return x + ""; }, - "d": formatDecimal, - "e": function(x, p) { return x.toExponential(p); }, - "f": function(x, p) { return x.toFixed(p); }, - "g": function(x, p) { return x.toPrecision(p); }, - "o": function(x) { return Math.round(x).toString(8); }, - "p": function(x, p) { return formatRounded(x * 100, p); }, - "r": formatRounded, - "s": formatPrefixAuto, - "X": function(x) { return Math.round(x).toString(16).toUpperCase(); }, - "x": function(x) { return Math.round(x).toString(16); } -}; - -function identity$1(x) { - return x; -} - -var map$2 = Array.prototype.map, - prefixes = ["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"]; - -function formatLocale(locale) { - var group = locale.grouping === undefined || locale.thousands === undefined ? identity$1 : formatGroup(map$2.call(locale.grouping, Number), locale.thousands + ""), - currencyPrefix = locale.currency === undefined ? "" : locale.currency[0] + "", - currencySuffix = locale.currency === undefined ? "" : locale.currency[1] + "", - decimal = locale.decimal === undefined ? "." : locale.decimal + "", - numerals = locale.numerals === undefined ? identity$1 : formatNumerals(map$2.call(locale.numerals, String)), - percent = locale.percent === undefined ? "%" : locale.percent + "", - minus = locale.minus === undefined ? "-" : locale.minus + "", - nan = locale.nan === undefined ? "NaN" : locale.nan + ""; - - function newFormat(specifier) { - specifier = formatSpecifier(specifier); - - var fill = specifier.fill, - align = specifier.align, - sign = specifier.sign, - symbol = specifier.symbol, - zero = specifier.zero, - width = specifier.width, - comma = specifier.comma, - precision = specifier.precision, - trim = specifier.trim, - type = specifier.type; - - // The "n" type is an alias for ",g". - if (type === "n") comma = true, type = "g"; - - // The "" type, and any invalid type, is an alias for ".12~g". - else if (!formatTypes[type]) precision === undefined && (precision = 12), trim = true, type = "g"; - - // If zero fill is specified, padding goes after sign and before digits. - if (zero || (fill === "0" && align === "=")) zero = true, fill = "0", align = "="; - - // Compute the prefix and suffix. - // For SI-prefix, the suffix is lazily computed. - var prefix = symbol === "$" ? currencyPrefix : symbol === "#" && /[boxX]/.test(type) ? "0" + type.toLowerCase() : "", - suffix = symbol === "$" ? currencySuffix : /[%p]/.test(type) ? percent : ""; - - // What format function should we use? - // Is this an integer type? - // Can this type generate exponential notation? - var formatType = formatTypes[type], - maybeSuffix = /[defgprs%]/.test(type); - - // Set the default precision if not specified, - // or clamp the specified precision to the supported range. - // For significant precision, it must be in [1, 21]. - // For fixed precision, it must be in [0, 20]. - precision = precision === undefined ? 6 - : /[gprs]/.test(type) ? Math.max(1, Math.min(21, precision)) - : Math.max(0, Math.min(20, precision)); - - function format(value) { - var valuePrefix = prefix, - valueSuffix = suffix, - i, n, c; - - if (type === "c") { - valueSuffix = formatType(value) + valueSuffix; - value = ""; - } else { - value = +value; - - // Determine the sign. -0 is not less than 0, but 1 / -0 is! - var valueNegative = value < 0 || 1 / value < 0; - - // Perform the initial formatting. - value = isNaN(value) ? nan : formatType(Math.abs(value), precision); - - // Trim insignificant zeros. - if (trim) value = formatTrim(value); - - // If a negative value rounds to zero after formatting, and no explicit positive sign is requested, hide the sign. - if (valueNegative && +value === 0 && sign !== "+") valueNegative = false; - - // Compute the prefix and suffix. - valuePrefix = (valueNegative ? (sign === "(" ? sign : minus) : sign === "-" || sign === "(" ? "" : sign) + valuePrefix; - valueSuffix = (type === "s" ? prefixes[8 + prefixExponent / 3] : "") + valueSuffix + (valueNegative && sign === "(" ? ")" : ""); - - // Break the formatted value into the integer “value” part that can be - // grouped, and fractional or exponential “suffix” part that is not. - if (maybeSuffix) { - i = -1, n = value.length; - while (++i < n) { - if (c = value.charCodeAt(i), 48 > c || c > 57) { - valueSuffix = (c === 46 ? decimal + value.slice(i + 1) : value.slice(i)) + valueSuffix; - value = value.slice(0, i); - break; - } - } - } - } - - // If the fill character is not "0", grouping is applied before padding. - if (comma && !zero) value = group(value, Infinity); - - // Compute the padding. - var length = valuePrefix.length + value.length + valueSuffix.length, - padding = length < width ? new Array(width - length + 1).join(fill) : ""; - - // If the fill character is "0", grouping is applied after padding. - if (comma && zero) value = group(padding + value, padding.length ? width - valueSuffix.length : Infinity), padding = ""; - - // Reconstruct the final output based on the desired alignment. - switch (align) { - case "<": value = valuePrefix + value + valueSuffix + padding; break; - case "=": value = valuePrefix + padding + value + valueSuffix; break; - case "^": value = padding.slice(0, length = padding.length >> 1) + valuePrefix + value + valueSuffix + padding.slice(length); break; - default: value = padding + valuePrefix + value + valueSuffix; break; - } - - return numerals(value); - } - - format.toString = function() { - return specifier + ""; - }; - - return format; - } - - function formatPrefix(specifier, value) { - var f = newFormat((specifier = formatSpecifier(specifier), specifier.type = "f", specifier)), - e = Math.max(-8, Math.min(8, Math.floor(exponent$1(value) / 3))) * 3, - k = Math.pow(10, -e), - prefix = prefixes[8 + e / 3]; - return function(value) { - return f(k * value) + prefix; - }; - } - - return { - format: newFormat, - formatPrefix: formatPrefix - }; -} - -var locale; -var format; -var formatPrefix; - -defaultLocale({ - decimal: ".", - thousands: ",", - grouping: [3], - currency: ["$", ""], - minus: "-" -}); - -function defaultLocale(definition) { - locale = formatLocale(definition); - format = locale.format; - formatPrefix = locale.formatPrefix; - return locale; -} - -function precisionFixed(step) { - return Math.max(0, -exponent$1(Math.abs(step))); -} - -function precisionPrefix(step, value) { - return Math.max(0, Math.max(-8, Math.min(8, Math.floor(exponent$1(value) / 3))) * 3 - exponent$1(Math.abs(step))); -} - -function precisionRound(step, max) { - step = Math.abs(step), max = Math.abs(max) - step; - return Math.max(0, exponent$1(max) - exponent$1(step)) + 1; -} - -function tickFormat(domain, count, specifier) { - var start = domain[0], - stop = domain[domain.length - 1], - step = tickStep(start, stop, count == null ? 10 : count), - precision; - specifier = formatSpecifier(specifier == null ? ",f" : specifier); - switch (specifier.type) { - case "s": { - var value = Math.max(Math.abs(start), Math.abs(stop)); - if (specifier.precision == null && !isNaN(precision = precisionPrefix(step, value))) specifier.precision = precision; - return formatPrefix(specifier, value); - } - case "": - case "e": - case "g": - case "p": - case "r": { - if (specifier.precision == null && !isNaN(precision = precisionRound(step, Math.max(Math.abs(start), Math.abs(stop))))) specifier.precision = precision - (specifier.type === "e"); - break; - } - case "f": - case "%": { - if (specifier.precision == null && !isNaN(precision = precisionFixed(step))) specifier.precision = precision - (specifier.type === "%") * 2; - break; - } - } - return format(specifier); -} - -function linearish(scale) { - var domain = scale.domain; - - scale.ticks = function(count) { - var d = domain(); - return ticks(d[0], d[d.length - 1], count == null ? 10 : count); - }; - - scale.tickFormat = function(count, specifier) { - return tickFormat(domain(), count, specifier); - }; - - scale.nice = function(count) { - if (count == null) count = 10; - - var d = domain(), - i0 = 0, - i1 = d.length - 1, - start = d[i0], - stop = d[i1], - step; - - if (stop < start) { - step = start, start = stop, stop = step; - step = i0, i0 = i1, i1 = step; - } - - step = tickIncrement(start, stop, count); - - if (step > 0) { - start = Math.floor(start / step) * step; - stop = Math.ceil(stop / step) * step; - step = tickIncrement(start, stop, count); - } else if (step < 0) { - start = Math.ceil(start * step) / step; - stop = Math.floor(stop * step) / step; - step = tickIncrement(start, stop, count); - } - - if (step > 0) { - d[i0] = Math.floor(start / step) * step; - d[i1] = Math.ceil(stop / step) * step; - domain(d); - } else if (step < 0) { - d[i0] = Math.ceil(start * step) / step; - d[i1] = Math.floor(stop * step) / step; - domain(d); - } - - return scale; - }; - - return scale; -} - -function linear$2() { - var scale = continuous(deinterpolateLinear, reinterpolate); - - scale.copy = function() { - return copy(scale, linear$2()); - }; - - return linearish(scale); -} - -function identity$2() { - var domain = [0, 1]; - - function scale(x) { - return +x; - } - - scale.invert = scale; - - scale.domain = scale.range = function(_) { - return arguments.length ? (domain = map$1.call(_, number$1), scale) : domain.slice(); - }; - - scale.copy = function() { - return identity$2().domain(domain); - }; - - return linearish(scale); -} - -function nice(domain, interval) { - domain = domain.slice(); - - var i0 = 0, - i1 = domain.length - 1, - x0 = domain[i0], - x1 = domain[i1], - t; - - if (x1 < x0) { - t = i0, i0 = i1, i1 = t; - t = x0, x0 = x1, x1 = t; - } - - domain[i0] = interval.floor(x0); - domain[i1] = interval.ceil(x1); - return domain; -} - -function deinterpolate(a, b) { - return (b = Math.log(b / a)) - ? function(x) { return Math.log(x / a) / b; } - : constant$2(b); -} - -function reinterpolate$1(a, b) { - return a < 0 - ? function(t) { return -Math.pow(-b, t) * Math.pow(-a, 1 - t); } - : function(t) { return Math.pow(b, t) * Math.pow(a, 1 - t); }; -} - -function pow10(x) { - return isFinite(x) ? +("1e" + x) : x < 0 ? 0 : x; -} - -function powp(base) { - return base === 10 ? pow10 - : base === Math.E ? Math.exp - : function(x) { return Math.pow(base, x); }; -} - -function logp(base) { - return base === Math.E ? Math.log - : base === 10 && Math.log10 - || base === 2 && Math.log2 - || (base = Math.log(base), function(x) { return Math.log(x) / base; }); -} - -function reflect(f) { - return function(x) { - return -f(-x); - }; -} - -function log() { - var scale = continuous(deinterpolate, reinterpolate$1).domain([1, 10]), - domain = scale.domain, - base = 10, - logs = logp(10), - pows = powp(10); - - function rescale() { - logs = logp(base), pows = powp(base); - if (domain()[0] < 0) logs = reflect(logs), pows = reflect(pows); - return scale; - } - - scale.base = function(_) { - return arguments.length ? (base = +_, rescale()) : base; - }; - - scale.domain = function(_) { - return arguments.length ? (domain(_), rescale()) : domain(); - }; - - scale.ticks = function(count) { - var d = domain(), - u = d[0], - v = d[d.length - 1], - r; - - if (r = v < u) i = u, u = v, v = i; - - var i = logs(u), - j = logs(v), - p, - k, - t, - n = count == null ? 10 : +count, - z = []; - - if (!(base % 1) && j - i < n) { - i = Math.round(i) - 1, j = Math.round(j) + 1; - if (u > 0) for (; i < j; ++i) { - for (k = 1, p = pows(i); k < base; ++k) { - t = p * k; - if (t < u) continue; - if (t > v) break; - z.push(t); - } - } else for (; i < j; ++i) { - for (k = base - 1, p = pows(i); k >= 1; --k) { - t = p * k; - if (t < u) continue; - if (t > v) break; - z.push(t); - } - } - } else { - z = ticks(i, j, Math.min(j - i, n)).map(pows); - } - - return r ? z.reverse() : z; - }; - - scale.tickFormat = function(count, specifier) { - if (specifier == null) specifier = base === 10 ? ".0e" : ","; - if (typeof specifier !== "function") specifier = format(specifier); - if (count === Infinity) return specifier; - if (count == null) count = 10; - var k = Math.max(1, base * count / scale.ticks().length); // TODO fast estimate? - return function(d) { - var i = d / pows(Math.round(logs(d))); - if (i * base < base - 0.5) i *= base; - return i <= k ? specifier(d) : ""; - }; - }; - - scale.nice = function() { - return domain(nice(domain(), { - floor: function(x) { return pows(Math.floor(logs(x))); }, - ceil: function(x) { return pows(Math.ceil(logs(x))); } - })); - }; - - scale.copy = function() { - return copy(scale, log().base(base)); - }; - - return scale; -} - -function raise(x, exponent) { - return x < 0 ? -Math.pow(-x, exponent) : Math.pow(x, exponent); -} - -function pow() { - var exponent = 1, - scale = continuous(deinterpolate, reinterpolate), - domain = scale.domain; - - function deinterpolate(a, b) { - return (b = raise(b, exponent) - (a = raise(a, exponent))) - ? function(x) { return (raise(x, exponent) - a) / b; } - : constant$2(b); - } - - function reinterpolate(a, b) { - b = raise(b, exponent) - (a = raise(a, exponent)); - return function(t) { return raise(a + b * t, 1 / exponent); }; - } - - scale.exponent = function(_) { - return arguments.length ? (exponent = +_, domain(domain())) : exponent; - }; - - scale.copy = function() { - return copy(scale, pow().exponent(exponent)); - }; - - return linearish(scale); -} - -function sqrt() { - return pow().exponent(0.5); -} - -function quantile() { - var domain = [], - range = [], - thresholds = []; - - function rescale() { - var i = 0, n = Math.max(1, range.length); - thresholds = new Array(n - 1); - while (++i < n) thresholds[i - 1] = d3Quantile(domain, i / n); - return scale; - } - - function scale(x) { - if (!isNaN(x = +x)) return range[bisectRight(thresholds, x)]; - } - - scale.invertExtent = function(y) { - var i = range.indexOf(y); - return i < 0 ? [NaN, NaN] : [ - i > 0 ? thresholds[i - 1] : domain[0], - i < thresholds.length ? thresholds[i] : domain[domain.length - 1] - ]; - }; - - scale.domain = function(_) { - if (!arguments.length) return domain.slice(); - domain = []; - for (var i = 0, n = _.length, d; i < n; ++i) if (d = _[i], d != null && !isNaN(d = +d)) domain.push(d); - domain.sort(ascending); - return rescale(); - }; - - scale.range = function(_) { - return arguments.length ? (range = slice.call(_), rescale()) : range.slice(); - }; - - scale.quantiles = function() { - return thresholds.slice(); - }; - - scale.copy = function() { - return quantile() - .domain(domain) - .range(range); - }; - - return scale; -} - -function quantize() { - var x0 = 0, - x1 = 1, - n = 1, - domain = [0.5], - range = [0, 1]; - - function scale(x) { - if (x <= x) return range[bisectRight(domain, x, 0, n)]; - } - - function rescale() { - var i = -1; - domain = new Array(n); - while (++i < n) domain[i] = ((i + 1) * x1 - (i - n) * x0) / (n + 1); - return scale; - } - - scale.domain = function(_) { - return arguments.length ? (x0 = +_[0], x1 = +_[1], rescale()) : [x0, x1]; - }; - - scale.range = function(_) { - return arguments.length ? (n = (range = slice.call(_)).length - 1, rescale()) : range.slice(); - }; - - scale.invertExtent = function(y) { - var i = range.indexOf(y); - return i < 0 ? [NaN, NaN] - : i < 1 ? [x0, domain[0]] - : i >= n ? [domain[n - 1], x1] - : [domain[i - 1], domain[i]]; - }; - - scale.copy = function() { - return quantize() - .domain([x0, x1]) - .range(range); - }; - - return linearish(scale); -} - -function threshold() { - var domain = [0.5], - range = [0, 1], - n = 1; - - function scale(x) { - if (x <= x) return range[bisectRight(domain, x, 0, n)]; - } - - scale.domain = function(_) { - return arguments.length ? (domain = slice.call(_), n = Math.min(domain.length, range.length - 1), scale) : domain.slice(); - }; - - scale.range = function(_) { - return arguments.length ? (range = slice.call(_), n = Math.min(domain.length, range.length - 1), scale) : range.slice(); - }; - - scale.invertExtent = function(y) { - var i = range.indexOf(y); - return [domain[i - 1], domain[i]]; - }; - - scale.copy = function() { - return threshold() - .domain(domain) - .range(range); - }; - - return scale; -} - -var t0 = new Date, - t1 = new Date; - -function newInterval(floori, offseti, count, field) { - - function interval(date) { - return floori(date = arguments.length === 0 ? new Date : new Date(+date)), date; - } - - interval.floor = function(date) { - return floori(date = new Date(+date)), date; - }; - - interval.ceil = function(date) { - return floori(date = new Date(date - 1)), offseti(date, 1), floori(date), date; - }; - - interval.round = function(date) { - var d0 = interval(date), - d1 = interval.ceil(date); - return date - d0 < d1 - date ? d0 : d1; - }; - - interval.offset = function(date, step) { - return offseti(date = new Date(+date), step == null ? 1 : Math.floor(step)), date; - }; - - interval.range = function(start, stop, step) { - var range = [], previous; - start = interval.ceil(start); - step = step == null ? 1 : Math.floor(step); - if (!(start < stop) || !(step > 0)) return range; // also handles Invalid Date - do range.push(previous = new Date(+start)), offseti(start, step), floori(start); - while (previous < start && start < stop); - return range; - }; - - interval.filter = function(test) { - return newInterval(function(date) { - if (date >= date) while (floori(date), !test(date)) date.setTime(date - 1); - }, function(date, step) { - if (date >= date) { - if (step < 0) while (++step <= 0) { - while (offseti(date, -1), !test(date)) {} // eslint-disable-line no-empty - } else while (--step >= 0) { - while (offseti(date, +1), !test(date)) {} // eslint-disable-line no-empty - } - } - }); - }; - - if (count) { - interval.count = function(start, end) { - t0.setTime(+start), t1.setTime(+end); - floori(t0), floori(t1); - return Math.floor(count(t0, t1)); - }; - - interval.every = function(step) { - step = Math.floor(step); - return !isFinite(step) || !(step > 0) ? null - : !(step > 1) ? interval - : interval.filter(field - ? function(d) { return field(d) % step === 0; } - : function(d) { return interval.count(0, d) % step === 0; }); - }; - } - - return interval; -} - -var millisecond = newInterval(function() { - // noop -}, function(date, step) { - date.setTime(+date + step); -}, function(start, end) { - return end - start; -}); - -// An optimized implementation for this simple case. -millisecond.every = function(k) { - k = Math.floor(k); - if (!isFinite(k) || !(k > 0)) return null; - if (!(k > 1)) return millisecond; - return newInterval(function(date) { - date.setTime(Math.floor(date / k) * k); - }, function(date, step) { - date.setTime(+date + step * k); - }, function(start, end) { - return (end - start) / k; - }); -}; - -var durationSecond = 1e3; -var durationMinute = 6e4; -var durationHour = 36e5; -var durationDay = 864e5; -var durationWeek = 6048e5; - -var second = newInterval(function(date) { - date.setTime(date - date.getMilliseconds()); -}, function(date, step) { - date.setTime(+date + step * durationSecond); -}, function(start, end) { - return (end - start) / durationSecond; -}, function(date) { - return date.getUTCSeconds(); -}); - -var minute = newInterval(function(date) { - date.setTime(date - date.getMilliseconds() - date.getSeconds() * durationSecond); -}, function(date, step) { - date.setTime(+date + step * durationMinute); -}, function(start, end) { - return (end - start) / durationMinute; -}, function(date) { - return date.getMinutes(); -}); - -var hour = newInterval(function(date) { - date.setTime(date - date.getMilliseconds() - date.getSeconds() * durationSecond - date.getMinutes() * durationMinute); -}, function(date, step) { - date.setTime(+date + step * durationHour); -}, function(start, end) { - return (end - start) / durationHour; -}, function(date) { - return date.getHours(); -}); - -var day = newInterval(function(date) { - date.setHours(0, 0, 0, 0); -}, function(date, step) { - date.setDate(date.getDate() + step); -}, function(start, end) { - return (end - start - (end.getTimezoneOffset() - start.getTimezoneOffset()) * durationMinute) / durationDay; -}, function(date) { - return date.getDate() - 1; -}); - -function weekday(i) { - return newInterval(function(date) { - date.setDate(date.getDate() - (date.getDay() + 7 - i) % 7); - date.setHours(0, 0, 0, 0); - }, function(date, step) { - date.setDate(date.getDate() + step * 7); - }, function(start, end) { - return (end - start - (end.getTimezoneOffset() - start.getTimezoneOffset()) * durationMinute) / durationWeek; - }); -} - -var sunday = weekday(0); -var monday = weekday(1); -var tuesday = weekday(2); -var wednesday = weekday(3); -var thursday = weekday(4); -var friday = weekday(5); -var saturday = weekday(6); - -var month = newInterval(function(date) { - date.setDate(1); - date.setHours(0, 0, 0, 0); -}, function(date, step) { - date.setMonth(date.getMonth() + step); -}, function(start, end) { - return end.getMonth() - start.getMonth() + (end.getFullYear() - start.getFullYear()) * 12; -}, function(date) { - return date.getMonth(); -}); - -var year = newInterval(function(date) { - date.setMonth(0, 1); - date.setHours(0, 0, 0, 0); -}, function(date, step) { - date.setFullYear(date.getFullYear() + step); -}, function(start, end) { - return end.getFullYear() - start.getFullYear(); -}, function(date) { - return date.getFullYear(); -}); - -// An optimized implementation for this simple case. -year.every = function(k) { - return !isFinite(k = Math.floor(k)) || !(k > 0) ? null : newInterval(function(date) { - date.setFullYear(Math.floor(date.getFullYear() / k) * k); - date.setMonth(0, 1); - date.setHours(0, 0, 0, 0); - }, function(date, step) { - date.setFullYear(date.getFullYear() + step * k); - }); -}; - -var utcMinute = newInterval(function(date) { - date.setUTCSeconds(0, 0); -}, function(date, step) { - date.setTime(+date + step * durationMinute); -}, function(start, end) { - return (end - start) / durationMinute; -}, function(date) { - return date.getUTCMinutes(); -}); - -var utcHour = newInterval(function(date) { - date.setUTCMinutes(0, 0, 0); -}, function(date, step) { - date.setTime(+date + step * durationHour); -}, function(start, end) { - return (end - start) / durationHour; -}, function(date) { - return date.getUTCHours(); -}); - -var utcDay = newInterval(function(date) { - date.setUTCHours(0, 0, 0, 0); -}, function(date, step) { - date.setUTCDate(date.getUTCDate() + step); -}, function(start, end) { - return (end - start) / durationDay; -}, function(date) { - return date.getUTCDate() - 1; -}); - -function utcWeekday(i) { - return newInterval(function(date) { - date.setUTCDate(date.getUTCDate() - (date.getUTCDay() + 7 - i) % 7); - date.setUTCHours(0, 0, 0, 0); - }, function(date, step) { - date.setUTCDate(date.getUTCDate() + step * 7); - }, function(start, end) { - return (end - start) / durationWeek; - }); -} - -var utcSunday = utcWeekday(0); -var utcMonday = utcWeekday(1); -var utcTuesday = utcWeekday(2); -var utcWednesday = utcWeekday(3); -var utcThursday = utcWeekday(4); -var utcFriday = utcWeekday(5); -var utcSaturday = utcWeekday(6); - -var utcMonth = newInterval(function(date) { - date.setUTCDate(1); - date.setUTCHours(0, 0, 0, 0); -}, function(date, step) { - date.setUTCMonth(date.getUTCMonth() + step); -}, function(start, end) { - return end.getUTCMonth() - start.getUTCMonth() + (end.getUTCFullYear() - start.getUTCFullYear()) * 12; -}, function(date) { - return date.getUTCMonth(); -}); - -var utcYear = newInterval(function(date) { - date.setUTCMonth(0, 1); - date.setUTCHours(0, 0, 0, 0); -}, function(date, step) { - date.setUTCFullYear(date.getUTCFullYear() + step); -}, function(start, end) { - return end.getUTCFullYear() - start.getUTCFullYear(); -}, function(date) { - return date.getUTCFullYear(); -}); - -// An optimized implementation for this simple case. -utcYear.every = function(k) { - return !isFinite(k = Math.floor(k)) || !(k > 0) ? null : newInterval(function(date) { - date.setUTCFullYear(Math.floor(date.getUTCFullYear() / k) * k); - date.setUTCMonth(0, 1); - date.setUTCHours(0, 0, 0, 0); - }, function(date, step) { - date.setUTCFullYear(date.getUTCFullYear() + step * k); - }); -}; - -function localDate(d) { - if (0 <= d.y && d.y < 100) { - var date = new Date(-1, d.m, d.d, d.H, d.M, d.S, d.L); - date.setFullYear(d.y); - return date; - } - return new Date(d.y, d.m, d.d, d.H, d.M, d.S, d.L); -} - -function utcDate(d) { - if (0 <= d.y && d.y < 100) { - var date = new Date(Date.UTC(-1, d.m, d.d, d.H, d.M, d.S, d.L)); - date.setUTCFullYear(d.y); - return date; - } - return new Date(Date.UTC(d.y, d.m, d.d, d.H, d.M, d.S, d.L)); -} - -function newDate(y, m, d) { - return {y: y, m: m, d: d, H: 0, M: 0, S: 0, L: 0}; -} - -function formatLocale$1(locale) { - var locale_dateTime = locale.dateTime, - locale_date = locale.date, - locale_time = locale.time, - locale_periods = locale.periods, - locale_weekdays = locale.days, - locale_shortWeekdays = locale.shortDays, - locale_months = locale.months, - locale_shortMonths = locale.shortMonths; - - var periodRe = formatRe(locale_periods), - periodLookup = formatLookup(locale_periods), - weekdayRe = formatRe(locale_weekdays), - weekdayLookup = formatLookup(locale_weekdays), - shortWeekdayRe = formatRe(locale_shortWeekdays), - shortWeekdayLookup = formatLookup(locale_shortWeekdays), - monthRe = formatRe(locale_months), - monthLookup = formatLookup(locale_months), - shortMonthRe = formatRe(locale_shortMonths), - shortMonthLookup = formatLookup(locale_shortMonths); - - var formats = { - "a": formatShortWeekday, - "A": formatWeekday, - "b": formatShortMonth, - "B": formatMonth, - "c": null, - "d": formatDayOfMonth, - "e": formatDayOfMonth, - "f": formatMicroseconds, - "g": formatYearISO, - "G": formatFullYearISO, - "H": formatHour24, - "I": formatHour12, - "j": formatDayOfYear, - "L": formatMilliseconds, - "m": formatMonthNumber, - "M": formatMinutes, - "p": formatPeriod, - "q": formatQuarter, - "Q": formatUnixTimestamp, - "s": formatUnixTimestampSeconds, - "S": formatSeconds, - "u": formatWeekdayNumberMonday, - "U": formatWeekNumberSunday, - "V": formatWeekNumberISO, - "w": formatWeekdayNumberSunday, - "W": formatWeekNumberMonday, - "x": null, - "X": null, - "y": formatYear, - "Y": formatFullYear, - "Z": formatZone, - "%": formatLiteralPercent - }; - - var utcFormats = { - "a": formatUTCShortWeekday, - "A": formatUTCWeekday, - "b": formatUTCShortMonth, - "B": formatUTCMonth, - "c": null, - "d": formatUTCDayOfMonth, - "e": formatUTCDayOfMonth, - "f": formatUTCMicroseconds, - "g": formatUTCYearISO, - "G": formatUTCFullYearISO, - "H": formatUTCHour24, - "I": formatUTCHour12, - "j": formatUTCDayOfYear, - "L": formatUTCMilliseconds, - "m": formatUTCMonthNumber, - "M": formatUTCMinutes, - "p": formatUTCPeriod, - "q": formatUTCQuarter, - "Q": formatUnixTimestamp, - "s": formatUnixTimestampSeconds, - "S": formatUTCSeconds, - "u": formatUTCWeekdayNumberMonday, - "U": formatUTCWeekNumberSunday, - "V": formatUTCWeekNumberISO, - "w": formatUTCWeekdayNumberSunday, - "W": formatUTCWeekNumberMonday, - "x": null, - "X": null, - "y": formatUTCYear, - "Y": formatUTCFullYear, - "Z": formatUTCZone, - "%": formatLiteralPercent - }; - - var parses = { - "a": parseShortWeekday, - "A": parseWeekday, - "b": parseShortMonth, - "B": parseMonth, - "c": parseLocaleDateTime, - "d": parseDayOfMonth, - "e": parseDayOfMonth, - "f": parseMicroseconds, - "g": parseYear, - "G": parseFullYear, - "H": parseHour24, - "I": parseHour24, - "j": parseDayOfYear, - "L": parseMilliseconds, - "m": parseMonthNumber, - "M": parseMinutes, - "p": parsePeriod, - "q": parseQuarter, - "Q": parseUnixTimestamp, - "s": parseUnixTimestampSeconds, - "S": parseSeconds, - "u": parseWeekdayNumberMonday, - "U": parseWeekNumberSunday, - "V": parseWeekNumberISO, - "w": parseWeekdayNumberSunday, - "W": parseWeekNumberMonday, - "x": parseLocaleDate, - "X": parseLocaleTime, - "y": parseYear, - "Y": parseFullYear, - "Z": parseZone, - "%": parseLiteralPercent - }; - - // These recursive directive definitions must be deferred. - formats.x = newFormat(locale_date, formats); - formats.X = newFormat(locale_time, formats); - formats.c = newFormat(locale_dateTime, formats); - utcFormats.x = newFormat(locale_date, utcFormats); - utcFormats.X = newFormat(locale_time, utcFormats); - utcFormats.c = newFormat(locale_dateTime, utcFormats); - - function newFormat(specifier, formats) { - return function(date) { - var string = [], - i = -1, - j = 0, - n = specifier.length, - c, - pad, - format; - - if (!(date instanceof Date)) date = new Date(+date); - - while (++i < n) { - if (specifier.charCodeAt(i) === 37) { - string.push(specifier.slice(j, i)); - if ((pad = pads[c = specifier.charAt(++i)]) != null) c = specifier.charAt(++i); - else pad = c === "e" ? " " : "0"; - if (format = formats[c]) c = format(date, pad); - string.push(c); - j = i + 1; - } - } - - string.push(specifier.slice(j, i)); - return string.join(""); - }; - } - - function newParse(specifier, Z) { - return function(string) { - var d = newDate(1900, undefined, 1), - i = parseSpecifier(d, specifier, string += "", 0), - week, day$1; - if (i != string.length) return null; - - // If a UNIX timestamp is specified, return it. - if ("Q" in d) return new Date(d.Q); - if ("s" in d) return new Date(d.s * 1000 + ("L" in d ? d.L : 0)); - - // If this is utcParse, never use the local timezone. - if (Z && !("Z" in d)) d.Z = 0; - - // The am-pm flag is 0 for AM, and 1 for PM. - if ("p" in d) d.H = d.H % 12 + d.p * 12; - - // If the month was not specified, inherit from the quarter. - if (d.m === undefined) d.m = "q" in d ? d.q : 0; - - // Convert day-of-week and week-of-year to day-of-year. - if ("V" in d) { - if (d.V < 1 || d.V > 53) return null; - if (!("w" in d)) d.w = 1; - if ("Z" in d) { - week = utcDate(newDate(d.y, 0, 1)), day$1 = week.getUTCDay(); - week = day$1 > 4 || day$1 === 0 ? utcMonday.ceil(week) : utcMonday(week); - week = utcDay.offset(week, (d.V - 1) * 7); - d.y = week.getUTCFullYear(); - d.m = week.getUTCMonth(); - d.d = week.getUTCDate() + (d.w + 6) % 7; - } else { - week = localDate(newDate(d.y, 0, 1)), day$1 = week.getDay(); - week = day$1 > 4 || day$1 === 0 ? monday.ceil(week) : monday(week); - week = day.offset(week, (d.V - 1) * 7); - d.y = week.getFullYear(); - d.m = week.getMonth(); - d.d = week.getDate() + (d.w + 6) % 7; - } - } else if ("W" in d || "U" in d) { - if (!("w" in d)) d.w = "u" in d ? d.u % 7 : "W" in d ? 1 : 0; - day$1 = "Z" in d ? utcDate(newDate(d.y, 0, 1)).getUTCDay() : localDate(newDate(d.y, 0, 1)).getDay(); - d.m = 0; - d.d = "W" in d ? (d.w + 6) % 7 + d.W * 7 - (day$1 + 5) % 7 : d.w + d.U * 7 - (day$1 + 6) % 7; - } - - // If a time zone is specified, all fields are interpreted as UTC and then - // offset according to the specified time zone. - if ("Z" in d) { - d.H += d.Z / 100 | 0; - d.M += d.Z % 100; - return utcDate(d); - } - - // Otherwise, all fields are in local time. - return localDate(d); - }; - } - - function parseSpecifier(d, specifier, string, j) { - var i = 0, - n = specifier.length, - m = string.length, - c, - parse; - - while (i < n) { - if (j >= m) return -1; - c = specifier.charCodeAt(i++); - if (c === 37) { - c = specifier.charAt(i++); - parse = parses[c in pads ? specifier.charAt(i++) : c]; - if (!parse || ((j = parse(d, string, j)) < 0)) return -1; - } else if (c != string.charCodeAt(j++)) { - return -1; - } - } - - return j; - } - - function parsePeriod(d, string, i) { - var n = periodRe.exec(string.slice(i)); - return n ? (d.p = periodLookup[n[0].toLowerCase()], i + n[0].length) : -1; - } - - function parseShortWeekday(d, string, i) { - var n = shortWeekdayRe.exec(string.slice(i)); - return n ? (d.w = shortWeekdayLookup[n[0].toLowerCase()], i + n[0].length) : -1; - } - - function parseWeekday(d, string, i) { - var n = weekdayRe.exec(string.slice(i)); - return n ? (d.w = weekdayLookup[n[0].toLowerCase()], i + n[0].length) : -1; - } - - function parseShortMonth(d, string, i) { - var n = shortMonthRe.exec(string.slice(i)); - return n ? (d.m = shortMonthLookup[n[0].toLowerCase()], i + n[0].length) : -1; - } - - function parseMonth(d, string, i) { - var n = monthRe.exec(string.slice(i)); - return n ? (d.m = monthLookup[n[0].toLowerCase()], i + n[0].length) : -1; - } - - function parseLocaleDateTime(d, string, i) { - return parseSpecifier(d, locale_dateTime, string, i); - } - - function parseLocaleDate(d, string, i) { - return parseSpecifier(d, locale_date, string, i); - } - - function parseLocaleTime(d, string, i) { - return parseSpecifier(d, locale_time, string, i); - } - - function formatShortWeekday(d) { - return locale_shortWeekdays[d.getDay()]; - } - - function formatWeekday(d) { - return locale_weekdays[d.getDay()]; - } - - function formatShortMonth(d) { - return locale_shortMonths[d.getMonth()]; - } - - function formatMonth(d) { - return locale_months[d.getMonth()]; - } - - function formatPeriod(d) { - return locale_periods[+(d.getHours() >= 12)]; - } - - function formatQuarter(d) { - return 1 + ~~(d.getMonth() / 3); - } - - function formatUTCShortWeekday(d) { - return locale_shortWeekdays[d.getUTCDay()]; - } - - function formatUTCWeekday(d) { - return locale_weekdays[d.getUTCDay()]; - } - - function formatUTCShortMonth(d) { - return locale_shortMonths[d.getUTCMonth()]; - } - - function formatUTCMonth(d) { - return locale_months[d.getUTCMonth()]; - } - - function formatUTCPeriod(d) { - return locale_periods[+(d.getUTCHours() >= 12)]; - } - - function formatUTCQuarter(d) { - return 1 + ~~(d.getUTCMonth() / 3); - } - - return { - format: function(specifier) { - var f = newFormat(specifier += "", formats); - f.toString = function() { return specifier; }; - return f; - }, - parse: function(specifier) { - var p = newParse(specifier += "", false); - p.toString = function() { return specifier; }; - return p; - }, - utcFormat: function(specifier) { - var f = newFormat(specifier += "", utcFormats); - f.toString = function() { return specifier; }; - return f; - }, - utcParse: function(specifier) { - var p = newParse(specifier += "", true); - p.toString = function() { return specifier; }; - return p; - } - }; -} - -var pads = {"-": "", "_": " ", "0": "0"}, - numberRe = /^\s*\d+/, // note: ignores next directive - percentRe = /^%/, - requoteRe = /[\\^$*+?|[\]().{}]/g; - -function pad(value, fill, width) { - var sign = value < 0 ? "-" : "", - string = (sign ? -value : value) + "", - length = string.length; - return sign + (length < width ? new Array(width - length + 1).join(fill) + string : string); -} - -function requote(s) { - return s.replace(requoteRe, "\\$&"); -} - -function formatRe(names) { - return new RegExp("^(?:" + names.map(requote).join("|") + ")", "i"); -} - -function formatLookup(names) { - var map = {}, i = -1, n = names.length; - while (++i < n) map[names[i].toLowerCase()] = i; - return map; -} - -function parseWeekdayNumberSunday(d, string, i) { - var n = numberRe.exec(string.slice(i, i + 1)); - return n ? (d.w = +n[0], i + n[0].length) : -1; -} - -function parseWeekdayNumberMonday(d, string, i) { - var n = numberRe.exec(string.slice(i, i + 1)); - return n ? (d.u = +n[0], i + n[0].length) : -1; -} - -function parseWeekNumberSunday(d, string, i) { - var n = numberRe.exec(string.slice(i, i + 2)); - return n ? (d.U = +n[0], i + n[0].length) : -1; -} - -function parseWeekNumberISO(d, string, i) { - var n = numberRe.exec(string.slice(i, i + 2)); - return n ? (d.V = +n[0], i + n[0].length) : -1; -} - -function parseWeekNumberMonday(d, string, i) { - var n = numberRe.exec(string.slice(i, i + 2)); - return n ? (d.W = +n[0], i + n[0].length) : -1; -} - -function parseFullYear(d, string, i) { - var n = numberRe.exec(string.slice(i, i + 4)); - return n ? (d.y = +n[0], i + n[0].length) : -1; -} - -function parseYear(d, string, i) { - var n = numberRe.exec(string.slice(i, i + 2)); - return n ? (d.y = +n[0] + (+n[0] > 68 ? 1900 : 2000), i + n[0].length) : -1; -} - -function parseZone(d, string, i) { - var n = /^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(string.slice(i, i + 6)); - return n ? (d.Z = n[1] ? 0 : -(n[2] + (n[3] || "00")), i + n[0].length) : -1; -} - -function parseQuarter(d, string, i) { - var n = numberRe.exec(string.slice(i, i + 1)); - return n ? (d.q = n[0] * 3 - 3, i + n[0].length) : -1; -} - -function parseMonthNumber(d, string, i) { - var n = numberRe.exec(string.slice(i, i + 2)); - return n ? (d.m = n[0] - 1, i + n[0].length) : -1; -} - -function parseDayOfMonth(d, string, i) { - var n = numberRe.exec(string.slice(i, i + 2)); - return n ? (d.d = +n[0], i + n[0].length) : -1; -} - -function parseDayOfYear(d, string, i) { - var n = numberRe.exec(string.slice(i, i + 3)); - return n ? (d.m = 0, d.d = +n[0], i + n[0].length) : -1; -} - -function parseHour24(d, string, i) { - var n = numberRe.exec(string.slice(i, i + 2)); - return n ? (d.H = +n[0], i + n[0].length) : -1; -} - -function parseMinutes(d, string, i) { - var n = numberRe.exec(string.slice(i, i + 2)); - return n ? (d.M = +n[0], i + n[0].length) : -1; -} - -function parseSeconds(d, string, i) { - var n = numberRe.exec(string.slice(i, i + 2)); - return n ? (d.S = +n[0], i + n[0].length) : -1; -} - -function parseMilliseconds(d, string, i) { - var n = numberRe.exec(string.slice(i, i + 3)); - return n ? (d.L = +n[0], i + n[0].length) : -1; -} - -function parseMicroseconds(d, string, i) { - var n = numberRe.exec(string.slice(i, i + 6)); - return n ? (d.L = Math.floor(n[0] / 1000), i + n[0].length) : -1; -} - -function parseLiteralPercent(d, string, i) { - var n = percentRe.exec(string.slice(i, i + 1)); - return n ? i + n[0].length : -1; -} - -function parseUnixTimestamp(d, string, i) { - var n = numberRe.exec(string.slice(i)); - return n ? (d.Q = +n[0], i + n[0].length) : -1; -} - -function parseUnixTimestampSeconds(d, string, i) { - var n = numberRe.exec(string.slice(i)); - return n ? (d.s = +n[0], i + n[0].length) : -1; -} - -function formatDayOfMonth(d, p) { - return pad(d.getDate(), p, 2); -} - -function formatHour24(d, p) { - return pad(d.getHours(), p, 2); -} - -function formatHour12(d, p) { - return pad(d.getHours() % 12 || 12, p, 2); -} - -function formatDayOfYear(d, p) { - return pad(1 + day.count(year(d), d), p, 3); -} - -function formatMilliseconds(d, p) { - return pad(d.getMilliseconds(), p, 3); -} - -function formatMicroseconds(d, p) { - return formatMilliseconds(d, p) + "000"; -} - -function formatMonthNumber(d, p) { - return pad(d.getMonth() + 1, p, 2); -} - -function formatMinutes(d, p) { - return pad(d.getMinutes(), p, 2); -} - -function formatSeconds(d, p) { - return pad(d.getSeconds(), p, 2); -} - -function formatWeekdayNumberMonday(d) { - var day = d.getDay(); - return day === 0 ? 7 : day; -} - -function formatWeekNumberSunday(d, p) { - return pad(sunday.count(year(d) - 1, d), p, 2); -} - -function dISO(d) { - var day = d.getDay(); - return (day >= 4 || day === 0) ? thursday(d) : thursday.ceil(d); -} - -function formatWeekNumberISO(d, p) { - d = dISO(d); - return pad(thursday.count(year(d), d) + (year(d).getDay() === 4), p, 2); -} - -function formatWeekdayNumberSunday(d) { - return d.getDay(); -} - -function formatWeekNumberMonday(d, p) { - return pad(monday.count(year(d) - 1, d), p, 2); -} - -function formatYear(d, p) { - return pad(d.getFullYear() % 100, p, 2); -} - -function formatYearISO(d, p) { - d = dISO(d); - return pad(d.getFullYear() % 100, p, 2); -} - -function formatFullYear(d, p) { - return pad(d.getFullYear() % 10000, p, 4); -} - -function formatFullYearISO(d, p) { - var day = d.getDay(); - d = (day >= 4 || day === 0) ? thursday(d) : thursday.ceil(d); - return pad(d.getFullYear() % 10000, p, 4); -} - -function formatZone(d) { - var z = d.getTimezoneOffset(); - return (z > 0 ? "-" : (z *= -1, "+")) - + pad(z / 60 | 0, "0", 2) - + pad(z % 60, "0", 2); -} - -function formatUTCDayOfMonth(d, p) { - return pad(d.getUTCDate(), p, 2); -} - -function formatUTCHour24(d, p) { - return pad(d.getUTCHours(), p, 2); -} - -function formatUTCHour12(d, p) { - return pad(d.getUTCHours() % 12 || 12, p, 2); -} - -function formatUTCDayOfYear(d, p) { - return pad(1 + utcDay.count(utcYear(d), d), p, 3); -} - -function formatUTCMilliseconds(d, p) { - return pad(d.getUTCMilliseconds(), p, 3); -} - -function formatUTCMicroseconds(d, p) { - return formatUTCMilliseconds(d, p) + "000"; -} - -function formatUTCMonthNumber(d, p) { - return pad(d.getUTCMonth() + 1, p, 2); -} - -function formatUTCMinutes(d, p) { - return pad(d.getUTCMinutes(), p, 2); -} - -function formatUTCSeconds(d, p) { - return pad(d.getUTCSeconds(), p, 2); -} - -function formatUTCWeekdayNumberMonday(d) { - var dow = d.getUTCDay(); - return dow === 0 ? 7 : dow; -} - -function formatUTCWeekNumberSunday(d, p) { - return pad(utcSunday.count(utcYear(d) - 1, d), p, 2); -} - -function UTCdISO(d) { - var day = d.getUTCDay(); - return (day >= 4 || day === 0) ? utcThursday(d) : utcThursday.ceil(d); -} - -function formatUTCWeekNumberISO(d, p) { - d = UTCdISO(d); - return pad(utcThursday.count(utcYear(d), d) + (utcYear(d).getUTCDay() === 4), p, 2); -} - -function formatUTCWeekdayNumberSunday(d) { - return d.getUTCDay(); -} - -function formatUTCWeekNumberMonday(d, p) { - return pad(utcMonday.count(utcYear(d) - 1, d), p, 2); -} - -function formatUTCYear(d, p) { - return pad(d.getUTCFullYear() % 100, p, 2); -} - -function formatUTCYearISO(d, p) { - d = UTCdISO(d); - return pad(d.getUTCFullYear() % 100, p, 2); -} - -function formatUTCFullYear(d, p) { - return pad(d.getUTCFullYear() % 10000, p, 4); -} - -function formatUTCFullYearISO(d, p) { - var day = d.getUTCDay(); - d = (day >= 4 || day === 0) ? utcThursday(d) : utcThursday.ceil(d); - return pad(d.getUTCFullYear() % 10000, p, 4); -} - -function formatUTCZone() { - return "+0000"; -} - -function formatLiteralPercent() { - return "%"; -} - -function formatUnixTimestamp(d) { - return +d; -} - -function formatUnixTimestampSeconds(d) { - return Math.floor(+d / 1000); -} - -var locale$1; -var timeFormat; -var timeParse; -var utcFormat; -var utcParse; - -defaultLocale$1({ - dateTime: "%x, %X", - date: "%-m/%-d/%Y", - time: "%-I:%M:%S %p", - periods: ["AM", "PM"], - days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], - shortDays: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], - months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], - shortMonths: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"] -}); - -function defaultLocale$1(definition) { - locale$1 = formatLocale$1(definition); - timeFormat = locale$1.format; - timeParse = locale$1.parse; - utcFormat = locale$1.utcFormat; - utcParse = locale$1.utcParse; - return locale$1; -} - -var durationSecond$1 = 1000, - durationMinute$1 = durationSecond$1 * 60, - durationHour$1 = durationMinute$1 * 60, - durationDay$1 = durationHour$1 * 24, - durationWeek$1 = durationDay$1 * 7, - durationMonth = durationDay$1 * 30, - durationYear = durationDay$1 * 365; - -function date$1(t) { - return new Date(t); -} - -function number$2(t) { - return t instanceof Date ? +t : +new Date(+t); -} - -function calendar(year, month, week, day, hour, minute, second, millisecond, format) { - var scale = continuous(deinterpolateLinear, reinterpolate), - invert = scale.invert, - domain = scale.domain; - - var formatMillisecond = format(".%L"), - formatSecond = format(":%S"), - formatMinute = format("%I:%M"), - formatHour = format("%I %p"), - formatDay = format("%a %d"), - formatWeek = format("%b %d"), - formatMonth = format("%B"), - formatYear = format("%Y"); - - var tickIntervals = [ - [second, 1, durationSecond$1], - [second, 5, 5 * durationSecond$1], - [second, 15, 15 * durationSecond$1], - [second, 30, 30 * durationSecond$1], - [minute, 1, durationMinute$1], - [minute, 5, 5 * durationMinute$1], - [minute, 15, 15 * durationMinute$1], - [minute, 30, 30 * durationMinute$1], - [ hour, 1, durationHour$1 ], - [ hour, 3, 3 * durationHour$1 ], - [ hour, 6, 6 * durationHour$1 ], - [ hour, 12, 12 * durationHour$1 ], - [ day, 1, durationDay$1 ], - [ day, 2, 2 * durationDay$1 ], - [ week, 1, durationWeek$1 ], - [ month, 1, durationMonth ], - [ month, 3, 3 * durationMonth ], - [ year, 1, durationYear ] - ]; - - function tickFormat(date) { - return (second(date) < date ? formatMillisecond - : minute(date) < date ? formatSecond - : hour(date) < date ? formatMinute - : day(date) < date ? formatHour - : month(date) < date ? (week(date) < date ? formatDay : formatWeek) - : year(date) < date ? formatMonth - : formatYear)(date); - } - - function tickInterval(interval, start, stop, step) { - if (interval == null) interval = 10; - - // If a desired tick count is specified, pick a reasonable tick interval - // based on the extent of the domain and a rough estimate of tick size. - // Otherwise, assume interval is already a time interval and use it. - if (typeof interval === "number") { - var target = Math.abs(stop - start) / interval, - i = bisector(function(i) { return i[2]; }).right(tickIntervals, target); - if (i === tickIntervals.length) { - step = tickStep(start / durationYear, stop / durationYear, interval); - interval = year; - } else if (i) { - i = tickIntervals[target / tickIntervals[i - 1][2] < tickIntervals[i][2] / target ? i - 1 : i]; - step = i[1]; - interval = i[0]; - } else { - step = Math.max(tickStep(start, stop, interval), 1); - interval = millisecond; - } - } - - return step == null ? interval : interval.every(step); - } - - scale.invert = function(y) { - return new Date(invert(y)); - }; - - scale.domain = function(_) { - return arguments.length ? domain(map$1.call(_, number$2)) : domain().map(date$1); - }; - - scale.ticks = function(interval, step) { - var d = domain(), - t0 = d[0], - t1 = d[d.length - 1], - r = t1 < t0, - t; - if (r) t = t0, t0 = t1, t1 = t; - t = tickInterval(interval, t0, t1, step); - t = t ? t.range(t0, t1 + 1) : []; // inclusive stop - return r ? t.reverse() : t; - }; - - scale.tickFormat = function(count, specifier) { - return specifier == null ? tickFormat : format(specifier); - }; - - scale.nice = function(interval, step) { - var d = domain(); - return (interval = tickInterval(interval, d[0], d[d.length - 1], step)) - ? domain(nice(d, interval)) - : scale; - }; - - scale.copy = function() { - return copy(scale, calendar(year, month, week, day, hour, minute, second, millisecond, format)); - }; - - return scale; -} - -function time() { - return calendar(year, month, sunday, day, hour, minute, second, millisecond, timeFormat).domain([new Date(2000, 0, 1), new Date(2000, 0, 2)]); -} - -function utcTime() { - return calendar(utcYear, utcMonth, utcSunday, utcDay, utcHour, utcMinute, second, millisecond, utcFormat).domain([Date.UTC(2000, 0, 1), Date.UTC(2000, 0, 2)]); -} - -function colors$2(s) { - return s.match(/.{6}/g).map(function(x) { - return "#" + x; - }); -} - -var category10 = colors$2("1f77b4ff7f0e2ca02cd627289467bd8c564be377c27f7f7fbcbd2217becf"); - -var category20b = colors$2("393b795254a36b6ecf9c9ede6379398ca252b5cf6bcedb9c8c6d31bd9e39e7ba52e7cb94843c39ad494ad6616be7969c7b4173a55194ce6dbdde9ed6"); - -var category20c = colors$2("3182bd6baed69ecae1c6dbefe6550dfd8d3cfdae6bfdd0a231a35474c476a1d99bc7e9c0756bb19e9ac8bcbddcdadaeb636363969696bdbdbdd9d9d9"); - -var category20 = colors$2("1f77b4aec7e8ff7f0effbb782ca02c98df8ad62728ff98969467bdc5b0d58c564bc49c94e377c2f7b6d27f7f7fc7c7c7bcbd22dbdb8d17becf9edae5"); - -var cubehelix$2 = cubehelixLong(cubehelix(300, 0.5, 0.0), cubehelix(-240, 0.5, 1.0)); - -var warm = cubehelixLong(cubehelix(-100, 0.75, 0.35), cubehelix(80, 1.50, 0.8)); - -var cool = cubehelixLong(cubehelix(260, 0.75, 0.35), cubehelix(80, 1.50, 0.8)); - -var rainbow = cubehelix(); - -function rainbow$1(t) { - if (t < 0 || t > 1) t -= Math.floor(t); - var ts = Math.abs(t - 0.5); - rainbow.h = 360 * t - 100; - rainbow.s = 1.5 - 1.5 * ts; - rainbow.l = 0.8 - 0.9 * ts; - return rainbow + ""; -} - -function ramp(range) { - var n = range.length; - return function(t) { - return range[Math.max(0, Math.min(n - 1, Math.floor(t * n)))]; - }; -} - -var viridis = ramp(colors$2("44015444025645045745055946075a46085c460a5d460b5e470d60470e6147106347116447136548146748166848176948186a481a6c481b6d481c6e481d6f481f70482071482173482374482475482576482677482878482979472a7a472c7a472d7b472e7c472f7d46307e46327e46337f463480453581453781453882443983443a83443b84433d84433e85423f854240864241864142874144874045884046883f47883f48893e49893e4a893e4c8a3d4d8a3d4e8a3c4f8a3c508b3b518b3b528b3a538b3a548c39558c39568c38588c38598c375a8c375b8d365c8d365d8d355e8d355f8d34608d34618d33628d33638d32648e32658e31668e31678e31688e30698e306a8e2f6b8e2f6c8e2e6d8e2e6e8e2e6f8e2d708e2d718e2c718e2c728e2c738e2b748e2b758e2a768e2a778e2a788e29798e297a8e297b8e287c8e287d8e277e8e277f8e27808e26818e26828e26828e25838e25848e25858e24868e24878e23888e23898e238a8d228b8d228c8d228d8d218e8d218f8d21908d21918c20928c20928c20938c1f948c1f958b1f968b1f978b1f988b1f998a1f9a8a1e9b8a1e9c891e9d891f9e891f9f881fa0881fa1881fa1871fa28720a38620a48621a58521a68522a78522a88423a98324aa8325ab8225ac8226ad8127ad8128ae8029af7f2ab07f2cb17e2db27d2eb37c2fb47c31b57b32b67a34b67935b77937b87838b9773aba763bbb753dbc743fbc7340bd7242be7144bf7046c06f48c16e4ac16d4cc26c4ec36b50c46a52c56954c56856c66758c7655ac8645cc8635ec96260ca6063cb5f65cb5e67cc5c69cd5b6ccd5a6ece5870cf5773d05675d05477d1537ad1517cd2507fd34e81d34d84d44b86d54989d5488bd6468ed64590d74393d74195d84098d83e9bd93c9dd93ba0da39a2da37a5db36a8db34aadc32addc30b0dd2fb2dd2db5de2bb8de29bade28bddf26c0df25c2df23c5e021c8e020cae11fcde11dd0e11cd2e21bd5e21ad8e219dae319dde318dfe318e2e418e5e419e7e419eae51aece51befe51cf1e51df4e61ef6e620f8e621fbe723fde725")); - -var magma = ramp(colors$2("00000401000501010601010802010902020b02020d03030f03031204041405041606051806051a07061c08071e0907200a08220b09240c09260d0a290e0b2b100b2d110c2f120d31130d34140e36150e38160f3b180f3d19103f1a10421c10441d11471e114920114b21114e22115024125325125527125829115a2a115c2c115f2d11612f116331116533106734106936106b38106c390f6e3b0f703d0f713f0f72400f74420f75440f764510774710784910784a10794c117a4e117b4f127b51127c52137c54137d56147d57157e59157e5a167e5c167f5d177f5f187f601880621980641a80651a80671b80681c816a1c816b1d816d1d816e1e81701f81721f817320817521817621817822817922827b23827c23827e24828025828125818326818426818627818827818928818b29818c29818e2a81902a81912b81932b80942c80962c80982d80992d809b2e7f9c2e7f9e2f7fa02f7fa1307ea3307ea5317ea6317da8327daa337dab337cad347cae347bb0357bb2357bb3367ab5367ab73779b83779ba3878bc3978bd3977bf3a77c03a76c23b75c43c75c53c74c73d73c83e73ca3e72cc3f71cd4071cf4070d0416fd2426fd3436ed5446dd6456cd8456cd9466bdb476adc4869de4968df4a68e04c67e24d66e34e65e44f64e55064e75263e85362e95462ea5661eb5760ec5860ed5a5fee5b5eef5d5ef05f5ef1605df2625df2645cf3655cf4675cf4695cf56b5cf66c5cf66e5cf7705cf7725cf8745cf8765cf9785df9795df97b5dfa7d5efa7f5efa815ffb835ffb8560fb8761fc8961fc8a62fc8c63fc8e64fc9065fd9266fd9467fd9668fd9869fd9a6afd9b6bfe9d6cfe9f6dfea16efea36ffea571fea772fea973feaa74feac76feae77feb078feb27afeb47bfeb67cfeb77efeb97ffebb81febd82febf84fec185fec287fec488fec68afec88cfeca8dfecc8ffecd90fecf92fed194fed395fed597fed799fed89afdda9cfddc9efddea0fde0a1fde2a3fde3a5fde5a7fde7a9fde9aafdebacfcecaefceeb0fcf0b2fcf2b4fcf4b6fcf6b8fcf7b9fcf9bbfcfbbdfcfdbf")); - -var inferno = ramp(colors$2("00000401000501010601010802010a02020c02020e03021004031204031405041706041907051b08051d09061f0a07220b07240c08260d08290e092b10092d110a30120a32140b34150b37160b39180c3c190c3e1b0c411c0c431e0c451f0c48210c4a230c4c240c4f260c51280b53290b552b0b572d0b592f0a5b310a5c320a5e340a5f3609613809623909633b09643d09653e0966400a67420a68440a68450a69470b6a490b6a4a0c6b4c0c6b4d0d6c4f0d6c510e6c520e6d540f6d550f6d57106e59106e5a116e5c126e5d126e5f136e61136e62146e64156e65156e67166e69166e6a176e6c186e6d186e6f196e71196e721a6e741a6e751b6e771c6d781c6d7a1d6d7c1d6d7d1e6d7f1e6c801f6c82206c84206b85216b87216b88226a8a226a8c23698d23698f24699025689225689326679526679727669827669a28659b29649d29649f2a63a02a63a22b62a32c61a52c60a62d60a82e5fa92e5eab2f5ead305dae305cb0315bb1325ab3325ab43359b63458b73557b93556ba3655bc3754bd3853bf3952c03a51c13a50c33b4fc43c4ec63d4dc73e4cc83f4bca404acb4149cc4248ce4347cf4446d04545d24644d34743d44842d54a41d74b3fd84c3ed94d3dda4e3cdb503bdd513ade5238df5337e05536e15635e25734e35933e45a31e55c30e65d2fe75e2ee8602de9612bea632aeb6429eb6628ec6726ed6925ee6a24ef6c23ef6e21f06f20f1711ff1731df2741cf3761bf37819f47918f57b17f57d15f67e14f68013f78212f78410f8850ff8870ef8890cf98b0bf98c0af98e09fa9008fa9207fa9407fb9606fb9706fb9906fb9b06fb9d07fc9f07fca108fca309fca50afca60cfca80dfcaa0ffcac11fcae12fcb014fcb216fcb418fbb61afbb81dfbba1ffbbc21fbbe23fac026fac228fac42afac62df9c72ff9c932f9cb35f8cd37f8cf3af7d13df7d340f6d543f6d746f5d949f5db4cf4dd4ff4df53f4e156f3e35af3e55df2e661f2e865f2ea69f1ec6df1ed71f1ef75f1f179f2f27df2f482f3f586f3f68af4f88ef5f992f6fa96f8fb9af9fc9dfafda1fcffa4")); - -var plasma = ramp(colors$2("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921")); - -function sequential(interpolator) { - var x0 = 0, - x1 = 1, - clamp = false; - - function scale(x) { - var t = (x - x0) / (x1 - x0); - return interpolator(clamp ? Math.max(0, Math.min(1, t)) : t); - } - - scale.domain = function(_) { - return arguments.length ? (x0 = +_[0], x1 = +_[1], scale) : [x0, x1]; - }; - - scale.clamp = function(_) { - return arguments.length ? (clamp = !!_, scale) : clamp; - }; - - scale.interpolator = function(_) { - return arguments.length ? (interpolator = _, scale) : interpolator; - }; - - scale.copy = function() { - return sequential(interpolator).domain([x0, x1]).clamp(clamp); - }; - - return linearish(scale); -} - - - -var d3Scale = /*#__PURE__*/Object.freeze({ - __proto__: null, - scaleBand: band, - scalePoint: point, - scaleIdentity: identity$2, - scaleLinear: linear$2, - scaleLog: log, - scaleOrdinal: ordinal, - scaleImplicit: implicit, - scalePow: pow, - scaleSqrt: sqrt, - scaleQuantile: quantile, - scaleQuantize: quantize, - scaleThreshold: threshold, - scaleTime: time, - scaleUtc: utcTime, - schemeCategory10: category10, - schemeCategory20b: category20b, - schemeCategory20c: category20c, - schemeCategory20: category20, - interpolateCubehelixDefault: cubehelix$2, - interpolateRainbow: rainbow$1, - interpolateWarm: warm, - interpolateCool: cool, - interpolateViridis: viridis, - interpolateMagma: magma, - interpolateInferno: inferno, - interpolatePlasma: plasma, - scaleSequential: sequential -}); - -var supportedScaleStrings = ["linear", "time", "log", "sqrt"]; // Private Functions - -function toNewName(scale) { - // d3 scale changed the naming scheme for scale from "linear" -> "scaleLinear" etc. - var capitalize = function (s) { - return s && s[0].toUpperCase() + s.slice(1); - }; - - return "scale".concat(capitalize(scale)); -} - -function validScale(scale) { - if (typeof scale === "function") { - return isFunction_1(scale.copy) && isFunction_1(scale.domain) && isFunction_1(scale.range); - } else if (typeof scale === "string") { - return includes_1(supportedScaleStrings, scale); - } - - return false; -} - -function isScaleDefined(props, axis) { - if (!props.scale) { - return false; - } else if (props.scale.x || props.scale.y) { - return props.scale[axis] ? true : false; - } - - return true; -} - -function getScaleTypeFromProps(props, axis) { - if (!isScaleDefined(props, axis)) { - return undefined; - } - - var scale = props.scale[axis] || props.scale; - return typeof scale === "string" ? scale : getType(scale); -} - -function getScaleFromDomain(props, axis) { - var domain; - - if (props.domain && props.domain[axis]) { - domain = props.domain[axis]; - } else if (props.domain && Array.isArray(props.domain)) { - domain = props.domain; - } - - if (!domain) { - return undefined; - } - - return Collection.containsDates(domain) ? "time" : "linear"; -} - -function getScaleTypeFromData(props, axis) { - if (!props.data) { - return "linear"; - } - - var accessor = Helpers.createAccessor(props[axis]); - var axisData = props.data.map(function (datum) { - var processedData = isPlainObject_1(accessor(datum)) ? accessor(datum)[axis] : accessor(datum); - return processedData !== undefined ? processedData : datum[axis]; - }); - return Collection.containsDates(axisData) ? "time" : "linear"; -} // Exported Functions - - -function getScaleFromName(name) { - return validScale(name) ? d3Scale[toNewName(name)]() : linear$2(); -} - -function getBaseScale(props, axis) { - var scale = getScaleFromProps(props, axis); - - if (scale) { - return typeof scale === "string" ? getScaleFromName(scale) : scale; - } - - var defaultScale = getScaleFromDomain(props, axis) || getScaleTypeFromData(props, axis); - return d3Scale[toNewName(defaultScale)](); -} - -function getDefaultScale() { - return linear$2(); -} - -function getScaleFromProps(props, axis) { - if (!isScaleDefined(props, axis)) { - return undefined; - } - - var scale = props.scale[axis] || props.scale; - - if (validScale(scale)) { - return isFunction_1(scale) ? scale : d3Scale[toNewName(scale)](); - } - - return undefined; -} - -function getScaleType(props, axis) { - // if the scale was not given in props, it will be set to linear or time depending on data - return getScaleTypeFromProps(props, axis) || getScaleTypeFromData(props, axis); -} - -function getType(scale) { - if (typeof scale === "string") { - return scale; - } - - var duckTypes = [{ - name: "log", - method: "base" - }, { - name: "ordinal", - method: "unknown" - }, { - name: "pow-sqrt", - method: "exponent" - }, { - name: "quantile", - method: "quantiles" - }, { - name: "quantize-threshold", - method: "invertExtent" - }]; - var scaleType = duckTypes.filter(function (type) { - return scale[type.method] !== undefined; - })[0]; - return scaleType ? scaleType.name : undefined; -} - -var Scale = { - getBaseScale: getBaseScale, - getDefaultScale: getDefaultScale, - getScaleFromProps: getScaleFromProps, - getScaleType: getScaleType, - getType: getType, - getScaleFromName: getScaleFromName -}; - -var Immutable = { - IMMUTABLE_ITERABLE: "@@__IMMUTABLE_ITERABLE__@@", - IMMUTABLE_RECORD: "@@__IMMUTABLE_RECORD__@@", - IMMUTABLE_LIST: "@@__IMMUTABLE_LIST__@@", - IMMUTABLE_MAP: "@@__IMMUTABLE_MAP__@@", - isImmutable: function (x) { - return this.isIterable(x) || this.isRecord(x); - }, - isIterable: function (x) { - return !!(x && x[this.IMMUTABLE_ITERABLE]); - }, - isRecord: function (x) { - return !!(x && x[this.IMMUTABLE_RECORD]); - }, - isList: function (x) { - return !!(x && x[this.IMMUTABLE_LIST]); - }, - isMap: function (x) { - return !!(x && x[this.IMMUTABLE_MAP]); - }, - shallowToJS: function (x, whitelist) { - var _this = this; - - return this.isIterable(x) ? x.reduce(function (prev, curr, key) { - if (whitelist && whitelist[key]) { - curr = _this.shallowToJS(curr); - } - - prev[key] = curr; - return prev; - }, this.isList(x) ? [] : {}) : x; - } -}; - -function _toConsumableArray$7(arr) { return _arrayWithoutHoles$7(arr) || _iterableToArray$7(arr) || _nonIterableSpread$7(); } - -function _nonIterableSpread$7() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$7(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$7(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function parseDatum(datum) { - var immutableDatumWhitelist = { - errorX: true, - errorY: true - }; - return Immutable.isImmutable(datum) ? Immutable.shallowToJS(datum, immutableDatumWhitelist) : datum; -} - -function getLength(data) { - return Immutable.isIterable(data) ? data.size : data.length; -} // Returns generated data for a given axis based on domain and sample from props - - -function generateDataArray(props, axis) { - var propsDomain = isPlainObject_1(props.domain) ? props.domain[axis] : props.domain; - var domain = propsDomain || Scale.getBaseScale(props, axis).domain(); - var samples = props.samples || 1; - var domainMax = Math.max.apply(Math, _toConsumableArray$7(domain)); - var domainMin = Math.min.apply(Math, _toConsumableArray$7(domain)); - var step = (domainMax - domainMin) / samples; - - var values = range_1(domainMin, domainMax, step); - - return last_1(values) === domainMax ? values : values.concat(domainMax); -} // Returns sorted data. If no sort keys are provided, data is returned unaltered. - - -function sortData(dataset, sortKey) { - var sortOrder = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : "ascending"; - - if (!sortKey) { - return dataset; - } // Ensures previous VictoryLine api for sortKey prop stays consistent - - - if (sortKey === "x" || sortKey === "y") { - sortKey = "_".concat(sortKey); - } - - var order = sortOrder === "ascending" ? "asc" : "desc"; - return orderBy_1(dataset, sortKey, order); -} // This method will remove data points that break certain scales. (log scale only) - - -function cleanData(dataset, props) { - var smallNumber = 1 / Number.MAX_SAFE_INTEGER; - var scaleType = { - x: Scale.getScaleType(props, "x"), - y: Scale.getScaleType(props, "y") - }; - - if (scaleType.x !== "log" && scaleType.y !== "log") { - return dataset; - } - - var rules = function (datum, axis) { - return scaleType[axis] === "log" ? datum["_".concat(axis)] !== 0 : true; - }; - - var sanitize = function (datum) { - var _x = rules(datum, "x") ? datum._x : smallNumber; - - var _y = rules(datum, "y") ? datum._y : smallNumber; - - var _y0 = rules(datum, "y0") ? datum._y0 : smallNumber; - - return assign_1({}, datum, { - _x: _x, - _y: _y, - _y0: _y0 - }); - }; - - return dataset.map(function (datum) { - if (rules(datum, "x") && rules(datum, "y") && rules(datum, "y0")) { - return datum; - } - - return sanitize(datum); - }); -} // Returns a data accessor given an eventKey prop - - -function getEventKey(key) { - // creates a data accessor function - // given a property key, path, array index, or null for identity. - if (isFunction_1(key)) { - return key; - } else if (key === null || key === undefined) { - return function () { - return undefined; - }; - } // otherwise, assume it is an array index, property key or path (_.property handles all three) - - - return property_1(key); -} // Returns data with an eventKey prop added to each datum - - -function addEventKeys(props, data) { - var hasEventKeyAccessor = !!props.eventKey; - var eventKeyAccessor = getEventKey(props.eventKey); - return data.map(function (datum, index) { - if (datum.eventKey !== undefined) { - return datum; - } else if (hasEventKeyAccessor) { - var eventKey = eventKeyAccessor(datum, index); - return eventKey !== undefined ? assign_1({ - eventKey: eventKey - }, datum) : datum; - } else { - return datum; - } - }); -} // Exported Functions - -/** - * Returns an object mapping string data to numeric data - * @param {Object} props: the props object - * @param {String} axis: the current axis - * @returns {Object} an object mapping string data to numeric data - */ - - -function createStringMap(props, axis) { - var stringsFromAxes = getStringsFromAxes(props, axis); - var stringsFromCategories = getStringsFromCategories(props, axis); - var stringsFromData = getStringsFromData(props, axis); - - var allStrings = uniq_1(_toConsumableArray$7(stringsFromAxes).concat(_toConsumableArray$7(stringsFromCategories), _toConsumableArray$7(stringsFromData))); - - return allStrings.length === 0 ? null : allStrings.reduce(function (memo, string, index) { - memo[string] = index + 1; - return memo; - }, {}); -} -/** - * Reduces the size of a data array, such that it is <= maxPoints. - * @param {Array} data: an array of data; must be sorted - * @param {Number} maxPoints: maximum number of data points to return - * @param {Number} startingIndex: the index of the data[0] *in the entire dataset*; this function - assumes `data` param is a subset of larger dataset that has been zoommed - * @returns {Array} an array of data, a subset of data param - */ - - -function downsample(data, maxPoints) { - var startingIndex = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0; - // ensures that the downampling of data while zooming looks good. - var dataLength = getLength(data); - - if (dataLength > maxPoints) { - // limit k to powers of 2, e.g. 64, 128, 256 - // so that the same points will be chosen reliably, reducing flicker on zoom - var k = Math.pow(2, Math.ceil(Math.log2(dataLength / maxPoints))); - return data.filter( // ensure modulo is always calculated from same reference: i + startingIndex - function (d, i) { - return (i + startingIndex) % k === 0; - }); - } - - return data; -} -/** - * Returns formatted data. Data accessors are applied, and string values are replaced. - * @param {Array} dataset: the original domain - * @param {Object} props: the props object - * @param {Array} expectedKeys: an array of expected data keys - * @returns {Array} the formatted data - */ - - -function formatData(dataset, props, expectedKeys) { - var isArrayOrIterable = Array.isArray(dataset) || Immutable.isIterable(dataset); - - if (!isArrayOrIterable || getLength(dataset) < 1) { - return []; - } - - var defaultKeys = ["x", "y", "y0"]; - expectedKeys = Array.isArray(expectedKeys) ? expectedKeys : defaultKeys; - - var createAccessor = function (name) { - return Helpers.createAccessor(props[name] !== undefined ? props[name] : name); - }; - - var accessor = expectedKeys.reduce(function (memo, type) { - memo[type] = createAccessor(type); - return memo; - }, {}); - var preformattedData = isEqual_1(expectedKeys, defaultKeys) && props.x === "_x" && props.y === "_y" && props.y0 === "_y0"; - var stringMap; - - if (preformattedData === false) { - // stringMap is not required if the data is preformatted - stringMap = { - x: expectedKeys.indexOf("x") !== -1 ? createStringMap(props, "x") : undefined, - y: expectedKeys.indexOf("y") !== -1 ? createStringMap(props, "y") : undefined, - y0: expectedKeys.indexOf("y0") !== -1 ? createStringMap(props, "y") : undefined - }; - } - - var data = preformattedData ? dataset : dataset.reduce(function (dataArr, datum, index) { - // eslint-disable-line complexity - datum = parseDatum(datum); - var fallbackValues = { - x: index, - y: datum - }; - var processedValues = expectedKeys.reduce(function (memo, type) { - var processedValue = accessor[type](datum); - var value = processedValue !== undefined ? processedValue : fallbackValues[type]; - - if (value !== undefined) { - if (typeof value === "string" && stringMap[type]) { - memo["".concat(type, "Name")] = value; - memo["_".concat(type)] = stringMap[type][value]; - } else { - memo["_".concat(type)] = value; - } - } - - return memo; - }, {}); - - var formattedDatum = assign_1({}, processedValues, datum); - - if (!isEmpty_1(formattedDatum)) { - dataArr.push(formattedDatum); - } - - return dataArr; - }, []); - var sortedData = sortData(data, props.sortKey, props.sortOrder); - var cleanedData = cleanData(sortedData, props); - return addEventKeys(props, cleanedData); -} -/** - * Returns generated x and y data based on domain and sample from props - * @param {Object} props: the props object - * @returns {Array} an array of data - */ - - -function generateData(props) { - var xValues = generateDataArray(props, "x"); - var yValues = generateDataArray(props, "y"); - var values = xValues.map(function (x, i) { - return { - x: x, - y: yValues[i] - }; - }); - return values; -} -/** - * Returns an array of categories for a given axis - * @param {Object} props: the props object - * @param {String} axis: the current axis - * @returns {Array} an array of categories - */ - - -function getCategories(props, axis) { - return props.categories && !Array.isArray(props.categories) ? props.categories[axis] : props.categories; -} -/** - * Returns an array of formatted data - * @param {Object} props: the props object - * @returns {Array} an array of data - */ - - -function getData(props) { - return props.data ? formatData(props.data, props) : formatData(generateData(props), props); -} -/** - * Returns an array of strings from axis tickValues for a given axis - * @param {Object} props: the props object - * @param {String} axis: the current axis - * @returns {Array} an array of strings - */ - - -function getStringsFromAxes(props, axis) { - var tickValues = props.tickValues, - tickFormat = props.tickFormat; - var tickValueArray; - - if (!tickValues || !Array.isArray(tickValues) && !tickValues[axis]) { - tickValueArray = tickFormat && Array.isArray(tickFormat) ? tickFormat : []; - } else { - tickValueArray = tickValues[axis] || tickValues; - } - - return tickValueArray.filter(function (val) { - return typeof val === "string"; - }); -} -/** - * Returns an array of strings from categories for a given axis - * @param {Object} props: the props object - * @param {String} axis: the current axis - * @returns {Array} an array of strings - */ - - -function getStringsFromCategories(props, axis) { - if (!props.categories) { - return []; - } - - var categories = getCategories(props, axis); - var categoryStrings = categories && categories.filter(function (val) { - return typeof val === "string"; - }); - return categoryStrings ? Collection.removeUndefined(categoryStrings) : []; -} -/** - * Returns an array of strings from data - * @param {Object} props: the props object - * @param {String} axis: the current axis - * @returns {Array} an array of strings - */ - - -function getStringsFromData(props, axis) { - var isArrayOrIterable = Array.isArray(props.data) || Immutable.isIterable(props.data); - - if (!isArrayOrIterable) { - return []; - } - - var key = props[axis] === undefined ? axis : props[axis]; - var accessor = Helpers.createAccessor(key); // support immutable data - - var data = props.data.reduce(function (memo, d) { - memo.push(parseDatum(d)); - return memo; - }, []); - var sortedData = sortData(data, props.sortKey, props.sortOrder); - var dataStrings = sortedData.reduce(function (dataArr, datum) { - datum = parseDatum(datum); - dataArr.push(accessor(datum)); - return dataArr; - }, []).filter(function (datum) { - return typeof datum === "string"; - }); // return a unique set of strings - - return dataStrings.reduce(function (prev, curr) { - if (curr !== undefined && curr !== null && prev.indexOf(curr) === -1) { - prev.push(curr); - } - - return prev; - }, []); -} -/** - * Checks whether a given component can be used to calculate data - * @param {Component} component: a React component instance - * @returns {Boolean} Returns true if the given component has a role included in the whitelist - */ - - -function isDataComponent(component) { - var getRole = function (child) { - return child && child.type ? child.type.role : ""; - }; - - var role = getRole(component); - - if (role === "portal") { - var children = React__default.Children.toArray(component.props.children); - role = children.length ? getRole(children[0]) : ""; - } - - var whitelist = ["area", "bar", "boxplot", "candlestick", "errorbar", "group", "histogram", "line", "pie", "scatter", "stack", "voronoi"]; - return includes_1(whitelist, role); -} - -var Data = { - createStringMap: createStringMap, - downsample: downsample, - formatData: formatData, - generateData: generateData, - getCategories: getCategories, - getData: getData, - getStringsFromAxes: getStringsFromAxes, - getStringsFromCategories: getStringsFromCategories, - getStringsFromData: getStringsFromData, - isDataComponent: isDataComponent -}; - -/* eslint-disable func-style */ -var DefaultTransitions = { - continuousTransitions: function () { - return { - onLoad: { - duration: 2000 - }, - onExit: { - duration: 500 - }, - onEnter: { - duration: 500 - } - }; - }, - continuousPolarTransitions: function () { - return { - onLoad: { - duration: 2000, - before: function () { - return { - _y: 0, - _y1: 0, - _y0: 0 - }; - }, - after: function (datum) { - return { - _y: datum._y, - _y1: datum._y1, - _y0: datum._y0 - }; - } - }, - onExit: { - duration: 500, - before: function (datum, index, data) { - var adjacent = function (attr) { - var adj = index === 0 ? data[index + 1] : data[index - 1]; - return adj[attr]; - }; - - return { - _x: adjacent("_x"), - _y: adjacent("_y"), - _y0: adjacent("_y0") - }; - } - }, - onEnter: { - duration: 500, - before: function (datum, index, data) { - var adjacent = function (attr) { - var adj = index === 0 ? data[index + 1] : data[index - 1]; - return adj[attr]; - }; - - return { - _x: adjacent("_x"), - _y: adjacent("_y"), - _y0: adjacent("_y0") - }; - }, - after: function (datum) { - return { - _x: datum._x, - _y: datum._y, - _y1: datum._y1, - _y0: datum._y0 - }; - } - } - }; - }, - discreteTransitions: function () { - return { - onLoad: { - duration: 2000, - before: function () { - return { - opacity: 0 - }; - }, - after: function (datum) { - return datum; - } - }, - onExit: { - duration: 600, - before: function () { - return { - opacity: 0 - }; - } - }, - onEnter: { - duration: 600, - before: function () { - return { - opacity: 0 - }; - }, - after: function (datum) { - return datum; - } - } - }; - } -}; - -/** `Object#toString` result references. */ -var dateTag$2 = '[object Date]'; - -/** - * The base implementation of `_.isDate` without Node.js optimizations. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a date object, else `false`. - */ -function baseIsDate(value) { - return isObjectLike_1(value) && _baseGetTag(value) == dateTag$2; -} - -var _baseIsDate = baseIsDate; - -/* Node.js helper references. */ -var nodeIsDate = _nodeUtil && _nodeUtil.isDate; - -/** - * Checks if `value` is classified as a `Date` object. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a date object, else `false`. - * @example - * - * _.isDate(new Date); - * // => true - * - * _.isDate('Mon April 23 2012'); - * // => false - */ -var isDate = nodeIsDate ? _baseUnary(nodeIsDate) : _baseIsDate; - -var isDate_1 = isDate; - -/** - * The base implementation of `_.sortedUniq` and `_.sortedUniqBy` without - * support for iteratee shorthands. - * - * @private - * @param {Array} array The array to inspect. - * @param {Function} [iteratee] The iteratee invoked per element. - * @returns {Array} Returns the new duplicate free array. - */ -function baseSortedUniq(array, iteratee) { - var index = -1, - length = array.length, - resIndex = 0, - result = []; - - while (++index < length) { - var value = array[index], - computed = iteratee ? iteratee(value) : value; - - if (!index || !eq_1(computed, seen)) { - var seen = computed; - result[resIndex++] = value === 0 ? 0 : value; - } - } - return result; -} - -var _baseSortedUniq = baseSortedUniq; - -/** - * This method is like `_.uniq` except that it's designed and optimized - * for sorted arrays. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} array The array to inspect. - * @returns {Array} Returns the new duplicate free array. - * @example - * - * _.sortedUniq([1, 1, 2]); - * // => [1, 2] - */ -function sortedUniq(array) { - return (array && array.length) - ? _baseSortedUniq(array) - : []; -} - -var sortedUniq_1 = sortedUniq; - -function _toConsumableArray$8(arr) { return _arrayWithoutHoles$8(arr) || _iterableToArray$8(arr) || _nonIterableSpread$8(); } - -function _nonIterableSpread$8() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$8(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$8(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function cleanDomain(domain, props, axis) { - var scaleType = Scale.getScaleType(props, axis); - - if (scaleType !== "log") { - return domain; - } - - var rules = function (dom) { - var almostZero = dom[0] < 0 || dom[1] < 0 ? -1 / Number.MAX_SAFE_INTEGER : 1 / Number.MAX_SAFE_INTEGER; - var domainOne = dom[0] === 0 ? almostZero : dom[0]; - var domainTwo = dom[1] === 0 ? almostZero : dom[1]; - return [domainOne, domainTwo]; - }; - - return rules(domain); -} - -function getDomainPadding(props, axis) { - var formatPadding = function (padding) { - return Array.isArray(padding) ? { - left: padding[0], - right: padding[1] - } : { - left: padding, - right: padding - }; - }; - - return isPlainObject_1(props.domainPadding) ? formatPadding(props.domainPadding[axis]) : formatPadding(props.domainPadding); -} - -function getFlatData(dataset, axis) { - return flatten_1(dataset).map(function (datum) { - return datum["_".concat(axis)] && datum["_".concat(axis)][1] !== undefined ? datum["_".concat(axis)][1] : datum["_".concat(axis)]; - }); -} - -function getExtremeFromData(dataset, axis) { - var type = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : "min"; - - var getExtreme = function (arr) { - return type === "max" ? Math.max.apply(Math, _toConsumableArray$8(arr)) : Math.min.apply(Math, _toConsumableArray$8(arr)); - }; - - var initialValue = type === "max" ? -Infinity : Infinity; - var containsDate = false; - - var result = flatten_1(dataset).reduce(function (memo, datum) { - var current0 = datum["_".concat(axis, "0")] !== undefined ? datum["_".concat(axis, "0")] : datum["_".concat(axis)]; - var current1 = datum["_".concat(axis, "1")] !== undefined ? datum["_".concat(axis, "1")] : datum["_".concat(axis)]; - var current = getExtreme([current0, current1]); - containsDate = containsDate || current0 instanceof Date || current1 instanceof Date; - return getExtreme([memo, current]); - }, initialValue); - - return containsDate ? new Date(result) : result; -} //eslint-disable-next-line max-statements - - -function padDomain(domain, props, axis) { - if (!props.domainPadding) { - return domain; - } - - var minDomain = getMinFromProps(props, axis); - var maxDomain = getMaxFromProps(props, axis); - var padding = getDomainPadding(props, axis); - - if (!padding.left && !padding.right) { - return domain; - } - - var min = Collection.getMinValue(domain); - var max = Collection.getMaxValue(domain); - var currentAxis = Helpers.getCurrentAxis(axis, props.horizontal); - var range = Helpers.getRange(props, currentAxis); - var rangeExtent = Math.abs(range[0] - range[1]); // Naive initial padding calculation - - var initialPadding = { - left: Math.abs(max - min) * padding.left / rangeExtent, - right: Math.abs(max - min) * padding.right / rangeExtent - }; - var singleQuadrantDomainPadding = isPlainObject_1(props.singleQuadrantDomainPadding) ? props.singleQuadrantDomainPadding[axis] : props.singleQuadrantDomainPadding; - - var adjust = function (val, type) { - if (singleQuadrantDomainPadding === false) { - return val; - } - - var coerce = type === "min" && min >= 0 && val <= 0 || type === "max" && max <= 0 && val >= 0; - return coerce ? 0 : val; - }; // Adjust the domain by the initial padding - - - var adjustedDomain = { - min: adjust(min.valueOf() - initialPadding.left, "min"), - max: adjust(max.valueOf() + initialPadding.right, "max") - }; // re-calculate padding, taking the adjusted domain into account - - var finalPadding = { - left: Math.abs(adjustedDomain.max - adjustedDomain.min) * padding.left / rangeExtent, - right: Math.abs(adjustedDomain.max - adjustedDomain.min) * padding.right / rangeExtent - }; // Adjust the domain by the final padding - - var paddedDomain = { - min: adjust(min.valueOf() - finalPadding.left, "min"), - max: adjust(max.valueOf() + finalPadding.right, "max") - }; // default to minDomain / maxDomain if they exist - - var finalDomain = { - min: minDomain !== undefined ? minDomain : paddedDomain.min, - max: maxDomain !== undefined ? maxDomain : paddedDomain.max - }; - return min instanceof Date || max instanceof Date ? getDomainFromMinMax(new Date(finalDomain.min), new Date(finalDomain.max)) : getDomainFromMinMax(finalDomain.min, finalDomain.max); -} // Public Methods - -/** - * Returns a getDomain function - * @param {Function} getDomainFromDataFunction: a function that takes props and axis and - * returns a domain based on data - * @param {Function} formatDomainFunction: a function that takes domain, props, and axis and - * returns a formatted domain - * @returns {Function} a function that takes props and axis and returns a formatted domain - */ - - -function createDomainFunction(getDomainFromDataFunction, formatDomainFunction) { - getDomainFromDataFunction = isFunction_1(getDomainFromDataFunction) ? getDomainFromDataFunction : getDomainFromData; - formatDomainFunction = isFunction_1(formatDomainFunction) ? formatDomainFunction : formatDomain; - return function (props, axis) { - var propsDomain = getDomainFromProps(props, axis); - - if (propsDomain) { - return formatDomainFunction(propsDomain, props, axis); - } - - var categories = Data.getCategories(props, axis); - var domain = categories ? getDomainFromCategories(props, axis, categories) : getDomainFromDataFunction(props, axis); - return domain ? formatDomainFunction(domain, props, axis) : undefined; - }; -} -/** - * Returns a formatted domain. - * @param {Array} domain: a domain in the form of a two element array - * @param {Object} props: the props object - * @param {String} axis: the current axis - * @returns {Array} a domain in the form of a two element array - */ - - -function formatDomain(domain, props, axis) { - return cleanDomain(padDomain(domain, props, axis), props, axis); -} -/** - * Returns a domain for a given axis based on props, category, or data - * @param {Object} props: the props object - * @param {String} axis: the current axis - * @returns {Array} the domain for the given axis - */ - - -function getDomain(props, axis) { - return createDomainFunction()(props, axis); -} -/** - * Returns a domain based on categories if they exist - * @param {Object} props: the props object - * @param {String} axis: the current axis - * @param {Array} categories: an array of categories corresponding to a given axis - * @returns {Array|undefined} returns a domain from categories or undefined - */ - - -function getDomainFromCategories(props, axis, categories) { - categories = categories || Data.getCategories(props, axis); - var polar = props.polar, - _props$startAngle = props.startAngle, - startAngle = _props$startAngle === void 0 ? 0 : _props$startAngle, - _props$endAngle = props.endAngle, - endAngle = _props$endAngle === void 0 ? 360 : _props$endAngle; - - if (!categories) { - return undefined; - } - - var minDomain = getMinFromProps(props, axis); - var maxDomain = getMaxFromProps(props, axis); - var stringArray = Collection.containsStrings(categories) ? Data.getStringsFromCategories(props, axis) : []; - var stringMap = stringArray.length === 0 ? null : stringArray.reduce(function (memo, string, index) { - memo[string] = index + 1; - return memo; - }, {}); - var categoryValues = stringMap ? categories.map(function (value) { - return stringMap[value]; - }) : categories; - var min = minDomain !== undefined ? minDomain : Collection.getMinValue(categoryValues); - var max = maxDomain !== undefined ? maxDomain : Collection.getMaxValue(categoryValues); - var categoryDomain = getDomainFromMinMax(min, max); - return polar && axis === "x" && Math.abs(startAngle - endAngle) === 360 ? getSymmetricDomain(categoryDomain, categoryValues) : categoryDomain; -} -/** - * Returns a domain from a dataset for a given axis - * @param {Object} props: the props object - * @param {String} axis: the current axis - * @param {Array} dataset: an array of data - * @returns {Array} the domain based on data - */ - - -function getDomainFromData(props, axis, dataset) { - dataset = dataset || Data.getData(props); - var polar = props.polar, - _props$startAngle2 = props.startAngle, - startAngle = _props$startAngle2 === void 0 ? 0 : _props$startAngle2, - _props$endAngle2 = props.endAngle, - endAngle = _props$endAngle2 === void 0 ? 360 : _props$endAngle2; - var minDomain = getMinFromProps(props, axis); - var maxDomain = getMaxFromProps(props, axis); - - if (dataset.length < 1) { - return minDomain !== undefined && maxDomain !== undefined ? getDomainFromMinMax(minDomain, maxDomain) : undefined; - } - - var min = minDomain !== undefined ? minDomain : getExtremeFromData(dataset, axis, "min"); - var max = maxDomain !== undefined ? maxDomain : getExtremeFromData(dataset, axis, "max"); - var domain = getDomainFromMinMax(min, max); - return polar && axis === "x" && Math.abs(startAngle - endAngle) === 360 ? getSymmetricDomain(domain, getFlatData(dataset, axis)) : domain; -} -/** - * Returns a domain in the form of a two element array given a min and max value. - * @param {Number|Date} min: the props object - * @param {Number|Date} max: the current axis - * @returns {Array} the minDomain based on props - */ - - -function getDomainFromMinMax(min, max) { - var getSinglePointDomain = function (val) { - // d3-scale does not properly resolve very small differences. - // eslint-disable-next-line no-magic-numbers - var verySmallNumber = val === 0 ? 2 * Math.pow(10, -10) : Math.pow(10, -10); - var verySmallDate = 1; - var minVal = val instanceof Date ? new Date(+val - verySmallDate) : +val - verySmallNumber; - var maxVal = val instanceof Date ? new Date(+val + verySmallDate) : +val + verySmallNumber; - return val === 0 ? [0, maxVal] : [minVal, maxVal]; - }; - - return +min === +max ? getSinglePointDomain(max) : [min, max]; -} -/** - * Returns a the domain for a given axis if domain is given in props - * @param {Object} props: the props object - * @param {String} axis: the current axis - * @returns {Array|undefined} the domain based on props - */ - - -function getDomainFromProps(props, axis) { - var minDomain = getMinFromProps(props, axis); - var maxDomain = getMaxFromProps(props, axis); - - if (isPlainObject_1(props.domain) && props.domain[axis]) { - return props.domain[axis]; - } else if (Array.isArray(props.domain)) { - return props.domain; - } else if (minDomain !== undefined && maxDomain !== undefined) { - return getDomainFromMinMax(minDomain, maxDomain); - } - - return undefined; -} -/** - * Returns a domain for a given axis. This method forces the domain to include - * zero unless the domain is explicitly specified in props. - * @param {Object} props: the props object - * @param {String} axis: the current axis - * @returns {Array} the domain for the given axis - */ - - -function getDomainWithZero(props, axis) { - var propsDomain = getDomainFromProps(props, axis); - - if (propsDomain) { - return propsDomain; - } - - var dataset = Data.getData(props); - var y0Min = dataset.reduce(function (min, datum) { - return datum._y0 < min ? datum._y0 : min; - }, Infinity); - - var ensureZero = function (domain) { - if (axis === "x") { - return domain; - } - - var defaultMin = y0Min !== Infinity ? y0Min : 0; - var maxDomainProp = getMaxFromProps(props, axis); - var minDomainProp = getMinFromProps(props, axis); - var max = maxDomainProp !== undefined ? maxDomainProp : Collection.getMaxValue(domain, defaultMin); - var min = minDomainProp !== undefined ? minDomainProp : Collection.getMinValue(domain, defaultMin); - return getDomainFromMinMax(min, max); - }; - - var getDomainFunction = function () { - return getDomainFromData(props, axis, dataset); - }; - - var formatDomainFunction = function (domain) { - return formatDomain(ensureZero(domain), props, axis); - }; - - return createDomainFunction(getDomainFunction, formatDomainFunction)(props, axis); -} -/** - * Returns the maxDomain from props if it exists - * @param {Object} props: the props object - * @param {String} axis: the current axis - * @returns {Number|Date|undefined} the maxDomain based on props - */ - - -function getMaxFromProps(props, axis) { - if (isPlainObject_1(props.maxDomain) && props.maxDomain[axis] !== undefined) { - return props.maxDomain[axis]; - } - - return typeof props.maxDomain === "number" || isDate_1(props.maxDomain) ? props.maxDomain : undefined; -} -/** - * Returns the minDomain from props if it exists - * @param {Object} props: the props object - * @param {String} axis: the current axis - * @returns {Number|Date|undefined} the minDomain based on props - */ - - -function getMinFromProps(props, axis) { - if (isPlainObject_1(props.minDomain) && props.minDomain[axis] !== undefined) { - return props.minDomain[axis]; - } - - return typeof props.minDomain === "number" || isDate_1(props.minDomain) ? props.minDomain : undefined; -} -/** - * Returns a symmetrically padded domain for polar charts - * @param {Array} domain: the original domain - * @param {Array} values: a flat array of values corresponding to either tickValues, or data values - * for a given dimension i.e. only x values. - * @returns {Array} the symmetric domain - */ - - -function getSymmetricDomain(domain, values) { - var processedData = sortedUniq_1(values.sort(function (a, b) { - return a - b; - })); - - var step = processedData[1] - processedData[0]; - return [domain[0], domain[1] + step]; -} -/** - * Checks whether a given component can be used to calculate domain - * @param {Component} component: a React component instance - * @returns {Boolean} Returns true if the given component has a role included in the whitelist - */ - - -function isDomainComponent(component) { - var getRole = function (child) { - return child && child.type ? child.type.role : ""; - }; - - var role = getRole(component); - - if (role === "portal") { - var children = React__default.Children.toArray(component.props.children); - role = children.length ? getRole(children[0]) : ""; - } - - var whitelist = ["area", "axis", "bar", "boxplot", "candlestick", "errorbar", "group", "histogram", "line", "pie", "scatter", "stack", "voronoi"]; - return includes_1(whitelist, role); -} - -var Domain = { - createDomainFunction: createDomainFunction, - formatDomain: formatDomain, - getDomain: getDomain, - getDomainFromCategories: getDomainFromCategories, - getDomainFromData: getDomainFromData, - getDomainFromMinMax: getDomainFromMinMax, - getDomainFromProps: getDomainFromProps, - getDomainWithZero: getDomainWithZero, - getMaxFromProps: getMaxFromProps, - getMinFromProps: getMinFromProps, - getSymmetricDomain: getSymmetricDomain, - isDomainComponent: isDomainComponent -}; - -/* eslint-disable func-style */ - -function transformTarget(target, matrix, dimension) { - var a = matrix.a, - d = matrix.d, - e = matrix.e, - f = matrix.f; - return dimension === "y" ? d * target + f : a * target + e; -} - -function getTransformationMatrix(svg) { - return svg.getScreenCTM().inverse(); -} // Exported Functions - - -function getParentSVG(evt) { - if (evt.nativeEvent && evt.nativeEvent.identifier !== undefined) { - return undefined; - } - - var getParent = function (target) { - if (target.nodeName === "svg") { - return target; - } else { - return target.parentNode ? getParent(target.parentNode) : target; - } - }; - - return getParent(evt.target); -} - -function getSVGEventCoordinates(evt, svg) { - if (evt.nativeEvent && evt.nativeEvent.identifier !== undefined) { - // react-native override. relies on the RN.View being the _exact_ same size as its child SVG. - // this should be fine: the svg is the only child of View and the View shirks to its children - return { - x: evt.nativeEvent.locationX, - y: evt.nativeEvent.locationY - }; - } - - evt = evt.changedTouches && evt.changedTouches.length ? evt.changedTouches[0] : evt; - svg = svg || getParentSVG(evt); - var matrix = getTransformationMatrix(svg); - return { - x: transformTarget(evt.clientX, matrix, "x"), - y: transformTarget(evt.clientY, matrix, "y") - }; -} - -function getDomainCoordinates(props, domain) { - var scale = props.scale, - horizontal = props.horizontal; - domain = domain || { - x: scale.x.domain(), - y: scale.y.domain() - }; - return { - x: horizontal ? [scale.y(domain.y[0]), scale.y(domain.y[1])] : [scale.x(domain.x[0]), scale.x(domain.x[1])], - y: horizontal ? [scale.x(domain.x[0]), scale.x(domain.x[1])] : [scale.y(domain.y[0]), scale.y(domain.y[1])] - }; -} // eslint-disable-next-line max-params - - -function getDataCoordinates(props, scale, x, y) { - var polar = props.polar, - horizontal = props.horizontal; - - if (!polar) { - return { - x: horizontal ? scale.x.invert(y) : scale.x.invert(x), - y: horizontal ? scale.y.invert(x) : scale.y.invert(y) - }; - } else { - var origin = props.origin || { - x: 0, - y: 0 - }; - var baseX = x - origin.x; - var baseY = y - origin.y; - var radius = Math.abs(baseX * Math.sqrt(1 + Math.pow(-baseY / baseX, 2))); - var angle = (-Math.atan2(baseY, baseX) + Math.PI * 2) % (Math.PI * 2); - return { - x: scale.x.invert(angle), - y: scale.y.invert(radius) - }; - } -} - -function getBounds(props) { - var x1 = props.x1, - x2 = props.x2, - y1 = props.y1, - y2 = props.y2, - scale = props.scale; - var point1 = getDataCoordinates(props, scale, x1, y1); - var point2 = getDataCoordinates(props, scale, x2, y2); - - var makeBound = function (a, b) { - return [Collection.getMinValue([a, b]), Collection.getMaxValue([a, b])]; - }; - - return { - x: makeBound(point1.x, point2.x), - y: makeBound(point1.y, point2.y) - }; -} - -var Selection = { - getParentSVG: getParentSVG, - getSVGEventCoordinates: getSVGEventCoordinates, - getDomainCoordinates: getDomainCoordinates, - getDataCoordinates: getDataCoordinates, - getBounds: getBounds -}; - -/** - * This method is like `_.uniq` except that it accepts `iteratee` which is - * invoked for each element in `array` to generate the criterion by which - * uniqueness is computed. The order of result values is determined by the - * order they occur in the array. The iteratee is invoked with one argument: - * (value). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {Function} [iteratee=_.identity] The iteratee invoked per element. - * @returns {Array} Returns the new duplicate free array. - * @example - * - * _.uniqBy([2.1, 1.2, 2.3], Math.floor); - * // => [2.1, 1.2] - * - * // The `_.property` iteratee shorthand. - * _.uniqBy([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x'); - * // => [{ 'x': 1 }, { 'x': 2 }] - */ -function uniqBy(array, iteratee) { - return (array && array.length) ? _baseUniq(array, _baseIteratee(iteratee)) : []; -} - -var uniqBy_1 = uniqBy; - -/** - * A specialized version of `baseAggregator` for arrays. - * - * @private - * @param {Array} [array] The array to iterate over. - * @param {Function} setter The function to set `accumulator` values. - * @param {Function} iteratee The iteratee to transform keys. - * @param {Object} accumulator The initial aggregated object. - * @returns {Function} Returns `accumulator`. - */ -function arrayAggregator(array, setter, iteratee, accumulator) { - var index = -1, - length = array == null ? 0 : array.length; - - while (++index < length) { - var value = array[index]; - setter(accumulator, value, iteratee(value), array); - } - return accumulator; -} - -var _arrayAggregator = arrayAggregator; - -/** - * Aggregates elements of `collection` on `accumulator` with keys transformed - * by `iteratee` and values set by `setter`. - * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} setter The function to set `accumulator` values. - * @param {Function} iteratee The iteratee to transform keys. - * @param {Object} accumulator The initial aggregated object. - * @returns {Function} Returns `accumulator`. - */ -function baseAggregator(collection, setter, iteratee, accumulator) { - _baseEach(collection, function(value, key, collection) { - setter(accumulator, value, iteratee(value), collection); - }); - return accumulator; -} - -var _baseAggregator = baseAggregator; - -/** - * Creates a function like `_.groupBy`. - * - * @private - * @param {Function} setter The function to set accumulator values. - * @param {Function} [initializer] The accumulator object initializer. - * @returns {Function} Returns the new aggregator function. - */ -function createAggregator(setter, initializer) { - return function(collection, iteratee) { - var func = isArray_1(collection) ? _arrayAggregator : _baseAggregator, - accumulator = initializer ? initializer() : {}; - - return func(collection, setter, _baseIteratee(iteratee), accumulator); - }; -} - -var _createAggregator = createAggregator; - -/** Used for built-in method references. */ -var objectProto$i = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty$g = objectProto$i.hasOwnProperty; - -/** - * Creates an object composed of keys generated from the results of running - * each element of `collection` thru `iteratee`. The order of grouped values - * is determined by the order they occur in `collection`. The corresponding - * value of each key is an array of elements responsible for generating the - * key. The iteratee is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The iteratee to transform keys. - * @returns {Object} Returns the composed aggregate object. - * @example - * - * _.groupBy([6.1, 4.2, 6.3], Math.floor); - * // => { '4': [4.2], '6': [6.1, 6.3] } - * - * // The `_.property` iteratee shorthand. - * _.groupBy(['one', 'two', 'three'], 'length'); - * // => { '3': ['one', 'two'], '5': ['three'] } - */ -var groupBy = _createAggregator(function(result, value, key) { - if (hasOwnProperty$g.call(result, key)) { - result[key].push(value); - } else { - _baseAssignValue(result, key, [value]); - } -}); - -var groupBy_1 = groupBy; - -/** - * The base implementation of `_.some` without support for iteratee shorthands. - * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} predicate The function invoked per iteration. - * @returns {boolean} Returns `true` if any element passes the predicate check, - * else `false`. - */ -function baseSome(collection, predicate) { - var result; - - _baseEach(collection, function(value, index, collection) { - result = predicate(value, index, collection); - return !result; - }); - return !!result; -} - -var _baseSome = baseSome; - -/** - * Checks if `predicate` returns truthy for **any** element of `collection`. - * Iteration is stopped once `predicate` returns truthy. The predicate is - * invoked with three arguments: (value, index|key, collection). - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {boolean} Returns `true` if any element passes the predicate check, - * else `false`. - * @example - * - * _.some([null, 0, 'yes', false], Boolean); - * // => true - * - * var users = [ - * { 'user': 'barney', 'active': true }, - * { 'user': 'fred', 'active': false } - * ]; - * - * // The `_.matches` iteratee shorthand. - * _.some(users, { 'user': 'barney', 'active': false }); - * // => false - * - * // The `_.matchesProperty` iteratee shorthand. - * _.some(users, ['active', false]); - * // => true - * - * // The `_.property` iteratee shorthand. - * _.some(users, 'active'); - * // => true - */ -function some(collection, predicate, guard) { - var func = isArray_1(collection) ? _arraySome : _baseSome; - if (guard && _isIterateeCall(collection, predicate, guard)) { - predicate = undefined; - } - return func(collection, _baseIteratee(predicate)); -} - -var some_1 = some; - -/** - * The base implementation of `_.invert` and `_.invertBy` which inverts - * `object` with values transformed by `iteratee` and set by `setter`. - * - * @private - * @param {Object} object The object to iterate over. - * @param {Function} setter The function to set `accumulator` values. - * @param {Function} iteratee The iteratee to transform values. - * @param {Object} accumulator The initial inverted object. - * @returns {Function} Returns `accumulator`. - */ -function baseInverter(object, setter, iteratee, accumulator) { - _baseForOwn(object, function(value, key, object) { - setter(accumulator, iteratee(value), key, object); - }); - return accumulator; -} - -var _baseInverter = baseInverter; - -/** - * Creates a function like `_.invertBy`. - * - * @private - * @param {Function} setter The function to set accumulator values. - * @param {Function} toIteratee The function to resolve iteratees. - * @returns {Function} Returns the new inverter function. - */ -function createInverter(setter, toIteratee) { - return function(object, iteratee) { - return _baseInverter(object, setter, toIteratee(iteratee), {}); - }; -} - -var _createInverter = createInverter; - -/** Used for built-in method references. */ -var objectProto$j = Object.prototype; - -/** - * Used to resolve the - * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) - * of values. - */ -var nativeObjectToString$2 = objectProto$j.toString; - -/** - * Creates an object composed of the inverted keys and values of `object`. - * If `object` contains duplicate values, subsequent values overwrite - * property assignments of previous values. - * - * @static - * @memberOf _ - * @since 0.7.0 - * @category Object - * @param {Object} object The object to invert. - * @returns {Object} Returns the new inverted object. - * @example - * - * var object = { 'a': 1, 'b': 2, 'c': 1 }; - * - * _.invert(object); - * // => { '1': 'c', '2': 'b' } - */ -var invert = _createInverter(function(result, value, key) { - if (value != null && - typeof value.toString != 'function') { - value = nativeObjectToString$2.call(value); - } - - result[value] = key; -}, constant_1(identity_1)); - -var invert_1 = invert; - -function _toConsumableArray$9(arr) { return _arrayWithoutHoles$9(arr) || _iterableToArray$9(arr) || _nonIterableSpread$9(); } - -function _nonIterableSpread$9() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$9(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$9(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } -/** - * Returns the axis (x or y) of a particular axis component - * @param {Object} props: the props object. - * @param {Boolean} horizontal: true for horizontal charts - * @returns {String} the dimension appropriate for the axis given its props - */ - -function getAxis(props) { - var dependentAxis = props.dependentAxis; - return dependentAxis ? "y" : "x"; -} -/** - * Returns all axis components that pass a given predicate - * @param {Array} childComponents: an array of children - * @param {Function} predicate: a predicate function that will be called with each - * @returns {Array} all axis components that pass the given predicate or [] - */ - - -function findAxisComponents(childComponents, predicate) { - predicate = predicate || identity_1; - - var findAxes = function (children) { - return children.reduce(function (memo, child) { - if (child.type && child.type.role === "axis" && predicate(child)) { - return memo.concat(child); - } else if (child.props && child.props.children) { - return memo.concat(findAxes(React__default.Children.toArray(child.props.children))); - } - - return memo; - }, []); - }; - - return findAxes(childComponents); -} -/** - * Returns a single axis component of the desired axis type (x or y) - * @param {Array} childComponents: an array of children - * @param {String} axis: desired axis either "x" or "y". - * @returns {ReactComponent} an axis component of the desired axis or undefined - */ - - -function getAxisComponent(childComponents, axis) { - var matchesAxis = function (component) { - var type = component.type.getAxis(component.props); - return type === axis; - }; - - return findAxisComponents(childComponents, matchesAxis)[0]; -} -/** - * Returns all axis components of the desired axis type (x or y) along with any - * parent components excluding VictoryChart - * @param {Array} childComponents: an optional array of children. - * @param {String} type: desired axis either "dependent" or "independent". - * @returns {ReactComponent} an axis component of the desired type or undefined - */ - - -function getAxisComponentsWithParent(childComponents, type) { - var matchesType = function (child) { - return type === "dependent" ? child.props.dependentAxis : !child.props.dependentAxis; - }; - - var findComponents = function (children) { - return children.reduce(function (memo, child) { - if (child.type && child.type.role === "axis" && matchesType(child)) { - return memo.concat(child); - } else if (child.props && child.props.children) { - var childAxis = findComponents(React__default.Children.toArray(child.props.children)); - return childAxis.length > 0 ? memo.concat(child) : memo; - } - - return memo; - }, []); - }; - - return findComponents(childComponents); -} - -function getOrigin(domain) { - var getSingleOrigin = function (d) { - var domainMin = Math.min.apply(Math, _toConsumableArray$9(d)); - var domainMax = Math.max.apply(Math, _toConsumableArray$9(d)); - return domainMax < 0 ? domainMax : Math.max(0, domainMin); - }; - - return { - x: Collection.containsDates(domain.x) ? new Date(Math.min.apply(Math, _toConsumableArray$9(domain.x))) : getSingleOrigin(domain.x), - y: Collection.containsDates(domain.y) ? new Date(Math.min.apply(Math, _toConsumableArray$9(domain.y))) : getSingleOrigin(domain.y) - }; -} - -function getOriginSign(origin, domain) { - var getSign = function () { - return origin <= 0 && Math.max.apply(Math, _toConsumableArray$9(domain)) <= 0 ? "negative" : "positive"; - }; - - return Collection.containsDates(domain) ? "positive" : getSign(); -} -/** - * @param {Object} props: axis component props - * @returns {Boolean} true when the axis is vertical - */ - - -function isVertical(props) { - var orientation = props.orientation || (props.dependentAxis ? "left" : "bottom"); - var vertical = { - top: false, - bottom: false, - left: true, - right: true - }; - return vertical[orientation]; -} -/** - * @param {Object} props: axis component props - * @returns {Boolean} true when tickValues contain strings - */ - - -function stringTicks(props) { - return props.tickValues !== undefined && Collection.containsStrings(props.tickValues); -} - -function getDefaultTickFormat(props) { - var tickValues = props.tickValues; - var axis = getAxis(props); - var stringMap = props.stringMap && props.stringMap[axis]; - var fallbackFormat = tickValues && !Collection.containsDates(tickValues) ? function (x) { - return x; - } : undefined; - - if (!stringMap) { - return stringTicks(props) ? function (x, index) { - return tickValues[index]; - } : fallbackFormat; - } else { - var invertedStringMap = stringMap && invert_1(stringMap); - - var tickValueArray = orderBy_1(values_1(stringMap), function (n) { - return n; - }); - - var dataNames = tickValueArray.map(function (tick) { - return invertedStringMap[tick]; - }); // string ticks should have one tick of padding at the beginning - - var dataTicks = [""].concat(_toConsumableArray$9(dataNames), [""]); - return function (x) { - return dataTicks[x]; - }; - } -} - -function getTickFormat(props, scale) { - var tickFormat = props.tickFormat; - var axis = getAxis(props); - var stringMap = props.stringMap && props.stringMap[axis]; - - if (!tickFormat) { - var defaultTickFormat = getDefaultTickFormat(props); - var scaleTickFormat = scale.tickFormat && isFunction_1(scale.tickFormat) ? scale.tickFormat() : function (x) { - return x; - }; - return defaultTickFormat || scaleTickFormat; - } else if (tickFormat && Array.isArray(tickFormat)) { - return function (x, index) { - return tickFormat[index]; - }; - } else if (tickFormat && isFunction_1(tickFormat)) { - var applyStringTicks = function (tick, index, ticks) { - var invertedStringMap = invert_1(stringMap); - - var stringTickArray = ticks.map(function (t) { - return invertedStringMap[t]; - }); - return props.tickFormat(invertedStringMap[tick], index, stringTickArray); - }; - - return stringMap ? applyStringTicks : tickFormat; - } else { - return function (x) { - return x; - }; - } -} - -function getStringTicks(props) { - var axis = getAxis(props); - var stringMap = props.stringMap && props.stringMap[axis]; - var categories = Array.isArray(props.categories) ? props.categories : props.categories && props.categories[axis]; - var ticksFromCategories = categories && Collection.containsOnlyStrings(categories) ? categories.map(function (tick) { - return stringMap[tick]; - }) : undefined; - - var ticksFromStringMap = stringMap && values_1(stringMap); - - return ticksFromCategories && ticksFromCategories.length !== 0 ? ticksFromCategories : ticksFromStringMap; -} - -function getTickArray(props) { - var tickValues = props.tickValues, - tickFormat = props.tickFormat; - var axis = getAxis(props); - var stringMap = props.stringMap && props.stringMap[axis]; - - var getTicksFromFormat = function () { - if (!tickFormat || !Array.isArray(tickFormat)) { - return undefined; - } - - return Collection.containsStrings(tickFormat) ? tickFormat.map(function (t, i) { - return i; - }) : tickFormat; - }; - - var ticks = tickValues; - - if (stringMap) { - ticks = getStringTicks(props); - } - - if (tickValues && Collection.containsStrings(tickValues)) { - ticks = stringMap ? tickValues.map(function (tick) { - return stringMap[tick]; - }) : range_1(1, tickValues.length + 1); - } - - var tickArray = ticks ? uniq_1(ticks) : getTicksFromFormat(); - - var filterArray = function (arr) { - var domain = props.domain && props.domain[axis] || props.domain; - return Array.isArray(domain) ? arr.filter(function (t) { - return t >= Math.min.apply(Math, _toConsumableArray$9(domain)) && t <= Math.max.apply(Math, _toConsumableArray$9(domain)); - }) : arr; - }; - - return Array.isArray(tickArray) && tickArray.length ? filterArray(tickArray) : undefined; -} - -function downsampleTicks(ticks, tickCount) { - if (!tickCount || !Array.isArray(ticks) || ticks.length <= tickCount) { - return ticks; - } - - var k = Math.floor(ticks.length / tickCount); - return ticks.filter(function (d, i) { - return i % k === 0; - }); -} - -function getTicks(props, scale, filterZero) { - var tickCount = props.tickCount; - var tickValues = getTickArray(props); - - if (tickValues) { - return downsampleTicks(tickValues, tickCount); - } else if (scale.ticks && isFunction_1(scale.ticks)) { - // eslint-disable-next-line no-magic-numbers - var defaultTickCount = tickCount || 5; - var scaleTicks = scale.ticks(defaultTickCount); - var tickArray = Array.isArray(scaleTicks) && scaleTicks.length ? scaleTicks : scale.domain(); - var ticks = downsampleTicks(tickArray, tickCount); - - if (filterZero) { - var filteredTicks = includes_1(ticks, 0) ? without_1(ticks, 0) : ticks; - return filteredTicks.length ? filteredTicks : ticks; - } - - return ticks; - } - - return scale.domain(); -} -/** - * Returns a domain based tickValues - * @param {Object} props: the props object - * @param {String} axis: either x or y - * @returns {Array} returns a domain from tickValues - */ -//eslint-disable-next-line max-statements - - -function getDomainFromData$1(props, axis) { - var polar = props.polar, - _props$startAngle = props.startAngle, - startAngle = _props$startAngle === void 0 ? 0 : _props$startAngle, - _props$endAngle = props.endAngle, - endAngle = _props$endAngle === void 0 ? 360 : _props$endAngle; - var tickValues = getTickArray(props); - - if (!Array.isArray(tickValues)) { - return undefined; - } - - var minDomain = Domain.getMinFromProps(props, axis); - var maxDomain = Domain.getMaxFromProps(props, axis); - var tickStrings = stringTicks(props); - var ticks = tickValues.map(function (value) { - return +value; - }); - var defaultMin = tickStrings ? 1 : Collection.getMinValue(ticks); - var defaultMax = tickStrings ? tickValues.length : Collection.getMaxValue(ticks); - var min = minDomain !== undefined ? minDomain : defaultMin; - var max = maxDomain !== undefined ? maxDomain : defaultMax; - var initialDomain = Domain.getDomainFromMinMax(min, max); - var domain = polar && axis === "x" && Math.abs(startAngle - endAngle) === 360 ? Domain.getSymmetricDomain(initialDomain, ticks) : initialDomain; - - if (isVertical(props) && !polar) { - domain.reverse(); - } - - return domain; -} // exposed for use by VictoryChart - - -function getDomain$1(props, axis) { - var inherentAxis = getAxis(props); - - if (axis && axis !== inherentAxis) { - return undefined; - } - - return Domain.createDomainFunction(getDomainFromData$1)(props, inherentAxis); -} - -function getAxisValue(props, axis) { - if (!props.axisValue) { - return undefined; - } - - var scaleAxis = axis === "x" ? "y" : "x"; - var scale = isObject_1(props.scale) && isFunction_1(props.scale[scaleAxis]) ? props.scale[scaleAxis] : undefined; - - if (!scale) { - return undefined; - } - - var stringMapAxis = axis === "x" ? "y" : "x"; - var stringMap = isObject_1(props.stringMap) && props.stringMap[stringMapAxis]; - var axisValue = stringMap && typeof props.axisValue === "string" ? stringMap[props.axisValue] : props.axisValue; - return scale(axisValue); -} - -function modifyProps$1(props, fallbackProps) { - if (!isObject_1(props.theme)) { - return Helpers.modifyProps(props, fallbackProps, "axis"); - } - - var role = "axis"; - - if (props.dependentAxis && props.theme.dependentAxis) { - role = "dependentAxis"; - } else if (!props.dependentAxis && props.theme.independentAxis) { - role = "independentAxis"; - } - - if (role === "axis") { - return Helpers.modifyProps(props, fallbackProps, "axis"); - } - - var axisTheme = defaults_1({}, props.theme[role], props.theme.axis); - - var theme = assign_1({}, props.theme, { - axis: axisTheme - }); - - return Helpers.modifyProps(assign_1({}, props, { - theme: theme - }), fallbackProps, "axis"); -} - -var Axis = { - getTicks: getTicks, - getTickFormat: getTickFormat, - getAxis: getAxis, - getAxisComponent: getAxisComponent, - getAxisComponentsWithParent: getAxisComponentsWithParent, - getAxisValue: getAxisValue, - findAxisComponents: findAxisComponents, - getOrigin: getOrigin, - getOriginSign: getOriginSign, - getDomain: getDomain$1, - isVertical: isVertical, - modifyProps: modifyProps$1, - stringTicks: stringTicks -}; - -function _objectSpread$8(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$b(target, key, source[key]); }); } return target; } - -function _defineProperty$b(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _toConsumableArray$a(arr) { return _arrayWithoutHoles$a(arr) || _iterableToArray$a(arr) || _nonIterableSpread$a(); } - -function _nonIterableSpread$a() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$a(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$a(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } -var Wrapper = { - getData: function (props, childComponents) { - if (props.data) { - return Data.getData(props); - } - - childComponents = childComponents || React__default.Children.toArray(props.children); - return this.getDataFromChildren(childComponents); - }, - getDefaultDomainPadding: function (props, axis, childComponents) { - if (props.polar || axis !== "x") { - return undefined; - } - - var groupComponent = childComponents.filter(function (child) { - return child.type && child.type.role && child.type.role === "group"; - }); - - if (groupComponent.length < 1) { - return undefined; - } - - var _groupComponent$0$pro = groupComponent[0].props, - offset = _groupComponent$0$pro.offset, - children = _groupComponent$0$pro.children; - return { - x: offset * children.length / 2 - }; - }, - getDomain: function (props, axis, childComponents) { - childComponents = childComponents || React__default.Children.toArray(props.children); - var propsDomain = Domain.getDomainFromProps(props, axis); - var domainPadding = this.getDefaultDomainPadding(props, axis, childComponents); - var domain; - - if (propsDomain) { - domain = propsDomain; - } else { - var minDomain = Domain.getMinFromProps(props, axis); - var maxDomain = Domain.getMaxFromProps(props, axis); - var dataset = (props.data || props.y) && Data.getData(props); - var dataDomain = dataset ? Domain.getDomainFromData(props, axis, dataset) : []; - var childDomain = this.getDomainFromChildren(props, axis, childComponents); - var min = minDomain || Collection.getMinValue(_toConsumableArray$a(dataDomain).concat(_toConsumableArray$a(childDomain))); - var max = maxDomain || Collection.getMaxValue(_toConsumableArray$a(dataDomain).concat(_toConsumableArray$a(childDomain))); - domain = Domain.getDomainFromMinMax(min, max); - } - - return Domain.formatDomain(domain, assign_1({ - domainPadding: domainPadding - }, props), axis); - }, - getScale: function (props, axis, childComponents) { - if (props.data) { - return Scale.getBaseScale(props, axis); - } - - var children = childComponents ? childComponents.slice(0) : React__default.Children.toArray(props.children); - - var iteratee = function (child) { - var sharedProps = assign_1({}, child.props, { - horizontal: props.horizontal - }); - - return Scale.getScaleType(sharedProps, axis); - }; - - var childScale = uniq_1(Helpers.reduceChildren(children, iteratee, props)); // default to linear scale if more than one uniq scale type is given by children - - - return childScale.length > 1 ? Scale.getScaleFromName("linear") : Scale.getScaleFromName(childScale[0]); - }, - setAnimationState: function (props, nextProps) { - if (!props.animate) { - return; - } - - if (props.animate.parentState) { - var nodesWillExit = props.animate.parentState.nodesWillExit; - var oldProps = nodesWillExit ? props : null; - this.setState(defaults_1({ - oldProps: oldProps, - nextProps: nextProps - }, props.animate.parentState)); - } else { - var oldChildren = React__default.Children.toArray(props.children); - var nextChildren = React__default.Children.toArray(nextProps.children); - - var isContinuous = function (child) { - var check = function (c) { - return c.type && c.type.continuous; - }; - - return Array.isArray(child) ? some_1(child, check) : check(child); - }; - - var continuous = !props.polar && some_1(oldChildren, function (child) { - return isContinuous(child) || child.props.children && isContinuous(child.props.children); - }); - - var _Transitions$getIniti = Transitions.getInitialTransitionState(oldChildren, nextChildren), - _nodesWillExit = _Transitions$getIniti.nodesWillExit, - nodesWillEnter = _Transitions$getIniti.nodesWillEnter, - childrenTransitions = _Transitions$getIniti.childrenTransitions, - nodesShouldEnter = _Transitions$getIniti.nodesShouldEnter; - - this.setState({ - nodesWillExit: _nodesWillExit, - nodesWillEnter: nodesWillEnter, - nodesShouldEnter: nodesShouldEnter, - childrenTransitions: Collection.isArrayOfArrays(childrenTransitions) ? childrenTransitions[0] : childrenTransitions, - oldProps: _nodesWillExit ? props : null, - nextProps: nextProps, - continuous: continuous - }); - } - }, - getAllEvents: function (props) { - var components = ["groupComponent", "containerComponent", "labelComponent"]; - this.componentEvents = Events.getComponentEvents(props, components); - var events = props.events; - - if (Array.isArray(this.componentEvents)) { - var _componentEvents; - - events = Array.isArray(props.events) ? (_componentEvents = this.componentEvents).concat.apply(_componentEvents, _toConsumableArray$a(props.events)) : this.componentEvents; - } - - return events || []; - }, - getAnimationProps: function (props, child, index) { - var _this = this; - - if (!props.animate) { - return child.props.animate; - } - - var getFilteredState = function () { - var childrenTransitions = _this.state && _this.state.childrenTransitions; - childrenTransitions = Collection.isArrayOfArrays(childrenTransitions) ? childrenTransitions[index] : childrenTransitions; - return defaults_1({ - childrenTransitions: childrenTransitions - }, _this.state); - }; - - var getTransitions = props.animate && props.animate.getTransitions; - var state = getFilteredState(); - var parentState = props.animate && props.animate.parentState || state; - - if (!getTransitions) { - var getTransitionProps = Transitions.getTransitionPropsFactory(props, state, function (newState) { - return _this.setState(newState); - }); - - getTransitions = function (childComponent) { - return getTransitionProps(childComponent, index); - }; - } - - return defaults_1({ - getTransitions: getTransitions, - parentState: parentState - }, props.animate, child.props.animate); - }, - getDomainFromChildren: function (props, axis, childComponents) { - // eslint-disable-line max-statements, complexity, max-len - var children = childComponents ? childComponents.slice(0) : React__default.Children.toArray(props.children); - var parentData = props.data ? Data.getData(props, axis) : undefined; - var polar = props.polar, - startAngle = props.startAngle, - endAngle = props.endAngle, - categories = props.categories, - minDomain = props.minDomain, - maxDomain = props.maxDomain, - horizontal = props.horizontal; - var baseParentProps = { - horizontal: horizontal, - polar: polar, - startAngle: startAngle, - endAngle: endAngle, - minDomain: minDomain, - maxDomain: maxDomain, - categories: categories - }; - var parentProps = parentData ? assign_1(baseParentProps, { - data: parentData - }) : baseParentProps; - - var iteratee = function (child) { - var sharedProps = assign_1({}, child.props, parentProps); - - if (!Domain.isDomainComponent(child)) { - return null; - } else if (child.type && isFunction_1(child.type.getDomain)) { - return child.props && child.type.getDomain(sharedProps, axis); - } else { - return Domain.getDomain(sharedProps, axis); - } - }; - - var childDomains = Helpers.reduceChildren(children, iteratee, props); - var min = childDomains.length === 0 ? 0 : Collection.getMinValue(childDomains); - var max = childDomains.length === 0 ? 1 : Collection.getMaxValue(childDomains); - return [min, max]; - }, - addBinsToParentPropsIfHistogram: function (_ref) { - var children = _ref.children, - props = _ref.props, - childComponents = _ref.childComponents, - parentProps = _ref.parentProps; - var someChildrenAreHistograms = children.some(function (child) { - return child.type && child.type.role === "histogram"; - }); - var allChildrenAreHistograms = someChildrenAreHistograms && children.length && children.every(function (child) { - return child.type && child.type.role === "histogram"; - }); - - if (someChildrenAreHistograms && !allChildrenAreHistograms) { - Log.warn("VictoryHistogram only supports being stacked with other VictoryHistogram components. Check to make sure that you are only passing VictoryHistogram components to VictoryStack"); - } // if we are stacking histograms, we need to generate explicit bins - // or else each histogram may end up having different bins - - - if (!allChildrenAreHistograms) { - return parentProps; - } - - var childBins = props.bins || childComponents[0].props.bins; // if we have explicit bins then we don't need to calculate them - - if (!Array.isArray(childBins)) { - var combinedData = children.reduce(function (memo, child) { - var xAccessor = Helpers.createAccessor(child.props.x || "x"); - return memo.concat(child.props.data.map(function (datum) { - return { - x: xAccessor(datum) - }; - })); - }, []); // use the same function to generate bins as VictoryHistogram but with - // the combined data from above, then get explicit bins from that - - var getFormattedHistogramData = children[0].type.getFormattedData; - childBins = getFormattedHistogramData({ - data: combinedData, - bins: childBins - }).reduce(function (memo, _ref2, index) { - var x0 = _ref2.x0, - x1 = _ref2.x1; - return index === 0 ? memo.concat([x0, x1]) : memo.concat(x1); - }, []); - } - - return _objectSpread$8({}, parentProps, { - bins: childBins - }); - }, - getDataFromChildren: function (props, childComponents) { - var polar = props.polar, - startAngle = props.startAngle, - endAngle = props.endAngle, - categories = props.categories, - minDomain = props.minDomain, - maxDomain = props.maxDomain; - var parentProps = { - polar: polar, - startAngle: startAngle, - endAngle: endAngle, - categories: categories, - minDomain: minDomain, - maxDomain: maxDomain - }; - var stack = 0; - var children = childComponents ? childComponents.slice(0) : React__default.Children.toArray(props.children); - parentProps = this.addBinsToParentPropsIfHistogram({ - children: children, - props: props, - childComponents: childComponents, - parentProps: parentProps - }); - - var iteratee = function (child, childName, parent) { - var childProps = assign_1({}, child.props, parentProps); - - var childData; - - if (!Data.isDataComponent(child)) { - return null; - } else if (child.type && isFunction_1(child.type.getData)) { - child = parent ? React__default.cloneElement(child, parent.props) : child; - childData = child.type.getData(childProps); - } else { - childData = Data.getData(childProps); - } - - stack += 1; - return childData.map(function (datum, index) { - return assign_1({ - _stack: stack, - _group: index - }, datum); - }); - }; - - var stacked = children.filter(function (c) { - return c.type && c.type.role === "stack"; - }).length; - - var combine = function (memo, val) { - return memo.concat(uniqBy_1(val, "_group")); - }; - - var datasets = Helpers.reduceChildren(children, iteratee, props, [], combine); - var group = stacked ? "_group" : "_stack"; - return values_1(groupBy_1(datasets, group)); - }, - getColor: function (calculatedProps, child, index) { - // check for styles first - var style = calculatedProps.style; - var colorScale = calculatedProps.colorScale, - color = calculatedProps.color; - - if (style && style.data && style.data.fill) { - return style.data.fill; - } - - colorScale = child.props && child.props.colorScale ? child.props.colorScale : colorScale; - color = child.props && child.props.color ? child.props.color : color; - - if (!colorScale && !color) { - return undefined; - } - - var colors = Array.isArray(colorScale) ? colorScale : Style.getColorScale(colorScale); - return color || colors[index % colors.length]; - }, - getWidth: function (props) { - var datasets = props.datasets, - scale = props.scale, - horizontal = props.horizontal; - var range = horizontal ? scale.y.range() : scale.x.range(); - var extent = Math.abs(range[1] - range[0]); - var seriesLength = Array.isArray(datasets[0]) ? datasets[0].length : 1; - var bars = datasets.length * seriesLength + 2; - var barRatio = 0.5; - return { - width: Math.round(barRatio * extent / bars) - }; - }, - getStyle: function (theme, style, role) { - var defaultStyle = theme && theme[role] && theme[role].style ? theme[role].style : {}; - return Helpers.getStyles(style, defaultStyle); - }, - getChildStyle: function (child, index, calculatedProps) { - var style = calculatedProps.style, - role = calculatedProps.role; - var childStyle = child.props.style || {}; - - if (Array.isArray(childStyle)) { - return childStyle; - } - - var childRole = child.type && child.type.role; - var defaultFill = childRole === "stack" ? undefined : this.getColor(calculatedProps, child, index); - var defaultColor = childRole === "line" ? { - fill: "none", - stroke: defaultFill - } : { - fill: defaultFill - }; - var dataWidth = role === "stack" ? {} : this.getWidth(calculatedProps); - - var dataStyle = defaults_1({}, childStyle.data, assign_1({}, dataWidth, style.data, defaultColor)); - - var labelsStyle = defaults_1({}, childStyle.labels, style.labels); - - return { - parent: style.parent, - data: dataStyle, - labels: labelsStyle - }; - }, - getStringsFromCategories: function (childComponents, axis) { - var iteratee = function (child) { - var childProps = child.props || {}; - - if (!Domain.isDomainComponent(child) || !childProps.categories) { - return null; - } else { - var categories = childProps.categories && !Array.isArray(childProps.categories) ? childProps.categories[axis] : childProps.props.categories; - var categoryStrings = categories && categories.filter(function (val) { - return typeof val === "string"; - }); - return categoryStrings ? Collection.removeUndefined(categoryStrings) : []; - } - }; - - return Helpers.reduceChildren(childComponents.slice(0), iteratee); - }, - getStringsFromData: function (childComponents) { - var iteratee = function (child) { - var childProps = child.props || {}; - var data; - - if (!Data.isDataComponent(child)) { - return null; - } else if (child.type && isFunction_1(child.type.getData)) { - data = child.type.getData(childProps); - } else { - data = Data.getData(childProps); - } - - return data.map(function (d) { - return { - x: d.xName, - y: d.yName - }; - }); - }; - - var initialMemo = { - x: [], - y: [] - }; - - var combine = function (memo, datum) { - var x = Array.isArray(datum) ? datum.map(function (d) { - return d.x; - }).filter(Boolean) : datum.x; - var y = Array.isArray(datum) ? datum.map(function (d) { - return d.y; - }).filter(Boolean) : datum.y; - return { - x: x !== undefined ? memo.x.concat(x) : memo.x, - y: y !== undefined ? memo.y.concat(y) : memo.y - }; - }; - - return Helpers.reduceChildren(childComponents.slice(0), iteratee, {}, initialMemo, combine); - }, - getCategoryAndAxisStringsFromChildren: function (props, axis, childComponents) { - var categories = isPlainObject_1(props.categories) ? props.categories[axis] : props.categories; - var axisComponent = Axis.getAxisComponent(childComponents, axis); - var axisStrings = axisComponent ? Data.getStringsFromAxes(axisComponent.props, axis) : []; - var categoryStrings = categories || this.getStringsFromCategories(childComponents, axis); - return uniq_1(flatten_1(_toConsumableArray$a(categoryStrings).concat(_toConsumableArray$a(axisStrings)))); - }, - getStringsFromChildren: function (props, childComponents) { - childComponents = childComponents || React__default.Children.toArray(props.children); - var xStrings = this.getCategoryAndAxisStringsFromChildren(props, "x", childComponents); - var yStrings = this.getCategoryAndAxisStringsFromChildren(props, "y", childComponents); - var dataStrings = this.getStringsFromData(childComponents); - return { - x: uniq_1(flatten_1(_toConsumableArray$a(xStrings).concat(_toConsumableArray$a(dataStrings.x)))), - y: uniq_1(flatten_1(_toConsumableArray$a(yStrings).concat(_toConsumableArray$a(dataStrings.y)))) - }; - }, - getCategories: function (props, childComponents, allStrings) { - var xPropCategories = props.categories && !Array.isArray(props.categories) ? props.categories.x : props.categories; - var yPropCategories = props.categories && !Array.isArray(props.categories) ? props.categories.y : props.categories; - var fallbackRequired = !xPropCategories || !yPropCategories; - var fallbackProps = fallbackRequired ? allStrings || this.getStringsFromChildren(props, childComponents) : {}; - var xCategories = xPropCategories || fallbackProps.x; - var yCategories = yPropCategories || fallbackProps.y; - return { - x: xCategories.length > 0 ? xCategories : undefined, - y: yCategories.length > 0 ? yCategories : undefined - }; - } -}; - -/** - * The inverse of `_.toPairs`; this method returns an object composed - * from key-value `pairs`. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} pairs The key-value pairs. - * @returns {Object} Returns the new object. - * @example - * - * _.fromPairs([['a', 1], ['b', 2]]); - * // => { 'a': 1, 'b': 2 } - */ -function fromPairs(pairs) { - var index = -1, - length = pairs == null ? 0 : pairs.length, - result = {}; - - while (++index < length) { - var pair = pairs[index]; - result[pair[0]] = pair[1]; - } - return result; -} - -var fromPairs_1 = fromPairs; - -var stringify_1 = createCommonjsModule(function (module, exports) { -exports = module.exports = stringify; -exports.getSerialize = serializer; - -function stringify(obj, replacer, spaces, cycleReplacer) { - return JSON.stringify(obj, serializer(replacer, cycleReplacer), spaces) -} - -function serializer(replacer, cycleReplacer) { - var stack = [], keys = []; - - if (cycleReplacer == null) cycleReplacer = function(key, value) { - if (stack[0] === value) return "[Circular ~]" - return "[Circular ~." + keys.slice(0, stack.indexOf(value)).join(".") + "]" - }; - - return function(key, value) { - if (stack.length > 0) { - var thisPos = stack.indexOf(this); - ~thisPos ? stack.splice(thisPos + 1) : stack.push(this); - ~thisPos ? keys.splice(thisPos, Infinity, key) : keys.push(key); - if (~stack.indexOf(value)) value = cycleReplacer.call(this, key, value); - } - else stack.push(value); - - return replacer == null ? value : replacer.call(this, key, value) - } -} -}); -var stringify_2 = stringify_1.getSerialize; - -function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest(); } - -function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } - -function _iterableToArrayLimit(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } - -function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } - -function _toConsumableArray$b(arr) { return _arrayWithoutHoles$b(arr) || _iterableToArray$b(arr) || _nonIterableSpread$b(); } - -function _nonIterableSpread$b() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$b(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$b(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function _classCallCheck$8(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$8(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$8(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$8(Constructor.prototype, protoProps); if (staticProps) _defineProperties$8(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$7(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$7(self); } - -function _inherits$7(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } - -function _assertThisInitialized$7(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -var VictorySharedEvents = -/*#__PURE__*/ -function (_React$Component) { - _inherits$7(VictorySharedEvents, _React$Component); - - function VictorySharedEvents(props) { - var _this; - - _classCallCheck$8(this, VictorySharedEvents); - - _this = _possibleConstructorReturn$7(this, (VictorySharedEvents.__proto__ || Object.getPrototypeOf(VictorySharedEvents)).call(this, props)); - _this.state = _this.state || {}; - _this.getScopedEvents = Events.getScopedEvents.bind(_assertThisInitialized$7(_this)); - _this.getEventState = Events.getEventState.bind(_assertThisInitialized$7(_this)); - _this.baseProps = _this.getBaseProps(props); - _this.sharedEventsCache = {}; - _this.globalEvents = {}; - _this.prevGlobalEventKeys = []; - _this.boundGlobalEvents = {}; - return _this; - } - - _createClass$8(VictorySharedEvents, [{ - key: "shouldComponentUpdate", - value: function shouldComponentUpdate(nextProps) { - if (!reactFastCompare(this.props, nextProps)) { - this.baseProps = this.getBaseProps(nextProps); - var externalMutations = this.getExternalMutations(nextProps, this.baseProps); - this.applyExternalMutations(nextProps, externalMutations); - } - - return true; - } - }, { - key: "componentDidMount", - value: function componentDidMount() { - var _this2 = this; - - var globalEventKeys = keys_1(this.globalEvents); - - globalEventKeys.forEach(function (key) { - return _this2.addGlobalListener(key); - }); - this.prevGlobalEventKeys = globalEventKeys; - } - }, { - key: "componentDidUpdate", - value: function componentDidUpdate() { - var _this3 = this; - - var globalEventKeys = keys_1(this.globalEvents); - - var removedGlobalEventKeys = difference_1(this.prevGlobalEventKeys, globalEventKeys); - - removedGlobalEventKeys.forEach(function (key) { - return _this3.removeGlobalListener(key); - }); - - var addedGlobalEventKeys = difference_1(globalEventKeys, this.prevGlobalEventKeys); - - addedGlobalEventKeys.forEach(function (key) { - return _this3.addGlobalListener(key); - }); - this.prevGlobalEventKeys = globalEventKeys; - } - }, { - key: "componentWillUnmount", - value: function componentWillUnmount() { - var _this4 = this; - - this.prevGlobalEventKeys.forEach(function (key) { - return _this4.removeGlobalListener(key); - }); - } - }, { - key: "addGlobalListener", - value: function addGlobalListener(key) { - var _this5 = this; - - var boundListener = function (event) { - var listener = _this5.globalEvents[key]; - return listener && listener(Events.emulateReactEvent(event)); - }; - - this.boundGlobalEvents[key] = boundListener; - window.addEventListener(Events.getGlobalEventNameFromKey(key), boundListener); - } - }, { - key: "removeGlobalListener", - value: function removeGlobalListener(key) { - window.removeEventListener(Events.getGlobalEventNameFromKey(key), this.boundGlobalEvents[key]); - } - }, { - key: "getAllEvents", - value: function getAllEvents(props) { - var components = ["container", "groupComponent"]; - var componentEvents = Events.getComponentEvents(props, components); - - if (Array.isArray(componentEvents)) { - return Array.isArray(props.events) ? componentEvents.concat.apply(componentEvents, _toConsumableArray$b(props.events)) : componentEvents; - } - - return props.events; - } - }, { - key: "applyExternalMutations", - value: function applyExternalMutations(props, externalMutations) { - if (!isEmpty_1(externalMutations)) { - var callbacks = props.externalEventMutations.reduce(function (memo, mutation) { - memo = isFunction_1(mutation.callback) ? memo.concat(mutation.callback) : memo; - return memo; - }, []); - var compiledCallbacks = callbacks.length ? function () { - callbacks.forEach(function (c) { - return c(); - }); - } : undefined; - this.setState(externalMutations, compiledCallbacks); - } - } - }, { - key: "getExternalMutations", - value: function getExternalMutations(props, baseProps) { - return !isEmpty_1(props.externalEventMutations) ? Events.getExternalMutationsWithChildren(props.externalEventMutations, baseProps, this.state, keys_1(baseProps)) : undefined; - } - }, { - key: "cacheSharedEvents", - value: function cacheSharedEvents(name, sharedEvents, cacheValues) { - this.sharedEventsCache[name] = [sharedEvents, cacheValues]; - } - }, { - key: "getCachedSharedEvents", - value: function getCachedSharedEvents(name, cacheValues) { - var _ref = this.sharedEventsCache[name] || [], - _ref2 = _slicedToArray(_ref, 2), - sharedEvents = _ref2[0], - prevCacheValues = _ref2[1]; - - if (sharedEvents && reactFastCompare(cacheValues, prevCacheValues)) { - return sharedEvents; - } - - return undefined; - } - }, { - key: "getBaseProps", - value: function getBaseProps(props) { - var container = props.container; - var children = React__default.Children.toArray(this.props.children); - var childBaseProps = this.getBasePropsFromChildren(children); - var parentBaseProps = container ? container.props : {}; - return assign_1({}, childBaseProps, { - parent: parentBaseProps - }); - } - }, { - key: "getBasePropsFromChildren", - value: function getBasePropsFromChildren(childComponents) { - var iteratee = function (child, childName) { - if (child.type && isFunction_1(child.type.getBaseProps)) { - var _baseProps = child.props && child.type.getBaseProps(child.props); - - return _baseProps ? [[childName, _baseProps]] : null; - } else { - return null; - } - }; - - var baseProps = Helpers.reduceChildren(childComponents, iteratee); - return fromPairs_1(baseProps); - } - }, { - key: "getNewChildren", - value: function getNewChildren(props, baseProps) { - var _this6 = this; - - var events = props.events, - eventKey = props.eventKey; - - var alterChildren = function (children, childNames) { - return children.reduce(function (memo, child, index) { - if (child.props.children) { - var newChildren = React__default.Children.toArray(child.props.children); - var names = childNames.slice(index, index + newChildren.length); - var results = React__default.cloneElement(child, child.props, alterChildren(newChildren, names)); - return memo.concat(results); - } else if (child.type && isFunction_1(child.type.getBaseProps)) { - var name = child.props.name || childNames[index]; - var childEvents = Array.isArray(events) && events.filter(function (event) { - if (event.target === "parent") { - return false; - } - - return Array.isArray(event.childName) ? event.childName.indexOf(name) > -1 : event.childName === name || event.childName === "all"; - }); - var sharedEventsCacheValues = [name, baseProps, childEvents, stringify_1(_this6.state[name])]; - var sharedEvents = _this6.getCachedSharedEvents(name, sharedEventsCacheValues) || { - events: childEvents, - // partially apply child name and baseProps, - getEvents: function (evts, target) { - return _this6.getScopedEvents(evts, target, name, baseProps); - }, - // partially apply child name - getEventState: function (key, target) { - return _this6.getEventState(key, target, name); - } - }; - - _this6.cacheSharedEvents(name, sharedEvents, sharedEventsCacheValues); - - return memo.concat(React__default.cloneElement(child, assign_1({ - key: "events-".concat(name), - sharedEvents: sharedEvents, - eventKey: eventKey, - name: name - }, child.props))); - } else { - return memo.concat(child); - } - }, []); - }; - - var childNames = keys_1(baseProps); - - var childComponents = React__default.Children.toArray(props.children); - return alterChildren(childComponents, childNames); - } - }, { - key: "getContainer", - value: function getContainer(props, baseProps, events) { - var _this7 = this; - - var children = this.getNewChildren(props, baseProps); - var parents = Array.isArray(events) && events.filter(function (event) { - return event.target === "parent"; - }); - var sharedEvents = parents.length > 0 ? { - events: parents, - // partially apply childName (null) and baseProps, - getEvents: function (evts, target) { - return _this7.getScopedEvents(evts, target, null, baseProps); - }, - getEventState: this.getEventState - } : null; - var container = props.container || props.groupComponent; - var role = container.type && container.type.role; - var containerProps = container.props || {}; - var boundGetEvents = Events.getEvents.bind(this); - var parentEvents = sharedEvents && boundGetEvents({ - sharedEvents: sharedEvents - }, "parent"); - - var parentProps = defaults_1({}, this.getEventState("parent", "parent"), containerProps, baseProps.parent, { - children: children - }); - - var containerEvents = defaults_1({}, Events.getPartialEvents(parentEvents, "parent", parentProps), containerProps.events); - - this.globalEvents = Events.getGlobalEvents(containerEvents); - var localEvents = Events.omitGlobalEvents(containerEvents); - return role === "container" ? React__default.cloneElement(container, assign_1({}, parentProps, { - events: localEvents - })) : React__default.cloneElement(container, localEvents, children); - } - }, { - key: "render", - value: function render() { - var events = this.getAllEvents(this.props); - - if (events) { - return this.getContainer(this.props, this.baseProps, events); - } - - return React__default.cloneElement(this.props.container, { - children: this.props.children - }); - } - }]); - - return VictorySharedEvents; -}(React__default.Component); - -Object.defineProperty(VictorySharedEvents, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictorySharedEvents" -}); -Object.defineProperty(VictorySharedEvents, "role", { - configurable: true, - enumerable: true, - writable: true, - value: "shared-event-wrapper" -}); -Object.defineProperty(VictorySharedEvents, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: { - children: propTypes.oneOfType([propTypes.arrayOf(propTypes.node), propTypes.node]), - container: propTypes.node, - eventKey: propTypes.oneOfType([propTypes.array, propTypes.func, CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.nonNegative]), propTypes.string]), - events: propTypes.arrayOf(propTypes.shape({ - childName: propTypes.oneOfType([propTypes.string, propTypes.array]), - eventHandlers: propTypes.object, - eventKey: propTypes.oneOfType([propTypes.array, propTypes.func, CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.nonNegative]), propTypes.string]), - target: propTypes.string - })), - externalEventMutations: propTypes.arrayOf(propTypes.shape({ - callback: propTypes.function, - childName: propTypes.oneOfType([propTypes.string, propTypes.array]), - eventKey: propTypes.oneOfType([propTypes.array, CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.nonNegative]), propTypes.string]), - mutation: propTypes.function, - target: propTypes.oneOfType([propTypes.string, propTypes.array]) - })), - groupComponent: propTypes.node - } -}); -Object.defineProperty(VictorySharedEvents, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: { - groupComponent: React__default.createElement("g", null) - } -}); -Object.defineProperty(VictorySharedEvents, "contextType", { - configurable: true, - enumerable: true, - writable: true, - value: TimerContext -}); - -function _toConsumableArray$c(arr) { return _arrayWithoutHoles$c(arr) || _iterableToArray$c(arr) || _nonIterableSpread$c(); } - -function _nonIterableSpread$c() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$c(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$c(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function _defineProperty$c(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } -var orientationSign = { - top: -1, - left: -1, - right: 1, - bottom: 1 -}; - -var getCurrentAxis$1 = function (props, axis) { - var orientation = props.orientation, - horizontal = props.horizontal; - - if (orientation) { - var dimensions = { - top: "x", - bottom: "x", - left: "y", - right: "y" - }; - return dimensions[orientation]; - } - - var otherAxis = axis === "x" ? "y" : "x"; - return horizontal ? otherAxis : axis; -}; - -var getScale = function (props) { - var axis = Axis.getAxis(props); - var currentAxis = getCurrentAxis$1(props, axis); - var scale = Scale.getBaseScale(props, axis); - var propsDomain = props.domain && props.domain[axis]; - var domain = propsDomain || Axis.getDomain(props) || scale.domain(); - scale.range(Helpers.getRange(props, currentAxis)); - scale.domain(domain); - return scale; -}; - -var getStyleObject = function (props) { - var theme = props.theme, - dependentAxis = props.dependentAxis; - var generalAxisStyle = theme && theme.axis && theme.axis.style; - var axisType = dependentAxis ? "dependentAxis" : "independentAxis"; - var specificAxisStyle = theme && theme[axisType] && theme[axisType].style; - - var mergeStyles = function () { - var styleNamespaces = ["axis", "axisLabel", "grid", "parent", "tickLabels", "ticks"]; - return styleNamespaces.reduce(function (memo, curr) { - memo[curr] = defaults_1({}, specificAxisStyle[curr], generalAxisStyle[curr]); - return memo; - }, {}); - }; - - return generalAxisStyle && specificAxisStyle ? mergeStyles() : specificAxisStyle || generalAxisStyle; -}; - -var getStyles$2 = function (props, styleObject) { - var style = props.style || {}; - styleObject = styleObject || {}; - var parentStyleProps = { - height: "100%", - width: "100%" - }; - return { - parent: defaults_1(style.parent, styleObject.parent, parentStyleProps), - axis: defaults_1({}, style.axis, styleObject.axis), - axisLabel: defaults_1({}, style.axisLabel, styleObject.axisLabel), - grid: defaults_1({}, style.grid, styleObject.grid), - ticks: defaults_1({}, style.ticks, styleObject.ticks), - tickLabels: defaults_1({}, style.tickLabels, styleObject.tickLabels) - }; -}; - -var getTickProps = function (layout, style, datum) { - var position = layout.position, - transform = layout.transform; - return { - x1: transform.x, - y1: transform.y, - x2: transform.x + position.x2, - y2: transform.y + position.y2, - style: style, - datum: datum - }; -}; // eslint-disable-next-line max-params - - -var getTickLabelProps = function (layout, style, anchors, datum, text) { - var position = layout.position, - transform = layout.transform; - return { - style: style, - x: transform.x + position.x, - y: transform.y + position.y, - verticalAnchor: anchors.verticalAnchor, - textAnchor: anchors.textAnchor, - angle: style.angle, - text: text, - datum: datum - }; -}; - -var getGridProps = function (layout, style, datum) { - var edge = layout.edge, - transform = layout.transform; - return { - x1: transform.x, - y1: transform.y, - x2: edge.x + transform.x, - y2: edge.y + transform.y, - style: style, - datum: datum - }; -}; - -var getAxisProps = function (modifiedProps, calculatedValues, globalTransform) { - var style = calculatedValues.style, - padding = calculatedValues.padding, - isVertical = calculatedValues.isVertical; - var width = modifiedProps.width, - height = modifiedProps.height; - return { - style: style.axis, - x1: isVertical ? globalTransform.x : padding.left + globalTransform.x, - x2: isVertical ? globalTransform.x : width - padding.right + globalTransform.x, - y1: isVertical ? padding.top + globalTransform.y : globalTransform.y, - y2: isVertical ? height - padding.bottom + globalTransform.y : globalTransform.y - }; -}; - -var getEvaluatedStyles = function (style, props) { - return { - tickStyle: Helpers.evaluateStyle(style.ticks, props), - labelStyle: Helpers.evaluateStyle(style.tickLabels, props), - gridStyle: Helpers.evaluateStyle(style.grid, props) - }; -}; - -var getAxisLabelProps = function (props, calculatedValues, globalTransform) { - var style = calculatedValues.style, - orientation = calculatedValues.orientation, - padding = calculatedValues.padding, - labelPadding = calculatedValues.labelPadding, - isVertical = calculatedValues.isVertical; - var sign = orientationSign[orientation]; - var hPadding = padding.left + padding.right; - var vPadding = padding.top + padding.bottom; - var verticalAnchor = sign < 0 ? "end" : "start"; - var labelStyle = style.axisLabel; - var angle = isVertical ? -90 : 0; // eslint-disable-line no-magic-numbers - - var x = isVertical ? globalTransform.x + sign * labelPadding : (props.width - hPadding) / 2 + padding.left + globalTransform.x; - var y = isVertical ? (props.height - vPadding) / 2 + padding.top + globalTransform.y : sign * labelPadding + globalTransform.y; - return { - x: x, - y: y, - verticalAnchor: labelStyle.verticalAnchor || verticalAnchor, - textAnchor: labelStyle.textAnchor || "middle", - angle: labelStyle.angle === undefined ? angle : labelStyle.angle, - style: labelStyle, - text: props.label - }; -}; - -var getAnchors = function (orientation, isVertical) { - var anchorOrientation = { - top: "end", - left: "end", - right: "start", - bottom: "start" - }; - var anchor = anchorOrientation[orientation]; - return { - textAnchor: isVertical ? anchor : "middle", - verticalAnchor: isVertical ? "middle" : anchor - }; -}; - -var getLabelPadding = function (props, style) { - var labelStyle = style.axisLabel || {}; - - if (labelStyle.padding !== undefined && labelStyle.padding !== null) { - return labelStyle.padding; - } - - var isVertical = Axis.isVertical(props); // TODO: magic numbers - - /*eslint-disable no-magic-numbers*/ - - var fontSize = labelStyle.fontSize || 14; - return props.label ? fontSize * (isVertical ? 2.3 : 1.6) : 0; - /*eslint-enable no-magic-numbers*/ -}; - -var getOffset$1 = function (props, calculatedValues) { - var style = calculatedValues.style, - padding = calculatedValues.padding, - isVertical = calculatedValues.isVertical, - orientation = calculatedValues.orientation, - labelPadding = calculatedValues.labelPadding, - stringTicks = calculatedValues.stringTicks, - ticks = calculatedValues.ticks, - scale = calculatedValues.scale, - axis = calculatedValues.axis; - var polar = props.polar, - horizontal = props.horizontal; - var sharedProps = { - scale: _defineProperty$c({}, axis, scale), - polar: polar, - horizontal: horizontal, - ticks: ticks, - stringTicks: stringTicks - }; - var xPadding = orientation === "right" ? padding.right : padding.left; - var yPadding = orientation === "top" ? padding.top : padding.bottom; - var fontSize = style.axisLabel.fontSize || 14; // eslint-disable-line no-magic-numbers - - var offsetX = props.offsetX !== null && props.offsetX !== undefined ? props.offsetX : xPadding; - var offsetY = props.offsetY !== null && props.offsetY !== undefined ? props.offsetY : yPadding; - var tickSizes = ticks.map(function (data, index) { - var tick = stringTicks ? props.tickValues[data - 1] : data; - var tickStyle = Helpers.evaluateStyle(style.ticks, assign_1({}, sharedProps, { - tick: tick, - index: index - })); - return tickStyle.size || 0; - }); - var totalPadding = fontSize + 2 * Math.max.apply(Math, _toConsumableArray$c(tickSizes)) + labelPadding; - var minimumPadding = 1.2 * fontSize; // eslint-disable-line no-magic-numbers - - var x = isVertical ? totalPadding : minimumPadding; - var y = isVertical ? minimumPadding : totalPadding; - return { - x: offsetX !== null && offsetX !== undefined ? offsetX : x, - y: offsetY !== null && offsetY !== undefined ? offsetY : y - }; -}; - -var getTransform$1 = function (props, calculatedValues, offset) { - // - var orientation = calculatedValues.orientation, - axis = calculatedValues.axis; - var axisValue = Axis.getAxisValue(props, axis); - return { - top: { - x: 0, - y: axisValue !== undefined ? axisValue : offset.y - }, - bottom: { - x: 0, - y: axisValue !== undefined ? axisValue : props.height - offset.y - }, - left: { - x: axisValue !== undefined ? axisValue : offset.x, - y: 0 - }, - right: { - x: axisValue !== undefined ? axisValue : props.width - offset.x, - y: 0 - } - }[orientation]; -}; - -var getTickPosition = function (style, orientation, isVertical) { - var tickStyle = style.tickStyle, - labelStyle = style.labelStyle; - var size = tickStyle.size || 0; - var tickPadding = tickStyle.padding || 0; - var labelPadding = labelStyle.padding || 0; - var tickSpacing = size + tickPadding + labelPadding; - var sign = orientationSign[orientation]; - return { - x: isVertical ? sign * tickSpacing : 0, - x2: isVertical ? sign * size : 0, - y: isVertical ? 0 : sign * tickSpacing, - y2: isVertical ? 0 : sign * size - }; -}; - -var getTickTransform = function (tick, globalTransform, isVertical) { - return { - x: isVertical ? globalTransform.x : tick + globalTransform.x, - y: isVertical ? tick + globalTransform.y : globalTransform.y - }; -}; - -var getGridEdge = function (props, calculatedValues) { - var orientation = calculatedValues.orientation, - padding = calculatedValues.padding, - isVertical = calculatedValues.isVertical; - var sign = -orientationSign[orientation]; - var x = isVertical ? sign * (props.width - (padding.left + padding.right)) : 0; - var y = isVertical ? 0 : sign * (props.height - (padding.top + padding.bottom)); - return { - x: x, - y: y - }; -}; - -var getGridOffset = function (props, calculatedValues, offset) { - var padding = calculatedValues.padding, - orientation = calculatedValues.orientation; - var xPadding = orientation === "right" ? padding.right : padding.left; - var yPadding = orientation === "top" ? padding.top : padding.bottom; - return { - x: props.crossAxis ? offset.x - xPadding : 0, - y: props.crossAxis ? offset.y - yPadding : 0 - }; -}; - -var getLayoutProps = function (modifiedProps, calculatedValues) { - var offset = getOffset$1(modifiedProps, calculatedValues); - return { - globalTransform: getTransform$1(modifiedProps, calculatedValues, offset), - gridOffset: getGridOffset(modifiedProps, calculatedValues, offset), - gridEdge: getGridEdge(modifiedProps, calculatedValues) - }; -}; - -var getOrientation = function (props) { - if (props.orientation) { - return props.orientation; - } - - var defaultOrientations = { - dependent: props.horizontal ? "bottom" : "left", - independent: props.horizontal ? "left" : "bottom" - }; - return props.dependentAxis ? defaultOrientations.dependent : defaultOrientations.independent; -}; - -var getCalculatedValues = function (props) { - var defaultStyles = getStyleObject(props); - var style = getStyles$2(props, defaultStyles); - var padding = Helpers.getPadding(props); - var isVertical = Axis.isVertical(props); - var labelPadding = getLabelPadding(props, style); - var stringTicks = Axis.stringTicks(props) ? props.tickValues : undefined; - var axis = Axis.getAxis(props); - var orientation = getOrientation(props); - var scale = getScale(props); - var domain = Axis.getDomain(props); - var ticks = Axis.getTicks(props, scale, props.crossAxis); - var tickFormat = Axis.getTickFormat(props, scale); - var anchors = getAnchors(orientation, isVertical); - return { - axis: axis, - style: style, - padding: padding, - orientation: orientation, - isVertical: isVertical, - labelPadding: labelPadding, - stringTicks: stringTicks, - anchors: anchors, - scale: scale, - ticks: ticks, - tickFormat: tickFormat, - domain: domain - }; -}; - -var getBaseProps = function (props, fallbackProps) { - props = Axis.modifyProps(props, fallbackProps); - var calculatedValues = getCalculatedValues(props); - var axis = calculatedValues.axis, - style = calculatedValues.style, - orientation = calculatedValues.orientation, - isVertical = calculatedValues.isVertical, - scale = calculatedValues.scale, - ticks = calculatedValues.ticks, - tickFormat = calculatedValues.tickFormat, - anchors = calculatedValues.anchors, - domain = calculatedValues.domain, - stringTicks = calculatedValues.stringTicks, - name = calculatedValues.name; - var otherAxis = axis === "x" ? "y" : "x"; - var _props = props, - width = _props.width, - height = _props.height, - standalone = _props.standalone, - theme = _props.theme, - polar = _props.polar, - padding = _props.padding, - horizontal = _props.horizontal; - - var _getLayoutProps = getLayoutProps(props, calculatedValues), - globalTransform = _getLayoutProps.globalTransform, - gridOffset = _getLayoutProps.gridOffset, - gridEdge = _getLayoutProps.gridEdge; - - var sharedProps = { - scale: _defineProperty$c({}, axis, scale), - polar: polar, - horizontal: horizontal, - ticks: ticks, - stringTicks: stringTicks - }; - var axisProps = getAxisProps(props, calculatedValues, globalTransform); - var axisLabelProps = getAxisLabelProps(props, calculatedValues, globalTransform); - var initialChildProps = { - parent: assign_1({ - style: style.parent, - ticks: ticks, - standalone: standalone, - theme: theme, - width: width, - height: height, - padding: padding, - domain: domain, - name: name - }, sharedProps) - }; - var gridProps = { - dimension: otherAxis, - range: _defineProperty$c({}, otherAxis, Helpers.getRange(props, otherAxis)), - scale: props.scale && props.scale[otherAxis] ? _defineProperty$c({}, otherAxis, props.scale[otherAxis]) : undefined - }; - return ticks.reduce(function (childProps, tickValue, index) { - var tick = stringTicks ? stringTicks[index] : tickValue; - var text = tickFormat(tickValue, index, ticks); - var styles = getEvaluatedStyles(style, assign_1({}, sharedProps, { - tick: tick, - tickValue: tickValue, - index: index, - text: text - })); - var tickLayout = { - position: getTickPosition(styles, orientation, isVertical), - transform: getTickTransform(scale(tickValue), globalTransform, isVertical) - }; - var gridLayout = { - edge: gridEdge, - transform: { - x: isVertical ? -gridOffset.x + globalTransform.x : scale(tickValue) + globalTransform.x, - y: isVertical ? scale(tickValue) + globalTransform.y : gridOffset.y + globalTransform.y - } - }; - childProps[index] = { - axis: assign_1({ - dimension: axis - }, sharedProps, axisProps), - axisLabel: assign_1({}, sharedProps, axisLabelProps), - ticks: assign_1({}, sharedProps, getTickProps(tickLayout, styles.tickStyle, tickValue)), - tickLabels: assign_1({}, sharedProps, getTickLabelProps(tickLayout, styles.labelStyle, anchors, tickValue, text)), - grid: assign_1({}, sharedProps, gridProps, getGridProps(gridLayout, styles.gridStyle, tickValue)) - }; - return childProps; - }, initialChildProps); -}; - -function _objectSpread$9(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$d(target, key, source[key]); }); } return target; } - -function _defineProperty$d(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _toConsumableArray$d(arr) { return _arrayWithoutHoles$d(arr) || _iterableToArray$d(arr) || _nonIterableSpread$d(); } - -function _nonIterableSpread$d() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$d(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$d(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function _classCallCheck$9(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$9(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$9(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$9(Constructor.prototype, protoProps); if (staticProps) _defineProperties$9(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$8(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$8(self); } - -function _assertThisInitialized$8(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _inherits$8(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } -var fallbackProps = { - width: 450, - height: 300, - padding: 50 -}; -var options = { - components: [{ - name: "axis", - index: 0 - }, { - name: "axisLabel", - index: 0 - }, { - name: "grid" - }, { - name: "parent", - index: "parent" - }, { - name: "ticks" - }, { - name: "tickLabels" - }] -}; - -var VictoryAxis = -/*#__PURE__*/ -function (_React$Component) { - _inherits$8(VictoryAxis, _React$Component); - - function VictoryAxis() { - _classCallCheck$9(this, VictoryAxis); - - return _possibleConstructorReturn$8(this, (VictoryAxis.__proto__ || Object.getPrototypeOf(VictoryAxis)).apply(this, arguments)); - } - - _createClass$9(VictoryAxis, [{ - key: "renderLine", - value: function renderLine(props) { - var axisComponent = props.axisComponent; - var axisProps = this.getComponentProps(axisComponent, "axis", 0); - return React__default.cloneElement(axisComponent, axisProps); - } - }, { - key: "renderLabel", - value: function renderLabel(props) { - var axisLabelComponent = props.axisLabelComponent, - label = props.label; - - if (!label) { - return null; - } - - var axisLabelProps = this.getComponentProps(axisLabelComponent, "axisLabel", 0); - return React__default.cloneElement(axisLabelComponent, axisLabelProps); - } - }, { - key: "renderGridAndTicks", - value: function renderGridAndTicks(props) { - var _this = this; - - var tickComponent = props.tickComponent, - tickLabelComponent = props.tickLabelComponent, - gridComponent = props.gridComponent, - name = props.name; - - var shouldRender = function (componentProps) { - var _componentProps$style = componentProps.style, - style = _componentProps$style === void 0 ? {} : _componentProps$style, - _componentProps$event = componentProps.events, - events = _componentProps$event === void 0 ? {} : _componentProps$event; - var visible = style.stroke !== "transparent" && style.stroke !== "none" && style.strokeWidth !== 0; - return visible || !isEmpty_1(events); - }; - - return this.dataKeys.map(function (key, index) { - var tickProps = _this.getComponentProps(tickComponent, "ticks", index); - - var BaseTickComponent = React__default.cloneElement(tickComponent, tickProps); - var TickComponent = shouldRender(BaseTickComponent.props) ? BaseTickComponent : undefined; - - var gridProps = _this.getComponentProps(gridComponent, "grid", index); - - var BaseGridComponent = React__default.cloneElement(gridComponent, gridProps); - var GridComponent = shouldRender(BaseGridComponent.props) ? BaseGridComponent : undefined; - - var tickLabelProps = _this.getComponentProps(tickLabelComponent, "tickLabels", index); - - var TickLabel = React__default.cloneElement(tickLabelComponent, tickLabelProps); - var children = [GridComponent, TickComponent, TickLabel].filter(Boolean); - return React__default.cloneElement(props.groupComponent, { - key: "".concat(name, "-tick-group-").concat(key) - }, children); - }); - } - }, { - key: "fixLabelOverlap", - value: function fixLabelOverlap(gridAndTicks, props) { - var isVertical = Axis.isVertical(props); - var size = isVertical ? props.height : props.width; - - var isVictoryLabel = function (child) { - return child.type && child.type.role === "label"; - }; - - var labels = gridAndTicks.map(function (gridAndTick) { - return gridAndTick.props.children; - }).reduce(function (accumulator, childArr) { - return accumulator.concat(childArr); - }, []).filter(isVictoryLabel).map(function (child) { - return child.props; - }); - - var paddingToObject = function (padding) { - return typeof padding === "object" ? assign_1({}, { - top: 0, - right: 0, - bottom: 0, - left: 0 - }, padding) : { - top: padding, - right: padding, - bottom: padding, - left: padding - }; - }; - - var labelsSumSize = labels.reduce(function (sum, label) { - var padding = paddingToObject(label.style.padding); - var labelSize = TextSize.approximateTextSize(label.text, { - angle: label.angle, - fontSize: label.style.fontSize, - letterSpacing: label.style.letterSpacing, - fontFamily: label.style.fontFamily - }); - return sum + (isVertical ? labelSize.height + padding.top + padding.bottom : labelSize.width + padding.right + padding.left); - }, 0); - var availiableLabelCount = Math.floor(size * gridAndTicks.length / labelsSumSize); - var divider = Math.ceil(gridAndTicks.length / availiableLabelCount) || 1; - - var getLabelCoord = function (gridAndTick) { - return gridAndTick.props.children.filter(isVictoryLabel).reduce(function (prev, child) { - return (isVertical ? child.props.y : child.props.x) || 0; - }, 0); - }; - - var sorted = gridAndTicks.sort(function (a, b) { - return isVertical ? getLabelCoord(b) - getLabelCoord(a) //ordinary axis has top-bottom orientation - : getLabelCoord(a) - getLabelCoord(b); - } //ordinary axis has left-right orientation - ); - return sorted.filter(function (gridAndTick, index) { - return index % divider === 0; - }); - } // Overridden in native versions - - }, { - key: "shouldAnimate", - value: function shouldAnimate() { - return !!this.props.animate; - } - }, { - key: "render", - value: function render() { - var animationWhitelist = VictoryAxis.animationWhitelist; - var props = Axis.modifyProps(this.props, fallbackProps); - - if (this.shouldAnimate()) { - return this.animateComponent(props, animationWhitelist); - } - - var gridAndTicks = this.renderGridAndTicks(props); - var modifiedGridAndTicks = props.fixLabelOverlap ? this.fixLabelOverlap(gridAndTicks, props) : gridAndTicks; - var children = [this.renderLine(props), this.renderLabel(props)].concat(_toConsumableArray$d(modifiedGridAndTicks)); - return props.standalone ? this.renderContainer(props.containerComponent, children) : React__default.cloneElement(props.groupComponent, {}, children); - } - }]); - - return VictoryAxis; -}(React__default.Component); - -Object.defineProperty(VictoryAxis, "animationWhitelist", { - configurable: true, - enumerable: true, - writable: true, - value: ["style", "domain", "range", "tickCount", "tickValues", "offsetX", "offsetY", "padding", "width", "height"] -}); -Object.defineProperty(VictoryAxis, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryAxis" -}); -Object.defineProperty(VictoryAxis, "role", { - configurable: true, - enumerable: true, - writable: true, - value: "axis" -}); -Object.defineProperty(VictoryAxis, "defaultTransitions", { - configurable: true, - enumerable: true, - writable: true, - value: { - onExit: { - duration: 500 - }, - onEnter: { - duration: 500 - } - } -}); -Object.defineProperty(VictoryAxis, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$9({}, CommonProps.baseProps, { - axisComponent: propTypes.element, - axisLabelComponent: propTypes.element, - axisValue: propTypes.oneOfType([propTypes.number, propTypes.string, propTypes.object]), - categories: propTypes.oneOfType([propTypes.arrayOf(propTypes.string), propTypes.shape({ - x: propTypes.arrayOf(propTypes.string), - y: propTypes.arrayOf(propTypes.string) - })]), - crossAxis: propTypes.bool, - dependentAxis: propTypes.bool, - events: propTypes.arrayOf(propTypes.shape({ - target: propTypes.oneOf(["axis", "axisLabel", "grid", "ticks", "tickLabels"]), - eventKey: propTypes.oneOfType([propTypes.array, CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.nonNegative]), propTypes.string]), - eventHandlers: propTypes.object - })), - fixLabelOverlap: propTypes.bool, - gridComponent: propTypes.element, - groupComponent: propTypes.element, - invertAxis: propTypes.bool, - label: propTypes.any, - offsetX: propTypes.number, - offsetY: propTypes.number, - orientation: propTypes.oneOf(["top", "bottom", "left", "right"]), - origin: propTypes.shape({ - x: propTypes.number, - y: propTypes.number - }), - stringMap: propTypes.object, - style: propTypes.shape({ - parent: propTypes.object, - axis: propTypes.object, - axisLabel: propTypes.object, - grid: propTypes.object, - ticks: propTypes.object, - tickLabels: propTypes.object - }), - tickComponent: propTypes.element, - tickCount: CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.greaterThanZero]), - tickFormat: propTypes.oneOfType([propTypes.func, CustomPropTypes.homogeneousArray]), - tickLabelComponent: propTypes.element, - tickValues: CustomPropTypes.homogeneousArray - }) -}); -Object.defineProperty(VictoryAxis, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: { - axisComponent: React__default.createElement(LineSegment, null), - axisLabelComponent: React__default.createElement(VictoryLabel, null), - tickLabelComponent: React__default.createElement(VictoryLabel, null), - tickComponent: React__default.createElement(LineSegment, null), - gridComponent: React__default.createElement(LineSegment, null), - standalone: true, - theme: VictoryTheme.grayscale, - containerComponent: React__default.createElement(VictoryContainer, null), - groupComponent: React__default.createElement("g", { - role: "presentation" - }), - fixLabelOverlap: false - } -}); -Object.defineProperty(VictoryAxis, "getDomain", { - configurable: true, - enumerable: true, - writable: true, - value: Axis.getDomain -}); -Object.defineProperty(VictoryAxis, "getAxis", { - configurable: true, - enumerable: true, - writable: true, - value: Axis.getAxis -}); -Object.defineProperty(VictoryAxis, "getStyles", { - configurable: true, - enumerable: true, - writable: true, - value: function (props) { - return getStyles$2(props, fallbackProps.style); - } -}); -Object.defineProperty(VictoryAxis, "getBaseProps", { - configurable: true, - enumerable: true, - writable: true, - value: function (props) { - return getBaseProps(props, fallbackProps); - } -}); -Object.defineProperty(VictoryAxis, "expectedComponents", { - configurable: true, - enumerable: true, - writable: true, - value: ["axisComponent", "axisLabelComponent", "groupComponent", "containerComponent", "tickComponent", "tickLabelComponent", "gridComponent"] -}); -var VictoryAxis$1 = addEvents(VictoryAxis, options); - -var getPosition$2 = function (r, angle, axis) { - return axis === "x" ? r * Math.cos(angle) : -r * Math.sin(angle); -}; - -var getAxisType = function (props) { - var typicalType = props.dependentAxis ? "radial" : "angular"; - var invertedType = typicalType === "angular" ? "radial" : "angular"; - return props.horizontal ? invertedType : typicalType; -}; - -var filterTicks = function (ticks, scale) { - var compareTicks = function (t) { - return scale(t) % (2 * Math.PI); - }; - - return uniqBy_1(ticks, compareTicks); -}; - -var getEvaluatedStyles$1 = function (style, props) { - return { - tickStyle: Helpers.evaluateStyle(style.ticks, props), - labelStyle: Helpers.evaluateStyle(style.tickLabels, props), - gridStyle: Helpers.evaluateStyle(style.grid, props) - }; -}; - -var getStyleObject$1 = function (props) { - var _props$theme = props.theme, - theme = _props$theme === void 0 ? {} : _props$theme, - dependentAxis = props.dependentAxis; - var generalAxisStyle = theme.polarAxis && theme.polarAxis.style || theme.axis && theme.axis.style; - var polarAxisType = dependentAxis ? "polarDependentAxis" : "polarIndependentAxis"; - var standardAxisType = dependentAxis ? "dependentAxis" : "independentAxis"; - var specificAxisStyle = theme[polarAxisType] && theme[polarAxisType].style || theme[standardAxisType] && theme[standardAxisType].style; - - var mergeStyles = function () { - var styleNamespaces = ["axis", "axisLabel", "grid", "parent", "tickLabels", "ticks"]; - return styleNamespaces.reduce(function (memo, curr) { - memo[curr] = defaults_1({}, specificAxisStyle[curr], generalAxisStyle[curr]); - return memo; - }, {}); - }; - - return generalAxisStyle && specificAxisStyle ? mergeStyles() : specificAxisStyle || generalAxisStyle; -}; - -var getRadius$1 = function (props) { - var _Helpers$getPadding = Helpers.getPadding(props), - left = _Helpers$getPadding.left, - right = _Helpers$getPadding.right, - top = _Helpers$getPadding.top, - bottom = _Helpers$getPadding.bottom; - - var width = props.width, - height = props.height; - return Math.min(width - left - right, height - top - bottom) / 2; -}; - -var getRange$1 = function (props, axis) { - // Return the range from props if one is given. - if (props.range && props.range[axis]) { - return props.range[axis]; - } else if (props.range && Array.isArray(props.range)) { - return props.range; - } - - var axisType = getAxisType(props); - - if (axisType === "angular") { - var startAngle = Helpers.degreesToRadians(props.startAngle); - var endAngle = Helpers.degreesToRadians(props.endAngle); - return [startAngle, endAngle]; - } - - var radius = getRadius$1(props); - return [props.innerRadius || 0, radius]; -}; // exposed for use by VictoryChart (necessary?) - - -var getScale$1 = function (props) { - var axis = Axis.getAxis(props); - var scale = Scale.getBaseScale(props, axis); - var domain = Axis.getDomain(props, axis) || scale.domain(); - var range = getRange$1(props, axis); - scale.range(range); - scale.domain(domain); - return scale; -}; - -var getStyles$3 = function (props, styleObject) { - var style = props.style || {}; - styleObject = styleObject || {}; - var parentStyleProps = { - height: "auto", - width: "100%" - }; - return { - parent: defaults_1(parentStyleProps, style.parent, styleObject.parent), - axis: defaults_1({}, style.axis, styleObject.axis), - axisLabel: defaults_1({}, style.axisLabel, styleObject.axisLabel), - grid: defaults_1({}, style.grid, styleObject.grid), - ticks: defaults_1({}, style.ticks, styleObject.ticks), - tickLabels: defaults_1({}, style.tickLabels, styleObject.tickLabels) - }; -}; - -var getAxisAngle = function (props) { - var axisAngle = props.axisAngle, - startAngle = props.startAngle, - dependentAxis = props.dependentAxis; - var axis = Axis.getAxis(props); - var axisValue = Axis.getAxisValue(props, axis); - - if (axisValue === undefined || !dependentAxis) { - return axisAngle === undefined ? startAngle : axisAngle; - } - - return Helpers.radiansToDegrees(axisValue); -}; //eslint-disable-next-line max-params - - -var getTickProps$1 = function (props, calculatedValues, tickValue, index) { - var axisType = calculatedValues.axisType, - radius = calculatedValues.radius, - scale = calculatedValues.scale, - style = calculatedValues.style, - stringTicks = calculatedValues.stringTicks, - ticks = calculatedValues.ticks, - tickFormat = calculatedValues.tickFormat, - origin = calculatedValues.origin; - var text = tickFormat(tickValue, index, ticks); - var tick = stringTicks ? stringTicks[index] : tickValue; - - var _getEvaluatedStyles = getEvaluatedStyles$1(style, { - tick: tick, - tickValue: tickValue, - index: index, - ticks: ticks, - stringTicks: stringTicks, - radius: radius, - scale: scale, - axisType: axisType, - text: text - }), - tickStyle = _getEvaluatedStyles.tickStyle; - - var axisAngle = axisType === "radial" ? getAxisAngle(props) : undefined; - var tickPadding = tickStyle.padding || tickStyle.size || 0; - var padAngle = Helpers.degreesToRadians(90 - axisAngle); - var tickAngle = axisType === "angular" ? scale(tickValue) : Helpers.degreesToRadians(-1 * axisAngle); - var tickRadius = axisType === "angular" ? radius : scale(tickValue); - return axisType === "angular" ? { - index: index, - datum: tick, - style: tickStyle, - x1: getPosition$2(tickRadius, tickAngle, "x") + origin.x, - y1: getPosition$2(tickRadius, tickAngle, "y") + origin.y, - x2: getPosition$2(tickRadius + tickPadding, tickAngle, "x") + origin.x, - y2: getPosition$2(tickRadius + tickPadding, tickAngle, "y") + origin.y - } : { - index: index, - datum: tick, - style: tickStyle, - x1: tickRadius * Math.cos(tickAngle) + Math.cos(padAngle) * tickPadding + origin.x, - x2: tickRadius * Math.cos(tickAngle) - Math.cos(padAngle) * tickPadding + origin.x, - y1: tickRadius * Math.sin(tickAngle) + Math.sin(padAngle) * tickPadding + origin.y, - y2: tickRadius * Math.sin(tickAngle) - Math.sin(padAngle) * tickPadding + origin.y - }; -}; //eslint-disable-next-line max-params - - -var getTickLabelProps$1 = function (props, calculatedValues, tickValue, index) { - var axisType = calculatedValues.axisType, - radius = calculatedValues.radius, - tickFormat = calculatedValues.tickFormat, - style = calculatedValues.style, - scale = calculatedValues.scale, - ticks = calculatedValues.ticks, - stringTicks = calculatedValues.stringTicks, - origin = calculatedValues.origin; - var text = tickFormat(tickValue, index, ticks); - var tick = stringTicks ? stringTicks[index] : tickValue; - - var _getEvaluatedStyles2 = getEvaluatedStyles$1(style, { - text: text, - tick: tick, - tickValue: tickValue, - index: index, - ticks: ticks, - stringTicks: stringTicks, - radius: radius, - scale: scale, - axisType: axisType - }), - labelStyle = _getEvaluatedStyles2.labelStyle; - - var tickLabelComponent = props.tickLabelComponent; - var labelPlacement = tickLabelComponent.props && tickLabelComponent.props.labelPlacement ? tickLabelComponent.props.labelPlacement : props.labelPlacement; - var tickPadding = labelStyle.padding || 0; - var angularPadding = 0; // TODO: do some geometry - - var axisAngle = axisType === "radial" ? getAxisAngle(props) : undefined; - var labelAngle = axisType === "angular" ? Helpers.radiansToDegrees(scale(tickValue)) : axisAngle + angularPadding; - var textAngle = labelStyle.angle === undefined ? LabelHelpers.getPolarAngle(assign_1({}, props, { - labelPlacement: labelPlacement - }), labelAngle) : labelStyle.angle; - var labelRadius = axisType === "angular" ? radius + tickPadding : scale(tickValue); - var textAnchor = labelStyle.textAnchor || LabelHelpers.getPolarTextAnchor(assign_1({}, props, { - labelPlacement: labelPlacement - }), labelAngle); - return { - index: index, - datum: tick, - style: labelStyle, - angle: textAngle, - textAnchor: textAnchor, - text: text, - x: labelRadius * Math.cos(Helpers.degreesToRadians(labelAngle)) + origin.x, - y: -labelRadius * Math.sin(Helpers.degreesToRadians(labelAngle)) + origin.y - }; -}; //eslint-disable-next-line max-params - - -var getGridProps$1 = function (props, calculatedValues, tickValue, index) { - var axisType = calculatedValues.axisType, - radius = calculatedValues.radius, - style = calculatedValues.style, - scale = calculatedValues.scale, - stringTicks = calculatedValues.stringTicks, - ticks = calculatedValues.ticks, - tickFormat = calculatedValues.tickFormat, - origin = calculatedValues.origin; - var text = tickFormat(tickValue, index, ticks); - var startAngle = props.startAngle, - endAngle = props.endAngle, - _props$innerRadius = props.innerRadius, - innerRadius = _props$innerRadius === void 0 ? 0 : _props$innerRadius; - var tick = stringTicks ? stringTicks[index] : tickValue; - - var _getEvaluatedStyles3 = getEvaluatedStyles$1(style, { - tick: tick, - tickValue: tickValue, - index: index, - ticks: ticks, - stringTicks: stringTicks, - radius: radius, - scale: scale, - axisType: axisType, - text: text - }), - gridStyle = _getEvaluatedStyles3.gridStyle; - - var angle = scale(tickValue); - return axisType === "angular" ? { - index: index, - datum: tick, - style: gridStyle, - x1: getPosition$2(radius, angle, "x") + origin.x, - y1: getPosition$2(radius, angle, "y") + origin.y, - x2: getPosition$2(innerRadius, angle, "x") + origin.x, - y2: getPosition$2(innerRadius, angle, "y") + origin.y - } : { - style: gridStyle, - index: index, - datum: tick, - cx: origin.x, - cy: origin.y, - r: scale(tickValue), - startAngle: startAngle, - endAngle: endAngle - }; -}; - -var getAxisLabelProps$1 = function (props, calculatedValues) { - var axisType = calculatedValues.axisType, - radius = calculatedValues.radius, - style = calculatedValues.style, - scale = calculatedValues.scale, - origin = calculatedValues.origin; - var axisLabelComponent = props.axisLabelComponent; - - if (axisType !== "radial") { - return {}; - } - - var labelPlacement = axisLabelComponent.props && axisLabelComponent.props.labelPlacement ? axisLabelComponent.props.labelPlacement : props.labelPlacement; - var labelStyle = style && style.axisLabel || {}; - var axisAngle = axisType === "radial" ? getAxisAngle(props) : undefined; - var textAngle = labelStyle.angle === undefined ? LabelHelpers.getPolarAngle(assign_1({}, props, { - labelPlacement: labelPlacement - }), axisAngle) : labelStyle.angle; - var labelRadius = radius + (labelStyle.padding || 0); - var textAnchor = labelStyle.textAnchor || LabelHelpers.getTextPolarAnchor(assign_1({}, props, { - labelPlacement: labelPlacement - }), axisAngle); - var verticalAnchor = labelStyle.verticalAnchor || LabelHelpers.getPolarVerticalAnchor(assign_1({}, props, { - labelPlacement: labelPlacement - }), axisAngle); - return { - style: labelStyle, - angle: textAngle, - textAnchor: textAnchor, - verticalAnchor: verticalAnchor, - text: props.label, - x: getPosition$2(labelRadius, Helpers.degreesToRadians(axisAngle), "x") + origin.x, - y: getPosition$2(labelRadius, Helpers.degreesToRadians(axisAngle), "y") + origin.y - }; -}; - -var getAxisProps$1 = function (modifiedProps, calculatedValues) { - var style = calculatedValues.style, - axisType = calculatedValues.axisType, - radius = calculatedValues.radius, - scale = calculatedValues.scale, - origin = calculatedValues.origin; - var startAngle = modifiedProps.startAngle, - endAngle = modifiedProps.endAngle, - _modifiedProps$innerR = modifiedProps.innerRadius, - innerRadius = _modifiedProps$innerR === void 0 ? 0 : _modifiedProps$innerR; - var axisAngle = axisType === "radial" ? Helpers.degreesToRadians(getAxisAngle(modifiedProps)) : undefined; - return axisType === "radial" ? { - style: style.axis, - x1: getPosition$2(innerRadius, axisAngle, "x") + origin.x, - x2: getPosition$2(radius, axisAngle, "x") + origin.x, - y1: getPosition$2(innerRadius, axisAngle, "y") + origin.y, - y2: getPosition$2(radius, axisAngle, "y") + origin.y - } : { - style: style.axis, - cx: origin.x, - cy: origin.y, - r: radius, - startAngle: startAngle, - endAngle: endAngle - }; -}; - -var getCalculatedValues$1 = function (props) { - props = assign_1({ - polar: true - }, props); - var defaultStyles = getStyleObject$1(props); - var style = getStyles$3(props, defaultStyles); - var padding = Helpers.getPadding(props); - var axis = Axis.getAxis(props); - var axisType = getAxisType(props); - var stringTicks = Axis.stringTicks(props) ? props.tickValues : undefined; - var domain = Axis.getDomain(props, axis); - var range = getRange$1(props, axis); - var scale = getScale$1(props); - var initialTicks = Axis.getTicks(props, scale); - var ticks = axisType === "angular" ? filterTicks(initialTicks, scale) : initialTicks; - var tickFormat = Axis.getTickFormat(props, scale); - var radius = getRadius$1(props); - var origin = Helpers.getPolarOrigin(props); - return { - axis: axis, - style: style, - padding: padding, - stringTicks: stringTicks, - axisType: axisType, - scale: scale, - ticks: ticks, - tickFormat: tickFormat, - domain: domain, - range: range, - radius: radius, - origin: origin - }; -}; - -var getBaseProps$1 = function (props, fallbackProps) { - props = Axis.modifyProps(props, fallbackProps); - var calculatedValues = getCalculatedValues$1(props); - var style = calculatedValues.style, - scale = calculatedValues.scale, - ticks = calculatedValues.ticks, - domain = calculatedValues.domain; - var _props = props, - width = _props.width, - height = _props.height, - standalone = _props.standalone, - theme = _props.theme, - name = _props.name; - var axisProps = getAxisProps$1(props, calculatedValues); - var axisLabelProps = getAxisLabelProps$1(props, calculatedValues); - var initialChildProps = { - parent: { - style: style.parent, - ticks: ticks, - scale: scale, - width: width, - height: height, - domain: domain, - standalone: standalone, - theme: theme, - name: name - } - }; - return ticks.reduce(function (childProps, tick, index) { - childProps[index] = { - axis: axisProps, - axisLabel: axisLabelProps, - ticks: getTickProps$1(props, calculatedValues, tick, index), - tickLabels: getTickLabelProps$1(props, calculatedValues, tick, index), - grid: getGridProps$1(props, calculatedValues, tick, index) - }; - return childProps; - }, initialChildProps); -}; - -function _objectSpread$a(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$e(target, key, source[key]); }); } return target; } - -function _defineProperty$e(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _toConsumableArray$e(arr) { return _arrayWithoutHoles$e(arr) || _iterableToArray$e(arr) || _nonIterableSpread$e(); } - -function _nonIterableSpread$e() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$e(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$e(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function _classCallCheck$a(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$a(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$a(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$a(Constructor.prototype, protoProps); if (staticProps) _defineProperties$a(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$9(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$9(self); } - -function _assertThisInitialized$9(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _inherits$9(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } -var fallbackProps$1 = { - width: 450, - height: 300, - padding: 50 -}; -var options$1 = { - components: [{ - name: "axis", - index: 0 - }, { - name: "axisLabel", - index: 0 - }, { - name: "grid" - }, { - name: "parent", - index: "parent" - }, { - name: "ticks" - }, { - name: "tickLabels" - }] -}; - -var VictoryPolarAxis = -/*#__PURE__*/ -function (_React$Component) { - _inherits$9(VictoryPolarAxis, _React$Component); - - function VictoryPolarAxis() { - _classCallCheck$a(this, VictoryPolarAxis); - - return _possibleConstructorReturn$9(this, (VictoryPolarAxis.__proto__ || Object.getPrototypeOf(VictoryPolarAxis)).apply(this, arguments)); - } - - _createClass$a(VictoryPolarAxis, [{ - key: "renderAxisLine", - value: function renderAxisLine(props) { - var dependentAxis = props.dependentAxis; - var axisComponent = dependentAxis ? props.axisComponent : props.circularAxisComponent; - var axisProps = this.getComponentProps(axisComponent, "axis", 0); - return React__default.cloneElement(axisComponent, axisProps); - } - }, { - key: "renderLabel", - value: function renderLabel(props) { - var axisLabelComponent = props.axisLabelComponent, - dependentAxis = props.dependentAxis, - label = props.label; - - if (!label || !dependentAxis) { - return null; - } - - var axisLabelProps = this.getComponentProps(axisLabelComponent, "axisLabel", 0); - return React__default.cloneElement(axisLabelComponent, axisLabelProps); - } - }, { - key: "renderAxis", - value: function renderAxis(props) { - var _this = this; - - var tickComponent = props.tickComponent, - tickLabelComponent = props.tickLabelComponent, - name = props.name; - - var shouldRender = function (componentProps) { - var _componentProps$style = componentProps.style, - style = _componentProps$style === void 0 ? {} : _componentProps$style, - _componentProps$event = componentProps.events, - events = _componentProps$event === void 0 ? {} : _componentProps$event; - var visible = style.stroke !== "transparent" && style.stroke !== "none" && style.strokeWidth !== 0; - return visible || !isEmpty_1(events); - }; - - var axisType = props.dependentAxis ? "radial" : "angular"; - var gridComponent = axisType === "radial" ? props.circularGridComponent : props.gridComponent; - var tickComponents = this.dataKeys.map(function (key, index) { - var tickProps = assign_1({ - key: "".concat(name, "-tick-").concat(key) - }, _this.getComponentProps(tickComponent, "ticks", index)); - - var TickComponent = React__default.cloneElement(tickComponent, tickProps); - return shouldRender(TickComponent.props) ? TickComponent : undefined; - }).filter(Boolean); - var gridComponents = this.dataKeys.map(function (key, index) { - var gridProps = assign_1({ - key: "".concat(name, "-grid-").concat(key) - }, _this.getComponentProps(gridComponent, "grid", index)); - - var GridComponent = React__default.cloneElement(gridComponent, gridProps); - return shouldRender(GridComponent.props) ? GridComponent : undefined; - }).filter(Boolean); - var tickLabelComponents = this.dataKeys.map(function (key, index) { - var tickLabelProps = assign_1({ - key: "".concat(name, "-tick-").concat(key) - }, _this.getComponentProps(tickLabelComponent, "tickLabels", index)); - - return React__default.cloneElement(tickLabelComponent, tickLabelProps); - }); - var axis = this.renderAxisLine(props); - var axisLabel = this.renderLabel(props); - var children = [axis, axisLabel].concat(_toConsumableArray$e(tickComponents), _toConsumableArray$e(gridComponents), _toConsumableArray$e(tickLabelComponents)); - return this.renderGroup(props, children); - } // Overridden in victory-native - - }, { - key: "renderGroup", - value: function renderGroup(props, children) { - var groupComponent = props.groupComponent; - return React__default.cloneElement(groupComponent, {}, children); - } - }, { - key: "shouldAnimate", - value: function shouldAnimate() { - return !!this.props.animate; - } - }, { - key: "render", - value: function render() { - var animationWhitelist = VictoryPolarAxis.animationWhitelist; - var props = Axis.modifyProps(this.props, fallbackProps$1); - - if (this.shouldAnimate()) { - return this.animateComponent(props, animationWhitelist); - } - - var children = this.renderAxis(props); - return props.standalone ? this.renderContainer(props.containerComponent, children) : children; - } - }]); - - return VictoryPolarAxis; -}(React__default.Component); - -Object.defineProperty(VictoryPolarAxis, "animationWhitelist", { - configurable: true, - enumerable: true, - writable: true, - value: ["style", "domain", "range", "tickCount", "tickValues", "padding", "width", "height"] -}); -Object.defineProperty(VictoryPolarAxis, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryAxis" -}); -Object.defineProperty(VictoryPolarAxis, "role", { - configurable: true, - enumerable: true, - writable: true, - value: "axis" -}); -Object.defineProperty(VictoryPolarAxis, "defaultTransitions", { - configurable: true, - enumerable: true, - writable: true, - value: { - onExit: { - duration: 500 - }, - onEnter: { - duration: 500 - } - } -}); -Object.defineProperty(VictoryPolarAxis, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$a({}, CommonProps.baseProps, { - axisAngle: propTypes.number, - axisComponent: propTypes.element, - axisLabelComponent: propTypes.element, - axisValue: propTypes.oneOfType([propTypes.number, propTypes.string, propTypes.object]), - categories: propTypes.oneOfType([propTypes.arrayOf(propTypes.string), propTypes.shape({ - x: propTypes.arrayOf(propTypes.string), - y: propTypes.arrayOf(propTypes.string) - })]), - circularAxisComponent: propTypes.element, - circularGridComponent: propTypes.element, - containerComponent: propTypes.element, - dependentAxis: propTypes.bool, - endAngle: propTypes.number, - events: propTypes.arrayOf(propTypes.shape({ - target: propTypes.oneOf(["axis", "axisLabel", "grid", "ticks", "tickLabels"]), - eventKey: propTypes.oneOfType([propTypes.array, CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.nonNegative]), propTypes.string]), - eventHandlers: propTypes.object - })), - gridComponent: propTypes.element, - innerRadius: CustomPropTypes.nonNegative, - labelPlacement: propTypes.oneOf(["parallel", "perpendicular", "vertical"]), - startAngle: propTypes.number, - stringMap: propTypes.object, - style: propTypes.shape({ - parent: propTypes.object, - axis: propTypes.object, - axisLabel: propTypes.object, - grid: propTypes.object, - ticks: propTypes.object, - tickLabels: propTypes.object - }), - tickComponent: propTypes.element, - tickCount: CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.greaterThanZero]), - tickFormat: propTypes.oneOfType([propTypes.func, CustomPropTypes.homogeneousArray]), - tickLabelComponent: propTypes.element, - tickValues: CustomPropTypes.homogeneousArray - }) -}); -Object.defineProperty(VictoryPolarAxis, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: { - axisComponent: React__default.createElement(LineSegment, null), - axisLabelComponent: React__default.createElement(VictoryLabel, null), - circularAxisComponent: React__default.createElement(Arc, null), - circularGridComponent: React__default.createElement(Arc, null), - containerComponent: React__default.createElement(VictoryContainer, null), - endAngle: 360, - gridComponent: React__default.createElement(LineSegment, null), - groupComponent: React__default.createElement("g", { - role: "presentation" - }), - labelPlacement: "parallel", - startAngle: 0, - standalone: true, - theme: VictoryTheme.grayscale, - tickComponent: React__default.createElement(LineSegment, null), - tickLabelComponent: React__default.createElement(VictoryLabel, null) - } -}); -Object.defineProperty(VictoryPolarAxis, "getDomain", { - configurable: true, - enumerable: true, - writable: true, - value: Axis.getDomain -}); -Object.defineProperty(VictoryPolarAxis, "getAxis", { - configurable: true, - enumerable: true, - writable: true, - value: Axis.getAxis -}); -Object.defineProperty(VictoryPolarAxis, "getScale", { - configurable: true, - enumerable: true, - writable: true, - value: getScale$1 -}); -Object.defineProperty(VictoryPolarAxis, "getStyles", { - configurable: true, - enumerable: true, - writable: true, - value: function (props) { - return getStyles$3(props, fallbackProps$1.style); - } -}); -Object.defineProperty(VictoryPolarAxis, "getBaseProps", { - configurable: true, - enumerable: true, - writable: true, - value: function (props) { - return getBaseProps$1(props, fallbackProps$1); - } -}); -Object.defineProperty(VictoryPolarAxis, "expectedComponents", { - configurable: true, - enumerable: true, - writable: true, - value: ["axisComponent", "circularAxisComponent", "groupComponent", "containerComponent", "tickComponent", "tickLabelComponent", "gridComponent", "circularGridComponent"] -}); -var VictoryPolarAxis$1 = addEvents(VictoryPolarAxis, options$1); - -function _toConsumableArray$f(arr) { return _arrayWithoutHoles$f(arr) || _iterableToArray$f(arr) || _nonIterableSpread$f(); } - -function _nonIterableSpread$f() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$f(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$f(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } -var fallbackProps$2 = { - width: 450, - height: 300, - padding: 50 -}; - -function getAxisProps$2(child, props, calculatedProps) { - var domain = calculatedProps.domain, - scale = calculatedProps.scale, - stringMap = calculatedProps.stringMap, - categories = calculatedProps.categories, - horizontal = calculatedProps.horizontal, - orientations = calculatedProps.orientations; - var childProps = Axis.modifyProps(defaults_1({ - horizontal: horizontal, - theme: props.theme - }, child.props)); - var axis = child.type.getAxis(childProps); - var crossAxis = childProps.crossAxis === false ? false : true; - var orientation = childProps.orientation || orientations[axis]; - var axisOffset = horizontal ? getHorizontalAxisOffset(props, calculatedProps, orientation) : getAxisOffset(props, calculatedProps, orientation); - return { - stringMap: stringMap, - horizontal: horizontal, - categories: categories, - startAngle: props.startAngle, - endAngle: props.endAngle, - innerRadius: props.innerRadius, - domain: domain, - scale: scale, - offsetY: childProps.offsetY !== undefined ? childProps.offsetY : axisOffset.y, - offsetX: childProps.offsetX !== undefined ? childProps.offsetX : axisOffset.x, - crossAxis: crossAxis, - orientation: orientation - }; -} - -function getBackgroundWithProps(props, calculatedProps) { - var backgroundElement = props.backgroundComponent; - var height = props.polar ? calculatedProps.range.y[1] : calculatedProps.range.y[0] - calculatedProps.range.y[1]; - var width = calculatedProps.range.x[1] - calculatedProps.range.x[0]; - var xScale = props.horizontal ? calculatedProps.scale.y.range()[0] : calculatedProps.scale.x.range()[0]; - var yScale = props.horizontal ? calculatedProps.scale.x.range()[1] : calculatedProps.scale.y.range()[1]; - var xCoordinate = props.polar ? calculatedProps.origin.x : xScale; - var yCoordinate = props.polar ? calculatedProps.origin.y : yScale; - var parentName = props.name || "chart"; - var backgroundProps = { - height: height, - polar: props.polar, - scale: calculatedProps.scale, - style: props.style.background, - x: xCoordinate, - y: yCoordinate, - key: "".concat(parentName, "-background"), - width: width - }; - return React__default.cloneElement(backgroundElement, defaults_1({}, backgroundElement.props, backgroundProps)); -} - -function getChildProps(child, props, calculatedProps) { - var axisChild = Axis.findAxisComponents([child]); - - if (axisChild.length > 0) { - return getAxisProps$2(axisChild[0], props, calculatedProps); - } - - var categories = calculatedProps.categories, - domain = calculatedProps.domain, - range = calculatedProps.range, - scale = calculatedProps.scale, - stringMap = calculatedProps.stringMap, - horizontal = calculatedProps.horizontal; - return { - categories: categories, - domain: domain, - range: range, - scale: scale, - stringMap: stringMap, - horizontal: horizontal - }; -} - -function getStyles$4(props) { - var styleProps = props.style && props.style.parent; - return { - parent: defaults_1({}, styleProps, { - height: "100%", - width: "100%", - userSelect: "none" - }) - }; -} - -function getOrientation$1(axis, originSign, horizontal) { - var sign = originSign || "positive"; - var orientations = { - positive: { - x: "bottom", - y: "left" - }, - negative: { - x: "top", - y: "right" - } - }; - var horizontalOrientations = { - positive: { - x: "left", - y: "bottom" - }, - negative: { - x: "right", - y: "top" - } - }; - return horizontal ? horizontalOrientations[sign][axis] : orientations[sign][axis]; -} - -function getCalculatedProps$1(props, childComponents) { - var style = getStyles$4(props); - props = Helpers.modifyProps(props, fallbackProps$2, "chart"); - var _props = props, - horizontal = _props.horizontal, - polar = _props.polar; - var allStrings = Wrapper.getStringsFromChildren(props, childComponents); - var categories = Wrapper.getCategories(props, childComponents, allStrings); - var stringMap = createStringMap$1(props, childComponents, allStrings); - var domain = { - x: getDomain$2(assign_1({}, props, { - categories: categories - }), "x", childComponents), - y: getDomain$2(assign_1({}, props, { - categories: categories - }), "y", childComponents) - }; - var range = { - x: Helpers.getRange(props, "x"), - y: Helpers.getRange(props, "y") - }; - var baseScale = { - x: Scale.getScaleFromProps(props, "x") || Wrapper.getScale(props, "x"), - y: Scale.getScaleFromProps(props, "y") || Wrapper.getScale(props, "y") - }; - var scale = { - x: baseScale.x.domain(domain.x).range(horizontal ? range.y : range.x), - y: baseScale.y.domain(domain.y).range(horizontal ? range.x : range.y) - }; - var origin = polar ? Helpers.getPolarOrigin(props) : Axis.getOrigin(domain); - var originSign = { - x: Axis.getOriginSign(origin.x, domain.x), - y: Axis.getOriginSign(origin.y, domain.y) - }; - var orientations = { - x: getOrientation$1("x", originSign.y, horizontal), - y: getOrientation$1("y", originSign.x, horizontal) - }; - var padding = Helpers.getPadding(props); - return { - categories: categories, - domain: domain, - range: range, - horizontal: horizontal, - scale: scale, - stringMap: stringMap, - style: style, - origin: origin, - padding: padding, - orientations: orientations - }; -} - -function getChildren(props, childComponents, calculatedProps) { - childComponents = childComponents || getChildComponents(props); - calculatedProps = calculatedProps || getCalculatedProps$1(props, childComponents); - var baseStyle = calculatedProps.style.parent; - var height = props.height, - polar = props.polar, - theme = props.theme, - width = props.width; - var _calculatedProps = calculatedProps, - origin = _calculatedProps.origin, - horizontal = _calculatedProps.horizontal; - var parentName = props.name || "chart"; - return childComponents.map(function (child, index) { - var role = child.type && child.type.role; - var style = Array.isArray(child.props.style) ? child.props.style : defaults_1({}, child.props.style, { - parent: baseStyle - }); - var childProps = getChildProps(child, props, calculatedProps); - var name = child.props.name || "".concat(parentName, "-").concat(role, "-").concat(index); - - var newProps = defaults_1({ - horizontal: horizontal, - height: height, - polar: polar, - theme: theme, - width: width, - style: style, - name: name, - origin: polar ? origin : undefined, - padding: calculatedProps.padding, - key: "".concat(name, "-key-").concat(index), - standalone: false - }, childProps); - - return React__default.cloneElement(child, newProps); - }); -} - -var getChildComponents = function (props, defaultAxes) { - var childComponents = React__default.Children.toArray(props.children); - - var newChildComponents = _toConsumableArray$f(childComponents); - - if (childComponents.length === 0) { - newChildComponents.push(defaultAxes.independent, defaultAxes.dependent); - } else { - var axisComponents = { - dependent: Axis.getAxisComponentsWithParent(childComponents, "dependent"), - independent: Axis.getAxisComponentsWithParent(childComponents, "independent") - }; - - if (axisComponents.dependent.length === 0 && axisComponents.independent.length === 0) { - newChildComponents = props.prependDefaultAxes ? [defaultAxes.independent, defaultAxes.dependent].concat(newChildComponents) : newChildComponents.concat([defaultAxes.independent, defaultAxes.dependent]); - } - } - - return newChildComponents; -}; - -var getDomain$2 = function (props, axis, childComponents) { - childComponents = childComponents || React__default.Children.toArray(props.children); - var domain = Wrapper.getDomain(props, axis, childComponents); - var axisComponent = Axis.getAxisComponent(childComponents, axis); - var invertDomain = axisComponent && axisComponent.props && axisComponent.props.invertAxis; - return invertDomain ? domain.concat().reverse() : domain; -}; - -var getAxisOffset = function (props, calculatedProps, orientation) { - var scale = calculatedProps.scale, - origin = calculatedProps.origin, - domain = calculatedProps.domain, - padding = calculatedProps.padding; - var top = padding.top, - bottom = padding.bottom, - left = padding.left, - right = padding.right; - var orientations = { - x: orientation === "bottom" || orientation === "top" ? orientation : calculatedProps.orientations.x, - y: orientation === "left" || orientation === "right" ? orientation : calculatedProps.orientations.y - }; // make the axes line up, and cross when appropriate - - var orientationOffset = { - y: orientations.x === "bottom" ? bottom : top, - x: orientations.y === "left" ? left : right - }; - var originOffset = { - x: orientations.y === "left" ? 0 : props.width, - y: orientations.x === "bottom" ? props.height : 0 - }; - var originPosition = { - x: origin.x === domain.x[0] || origin.x === domain.x[1] ? 0 : scale.x(origin.x), - y: origin.y === domain.y[0] || origin.y === domain.y[1] ? 0 : scale.y(origin.y) - }; - return { - x: originPosition.x ? Math.abs(originOffset.x - originPosition.x) : orientationOffset.x, - y: originPosition.y ? Math.abs(originOffset.y - originPosition.y) : orientationOffset.y - }; -}; - -var getHorizontalAxisOffset = function (props, calculatedProps, orientation) { - var scale = calculatedProps.scale, - origin = calculatedProps.origin, - domain = calculatedProps.domain, - padding = calculatedProps.padding; - var top = padding.top, - bottom = padding.bottom, - left = padding.left, - right = padding.right; - var orientations = { - y: orientation === "bottom" || orientation === "top" ? orientation : calculatedProps.orientations.x, - x: orientation === "left" || orientation === "right" ? orientation : calculatedProps.orientations.y - }; // make the axes line up, and cross when appropriate - - var orientationOffset = { - x: orientations.y === "bottom" ? bottom : top, - y: orientations.x === "left" ? left : right - }; - var originOffset = { - y: orientations.x === "left" ? 0 : props.width, - x: orientations.y === "bottom" ? props.height : 0 - }; - var originPosition = { - x: origin.x === domain.x[0] || origin.x === domain.x[1] ? 0 : scale.x(origin.x), - y: origin.y === domain.y[0] || origin.y === domain.y[1] ? 0 : scale.y(origin.y) - }; - return { - y: originPosition.x ? Math.abs(originOffset.x - originPosition.x) : orientationOffset.x, - x: originPosition.y ? Math.abs(originOffset.y - originPosition.y) : orientationOffset.y - }; -}; - -var createStringMap$1 = function (props, childComponents, allStrings) { - var x = !allStrings.x || allStrings.x.length === 0 ? null : allStrings.x.reduce(function (memo, string, index) { - memo[string] = index + 1; - return memo; - }, {}); - var y = !allStrings.y || allStrings.y.length === 0 ? null : allStrings.y.reduce(function (memo, string, index) { - memo[string] = index + 1; - return memo; - }, {}); - return { - x: x, - y: y - }; -}; - -function _objectSpread$b(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$f(target, key, source[key]); }); } return target; } - -function _defineProperty$f(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _classCallCheck$b(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$b(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$b(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$b(Constructor.prototype, protoProps); if (staticProps) _defineProperties$b(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$a(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$a(self); } - -function _inherits$a(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } - -function _assertThisInitialized$a(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } -var fallbackProps$3 = { - width: 450, - height: 300, - padding: 50 -}; - -var VictoryChart = -/*#__PURE__*/ -function (_React$Component) { - _inherits$a(VictoryChart, _React$Component); - - function VictoryChart(props) { - var _this; - - _classCallCheck$b(this, VictoryChart); - - _this = _possibleConstructorReturn$a(this, (VictoryChart.__proto__ || Object.getPrototypeOf(VictoryChart)).call(this, props)); - _this.state = {}; - - if (props.animate) { - _this.state = { - nodesShouldLoad: false, - nodesDoneLoad: false, - animating: true - }; - _this.setAnimationState = Wrapper.setAnimationState.bind(_assertThisInitialized$a(_this)); - } - - return _this; - } - - _createClass$b(VictoryChart, [{ - key: "shouldComponentUpdate", - value: function shouldComponentUpdate(nextProps) { - if (this.props.animate) { - if (!reactFastCompare(this.props, nextProps)) { - this.setAnimationState(this.props, nextProps); - return false; - } - } - - return true; - } - }, { - key: "getNewChildren", - value: function getNewChildren(props, childComponents, calculatedProps) { - var children = getChildren(props, childComponents, calculatedProps); - var getAnimationProps = Wrapper.getAnimationProps.bind(this); - var newChildren = children.map(function (child, index) { - var childProps = assign_1({ - animate: getAnimationProps(props, child, index) - }, child.props); - - return React__default.cloneElement(child, childProps); - }); - - if (props.style && props.style.background) { - var backgroundComponent = getBackgroundWithProps(props, calculatedProps); - newChildren.unshift(backgroundComponent); - } - - return newChildren; - } - }, { - key: "renderContainer", - value: function renderContainer(containerComponent, props) { - var containerProps = defaults_1({}, containerComponent.props, props); - - return React__default.cloneElement(containerComponent, containerProps); - } - }, { - key: "getContainerProps", - value: function getContainerProps(props, calculatedProps) { - var width = props.width, - height = props.height, - standalone = props.standalone, - theme = props.theme, - polar = props.polar, - name = props.name; - var domain = calculatedProps.domain, - scale = calculatedProps.scale, - style = calculatedProps.style, - origin = calculatedProps.origin, - radius = calculatedProps.radius, - horizontal = calculatedProps.horizontal; - return { - domain: domain, - scale: scale, - width: width, - height: height, - standalone: standalone, - theme: theme, - style: style.parent, - horizontal: horizontal, - name: name, - polar: polar, - radius: radius, - origin: polar ? origin : undefined - }; - } - }, { - key: "render", - value: function render() { - var props = this.state && this.state.nodesWillExit ? this.state.oldProps || this.props : this.props; - var modifiedProps = Helpers.modifyProps(props, fallbackProps$3, "chart"); - var eventKey = modifiedProps.eventKey, - containerComponent = modifiedProps.containerComponent, - groupComponent = modifiedProps.groupComponent, - standalone = modifiedProps.standalone, - externalEventMutations = modifiedProps.externalEventMutations; - var axes = props.polar ? modifiedProps.defaultPolarAxes : modifiedProps.defaultAxes; - var childComponents = getChildComponents(modifiedProps, axes); - var calculatedProps = getCalculatedProps$1(modifiedProps, childComponents); - var newChildren = this.getNewChildren(modifiedProps, childComponents, calculatedProps); - var containerProps = standalone ? this.getContainerProps(modifiedProps, calculatedProps) : {}; - var container = standalone ? this.renderContainer(containerComponent, containerProps) : groupComponent; - var events = Wrapper.getAllEvents(props); - - if (!isEmpty_1(events)) { - return React__default.createElement(VictorySharedEvents, { - container: container, - eventKey: eventKey, - events: events, - externalEventMutations: externalEventMutations - }, newChildren); - } - - return React__default.cloneElement(container, container.props, newChildren); - } - }]); - - return VictoryChart; -}(React__default.Component); - -Object.defineProperty(VictoryChart, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryChart" -}); -Object.defineProperty(VictoryChart, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$b({}, CommonProps.baseProps, { - backgroundComponent: propTypes.element, - children: propTypes.oneOfType([propTypes.arrayOf(propTypes.node), propTypes.node]), - defaultAxes: propTypes.shape({ - independent: propTypes.element, - dependent: propTypes.element - }), - defaultPolarAxes: propTypes.shape({ - independent: propTypes.element, - dependent: propTypes.element - }), - endAngle: propTypes.number, - innerRadius: CustomPropTypes.nonNegative, - prependDefaultAxes: propTypes.bool, - startAngle: propTypes.number - }) -}); -Object.defineProperty(VictoryChart, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: { - backgroundComponent: React__default.createElement(Background, null), - containerComponent: React__default.createElement(VictoryContainer, null), - defaultAxes: { - independent: React__default.createElement(VictoryAxis$1, null), - dependent: React__default.createElement(VictoryAxis$1, { - dependentAxis: true - }) - }, - defaultPolarAxes: { - independent: React__default.createElement(VictoryPolarAxis$1, null), - dependent: React__default.createElement(VictoryPolarAxis$1, { - dependentAxis: true - }) - }, - groupComponent: React__default.createElement("g", null), - standalone: true, - theme: VictoryTheme.grayscale - } -}); -Object.defineProperty(VictoryChart, "expectedComponents", { - configurable: true, - enumerable: true, - writable: true, - value: ["groupComponent", "containerComponent"] -}); - -function _toConsumableArray$g(arr) { return _arrayWithoutHoles$g(arr) || _iterableToArray$g(arr) || _nonIterableSpread$g(); } - -function _nonIterableSpread$g() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$g(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$g(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } -var fallbackProps$4 = { - width: 450, - height: 300, - padding: 50, - offset: 0 -}; // eslint-disable-next-line max-statements - -function getCalculatedProps$2(props, childComponents) { - var role = "group"; - props = Helpers.modifyProps(props, fallbackProps$4, role); - var style = Wrapper.getStyle(props.theme, props.style, role); - var _props = props, - offset = _props.offset, - colorScale = _props.colorScale, - color = _props.color, - polar = _props.polar, - horizontal = _props.horizontal; - var categories = props.categories || Wrapper.getCategories(props, childComponents); - var datasets = props.datasets || Wrapper.getDataFromChildren(props); - var domain = { - x: Wrapper.getDomain(assign_1({}, props, { - categories: categories - }), "x", childComponents), - y: Wrapper.getDomain(assign_1({}, props, { - categories: categories - }), "y", childComponents) - }; - var range = props.range || { - x: Helpers.getRange(props, "x"), - y: Helpers.getRange(props, "y") - }; - var baseScale = { - x: Scale.getScaleFromProps(props, "x") || Wrapper.getScale(props, "x"), - y: Scale.getScaleFromProps(props, "y") || Wrapper.getScale(props, "y") - }; - var scale = { - x: baseScale.x.domain(domain.x).range(props.horizontal ? range.y : range.x), - y: baseScale.y.domain(domain.y).range(props.horizontal ? range.x : range.y) - }; - var origin = polar ? props.origin : Helpers.getPolarOrigin(props); - var padding = Helpers.getPadding(props); - return { - datasets: datasets, - categories: categories, - range: range, - domain: domain, - horizontal: horizontal, - scale: scale, - style: style, - colorScale: colorScale, - color: color, - offset: offset, - origin: origin, - padding: padding - }; -} - -function pixelsToValue(props, axis, calculatedProps) { - if (!props.offset) { - return 0; - } - - var currentAxis = Helpers.getCurrentAxis(axis, props.horizontal); - var domain = calculatedProps.domain[axis]; - var range = calculatedProps.range[currentAxis]; - var domainExtent = Math.max.apply(Math, _toConsumableArray$g(domain)) - Math.min.apply(Math, _toConsumableArray$g(domain)); - var rangeExtent = Math.max.apply(Math, _toConsumableArray$g(range)) - Math.min.apply(Math, _toConsumableArray$g(range)); - return domainExtent / rangeExtent * props.offset; -} // eslint-disable-next-line max-params - - -function getX0(props, calculatedProps, index, role) { - var groupLength = role === "stack" ? calculatedProps.datasets[0].length : calculatedProps.datasets.length; - var center = (groupLength - 1) / 2; - var totalWidth = pixelsToValue(props, "x", calculatedProps); - return (index - center) * totalWidth; -} // eslint-disable-next-line max-params - - -function getPolarX0(props, calculatedProps, index, role) { - var groupLength = role === "stack" ? calculatedProps.datasets[0].length : calculatedProps.datasets.length; - var center = (groupLength - 1) / 2; - var width = getAngularWidth(props, calculatedProps); - return (index - center) * width; -} - -function getAngularWidth(props, calculatedProps) { - var range = calculatedProps.range; - var angularRange = Math.abs(range.x[1] - range.x[0]); - var r = Math.max.apply(Math, _toConsumableArray$g(range.y)); - return props.offset / (2 * Math.PI * r) * angularRange; -} - -function getLabels(props, datasets, index) { - if (!props.labels) { - return undefined; - } - - return Math.floor(datasets.length / 2) === index ? props.labels : undefined; -} - -function getChildProps$1(props, calculatedProps) { - var categories = calculatedProps.categories, - domain = calculatedProps.domain, - range = calculatedProps.range, - scale = calculatedProps.scale, - horizontal = calculatedProps.horizontal, - origin = calculatedProps.origin, - padding = calculatedProps.padding; - var width = props.width, - height = props.height, - theme = props.theme, - polar = props.polar; - return { - height: height, - width: width, - theme: theme, - polar: polar, - origin: origin, - categories: categories, - domain: domain, - range: range, - scale: scale, - horizontal: horizontal, - padding: padding, - standalone: false - }; -} - -function getColorScale(props, child) { - var role = child.type && child.type.role; - var colorScaleOptions = child.props.colorScale || props.colorScale; - - if (role !== "group" && role !== "stack") { - return undefined; - } - - return props.theme && props.theme.group ? colorScaleOptions || props.theme.group.colorScale : colorScaleOptions; -} - -function getDataWithOffset(props) { - var defaultDataset = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : []; - var offset = arguments.length > 2 ? arguments[2] : undefined; - var dataset = props.data || props.y ? Data.getData(props) : defaultDataset; - var xOffset = offset || 0; - return dataset.map(function (datum) { - var _x1 = datum._x instanceof Date ? new Date(datum._x.getTime() + xOffset) : datum._x + xOffset; - - return assign_1({}, datum, { - _x1: _x1 - }); - }); -} - -function getChildren$1(props, childComponents, calculatedProps) { - props = Helpers.modifyProps(props, fallbackProps$4, "stack"); - childComponents = childComponents || React__default.Children.toArray(props.children); - calculatedProps = calculatedProps || getCalculatedProps$2(props, childComponents); - var _calculatedProps = calculatedProps, - datasets = _calculatedProps.datasets; - var _props2 = props, - labelComponent = _props2.labelComponent, - polar = _props2.polar; - var childProps = getChildProps$1(props, calculatedProps); - var parentName = props.name || "group"; - return childComponents.map(function (child, index) { - var role = child.type && child.type.role; - var xOffset = polar ? getPolarX0(props, calculatedProps, index, role) : getX0(props, calculatedProps, index, role); - var style = role === "voronoi" || role === "tooltip" || role === "label" ? child.props.style : Wrapper.getChildStyle(child, index, calculatedProps); - var labels = props.labels ? getLabels(props, datasets, index) : child.props.labels; - var name = child.props.name || "".concat(parentName, "-").concat(role, "-").concat(index); - return React__default.cloneElement(child, assign_1({ - labels: labels, - style: style, - key: "".concat(name, "-key-").concat(index), - name: name, - data: getDataWithOffset(props, datasets[index], xOffset), - colorScale: getColorScale(props, child), - labelComponent: labelComponent || child.props.labelComponent, - xOffset: xOffset - }, childProps)); - }); -} - -function _objectSpread$c(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$g(target, key, source[key]); }); } return target; } - -function _defineProperty$g(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _classCallCheck$c(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$c(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$c(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$c(Constructor.prototype, protoProps); if (staticProps) _defineProperties$c(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$b(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$b(self); } - -function _inherits$b(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } - -function _assertThisInitialized$b(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } -var fallbackProps$5 = { - width: 450, - height: 300, - padding: 50, - offset: 0 -}; - -var VictoryGroup = -/*#__PURE__*/ -function (_React$Component) { - _inherits$b(VictoryGroup, _React$Component); - - function VictoryGroup(props) { - var _this; - - _classCallCheck$c(this, VictoryGroup); - - _this = _possibleConstructorReturn$b(this, (VictoryGroup.__proto__ || Object.getPrototypeOf(VictoryGroup)).call(this, props)); - - if (props.animate) { - _this.state = { - nodesShouldLoad: false, - nodesDoneLoad: false, - animating: true - }; - _this.setAnimationState = Wrapper.setAnimationState.bind(_assertThisInitialized$b(_this)); - } - - return _this; - } - - _createClass$c(VictoryGroup, [{ - key: "shouldComponentUpdate", - value: function shouldComponentUpdate(nextProps) { - if (this.props.animate) { - if (!reactFastCompare(this.props, nextProps)) { - this.setAnimationState(this.props, nextProps); - return false; - } - } - - return true; - } - }, { - key: "getNewChildren", - value: function getNewChildren(props, childComponents, calculatedProps) { - var children = getChildren$1(props, childComponents, calculatedProps); - var getAnimationProps = Wrapper.getAnimationProps.bind(this); - return children.map(function (child, index) { - var childProps = assign_1({ - animate: getAnimationProps(props, child, index) - }, child.props); - - return React__default.cloneElement(child, childProps); - }); - } - }, { - key: "renderContainer", - value: function renderContainer(containerComponent, props) { - var containerProps = defaults_1({}, containerComponent.props, props); - - return React__default.cloneElement(containerComponent, containerProps); - } - }, { - key: "getContainerProps", - value: function getContainerProps(props, calculatedProps) { - var width = props.width, - height = props.height, - standalone = props.standalone, - theme = props.theme, - polar = props.polar, - horizontal = props.horizontal, - name = props.name; - var domain = calculatedProps.domain, - scale = calculatedProps.scale, - style = calculatedProps.style, - origin = calculatedProps.origin; - return { - domain: domain, - scale: scale, - width: width, - height: height, - standalone: standalone, - theme: theme, - style: style.parent, - horizontal: horizontal, - polar: polar, - origin: origin, - name: name - }; - } - }, { - key: "render", - value: function render() { - var role = this.constructor.role; - var props = this.state && this.state.nodesWillExit ? this.state.oldProps || this.props : this.props; - var modifiedProps = Helpers.modifyProps(props, fallbackProps$5, role); - var eventKey = modifiedProps.eventKey, - containerComponent = modifiedProps.containerComponent, - standalone = modifiedProps.standalone, - groupComponent = modifiedProps.groupComponent, - externalEventMutations = modifiedProps.externalEventMutations; - var childComponents = React__default.Children.toArray(modifiedProps.children); - var calculatedProps = getCalculatedProps$2(modifiedProps, childComponents); - var newChildren = this.getNewChildren(modifiedProps, childComponents, calculatedProps); - var containerProps = standalone ? this.getContainerProps(modifiedProps, calculatedProps) : {}; - var container = standalone ? this.renderContainer(containerComponent, containerProps) : groupComponent; - var events = Wrapper.getAllEvents(props); - - if (!isEmpty_1(events)) { - return React__default.createElement(VictorySharedEvents, { - container: container, - eventKey: eventKey, - events: events, - externalEventMutations: externalEventMutations - }, newChildren); - } - - return React__default.cloneElement(container, container.props, newChildren); - } - }]); - - return VictoryGroup; -}(React__default.Component); - -Object.defineProperty(VictoryGroup, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryGroup" -}); -Object.defineProperty(VictoryGroup, "role", { - configurable: true, - enumerable: true, - writable: true, - value: "group" -}); -Object.defineProperty(VictoryGroup, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$c({}, CommonProps.baseProps, CommonProps.dataProps, { - children: propTypes.oneOfType([propTypes.arrayOf(propTypes.node), propTypes.node]), - color: propTypes.oneOfType([propTypes.string, propTypes.func]), - colorScale: propTypes.oneOfType([propTypes.arrayOf(propTypes.string), propTypes.oneOf(["grayscale", "qualitative", "heatmap", "warm", "cool", "red", "green", "blue"])]), - horizontal: propTypes.bool, - offset: propTypes.number - }) -}); -Object.defineProperty(VictoryGroup, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: { - containerComponent: React__default.createElement(VictoryContainer, null), - groupComponent: React__default.createElement("g", null), - samples: 50, - sortOrder: "ascending", - standalone: true, - theme: VictoryTheme.grayscale - } -}); -Object.defineProperty(VictoryGroup, "expectedComponents", { - configurable: true, - enumerable: true, - writable: true, - value: ["groupComponent", "containerComponent", "labelComponent"] -}); -Object.defineProperty(VictoryGroup, "getChildren", { - configurable: true, - enumerable: true, - writable: true, - value: getChildren$1 -}); - -var pi$1 = Math.PI, - tau$1 = 2 * pi$1, - epsilon = 1e-6, - tauEpsilon = tau$1 - epsilon; - -function Path$1() { - this._x0 = this._y0 = // start of current subpath - this._x1 = this._y1 = null; // end of current subpath - this._ = ""; -} - -function path() { - return new Path$1; -} - -Path$1.prototype = path.prototype = { - constructor: Path$1, - moveTo: function(x, y) { - this._ += "M" + (this._x0 = this._x1 = +x) + "," + (this._y0 = this._y1 = +y); - }, - closePath: function() { - if (this._x1 !== null) { - this._x1 = this._x0, this._y1 = this._y0; - this._ += "Z"; - } - }, - lineTo: function(x, y) { - this._ += "L" + (this._x1 = +x) + "," + (this._y1 = +y); - }, - quadraticCurveTo: function(x1, y1, x, y) { - this._ += "Q" + (+x1) + "," + (+y1) + "," + (this._x1 = +x) + "," + (this._y1 = +y); - }, - bezierCurveTo: function(x1, y1, x2, y2, x, y) { - this._ += "C" + (+x1) + "," + (+y1) + "," + (+x2) + "," + (+y2) + "," + (this._x1 = +x) + "," + (this._y1 = +y); - }, - arcTo: function(x1, y1, x2, y2, r) { - x1 = +x1, y1 = +y1, x2 = +x2, y2 = +y2, r = +r; - var x0 = this._x1, - y0 = this._y1, - x21 = x2 - x1, - y21 = y2 - y1, - x01 = x0 - x1, - y01 = y0 - y1, - l01_2 = x01 * x01 + y01 * y01; - - // Is the radius negative? Error. - if (r < 0) throw new Error("negative radius: " + r); - - // Is this path empty? Move to (x1,y1). - if (this._x1 === null) { - this._ += "M" + (this._x1 = x1) + "," + (this._y1 = y1); - } - - // Or, is (x1,y1) coincident with (x0,y0)? Do nothing. - else if (!(l01_2 > epsilon)); - - // Or, are (x0,y0), (x1,y1) and (x2,y2) collinear? - // Equivalently, is (x1,y1) coincident with (x2,y2)? - // Or, is the radius zero? Line to (x1,y1). - else if (!(Math.abs(y01 * x21 - y21 * x01) > epsilon) || !r) { - this._ += "L" + (this._x1 = x1) + "," + (this._y1 = y1); - } - - // Otherwise, draw an arc! - else { - var x20 = x2 - x0, - y20 = y2 - y0, - l21_2 = x21 * x21 + y21 * y21, - l20_2 = x20 * x20 + y20 * y20, - l21 = Math.sqrt(l21_2), - l01 = Math.sqrt(l01_2), - l = r * Math.tan((pi$1 - Math.acos((l21_2 + l01_2 - l20_2) / (2 * l21 * l01))) / 2), - t01 = l / l01, - t21 = l / l21; - - // If the start tangent is not coincident with (x0,y0), line to. - if (Math.abs(t01 - 1) > epsilon) { - this._ += "L" + (x1 + t01 * x01) + "," + (y1 + t01 * y01); - } - - this._ += "A" + r + "," + r + ",0,0," + (+(y01 * x20 > x01 * y20)) + "," + (this._x1 = x1 + t21 * x21) + "," + (this._y1 = y1 + t21 * y21); - } - }, - arc: function(x, y, r, a0, a1, ccw) { - x = +x, y = +y, r = +r, ccw = !!ccw; - var dx = r * Math.cos(a0), - dy = r * Math.sin(a0), - x0 = x + dx, - y0 = y + dy, - cw = 1 ^ ccw, - da = ccw ? a0 - a1 : a1 - a0; - - // Is the radius negative? Error. - if (r < 0) throw new Error("negative radius: " + r); - - // Is this path empty? Move to (x0,y0). - if (this._x1 === null) { - this._ += "M" + x0 + "," + y0; - } - - // Or, is (x0,y0) not coincident with the previous point? Line to (x0,y0). - else if (Math.abs(this._x1 - x0) > epsilon || Math.abs(this._y1 - y0) > epsilon) { - this._ += "L" + x0 + "," + y0; - } - - // Is this arc empty? We’re done. - if (!r) return; - - // Does the angle go the wrong way? Flip the direction. - if (da < 0) da = da % tau$1 + tau$1; - - // Is this a complete circle? Draw two arcs to complete the circle. - if (da > tauEpsilon) { - this._ += "A" + r + "," + r + ",0,1," + cw + "," + (x - dx) + "," + (y - dy) + "A" + r + "," + r + ",0,1," + cw + "," + (this._x1 = x0) + "," + (this._y1 = y0); - } - - // Is this arc non-empty? Draw an arc! - else if (da > epsilon) { - this._ += "A" + r + "," + r + ",0," + (+(da >= pi$1)) + "," + cw + "," + (this._x1 = x + r * Math.cos(a1)) + "," + (this._y1 = y + r * Math.sin(a1)); - } - }, - rect: function(x, y, w, h) { - this._ += "M" + (this._x0 = this._x1 = +x) + "," + (this._y0 = this._y1 = +y) + "h" + (+w) + "v" + (+h) + "h" + (-w) + "Z"; - }, - toString: function() { - return this._; - } -}; - -function constant$3(x) { - return function constant() { - return x; - }; -} - -var abs = Math.abs; -var atan2 = Math.atan2; -var cos = Math.cos; -var max = Math.max; -var min = Math.min; -var sin = Math.sin; -var sqrt$1 = Math.sqrt; - -var epsilon$1 = 1e-12; -var pi$2 = Math.PI; -var halfPi$1 = pi$2 / 2; -var tau$2 = 2 * pi$2; - -function acos(x) { - return x > 1 ? 0 : x < -1 ? pi$2 : Math.acos(x); -} - -function asin(x) { - return x >= 1 ? halfPi$1 : x <= -1 ? -halfPi$1 : Math.asin(x); -} - -function arcInnerRadius(d) { - return d.innerRadius; -} - -function arcOuterRadius(d) { - return d.outerRadius; -} - -function arcStartAngle(d) { - return d.startAngle; -} - -function arcEndAngle(d) { - return d.endAngle; -} - -function arcPadAngle(d) { - return d && d.padAngle; // Note: optional! -} - -function intersect(x0, y0, x1, y1, x2, y2, x3, y3) { - var x10 = x1 - x0, y10 = y1 - y0, - x32 = x3 - x2, y32 = y3 - y2, - t = y32 * x10 - x32 * y10; - if (t * t < epsilon$1) return; - t = (x32 * (y0 - y2) - y32 * (x0 - x2)) / t; - return [x0 + t * x10, y0 + t * y10]; -} - -// Compute perpendicular offset line of length rc. -// http://mathworld.wolfram.com/Circle-LineIntersection.html -function cornerTangents(x0, y0, x1, y1, r1, rc, cw) { - var x01 = x0 - x1, - y01 = y0 - y1, - lo = (cw ? rc : -rc) / sqrt$1(x01 * x01 + y01 * y01), - ox = lo * y01, - oy = -lo * x01, - x11 = x0 + ox, - y11 = y0 + oy, - x10 = x1 + ox, - y10 = y1 + oy, - x00 = (x11 + x10) / 2, - y00 = (y11 + y10) / 2, - dx = x10 - x11, - dy = y10 - y11, - d2 = dx * dx + dy * dy, - r = r1 - rc, - D = x11 * y10 - x10 * y11, - d = (dy < 0 ? -1 : 1) * sqrt$1(max(0, r * r * d2 - D * D)), - cx0 = (D * dy - dx * d) / d2, - cy0 = (-D * dx - dy * d) / d2, - cx1 = (D * dy + dx * d) / d2, - cy1 = (-D * dx + dy * d) / d2, - dx0 = cx0 - x00, - dy0 = cy0 - y00, - dx1 = cx1 - x00, - dy1 = cy1 - y00; - - // Pick the closer of the two intersection points. - // TODO Is there a faster way to determine which intersection to use? - if (dx0 * dx0 + dy0 * dy0 > dx1 * dx1 + dy1 * dy1) cx0 = cx1, cy0 = cy1; - - return { - cx: cx0, - cy: cy0, - x01: -ox, - y01: -oy, - x11: cx0 * (r1 / r - 1), - y11: cy0 * (r1 / r - 1) - }; -} - -function arc() { - var innerRadius = arcInnerRadius, - outerRadius = arcOuterRadius, - cornerRadius = constant$3(0), - padRadius = null, - startAngle = arcStartAngle, - endAngle = arcEndAngle, - padAngle = arcPadAngle, - context = null; - - function arc() { - var buffer, - r, - r0 = +innerRadius.apply(this, arguments), - r1 = +outerRadius.apply(this, arguments), - a0 = startAngle.apply(this, arguments) - halfPi$1, - a1 = endAngle.apply(this, arguments) - halfPi$1, - da = abs(a1 - a0), - cw = a1 > a0; - - if (!context) context = buffer = path(); - - // Ensure that the outer radius is always larger than the inner radius. - if (r1 < r0) r = r1, r1 = r0, r0 = r; - - // Is it a point? - if (!(r1 > epsilon$1)) context.moveTo(0, 0); - - // Or is it a circle or annulus? - else if (da > tau$2 - epsilon$1) { - context.moveTo(r1 * cos(a0), r1 * sin(a0)); - context.arc(0, 0, r1, a0, a1, !cw); - if (r0 > epsilon$1) { - context.moveTo(r0 * cos(a1), r0 * sin(a1)); - context.arc(0, 0, r0, a1, a0, cw); - } - } - - // Or is it a circular or annular sector? - else { - var a01 = a0, - a11 = a1, - a00 = a0, - a10 = a1, - da0 = da, - da1 = da, - ap = padAngle.apply(this, arguments) / 2, - rp = (ap > epsilon$1) && (padRadius ? +padRadius.apply(this, arguments) : sqrt$1(r0 * r0 + r1 * r1)), - rc = min(abs(r1 - r0) / 2, +cornerRadius.apply(this, arguments)), - rc0 = rc, - rc1 = rc, - t0, - t1; - - // Apply padding? Note that since r1 ≥ r0, da1 ≥ da0. - if (rp > epsilon$1) { - var p0 = asin(rp / r0 * sin(ap)), - p1 = asin(rp / r1 * sin(ap)); - if ((da0 -= p0 * 2) > epsilon$1) p0 *= (cw ? 1 : -1), a00 += p0, a10 -= p0; - else da0 = 0, a00 = a10 = (a0 + a1) / 2; - if ((da1 -= p1 * 2) > epsilon$1) p1 *= (cw ? 1 : -1), a01 += p1, a11 -= p1; - else da1 = 0, a01 = a11 = (a0 + a1) / 2; - } - - var x01 = r1 * cos(a01), - y01 = r1 * sin(a01), - x10 = r0 * cos(a10), - y10 = r0 * sin(a10); - - // Apply rounded corners? - if (rc > epsilon$1) { - var x11 = r1 * cos(a11), - y11 = r1 * sin(a11), - x00 = r0 * cos(a00), - y00 = r0 * sin(a00), - oc; - - // Restrict the corner radius according to the sector angle. - if (da < pi$2 && (oc = intersect(x01, y01, x00, y00, x11, y11, x10, y10))) { - var ax = x01 - oc[0], - ay = y01 - oc[1], - bx = x11 - oc[0], - by = y11 - oc[1], - kc = 1 / sin(acos((ax * bx + ay * by) / (sqrt$1(ax * ax + ay * ay) * sqrt$1(bx * bx + by * by))) / 2), - lc = sqrt$1(oc[0] * oc[0] + oc[1] * oc[1]); - rc0 = min(rc, (r0 - lc) / (kc - 1)); - rc1 = min(rc, (r1 - lc) / (kc + 1)); - } - } - - // Is the sector collapsed to a line? - if (!(da1 > epsilon$1)) context.moveTo(x01, y01); - - // Does the sector’s outer ring have rounded corners? - else if (rc1 > epsilon$1) { - t0 = cornerTangents(x00, y00, x01, y01, r1, rc1, cw); - t1 = cornerTangents(x11, y11, x10, y10, r1, rc1, cw); - - context.moveTo(t0.cx + t0.x01, t0.cy + t0.y01); - - // Have the corners merged? - if (rc1 < rc) context.arc(t0.cx, t0.cy, rc1, atan2(t0.y01, t0.x01), atan2(t1.y01, t1.x01), !cw); - - // Otherwise, draw the two corners and the ring. - else { - context.arc(t0.cx, t0.cy, rc1, atan2(t0.y01, t0.x01), atan2(t0.y11, t0.x11), !cw); - context.arc(0, 0, r1, atan2(t0.cy + t0.y11, t0.cx + t0.x11), atan2(t1.cy + t1.y11, t1.cx + t1.x11), !cw); - context.arc(t1.cx, t1.cy, rc1, atan2(t1.y11, t1.x11), atan2(t1.y01, t1.x01), !cw); - } - } - - // Or is the outer ring just a circular arc? - else context.moveTo(x01, y01), context.arc(0, 0, r1, a01, a11, !cw); - - // Is there no inner ring, and it’s a circular sector? - // Or perhaps it’s an annular sector collapsed due to padding? - if (!(r0 > epsilon$1) || !(da0 > epsilon$1)) context.lineTo(x10, y10); - - // Does the sector’s inner ring (or point) have rounded corners? - else if (rc0 > epsilon$1) { - t0 = cornerTangents(x10, y10, x11, y11, r0, -rc0, cw); - t1 = cornerTangents(x01, y01, x00, y00, r0, -rc0, cw); - - context.lineTo(t0.cx + t0.x01, t0.cy + t0.y01); - - // Have the corners merged? - if (rc0 < rc) context.arc(t0.cx, t0.cy, rc0, atan2(t0.y01, t0.x01), atan2(t1.y01, t1.x01), !cw); - - // Otherwise, draw the two corners and the ring. - else { - context.arc(t0.cx, t0.cy, rc0, atan2(t0.y01, t0.x01), atan2(t0.y11, t0.x11), !cw); - context.arc(0, 0, r0, atan2(t0.cy + t0.y11, t0.cx + t0.x11), atan2(t1.cy + t1.y11, t1.cx + t1.x11), cw); - context.arc(t1.cx, t1.cy, rc0, atan2(t1.y11, t1.x11), atan2(t1.y01, t1.x01), !cw); - } - } - - // Or is the inner ring just a circular arc? - else context.arc(0, 0, r0, a10, a00, cw); - } - - context.closePath(); - - if (buffer) return context = null, buffer + "" || null; - } - - arc.centroid = function() { - var r = (+innerRadius.apply(this, arguments) + +outerRadius.apply(this, arguments)) / 2, - a = (+startAngle.apply(this, arguments) + +endAngle.apply(this, arguments)) / 2 - pi$2 / 2; - return [cos(a) * r, sin(a) * r]; - }; - - arc.innerRadius = function(_) { - return arguments.length ? (innerRadius = typeof _ === "function" ? _ : constant$3(+_), arc) : innerRadius; - }; - - arc.outerRadius = function(_) { - return arguments.length ? (outerRadius = typeof _ === "function" ? _ : constant$3(+_), arc) : outerRadius; - }; - - arc.cornerRadius = function(_) { - return arguments.length ? (cornerRadius = typeof _ === "function" ? _ : constant$3(+_), arc) : cornerRadius; - }; - - arc.padRadius = function(_) { - return arguments.length ? (padRadius = _ == null ? null : typeof _ === "function" ? _ : constant$3(+_), arc) : padRadius; - }; - - arc.startAngle = function(_) { - return arguments.length ? (startAngle = typeof _ === "function" ? _ : constant$3(+_), arc) : startAngle; - }; - - arc.endAngle = function(_) { - return arguments.length ? (endAngle = typeof _ === "function" ? _ : constant$3(+_), arc) : endAngle; - }; - - arc.padAngle = function(_) { - return arguments.length ? (padAngle = typeof _ === "function" ? _ : constant$3(+_), arc) : padAngle; - }; - - arc.context = function(_) { - return arguments.length ? ((context = _ == null ? null : _), arc) : context; - }; - - return arc; -} - -function Linear(context) { - this._context = context; -} - -Linear.prototype = { - areaStart: function() { - this._line = 0; - }, - areaEnd: function() { - this._line = NaN; - }, - lineStart: function() { - this._point = 0; - }, - lineEnd: function() { - if (this._line || (this._line !== 0 && this._point === 1)) this._context.closePath(); - this._line = 1 - this._line; - }, - point: function(x, y) { - x = +x, y = +y; - switch (this._point) { - case 0: this._point = 1; this._line ? this._context.lineTo(x, y) : this._context.moveTo(x, y); break; - case 1: this._point = 2; // proceed - default: this._context.lineTo(x, y); break; - } - } -}; - -function curveLinear(context) { - return new Linear(context); -} - -function x$1(p) { - return p[0]; -} - -function y$1(p) { - return p[1]; -} - -function line() { - var x = x$1, - y = y$1, - defined = constant$3(true), - context = null, - curve = curveLinear, - output = null; - - function line(data) { - var i, - n = data.length, - d, - defined0 = false, - buffer; - - if (context == null) output = curve(buffer = path()); - - for (i = 0; i <= n; ++i) { - if (!(i < n && defined(d = data[i], i, data)) === defined0) { - if (defined0 = !defined0) output.lineStart(); - else output.lineEnd(); - } - if (defined0) output.point(+x(d, i, data), +y(d, i, data)); - } - - if (buffer) return output = null, buffer + "" || null; - } - - line.x = function(_) { - return arguments.length ? (x = typeof _ === "function" ? _ : constant$3(+_), line) : x; - }; - - line.y = function(_) { - return arguments.length ? (y = typeof _ === "function" ? _ : constant$3(+_), line) : y; - }; - - line.defined = function(_) { - return arguments.length ? (defined = typeof _ === "function" ? _ : constant$3(!!_), line) : defined; - }; - - line.curve = function(_) { - return arguments.length ? (curve = _, context != null && (output = curve(context)), line) : curve; - }; - - line.context = function(_) { - return arguments.length ? (_ == null ? context = output = null : output = curve(context = _), line) : context; - }; - - return line; -} - -function area() { - var x0 = x$1, - x1 = null, - y0 = constant$3(0), - y1 = y$1, - defined = constant$3(true), - context = null, - curve = curveLinear, - output = null; - - function area(data) { - var i, - j, - k, - n = data.length, - d, - defined0 = false, - buffer, - x0z = new Array(n), - y0z = new Array(n); - - if (context == null) output = curve(buffer = path()); - - for (i = 0; i <= n; ++i) { - if (!(i < n && defined(d = data[i], i, data)) === defined0) { - if (defined0 = !defined0) { - j = i; - output.areaStart(); - output.lineStart(); - } else { - output.lineEnd(); - output.lineStart(); - for (k = i - 1; k >= j; --k) { - output.point(x0z[k], y0z[k]); - } - output.lineEnd(); - output.areaEnd(); - } - } - if (defined0) { - x0z[i] = +x0(d, i, data), y0z[i] = +y0(d, i, data); - output.point(x1 ? +x1(d, i, data) : x0z[i], y1 ? +y1(d, i, data) : y0z[i]); - } - } - - if (buffer) return output = null, buffer + "" || null; - } - - function arealine() { - return line().defined(defined).curve(curve).context(context); - } - - area.x = function(_) { - return arguments.length ? (x0 = typeof _ === "function" ? _ : constant$3(+_), x1 = null, area) : x0; - }; - - area.x0 = function(_) { - return arguments.length ? (x0 = typeof _ === "function" ? _ : constant$3(+_), area) : x0; - }; - - area.x1 = function(_) { - return arguments.length ? (x1 = _ == null ? null : typeof _ === "function" ? _ : constant$3(+_), area) : x1; - }; - - area.y = function(_) { - return arguments.length ? (y0 = typeof _ === "function" ? _ : constant$3(+_), y1 = null, area) : y0; - }; - - area.y0 = function(_) { - return arguments.length ? (y0 = typeof _ === "function" ? _ : constant$3(+_), area) : y0; - }; - - area.y1 = function(_) { - return arguments.length ? (y1 = _ == null ? null : typeof _ === "function" ? _ : constant$3(+_), area) : y1; - }; - - area.lineX0 = - area.lineY0 = function() { - return arealine().x(x0).y(y0); - }; - - area.lineY1 = function() { - return arealine().x(x0).y(y1); - }; - - area.lineX1 = function() { - return arealine().x(x1).y(y0); - }; - - area.defined = function(_) { - return arguments.length ? (defined = typeof _ === "function" ? _ : constant$3(!!_), area) : defined; - }; - - area.curve = function(_) { - return arguments.length ? (curve = _, context != null && (output = curve(context)), area) : curve; - }; - - area.context = function(_) { - return arguments.length ? (_ == null ? context = output = null : output = curve(context = _), area) : context; - }; - - return area; -} - -function descending(a, b) { - return b < a ? -1 : b > a ? 1 : b >= a ? 0 : NaN; -} - -function identity$3(d) { - return d; -} - -function pie() { - var value = identity$3, - sortValues = descending, - sort = null, - startAngle = constant$3(0), - endAngle = constant$3(tau$2), - padAngle = constant$3(0); - - function pie(data) { - var i, - n = data.length, - j, - k, - sum = 0, - index = new Array(n), - arcs = new Array(n), - a0 = +startAngle.apply(this, arguments), - da = Math.min(tau$2, Math.max(-tau$2, endAngle.apply(this, arguments) - a0)), - a1, - p = Math.min(Math.abs(da) / n, padAngle.apply(this, arguments)), - pa = p * (da < 0 ? -1 : 1), - v; - - for (i = 0; i < n; ++i) { - if ((v = arcs[index[i] = i] = +value(data[i], i, data)) > 0) { - sum += v; - } - } - - // Optionally sort the arcs by previously-computed values or by data. - if (sortValues != null) index.sort(function(i, j) { return sortValues(arcs[i], arcs[j]); }); - else if (sort != null) index.sort(function(i, j) { return sort(data[i], data[j]); }); - - // Compute the arcs! They are stored in the original data's order. - for (i = 0, k = sum ? (da - n * pa) / sum : 0; i < n; ++i, a0 = a1) { - j = index[i], v = arcs[j], a1 = a0 + (v > 0 ? v * k : 0) + pa, arcs[j] = { - data: data[j], - index: i, - value: v, - startAngle: a0, - endAngle: a1, - padAngle: p - }; - } - - return arcs; - } - - pie.value = function(_) { - return arguments.length ? (value = typeof _ === "function" ? _ : constant$3(+_), pie) : value; - }; - - pie.sortValues = function(_) { - return arguments.length ? (sortValues = _, sort = null, pie) : sortValues; - }; - - pie.sort = function(_) { - return arguments.length ? (sort = _, sortValues = null, pie) : sort; - }; - - pie.startAngle = function(_) { - return arguments.length ? (startAngle = typeof _ === "function" ? _ : constant$3(+_), pie) : startAngle; - }; - - pie.endAngle = function(_) { - return arguments.length ? (endAngle = typeof _ === "function" ? _ : constant$3(+_), pie) : endAngle; - }; - - pie.padAngle = function(_) { - return arguments.length ? (padAngle = typeof _ === "function" ? _ : constant$3(+_), pie) : padAngle; - }; - - return pie; -} - -var curveRadialLinear = curveRadial(curveLinear); - -function Radial(curve) { - this._curve = curve; -} - -Radial.prototype = { - areaStart: function() { - this._curve.areaStart(); - }, - areaEnd: function() { - this._curve.areaEnd(); - }, - lineStart: function() { - this._curve.lineStart(); - }, - lineEnd: function() { - this._curve.lineEnd(); - }, - point: function(a, r) { - this._curve.point(r * Math.sin(a), r * -Math.cos(a)); - } -}; - -function curveRadial(curve) { - - function radial(context) { - return new Radial(curve(context)); - } - - radial._curve = curve; - - return radial; -} - -function lineRadial(l) { - var c = l.curve; - - l.angle = l.x, delete l.x; - l.radius = l.y, delete l.y; - - l.curve = function(_) { - return arguments.length ? c(curveRadial(_)) : c()._curve; - }; - - return l; -} - -function lineRadial$1() { - return lineRadial(line().curve(curveRadialLinear)); -} - -function areaRadial() { - var a = area().curve(curveRadialLinear), - c = a.curve, - x0 = a.lineX0, - x1 = a.lineX1, - y0 = a.lineY0, - y1 = a.lineY1; - - a.angle = a.x, delete a.x; - a.startAngle = a.x0, delete a.x0; - a.endAngle = a.x1, delete a.x1; - a.radius = a.y, delete a.y; - a.innerRadius = a.y0, delete a.y0; - a.outerRadius = a.y1, delete a.y1; - a.lineStartAngle = function() { return lineRadial(x0()); }, delete a.lineX0; - a.lineEndAngle = function() { return lineRadial(x1()); }, delete a.lineX1; - a.lineInnerRadius = function() { return lineRadial(y0()); }, delete a.lineY0; - a.lineOuterRadius = function() { return lineRadial(y1()); }, delete a.lineY1; - - a.curve = function(_) { - return arguments.length ? c(curveRadial(_)) : c()._curve; - }; - - return a; -} - -function pointRadial(x, y) { - return [(y = +y) * Math.cos(x -= Math.PI / 2), y * Math.sin(x)]; -} - -var slice$1 = Array.prototype.slice; - -function linkSource(d) { - return d.source; -} - -function linkTarget(d) { - return d.target; -} - -function link(curve) { - var source = linkSource, - target = linkTarget, - x = x$1, - y = y$1, - context = null; - - function link() { - var buffer, argv = slice$1.call(arguments), s = source.apply(this, argv), t = target.apply(this, argv); - if (!context) context = buffer = path(); - curve(context, +x.apply(this, (argv[0] = s, argv)), +y.apply(this, argv), +x.apply(this, (argv[0] = t, argv)), +y.apply(this, argv)); - if (buffer) return context = null, buffer + "" || null; - } - - link.source = function(_) { - return arguments.length ? (source = _, link) : source; - }; - - link.target = function(_) { - return arguments.length ? (target = _, link) : target; - }; - - link.x = function(_) { - return arguments.length ? (x = typeof _ === "function" ? _ : constant$3(+_), link) : x; - }; - - link.y = function(_) { - return arguments.length ? (y = typeof _ === "function" ? _ : constant$3(+_), link) : y; - }; - - link.context = function(_) { - return arguments.length ? ((context = _ == null ? null : _), link) : context; - }; - - return link; -} - -function curveHorizontal(context, x0, y0, x1, y1) { - context.moveTo(x0, y0); - context.bezierCurveTo(x0 = (x0 + x1) / 2, y0, x0, y1, x1, y1); -} - -function curveVertical(context, x0, y0, x1, y1) { - context.moveTo(x0, y0); - context.bezierCurveTo(x0, y0 = (y0 + y1) / 2, x1, y0, x1, y1); -} - -function curveRadial$1(context, x0, y0, x1, y1) { - var p0 = pointRadial(x0, y0), - p1 = pointRadial(x0, y0 = (y0 + y1) / 2), - p2 = pointRadial(x1, y0), - p3 = pointRadial(x1, y1); - context.moveTo(p0[0], p0[1]); - context.bezierCurveTo(p1[0], p1[1], p2[0], p2[1], p3[0], p3[1]); -} - -function linkHorizontal() { - return link(curveHorizontal); -} - -function linkVertical() { - return link(curveVertical); -} - -function linkRadial() { - var l = link(curveRadial$1); - l.angle = l.x, delete l.x; - l.radius = l.y, delete l.y; - return l; -} - -var circle = { - draw: function(context, size) { - var r = Math.sqrt(size / pi$2); - context.moveTo(r, 0); - context.arc(0, 0, r, 0, tau$2); - } -}; - -var cross = { - draw: function(context, size) { - var r = Math.sqrt(size / 5) / 2; - context.moveTo(-3 * r, -r); - context.lineTo(-r, -r); - context.lineTo(-r, -3 * r); - context.lineTo(r, -3 * r); - context.lineTo(r, -r); - context.lineTo(3 * r, -r); - context.lineTo(3 * r, r); - context.lineTo(r, r); - context.lineTo(r, 3 * r); - context.lineTo(-r, 3 * r); - context.lineTo(-r, r); - context.lineTo(-3 * r, r); - context.closePath(); - } -}; - -var tan30 = Math.sqrt(1 / 3), - tan30_2 = tan30 * 2; - -var diamond = { - draw: function(context, size) { - var y = Math.sqrt(size / tan30_2), - x = y * tan30; - context.moveTo(0, -y); - context.lineTo(x, 0); - context.lineTo(0, y); - context.lineTo(-x, 0); - context.closePath(); - } -}; - -var ka = 0.89081309152928522810, - kr = Math.sin(pi$2 / 10) / Math.sin(7 * pi$2 / 10), - kx = Math.sin(tau$2 / 10) * kr, - ky = -Math.cos(tau$2 / 10) * kr; - -var star = { - draw: function(context, size) { - var r = Math.sqrt(size * ka), - x = kx * r, - y = ky * r; - context.moveTo(0, -r); - context.lineTo(x, y); - for (var i = 1; i < 5; ++i) { - var a = tau$2 * i / 5, - c = Math.cos(a), - s = Math.sin(a); - context.lineTo(s * r, -c * r); - context.lineTo(c * x - s * y, s * x + c * y); - } - context.closePath(); - } -}; - -var square = { - draw: function(context, size) { - var w = Math.sqrt(size), - x = -w / 2; - context.rect(x, x, w, w); - } -}; - -var sqrt3 = Math.sqrt(3); - -var triangle = { - draw: function(context, size) { - var y = -Math.sqrt(size / (sqrt3 * 3)); - context.moveTo(0, y * 2); - context.lineTo(-sqrt3 * y, -y); - context.lineTo(sqrt3 * y, -y); - context.closePath(); - } -}; - -var c$1 = -0.5, - s = Math.sqrt(3) / 2, - k$1 = 1 / Math.sqrt(12), - a = (k$1 / 2 + 1) * 3; - -var wye = { - draw: function(context, size) { - var r = Math.sqrt(size / a), - x0 = r / 2, - y0 = r * k$1, - x1 = x0, - y1 = r * k$1 + r, - x2 = -x1, - y2 = y1; - context.moveTo(x0, y0); - context.lineTo(x1, y1); - context.lineTo(x2, y2); - context.lineTo(c$1 * x0 - s * y0, s * x0 + c$1 * y0); - context.lineTo(c$1 * x1 - s * y1, s * x1 + c$1 * y1); - context.lineTo(c$1 * x2 - s * y2, s * x2 + c$1 * y2); - context.lineTo(c$1 * x0 + s * y0, c$1 * y0 - s * x0); - context.lineTo(c$1 * x1 + s * y1, c$1 * y1 - s * x1); - context.lineTo(c$1 * x2 + s * y2, c$1 * y2 - s * x2); - context.closePath(); - } -}; - -var symbols = [ - circle, - cross, - diamond, - square, - star, - triangle, - wye -]; - -function symbol() { - var type = constant$3(circle), - size = constant$3(64), - context = null; - - function symbol() { - var buffer; - if (!context) context = buffer = path(); - type.apply(this, arguments).draw(context, +size.apply(this, arguments)); - if (buffer) return context = null, buffer + "" || null; - } - - symbol.type = function(_) { - return arguments.length ? (type = typeof _ === "function" ? _ : constant$3(_), symbol) : type; - }; - - symbol.size = function(_) { - return arguments.length ? (size = typeof _ === "function" ? _ : constant$3(+_), symbol) : size; - }; - - symbol.context = function(_) { - return arguments.length ? (context = _ == null ? null : _, symbol) : context; - }; - - return symbol; -} - -function noop$1() {} - -function point$1(that, x, y) { - that._context.bezierCurveTo( - (2 * that._x0 + that._x1) / 3, - (2 * that._y0 + that._y1) / 3, - (that._x0 + 2 * that._x1) / 3, - (that._y0 + 2 * that._y1) / 3, - (that._x0 + 4 * that._x1 + x) / 6, - (that._y0 + 4 * that._y1 + y) / 6 - ); -} - -function Basis(context) { - this._context = context; -} - -Basis.prototype = { - areaStart: function() { - this._line = 0; - }, - areaEnd: function() { - this._line = NaN; - }, - lineStart: function() { - this._x0 = this._x1 = - this._y0 = this._y1 = NaN; - this._point = 0; - }, - lineEnd: function() { - switch (this._point) { - case 3: point$1(this, this._x1, this._y1); // proceed - case 2: this._context.lineTo(this._x1, this._y1); break; - } - if (this._line || (this._line !== 0 && this._point === 1)) this._context.closePath(); - this._line = 1 - this._line; - }, - point: function(x, y) { - x = +x, y = +y; - switch (this._point) { - case 0: this._point = 1; this._line ? this._context.lineTo(x, y) : this._context.moveTo(x, y); break; - case 1: this._point = 2; break; - case 2: this._point = 3; this._context.lineTo((5 * this._x0 + this._x1) / 6, (5 * this._y0 + this._y1) / 6); // proceed - default: point$1(this, x, y); break; - } - this._x0 = this._x1, this._x1 = x; - this._y0 = this._y1, this._y1 = y; - } -}; - -function basis(context) { - return new Basis(context); -} - -function BasisClosed(context) { - this._context = context; -} - -BasisClosed.prototype = { - areaStart: noop$1, - areaEnd: noop$1, - lineStart: function() { - this._x0 = this._x1 = this._x2 = this._x3 = this._x4 = - this._y0 = this._y1 = this._y2 = this._y3 = this._y4 = NaN; - this._point = 0; - }, - lineEnd: function() { - switch (this._point) { - case 1: { - this._context.moveTo(this._x2, this._y2); - this._context.closePath(); - break; - } - case 2: { - this._context.moveTo((this._x2 + 2 * this._x3) / 3, (this._y2 + 2 * this._y3) / 3); - this._context.lineTo((this._x3 + 2 * this._x2) / 3, (this._y3 + 2 * this._y2) / 3); - this._context.closePath(); - break; - } - case 3: { - this.point(this._x2, this._y2); - this.point(this._x3, this._y3); - this.point(this._x4, this._y4); - break; - } - } - }, - point: function(x, y) { - x = +x, y = +y; - switch (this._point) { - case 0: this._point = 1; this._x2 = x, this._y2 = y; break; - case 1: this._point = 2; this._x3 = x, this._y3 = y; break; - case 2: this._point = 3; this._x4 = x, this._y4 = y; this._context.moveTo((this._x0 + 4 * this._x1 + x) / 6, (this._y0 + 4 * this._y1 + y) / 6); break; - default: point$1(this, x, y); break; - } - this._x0 = this._x1, this._x1 = x; - this._y0 = this._y1, this._y1 = y; - } -}; - -function basisClosed(context) { - return new BasisClosed(context); -} - -function BasisOpen(context) { - this._context = context; -} - -BasisOpen.prototype = { - areaStart: function() { - this._line = 0; - }, - areaEnd: function() { - this._line = NaN; - }, - lineStart: function() { - this._x0 = this._x1 = - this._y0 = this._y1 = NaN; - this._point = 0; - }, - lineEnd: function() { - if (this._line || (this._line !== 0 && this._point === 3)) this._context.closePath(); - this._line = 1 - this._line; - }, - point: function(x, y) { - x = +x, y = +y; - switch (this._point) { - case 0: this._point = 1; break; - case 1: this._point = 2; break; - case 2: this._point = 3; var x0 = (this._x0 + 4 * this._x1 + x) / 6, y0 = (this._y0 + 4 * this._y1 + y) / 6; this._line ? this._context.lineTo(x0, y0) : this._context.moveTo(x0, y0); break; - case 3: this._point = 4; // proceed - default: point$1(this, x, y); break; - } - this._x0 = this._x1, this._x1 = x; - this._y0 = this._y1, this._y1 = y; - } -}; - -function basisOpen(context) { - return new BasisOpen(context); -} - -function Bundle(context, beta) { - this._basis = new Basis(context); - this._beta = beta; -} - -Bundle.prototype = { - lineStart: function() { - this._x = []; - this._y = []; - this._basis.lineStart(); - }, - lineEnd: function() { - var x = this._x, - y = this._y, - j = x.length - 1; - - if (j > 0) { - var x0 = x[0], - y0 = y[0], - dx = x[j] - x0, - dy = y[j] - y0, - i = -1, - t; - - while (++i <= j) { - t = i / j; - this._basis.point( - this._beta * x[i] + (1 - this._beta) * (x0 + t * dx), - this._beta * y[i] + (1 - this._beta) * (y0 + t * dy) - ); - } - } - - this._x = this._y = null; - this._basis.lineEnd(); - }, - point: function(x, y) { - this._x.push(+x); - this._y.push(+y); - } -}; - -var bundle = (function custom(beta) { - - function bundle(context) { - return beta === 1 ? new Basis(context) : new Bundle(context, beta); - } - - bundle.beta = function(beta) { - return custom(+beta); - }; - - return bundle; -})(0.85); - -function point$2(that, x, y) { - that._context.bezierCurveTo( - that._x1 + that._k * (that._x2 - that._x0), - that._y1 + that._k * (that._y2 - that._y0), - that._x2 + that._k * (that._x1 - x), - that._y2 + that._k * (that._y1 - y), - that._x2, - that._y2 - ); -} - -function Cardinal(context, tension) { - this._context = context; - this._k = (1 - tension) / 6; -} - -Cardinal.prototype = { - areaStart: function() { - this._line = 0; - }, - areaEnd: function() { - this._line = NaN; - }, - lineStart: function() { - this._x0 = this._x1 = this._x2 = - this._y0 = this._y1 = this._y2 = NaN; - this._point = 0; - }, - lineEnd: function() { - switch (this._point) { - case 2: this._context.lineTo(this._x2, this._y2); break; - case 3: point$2(this, this._x1, this._y1); break; - } - if (this._line || (this._line !== 0 && this._point === 1)) this._context.closePath(); - this._line = 1 - this._line; - }, - point: function(x, y) { - x = +x, y = +y; - switch (this._point) { - case 0: this._point = 1; this._line ? this._context.lineTo(x, y) : this._context.moveTo(x, y); break; - case 1: this._point = 2; this._x1 = x, this._y1 = y; break; - case 2: this._point = 3; // proceed - default: point$2(this, x, y); break; - } - this._x0 = this._x1, this._x1 = this._x2, this._x2 = x; - this._y0 = this._y1, this._y1 = this._y2, this._y2 = y; - } -}; - -var cardinal = (function custom(tension) { - - function cardinal(context) { - return new Cardinal(context, tension); - } - - cardinal.tension = function(tension) { - return custom(+tension); - }; - - return cardinal; -})(0); - -function CardinalClosed(context, tension) { - this._context = context; - this._k = (1 - tension) / 6; -} - -CardinalClosed.prototype = { - areaStart: noop$1, - areaEnd: noop$1, - lineStart: function() { - this._x0 = this._x1 = this._x2 = this._x3 = this._x4 = this._x5 = - this._y0 = this._y1 = this._y2 = this._y3 = this._y4 = this._y5 = NaN; - this._point = 0; - }, - lineEnd: function() { - switch (this._point) { - case 1: { - this._context.moveTo(this._x3, this._y3); - this._context.closePath(); - break; - } - case 2: { - this._context.lineTo(this._x3, this._y3); - this._context.closePath(); - break; - } - case 3: { - this.point(this._x3, this._y3); - this.point(this._x4, this._y4); - this.point(this._x5, this._y5); - break; - } - } - }, - point: function(x, y) { - x = +x, y = +y; - switch (this._point) { - case 0: this._point = 1; this._x3 = x, this._y3 = y; break; - case 1: this._point = 2; this._context.moveTo(this._x4 = x, this._y4 = y); break; - case 2: this._point = 3; this._x5 = x, this._y5 = y; break; - default: point$2(this, x, y); break; - } - this._x0 = this._x1, this._x1 = this._x2, this._x2 = x; - this._y0 = this._y1, this._y1 = this._y2, this._y2 = y; - } -}; - -var cardinalClosed = (function custom(tension) { - - function cardinal(context) { - return new CardinalClosed(context, tension); - } - - cardinal.tension = function(tension) { - return custom(+tension); - }; - - return cardinal; -})(0); - -function CardinalOpen(context, tension) { - this._context = context; - this._k = (1 - tension) / 6; -} - -CardinalOpen.prototype = { - areaStart: function() { - this._line = 0; - }, - areaEnd: function() { - this._line = NaN; - }, - lineStart: function() { - this._x0 = this._x1 = this._x2 = - this._y0 = this._y1 = this._y2 = NaN; - this._point = 0; - }, - lineEnd: function() { - if (this._line || (this._line !== 0 && this._point === 3)) this._context.closePath(); - this._line = 1 - this._line; - }, - point: function(x, y) { - x = +x, y = +y; - switch (this._point) { - case 0: this._point = 1; break; - case 1: this._point = 2; break; - case 2: this._point = 3; this._line ? this._context.lineTo(this._x2, this._y2) : this._context.moveTo(this._x2, this._y2); break; - case 3: this._point = 4; // proceed - default: point$2(this, x, y); break; - } - this._x0 = this._x1, this._x1 = this._x2, this._x2 = x; - this._y0 = this._y1, this._y1 = this._y2, this._y2 = y; - } -}; - -var cardinalOpen = (function custom(tension) { - - function cardinal(context) { - return new CardinalOpen(context, tension); - } - - cardinal.tension = function(tension) { - return custom(+tension); - }; - - return cardinal; -})(0); - -function point$3(that, x, y) { - var x1 = that._x1, - y1 = that._y1, - x2 = that._x2, - y2 = that._y2; - - if (that._l01_a > epsilon$1) { - var a = 2 * that._l01_2a + 3 * that._l01_a * that._l12_a + that._l12_2a, - n = 3 * that._l01_a * (that._l01_a + that._l12_a); - x1 = (x1 * a - that._x0 * that._l12_2a + that._x2 * that._l01_2a) / n; - y1 = (y1 * a - that._y0 * that._l12_2a + that._y2 * that._l01_2a) / n; - } - - if (that._l23_a > epsilon$1) { - var b = 2 * that._l23_2a + 3 * that._l23_a * that._l12_a + that._l12_2a, - m = 3 * that._l23_a * (that._l23_a + that._l12_a); - x2 = (x2 * b + that._x1 * that._l23_2a - x * that._l12_2a) / m; - y2 = (y2 * b + that._y1 * that._l23_2a - y * that._l12_2a) / m; - } - - that._context.bezierCurveTo(x1, y1, x2, y2, that._x2, that._y2); -} - -function CatmullRom(context, alpha) { - this._context = context; - this._alpha = alpha; -} - -CatmullRom.prototype = { - areaStart: function() { - this._line = 0; - }, - areaEnd: function() { - this._line = NaN; - }, - lineStart: function() { - this._x0 = this._x1 = this._x2 = - this._y0 = this._y1 = this._y2 = NaN; - this._l01_a = this._l12_a = this._l23_a = - this._l01_2a = this._l12_2a = this._l23_2a = - this._point = 0; - }, - lineEnd: function() { - switch (this._point) { - case 2: this._context.lineTo(this._x2, this._y2); break; - case 3: this.point(this._x2, this._y2); break; - } - if (this._line || (this._line !== 0 && this._point === 1)) this._context.closePath(); - this._line = 1 - this._line; - }, - point: function(x, y) { - x = +x, y = +y; - - if (this._point) { - var x23 = this._x2 - x, - y23 = this._y2 - y; - this._l23_a = Math.sqrt(this._l23_2a = Math.pow(x23 * x23 + y23 * y23, this._alpha)); - } - - switch (this._point) { - case 0: this._point = 1; this._line ? this._context.lineTo(x, y) : this._context.moveTo(x, y); break; - case 1: this._point = 2; break; - case 2: this._point = 3; // proceed - default: point$3(this, x, y); break; - } - - this._l01_a = this._l12_a, this._l12_a = this._l23_a; - this._l01_2a = this._l12_2a, this._l12_2a = this._l23_2a; - this._x0 = this._x1, this._x1 = this._x2, this._x2 = x; - this._y0 = this._y1, this._y1 = this._y2, this._y2 = y; - } -}; - -var catmullRom = (function custom(alpha) { - - function catmullRom(context) { - return alpha ? new CatmullRom(context, alpha) : new Cardinal(context, 0); - } - - catmullRom.alpha = function(alpha) { - return custom(+alpha); - }; - - return catmullRom; -})(0.5); - -function CatmullRomClosed(context, alpha) { - this._context = context; - this._alpha = alpha; -} - -CatmullRomClosed.prototype = { - areaStart: noop$1, - areaEnd: noop$1, - lineStart: function() { - this._x0 = this._x1 = this._x2 = this._x3 = this._x4 = this._x5 = - this._y0 = this._y1 = this._y2 = this._y3 = this._y4 = this._y5 = NaN; - this._l01_a = this._l12_a = this._l23_a = - this._l01_2a = this._l12_2a = this._l23_2a = - this._point = 0; - }, - lineEnd: function() { - switch (this._point) { - case 1: { - this._context.moveTo(this._x3, this._y3); - this._context.closePath(); - break; - } - case 2: { - this._context.lineTo(this._x3, this._y3); - this._context.closePath(); - break; - } - case 3: { - this.point(this._x3, this._y3); - this.point(this._x4, this._y4); - this.point(this._x5, this._y5); - break; - } - } - }, - point: function(x, y) { - x = +x, y = +y; - - if (this._point) { - var x23 = this._x2 - x, - y23 = this._y2 - y; - this._l23_a = Math.sqrt(this._l23_2a = Math.pow(x23 * x23 + y23 * y23, this._alpha)); - } - - switch (this._point) { - case 0: this._point = 1; this._x3 = x, this._y3 = y; break; - case 1: this._point = 2; this._context.moveTo(this._x4 = x, this._y4 = y); break; - case 2: this._point = 3; this._x5 = x, this._y5 = y; break; - default: point$3(this, x, y); break; - } - - this._l01_a = this._l12_a, this._l12_a = this._l23_a; - this._l01_2a = this._l12_2a, this._l12_2a = this._l23_2a; - this._x0 = this._x1, this._x1 = this._x2, this._x2 = x; - this._y0 = this._y1, this._y1 = this._y2, this._y2 = y; - } -}; - -var catmullRomClosed = (function custom(alpha) { - - function catmullRom(context) { - return alpha ? new CatmullRomClosed(context, alpha) : new CardinalClosed(context, 0); - } - - catmullRom.alpha = function(alpha) { - return custom(+alpha); - }; - - return catmullRom; -})(0.5); - -function CatmullRomOpen(context, alpha) { - this._context = context; - this._alpha = alpha; -} - -CatmullRomOpen.prototype = { - areaStart: function() { - this._line = 0; - }, - areaEnd: function() { - this._line = NaN; - }, - lineStart: function() { - this._x0 = this._x1 = this._x2 = - this._y0 = this._y1 = this._y2 = NaN; - this._l01_a = this._l12_a = this._l23_a = - this._l01_2a = this._l12_2a = this._l23_2a = - this._point = 0; - }, - lineEnd: function() { - if (this._line || (this._line !== 0 && this._point === 3)) this._context.closePath(); - this._line = 1 - this._line; - }, - point: function(x, y) { - x = +x, y = +y; - - if (this._point) { - var x23 = this._x2 - x, - y23 = this._y2 - y; - this._l23_a = Math.sqrt(this._l23_2a = Math.pow(x23 * x23 + y23 * y23, this._alpha)); - } - - switch (this._point) { - case 0: this._point = 1; break; - case 1: this._point = 2; break; - case 2: this._point = 3; this._line ? this._context.lineTo(this._x2, this._y2) : this._context.moveTo(this._x2, this._y2); break; - case 3: this._point = 4; // proceed - default: point$3(this, x, y); break; - } - - this._l01_a = this._l12_a, this._l12_a = this._l23_a; - this._l01_2a = this._l12_2a, this._l12_2a = this._l23_2a; - this._x0 = this._x1, this._x1 = this._x2, this._x2 = x; - this._y0 = this._y1, this._y1 = this._y2, this._y2 = y; - } -}; - -var catmullRomOpen = (function custom(alpha) { - - function catmullRom(context) { - return alpha ? new CatmullRomOpen(context, alpha) : new CardinalOpen(context, 0); - } - - catmullRom.alpha = function(alpha) { - return custom(+alpha); - }; - - return catmullRom; -})(0.5); - -function LinearClosed(context) { - this._context = context; -} - -LinearClosed.prototype = { - areaStart: noop$1, - areaEnd: noop$1, - lineStart: function() { - this._point = 0; - }, - lineEnd: function() { - if (this._point) this._context.closePath(); - }, - point: function(x, y) { - x = +x, y = +y; - if (this._point) this._context.lineTo(x, y); - else this._point = 1, this._context.moveTo(x, y); - } -}; - -function linearClosed(context) { - return new LinearClosed(context); -} - -function sign(x) { - return x < 0 ? -1 : 1; -} - -// Calculate the slopes of the tangents (Hermite-type interpolation) based on -// the following paper: Steffen, M. 1990. A Simple Method for Monotonic -// Interpolation in One Dimension. Astronomy and Astrophysics, Vol. 239, NO. -// NOV(II), P. 443, 1990. -function slope3(that, x2, y2) { - var h0 = that._x1 - that._x0, - h1 = x2 - that._x1, - s0 = (that._y1 - that._y0) / (h0 || h1 < 0 && -0), - s1 = (y2 - that._y1) / (h1 || h0 < 0 && -0), - p = (s0 * h1 + s1 * h0) / (h0 + h1); - return (sign(s0) + sign(s1)) * Math.min(Math.abs(s0), Math.abs(s1), 0.5 * Math.abs(p)) || 0; -} - -// Calculate a one-sided slope. -function slope2(that, t) { - var h = that._x1 - that._x0; - return h ? (3 * (that._y1 - that._y0) / h - t) / 2 : t; -} - -// According to https://en.wikipedia.org/wiki/Cubic_Hermite_spline#Representations -// "you can express cubic Hermite interpolation in terms of cubic Bézier curves -// with respect to the four values p0, p0 + m0 / 3, p1 - m1 / 3, p1". -function point$4(that, t0, t1) { - var x0 = that._x0, - y0 = that._y0, - x1 = that._x1, - y1 = that._y1, - dx = (x1 - x0) / 3; - that._context.bezierCurveTo(x0 + dx, y0 + dx * t0, x1 - dx, y1 - dx * t1, x1, y1); -} - -function MonotoneX(context) { - this._context = context; -} - -MonotoneX.prototype = { - areaStart: function() { - this._line = 0; - }, - areaEnd: function() { - this._line = NaN; - }, - lineStart: function() { - this._x0 = this._x1 = - this._y0 = this._y1 = - this._t0 = NaN; - this._point = 0; - }, - lineEnd: function() { - switch (this._point) { - case 2: this._context.lineTo(this._x1, this._y1); break; - case 3: point$4(this, this._t0, slope2(this, this._t0)); break; - } - if (this._line || (this._line !== 0 && this._point === 1)) this._context.closePath(); - this._line = 1 - this._line; - }, - point: function(x, y) { - var t1 = NaN; - - x = +x, y = +y; - if (x === this._x1 && y === this._y1) return; // Ignore coincident points. - switch (this._point) { - case 0: this._point = 1; this._line ? this._context.lineTo(x, y) : this._context.moveTo(x, y); break; - case 1: this._point = 2; break; - case 2: this._point = 3; point$4(this, slope2(this, t1 = slope3(this, x, y)), t1); break; - default: point$4(this, this._t0, t1 = slope3(this, x, y)); break; - } - - this._x0 = this._x1, this._x1 = x; - this._y0 = this._y1, this._y1 = y; - this._t0 = t1; - } -}; - -function MonotoneY(context) { - this._context = new ReflectContext(context); -} - -(MonotoneY.prototype = Object.create(MonotoneX.prototype)).point = function(x, y) { - MonotoneX.prototype.point.call(this, y, x); -}; - -function ReflectContext(context) { - this._context = context; -} - -ReflectContext.prototype = { - moveTo: function(x, y) { this._context.moveTo(y, x); }, - closePath: function() { this._context.closePath(); }, - lineTo: function(x, y) { this._context.lineTo(y, x); }, - bezierCurveTo: function(x1, y1, x2, y2, x, y) { this._context.bezierCurveTo(y1, x1, y2, x2, y, x); } -}; - -function monotoneX(context) { - return new MonotoneX(context); -} - -function monotoneY(context) { - return new MonotoneY(context); -} - -function Natural(context) { - this._context = context; -} - -Natural.prototype = { - areaStart: function() { - this._line = 0; - }, - areaEnd: function() { - this._line = NaN; - }, - lineStart: function() { - this._x = []; - this._y = []; - }, - lineEnd: function() { - var x = this._x, - y = this._y, - n = x.length; - - if (n) { - this._line ? this._context.lineTo(x[0], y[0]) : this._context.moveTo(x[0], y[0]); - if (n === 2) { - this._context.lineTo(x[1], y[1]); - } else { - var px = controlPoints(x), - py = controlPoints(y); - for (var i0 = 0, i1 = 1; i1 < n; ++i0, ++i1) { - this._context.bezierCurveTo(px[0][i0], py[0][i0], px[1][i0], py[1][i0], x[i1], y[i1]); - } - } - } - - if (this._line || (this._line !== 0 && n === 1)) this._context.closePath(); - this._line = 1 - this._line; - this._x = this._y = null; - }, - point: function(x, y) { - this._x.push(+x); - this._y.push(+y); - } -}; - -// See https://www.particleincell.com/2012/bezier-splines/ for derivation. -function controlPoints(x) { - var i, - n = x.length - 1, - m, - a = new Array(n), - b = new Array(n), - r = new Array(n); - a[0] = 0, b[0] = 2, r[0] = x[0] + 2 * x[1]; - for (i = 1; i < n - 1; ++i) a[i] = 1, b[i] = 4, r[i] = 4 * x[i] + 2 * x[i + 1]; - a[n - 1] = 2, b[n - 1] = 7, r[n - 1] = 8 * x[n - 1] + x[n]; - for (i = 1; i < n; ++i) m = a[i] / b[i - 1], b[i] -= m, r[i] -= m * r[i - 1]; - a[n - 1] = r[n - 1] / b[n - 1]; - for (i = n - 2; i >= 0; --i) a[i] = (r[i] - a[i + 1]) / b[i]; - b[n - 1] = (x[n] + a[n - 1]) / 2; - for (i = 0; i < n - 1; ++i) b[i] = 2 * x[i + 1] - a[i + 1]; - return [a, b]; -} - -function natural(context) { - return new Natural(context); -} - -function Step(context, t) { - this._context = context; - this._t = t; -} - -Step.prototype = { - areaStart: function() { - this._line = 0; - }, - areaEnd: function() { - this._line = NaN; - }, - lineStart: function() { - this._x = this._y = NaN; - this._point = 0; - }, - lineEnd: function() { - if (0 < this._t && this._t < 1 && this._point === 2) this._context.lineTo(this._x, this._y); - if (this._line || (this._line !== 0 && this._point === 1)) this._context.closePath(); - if (this._line >= 0) this._t = 1 - this._t, this._line = 1 - this._line; - }, - point: function(x, y) { - x = +x, y = +y; - switch (this._point) { - case 0: this._point = 1; this._line ? this._context.lineTo(x, y) : this._context.moveTo(x, y); break; - case 1: this._point = 2; // proceed - default: { - if (this._t <= 0) { - this._context.lineTo(this._x, y); - this._context.lineTo(x, y); - } else { - var x1 = this._x * (1 - this._t) + x * this._t; - this._context.lineTo(x1, this._y); - this._context.lineTo(x1, y); - } - break; - } - } - this._x = x, this._y = y; - } -}; - -function step(context) { - return new Step(context, 0.5); -} - -function stepBefore(context) { - return new Step(context, 0); -} - -function stepAfter(context) { - return new Step(context, 1); -} - -function none(series, order) { - if (!((n = series.length) > 1)) return; - for (var i = 1, j, s0, s1 = series[order[0]], n, m = s1.length; i < n; ++i) { - s0 = s1, s1 = series[order[i]]; - for (j = 0; j < m; ++j) { - s1[j][1] += s1[j][0] = isNaN(s0[j][1]) ? s0[j][0] : s0[j][1]; - } - } -} - -function none$1(series) { - var n = series.length, o = new Array(n); - while (--n >= 0) o[n] = n; - return o; -} - -function stackValue(d, key) { - return d[key]; -} - -function stack() { - var keys = constant$3([]), - order = none$1, - offset = none, - value = stackValue; - - function stack(data) { - var kz = keys.apply(this, arguments), - i, - m = data.length, - n = kz.length, - sz = new Array(n), - oz; - - for (i = 0; i < n; ++i) { - for (var ki = kz[i], si = sz[i] = new Array(m), j = 0, sij; j < m; ++j) { - si[j] = sij = [0, +value(data[j], ki, j, data)]; - sij.data = data[j]; - } - si.key = ki; - } - - for (i = 0, oz = order(sz); i < n; ++i) { - sz[oz[i]].index = i; - } - - offset(sz, oz); - return sz; - } - - stack.keys = function(_) { - return arguments.length ? (keys = typeof _ === "function" ? _ : constant$3(slice$1.call(_)), stack) : keys; - }; - - stack.value = function(_) { - return arguments.length ? (value = typeof _ === "function" ? _ : constant$3(+_), stack) : value; - }; - - stack.order = function(_) { - return arguments.length ? (order = _ == null ? none$1 : typeof _ === "function" ? _ : constant$3(slice$1.call(_)), stack) : order; - }; - - stack.offset = function(_) { - return arguments.length ? (offset = _ == null ? none : _, stack) : offset; - }; - - return stack; -} - -function expand(series, order) { - if (!((n = series.length) > 0)) return; - for (var i, n, j = 0, m = series[0].length, y; j < m; ++j) { - for (y = i = 0; i < n; ++i) y += series[i][j][1] || 0; - if (y) for (i = 0; i < n; ++i) series[i][j][1] /= y; - } - none(series, order); -} - -function diverging(series, order) { - if (!((n = series.length) > 0)) return; - for (var i, j = 0, d, dy, yp, yn, n, m = series[order[0]].length; j < m; ++j) { - for (yp = yn = 0, i = 0; i < n; ++i) { - if ((dy = (d = series[order[i]][j])[1] - d[0]) > 0) { - d[0] = yp, d[1] = yp += dy; - } else if (dy < 0) { - d[1] = yn, d[0] = yn += dy; - } else { - d[0] = 0, d[1] = dy; - } - } - } -} - -function silhouette(series, order) { - if (!((n = series.length) > 0)) return; - for (var j = 0, s0 = series[order[0]], n, m = s0.length; j < m; ++j) { - for (var i = 0, y = 0; i < n; ++i) y += series[i][j][1] || 0; - s0[j][1] += s0[j][0] = -y / 2; - } - none(series, order); -} - -function wiggle(series, order) { - if (!((n = series.length) > 0) || !((m = (s0 = series[order[0]]).length) > 0)) return; - for (var y = 0, j = 1, s0, m, n; j < m; ++j) { - for (var i = 0, s1 = 0, s2 = 0; i < n; ++i) { - var si = series[order[i]], - sij0 = si[j][1] || 0, - sij1 = si[j - 1][1] || 0, - s3 = (sij0 - sij1) / 2; - for (var k = 0; k < i; ++k) { - var sk = series[order[k]], - skj0 = sk[j][1] || 0, - skj1 = sk[j - 1][1] || 0; - s3 += skj0 - skj1; - } - s1 += sij0, s2 += s3 * sij0; - } - s0[j - 1][1] += s0[j - 1][0] = y; - if (s1) y -= s2 / s1; - } - s0[j - 1][1] += s0[j - 1][0] = y; - none(series, order); -} - -function appearance(series) { - var peaks = series.map(peak); - return none$1(series).sort(function(a, b) { return peaks[a] - peaks[b]; }); -} - -function peak(series) { - var i = -1, j = 0, n = series.length, vi, vj = -Infinity; - while (++i < n) if ((vi = +series[i][1]) > vj) vj = vi, j = i; - return j; -} - -function ascending$1(series) { - var sums = series.map(sum); - return none$1(series).sort(function(a, b) { return sums[a] - sums[b]; }); -} - -function sum(series) { - var s = 0, i = -1, n = series.length, v; - while (++i < n) if (v = +series[i][1]) s += v; - return s; -} - -function descending$1(series) { - return ascending$1(series).reverse(); -} - -function insideOut(series) { - var n = series.length, - i, - j, - sums = series.map(sum), - order = appearance(series), - top = 0, - bottom = 0, - tops = [], - bottoms = []; - - for (i = 0; i < n; ++i) { - j = order[i]; - if (top < bottom) { - top += sums[j]; - tops.push(j); - } else { - bottom += sums[j]; - bottoms.push(j); - } - } - - return bottoms.reverse().concat(tops); -} - -function reverse(series) { - return none$1(series).reverse(); -} - - - -var d3Shape = /*#__PURE__*/Object.freeze({ - __proto__: null, - arc: arc, - area: area, - line: line, - pie: pie, - areaRadial: areaRadial, - radialArea: areaRadial, - lineRadial: lineRadial$1, - radialLine: lineRadial$1, - pointRadial: pointRadial, - linkHorizontal: linkHorizontal, - linkVertical: linkVertical, - linkRadial: linkRadial, - symbol: symbol, - symbols: symbols, - symbolCircle: circle, - symbolCross: cross, - symbolDiamond: diamond, - symbolSquare: square, - symbolStar: star, - symbolTriangle: triangle, - symbolWye: wye, - curveBasisClosed: basisClosed, - curveBasisOpen: basisOpen, - curveBasis: basis, - curveBundle: bundle, - curveCardinalClosed: cardinalClosed, - curveCardinalOpen: cardinalOpen, - curveCardinal: cardinal, - curveCatmullRomClosed: catmullRomClosed, - curveCatmullRomOpen: catmullRomOpen, - curveCatmullRom: catmullRom, - curveLinearClosed: linearClosed, - curveLinear: curveLinear, - curveMonotoneX: monotoneX, - curveMonotoneY: monotoneY, - curveNatural: natural, - curveStep: step, - curveStepAfter: stepAfter, - curveStepBefore: stepBefore, - stack: stack, - stackOffsetExpand: expand, - stackOffsetDiverging: diverging, - stackOffsetNone: none, - stackOffsetSilhouette: silhouette, - stackOffsetWiggle: wiggle, - stackOrderAppearance: appearance, - stackOrderAscending: ascending$1, - stackOrderDescending: descending$1, - stackOrderInsideOut: insideOut, - stackOrderNone: none$1, - stackOrderReverse: reverse -}); - -var getDataWithBaseline = function (props, scale) { - var data = Data.getData(props); - - if (data.length < 2) { - data = []; - } - - var getDefaultMin = function (axis) { - var defaultZero = Scale.getType(scale[axis]) === "log" ? 1 / Number.MAX_SAFE_INTEGER : 0; - var domain = scale[axis].domain(); - var minY = Collection.getMinValue(domain); - var maxY = Collection.getMaxValue(domain); - var defaultMin = defaultZero; - - if (minY < 0 && maxY <= 0) { - defaultMin = maxY; - } else if (minY >= 0 && maxY > 0) { - defaultMin = minY; - } - - return Collection.containsDates(domain) ? new Date(defaultMin) : defaultMin; - }; - - return data.map(function (datum) { - var _y1 = datum._y1 !== undefined ? datum._y1 : datum._y; - - var _y0 = datum._y0 !== undefined ? datum._y0 : getDefaultMin("y"); - - var _x1 = datum._x1 !== undefined ? datum._x1 : datum._x; - - var _x0 = datum._x0 !== undefined ? datum._x0 : getDefaultMin("x"); - - return assign_1({}, datum, { - _y0: _y0, - _y1: _y1, - _x0: _x0, - _x1: _x1 - }); - }); -}; - -var getCalculatedValues$2 = function (props) { - var polar = props.polar; - var defaultStyles = Helpers.getDefaultStyles(props, "area"); - var style = Helpers.getStyles(props.style, defaultStyles); - var range = { - x: Helpers.getRange(props, "x"), - y: Helpers.getRange(props, "y") - }; - var domain = { - x: Domain.getDomainWithZero(props, "x"), - y: Domain.getDomainWithZero(props, "y") - }; - var scale = { - x: Scale.getBaseScale(props, "x").domain(domain.x).range(props.horizontal ? range.y : range.x), - y: Scale.getBaseScale(props, "y").domain(domain.y).range(props.horizontal ? range.x : range.y) - }; - var origin = polar ? props.origin || Helpers.getPolarOrigin(props) : undefined; - var data = getDataWithBaseline(props, scale); - return { - style: style, - data: data, - scale: scale, - domain: domain, - origin: origin - }; -}; - -var getBaseProps$2 = function (props, fallbackProps) { - var modifiedProps = Helpers.modifyProps(props, fallbackProps, "area"); - props = assign_1({}, modifiedProps, getCalculatedValues$2(modifiedProps)); - var _props = props, - data = _props.data, - domain = _props.domain, - events = _props.events, - groupComponent = _props.groupComponent, - height = _props.height, - horizontal = _props.horizontal, - interpolation = _props.interpolation, - origin = _props.origin, - padding = _props.padding, - polar = _props.polar, - scale = _props.scale, - sharedEvents = _props.sharedEvents, - standalone = _props.standalone, - style = _props.style, - theme = _props.theme, - width = _props.width, - labels = _props.labels, - name = _props.name; - var initialChildProps = { - parent: { - style: style.parent, - width: width, - height: height, - scale: scale, - data: data, - domain: domain, - standalone: standalone, - theme: theme, - polar: polar, - origin: origin, - padding: padding, - name: name, - horizontal: horizontal - }, - all: { - data: { - horizontal: horizontal, - polar: polar, - origin: origin, - scale: scale, - data: data, - interpolation: interpolation, - groupComponent: groupComponent, - style: style.data - } - } - }; - return data.reduce(function (childProps, datum, index) { - var text = LabelHelpers.getText(props, datum, index); - - if (text !== undefined && text !== null || labels && (events || sharedEvents)) { - var eventKey = !isNil_1(datum.eventKey) ? datum.eventKey : index; - childProps[eventKey] = { - labels: LabelHelpers.getProps(props, index) - }; - } - - return childProps; - }, initialChildProps); -}; - -function _objectSpread$d(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$h(target, key, source[key]); }); } return target; } - -function _defineProperty$h(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -var defined = function (d) { - var y = d._y1 !== undefined ? d._y1 : d._y; - return y !== null && y !== undefined && d._y0 !== null; -}; - -var getXAccessor = function (scale) { - return function (d) { - return scale.x(d._x1 !== undefined ? d._x1 : d._x); - }; -}; - -var getYAccessor = function (scale) { - return function (d) { - return scale.y(d._y1 !== undefined ? d._y1 : d._y); - }; -}; - -var getY0Accessor = function (scale) { - return function (d) { - return scale.y(d._y0); - }; -}; - -var getAngleAccessor = function (scale) { - return function (d) { - var x = scale.x(d._x1 !== undefined ? d._x1 : d._x); - return -1 * x + Math.PI / 2; - }; -}; - -var toNewName$1 = function (interpolation) { - // d3 shape changed the naming scheme for interpolators from "basis" -> "curveBasis" etc. - var capitalize = function (s) { - return s && s[0].toUpperCase() + s.slice(1); - }; - - return "curve".concat(capitalize(interpolation)); -}; - -var getLineFunction = function (props) { - var polar = props.polar, - scale = props.scale, - horizontal = props.horizontal; - var interpolationFunction = typeof props.interpolation === "function" && props.interpolation; - var interpolationName = typeof props.interpolation === "string" && toNewName$1(props.interpolation); - return polar ? lineRadial$1().defined(defined).curve(interpolationFunction || d3Shape["".concat(interpolationName, "Closed")]).angle(getAngleAccessor(scale)).radius(getYAccessor(scale)) : line().defined(defined).curve(interpolationFunction || d3Shape[interpolationName]).x(horizontal ? getYAccessor(scale) : getXAccessor(scale)).y(horizontal ? getXAccessor(scale) : getYAccessor(scale)); -}; - -var getCartesianArea = function (props, interpolation) { - var horizontal = props.horizontal, - scale = props.scale; - var interpolationFunction = typeof interpolation === "function" && interpolation; - var interpolationName = typeof interpolation === "string" && interpolation; - return horizontal ? area().defined(defined).curve(interpolationFunction || d3Shape[interpolationName]).x0(getY0Accessor(scale)).x1(getYAccessor(scale)).y(getXAccessor(scale)) : area().defined(defined).curve(interpolationFunction || d3Shape[interpolationName]).x(getXAccessor(scale)).y1(getYAccessor(scale)).y0(getY0Accessor(scale)); -}; - -var getAreaFunction = function (props) { - var polar = props.polar, - scale = props.scale; - var interpolationFunction = typeof props.interpolation === "function" && props.interpolation; - var interpolationName = typeof props.interpolation === "string" && toNewName$1(props.interpolation); - var interpolation = interpolationFunction || interpolationName; - return polar ? areaRadial().defined(defined).curve(interpolationFunction || d3Shape["".concat(interpolationName, "Closed")]).angle(getAngleAccessor(scale)).outerRadius(getYAccessor(scale)).innerRadius(getY0Accessor(scale)) : getCartesianArea(props, interpolation); -}; - -var evaluateProps$6 = function (props) { - /** - * Potential evaluated props are: - * `ariaLabel` - * `desc` - * `id` - * `style` - * `tabIndex` - */ - var ariaLabel = Helpers.evaluateProp(props.ariaLabel, props); - var desc = Helpers.evaluateProp(props.desc, props); - var id = Helpers.evaluateProp(props.id, props); - var style = Helpers.evaluateStyle(assign_1({ - fill: "black" - }, props.style), props); - var tabIndex = Helpers.evaluateProp(props.tabIndex, props); - return assign_1({}, props, { - ariaLabel: ariaLabel, - desc: desc, - id: id, - style: style, - tabIndex: tabIndex - }); -}; - -var Area = function (props) { - props = evaluateProps$6(props); - var _props = props, - ariaLabel = _props.ariaLabel, - role = _props.role, - shapeRendering = _props.shapeRendering, - className = _props.className, - polar = _props.polar, - origin = _props.origin, - data = _props.data, - pathComponent = _props.pathComponent, - events = _props.events, - groupComponent = _props.groupComponent, - clipPath = _props.clipPath, - id = _props.id, - style = _props.style, - desc = _props.desc, - tabIndex = _props.tabIndex; - var defaultTransform = polar && origin ? "translate(".concat(origin.x, ", ").concat(origin.y, ")") : undefined; - var transform = props.transform || defaultTransform; - var renderLine = style.stroke && style.stroke !== "none" && style.stroke !== "transparent"; - var areaFunction = getAreaFunction(props); - var lineFunction = renderLine && getLineFunction(props); - var areaStroke = style.stroke ? "none" : style.fill; - - var sharedProps = _objectSpread$d({ - "aria-label": ariaLabel, - className: className, - role: role, - shapeRendering: shapeRendering, - transform: transform - }, events, { - clipPath: clipPath, - tabIndex: tabIndex - }); - - var area = React__default.cloneElement(pathComponent, assign_1({ - key: "".concat(id, "-area"), - style: assign_1({}, style, { - stroke: areaStroke - }), - d: areaFunction(data), - desc: desc, - tabIndex: tabIndex - }, sharedProps)); - var line = renderLine ? React__default.cloneElement(pathComponent, assign_1({ - key: "".concat(id, "-area-stroke"), - style: assign_1({}, style, { - fill: "none" - }), - d: lineFunction(data) - }, sharedProps)) : null; - return renderLine ? React__default.cloneElement(groupComponent, {}, [area, line]) : area; -}; - -Area.propTypes = _objectSpread$d({}, CommonProps.primitiveProps, { - groupComponent: propTypes.element, - interpolation: propTypes.oneOfType([propTypes.string, propTypes.func]), - pathComponent: propTypes.element -}); -Area.defaultProps = { - groupComponent: React__default.createElement("g", null), - pathComponent: React__default.createElement(Path, null), - role: "presentation", - shapeRendering: "auto" -}; - -function _objectSpread$e(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$i(target, key, source[key]); }); } return target; } - -function _defineProperty$i(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _classCallCheck$d(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$d(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$d(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$d(Constructor.prototype, protoProps); if (staticProps) _defineProperties$d(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$c(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$c(self); } - -function _assertThisInitialized$c(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _inherits$c(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } -var fallbackProps$6 = { - width: 450, - height: 300, - padding: 50, - interpolation: "linear" -}; -var options$2 = { - components: [{ - name: "parent", - index: "parent" - }, { - name: "data", - index: "all" - }, { - name: "labels" - }] -}; - -var VictoryArea = -/*#__PURE__*/ -function (_React$Component) { - _inherits$c(VictoryArea, _React$Component); - - function VictoryArea() { - _classCallCheck$d(this, VictoryArea); - - return _possibleConstructorReturn$c(this, (VictoryArea.__proto__ || Object.getPrototypeOf(VictoryArea)).apply(this, arguments)); - } - - _createClass$d(VictoryArea, [{ - key: "shouldAnimate", - // Overridden in native versions - value: function shouldAnimate() { - return !!this.props.animate; - } - }, { - key: "render", - value: function render() { - var animationWhitelist = VictoryArea.animationWhitelist, - role = VictoryArea.role; - var props = Helpers.modifyProps(this.props, fallbackProps$6, role); - - if (this.shouldAnimate()) { - return this.animateComponent(props, animationWhitelist); - } - - var children = this.renderContinuousData(props); - return props.standalone ? this.renderContainer(props.containerComponent, children) : children; - } - }]); - - return VictoryArea; -}(React__default.Component); - -Object.defineProperty(VictoryArea, "animationWhitelist", { - configurable: true, - enumerable: true, - writable: true, - value: ["data", "domain", "height", "padding", "style", "width"] -}); -Object.defineProperty(VictoryArea, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$e({}, CommonProps.baseProps, CommonProps.dataProps, { - interpolation: propTypes.oneOfType([propTypes.oneOf(["basis", "cardinal", "catmullRom", "linear", "monotoneX", "monotoneY", "natural", "step", "stepAfter", "stepBefore"]), propTypes.func]), - label: CustomPropTypes.deprecated(propTypes.string, "Use `labels` instead for individual data labels") - }) -}); -Object.defineProperty(VictoryArea, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: { - containerComponent: React__default.createElement(VictoryContainer, null), - dataComponent: React__default.createElement(Area, null), - groupComponent: React__default.createElement(VictoryClipContainer, null), - labelComponent: React__default.createElement(VictoryLabel, { - renderInPortal: true - }), - samples: 50, - sortKey: "x", - sortOrder: "ascending", - standalone: true, - theme: VictoryTheme.grayscale - } -}); -Object.defineProperty(VictoryArea, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryArea" -}); -Object.defineProperty(VictoryArea, "role", { - configurable: true, - enumerable: true, - writable: true, - value: "area" -}); -Object.defineProperty(VictoryArea, "continuous", { - configurable: true, - enumerable: true, - writable: true, - value: true -}); -Object.defineProperty(VictoryArea, "defaultTransitions", { - configurable: true, - enumerable: true, - writable: true, - value: DefaultTransitions.continuousTransitions() -}); -Object.defineProperty(VictoryArea, "defaultPolarTransitions", { - configurable: true, - enumerable: true, - writable: true, - value: DefaultTransitions.continuousPolarTransitions() -}); -Object.defineProperty(VictoryArea, "getDomain", { - configurable: true, - enumerable: true, - writable: true, - value: Domain.getDomainWithZero -}); -Object.defineProperty(VictoryArea, "getData", { - configurable: true, - enumerable: true, - writable: true, - value: Data.getData -}); -Object.defineProperty(VictoryArea, "getBaseProps", { - configurable: true, - enumerable: true, - writable: true, - value: function (props) { - return getBaseProps$2(props, fallbackProps$6); - } -}); -Object.defineProperty(VictoryArea, "expectedComponents", { - configurable: true, - enumerable: true, - writable: true, - value: ["dataComponent", "labelComponent", "groupComponent", "containerComponent"] -}); -var VictoryArea$1 = addEvents(VictoryArea, options$2); - -var getCalculatedValues$3 = function (props) { - var data = Data.getData(props); - - if (data.length < 2) { - data = []; - } - - var range = { - x: Helpers.getRange(props, "x"), - y: Helpers.getRange(props, "y") - }; - var domain = { - x: Domain.getDomain(props, "x"), - y: Domain.getDomain(props, "y") - }; - var scale = { - x: Scale.getBaseScale(props, "x").domain(domain.x).range(props.horizontal ? range.y : range.x), - y: Scale.getBaseScale(props, "y").domain(domain.y).range(props.horizontal ? range.x : range.y) - }; - var origin = props.polar ? props.origin || Helpers.getPolarOrigin(props) : undefined; - var defaultStyles = Helpers.getDefaultStyles(props, "line"); - var style = Helpers.getStyles(props.style, defaultStyles); - return { - domain: domain, - data: data, - scale: scale, - style: style, - origin: origin - }; -}; - -var getBaseProps$3 = function (props, fallbackProps) { - var modifiedProps = Helpers.modifyProps(props, fallbackProps, "line"); - props = assign_1({}, modifiedProps, getCalculatedValues$3(modifiedProps)); - var _props = props, - data = _props.data, - domain = _props.domain, - events = _props.events, - groupComponent = _props.groupComponent, - height = _props.height, - horizontal = _props.horizontal, - interpolation = _props.interpolation, - origin = _props.origin, - padding = _props.padding, - polar = _props.polar, - scale = _props.scale, - sharedEvents = _props.sharedEvents, - standalone = _props.standalone, - style = _props.style, - theme = _props.theme, - width = _props.width, - labels = _props.labels, - name = _props.name; - var initialChildProps = { - parent: { - style: style.parent, - scale: scale, - data: data, - height: height, - width: width, - name: name, - domain: domain, - standalone: standalone, - polar: polar, - origin: origin, - padding: padding, - horizontal: horizontal - }, - all: { - data: { - horizontal: horizontal, - polar: polar, - origin: origin, - scale: scale, - data: data, - interpolation: interpolation, - groupComponent: groupComponent, - style: style.data, - theme: theme - } - } - }; - return data.reduce(function (childProps, datum, index) { - var text = LabelHelpers.getText(props, datum, index); - - if (text !== undefined && text !== null || labels && (events || sharedEvents)) { - var eventKey = !isNil_1(datum.eventKey) ? datum.eventKey : index; - childProps[eventKey] = { - labels: LabelHelpers.getProps(props, index) - }; - } - - return childProps; - }, initialChildProps); -}; - -function _objectSpread$f(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$j(target, key, source[key]); }); } return target; } - -function _defineProperty$j(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -var defined$1 = function (d) { - var y = d._y1 !== undefined ? d._y1 : d._y; - return y !== null && y !== undefined && d._y0 !== null; -}; - -var getXAccessor$1 = function (scale) { - return function (d) { - return scale.x(d._x1 !== undefined ? d._x1 : d._x); - }; -}; - -var getYAccessor$1 = function (scale) { - return function (d) { - return scale.y(d._y1 !== undefined ? d._y1 : d._y); - }; -}; - -var getAngleAccessor$1 = function (scale) { - return function (d) { - var x = scale.x(d._x1 !== undefined ? d._x1 : d._x); - return -1 * x + Math.PI / 2; - }; -}; - -var toNewName$2 = function (interpolation) { - // d3 shape changed the naming scheme for interpolators from "basis" -> "curveBasis" etc. - var capitalize = function (s) { - return s && s[0].toUpperCase() + s.slice(1); - }; - - return "curve".concat(capitalize(interpolation)); -}; - -var getLineFunction$1 = function (props) { - var polar = props.polar, - scale = props.scale, - horizontal = props.horizontal; - var defaultOpenCurve = polar ? false : true; - var openCurve = props.openCurve === undefined ? defaultOpenCurve : props.openCurve; - var interpolationFunction = typeof props.interpolation === "function" && props.interpolation; - var interpolationName = typeof props.interpolation === "string" && (!openCurve ? "".concat(toNewName$2(props.interpolation), "Closed") : toNewName$2(props.interpolation)); - return polar ? lineRadial$1().defined(defined$1).curve(interpolationFunction || d3Shape[interpolationName]).angle(getAngleAccessor$1(scale)).radius(getYAccessor$1(scale)) : line().defined(defined$1).curve(interpolationFunction || d3Shape[interpolationName]).x(horizontal ? getYAccessor$1(scale) : getXAccessor$1(scale)).y(horizontal ? getXAccessor$1(scale) : getYAccessor$1(scale)); -}; - -var evaluateProps$7 = function (props) { - /** - * Potential evaluated props are: - * `ariaLabel` - * `id` - * `style` - * `tabIndex` - */ - var ariaLabel = Helpers.evaluateProp(props.ariaLabel, props); - var id = Helpers.evaluateProp(props.id, props); - var style = Helpers.evaluateStyle(assign_1({ - fill: "none", - stroke: "black" - }, props.style), props); - var tabIndex = Helpers.evaluateProp(props.tabIndex, props); - return assign_1({}, props, { - ariaLabel: ariaLabel, - id: id, - style: style, - tabIndex: tabIndex - }); -}; - -var Curve = function (props) { - props = evaluateProps$7(props); - var _props = props, - polar = _props.polar, - origin = _props.origin; - var lineFunction = getLineFunction$1(props); - var defaultTransform = polar && origin ? "translate(".concat(origin.x, ", ").concat(origin.y, ")") : undefined; - return React__default.cloneElement(props.pathComponent, _objectSpread$f({}, props.events, { - "aria-label": props.ariaLabel, - d: lineFunction(props.data), - style: props.style, - transform: props.transform || defaultTransform, - className: props.className, - role: props.role, - shapeRendering: props.shapeRendering, - clipPath: props.clipPath, - tabIndex: props.tabIndex - })); -}; - -Curve.propTypes = _objectSpread$f({}, CommonProps.primitiveProps, { - interpolation: propTypes.oneOfType([propTypes.string, propTypes.func]), - openCurve: propTypes.bool, - origin: propTypes.object, - pathComponent: propTypes.element, - polar: propTypes.bool -}); -Curve.defaultProps = { - pathComponent: React__default.createElement(Path, null), - role: "presentation", - shapeRendering: "auto" -}; - -function _objectSpread$g(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$k(target, key, source[key]); }); } return target; } - -function _defineProperty$k(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _classCallCheck$e(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$e(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$e(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$e(Constructor.prototype, protoProps); if (staticProps) _defineProperties$e(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$d(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$d(self); } - -function _assertThisInitialized$d(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _inherits$d(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } -var fallbackProps$7 = { - width: 450, - height: 300, - padding: 50, - interpolation: "linear" -}; -var options$3 = { - components: [{ - name: "parent", - index: "parent" - }, { - name: "data", - index: "all" - }, { - name: "labels" - }] -}; - -var VictoryLine = -/*#__PURE__*/ -function (_React$Component) { - _inherits$d(VictoryLine, _React$Component); - - function VictoryLine() { - _classCallCheck$e(this, VictoryLine); - - return _possibleConstructorReturn$d(this, (VictoryLine.__proto__ || Object.getPrototypeOf(VictoryLine)).apply(this, arguments)); - } - - _createClass$e(VictoryLine, [{ - key: "shouldAnimate", - // Overridden in native versions - value: function shouldAnimate() { - return !!this.props.animate; - } - }, { - key: "render", - value: function render() { - var animationWhitelist = VictoryLine.animationWhitelist, - role = VictoryLine.role; - var props = Helpers.modifyProps(this.props, fallbackProps$7, role); - - if (this.shouldAnimate()) { - return this.animateComponent(props, animationWhitelist); - } - - var children = this.renderContinuousData(props); - return props.standalone ? this.renderContainer(props.containerComponent, children) : children; - } - }]); - - return VictoryLine; -}(React__default.Component); - -Object.defineProperty(VictoryLine, "animationWhitelist", { - configurable: true, - enumerable: true, - writable: true, - value: ["data", "domain", "height", "padding", "samples", "style", "width"] -}); -Object.defineProperty(VictoryLine, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryLine" -}); -Object.defineProperty(VictoryLine, "role", { - configurable: true, - enumerable: true, - writable: true, - value: "line" -}); -Object.defineProperty(VictoryLine, "defaultTransitions", { - configurable: true, - enumerable: true, - writable: true, - value: DefaultTransitions.continuousTransitions() -}); -Object.defineProperty(VictoryLine, "defaultPolarTransitions", { - configurable: true, - enumerable: true, - writable: true, - value: DefaultTransitions.continuousPolarTransitions() -}); -Object.defineProperty(VictoryLine, "continuous", { - configurable: true, - enumerable: true, - writable: true, - value: true -}); -Object.defineProperty(VictoryLine, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$g({}, CommonProps.baseProps, CommonProps.dataProps, { - interpolation: propTypes.oneOfType([propTypes.oneOf(["basis", "bundle", "cardinal", "catmullRom", "linear", "monotoneX", "monotoneY", "natural", "step", "stepAfter", "stepBefore"]), propTypes.func]), - label: CustomPropTypes.deprecated(propTypes.string, "Use `labels` instead for individual data labels") - }) -}); -Object.defineProperty(VictoryLine, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: { - containerComponent: React__default.createElement(VictoryContainer, null), - dataComponent: React__default.createElement(Curve, null), - labelComponent: React__default.createElement(VictoryLabel, { - renderInPortal: true - }), - groupComponent: React__default.createElement(VictoryClipContainer, null), - samples: 50, - sortKey: "x", - sortOrder: "ascending", - standalone: true, - theme: VictoryTheme.grayscale - } -}); -Object.defineProperty(VictoryLine, "getDomain", { - configurable: true, - enumerable: true, - writable: true, - value: Domain.getDomain -}); -Object.defineProperty(VictoryLine, "getData", { - configurable: true, - enumerable: true, - writable: true, - value: Data.getData -}); -Object.defineProperty(VictoryLine, "getBaseProps", { - configurable: true, - enumerable: true, - writable: true, - value: function (props) { - return getBaseProps$3(props, fallbackProps$7); - } -}); -Object.defineProperty(VictoryLine, "expectedComponents", { - configurable: true, - enumerable: true, - writable: true, - value: ["dataComponent", "labelComponent", "groupComponent", "containerComponent"] -}); -var VictoryLine$1 = addEvents(VictoryLine, options$3); - -function _toConsumableArray$h(arr) { return _arrayWithoutHoles$h(arr) || _iterableToArray$h(arr) || _nonIterableSpread$h(); } - -function _nonIterableSpread$h() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$h(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$h(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -var getSymbol = function (data, props) { - if (props.bubbleProperty) { - return "circle"; - } - - return data.symbol || props.symbol; -}; - -var getBubbleSize = function (datum, props) { - var data = props.data, - z = props.z, - maxBubbleSize = props.maxBubbleSize, - minBubbleSize = props.minBubbleSize; - var zData = data.map(function (point) { - return point[z]; - }); - var zMin = Math.min.apply(Math, _toConsumableArray$h(zData)); - var zMax = Math.max.apply(Math, _toConsumableArray$h(zData)); - - var getMaxRadius = function () { - var minPadding = Math.min.apply(Math, _toConsumableArray$h(values_1(Helpers.getPadding(props)))); - return Math.max(minPadding, 5); // eslint-disable-line no-magic-numbers - }; - - var maxRadius = maxBubbleSize || getMaxRadius(); - var minRadius = minBubbleSize || maxRadius * 0.1; // eslint-disable-line no-magic-numbers - - if (zMax === zMin) { - return Math.max(minRadius, 1); - } - - var maxArea = Math.PI * Math.pow(maxRadius, 2); - var minArea = Math.PI * Math.pow(minRadius, 2); - var pointArea = (datum[z] - zMin) / (zMax - zMin) * maxArea; - var area = Math.max(pointArea, minArea); - var radius = Math.sqrt(area / Math.PI); - return Math.max(radius, 1); -}; - -var getSize = function (datum, props) { - var size = props.size, - z = props.z; - - if (datum.size) { - return typeof datum.size === "function" ? datum.size : Math.max(datum.size, 1); - } else if (typeof props.size === "function") { - return size; - } else if (datum[z]) { - return getBubbleSize(datum, props); - } else { - return Math.max(size || 0, 1); - } -}; - -var getCalculatedValues$4 = function (props) { - var defaultStyles = Helpers.getDefaultStyles(props, "scatter"); - var style = Helpers.getStyles(props.style, defaultStyles); - var data = Data.getData(props); - var range = { - x: Helpers.getRange(props, "x"), - y: Helpers.getRange(props, "y") - }; - var domain = { - x: Domain.getDomain(props, "x"), - y: Domain.getDomain(props, "y") - }; - var scale = { - x: Scale.getBaseScale(props, "x").domain(domain.x).range(props.horizontal ? range.y : range.x), - y: Scale.getBaseScale(props, "y").domain(domain.y).range(props.horizontal ? range.x : range.y) - }; - var origin = props.polar ? props.origin || Helpers.getPolarOrigin(props) : undefined; - var z = props.bubbleProperty || "z"; - return { - domain: domain, - data: data, - scale: scale, - style: style, - origin: origin, - z: z - }; -}; - -var getBaseProps$4 = function (props, fallbackProps) { - var modifiedProps = Helpers.modifyProps(props, fallbackProps, "scatter"); - props = assign_1({}, modifiedProps, getCalculatedValues$4(modifiedProps)); - var _props = props, - data = _props.data, - domain = _props.domain, - events = _props.events, - height = _props.height, - origin = _props.origin, - padding = _props.padding, - polar = _props.polar, - scale = _props.scale, - name = _props.name, - sharedEvents = _props.sharedEvents, - standalone = _props.standalone, - style = _props.style, - theme = _props.theme, - width = _props.width, - labels = _props.labels, - horizontal = _props.horizontal; - var initialChildProps = { - parent: { - style: style.parent, - scale: scale, - domain: domain, - data: data, - height: height, - width: width, - standalone: standalone, - theme: theme, - origin: origin, - polar: polar, - padding: padding, - name: name, - horizontal: horizontal - } - }; - return data.reduce(function (childProps, datum, index) { - var eventKey = !isNil_1(datum.eventKey) ? datum.eventKey : index; - - var _Helpers$scalePoint = Helpers.scalePoint(props, datum), - x = _Helpers$scalePoint.x, - y = _Helpers$scalePoint.y; - - var dataProps = { - x: x, - y: y, - datum: datum, - data: data, - index: index, - scale: scale, - polar: polar, - origin: origin, - horizontal: horizontal, - size: getSize(datum, props), - symbol: getSymbol(datum, props), - style: style.data - }; - childProps[eventKey] = { - data: dataProps - }; - var text = LabelHelpers.getText(props, datum, index); - - if (text !== undefined && text !== null || labels && (events || sharedEvents)) { - childProps[eventKey].labels = LabelHelpers.getProps(props, index); - } - - return childProps; - }, initialChildProps); -}; - -function _objectSpread$h(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$l(target, key, source[key]); }); } return target; } - -function _defineProperty$l(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _classCallCheck$f(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$f(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$f(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$f(Constructor.prototype, protoProps); if (staticProps) _defineProperties$f(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$e(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$e(self); } - -function _assertThisInitialized$e(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _inherits$e(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } -var fallbackProps$8 = { - width: 450, - height: 300, - padding: 50, - size: 3, - symbol: "circle" -}; - -var VictoryScatter = -/*#__PURE__*/ -function (_React$Component) { - _inherits$e(VictoryScatter, _React$Component); - - function VictoryScatter() { - _classCallCheck$f(this, VictoryScatter); - - return _possibleConstructorReturn$e(this, (VictoryScatter.__proto__ || Object.getPrototypeOf(VictoryScatter)).apply(this, arguments)); - } - - _createClass$f(VictoryScatter, [{ - key: "shouldAnimate", - // Overridden in native versions - value: function shouldAnimate() { - return !!this.props.animate; - } - }, { - key: "render", - value: function render() { - var animationWhitelist = VictoryScatter.animationWhitelist, - role = VictoryScatter.role; - var props = Helpers.modifyProps(this.props, fallbackProps$8, role); - - if (this.shouldAnimate()) { - return this.animateComponent(props, animationWhitelist); - } - - var children = this.renderData(props); - return props.standalone ? this.renderContainer(props.containerComponent, children) : children; - } - }]); - - return VictoryScatter; -}(React__default.Component); - -Object.defineProperty(VictoryScatter, "animationWhitelist", { - configurable: true, - enumerable: true, - writable: true, - value: ["data", "domain", "height", "maxBubbleSize", "padding", "samples", "size", "style", "width"] -}); -Object.defineProperty(VictoryScatter, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryScatter" -}); -Object.defineProperty(VictoryScatter, "role", { - configurable: true, - enumerable: true, - writable: true, - value: "scatter" -}); -Object.defineProperty(VictoryScatter, "defaultTransitions", { - configurable: true, - enumerable: true, - writable: true, - value: DefaultTransitions.discreteTransitions() -}); -Object.defineProperty(VictoryScatter, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$h({}, CommonProps.baseProps, CommonProps.dataProps, { - bubbleProperty: propTypes.string, - maxBubbleSize: CustomPropTypes.nonNegative, - minBubbleSize: CustomPropTypes.nonNegative, - size: propTypes.oneOfType([CustomPropTypes.nonNegative, propTypes.func]), - symbol: propTypes.oneOfType([propTypes.oneOf(["circle", "cross", "diamond", "plus", "minus", "square", "star", "triangleDown", "triangleUp"]), propTypes.func]) - }) -}); -Object.defineProperty(VictoryScatter, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: { - containerComponent: React__default.createElement(VictoryContainer, null), - dataComponent: React__default.createElement(Point, null), - labelComponent: React__default.createElement(VictoryLabel, null), - groupComponent: React__default.createElement("g", null), - samples: 50, - sortOrder: "ascending", - standalone: true, - theme: VictoryTheme.grayscale - } -}); -Object.defineProperty(VictoryScatter, "getDomain", { - configurable: true, - enumerable: true, - writable: true, - value: Domain.getDomain -}); -Object.defineProperty(VictoryScatter, "getData", { - configurable: true, - enumerable: true, - writable: true, - value: Data.getData -}); -Object.defineProperty(VictoryScatter, "getBaseProps", { - configurable: true, - enumerable: true, - writable: true, - value: function (props) { - return getBaseProps$4(props, fallbackProps$8); - } -}); -Object.defineProperty(VictoryScatter, "expectedComponents", { - configurable: true, - enumerable: true, - writable: true, - value: ["dataComponent", "labelComponent", "groupComponent", "containerComponent"] -}); -var VictoryScatter$1 = addEvents(VictoryScatter); - -/** - * Creates an object with the same keys as `object` and values generated - * by running each own enumerable string keyed property of `object` thru - * `iteratee`. The iteratee is invoked with three arguments: - * (value, key, object). - * - * @static - * @memberOf _ - * @since 2.4.0 - * @category Object - * @param {Object} object The object to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Object} Returns the new mapped object. - * @see _.mapKeys - * @example - * - * var users = { - * 'fred': { 'user': 'fred', 'age': 40 }, - * 'pebbles': { 'user': 'pebbles', 'age': 1 } - * }; - * - * _.mapValues(users, function(o) { return o.age; }); - * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) - * - * // The `_.property` iteratee shorthand. - * _.mapValues(users, 'age'); - * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) - */ -function mapValues(object, iteratee) { - var result = {}; - iteratee = _baseIteratee(iteratee); - - _baseForOwn(object, function(value, key, object) { - _baseAssignValue(result, key, iteratee(value, key, object)); - }); - return result; -} - -var mapValues_1 = mapValues; - -/** - * Gets the timestamp of the number of milliseconds that have elapsed since - * the Unix epoch (1 January 1970 00:00:00 UTC). - * - * @static - * @memberOf _ - * @since 2.4.0 - * @category Date - * @returns {number} Returns the timestamp. - * @example - * - * _.defer(function(stamp) { - * console.log(_.now() - stamp); - * }, _.now()); - * // => Logs the number of milliseconds it took for the deferred invocation. - */ -var now$1 = function() { - return _root.Date.now(); -}; - -var now_1 = now$1; - -/** Error message constants. */ -var FUNC_ERROR_TEXT$2 = 'Expected a function'; - -/* Built-in method references for those with the same name as other `lodash` methods. */ -var nativeMax$4 = Math.max, - nativeMin = Math.min; - -/** - * Creates a debounced function that delays invoking `func` until after `wait` - * milliseconds have elapsed since the last time the debounced function was - * invoked. The debounced function comes with a `cancel` method to cancel - * delayed `func` invocations and a `flush` method to immediately invoke them. - * Provide `options` to indicate whether `func` should be invoked on the - * leading and/or trailing edge of the `wait` timeout. The `func` is invoked - * with the last arguments provided to the debounced function. Subsequent - * calls to the debounced function return the result of the last `func` - * invocation. - * - * **Note:** If `leading` and `trailing` options are `true`, `func` is - * invoked on the trailing edge of the timeout only if the debounced function - * is invoked more than once during the `wait` timeout. - * - * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred - * until to the next tick, similar to `setTimeout` with a timeout of `0`. - * - * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) - * for details over the differences between `_.debounce` and `_.throttle`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Function - * @param {Function} func The function to debounce. - * @param {number} [wait=0] The number of milliseconds to delay. - * @param {Object} [options={}] The options object. - * @param {boolean} [options.leading=false] - * Specify invoking on the leading edge of the timeout. - * @param {number} [options.maxWait] - * The maximum time `func` is allowed to be delayed before it's invoked. - * @param {boolean} [options.trailing=true] - * Specify invoking on the trailing edge of the timeout. - * @returns {Function} Returns the new debounced function. - * @example - * - * // Avoid costly calculations while the window size is in flux. - * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); - * - * // Invoke `sendMail` when clicked, debouncing subsequent calls. - * jQuery(element).on('click', _.debounce(sendMail, 300, { - * 'leading': true, - * 'trailing': false - * })); - * - * // Ensure `batchLog` is invoked once after 1 second of debounced calls. - * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 }); - * var source = new EventSource('/stream'); - * jQuery(source).on('message', debounced); - * - * // Cancel the trailing debounced invocation. - * jQuery(window).on('popstate', debounced.cancel); - */ -function debounce(func, wait, options) { - var lastArgs, - lastThis, - maxWait, - result, - timerId, - lastCallTime, - lastInvokeTime = 0, - leading = false, - maxing = false, - trailing = true; - - if (typeof func != 'function') { - throw new TypeError(FUNC_ERROR_TEXT$2); - } - wait = toNumber_1(wait) || 0; - if (isObject_1(options)) { - leading = !!options.leading; - maxing = 'maxWait' in options; - maxWait = maxing ? nativeMax$4(toNumber_1(options.maxWait) || 0, wait) : maxWait; - trailing = 'trailing' in options ? !!options.trailing : trailing; - } - - function invokeFunc(time) { - var args = lastArgs, - thisArg = lastThis; - - lastArgs = lastThis = undefined; - lastInvokeTime = time; - result = func.apply(thisArg, args); - return result; - } - - function leadingEdge(time) { - // Reset any `maxWait` timer. - lastInvokeTime = time; - // Start the timer for the trailing edge. - timerId = setTimeout(timerExpired, wait); - // Invoke the leading edge. - return leading ? invokeFunc(time) : result; - } - - function remainingWait(time) { - var timeSinceLastCall = time - lastCallTime, - timeSinceLastInvoke = time - lastInvokeTime, - timeWaiting = wait - timeSinceLastCall; - - return maxing - ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) - : timeWaiting; - } - - function shouldInvoke(time) { - var timeSinceLastCall = time - lastCallTime, - timeSinceLastInvoke = time - lastInvokeTime; - - // Either this is the first call, activity has stopped and we're at the - // trailing edge, the system time has gone backwards and we're treating - // it as the trailing edge, or we've hit the `maxWait` limit. - return (lastCallTime === undefined || (timeSinceLastCall >= wait) || - (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait)); - } - - function timerExpired() { - var time = now_1(); - if (shouldInvoke(time)) { - return trailingEdge(time); - } - // Restart the timer. - timerId = setTimeout(timerExpired, remainingWait(time)); - } - - function trailingEdge(time) { - timerId = undefined; - - // Only invoke if we have `lastArgs` which means `func` has been - // debounced at least once. - if (trailing && lastArgs) { - return invokeFunc(time); - } - lastArgs = lastThis = undefined; - return result; - } - - function cancel() { - if (timerId !== undefined) { - clearTimeout(timerId); - } - lastInvokeTime = 0; - lastArgs = lastCallTime = lastThis = timerId = undefined; - } - - function flush() { - return timerId === undefined ? result : trailingEdge(now_1()); - } - - function debounced() { - var time = now_1(), - isInvoking = shouldInvoke(time); - - lastArgs = arguments; - lastThis = this; - lastCallTime = time; - - if (isInvoking) { - if (timerId === undefined) { - return leadingEdge(lastCallTime); - } - if (maxing) { - // Handle invocations in a tight loop. - clearTimeout(timerId); - timerId = setTimeout(timerExpired, wait); - return invokeFunc(lastCallTime); - } - } - if (timerId === undefined) { - timerId = setTimeout(timerExpired, wait); - } - return result; - } - debounced.cancel = cancel; - debounced.flush = flush; - return debounced; -} - -var debounce_1 = debounce; - -/** Error message constants. */ -var FUNC_ERROR_TEXT$3 = 'Expected a function'; - -/** - * Creates a throttled function that only invokes `func` at most once per - * every `wait` milliseconds. The throttled function comes with a `cancel` - * method to cancel delayed `func` invocations and a `flush` method to - * immediately invoke them. Provide `options` to indicate whether `func` - * should be invoked on the leading and/or trailing edge of the `wait` - * timeout. The `func` is invoked with the last arguments provided to the - * throttled function. Subsequent calls to the throttled function return the - * result of the last `func` invocation. - * - * **Note:** If `leading` and `trailing` options are `true`, `func` is - * invoked on the trailing edge of the timeout only if the throttled function - * is invoked more than once during the `wait` timeout. - * - * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred - * until to the next tick, similar to `setTimeout` with a timeout of `0`. - * - * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) - * for details over the differences between `_.throttle` and `_.debounce`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Function - * @param {Function} func The function to throttle. - * @param {number} [wait=0] The number of milliseconds to throttle invocations to. - * @param {Object} [options={}] The options object. - * @param {boolean} [options.leading=true] - * Specify invoking on the leading edge of the timeout. - * @param {boolean} [options.trailing=true] - * Specify invoking on the trailing edge of the timeout. - * @returns {Function} Returns the new throttled function. - * @example - * - * // Avoid excessively updating the position while scrolling. - * jQuery(window).on('scroll', _.throttle(updatePosition, 100)); - * - * // Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes. - * var throttled = _.throttle(renewToken, 300000, { 'trailing': false }); - * jQuery(element).on('click', throttled); - * - * // Cancel the trailing throttled invocation. - * jQuery(window).on('popstate', throttled.cancel); - */ -function throttle(func, wait, options) { - var leading = true, - trailing = true; - - if (typeof func != 'function') { - throw new TypeError(FUNC_ERROR_TEXT$3); - } - if (isObject_1(options)) { - leading = 'leading' in options ? !!options.leading : leading; - trailing = 'trailing' in options ? !!options.trailing : trailing; - } - return debounce_1(func, wait, { - 'leading': leading, - 'maxWait': wait, - 'trailing': trailing - }); -} - -var throttle_1 = throttle; - -function _objectSpread$i(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$m(target, key, source[key]); }); } return target; } - -function _defineProperty$m(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _toConsumableArray$i(arr) { return _arrayWithoutHoles$i(arr) || _iterableToArray$i(arr) || _nonIterableSpread$i(); } - -function _nonIterableSpread$i() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$i(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$i(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } -var Helpers$1 = { - getDimension: function (props) { - var horizontal = props.horizontal, - brushDimension = props.brushDimension; - - if (!horizontal || !brushDimension) { - return brushDimension; - } - - return brushDimension === "x" ? "y" : "x"; - }, - withinBounds: function (point, bounds, padding) { - var _mapValues2 = mapValues_1(bounds, Number), - x1 = _mapValues2.x1, - x2 = _mapValues2.x2, - y1 = _mapValues2.y1, - y2 = _mapValues2.y2; - - var _mapValues3 = mapValues_1(point, Number), - x = _mapValues3.x, - y = _mapValues3.y; - - padding = padding ? padding / 2 : 0; - return x + padding >= Math.min(x1, x2) && x - padding <= Math.max(x1, x2) && y + padding >= Math.min(y1, y2) && y - padding <= Math.max(y1, y2); - }, - getDomainBox: function (props, fullDomain, selectedDomain) { - var brushDimension = this.getDimension(props); - fullDomain = defaults_1({}, fullDomain, props.domain); - selectedDomain = defaults_1({}, selectedDomain, fullDomain); - var fullCoords = Selection.getDomainCoordinates(props, fullDomain); - var selectedCoords = Selection.getDomainCoordinates(props, selectedDomain); - return { - x1: brushDimension !== "y" ? Math.min.apply(Math, _toConsumableArray$i(selectedCoords.x)) : Math.min.apply(Math, _toConsumableArray$i(fullCoords.x)), - x2: brushDimension !== "y" ? Math.max.apply(Math, _toConsumableArray$i(selectedCoords.x)) : Math.max.apply(Math, _toConsumableArray$i(fullCoords.x)), - y1: brushDimension !== "x" ? Math.min.apply(Math, _toConsumableArray$i(selectedCoords.y)) : Math.min.apply(Math, _toConsumableArray$i(fullCoords.y)), - y2: brushDimension !== "x" ? Math.max.apply(Math, _toConsumableArray$i(selectedCoords.y)) : Math.max.apply(Math, _toConsumableArray$i(fullCoords.y)) - }; - }, - getHandles: function (props, domainBox) { - var brushDimension = this.getDimension(props); - var x1 = domainBox.x1, - x2 = domainBox.x2, - y1 = domainBox.y1, - y2 = domainBox.y2; - var minX = Math.min(x1, x2); - var maxX = Math.max(x1, x2); - var minY = Math.min(y1, y2); - var maxY = Math.max(y1, y2); - var handleWidth = props.handleWidth / 2; - return { - left: brushDimension !== "y" && { - x1: minX - handleWidth, - x2: minX + handleWidth, - y1: y1, - y2: y2 - }, - right: brushDimension !== "y" && { - x1: maxX - handleWidth, - x2: maxX + handleWidth, - y1: y1, - y2: y2 - }, - top: brushDimension !== "x" && { - x1: x1, - x2: x2, - y1: minY - handleWidth, - y2: minY + handleWidth - }, - bottom: brushDimension !== "x" && { - x1: x1, - x2: x2, - y1: maxY - handleWidth, - y2: maxY + handleWidth - } - }; - }, - getActiveHandles: function (point, props, domainBox) { - var _this = this; - - var handles = this.getHandles(props, domainBox); - var activeHandles = ["top", "bottom", "left", "right"].reduce(function (memo, opt) { - memo = handles[opt] && _this.withinBounds(point, handles[opt]) ? memo.concat(opt) : memo; - return memo; - }, []); - return activeHandles.length && activeHandles; - }, - getResizeMutation: function (box, handles) { - var x1 = box.x1, - y1 = box.y1, - x2 = box.x2, - y2 = box.y2; - var mutations = { - left: { - x1: Math.max(x1, x2), - x2: Math.min(x1, x2), - y1: y1, - y2: y2 - }, - right: { - x1: Math.min(x1, x2), - x2: Math.max(x1, x2), - y1: y1, - y2: y2 - }, - top: { - y1: Math.max(y1, y2), - y2: Math.min(y1, y2), - x1: x1, - x2: x2 - }, - bottom: { - y1: Math.min(y1, y2), - y2: Math.max(y1, y2), - x1: x1, - x2: x2 - } - }; - return handles.reduce(function (memo, current) { - return assign_1(memo, mutations[current]); - }, {}); - }, - getMinimumDomain: function () { - return { - x: [0, 1 / Number.MAX_SAFE_INTEGER], - y: [0, 1 / Number.MAX_SAFE_INTEGER] - }; - }, - getDefaultBrushArea: function (targetProps, cachedDomain, evt) { - var defaultBrushArea = targetProps.defaultBrushArea, - domain = targetProps.domain, - fullDomain = targetProps.fullDomain, - scale = targetProps.scale, - horizontal = targetProps.horizontal; - - if (defaultBrushArea === "none") { - return this.getMinimumDomain(); - } else if (defaultBrushArea === "disable") { - return cachedDomain; - } else if (defaultBrushArea === "move") { - var brushBox = this.getDomainBox(targetProps, fullDomain, cachedDomain); - var parentSVG = targetProps.parentSVG || Selection.getParentSVG(evt); - var pannedBox = this.panBox(_objectSpread$i({}, targetProps, brushBox, { - brushDomain: cachedDomain, - startX: (brushBox.x1 + brushBox.x2) / 2, - startY: (brushBox.y1 + brushBox.y2) / 2 - }), Selection.getSVGEventCoordinates(evt, parentSVG)); - var fullDomainBox = targetProps.fullDomainBox || this.getDomainBox(targetProps, fullDomain); - var constrainedBox = this.constrainBox(pannedBox, fullDomainBox); - return Selection.getBounds(_objectSpread$i({}, constrainedBox, { - scale: scale, - horizontal: horizontal - })); - } else { - return domain; - } - }, - getSelectionMutation: function (point, box, brushDimension) { - var x = point.x, - y = point.y; - var x1 = box.x1, - x2 = box.x2, - y1 = box.y1, - y2 = box.y2; - return { - x1: brushDimension !== "y" ? x : x1, - y1: brushDimension !== "x" ? y : y1, - x2: brushDimension !== "y" ? x : x2, - y2: brushDimension !== "x" ? y : y2 - }; - }, - panBox: function (props, point) { - var domain = props.domain, - startX = props.startX, - startY = props.startY; - var brushDimension = this.getDimension(props); - - var brushDomain = defaults_1({}, props.brushDomain, domain); - - var fullDomain = defaults_1({}, props.fullDomain, domain); - - var _ref = props.x1 ? props : this.getDomainBox(props, fullDomain, brushDomain), - x1 = _ref.x1, - x2 = _ref.x2, - y1 = _ref.y1, - y2 = _ref.y2; - - var x = point.x, - y = point.y; - var delta = { - x: startX ? startX - x : 0, - y: startY ? startY - y : 0 - }; - return { - x1: brushDimension !== "y" ? Math.min(x1, x2) - delta.x : Math.min(x1, x2), - x2: brushDimension !== "y" ? Math.max(x1, x2) - delta.x : Math.max(x1, x2), - y1: brushDimension !== "x" ? Math.min(y1, y2) - delta.y : Math.min(y1, y2), - y2: brushDimension !== "x" ? Math.max(y1, y2) - delta.y : Math.max(y1, y2) - }; - }, - constrainBox: function (box, fullDomainBox) { - var _mapValues4 = mapValues_1(fullDomainBox, Number), - x1 = _mapValues4.x1, - y1 = _mapValues4.y1, - x2 = _mapValues4.x2, - y2 = _mapValues4.y2; - - return { - x1: box.x2 > x2 ? x2 - Math.abs(box.x2 - box.x1) : Math.max(box.x1, x1), - y1: box.y2 > y2 ? y2 - Math.abs(box.y2 - box.y1) : Math.max(box.y1, y1), - x2: box.x1 < x1 ? x1 + Math.abs(box.x2 - box.x1) : Math.min(box.x2, x2), - y2: box.y1 < y1 ? y1 + Math.abs(box.y2 - box.y1) : Math.min(box.y2, y2) - }; - }, - constrainPoint: function (point, fullDomainBox) { - var _mapValues5 = mapValues_1(fullDomainBox, Number), - x1 = _mapValues5.x1, - y1 = _mapValues5.y1, - x2 = _mapValues5.x2, - y2 = _mapValues5.y2; - - return { - x: Math.min(Math.max(point.x, x1), x2), - y: Math.min(Math.max(point.y, y1), y2) - }; - }, - hasMoved: function (props) { - var x1 = props.x1, - x2 = props.x2, - y1 = props.y1, - y2 = props.y2, - mouseMoveThreshold = props.mouseMoveThreshold; - var brushDimension = this.getDimension(props); - var xMoved = Math.abs(x1 - x2) >= mouseMoveThreshold; - var yMoved = Math.abs(y1 - y2) >= mouseMoveThreshold; - - switch (brushDimension) { - case "x": - return xMoved; - - case "y": - return yMoved; - - default: - return xMoved || yMoved; - } - }, - // eslint-disable-next-line max-statements, complexity - onMouseDown: function (evt, targetProps) { - var _this2 = this; - - evt.preventDefault(); - var handleWidth = targetProps.handleWidth, - cachedBrushDomain = targetProps.cachedBrushDomain, - domain = targetProps.domain, - allowResize = targetProps.allowResize, - allowDrag = targetProps.allowDrag, - allowDraw = targetProps.allowDraw; - var brushDimension = this.getDimension(targetProps); // Don't trigger events for static brushes - - if (!allowResize && !allowDrag) { - return {}; - } - - var fullDomainBox = targetProps.fullDomainBox || this.getDomainBox(targetProps, domain); - var parentSVG = targetProps.parentSVG || Selection.getParentSVG(evt); - - var _Selection$getSVGEven = Selection.getSVGEventCoordinates(evt, parentSVG), - x = _Selection$getSVGEven.x, - y = _Selection$getSVGEven.y; // Ignore events that occur outside of the maximum domain region - - - if (!this.withinBounds({ - x: x, - y: y - }, fullDomainBox, handleWidth)) { - return {}; - } - - var brushDomain = defaults_1({}, targetProps.brushDomain, domain); - - var currentDomain = reactFastCompare(brushDomain, cachedBrushDomain) ? targetProps.currentDomain || brushDomain || domain : brushDomain || domain; - var domainBox = this.getDomainBox(targetProps, domain, currentDomain); - var activeHandles = allowResize && this.getActiveHandles({ - x: x, - y: y - }, targetProps, domainBox); // If the event occurs in any of the handle regions, start a resize - - if (activeHandles) { - return [{ - target: "parent", - mutation: function () { - return _objectSpread$i({ - isSelecting: true, - domainBox: domainBox, - fullDomainBox: fullDomainBox, - cachedBrushDomain: brushDomain, - currentDomain: currentDomain, - parentSVG: parentSVG - }, _this2.getResizeMutation(domainBox, activeHandles)); - } - }]; - } else if (this.withinBounds({ - x: x, - y: y - }, domainBox) && !reactFastCompare(domain, currentDomain)) { - // if the event occurs within a selected region start a panning event, unless the whole - // domain is selected - return [{ - target: "parent", - mutation: function () { - return _objectSpread$i({ - isPanning: allowDrag, - startX: x, - startY: y, - domainBox: domainBox, - fullDomainBox: fullDomainBox, - currentDomain: currentDomain, - cachedBrushDomain: brushDomain, - parentSVG: parentSVG - }, domainBox); - } - }]; - } else { - // if the event occurs outside the region, or if the whole domain is selected, - // start a new selection - return allowDraw ? [{ - target: "parent", - mutation: function () { - return _objectSpread$i({ - isSelecting: allowResize, - domainBox: domainBox, - fullDomainBox: fullDomainBox, - parentSVG: parentSVG, - cachedBrushDomain: brushDomain, - cachedCurrentDomain: currentDomain, - currentDomain: _this2.getMinimumDomain() - }, _this2.getSelectionMutation({ - x: x, - y: y - }, domainBox, brushDimension)); - } - }] : {}; - } - }, - // eslint-disable-next-line max-statements, complexity - onGlobalMouseMove: function (evt, targetProps) { - var scale = targetProps.scale, - isPanning = targetProps.isPanning, - isSelecting = targetProps.isSelecting, - fullDomainBox = targetProps.fullDomainBox, - onBrushDomainChange = targetProps.onBrushDomainChange, - allowResize = targetProps.allowResize, - allowDrag = targetProps.allowDrag, - horizontal = targetProps.horizontal, - mouseMoveThreshold = targetProps.mouseMoveThreshold, - parentSVG = targetProps.parentSVG; - var brushDimension = this.getDimension(targetProps); - - var _Selection$getSVGEven2 = Selection.getSVGEventCoordinates(evt, parentSVG), - x = _Selection$getSVGEven2.x, - y = _Selection$getSVGEven2.y; - - if (!allowResize && !allowDrag || mouseMoveThreshold > 0 && !this.hasMoved(_objectSpread$i({}, targetProps, { - x2: x, - y2: y - }))) { - return {}; - } - - if (allowDrag && isPanning) { - var startX = targetProps.startX, - startY = targetProps.startY; - var pannedBox = this.panBox(targetProps, { - x: x, - y: y - }); - var constrainedBox = this.constrainBox(pannedBox, fullDomainBox); - var currentDomain = Selection.getBounds(_objectSpread$i({}, constrainedBox, { - scale: scale, - horizontal: horizontal - })); - - var mutatedProps = _objectSpread$i({ - currentDomain: currentDomain, - parentSVG: parentSVG, - startX: pannedBox.x2 >= fullDomainBox.x2 || pannedBox.x1 <= fullDomainBox.x1 ? startX : x, - startY: pannedBox.y2 >= fullDomainBox.y2 || pannedBox.y1 <= fullDomainBox.y1 ? startY : y - }, constrainedBox); - - if (isFunction_1(onBrushDomainChange)) { - onBrushDomainChange(currentDomain, defaults_1({}, mutatedProps, targetProps)); - } - - return [{ - target: "parent", - mutation: function () { - return mutatedProps; - } - }]; - } else if (allowResize && isSelecting) { - var _constrainPoint = this.constrainPoint({ - x: brushDimension !== "y" ? x : targetProps.x2, - y: brushDimension !== "x" ? y : targetProps.y2 - }, fullDomainBox), - x2 = _constrainPoint.x, - y2 = _constrainPoint.y; - - var _currentDomain = Selection.getBounds({ - x2: x2, - y2: y2, - x1: targetProps.x1, - y1: targetProps.y1, - scale: scale, - horizontal: horizontal - }); - - var _mutatedProps = { - x2: x2, - y2: y2, - currentDomain: _currentDomain, - parentSVG: parentSVG - }; - - if (isFunction_1(onBrushDomainChange)) { - onBrushDomainChange(_currentDomain, defaults_1({}, _mutatedProps, targetProps)); - } - - return [{ - target: "parent", - mutation: function () { - return _mutatedProps; - } - }]; - } - - return {}; - }, - // eslint-disable-next-line complexity - onGlobalMouseUp: function (evt, targetProps) { - // if a panning or selection has not been started, ignore the event - if (!targetProps.isPanning && !targetProps.isSelecting) { - return {}; - } // eslint-disable-line max-statements, complexity - - - var x1 = targetProps.x1, - y1 = targetProps.y1, - x2 = targetProps.x2, - y2 = targetProps.y2, - isPanning = targetProps.isPanning, - isSelecting = targetProps.isSelecting, - onBrushDomainChange = targetProps.onBrushDomainChange, - onBrushDomainChangeEnd = targetProps.onBrushDomainChangeEnd, - onBrushCleared = targetProps.onBrushCleared, - currentDomain = targetProps.currentDomain, - allowResize = targetProps.allowResize, - allowDrag = targetProps.allowDrag, - defaultBrushArea = targetProps.defaultBrushArea; - var defaultBrushHasArea = defaultBrushArea !== undefined && defaultBrushArea !== "none"; - var mutatedProps = { - isPanning: false, - isSelecting: false - }; // if the mouse hasn't moved since a mouseDown event, select the default brush area - - if ((allowResize || defaultBrushHasArea) && (x1 === x2 || y1 === y2)) { - var cachedDomain = targetProps.cachedCurrentDomain || currentDomain; - var defaultDomain = this.getDefaultBrushArea(targetProps, cachedDomain, evt); - mutatedProps.currentDomain = defaultDomain; - - if (isFunction_1(onBrushDomainChange)) { - onBrushDomainChange(defaultDomain, defaults_1({}, mutatedProps, targetProps)); - } - - if (isFunction_1(onBrushDomainChangeEnd)) { - onBrushDomainChangeEnd(defaultDomain, defaults_1({}, mutatedProps, targetProps)); - } - - if (isFunction_1(onBrushCleared)) { - onBrushCleared(defaultDomain, defaults_1({}, mutatedProps, targetProps)); - } - } else if (allowDrag && isPanning || allowResize && isSelecting) { - if (isFunction_1(onBrushDomainChangeEnd)) { - onBrushDomainChangeEnd(currentDomain, defaults_1({}, mutatedProps, targetProps)); - } - } - - return [{ - target: "parent", - mutation: function () { - return mutatedProps; - } - }]; - } -}; -var BrushHelpers = _objectSpread$i({}, Helpers$1, { - onMouseDown: Helpers$1.onMouseDown.bind(Helpers$1), - onGlobalMouseUp: Helpers$1.onGlobalMouseUp.bind(Helpers$1), - onGlobalMouseMove: throttle_1(Helpers$1.onGlobalMouseMove.bind(Helpers$1), 16, // eslint-disable-line no-magic-numbers - { - leading: true, - trailing: false - }) -}); - -function _objectSpread$j(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$n(target, key, source[key]); }); } return target; } - -function _defineProperty$n(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _toConsumableArray$j(arr) { return _arrayWithoutHoles$j(arr) || _iterableToArray$j(arr) || _nonIterableSpread$j(); } - -function _nonIterableSpread$j() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$j(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$j(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function _classCallCheck$g(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$g(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$g(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$g(Constructor.prototype, protoProps); if (staticProps) _defineProperties$g(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$f(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$f(self); } - -function _assertThisInitialized$f(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _inherits$f(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } -var brushContainerMixin = function (base) { - var _class, _temp; - - return _temp = _class = - /*#__PURE__*/ - function (_base) { - _inherits$f(VictoryBrushContainer, _base); - - function VictoryBrushContainer() { - _classCallCheck$g(this, VictoryBrushContainer); - - return _possibleConstructorReturn$f(this, (VictoryBrushContainer.__proto__ || Object.getPrototypeOf(VictoryBrushContainer)).apply(this, arguments)); - } - - _createClass$g(VictoryBrushContainer, [{ - key: "getSelectBox", - value: function getSelectBox(props, coordinates) { - var x = coordinates.x, - y = coordinates.y; - var brushStyle = props.brushStyle, - brushComponent = props.brushComponent, - name = props.name; - var brushComponentStyle = brushComponent.props && brushComponent.props.style; - var cursor = !props.allowDrag && !props.allowResize ? "auto" : "move"; - return x[0] !== x[1] && y[0] !== y[1] ? React__default.cloneElement(brushComponent, { - key: "".concat(name, "-brush"), - width: Math.abs(x[1] - x[0]) || 1, - height: Math.abs(y[1] - y[0]) || 1, - x: Math.min(x[0], x[1]), - y: Math.min(y[0], y[1]), - cursor: cursor, - style: defaults_1({}, brushComponentStyle, brushStyle) - }) : null; - } - }, { - key: "getCursorPointers", - value: function getCursorPointers(props) { - var cursors = { - yProps: "ns-resize", - xProps: "ew-resize" - }; - - if (!props.allowResize && props.allowDrag) { - cursors.xProps = "move"; - cursors.yProps = "move"; - } else if (!props.allowResize && !props.allowDrag) { - cursors.xProps = "auto"; - cursors.yProps = "auto"; - } - - return cursors; - } - }, { - key: "getHandles", - value: function getHandles(props, domain) { - var handleWidth = props.handleWidth, - handleStyle = props.handleStyle, - handleComponent = props.handleComponent, - name = props.name; - var domainBox = BrushHelpers.getDomainBox(props, domain); - var x1 = domainBox.x1, - x2 = domainBox.x2, - y1 = domainBox.y1, - y2 = domainBox.y2; - - var _BrushHelpers$getHand = BrushHelpers.getHandles(props, domainBox), - top = _BrushHelpers$getHand.top, - bottom = _BrushHelpers$getHand.bottom, - left = _BrushHelpers$getHand.left, - right = _BrushHelpers$getHand.right; - - var width = Math.abs(x2 - x1) || 1; - var height = Math.abs(y2 - y1) || 1; - var handleComponentStyle = handleComponent.props && handleComponent.props.style || {}; - - var style = defaults_1({}, handleComponentStyle, handleStyle); - - var cursors = this.getCursorPointers(props); - var yProps = { - style: style, - width: width, - height: handleWidth, - cursor: cursors.yProps - }; - var xProps = { - style: style, - width: handleWidth, - height: height, - cursor: cursors.xProps - }; - var handleProps = { - top: top && assign_1({ - x: top.x1, - y: top.y1 - }, yProps), - bottom: bottom && assign_1({ - x: bottom.x1, - y: bottom.y1 - }, yProps), - left: left && assign_1({ - y: left.y1, - x: left.x1 - }, xProps), - right: right && assign_1({ - y: right.y1, - x: right.x1 - }, xProps) - }; - var handles = ["top", "bottom", "left", "right"].reduce(function (memo, curr) { - memo = handleProps[curr] ? memo.concat(React__default.cloneElement(handleComponent, assign_1({ - key: "".concat(name, "-handle-").concat(curr) - }, handleProps[curr]))) : memo; - return memo; - }, []); - return handles.length ? handles : null; - } - }, { - key: "getRect", - value: function getRect(props) { - var currentDomain = props.currentDomain, - cachedBrushDomain = props.cachedBrushDomain; - - var brushDomain = defaults_1({}, props.brushDomain, props.domain); - - var domain = reactFastCompare(brushDomain, cachedBrushDomain) ? defaults_1({}, currentDomain, brushDomain) : brushDomain; - var coordinates = Selection.getDomainCoordinates(props, domain); - var selectBox = this.getSelectBox(props, coordinates); - return selectBox ? [selectBox, this.getHandles(props, domain)] : []; - } // Overrides method in VictoryContainer - - }, { - key: "getChildren", - value: function getChildren(props) { - return _toConsumableArray$j(React__default.Children.toArray(props.children)).concat(_toConsumableArray$j(this.getRect(props))); - } - }]); - - return VictoryBrushContainer; - }(base), Object.defineProperty(_class, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryBrushContainer" - }), Object.defineProperty(_class, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$j({}, VictoryContainer.propTypes, { - allowDrag: propTypes.bool, - allowDraw: propTypes.bool, - allowResize: propTypes.bool, - brushComponent: propTypes.element, - brushDimension: propTypes.oneOf(["x", "y"]), - brushDomain: propTypes.shape({ - x: propTypes.array, - y: propTypes.array - }), - brushStyle: propTypes.object, - defaultBrushArea: propTypes.oneOf(["all", "disable", "none", "move"]), - disable: propTypes.bool, - handleComponent: propTypes.element, - handleStyle: propTypes.object, - handleWidth: propTypes.number, - onBrushCleared: propTypes.func, - onBrushDomainChange: propTypes.func, - onBrushDomainChangeEnd: propTypes.func - }) - }), Object.defineProperty(_class, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$j({}, VictoryContainer.defaultProps, { - allowDrag: true, - allowDraw: true, - allowResize: true, - brushComponent: React__default.createElement(Rect, null), - brushStyle: { - stroke: "transparent", - fill: "black", - fillOpacity: 0.1 - }, - handleComponent: React__default.createElement(Rect, null), - handleStyle: { - stroke: "transparent", - fill: "transparent" - }, - handleWidth: 8, - mouseMoveThreshold: 0 - }) - }), Object.defineProperty(_class, "defaultEvents", { - configurable: true, - enumerable: true, - writable: true, - value: function (props) { - return [{ - target: "parent", - eventHandlers: { - onMouseDown: function (evt, targetProps) { - return props.disable ? {} : BrushHelpers.onMouseDown(evt, targetProps); - }, - onTouchStart: function (evt, targetProps) { - return props.disable ? {} : BrushHelpers.onMouseDown(evt, targetProps); - }, - onGlobalMouseMove: function (evt, targetProps) { - return props.disable || !targetProps.isPanning && !targetProps.isSelecting ? {} : BrushHelpers.onGlobalMouseMove(evt, targetProps); - }, - onGlobalTouchMove: function (evt, targetProps) { - return props.disable || !targetProps.isPanning && !targetProps.isSelecting ? {} : BrushHelpers.onGlobalMouseMove(evt, targetProps); - }, - onGlobalMouseUp: function (evt, targetProps) { - return props.disable ? {} : BrushHelpers.onGlobalMouseUp(evt, targetProps); - }, - onGlobalTouchEnd: function (evt, targetProps) { - return props.disable ? {} : BrushHelpers.onGlobalMouseUp(evt, targetProps); - }, - onGlobalTouchCancel: function (evt, targetProps) { - return props.disable ? {} : BrushHelpers.onGlobalMouseUp(evt, targetProps); - } - } - }]; - } - }), _temp; -}; -brushContainerMixin(VictoryContainer); - -function _objectSpread$k(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$o(target, key, source[key]); }); } return target; } - -function _defineProperty$o(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } -var ON_MOUSE_MOVE_THROTTLE_MS = 16; -var CursorHelpers = { - getDimension: function (props) { - var horizontal = props.horizontal, - cursorDimension = props.cursorDimension; - - if (!horizontal || !cursorDimension) { - return cursorDimension; - } - - return cursorDimension === "x" ? "y" : "x"; - }, - withinBounds: function (point, bounds) { - var _mapValues2 = mapValues_1(bounds, Number), - x1 = _mapValues2.x1, - x2 = _mapValues2.x2, - y1 = _mapValues2.y1, - y2 = _mapValues2.y2; - - var _mapValues3 = mapValues_1(point, Number), - x = _mapValues3.x, - y = _mapValues3.y; - - return x >= Math.min(x1, x2) && x <= Math.max(x1, x2) && y >= Math.min(y1, y2) && y <= Math.max(y1, y2); - }, - onMouseMove: function (evt, targetProps) { - var onCursorChange = targetProps.onCursorChange, - domain = targetProps.domain; - var cursorDimension = this.getDimension(targetProps); - var parentSVG = targetProps.parentSVG || Selection.getParentSVG(evt); - var cursorSVGPosition = Selection.getSVGEventCoordinates(evt, parentSVG); - var cursorValue = Selection.getDataCoordinates(targetProps, targetProps.scale, cursorSVGPosition.x, cursorSVGPosition.y); - var inBounds = this.withinBounds(cursorValue, { - x1: domain.x[0], - x2: domain.x[1], - y1: domain.y[0], - y2: domain.y[1] - }); - - if (!inBounds) { - cursorValue = null; - } - - if (isFunction_1(onCursorChange)) { - if (inBounds) { - var value = cursorDimension ? cursorValue[cursorDimension] : cursorValue; - onCursorChange(value, targetProps); - } else if (cursorValue !== targetProps.cursorValue) { - onCursorChange(targetProps.defaultCursorValue || null, targetProps); - } - } - - return [{ - target: "parent", - eventKey: "parent", - mutation: function () { - return { - cursorValue: cursorValue, - parentSVG: parentSVG - }; - } - }]; - }, - onTouchEnd: function (evt, targetProps) { - var onCursorChange = targetProps.onCursorChange; - - if (isFunction_1(targetProps.onCursorChange)) { - onCursorChange(null, targetProps); - } - - return [{ - target: "parent", - eventKey: "parent", - mutation: function () { - return { - cursorValue: null - }; - } - }]; - } -}; -var CursorHelpers$1 = _objectSpread$k({}, CursorHelpers, { - onMouseMove: throttle_1(CursorHelpers.onMouseMove.bind(CursorHelpers), ON_MOUSE_MOVE_THROTTLE_MS, { - leading: true, - trailing: false - }), - onMouseLeave: CursorHelpers.onMouseMove.bind(CursorHelpers), - onTouchEnd: CursorHelpers.onTouchEnd.bind(CursorHelpers) -}); - -function _objectSpread$l(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$p(target, key, source[key]); }); } return target; } - -function _toConsumableArray$k(arr) { return _arrayWithoutHoles$k(arr) || _iterableToArray$k(arr) || _nonIterableSpread$k(); } - -function _nonIterableSpread$k() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$k(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$k(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function _defineProperty$p(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _classCallCheck$h(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$h(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$h(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$h(Constructor.prototype, protoProps); if (staticProps) _defineProperties$h(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$g(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$g(self); } - -function _assertThisInitialized$g(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _inherits$g(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } -var cursorContainerMixin = function (base) { - var _class, _temp; - - return _temp = _class = - /*#__PURE__*/ - function (_base) { - _inherits$g(VictoryCursorContainer, _base); - - function VictoryCursorContainer() { - _classCallCheck$h(this, VictoryCursorContainer); - - return _possibleConstructorReturn$g(this, (VictoryCursorContainer.__proto__ || Object.getPrototypeOf(VictoryCursorContainer)).apply(this, arguments)); - } - - _createClass$h(VictoryCursorContainer, [{ - key: "getCursorPosition", - value: function getCursorPosition(props) { - var cursorValue = props.cursorValue, - defaultCursorValue = props.defaultCursorValue, - domain = props.domain, - cursorDimension = props.cursorDimension; - - if (cursorValue) { - return cursorValue; - } - - if (typeof defaultCursorValue === "number") { - return _defineProperty$p({ - x: (domain.x[0] + domain.x[1]) / 2, - y: (domain.y[0] + domain.y[1]) / 2 - }, cursorDimension, defaultCursorValue); - } - - return defaultCursorValue; - } - }, { - key: "getCursorLabelOffset", - value: function getCursorLabelOffset(props) { - var cursorLabelOffset = props.cursorLabelOffset; - - if (typeof cursorLabelOffset === "number") { - return { - x: cursorLabelOffset, - y: cursorLabelOffset - }; - } - - return cursorLabelOffset; - } - }, { - key: "getPadding", - value: function getPadding(props) { - if (props.padding === undefined) { - var child = props.children.find(function (c) { - return isObject_1(c.props) && c.props.padding !== undefined; - }); - return Helpers.getPadding(child.props); - } else { - return Helpers.getPadding(props); - } - } - }, { - key: "getCursorElements", - value: function getCursorElements(props) { - // eslint-disable-line max-statements - var scale = props.scale, - cursorLabelComponent = props.cursorLabelComponent, - cursorLabel = props.cursorLabel, - cursorComponent = props.cursorComponent, - width = props.width, - height = props.height, - name = props.name, - horizontal = props.horizontal, - theme = props.theme; - var cursorDimension = CursorHelpers$1.getDimension(props); - var cursorValue = this.getCursorPosition(props); - var cursorLabelOffset = this.getCursorLabelOffset(props); - - if (!cursorValue) { - return []; - } - - var newElements = []; - var padding = this.getPadding(props); - var cursorCoordinates = { - x: horizontal ? scale.y(cursorValue.y) : scale.x(cursorValue.x), - y: horizontal ? scale.x(cursorValue.x) : scale.y(cursorValue.y) - }; - - if (cursorLabel) { - var labelProps = defaults_1({ - active: true - }, cursorLabelComponent.props, { - x: cursorCoordinates.x + cursorLabelOffset.x, - y: cursorCoordinates.y + cursorLabelOffset.y, - datum: cursorValue, - active: true, - key: "".concat(name, "-cursor-label") - }); - - if (Helpers.isTooltip(cursorLabelComponent)) { - var tooltipTheme = theme && theme.tooltip || {}; - labelProps = defaults_1({}, labelProps, tooltipTheme); - } - - newElements.push(React__default.cloneElement(cursorLabelComponent, defaults_1({}, labelProps, { - text: Helpers.evaluateProp(cursorLabel, labelProps) - }))); - } - - var cursorStyle = assign_1({ - stroke: "black" - }, cursorComponent.props.style); - - if (cursorDimension === "x" || cursorDimension === undefined) { - newElements.push(React__default.cloneElement(cursorComponent, { - key: "".concat(name, "-x-cursor"), - x1: cursorCoordinates.x, - x2: cursorCoordinates.x, - y1: padding.top, - y2: height - padding.bottom, - style: cursorStyle - })); - } - - if (cursorDimension === "y" || cursorDimension === undefined) { - newElements.push(React__default.cloneElement(cursorComponent, { - key: "".concat(name, "-y-cursor"), - x1: padding.left, - x2: width - padding.right, - y1: cursorCoordinates.y, - y2: cursorCoordinates.y, - style: cursorStyle - })); - } - - return newElements; - } // Overrides method in VictoryContainer - - }, { - key: "getChildren", - value: function getChildren(props) { - return _toConsumableArray$k(React__default.Children.toArray(props.children)).concat(_toConsumableArray$k(this.getCursorElements(props))); - } - }]); - - return VictoryCursorContainer; - }(base), Object.defineProperty(_class, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryCursorContainer" - }), Object.defineProperty(_class, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$l({}, VictoryContainer.propTypes, { - cursorDimension: propTypes.oneOf(["x", "y"]), - cursorLabel: propTypes.func, - cursorLabelComponent: propTypes.element, - cursorLabelOffset: propTypes.oneOfType([propTypes.number, propTypes.shape({ - x: propTypes.number, - y: propTypes.number - })]), - defaultCursorValue: propTypes.oneOfType([propTypes.number, propTypes.shape({ - x: propTypes.number, - y: propTypes.number - })]), - disable: propTypes.bool, - onCursorChange: propTypes.func - }) - }), Object.defineProperty(_class, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$l({}, VictoryContainer.defaultProps, { - cursorLabelComponent: React__default.createElement(VictoryLabel, null), - cursorLabelOffset: { - x: 5, - y: -10 - }, - cursorComponent: React__default.createElement(LineSegment, null) - }) - }), Object.defineProperty(_class, "defaultEvents", { - configurable: true, - enumerable: true, - writable: true, - value: function (props) { - return [{ - target: "parent", - eventHandlers: { - onMouseLeave: function (evt, targetProps) { - return props.disable ? {} : CursorHelpers$1.onMouseLeave(evt, targetProps); - }, - onTouchCancel: function () { - return []; - }, - onMouseMove: function (evt, targetProps) { - return props.disable ? {} : CursorHelpers$1.onMouseMove(evt, targetProps); - }, - onTouchMove: function (evt, targetProps) { - return props.disable ? {} : CursorHelpers$1.onMouseMove(evt, targetProps); - } - } - }]; - } - }), _temp; -}; -cursorContainerMixin(VictoryContainer); - -function _objectSpread$m(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$q(target, key, source[key]); }); } return target; } - -function _defineProperty$q(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _toConsumableArray$l(arr) { return _arrayWithoutHoles$l(arr) || _iterableToArray$l(arr) || _nonIterableSpread$l(); } - -function _nonIterableSpread$l() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$l(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$l(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } -var SelectionHelpers = { - getDimension: function (props) { - var horizontal = props.horizontal, - selectionDimension = props.selectionDimension; - - if (!horizontal || !selectionDimension) { - return selectionDimension; - } - - return selectionDimension === "x" ? "y" : "x"; - }, - getDatasets: function (props) { - if (props.data) { - return [{ - data: props.data - }]; - } - - var getData = function (childProps) { - var data = Data.getData(childProps); - return Array.isArray(data) && data.length > 0 ? data : undefined; - }; - - var iteratee = function (child, childName, parent) { - var blacklist = props.selectionBlacklist || []; - - if (!Data.isDataComponent(child) || includes_1(blacklist, childName)) { - return null; - } else if (child.type && isFunction_1(child.type.getData)) { - child = parent ? React__default.cloneElement(child, parent.props) : child; - var childData = child.props && child.type.getData(child.props); - return childData ? { - childName: childName, - data: childData - } : null; - } else { - var _childData = getData(child.props); - - return _childData ? { - childName: childName, - data: _childData - } : null; - } - }; - - return Helpers.reduceChildren(React__default.Children.toArray(props.children), iteratee, props); - }, - filterDatasets: function (props, datasets, bounds) { - var _this = this; - - var filtered = datasets.reduce(function (memo, dataset) { - var selectedData = _this.getSelectedData(props, dataset.data, bounds); - - memo = selectedData ? memo.concat({ - childName: dataset.childName, - eventKey: selectedData.eventKey, - data: selectedData.data - }) : memo; - return memo; - }, []); - return filtered.length ? filtered : null; - }, - getSelectedData: function (props, dataset) { - var x1 = props.x1, - y1 = props.y1, - x2 = props.x2, - y2 = props.y2; - - var withinBounds = function (d) { - var scaledPoint = Helpers.scalePoint(props, d); - return scaledPoint.x >= Math.min(x1, x2) && scaledPoint.x <= Math.max(x1, x2) && scaledPoint.y >= Math.min(y1, y2) && scaledPoint.y <= Math.max(y1, y2); - }; - - var eventKey = []; - var data = []; - var count = 0; - - for (var index = 0, len = dataset.length; index < len; index++) { - var datum = dataset[index]; - - if (withinBounds(datum)) { - data[count] = datum; - eventKey[count] = datum.eventKey === undefined ? index : datum.eventKey; - count++; - } - } - - return count > 0 ? { - eventKey: eventKey, - data: data - } : null; - }, - // eslint-disable-next-line complexity, max-statements - onMouseDown: function (evt, targetProps) { - evt.preventDefault(); - var activateSelectedData = targetProps.activateSelectedData, - allowSelection = targetProps.allowSelection, - polar = targetProps.polar, - selectedData = targetProps.selectedData; - - if (!allowSelection) { - return {}; - } - - var dimension = this.getDimension(targetProps); - var parentSVG = targetProps.parentSVG || Selection.getParentSVG(evt); - - var _Selection$getSVGEven = Selection.getSVGEventCoordinates(evt, parentSVG), - x = _Selection$getSVGEven.x, - y = _Selection$getSVGEven.y; - - var x1 = polar || dimension !== "y" ? x : Selection.getDomainCoordinates(targetProps).x[0]; - var y1 = polar || dimension !== "x" ? y : Selection.getDomainCoordinates(targetProps).y[0]; - var x2 = polar || dimension !== "y" ? x : Selection.getDomainCoordinates(targetProps).x[1]; - var y2 = polar || dimension !== "x" ? y : Selection.getDomainCoordinates(targetProps).y[1]; - var mutatedProps = { - x1: x1, - y1: y1, - select: true, - x2: x2, - y2: y2, - parentSVG: parentSVG - }; - - if (selectedData && isFunction_1(targetProps.onSelectionCleared)) { - targetProps.onSelectionCleared(defaults_1({}, mutatedProps, targetProps)); - } - - var parentMutation = [{ - target: "parent", - mutation: function () { - return mutatedProps; - } - }]; - var dataMutation = selectedData && activateSelectedData ? selectedData.map(function (d) { - return { - childName: d.childName, - eventKey: d.eventKey, - target: "data", - mutation: function () { - return null; - } - }; - }) : []; - return parentMutation.concat.apply(parentMutation, _toConsumableArray$l(dataMutation)); - }, - onMouseMove: function (evt, targetProps) { - var allowSelection = targetProps.allowSelection, - select = targetProps.select, - polar = targetProps.polar; - var dimension = this.getDimension(targetProps); - - if (!allowSelection || !select) { - return null; - } else { - var parentSVG = targetProps.parentSVG || Selection.getParentSVG(evt); - - var _Selection$getSVGEven2 = Selection.getSVGEventCoordinates(evt, parentSVG), - x = _Selection$getSVGEven2.x, - y = _Selection$getSVGEven2.y; - - var x2 = polar || dimension !== "y" ? x : Selection.getDomainCoordinates(targetProps).x[1]; - var y2 = polar || dimension !== "x" ? y : Selection.getDomainCoordinates(targetProps).y[1]; - return { - target: "parent", - mutation: function () { - return { - x2: x2, - y2: y2, - parentSVG: parentSVG - }; - } - }; - } - }, - onMouseUp: function (evt, targetProps) { - var activateSelectedData = targetProps.activateSelectedData, - allowSelection = targetProps.allowSelection, - x2 = targetProps.x2, - y2 = targetProps.y2; - - if (!allowSelection) { - return null; - } - - if (!x2 || !y2) { - return [{ - target: "parent", - mutation: function () { - return { - select: false, - x1: null, - x2: null, - y1: null, - y2: null - }; - } - }]; - } - - var datasets = this.getDatasets(targetProps); - var bounds = Selection.getBounds(targetProps); - var selectedData = this.filterDatasets(targetProps, datasets, bounds); - var mutatedProps = { - selectedData: selectedData, - datasets: datasets, - select: false, - x1: null, - x2: null, - y1: null, - y2: null - }; - var callbackMutation = selectedData && isFunction_1(targetProps.onSelection) ? targetProps.onSelection(selectedData, bounds, defaults_1({}, mutatedProps, targetProps)) : {}; - var parentMutation = [{ - target: "parent", - mutation: function () { - return mutatedProps; - } - }]; - var dataMutation = selectedData && activateSelectedData ? selectedData.map(function (d) { - return { - childName: d.childName, - eventKey: d.eventKey, - target: "data", - mutation: function () { - return assign_1({ - active: true - }, callbackMutation); - } - }; - }) : []; - return parentMutation.concat(dataMutation); - } -}; -var SelectionHelpers$1 = _objectSpread$m({}, SelectionHelpers, { - onMouseDown: SelectionHelpers.onMouseDown.bind(SelectionHelpers), - onMouseUp: SelectionHelpers.onMouseUp.bind(SelectionHelpers), - onMouseMove: throttle_1(SelectionHelpers.onMouseMove.bind(SelectionHelpers), 16, // eslint-disable-line no-magic-numbers - { - leading: true, - trailing: false - }) -}); - -function _objectSpread$n(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$r(target, key, source[key]); }); } return target; } - -function _defineProperty$r(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _toConsumableArray$m(arr) { return _arrayWithoutHoles$m(arr) || _iterableToArray$m(arr) || _nonIterableSpread$m(); } - -function _nonIterableSpread$m() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$m(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$m(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function _classCallCheck$i(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$i(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$i(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$i(Constructor.prototype, protoProps); if (staticProps) _defineProperties$i(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$h(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$h(self); } - -function _assertThisInitialized$h(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _inherits$h(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } -var selectionContainerMixin = function (base) { - var _class, _temp; - - return _temp = _class = - /*#__PURE__*/ - function (_base) { - _inherits$h(VictorySelectionContainer, _base); - - function VictorySelectionContainer() { - _classCallCheck$i(this, VictorySelectionContainer); - - return _possibleConstructorReturn$h(this, (VictorySelectionContainer.__proto__ || Object.getPrototypeOf(VictorySelectionContainer)).apply(this, arguments)); - } - - _createClass$i(VictorySelectionContainer, [{ - key: "getRect", - value: function getRect(props) { - var x1 = props.x1, - x2 = props.x2, - y1 = props.y1, - y2 = props.y2, - selectionStyle = props.selectionStyle, - selectionComponent = props.selectionComponent, - name = props.name; - var width = Math.abs(x2 - x1) || 1; - var height = Math.abs(y2 - y1) || 1; - var x = Math.min(x1, x2); - var y = Math.min(y1, y2); - return y2 && x2 && x1 && y1 ? React__default.cloneElement(selectionComponent, { - key: "".concat(name, "-selection"), - x: x, - y: y, - width: width, - height: height, - style: selectionStyle - }) : null; - } // Overrides method in VictoryContainer - - }, { - key: "getChildren", - value: function getChildren(props) { - return _toConsumableArray$m(React__default.Children.toArray(props.children)).concat([this.getRect(props)]); - } - }]); - - return VictorySelectionContainer; - }(base), Object.defineProperty(_class, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictorySelectionContainer" - }), Object.defineProperty(_class, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$n({}, VictoryContainer.propTypes, { - activateSelectedData: propTypes.bool, - allowSelection: propTypes.bool, - disable: propTypes.bool, - onSelection: propTypes.func, - onSelectionCleared: propTypes.func, - selectionBlacklist: propTypes.arrayOf(propTypes.string), - selectionComponent: propTypes.element, - selectionDimension: propTypes.oneOf(["x", "y"]), - selectionStyle: propTypes.object - }) - }), Object.defineProperty(_class, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$n({}, VictoryContainer.defaultProps, { - activateSelectedData: true, - allowSelection: true, - selectionComponent: React__default.createElement(Rect, null), - selectionStyle: { - stroke: "transparent", - fill: "black", - fillOpacity: 0.1 - } - }) - }), Object.defineProperty(_class, "defaultEvents", { - configurable: true, - enumerable: true, - writable: true, - value: function (props) { - return [{ - target: "parent", - eventHandlers: { - onMouseDown: function (evt, targetProps) { - return props.disable ? {} : SelectionHelpers$1.onMouseDown(evt, targetProps); - }, - onTouchStart: function (evt, targetProps) { - return props.disable ? {} : SelectionHelpers$1.onMouseDown(evt, targetProps); - }, - onMouseMove: function (evt, targetProps) { - return props.disable ? {} : SelectionHelpers$1.onMouseMove(evt, targetProps); - }, - onTouchMove: function (evt, targetProps) { - return props.disable ? {} : SelectionHelpers$1.onMouseMove(evt, targetProps); - }, - onMouseUp: function (evt, targetProps) { - return props.disable ? {} : SelectionHelpers$1.onMouseUp(evt, targetProps); - }, - onTouchEnd: function (evt, targetProps) { - return props.disable ? {} : SelectionHelpers$1.onMouseUp(evt, targetProps); - } - } - }]; - } - }), _temp; -}; -selectionContainerMixin(VictoryContainer); - -function _objectSpread$o(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$s(target, key, source[key]); }); } return target; } - -function _defineProperty$s(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -var getVerticalPath = function (props) { - var pointerWidth = props.pointerWidth, - cornerRadius = props.cornerRadius, - orientation = props.orientation, - width = props.width, - height = props.height, - center = props.center; - var sign = orientation === "bottom" ? 1 : -1; - var x = props.x + (props.dx || 0); - var y = props.y + (props.dy || 0); - var centerX = isPlainObject_1(center) && center.x; - var centerY = isPlainObject_1(center) && center.y; - var pointerEdge = centerY + sign * (height / 2); - var oppositeEdge = centerY - sign * (height / 2); - var rightEdge = centerX + width / 2; - var leftEdge = centerX - width / 2; - var pointerLength = sign * (y - pointerEdge) < 0 ? 0 : props.pointerLength; - var direction = orientation === "bottom" ? "0 0 0" : "0 0 1"; - var arc = "".concat(cornerRadius, " ").concat(cornerRadius, " ").concat(direction); - return "M ".concat(centerX - pointerWidth / 2, ", ").concat(pointerEdge, "\n L ").concat(pointerLength ? x : centerX + pointerWidth / 2, ", ").concat(pointerLength ? y : pointerEdge, "\n L ").concat(centerX + pointerWidth / 2, ", ").concat(pointerEdge, "\n L ").concat(rightEdge - cornerRadius, ", ").concat(pointerEdge, "\n A ").concat(arc, " ").concat(rightEdge, ", ").concat(pointerEdge - sign * cornerRadius, "\n L ").concat(rightEdge, ", ").concat(oppositeEdge + sign * cornerRadius, "\n A ").concat(arc, " ").concat(rightEdge - cornerRadius, ", ").concat(oppositeEdge, "\n L ").concat(leftEdge + cornerRadius, ", ").concat(oppositeEdge, "\n A ").concat(arc, " ").concat(leftEdge, ", ").concat(oppositeEdge + sign * cornerRadius, "\n L ").concat(leftEdge, ", ").concat(pointerEdge - sign * cornerRadius, "\n A ").concat(arc, " ").concat(leftEdge + cornerRadius, ", ").concat(pointerEdge, "\n z"); -}; - -var getHorizontalPath = function (props) { - var pointerWidth = props.pointerWidth, - cornerRadius = props.cornerRadius, - orientation = props.orientation, - width = props.width, - height = props.height, - center = props.center; - var sign = orientation === "left" ? 1 : -1; - var x = props.x + (props.dx || 0); - var y = props.y + (props.dy || 0); - var centerX = isPlainObject_1(center) && center.x; - var centerY = isPlainObject_1(center) && center.y; - var pointerEdge = centerX - sign * (width / 2); - var oppositeEdge = centerX + sign * (width / 2); - var bottomEdge = centerY + height / 2; - var topEdge = centerY - height / 2; - var pointerLength = sign * (x - pointerEdge) > 0 ? 0 : props.pointerLength; - var direction = orientation === "left" ? "0 0 0" : "0 0 1"; - var arc = "".concat(cornerRadius, " ").concat(cornerRadius, " ").concat(direction); - return "M ".concat(pointerEdge, ", ").concat(centerY - pointerWidth / 2, "\n L ").concat(pointerLength ? x : pointerEdge, ", ").concat(pointerLength ? y : centerY + pointerWidth / 2, "\n L ").concat(pointerEdge, ", ").concat(centerY + pointerWidth / 2, "\n L ").concat(pointerEdge, ", ").concat(bottomEdge - cornerRadius, "\n A ").concat(arc, " ").concat(pointerEdge + sign * cornerRadius, ", ").concat(bottomEdge, "\n L ").concat(oppositeEdge - sign * cornerRadius, ", ").concat(bottomEdge, "\n A ").concat(arc, " ").concat(oppositeEdge, ", ").concat(bottomEdge - cornerRadius, "\n L ").concat(oppositeEdge, ", ").concat(topEdge + cornerRadius, "\n A ").concat(arc, " ").concat(oppositeEdge - sign * cornerRadius, ", ").concat(topEdge, "\n L ").concat(pointerEdge + sign * cornerRadius, ", ").concat(topEdge, "\n A ").concat(arc, " ").concat(pointerEdge, ", ").concat(topEdge + cornerRadius, "\n z"); -}; - -var getFlyoutPath = function (props) { - var orientation = props.orientation || "top"; - return orientation === "left" || orientation === "right" ? getHorizontalPath(props) : getVerticalPath(props); -}; - -var evaluateProps$8 = function (props) { - /** - * Potential evaluated props are: - * `id` - * `style` - */ - var id = Helpers.evaluateProp(props.id, props); - var style = Helpers.evaluateStyle(props.style, props); - return assign_1({}, props, { - id: id, - style: style - }); -}; - -var Flyout = function (props) { - props = evaluateProps$8(props); - return React__default.cloneElement(props.pathComponent, _objectSpread$o({}, props.events, { - style: props.style, - d: getFlyoutPath(props), - className: props.className, - shapeRendering: props.shapeRendering, - role: props.role, - transform: props.transform, - clipPath: props.clipPath - })); -}; - -Flyout.propTypes = _objectSpread$o({}, CommonProps.primitiveProps, { - center: propTypes.shape({ - x: propTypes.number, - y: propTypes.number - }), - cornerRadius: propTypes.number, - datum: propTypes.object, - dx: propTypes.number, - dy: propTypes.number, - height: propTypes.number, - orientation: propTypes.oneOf(["top", "bottom", "left", "right"]), - pathComponent: propTypes.element, - pointerLength: propTypes.number, - pointerWidth: propTypes.number, - width: propTypes.number, - x: propTypes.number, - y: propTypes.number -}); -Flyout.defaultProps = { - pathComponent: React__default.createElement(Path, null), - role: "presentation", - shapeRendering: "auto" -}; - -function _toConsumableArray$n(arr) { return _arrayWithoutHoles$n(arr) || _iterableToArray$n(arr) || _nonIterableSpread$n(); } - -function _nonIterableSpread$n() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$n(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$n(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function _classCallCheck$j(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$j(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$j(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$j(Constructor.prototype, protoProps); if (staticProps) _defineProperties$j(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$i(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$i(self); } - -function _assertThisInitialized$i(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _inherits$i(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } -var fallbackProps$9 = { - cornerRadius: 5, - pointerLength: 10, - pointerWidth: 10 -}; - -var VictoryTooltip = -/*#__PURE__*/ -function (_React$Component) { - _inherits$i(VictoryTooltip, _React$Component); - - function VictoryTooltip(props) { - var _this; - - _classCallCheck$j(this, VictoryTooltip); - - _this = _possibleConstructorReturn$i(this, (VictoryTooltip.__proto__ || Object.getPrototypeOf(VictoryTooltip)).call(this, props)); - _this.id = props.id === undefined ? uniqueId_1("tooltip-") : props.id; - return _this; - } - - _createClass$j(VictoryTooltip, [{ - key: "getDefaultOrientation", - value: function getDefaultOrientation(props) { - var datum = props.datum, - horizontal = props.horizontal, - polar = props.polar; - - if (!polar) { - var positive = horizontal ? "right" : "top"; - var negative = horizontal ? "left" : "bottom"; - return datum && datum.y < 0 ? negative : positive; - } else { - return this.getPolarOrientation(props, datum); - } - } - }, { - key: "getPolarOrientation", - value: function getPolarOrientation(props, datum) { - var degrees = LabelHelpers.getDegrees(props, datum); - var placement = props.labelPlacement || "vertical"; - - if (placement === " vertical") { - return this.getVerticalOrientations(degrees); - } else if (placement === "parallel") { - return degrees < 90 || degrees > 270 ? "right" : "left"; - } else { - return degrees > 180 ? "bottom" : "top"; - } - } - }, { - key: "getVerticalOrientations", - value: function getVerticalOrientations(degrees) { - // eslint-disable-next-line no-magic-numbers - if (degrees < 45 || degrees > 315) { - return "right"; // eslint-disable-next-line no-magic-numbers - } else if (degrees >= 45 && degrees <= 135) { - return "top"; // eslint-disable-next-line no-magic-numbers - } else if (degrees > 135 && degrees < 225) { - return "left"; - } else { - return "bottom"; - } - } - }, { - key: "getStyles", - value: function getStyles(props) { - var theme = props.theme || VictoryTheme.grayscale; - var defaultLabelStyles = theme && theme.tooltip && theme.tooltip.style ? theme.tooltip.style : {}; - var baseLabelStyle = Array.isArray(props.style) ? props.style.map(function (s) { - return defaults_1({}, s, defaultLabelStyles); - }) : defaults_1({}, props.style, defaultLabelStyles); - var defaultFlyoutStyles = theme && theme.tooltip && theme.tooltip.flyoutStyle ? theme.tooltip.flyoutStyle : {}; - var baseFlyoutStyle = props.flyoutStyle ? defaults_1({}, props.flyoutStyle, defaultFlyoutStyles) : defaultFlyoutStyles; - var style = Array.isArray(baseLabelStyle) ? baseLabelStyle.map(function (s) { - return Helpers.evaluateStyle(s, props); - }) : Helpers.evaluateStyle(baseLabelStyle, props); - var flyoutStyle = Helpers.evaluateStyle(baseFlyoutStyle, assign_1({}, props, { - style: style - })); - return { - style: style, - flyoutStyle: flyoutStyle - }; - } - }, { - key: "getEvaluatedProps", - value: function getEvaluatedProps(props) { - var cornerRadius = props.cornerRadius, - centerOffset = props.centerOffset, - dx = props.dx, - dy = props.dy; - var active = Helpers.evaluateProp(props.active, props); - var text = Helpers.evaluateProp(props.text, assign_1({}, props, { - active: active - })); - - var _getStyles = this.getStyles(assign_1({}, props, { - active: active, - text: text - })), - style = _getStyles.style, - flyoutStyle = _getStyles.flyoutStyle; - - var orientation = Helpers.evaluateProp(props.orientation, assign_1({}, props, { - active: active, - text: text, - style: style, - flyoutStyle: flyoutStyle - })) || this.getDefaultOrientation(props); - var padding = Helpers.evaluateProp(props.flyoutPadding, assign_1({}, props, { - active: active, - text: text, - style: style, - flyoutStyle: flyoutStyle, - orientation: orientation - })) || this.getLabelPadding(style); - var flyoutPadding = Helpers.getPadding({ - padding: padding - }); - var pointerWidth = Helpers.evaluateProp(props.pointerWidth, assign_1({}, props, { - active: active, - text: text, - style: style, - flyoutStyle: flyoutStyle, - orientation: orientation - })); - var pointerLength = Helpers.evaluateProp(props.pointerLength, assign_1({}, props, { - active: active, - text: text, - style: style, - flyoutStyle: flyoutStyle, - orientation: orientation - })); - var labelSize = TextSize.approximateTextSize(text, style); - - var _getDimensions = this.getDimensions(assign_1({}, props, { - style: style, - flyoutStyle: flyoutStyle, - active: active, - text: text, - orientation: orientation, - flyoutPadding: flyoutPadding, - pointerWidth: pointerWidth, - pointerLength: pointerLength - }), labelSize), - flyoutHeight = _getDimensions.flyoutHeight, - flyoutWidth = _getDimensions.flyoutWidth; - - var evaluatedProps = assign_1({}, props, { - active: active, - text: text, - style: style, - flyoutStyle: flyoutStyle, - orientation: orientation, - flyoutHeight: flyoutHeight, - flyoutWidth: flyoutWidth, - flyoutPadding: flyoutPadding, - pointerWidth: pointerWidth, - pointerLength: pointerLength - }); - - var offsetX = isPlainObject_1(centerOffset) && centerOffset.x !== undefined ? Helpers.evaluateProp(centerOffset.x, evaluatedProps) : 0; - var offsetY = isPlainObject_1(centerOffset) && centerOffset.y !== undefined ? Helpers.evaluateProp(centerOffset.y, evaluatedProps) : 0; - return assign_1({}, evaluatedProps, { - centerOffset: { - x: offsetX, - y: offsetY - }, - dx: dx !== undefined ? Helpers.evaluateProp(dx, evaluatedProps) : 0, - dy: dy !== undefined ? Helpers.evaluateProp(dy, evaluatedProps) : 0, - cornerRadius: Helpers.evaluateProp(cornerRadius, evaluatedProps) - }); - } - }, { - key: "getCalculatedValues", - value: function getCalculatedValues(props) { - var style = props.style, - text = props.text, - flyoutStyle = props.flyoutStyle, - flyoutHeight = props.flyoutHeight, - flyoutWidth = props.flyoutWidth; - var labelSize = TextSize.approximateTextSize(text, style); - var flyoutDimensions = { - height: flyoutHeight, - width: flyoutWidth - }; - var flyoutCenter = this.getFlyoutCenter(props, flyoutDimensions); - var transform = this.getTransform(props); - return { - style: style, - flyoutStyle: flyoutStyle, - labelSize: labelSize, - flyoutDimensions: flyoutDimensions, - flyoutCenter: flyoutCenter, - transform: transform - }; - } - }, { - key: "getTransform", - value: function getTransform(props) { - var x = props.x, - y = props.y, - style = props.style; - var labelStyle = style || {}; - var angle = labelStyle.angle || props.angle || this.getDefaultAngle(props); - return angle ? "rotate(".concat(angle, " ").concat(x, " ").concat(y, ")") : undefined; - } // eslint-disable-next-line complexity - - }, { - key: "getDefaultAngle", - value: function getDefaultAngle(props) { - var polar = props.polar, - labelPlacement = props.labelPlacement, - orientation = props.orientation, - datum = props.datum; - - if (!polar || !labelPlacement || labelPlacement === "vertical") { - return 0; - } - - var degrees = LabelHelpers.getDegrees(props, datum); - var sign = degrees > 90 && degrees < 180 || degrees > 270 ? 1 : -1; - var labelRotation = labelPlacement === "perpendicular" ? 0 : 90; - var angle; - - if (degrees === 0 || degrees === 180) { - angle = orientation === "top" && degrees === 180 ? 270 : 90; - } else if (degrees > 0 && degrees < 180) { - angle = 90 - degrees; - } else if (degrees > 180 && degrees < 360) { - angle = 270 - degrees; - } - - return angle + sign * labelRotation; - } - }, { - key: "constrainTooltip", - value: function constrainTooltip(center, props, dimensions) { - var x = center.x, - y = center.y; - var width = dimensions.width, - height = dimensions.height; - var extent = { - x: [0, props.width], - y: [0, props.height] - }; - var flyoutExtent = { - x: [x - width / 2, x + width / 2], - y: [y - height / 2, y + height / 2] - }; - var adjustments = { - x: [flyoutExtent.x[0] < extent.x[0] ? extent.x[0] - flyoutExtent.x[0] : 0, flyoutExtent.x[1] > extent.x[1] ? flyoutExtent.x[1] - extent.x[1] : 0], - y: [flyoutExtent.y[0] < extent.y[0] ? extent.y[0] - flyoutExtent.y[0] : 0, flyoutExtent.y[1] > extent.y[1] ? flyoutExtent.y[1] - extent.y[1] : 0] - }; - return { - x: Math.round(x + adjustments.x[0] - adjustments.x[1]), - y: Math.round(y + adjustments.y[0] - adjustments.y[1]) - }; - } // eslint-disable-next-line complexity - - }, { - key: "getFlyoutCenter", - value: function getFlyoutCenter(props, dimensions) { - var x = props.x, - y = props.y, - dx = props.dx, - dy = props.dy, - pointerLength = props.pointerLength, - orientation = props.orientation, - constrainToVisibleArea = props.constrainToVisibleArea, - centerOffset = props.centerOffset; - var height = dimensions.height, - width = dimensions.width; - var xSign = orientation === "left" ? -1 : 1; - var ySign = orientation === "bottom" ? -1 : 1; - var flyoutCenter = { - x: orientation === "left" || orientation === "right" ? x + xSign * (pointerLength + width / 2 + xSign * dx) : x + dx, - y: orientation === "top" || orientation === "bottom" ? y - ySign * (pointerLength + height / 2 - ySign * dy) : y + dy - }; - var center = { - x: isPlainObject_1(props.center) && props.center.x !== undefined ? props.center.x : flyoutCenter.x, - y: isPlainObject_1(props.center) && props.center.y !== undefined ? props.center.y : flyoutCenter.y - }; - var centerWithOffset = { - x: center.x + centerOffset.x, - y: center.y + centerOffset.y - }; - return constrainToVisibleArea ? this.constrainTooltip(centerWithOffset, props, dimensions) : centerWithOffset; - } - }, { - key: "getLabelPadding", - value: function getLabelPadding(style) { - if (!style) { - return 0; - } - - var paddings = Array.isArray(style) ? style.map(function (s) { - return s.padding; - }) : [style.padding]; - return Math.max.apply(Math, _toConsumableArray$n(paddings).concat([0])); - } - }, { - key: "getDimensions", - value: function getDimensions(props, labelSize) { - var orientation = props.orientation, - pointerLength = props.pointerLength, - pointerWidth = props.pointerWidth, - flyoutHeight = props.flyoutHeight, - flyoutWidth = props.flyoutWidth, - flyoutPadding = props.flyoutPadding; - var cornerRadius = Helpers.evaluateProp(props.cornerRadius, props); - - var getHeight = function () { - var calculatedHeight = labelSize.height + flyoutPadding.top + flyoutPadding.bottom; - var minHeight = orientation === "top" || orientation === "bottom" ? 2 * cornerRadius : 2 * cornerRadius + pointerWidth; - return Math.max(minHeight, calculatedHeight); - }; - - var getWidth = function () { - var calculatedWidth = labelSize.width + flyoutPadding.left + flyoutPadding.right; - var minWidth = orientation === "left" || orientation === "right" ? 2 * cornerRadius + pointerLength : 2 * cornerRadius; - return Math.max(minWidth, calculatedWidth); - }; - - return { - flyoutHeight: flyoutHeight ? Helpers.evaluateProp(flyoutHeight, props) : getHeight(), - flyoutWidth: flyoutWidth ? Helpers.evaluateProp(flyoutWidth, props) : getWidth() - }; - } - }, { - key: "getLabelProps", - value: function getLabelProps(props, calculatedValues) { - var flyoutCenter = calculatedValues.flyoutCenter, - style = calculatedValues.style, - labelSize = calculatedValues.labelSize, - _calculatedValues$dy = calculatedValues.dy, - dy = _calculatedValues$dy === void 0 ? 0 : _calculatedValues$dy, - _calculatedValues$dx = calculatedValues.dx, - dx = _calculatedValues$dx === void 0 ? 0 : _calculatedValues$dx; - var text = props.text, - datum = props.datum, - activePoints = props.activePoints, - labelComponent = props.labelComponent, - index = props.index, - flyoutPadding = props.flyoutPadding; - var textAnchor = (Array.isArray(style) && style.length ? style[0].textAnchor : style.textAnchor) || "middle"; - - var getLabelX = function () { - if (!textAnchor || textAnchor === "middle") { - return flyoutCenter.x; - } - - var sign = textAnchor === "end" ? -1 : 1; - return flyoutCenter.x - sign * (labelSize.width / 2); - }; - - return defaults_1({}, labelComponent.props, { - key: "".concat(this.id, "-label-").concat(index), - text: text, - datum: datum, - activePoints: activePoints, - textAnchor: textAnchor, - dy: dy, - dx: dx, - style: style, - x: getLabelX() + (flyoutPadding.left - flyoutPadding.right) / 2, - y: flyoutCenter.y + (flyoutPadding.top - flyoutPadding.bottom) / 2, - verticalAnchor: "middle", - angle: style.angle - }); - } - }, { - key: "getPointerOrientation", - value: function getPointerOrientation(point, center, flyoutDimensions) { - var edges = { - bottom: center.y + flyoutDimensions.height / 2, - top: center.y - flyoutDimensions.height / 2, - left: center.x - flyoutDimensions.width / 2, - right: center.x + flyoutDimensions.width / 2 - }; - var gaps = [{ - side: "top", - val: edges.top > point.y ? edges.top - point.y : -1 - }, { - side: "bottom", - val: edges.bottom < point.y ? point.y - edges.bottom : -1 - }, { - side: "right", - val: edges.right < point.x ? point.x - edges.right : -1 - }, { - side: "left", - val: edges.left > point.x ? edges.left - point.x : -1 - }]; - return orderBy_1(gaps, "val", "desc")[0].side; - } - }, { - key: "getFlyoutProps", - value: function getFlyoutProps(props, calculatedValues) { - var flyoutDimensions = calculatedValues.flyoutDimensions, - flyoutStyle = calculatedValues.flyoutStyle, - flyoutCenter = calculatedValues.flyoutCenter; - var x = props.x, - y = props.y, - dx = props.dx, - dy = props.dy, - datum = props.datum, - activePoints = props.activePoints, - index = props.index, - pointerLength = props.pointerLength, - pointerWidth = props.pointerWidth, - cornerRadius = props.cornerRadius, - events = props.events, - flyoutComponent = props.flyoutComponent; - var pointerOrientation = Helpers.evaluateProp(props.pointerOrientation, props); - return defaults_1({}, flyoutComponent.props, { - x: x, - y: y, - dx: dx, - dy: dy, - datum: datum, - activePoints: activePoints, - index: index, - pointerLength: pointerLength, - pointerWidth: pointerWidth, - cornerRadius: cornerRadius, - events: events, - orientation: pointerOrientation || this.getPointerOrientation({ - x: x, - y: y - }, flyoutCenter, flyoutDimensions), - key: "".concat(this.id, "-tooltip-").concat(index), - width: flyoutDimensions.width, - height: flyoutDimensions.height, - style: flyoutStyle, - center: flyoutCenter - }); - } // Overridden in victory-core-native - - }, { - key: "renderTooltip", - value: function renderTooltip(props) { - var evaluatedProps = this.getEvaluatedProps(props); - var flyoutComponent = evaluatedProps.flyoutComponent, - labelComponent = evaluatedProps.labelComponent, - groupComponent = evaluatedProps.groupComponent, - active = evaluatedProps.active, - renderInPortal = evaluatedProps.renderInPortal; - - if (!active) { - return renderInPortal ? React__default.createElement(VictoryPortal, null, null) : null; - } - - var calculatedValues = this.getCalculatedValues(evaluatedProps); - var children = [React__default.cloneElement(flyoutComponent, this.getFlyoutProps(evaluatedProps, calculatedValues)), React__default.cloneElement(labelComponent, this.getLabelProps(evaluatedProps, calculatedValues))]; - var tooltip = React__default.cloneElement(groupComponent, { - role: "presentation", - transform: calculatedValues.transform - }, children); - return renderInPortal ? React__default.createElement(VictoryPortal, null, tooltip) : tooltip; - } - }, { - key: "render", - value: function render() { - var props = Helpers.modifyProps(this.props, fallbackProps$9, "tooltip"); - return this.renderTooltip(props); - } - }]); - - return VictoryTooltip; -}(React__default.Component); - -Object.defineProperty(VictoryTooltip, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryTooltip" -}); -Object.defineProperty(VictoryTooltip, "role", { - configurable: true, - enumerable: true, - writable: true, - value: "tooltip" -}); -Object.defineProperty(VictoryTooltip, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: { - activateData: propTypes.bool, - active: propTypes.oneOfType([propTypes.bool, propTypes.func]), - activePoints: propTypes.array, - angle: propTypes.number, - center: propTypes.shape({ - x: CustomPropTypes.nonNegative, - y: CustomPropTypes.nonNegative - }), - centerOffset: propTypes.shape({ - x: propTypes.oneOfType([propTypes.number, propTypes.func]), - y: propTypes.oneOfType([propTypes.number, propTypes.func]) - }), - constrainToVisibleArea: propTypes.bool, - cornerRadius: propTypes.oneOfType([CustomPropTypes.nonNegative, propTypes.func]), - data: propTypes.array, - datum: propTypes.object, - dx: propTypes.oneOfType([propTypes.number, propTypes.func]), - dy: propTypes.oneOfType([propTypes.number, propTypes.func]), - events: propTypes.object, - flyoutComponent: propTypes.element, - flyoutHeight: propTypes.oneOfType([CustomPropTypes.nonNegative, propTypes.func]), - flyoutPadding: propTypes.oneOfType([propTypes.func, propTypes.number, propTypes.shape({ - top: propTypes.number, - bottom: propTypes.number, - left: propTypes.number, - right: propTypes.number - })]), - flyoutStyle: propTypes.object, - flyoutWidth: propTypes.oneOfType([CustomPropTypes.nonNegative, propTypes.func]), - groupComponent: propTypes.element, - height: propTypes.number, - horizontal: propTypes.bool, - id: propTypes.oneOfType([propTypes.number, propTypes.string]), - index: propTypes.oneOfType([propTypes.number, propTypes.string]), - labelComponent: propTypes.element, - orientation: propTypes.oneOfType([propTypes.oneOf(["top", "bottom", "left", "right"]), propTypes.func]), - pointerLength: propTypes.oneOfType([CustomPropTypes.nonNegative, propTypes.func]), - pointerOrientation: propTypes.oneOfType([propTypes.oneOf(["top", "bottom", "left", "right"]), propTypes.func]), - pointerWidth: propTypes.oneOfType([CustomPropTypes.nonNegative, propTypes.func]), - polar: propTypes.bool, - renderInPortal: propTypes.bool, - scale: propTypes.shape({ - x: CustomPropTypes.scale, - y: CustomPropTypes.scale - }), - style: propTypes.oneOfType([propTypes.object, propTypes.array]), - text: propTypes.oneOfType([propTypes.string, propTypes.number, propTypes.func, propTypes.array]), - theme: propTypes.object, - width: propTypes.number, - x: propTypes.number, - y: propTypes.number - } -}); -Object.defineProperty(VictoryTooltip, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: { - active: false, - renderInPortal: true, - labelComponent: React__default.createElement(VictoryLabel, null), - flyoutComponent: React__default.createElement(Flyout, null), - groupComponent: React__default.createElement("g", null) - } -}); -Object.defineProperty(VictoryTooltip, "defaultEvents", { - configurable: true, - enumerable: true, - writable: true, - value: function (props) { - var activate = props.activateData ? [{ - target: "labels", - mutation: function () { - return { - active: true - }; - } - }, { - target: "data", - mutation: function () { - return { - active: true - }; - } - }] : [{ - target: "labels", - mutation: function () { - return { - active: true - }; - } - }]; - var deactivate = props.activateData ? [{ - target: "labels", - mutation: function () { - return { - active: undefined - }; - } - }, { - target: "data", - mutation: function () { - return { - active: undefined - }; - } - }] : [{ - target: "labels", - mutation: function () { - return { - active: undefined - }; - } - }]; - return [{ - target: "data", - eventHandlers: { - onMouseOver: function () { - return activate; - }, - onFocus: function () { - return activate; - }, - onTouchStart: function () { - return activate; - }, - onMouseOut: function () { - return deactivate; - }, - onBlur: function () { - return deactivate; - }, - onTouchEnd: function () { - return deactivate; - } - } - }]; - } -}); - -var delaunator = createCommonjsModule(function (module, exports) { -(function (global, factory) { - module.exports = factory() ; -}(this, function () { - var EPSILON = Math.pow(2, -52); - var EDGE_STACK = new Uint32Array(512); - - var Delaunator = function Delaunator(coords) { - var n = coords.length >> 1; - if (n > 0 && typeof coords[0] !== 'number') { throw new Error('Expected coords to contain numbers.'); } - - this.coords = coords; - - // arrays that will store the triangulation graph - var maxTriangles = Math.max(2 * n - 5, 0); - this._triangles = new Uint32Array(maxTriangles * 3); - this._halfedges = new Int32Array(maxTriangles * 3); - - // temporary arrays for tracking the edges of the advancing convex hull - this._hashSize = Math.ceil(Math.sqrt(n)); - this._hullPrev = new Uint32Array(n); // edge to prev edge - this._hullNext = new Uint32Array(n); // edge to next edge - this._hullTri = new Uint32Array(n); // edge to adjacent triangle - this._hullHash = new Int32Array(this._hashSize).fill(-1); // angular edge hash - - // temporary arrays for sorting points - this._ids = new Uint32Array(n); - this._dists = new Float64Array(n); - - this.update(); - }; - - Delaunator.from = function from (points, getX, getY) { - if ( getX === void 0 ) getX = defaultGetX; - if ( getY === void 0 ) getY = defaultGetY; - - var n = points.length; - var coords = new Float64Array(n * 2); - - for (var i = 0; i < n; i++) { - var p = points[i]; - coords[2 * i] = getX(p); - coords[2 * i + 1] = getY(p); - } - - return new Delaunator(coords); - }; - - Delaunator.prototype.update = function update () { - var ref = this; - var coords = ref.coords; - var hullPrev = ref._hullPrev; - var hullNext = ref._hullNext; - var hullTri = ref._hullTri; - var hullHash = ref._hullHash; - var n = coords.length >> 1; - - // populate an array of point indices; calculate input data bbox - var minX = Infinity; - var minY = Infinity; - var maxX = -Infinity; - var maxY = -Infinity; - - for (var i = 0; i < n; i++) { - var x = coords[2 * i]; - var y = coords[2 * i + 1]; - if (x < minX) { minX = x; } - if (y < minY) { minY = y; } - if (x > maxX) { maxX = x; } - if (y > maxY) { maxY = y; } - this._ids[i] = i; - } - var cx = (minX + maxX) / 2; - var cy = (minY + maxY) / 2; - - var minDist = Infinity; - var i0, i1, i2; - - // pick a seed point close to the center - for (var i$1 = 0; i$1 < n; i$1++) { - var d = dist(cx, cy, coords[2 * i$1], coords[2 * i$1 + 1]); - if (d < minDist) { - i0 = i$1; - minDist = d; - } - } - var i0x = coords[2 * i0]; - var i0y = coords[2 * i0 + 1]; - - minDist = Infinity; - - // find the point closest to the seed - for (var i$2 = 0; i$2 < n; i$2++) { - if (i$2 === i0) { continue; } - var d$1 = dist(i0x, i0y, coords[2 * i$2], coords[2 * i$2 + 1]); - if (d$1 < minDist && d$1 > 0) { - i1 = i$2; - minDist = d$1; - } - } - var i1x = coords[2 * i1]; - var i1y = coords[2 * i1 + 1]; - - var minRadius = Infinity; - - // find the third point which forms the smallest circumcircle with the first two - for (var i$3 = 0; i$3 < n; i$3++) { - if (i$3 === i0 || i$3 === i1) { continue; } - var r = circumradius(i0x, i0y, i1x, i1y, coords[2 * i$3], coords[2 * i$3 + 1]); - if (r < minRadius) { - i2 = i$3; - minRadius = r; - } - } - var i2x = coords[2 * i2]; - var i2y = coords[2 * i2 + 1]; - - if (minRadius === Infinity) { - // order collinear points by dx (or dy if all x are identical) - // and return the list as a hull - for (var i$4 = 0; i$4 < n; i$4++) { - this._dists[i$4] = (coords[2 * i$4] - coords[0]) || (coords[2 * i$4 + 1] - coords[1]); - } - quicksort(this._ids, this._dists, 0, n - 1); - var hull = new Uint32Array(n); - var j = 0; - for (var i$5 = 0, d0 = -Infinity; i$5 < n; i$5++) { - var id = this._ids[i$5]; - if (this._dists[id] > d0) { - hull[j++] = id; - d0 = this._dists[id]; - } - } - this.hull = hull.subarray(0, j); - this.triangles = new Uint32Array(0); - this.halfedges = new Uint32Array(0); - return; - } - - // swap the order of the seed points for counter-clockwise orientation - if (orient(i0x, i0y, i1x, i1y, i2x, i2y)) { - var i$6 = i1; - var x$1 = i1x; - var y$1 = i1y; - i1 = i2; - i1x = i2x; - i1y = i2y; - i2 = i$6; - i2x = x$1; - i2y = y$1; - } - - var center = circumcenter(i0x, i0y, i1x, i1y, i2x, i2y); - this._cx = center.x; - this._cy = center.y; - - for (var i$7 = 0; i$7 < n; i$7++) { - this._dists[i$7] = dist(coords[2 * i$7], coords[2 * i$7 + 1], center.x, center.y); - } - - // sort the points by distance from the seed triangle circumcenter - quicksort(this._ids, this._dists, 0, n - 1); - - // set up the seed triangle as the starting hull - this._hullStart = i0; - var hullSize = 3; - - hullNext[i0] = hullPrev[i2] = i1; - hullNext[i1] = hullPrev[i0] = i2; - hullNext[i2] = hullPrev[i1] = i0; - - hullTri[i0] = 0; - hullTri[i1] = 1; - hullTri[i2] = 2; - - hullHash.fill(-1); - hullHash[this._hashKey(i0x, i0y)] = i0; - hullHash[this._hashKey(i1x, i1y)] = i1; - hullHash[this._hashKey(i2x, i2y)] = i2; - - this.trianglesLen = 0; - this._addTriangle(i0, i1, i2, -1, -1, -1); - - for (var k = 0, xp = (void 0), yp = (void 0); k < this._ids.length; k++) { - var i$8 = this._ids[k]; - var x$2 = coords[2 * i$8]; - var y$2 = coords[2 * i$8 + 1]; - - // skip near-duplicate points - if (k > 0 && Math.abs(x$2 - xp) <= EPSILON && Math.abs(y$2 - yp) <= EPSILON) { continue; } - xp = x$2; - yp = y$2; - - // skip seed triangle points - if (i$8 === i0 || i$8 === i1 || i$8 === i2) { continue; } - - // find a visible edge on the convex hull using edge hash - var start = 0; - for (var j$1 = 0, key = this._hashKey(x$2, y$2); j$1 < this._hashSize; j$1++) { - start = hullHash[(key + j$1) % this._hashSize]; - if (start !== -1 && start !== hullNext[start]) { break; } - } - - start = hullPrev[start]; - var e = start, q = (void 0); - while (q = hullNext[e], !orient(x$2, y$2, coords[2 * e], coords[2 * e + 1], coords[2 * q], coords[2 * q + 1])) { - e = q; - if (e === start) { - e = -1; - break; - } - } - if (e === -1) { continue; } // likely a near-duplicate point; skip it - - // add the first triangle from the point - var t = this._addTriangle(e, i$8, hullNext[e], -1, -1, hullTri[e]); - - // recursively flip triangles from the point until they satisfy the Delaunay condition - hullTri[i$8] = this._legalize(t + 2); - hullTri[e] = t; // keep track of boundary triangles on the hull - hullSize++; - - // walk forward through the hull, adding more triangles and flipping recursively - var n$1 = hullNext[e]; - while (q = hullNext[n$1], orient(x$2, y$2, coords[2 * n$1], coords[2 * n$1 + 1], coords[2 * q], coords[2 * q + 1])) { - t = this._addTriangle(n$1, i$8, q, hullTri[i$8], -1, hullTri[n$1]); - hullTri[i$8] = this._legalize(t + 2); - hullNext[n$1] = n$1; // mark as removed - hullSize--; - n$1 = q; - } - - // walk backward from the other side, adding more triangles and flipping - if (e === start) { - while (q = hullPrev[e], orient(x$2, y$2, coords[2 * q], coords[2 * q + 1], coords[2 * e], coords[2 * e + 1])) { - t = this._addTriangle(q, i$8, e, -1, hullTri[e], hullTri[q]); - this._legalize(t + 2); - hullTri[q] = t; - hullNext[e] = e; // mark as removed - hullSize--; - e = q; - } - } - - // update the hull indices - this._hullStart = hullPrev[i$8] = e; - hullNext[e] = hullPrev[n$1] = i$8; - hullNext[i$8] = n$1; - - // save the two new edges in the hash table - hullHash[this._hashKey(x$2, y$2)] = i$8; - hullHash[this._hashKey(coords[2 * e], coords[2 * e + 1])] = e; - } - - this.hull = new Uint32Array(hullSize); - for (var i$9 = 0, e$1 = this._hullStart; i$9 < hullSize; i$9++) { - this.hull[i$9] = e$1; - e$1 = hullNext[e$1]; - } - - // trim typed triangle mesh arrays - this.triangles = this._triangles.subarray(0, this.trianglesLen); - this.halfedges = this._halfedges.subarray(0, this.trianglesLen); - }; - - Delaunator.prototype._hashKey = function _hashKey (x, y) { - return Math.floor(pseudoAngle(x - this._cx, y - this._cy) * this._hashSize) % this._hashSize; - }; - - Delaunator.prototype._legalize = function _legalize (a) { - var ref = this; - var triangles = ref._triangles; - var halfedges = ref._halfedges; - var coords = ref.coords; - - var i = 0; - var ar = 0; - - // recursion eliminated with a fixed-size stack - while (true) { - var b = halfedges[a]; - - /* if the pair of triangles doesn't satisfy the Delaunay condition - * (p1 is inside the circumcircle of [p0, pl, pr]), flip them, - * then do the same check/flip recursively for the new pair of triangles - * - * pl pl - * /||\ / \ - * al/ || \bl al/\a - * / || \ / \ - * / a||b \flip/___ar___\ - * p0\ || /p1 => p0\---bl---/p1 - * \ || / \ / - * ar\ || /br b\/br - * \||/ \ / - * pr pr - */ - var a0 = a - a % 3; - ar = a0 + (a + 2) % 3; - - if (b === -1) { // convex hull edge - if (i === 0) { break; } - a = EDGE_STACK[--i]; - continue; - } - - var b0 = b - b % 3; - var al = a0 + (a + 1) % 3; - var bl = b0 + (b + 2) % 3; - - var p0 = triangles[ar]; - var pr = triangles[a]; - var pl = triangles[al]; - var p1 = triangles[bl]; - - var illegal = inCircle( - coords[2 * p0], coords[2 * p0 + 1], - coords[2 * pr], coords[2 * pr + 1], - coords[2 * pl], coords[2 * pl + 1], - coords[2 * p1], coords[2 * p1 + 1]); - - if (illegal) { - triangles[a] = p1; - triangles[b] = p0; - - var hbl = halfedges[bl]; - - // edge swapped on the other side of the hull (rare); fix the halfedge reference - if (hbl === -1) { - var e = this._hullStart; - do { - if (this._hullTri[e] === bl) { - this._hullTri[e] = a; - break; - } - e = this._hullPrev[e]; - } while (e !== this._hullStart); - } - this._link(a, hbl); - this._link(b, halfedges[ar]); - this._link(ar, bl); - - var br = b0 + (b + 1) % 3; - - // don't worry about hitting the cap: it can only happen on extremely degenerate input - if (i < EDGE_STACK.length) { - EDGE_STACK[i++] = br; - } - } else { - if (i === 0) { break; } - a = EDGE_STACK[--i]; - } - } - - return ar; - }; - - Delaunator.prototype._link = function _link (a, b) { - this._halfedges[a] = b; - if (b !== -1) { this._halfedges[b] = a; } - }; - - // add a new triangle given vertex indices and adjacent half-edge ids - Delaunator.prototype._addTriangle = function _addTriangle (i0, i1, i2, a, b, c) { - var t = this.trianglesLen; - - this._triangles[t] = i0; - this._triangles[t + 1] = i1; - this._triangles[t + 2] = i2; - - this._link(t, a); - this._link(t + 1, b); - this._link(t + 2, c); - - this.trianglesLen += 3; - - return t; - }; - - // monotonically increases with real angle, but doesn't need expensive trigonometry - function pseudoAngle(dx, dy) { - var p = dx / (Math.abs(dx) + Math.abs(dy)); - return (dy > 0 ? 3 - p : 1 + p) / 4; // [0..1] - } - - function dist(ax, ay, bx, by) { - var dx = ax - bx; - var dy = ay - by; - return dx * dx + dy * dy; - } - - // return 2d orientation sign if we're confident in it through J. Shewchuk's error bound check - function orientIfSure(px, py, rx, ry, qx, qy) { - var l = (ry - py) * (qx - px); - var r = (rx - px) * (qy - py); - return Math.abs(l - r) >= 3.3306690738754716e-16 * Math.abs(l + r) ? l - r : 0; - } - - // a more robust orientation test that's stable in a given triangle (to fix robustness issues) - function orient(rx, ry, qx, qy, px, py) { - var sign = orientIfSure(px, py, rx, ry, qx, qy) || - orientIfSure(rx, ry, qx, qy, px, py) || - orientIfSure(qx, qy, px, py, rx, ry); - return sign < 0; - } - - function inCircle(ax, ay, bx, by, cx, cy, px, py) { - var dx = ax - px; - var dy = ay - py; - var ex = bx - px; - var ey = by - py; - var fx = cx - px; - var fy = cy - py; - - var ap = dx * dx + dy * dy; - var bp = ex * ex + ey * ey; - var cp = fx * fx + fy * fy; - - return dx * (ey * cp - bp * fy) - - dy * (ex * cp - bp * fx) + - ap * (ex * fy - ey * fx) < 0; - } - - function circumradius(ax, ay, bx, by, cx, cy) { - var dx = bx - ax; - var dy = by - ay; - var ex = cx - ax; - var ey = cy - ay; - - var bl = dx * dx + dy * dy; - var cl = ex * ex + ey * ey; - var d = 0.5 / (dx * ey - dy * ex); - - var x = (ey * bl - dy * cl) * d; - var y = (dx * cl - ex * bl) * d; - - return x * x + y * y; - } - - function circumcenter(ax, ay, bx, by, cx, cy) { - var dx = bx - ax; - var dy = by - ay; - var ex = cx - ax; - var ey = cy - ay; - - var bl = dx * dx + dy * dy; - var cl = ex * ex + ey * ey; - var d = 0.5 / (dx * ey - dy * ex); - - var x = ax + (ey * bl - dy * cl) * d; - var y = ay + (dx * cl - ex * bl) * d; - - return {x: x, y: y}; - } - - function quicksort(ids, dists, left, right) { - if (right - left <= 20) { - for (var i = left + 1; i <= right; i++) { - var temp = ids[i]; - var tempDist = dists[temp]; - var j = i - 1; - while (j >= left && dists[ids[j]] > tempDist) { ids[j + 1] = ids[j--]; } - ids[j + 1] = temp; - } - } else { - var median = (left + right) >> 1; - var i$1 = left + 1; - var j$1 = right; - swap(ids, median, i$1); - if (dists[ids[left]] > dists[ids[right]]) { swap(ids, left, right); } - if (dists[ids[i$1]] > dists[ids[right]]) { swap(ids, i$1, right); } - if (dists[ids[left]] > dists[ids[i$1]]) { swap(ids, left, i$1); } - - var temp$1 = ids[i$1]; - var tempDist$1 = dists[temp$1]; - while (true) { - do { i$1++; } while (dists[ids[i$1]] < tempDist$1); - do { j$1--; } while (dists[ids[j$1]] > tempDist$1); - if (j$1 < i$1) { break; } - swap(ids, i$1, j$1); - } - ids[left + 1] = ids[j$1]; - ids[j$1] = temp$1; - - if (right - i$1 + 1 >= j$1 - left) { - quicksort(ids, dists, i$1, right); - quicksort(ids, dists, left, j$1 - 1); - } else { - quicksort(ids, dists, left, j$1 - 1); - quicksort(ids, dists, i$1, right); - } - } - } - - function swap(arr, i, j) { - var tmp = arr[i]; - arr[i] = arr[j]; - arr[j] = tmp; - } - - function defaultGetX(p) { - return p[0]; - } - function defaultGetY(p) { - return p[1]; - } - - return Delaunator; - -})); -}); - -var lib = createCommonjsModule(function (module, exports) { - -exports.__esModule = true; -exports["default"] = void 0; - -var _delaunator = _interopRequireDefault(delaunator); - -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } - -// From https://github.com/d3/d3-delaunay/blob/master/src/delaunay.js -function pointX(p) { - return p[0]; -} - -function pointY(p) { - return p[1]; -} // A triangulation is collinear if all its triangles have a non-null area - - -function collinear(d) { - var triangles = d.triangles, - coords = d.coords; - - for (var i = 0; i < triangles.length; i += 3) { - var a = 2 * triangles[i]; - var b = 2 * triangles[i + 1]; - var c = 2 * triangles[i + 2]; - var cross = (coords[c] - coords[a]) * (coords[b + 1] - coords[a + 1]) - (coords[b] - coords[a]) * (coords[c + 1] - coords[a + 1]); // eslint-disable-next-line no-magic-numbers - - if (cross > 1e-10) { - return false; - } - } - - return true; -} - -function jitter(x, y, r) { - return [x + Math.sin(x + y) * r, y + Math.cos(x - y) * r]; -} // eslint-disable-next-line max-params - - -function flatArray(points, fx, fy, that) { - var n = points.length; - var array = new Float64Array(n * 2); - - for (var i = 0; i < n; ++i) { - var p = points[i]; - array[i * 2] = fx.call(that, p, i, points); - array[i * 2 + 1] = fy.call(that, p, i, points); - } - - return array; -} - -var Delaunay = -/*#__PURE__*/ -function () { - function Delaunay(points) { - var delaunator = new _delaunator["default"](points); - this.inedges = new Int32Array(points.length / 2); - this._hullIndex = new Int32Array(points.length / 2); - this.points = delaunator.coords; - - this._init(delaunator); - } // eslint-disable-next-line max-statements, complexity - - - var _proto = Delaunay.prototype; - - _proto._init = function _init(delaunator) { - var d = delaunator; - var points = this.points; // check for collinear - // eslint-disable-next-line no-magic-numbers - - if (d.hull && d.hull.length > 2 && collinear(d)) { - this.collinear = Int32Array.from({ - length: points.length / 2 - }, function (_, i) { - return i; - }).sort(function (i, j) { - return points[2 * i] - points[2 * j] || points[2 * i + 1] - points[2 * j + 1]; - }); // for exact neighbors - - var e = this.collinear[0]; - var f = this.collinear[this.collinear.length - 1]; - var bounds = [points[2 * e], points[2 * e + 1], points[2 * f], points[2 * f + 1]]; - var r = 1e-8 * // eslint-disable-line no-magic-numbers - Math.sqrt(Math.pow(bounds[3] - bounds[1], 2) + Math.pow(bounds[2] - bounds[0], 2)); - - for (var i = 0, n = points.length / 2; i < n; ++i) { - var p = jitter(points[2 * i], points[2 * i + 1], r); - points[2 * i] = p[0]; - points[2 * i + 1] = p[1]; - } - - delaunator = new _delaunator["default"](points); - } - - var halfedges = this.halfedges = delaunator.halfedges; - var hull = this.hull = delaunator.hull; - var triangles = this.triangles = delaunator.triangles; - var inedges = this.inedges.fill(-1); - - var hullIndex = this._hullIndex.fill(-1); // Compute an index from each point to an (arbitrary) incoming halfedge - // Used to give the first neighbor of each point; for this reason, - // on the hull we give priority to exterior halfedges - - - for (var _e = 0, _n = halfedges.length; _e < _n; ++_e) { - var _p = triangles[_e % 3 === 2 ? _e - 2 : _e + 1]; - if (halfedges[_e] === -1 || inedges[_p] === -1) inedges[_p] = _e; - } - - for (var _i = 0, _n2 = hull.length; _i < _n2; ++_i) { - hullIndex[hull[_i]] = _i; - } // degenerate case: 1 or 2 (distinct) points - - - if (hull.length <= 2 && hull.length > 0) { - this.triangles = new Int32Array(3).fill(-1); - this.halfedges = new Int32Array(3).fill(-1); - this.triangles[0] = hull[0]; - this.triangles[1] = hull[1]; - this.triangles[2] = hull[1]; - inedges[hull[0]] = 1; - if (hull.length === 2) inedges[hull[1]] = 0; - } - } // eslint-disable-next-line max-statements - ; - - _proto.neighbors = function neighbors(i) { - var results = []; - var inedges = this.inedges, - hull = this.hull, - _hullIndex = this._hullIndex, - halfedges = this.halfedges, - triangles = this.triangles; - var e0 = inedges[i]; - if (e0 === -1) return results; // coincident point - - var e = e0; - var p0 = -1; - - do { - p0 = triangles[e]; - results.push(p0); - e = e % 3 === 2 ? e - 2 : e + 1; - if (triangles[e] !== i) break; // bad triangulation - - e = halfedges[e]; - - if (e === -1) { - var p = hull[(_hullIndex[i] + 1) % hull.length]; - if (p !== p0) results.push(p); - break; - } - } while (e !== e0); - - return results; - }; - - _proto.find = function find(x, y, i) { - if (i === void 0) { - i = 0; - } - - // eslint-disable-next-line no-self-compare - if ((x = +x, x !== x) || (y = +y, y !== y)) return -1; - var i0 = i; - var c; - - while ((c = this._step(i, x, y)) >= 0 && c !== i && c !== i0) { - i = c; - } - - return c; - }; - - _proto._step = function _step(i, x, y) { - var inedges = this.inedges, - points = this.points; - if (inedges[i] === -1 || !points.length) return (i + 1) % (points.length >> 1); - var c = i; - var dc = Math.pow(x - points[i * 2], 2) + Math.pow(y - points[i * 2 + 1], 2); - - for (var _iterator = this.neighbors(i), _isArray = Array.isArray(_iterator), _i2 = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) { - var _ref; - - if (_isArray) { - if (_i2 >= _iterator.length) break; - _ref = _iterator[_i2++]; - } else { - _i2 = _iterator.next(); - if (_i2.done) break; - _ref = _i2.value; - } - - var t = _ref; - var dt = Math.pow(x - points[t * 2], 2) + Math.pow(y - points[t * 2 + 1], 2); - - if (dt < dc) { - dc = dt; - c = t; - } - } - - return c; - }; - - return Delaunay; -}(); // eslint-disable-next-line max-params - - -exports["default"] = Delaunay; - -Delaunay.from = function (points, fx, fy, that) { - if (fx === void 0) { - fx = pointX; - } - - if (fy === void 0) { - fy = pointY; - } - - return new Delaunay(flatArray(points, fx, fy, that)); -}; // only public methods will be .from and .find -}); - -var Delaunay = unwrapExports(lib); - -function _toConsumableArray$o(arr) { return _arrayWithoutHoles$o(arr) || _iterableToArray$o(arr) || _nonIterableSpread$o(); } - -function _nonIterableSpread$o() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$o(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$o(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } -var VoronoiHelpers = { - withinBounds: function (props, point) { - var width = props.width, - height = props.height, - polar = props.polar, - origin = props.origin, - scale = props.scale; - var padding = Helpers.getPadding(props, "voronoiPadding"); - var x = point.x, - y = point.y; - - if (polar) { - var distanceSquared = Math.pow(x - origin.x, 2) + Math.pow(y - origin.y, 2); - var radius = Math.max.apply(Math, _toConsumableArray$o(scale.y.range())); - return distanceSquared < Math.pow(radius, 2); - } else { - return x >= padding.left && x <= width - padding.right && y >= padding.top && y <= height - padding.bottom; - } - }, - getDatasets: function (props) { - var children = React__default.Children.toArray(props.children); - - var addMeta = function (data, name, child) { - var continuous = child && child.type && child.type.continuous; - var style = child ? child.props && child.props.style : props.style; - return data.map(function (datum, index) { - var _Helpers$getPoint = Helpers.getPoint(datum), - x = _Helpers$getPoint.x, - y = _Helpers$getPoint.y, - y0 = _Helpers$getPoint.y0, - x0 = _Helpers$getPoint.x0; - - var voronoiX = (+x + +x0) / 2; - var voronoiY = (+y + +y0) / 2; - return assign_1({ - _voronoiX: props.voronoiDimension === "y" ? 0 : voronoiX, - _voronoiY: props.voronoiDimension === "x" ? 0 : voronoiY, - eventKey: index, - childName: name, - continuous: continuous, - style: style - }, datum); - }); - }; - - if (props.data) { - return addMeta(props.data); - } - - var getData = function (childProps) { - var data = Data.getData(childProps); - return Array.isArray(data) && data.length > 0 ? data : undefined; - }; - - var iteratee = function (child, childName) { - var childProps = child.props || {}; - var name = childProps.name || childName; - var blacklist = props.voronoiBlacklist || []; - var blacklistStr = blacklist.filter(isString_1); - var blacklistRegExp = blacklist.filter(isRegExp_1); - var isRegExpMatch = blacklistRegExp.some(function (regExp) { - return regExp.test(name); - }); - - if (!Data.isDataComponent(child) || includes_1(blacklistStr, name) || isRegExpMatch) { - return null; - } - - var getChildData = child.type && isFunction_1(child.type.getData) ? child.type.getData : getData; - var childData = getChildData(child.props); - return childData ? addMeta(childData, name, child) : null; - }; - - return Helpers.reduceChildren(children, iteratee, props); - }, - findPoints: function (datasets, point) { - return datasets.filter(function (d) { - return point._voronoiX === d._voronoiX && point._voronoiY === d._voronoiY; - }); - }, - withinRadius: function (point, mousePosition, radius) { - if (!point) { - return false; - } - - if (!radius) { - return true; - } - - var x = mousePosition.x, - y = mousePosition.y; - var distanceSquared = Math.pow(x - point[0], 2) + Math.pow(y - point[1], 2); - return distanceSquared < Math.pow(radius, 2); - }, - getVoronoiPoints: function (props, mousePosition) { - var datasets = this.getDatasets(props); - var scaledData = datasets.map(function (d) { - var _Helpers$scalePoint = Helpers.scalePoint(props, d), - x = _Helpers$scalePoint.x, - y = _Helpers$scalePoint.y; - - return [x, y]; - }); - var delaunay = Delaunay.from(scaledData); - var index = delaunay.find(mousePosition.x, mousePosition.y); - var withinRadius = this.withinRadius(scaledData[index], mousePosition, props.radius); - var points = withinRadius ? this.findPoints(datasets, datasets[index]) : []; - return { - points: points, - index: index - }; - }, - getActiveMutations: function (props, point) { - var childName = point.childName, - continuous = point.continuous; - var activateData = props.activateData, - activateLabels = props.activateLabels, - labels = props.labels; - - if (!activateData && !activateLabels) { - return []; - } - - var defaultTarget = activateData ? ["data"] : []; - var targets = labels && !activateLabels ? defaultTarget : defaultTarget.concat("labels"); - - if (isEmpty_1(targets)) { - return []; - } - - return targets.map(function (target) { - var eventKey = continuous === true && target === "data" ? "all" : point.eventKey; - return { - childName: childName, - eventKey: eventKey, - target: target, - mutation: function () { - return { - active: true - }; - } - }; - }); - }, - getInactiveMutations: function (props, point) { - var childName = point.childName, - continuous = point.continuous; - var activateData = props.activateData, - activateLabels = props.activateLabels, - labels = props.labels; - - if (!activateData && !activateLabels) { - return []; - } - - var defaultTarget = activateData ? ["data"] : []; - var targets = labels && !activateLabels ? defaultTarget : defaultTarget.concat("labels"); - - if (isEmpty_1(targets)) { - return []; - } - - return targets.map(function (target) { - var eventKey = continuous && target === "data" ? "all" : point.eventKey; - return { - childName: childName, - eventKey: eventKey, - target: target, - mutation: function () { - return null; - } - }; - }); - }, - // eslint-disable-next-line max-params - getParentMutation: function (activePoints, mousePosition, parentSVG, vIndex) { - return [{ - target: "parent", - eventKey: "parent", - mutation: function () { - return { - activePoints: activePoints, - mousePosition: mousePosition, - parentSVG: parentSVG, - vIndex: vIndex - }; - } - }]; - }, - onActivated: function (props, points) { - if (isFunction_1(props.onActivated)) { - props.onActivated(points, props); - } - }, - onDeactivated: function (props, points) { - if (isFunction_1(props.onDeactivated)) { - props.onDeactivated(points, props); - } - }, - onMouseLeave: function (evt, targetProps) { - var _this = this, - _getParentMutation; - - var activePoints = targetProps.activePoints || []; - this.onDeactivated(targetProps, activePoints); - var inactiveMutations = activePoints.length ? activePoints.map(function (point) { - return _this.getInactiveMutations(targetProps, point); - }) : []; - return (_getParentMutation = this.getParentMutation([])).concat.apply(_getParentMutation, _toConsumableArray$o(inactiveMutations)); - }, - onMouseMove: function (evt, targetProps) { - var _this2 = this; - - // eslint-disable-line max-statements - var activePoints = targetProps.activePoints || []; - var parentSVG = targetProps.parentSVG || Selection.getParentSVG(evt); - var mousePosition = Selection.getSVGEventCoordinates(evt, parentSVG); - - if (!this.withinBounds(targetProps, mousePosition)) { - var _getParentMutation2; - - this.onDeactivated(targetProps, activePoints); - var inactiveMutations = activePoints.length ? activePoints.map(function (point) { - return _this2.getInactiveMutations(targetProps, point); - }) : []; - return (_getParentMutation2 = this.getParentMutation([], mousePosition, parentSVG)).concat.apply(_getParentMutation2, _toConsumableArray$o(inactiveMutations)); - } - - var _getVoronoiPoints = this.getVoronoiPoints(targetProps, mousePosition), - _getVoronoiPoints$poi = _getVoronoiPoints.points, - points = _getVoronoiPoints$poi === void 0 ? [] : _getVoronoiPoints$poi, - index = _getVoronoiPoints.index; - - var parentMutations = this.getParentMutation(points, mousePosition, parentSVG, index); - - if (activePoints.length && reactFastCompare(points, activePoints)) { - return parentMutations; - } else { - this.onActivated(targetProps, points); - this.onDeactivated(targetProps, activePoints); - var activeMutations = points.length ? points.map(function (point) { - return _this2.getActiveMutations(targetProps, point); - }) : []; - - var _inactiveMutations = activePoints.length ? activePoints.map(function (point) { - return _this2.getInactiveMutations(targetProps, point); - }) : []; - - return parentMutations.concat.apply(parentMutations, _toConsumableArray$o(_inactiveMutations).concat(_toConsumableArray$o(activeMutations))); - } - } -}; -var VoronoiHelpers$1 = { - onMouseLeave: VoronoiHelpers.onMouseLeave.bind(VoronoiHelpers), - onMouseMove: throttle_1(VoronoiHelpers.onMouseMove.bind(VoronoiHelpers), 32, // eslint-disable-line no-magic-numbers - { - leading: true, - trailing: false - }) -}; - -function _toConsumableArray$p(arr) { return _arrayWithoutHoles$p(arr) || _iterableToArray$p(arr) || _nonIterableSpread$p(); } - -function _nonIterableSpread$p() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$p(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$p(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function _objectWithoutProperties$5(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } - -function _objectSpread$p(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$t(target, key, source[key]); }); } return target; } - -function _defineProperty$t(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _classCallCheck$k(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$k(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$k(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$k(Constructor.prototype, protoProps); if (staticProps) _defineProperties$k(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$j(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$j(self); } - -function _assertThisInitialized$j(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _inherits$j(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } -var voronoiContainerMixin = function (base) { - var _class, _temp; - - return _temp = _class = - /*#__PURE__*/ - function (_base) { - _inherits$j(VictoryVoronoiContainer, _base); - - function VictoryVoronoiContainer() { - _classCallCheck$k(this, VictoryVoronoiContainer); - - return _possibleConstructorReturn$j(this, (VictoryVoronoiContainer.__proto__ || Object.getPrototypeOf(VictoryVoronoiContainer)).apply(this, arguments)); - } - - _createClass$k(VictoryVoronoiContainer, [{ - key: "getDimension", - value: function getDimension(props) { - var horizontal = props.horizontal, - voronoiDimension = props.voronoiDimension; - - if (!horizontal || !voronoiDimension) { - return voronoiDimension; - } - - return voronoiDimension === "x" ? "y" : "x"; - } - }, { - key: "getPoint", - value: function getPoint(point) { - var whitelist = ["_x", "_x1", "_x0", "_y", "_y1", "_y0"]; - return pick_1(point, whitelist); - } - }, { - key: "getLabelPosition", - value: function getLabelPosition(props, labelProps, points) { - var mousePosition = props.mousePosition, - mouseFollowTooltips = props.mouseFollowTooltips; - var voronoiDimension = this.getDimension(props); - var point = this.getPoint(points[0]); - var basePosition = Helpers.scalePoint(props, point); - var center = mouseFollowTooltips ? mousePosition : undefined; - - if (!voronoiDimension || points.length < 2) { - return _objectSpread$p({}, basePosition, { - center: defaults_1({}, labelProps.center, center) - }); - } - - var x = voronoiDimension === "y" ? mousePosition.x : basePosition.x; - var y = voronoiDimension === "x" ? mousePosition.y : basePosition.y; - center = mouseFollowTooltips ? mousePosition : { - x: x, - y: y - }; - return { - x: x, - y: y, - center: defaults_1({}, labelProps.center, center) - }; - } - }, { - key: "getStyle", - value: function getStyle(props, points, type) { - var labels = props.labels, - labelComponent = props.labelComponent, - theme = props.theme; - var componentProps = labelComponent.props || {}; - var themeStyles = theme && theme.voronoi && theme.voronoi.style ? theme.voronoi.style : {}; - var componentStyleArray = type === "flyout" ? componentProps.flyoutStyle : componentProps.style; - return points.reduce(function (memo, datum, index) { - var labelProps = defaults_1({}, componentProps, { - datum: datum, - active: true - }); - - var text = isFunction_1(labels) ? labels(labelProps) : undefined; - var textArray = text !== undefined ? "".concat(text).split("\n") : []; - var baseStyle = datum.style && datum.style[type] || {}; - var componentStyle = Array.isArray(componentStyleArray) ? componentStyleArray[index] : componentStyleArray; - var style = Helpers.evaluateStyle(defaults_1({}, componentStyle, baseStyle, themeStyles[type]), labelProps); - var styleArray = textArray.length ? textArray.map(function () { - return style; - }) : [style]; - memo = memo.concat(styleArray); - return memo; - }, []); - } - }, { - key: "getDefaultLabelProps", - value: function getDefaultLabelProps(props, points) { - var voronoiDimension = props.voronoiDimension, - horizontal = props.horizontal, - mouseFollowTooltips = props.mouseFollowTooltips; - var point = this.getPoint(points[0]); - var multiPoint = voronoiDimension && points.length > 1; - var y = point._y1 !== undefined ? point._y1 : point._y; - var defaultHorizontalOrientation = y < 0 ? "left" : "right"; - var defaultOrientation = y < 0 ? "bottom" : "top"; - var labelOrientation = horizontal ? defaultHorizontalOrientation : defaultOrientation; - var orientation = mouseFollowTooltips ? undefined : labelOrientation; - return { - orientation: orientation, - pointerLength: multiPoint ? 0 : undefined, - constrainToVisibleArea: multiPoint || mouseFollowTooltips ? true : undefined - }; - } - }, { - key: "getLabelProps", - value: function getLabelProps(props, points) { - var labels = props.labels, - scale = props.scale, - labelComponent = props.labelComponent, - theme = props.theme, - width = props.width, - height = props.height; - var componentProps = labelComponent.props || {}; - var text = points.reduce(function (memo, datum) { - var labelProps = defaults_1({}, componentProps, { - datum: datum, - active: true - }); - - var t = isFunction_1(labels) ? labels(labelProps) : null; - - if (t === null || t === undefined) { - return memo; - } - - memo = memo.concat("".concat(t).split("\n")); - return memo; - }, []); // remove properties from first point to make datum - // eslint-disable-next-line no-unused-vars - - var _points$ = points[0], - childName = _points$.childName, - eventKey = _points$.eventKey, - style = _points$.style, - continuous = _points$.continuous, - datum = _objectWithoutProperties$5(_points$, ["childName", "eventKey", "style", "continuous"]); - - var name = props.name === childName ? childName : "".concat(props.name, "-").concat(childName); - - var labelProps = defaults_1({ - key: "".concat(name, "-").concat(eventKey, "-voronoi-tooltip"), - id: "".concat(name, "-").concat(eventKey, "-voronoi-tooltip"), - active: true, - renderInPortal: false, - activePoints: points, - datum: datum, - scale: scale, - theme: theme - }, componentProps, { - text: text, - width: width, - height: height, - style: this.getStyle(props, points, "labels"), - flyoutStyle: this.getStyle(props, points, "flyout")[0] - }, this.getDefaultLabelProps(props, points)); - - var labelPosition = this.getLabelPosition(props, labelProps, points); - return defaults_1({}, labelPosition, labelProps); - } - }, { - key: "getTooltip", - value: function getTooltip(props) { - var labels = props.labels, - activePoints = props.activePoints, - labelComponent = props.labelComponent; - - if (!labels) { - return null; - } - - if (Array.isArray(activePoints) && activePoints.length) { - var labelProps = this.getLabelProps(props, activePoints); - var text = labelProps.text; - var showLabel = Array.isArray(text) ? text.filter(Boolean).length : text; - return showLabel ? React__default.cloneElement(labelComponent, labelProps) : null; - } else { - return null; - } - } // Overrides method in VictoryContainer - - }, { - key: "getChildren", - value: function getChildren(props) { - return _toConsumableArray$p(React__default.Children.toArray(props.children)).concat([this.getTooltip(props)]); - } - }]); - - return VictoryVoronoiContainer; - }(base), Object.defineProperty(_class, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryVoronoiContainer" - }), Object.defineProperty(_class, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$p({}, VictoryContainer.propTypes, { - activateData: propTypes.bool, - activateLabels: propTypes.bool, - disable: propTypes.bool, - labelComponent: propTypes.element, - labels: propTypes.func, - mouseFollowTooltips: propTypes.bool, - onActivated: propTypes.func, - onDeactivated: propTypes.func, - radius: propTypes.number, - voronoiBlacklist: propTypes.arrayOf(propTypes.oneOfType([propTypes.string, CustomPropTypes.regExp])), - voronoiDimension: propTypes.oneOf(["x", "y"]), - voronoiPadding: propTypes.oneOfType([propTypes.number, propTypes.shape({ - top: propTypes.number, - bottom: propTypes.number, - left: propTypes.number, - right: propTypes.number - })]) - }) - }), Object.defineProperty(_class, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$p({}, VictoryContainer.defaultProps, { - activateData: true, - activateLabels: true, - labelComponent: React__default.createElement(VictoryTooltip, null), - voronoiPadding: 5 - }) - }), Object.defineProperty(_class, "defaultEvents", { - configurable: true, - enumerable: true, - writable: true, - value: function (props) { - return [{ - target: "parent", - eventHandlers: { - onMouseLeave: function (evt, targetProps) { - return props.disable ? {} : VoronoiHelpers$1.onMouseLeave(evt, targetProps); - }, - onTouchCancel: function (evt, targetProps) { - return props.disable ? {} : VoronoiHelpers$1.onMouseLeave(evt, targetProps); - }, - onMouseMove: function (evt, targetProps) { - return props.disable ? {} : VoronoiHelpers$1.onMouseMove(evt, targetProps); - }, - onTouchMove: function (evt, targetProps) { - return props.disable ? {} : VoronoiHelpers$1.onMouseMove(evt, targetProps); - } - } - }, { - target: "data", - eventHandlers: props.disable ? {} : { - onMouseOver: function () { - return null; - }, - onMouseOut: function () { - return null; - }, - onMouseMove: function () { - return null; - } - } - }]; - } - }), _temp; -}; -var VictoryVoronoiContainer = voronoiContainerMixin(VictoryContainer); - -/** Error message constants. */ -var FUNC_ERROR_TEXT$4 = 'Expected a function'; - -/** - * The base implementation of `_.delay` and `_.defer` which accepts `args` - * to provide to `func`. - * - * @private - * @param {Function} func The function to delay. - * @param {number} wait The number of milliseconds to delay invocation. - * @param {Array} args The arguments to provide to `func`. - * @returns {number|Object} Returns the timer id or timeout object. - */ -function baseDelay(func, wait, args) { - if (typeof func != 'function') { - throw new TypeError(FUNC_ERROR_TEXT$4); - } - return setTimeout(function() { func.apply(undefined, args); }, wait); -} - -var _baseDelay = baseDelay; - -/** - * Invokes `func` after `wait` milliseconds. Any additional arguments are - * provided to `func` when it's invoked. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Function - * @param {Function} func The function to delay. - * @param {number} wait The number of milliseconds to delay invocation. - * @param {...*} [args] The arguments to invoke `func` with. - * @returns {number} Returns the timer id. - * @example - * - * _.delay(function(text) { - * console.log(text); - * }, 1000, 'later'); - * // => Logs 'later' after one second. - */ -var delay = _baseRest(function(func, wait, args) { - return _baseDelay(func, toNumber_1(wait) || 0, args); -}); - -var delay_1 = delay; - -function _defineProperty$u(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _slicedToArray$1(arr, i) { return _arrayWithHoles$1(arr) || _iterableToArrayLimit$1(arr, i) || _nonIterableRest$1(); } - -function _nonIterableRest$1() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } - -function _iterableToArrayLimit$1(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } - -function _arrayWithHoles$1(arr) { if (Array.isArray(arr)) return arr; } -var RawZoomHelpers = { - checkDomainEquality: function (a, b) { - var checkDimension = function (dim) { - var val1 = a && a[dim]; - var val2 = b && b[dim]; - - if (!val1 && !val2) { - return true; - } else if (!val1 || !val2) { - return false; - } - - return +val1[0] === +val2[0] && +val1[1] === +val2[1]; - }; - - return checkDimension("x") && checkDimension("y"); - }, - - /** - * Generates a new domain scaled by factor and constrained by the original domain. - * @param {[Number, Number]} currentDomain The domain to be scaled. - * @param {Object} evt the event object - * @param {Object} props the props of the targeted component - * @param {String} axis the desired dimension (either x or y) - * @return {[Number, Number]} The scale domain - */ - // eslint-disable-next-line max-params - scale: function (currentDomain, evt, props, axis) { - var _currentDomain = _slicedToArray$1(currentDomain, 2), - from = _currentDomain[0], - to = _currentDomain[1]; - - var range = Math.abs(to - from); - var minimumZoom = props.minimumZoom && props.minimumZoom[axis]; - var factor = this.getScaleFactor(evt); - - if (minimumZoom && range <= minimumZoom && factor < 1) { - return currentDomain; - } - - var _getDomain$axis = _slicedToArray$1(this.getDomain(props)[axis], 2), - fromBound = _getDomain$axis[0], - toBound = _getDomain$axis[1]; - - var percent = this.getScalePercent(evt, props, axis); - var point = factor * from + percent * (factor * range); - var minDomain = this.getMinimumDomain(point, props, axis); - - var _getScaledDomain = this.getScaledDomain(currentDomain, factor, percent), - _getScaledDomain2 = _slicedToArray$1(_getScaledDomain, 2), - newMin = _getScaledDomain2[0], - newMax = _getScaledDomain2[1]; - - var newDomain = [newMin > fromBound && newMin < toBound ? newMin : fromBound, newMax < toBound && newMax > fromBound ? newMax : toBound]; - var domain = Math.abs(minDomain[1] - minDomain[0]) > Math.abs(newDomain[1] - newDomain[0]) ? minDomain : newDomain; - return Collection.containsDates([fromBound, toBound]) ? [new Date(domain[0]), new Date(domain[1])] : domain; - }, - getScaledDomain: function (currentDomain, factor, percent) { - var _currentDomain2 = _slicedToArray$1(currentDomain, 2), - from = _currentDomain2[0], - to = _currentDomain2[1]; - - var range = Math.abs(to - from); - var diff = range - range * factor; - var newMin = +from + diff * percent; - var newMax = +to - diff * (1 - percent); - return [Math.min(newMin, newMax), Math.max(newMin, newMax)]; - }, - getMinimumDomain: function (point, props, axis) { - var minimumZoom = props.minimumZoom; - var originalDomain = this.getDomain(props)[axis]; - - var _originalDomain = _slicedToArray$1(originalDomain, 2), - from = _originalDomain[0], - to = _originalDomain[1]; - - var defaultMin = Math.abs(from - to) / 1000; - var extent = minimumZoom ? minimumZoom[axis] || defaultMin : defaultMin; - var minExtent = point - extent / 2; - var maxExtent = point + extent / 2; - return [minExtent > from && minExtent < to ? minExtent : from, maxExtent < to && maxExtent > from ? maxExtent : +from + extent / 2]; - }, - zoommingOut: function (evt) { - return evt.deltaY > 0; - }, - getScaleFactor: function (evt) { - var sign = this.zoommingOut(evt) ? 1 : -1; // eslint-disable-next-line no-magic-numbers - - var delta = Math.min(Math.abs(evt.deltaY / 300), 0.5); // TODO: Check scale factor - - return Math.abs(1 + sign * delta); - }, - getScalePercent: function (evt, props, axis) { - var originalDomain = this.getDomain(props); - - var _originalDomain$axis = _slicedToArray$1(originalDomain[axis], 2), - from = _originalDomain$axis[0], - to = _originalDomain$axis[1]; - - var position = this.getPosition(evt, props, originalDomain); - return (position[axis] - from) / Math.abs(to - from); - }, - getPosition: function (evt, props, originalDomain) { - var _Selection$getSVGEven = Selection.getSVGEventCoordinates(evt), - x = _Selection$getSVGEven.x, - y = _Selection$getSVGEven.y; - - var originalScale = { - x: props.scale.x.domain(originalDomain.x), - y: props.scale.y.domain(originalDomain.y) - }; - return Selection.getDataCoordinates(props, originalScale, x, y); - }, - - /** - * Generate a new domain translated by the delta and constrained by the original domain. - * @param {[Number, Number]} currentDomain The domain to be translated. - * @param {[Number, Number]} originalDomain The original domain for the data set. - * @param {Number} delta The delta to translate by - * @return {[Number, Number]} The translated domain - */ - pan: function (currentDomain, originalDomain, delta) { - var _currentDomain$map = currentDomain.map(function (val) { - return +val; - }), - _currentDomain$map2 = _slicedToArray$1(_currentDomain$map, 2), - fromCurrent = _currentDomain$map2[0], - toCurrent = _currentDomain$map2[1]; - - var _originalDomain$map = originalDomain.map(function (val) { - return +val; - }), - _originalDomain$map2 = _slicedToArray$1(_originalDomain$map, 2), - fromOriginal = _originalDomain$map2[0], - toOriginal = _originalDomain$map2[1]; - - var lowerBound = fromCurrent + delta; - var upperBound = toCurrent + delta; - var newDomain; - - if (lowerBound > fromOriginal && upperBound < toOriginal) { - newDomain = [lowerBound, upperBound]; - } else if (lowerBound < fromOriginal) { - // Clamp to lower limit - var dx = toCurrent - fromCurrent; - newDomain = [fromOriginal, fromOriginal + dx]; - } else if (upperBound > toOriginal) { - // Clamp to upper limit - var _dx = toCurrent - fromCurrent; - - newDomain = [toOriginal - _dx, toOriginal]; - } else { - newDomain = currentDomain; - } - - return Collection.containsDates(currentDomain) || Collection.containsDates(originalDomain) ? newDomain.map(function (val) { - return new Date(val); - }) : newDomain; - }, - // eslint-disable-next-line max-params - getDomainScale: function (domain, scale, axis, horizontal) { - var axisDomain = Array.isArray(domain) ? domain : domain[axis]; - - var _axisDomain = _slicedToArray$1(axisDomain, 2), - from = _axisDomain[0], - to = _axisDomain[1]; - - var otherAxis = axis === "x" ? "y" : "x"; - var range = horizontal ? scale[otherAxis].range() : scale[axis].range(); - var plottableWidth = Math.abs(range[0] - range[1]); - return plottableWidth / (to - from); - }, - handleAnimation: function (ctx) { - var animationTimer = ctx.context.animationTimer; - var transitionTimer = ctx.context.transitionTimer; - transitionTimer.bypassAnimation(); - animationTimer.bypassAnimation(); - - var resumeAnimation = function () { - animationTimer.resumeAnimation(); - transitionTimer.resumeAnimation(); - }; // delay the callback that resumes animation by ~1 frame so that animation does not interfere with wheel events - - - return delay_1(resumeAnimation, 16); // eslint-disable-line no-magic-numbers - }, - getLastDomain: function (targetProps, originalDomain) { - var zoomDomain = targetProps.zoomDomain, - cachedZoomDomain = targetProps.cachedZoomDomain, - currentDomain = targetProps.currentDomain, - domain = targetProps.domain; - - if (zoomDomain && !this.checkDomainEquality(zoomDomain, cachedZoomDomain)) { - return defaults_1({}, zoomDomain, domain); - } - - return defaults_1({}, currentDomain || zoomDomain || originalDomain, domain); - }, - getDomain: function (props) { - var originalDomain = props.originalDomain, - domain = props.domain, - children = props.children, - zoomDimension = props.zoomDimension; - var childComponents = React.Children.toArray(children); - var childrenDomain = {}; - - if (childComponents.length) { - childrenDomain = zoomDimension ? _defineProperty$u({}, zoomDimension, Wrapper.getDomainFromChildren(props, zoomDimension, childComponents)) : { - x: Wrapper.getDomainFromChildren(props, "x", childComponents), - y: Wrapper.getDomainFromChildren(props, "y", childComponents) - }; - } - - return defaults_1({}, childrenDomain, originalDomain, domain); - }, - onMouseDown: function (evt, targetProps) { - evt.preventDefault(); - - if (!targetProps.allowPan) { - return undefined; - } - - var parentSVG = targetProps.parentSVG || Selection.getParentSVG(evt); - - var _Selection$getSVGEven2 = Selection.getSVGEventCoordinates(evt, parentSVG), - x = _Selection$getSVGEven2.x, - y = _Selection$getSVGEven2.y; - - return [{ - target: "parent", - mutation: function () { - return { - startX: x, - startY: y, - panning: true, - parentSVG: parentSVG, - parentControlledProps: ["domain"] - }; - } - }]; - }, - onMouseUp: function (evt, targetProps) { - if (!targetProps.allowPan) { - return undefined; - } - - return [{ - target: "parent", - mutation: function () { - return { - panning: false - }; - } - }]; - }, - onMouseLeave: function (evt, targetProps) { - if (!targetProps.allowPan) { - return undefined; - } - - return [{ - target: "parent", - mutation: function () { - return { - panning: false - }; - } - }]; - }, - // eslint-disable-next-line max-params, max-statements - onMouseMove: function (evt, targetProps, eventKey, ctx) { - if (targetProps.panning && targetProps.allowPan) { - var scale = targetProps.scale, - startX = targetProps.startX, - startY = targetProps.startY, - onZoomDomainChange = targetProps.onZoomDomainChange, - zoomDomain = targetProps.zoomDomain, - zoomDimension = targetProps.zoomDimension, - horizontal = targetProps.horizontal; - var parentSVG = targetProps.parentSVG || Selection.getParentSVG(evt); - - var _Selection$getSVGEven3 = Selection.getSVGEventCoordinates(evt, parentSVG), - x = _Selection$getSVGEven3.x, - y = _Selection$getSVGEven3.y; - - var originalDomain = this.getDomain(targetProps); - var lastDomain = this.getLastDomain(targetProps, originalDomain); - var deltaX = horizontal ? y - startY : startX - x; - var deltaY = horizontal ? startX - x : y - startY; - var dx = deltaX / this.getDomainScale(lastDomain, scale, "x", horizontal); - var dy = deltaY / this.getDomainScale(lastDomain, scale, "y", horizontal); - var currentDomain = { - x: zoomDimension === "y" ? originalDomain.x : this.pan(lastDomain.x, originalDomain.x, dx), - y: zoomDimension === "x" ? originalDomain.y : this.pan(lastDomain.y, originalDomain.y, dy) - }; - var resumeAnimation = this.handleAnimation(ctx); - var zoomActive = !this.checkDomainEquality(originalDomain, lastDomain); - var mutatedProps = { - parentControlledProps: ["domain"], - startX: x, - startY: y, - parentSVG: parentSVG, - domain: currentDomain, - currentDomain: currentDomain, - originalDomain: originalDomain, - cachedZoomDomain: zoomDomain, - zoomActive: zoomActive - }; - - if (isFunction_1(onZoomDomainChange)) { - onZoomDomainChange(currentDomain, defaults_1({}, mutatedProps, targetProps)); - } - - return [{ - target: "parent", - callback: resumeAnimation, - mutation: function () { - return mutatedProps; - } - }]; - } - - return undefined; - }, - // eslint-disable-next-line max-params - onWheel: function (evt, targetProps, eventKey, ctx) { - if (!targetProps.allowZoom) { - return undefined; - } - - var onZoomDomainChange = targetProps.onZoomDomainChange, - zoomDimension = targetProps.zoomDimension, - zoomDomain = targetProps.zoomDomain; - var originalDomain = this.getDomain(targetProps); - var lastDomain = this.getLastDomain(targetProps, originalDomain); - var x = lastDomain.x, - y = lastDomain.y; - var currentDomain = { - x: zoomDimension === "y" ? lastDomain.x : this.scale(x, evt, targetProps, "x"), - y: zoomDimension === "x" ? lastDomain.y : this.scale(y, evt, targetProps, "y") - }; - var resumeAnimation = this.handleAnimation(ctx); - var zoomActive = !this.zoommingOut(evt) || // if zoomming in or - // if zoomActive is already set AND user hasn't zoommed out all the way - targetProps.zoomActive && !this.checkDomainEquality(originalDomain, lastDomain); - var mutatedProps = { - domain: currentDomain, - currentDomain: currentDomain, - originalDomain: originalDomain, - cachedZoomDomain: zoomDomain, - parentControlledProps: ["domain"], - panning: false, - zoomActive: zoomActive - }; - - if (isFunction_1(onZoomDomainChange)) { - onZoomDomainChange(currentDomain, defaults_1({}, mutatedProps, targetProps)); - } - - return [{ - target: "parent", - callback: resumeAnimation, - mutation: function () { - return mutatedProps; - } - }]; - } -}; - -var ZoomHelpers = { - checkDomainEquality: RawZoomHelpers.checkDomainEquality.bind(RawZoomHelpers), - onMouseDown: RawZoomHelpers.onMouseDown.bind(RawZoomHelpers), - onMouseUp: RawZoomHelpers.onMouseUp.bind(RawZoomHelpers), - onMouseLeave: RawZoomHelpers.onMouseLeave.bind(RawZoomHelpers), - onMouseMove: throttle_1(RawZoomHelpers.onMouseMove.bind(RawZoomHelpers), 16, // eslint-disable-line no-magic-numbers - { - leading: true, - trailing: false - }), - onWheel: throttle_1(RawZoomHelpers.onWheel.bind(RawZoomHelpers), 16, // eslint-disable-line no-magic-numbers - { - leading: true, - trailing: false - }) -}; - -function _objectSpread$q(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$v(target, key, source[key]); }); } return target; } - -function _defineProperty$v(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _toConsumableArray$q(arr) { return _arrayWithoutHoles$q(arr) || _iterableToArray$q(arr) || _nonIterableSpread$q(); } - -function _nonIterableSpread$q() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$q(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$q(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function _classCallCheck$l(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$l(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$l(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$l(Constructor.prototype, protoProps); if (staticProps) _defineProperties$l(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$k(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$k(self); } - -function _assertThisInitialized$k(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _inherits$k(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } -var DEFAULT_DOWNSAMPLE = 150; -var zoomContainerMixin = function (base) { - var _class, _temp; - - return _temp = _class = - /*#__PURE__*/ - function (_base) { - _inherits$k(VictoryZoomContainer, _base); - - function VictoryZoomContainer() { - _classCallCheck$l(this, VictoryZoomContainer); - - return _possibleConstructorReturn$k(this, (VictoryZoomContainer.__proto__ || Object.getPrototypeOf(VictoryZoomContainer)).apply(this, arguments)); - } - - _createClass$l(VictoryZoomContainer, [{ - key: "clipDataComponents", - value: function clipDataComponents(children, props) { - var scale = props.scale, - clipContainerComponent = props.clipContainerComponent, - polar = props.polar, - origin = props.origin, - horizontal = props.horizontal; - var rangeX = horizontal ? scale.y.range() : scale.x.range(); - var rangeY = horizontal ? scale.x.range() : scale.y.range(); - var plottableWidth = Math.abs(rangeX[0] - rangeX[1]); - var plottableHeight = Math.abs(rangeY[0] - rangeY[1]); - var radius = Math.max.apply(Math, _toConsumableArray$q(rangeY)); - var groupComponent = React__default.cloneElement(clipContainerComponent, _objectSpread$q({ - clipWidth: plottableWidth, - clipHeight: plottableHeight, - translateX: Math.min.apply(Math, _toConsumableArray$q(rangeX)), - translateY: Math.min.apply(Math, _toConsumableArray$q(rangeY)), - polar: polar, - origin: polar ? origin : undefined, - radius: polar ? radius : undefined - }, clipContainerComponent.props)); - return React__default.Children.toArray(children).map(function (child) { - if (!Data.isDataComponent(child)) { - return child; - } else { - return React__default.cloneElement(child, { - groupComponent: groupComponent - }); - } - }); - } - }, { - key: "modifyPolarDomain", - value: function modifyPolarDomain(domain, originalDomain) { - // Only zoom the radius of polar charts. Zooming angles is very confusing - return { - x: originalDomain.x, - y: [0, domain.y[1]] - }; - } - }, { - key: "downsampleZoomData", - value: function downsampleZoomData(props, child, domain) { - var downsample = props.downsample; - - var getData = function (childProps) { - var data = childProps.data, - x = childProps.x, - y = childProps.y; - var defaultGetData = child.type && isFunction_1(child.type.getData) ? child.type.getData : function () { - return undefined; - }; // skip costly data formatting if x and y accessors are not present - - return Array.isArray(data) && !x && !y ? data : defaultGetData(childProps); - }; - - var data = getData(child.props); // return undefined if downsample is not run, then default() will replace with child.props.data - - if (!downsample || !domain || !data) { - return undefined; - } - - var maxPoints = downsample === true ? DEFAULT_DOWNSAMPLE : downsample; - var dimension = props.zoomDimension || "x"; // important: assumes data is ordered by dimension - // get the start and end of the data that is in the current visible domain - - var startIndex = data.findIndex(function (d) { - return d[dimension] >= domain[dimension][0]; - }); - var endIndex = data.findIndex(function (d) { - return d[dimension] > domain[dimension][1]; - }); // pick one more point (if available) at each end so that VictoryLine, VictoryArea connect - - if (startIndex !== 0) { - startIndex -= 1; - } - - if (endIndex !== -1) { - endIndex += 1; - } - - var visibleData = data.slice(startIndex, endIndex); - return Data.downsample(visibleData, maxPoints, startIndex); - } - }, { - key: "modifyChildren", - value: function modifyChildren(props) { - var _this = this; - - var childComponents = React__default.Children.toArray(props.children); // eslint-disable-next-line max-statements - - return childComponents.map(function (child) { - var role = child.type && child.type.role; - var isDataComponent = Data.isDataComponent(child); - var currentDomain = props.currentDomain, - zoomActive = props.zoomActive, - allowZoom = props.allowZoom; - - var originalDomain = defaults_1({}, props.originalDomain, props.domain); - - var zoomDomain = defaults_1({}, props.zoomDomain, props.domain); - - var cachedZoomDomain = defaults_1({}, props.cachedZoomDomain, props.domain); - - var domain; - - if (!ZoomHelpers.checkDomainEquality(zoomDomain, cachedZoomDomain)) { - // if zoomDomain has been changed, use it - domain = zoomDomain; - } else if (allowZoom && !zoomActive) { - // if user has zoomed all the way out, use the child domain - domain = child.props.domain; - } else { - // default: use currentDomain, set by the event handlers - domain = defaults_1({}, currentDomain, originalDomain); - } - - var newDomain = props.polar ? _this.modifyPolarDomain(domain, originalDomain) : domain; - - if (newDomain && props.zoomDimension) { - // if zooming is restricted to a dimension, don't squash changes to zoomDomain in other dim - newDomain = _objectSpread$q({}, zoomDomain, _defineProperty$v({}, props.zoomDimension, newDomain[props.zoomDimension])); - } // don't downsample stacked data - - - var newProps = isDataComponent && role !== "stack" ? { - domain: newDomain, - data: _this.downsampleZoomData(props, child, newDomain) - } : { - domain: newDomain - }; - return React__default.cloneElement(child, defaults_1(newProps, child.props)); - }); - } // Overrides method in VictoryContainer - - }, { - key: "getChildren", - value: function getChildren(props) { - var children = this.modifyChildren(props); - return this.clipDataComponents(children, props); - } - }]); - - return VictoryZoomContainer; - }(base), Object.defineProperty(_class, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryZoomContainer" - }), Object.defineProperty(_class, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$q({}, VictoryContainer.propTypes, { - allowPan: propTypes.bool, - allowZoom: propTypes.bool, - clipContainerComponent: propTypes.element.isRequired, - disable: propTypes.bool, - downsample: propTypes.oneOfType([propTypes.bool, propTypes.number]), - minimumZoom: propTypes.shape({ - x: propTypes.number, - y: propTypes.number - }), - onZoomDomainChange: propTypes.func, - zoomDimension: propTypes.oneOf(["x", "y"]), - zoomDomain: propTypes.shape({ - x: CustomPropTypes.domain, - y: CustomPropTypes.domain - }) - }) - }), Object.defineProperty(_class, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: _objectSpread$q({}, VictoryContainer.defaultProps, { - clipContainerComponent: React__default.createElement(VictoryClipContainer, null), - allowPan: true, - allowZoom: true, - zoomActive: false - }) - }), Object.defineProperty(_class, "defaultEvents", { - configurable: true, - enumerable: true, - writable: true, - value: function (props) { - return [{ - target: "parent", - eventHandlers: _objectSpread$q({ - onMouseDown: function (evt, targetProps) { - return props.disable ? {} : ZoomHelpers.onMouseDown(evt, targetProps); - }, - onTouchStart: function (evt, targetProps) { - return props.disable ? {} : ZoomHelpers.onMouseDown(evt, targetProps); - }, - onMouseUp: function (evt, targetProps) { - return props.disable ? {} : ZoomHelpers.onMouseUp(evt, targetProps); - }, - onTouchEnd: function (evt, targetProps) { - return props.disable ? {} : ZoomHelpers.onMouseUp(evt, targetProps); - }, - onMouseLeave: function (evt, targetProps) { - return props.disable ? {} : ZoomHelpers.onMouseLeave(evt, targetProps); - }, - onTouchCancel: function (evt, targetProps) { - return props.disable ? {} : ZoomHelpers.onMouseLeave(evt, targetProps); - }, - // eslint-disable-next-line max-params - onMouseMove: function (evt, targetProps, eventKey, ctx) { - if (props.disable) { - return {}; - } - - return ZoomHelpers.onMouseMove(evt, targetProps, eventKey, ctx); - }, - // eslint-disable-next-line max-params - onTouchMove: function (evt, targetProps, eventKey, ctx) { - if (props.disable) { - return {}; - } - - evt.preventDefault(); - return ZoomHelpers.onMouseMove(evt, targetProps, eventKey, ctx); - } - }, props.disable || !props.allowZoom ? {} : { - onWheel: ZoomHelpers.onWheel - }) - }]; - } - }), _temp; -}; -zoomContainerMixin(VictoryContainer); - -/** Built-in value references. */ -var objectCreate = Object.create; - -/** - * The base implementation of `_.create` without support for assigning - * properties to the created object. - * - * @private - * @param {Object} proto The object to inherit from. - * @returns {Object} Returns the new object. - */ -var baseCreate = (function() { - function object() {} - return function(proto) { - if (!isObject_1(proto)) { - return {}; - } - if (objectCreate) { - return objectCreate(proto); - } - object.prototype = proto; - var result = new object; - object.prototype = undefined; - return result; - }; -}()); - -var _baseCreate = baseCreate; - -/** - * The function whose prototype chain sequence wrappers inherit from. - * - * @private - */ -function baseLodash() { - // No operation performed. -} - -var _baseLodash = baseLodash; - -/** - * The base constructor for creating `lodash` wrapper objects. - * - * @private - * @param {*} value The value to wrap. - * @param {boolean} [chainAll] Enable explicit method chain sequences. - */ -function LodashWrapper(value, chainAll) { - this.__wrapped__ = value; - this.__actions__ = []; - this.__chain__ = !!chainAll; - this.__index__ = 0; - this.__values__ = undefined; -} - -LodashWrapper.prototype = _baseCreate(_baseLodash.prototype); -LodashWrapper.prototype.constructor = LodashWrapper; - -var _LodashWrapper = LodashWrapper; - -/** Used to store function metadata. */ -var metaMap = _WeakMap && new _WeakMap; - -var _metaMap = metaMap; - -/** - * Gets metadata for `func`. - * - * @private - * @param {Function} func The function to query. - * @returns {*} Returns the metadata for `func`. - */ -var getData$1 = !_metaMap ? noop_1 : function(func) { - return _metaMap.get(func); -}; - -var _getData = getData$1; - -/** Used to lookup unminified function names. */ -var realNames = {}; - -var _realNames = realNames; - -/** Used for built-in method references. */ -var objectProto$k = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty$h = objectProto$k.hasOwnProperty; - -/** - * Gets the name of `func`. - * - * @private - * @param {Function} func The function to query. - * @returns {string} Returns the function name. - */ -function getFuncName(func) { - var result = (func.name + ''), - array = _realNames[result], - length = hasOwnProperty$h.call(_realNames, result) ? array.length : 0; - - while (length--) { - var data = array[length], - otherFunc = data.func; - if (otherFunc == null || otherFunc == func) { - return data.name; - } - } - return result; -} - -var _getFuncName = getFuncName; - -/** Used as references for the maximum length and index of an array. */ -var MAX_ARRAY_LENGTH = 4294967295; - -/** - * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation. - * - * @private - * @constructor - * @param {*} value The value to wrap. - */ -function LazyWrapper(value) { - this.__wrapped__ = value; - this.__actions__ = []; - this.__dir__ = 1; - this.__filtered__ = false; - this.__iteratees__ = []; - this.__takeCount__ = MAX_ARRAY_LENGTH; - this.__views__ = []; -} - -// Ensure `LazyWrapper` is an instance of `baseLodash`. -LazyWrapper.prototype = _baseCreate(_baseLodash.prototype); -LazyWrapper.prototype.constructor = LazyWrapper; - -var _LazyWrapper = LazyWrapper; - -/** - * Copies the values of `source` to `array`. - * - * @private - * @param {Array} source The array to copy values from. - * @param {Array} [array=[]] The array to copy values to. - * @returns {Array} Returns `array`. - */ -function copyArray(source, array) { - var index = -1, - length = source.length; - - array || (array = Array(length)); - while (++index < length) { - array[index] = source[index]; - } - return array; -} - -var _copyArray = copyArray; - -/** - * Creates a clone of `wrapper`. - * - * @private - * @param {Object} wrapper The wrapper to clone. - * @returns {Object} Returns the cloned wrapper. - */ -function wrapperClone(wrapper) { - if (wrapper instanceof _LazyWrapper) { - return wrapper.clone(); - } - var result = new _LodashWrapper(wrapper.__wrapped__, wrapper.__chain__); - result.__actions__ = _copyArray(wrapper.__actions__); - result.__index__ = wrapper.__index__; - result.__values__ = wrapper.__values__; - return result; -} - -var _wrapperClone = wrapperClone; - -/** Used for built-in method references. */ -var objectProto$l = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty$i = objectProto$l.hasOwnProperty; - -/** - * Creates a `lodash` object which wraps `value` to enable implicit method - * chain sequences. Methods that operate on and return arrays, collections, - * and functions can be chained together. Methods that retrieve a single value - * or may return a primitive value will automatically end the chain sequence - * and return the unwrapped value. Otherwise, the value must be unwrapped - * with `_#value`. - * - * Explicit chain sequences, which must be unwrapped with `_#value`, may be - * enabled using `_.chain`. - * - * The execution of chained methods is lazy, that is, it's deferred until - * `_#value` is implicitly or explicitly called. - * - * Lazy evaluation allows several methods to support shortcut fusion. - * Shortcut fusion is an optimization to merge iteratee calls; this avoids - * the creation of intermediate arrays and can greatly reduce the number of - * iteratee executions. Sections of a chain sequence qualify for shortcut - * fusion if the section is applied to an array and iteratees accept only - * one argument. The heuristic for whether a section qualifies for shortcut - * fusion is subject to change. - * - * Chaining is supported in custom builds as long as the `_#value` method is - * directly or indirectly included in the build. - * - * In addition to lodash methods, wrappers have `Array` and `String` methods. - * - * The wrapper `Array` methods are: - * `concat`, `join`, `pop`, `push`, `shift`, `sort`, `splice`, and `unshift` - * - * The wrapper `String` methods are: - * `replace` and `split` - * - * The wrapper methods that support shortcut fusion are: - * `at`, `compact`, `drop`, `dropRight`, `dropWhile`, `filter`, `find`, - * `findLast`, `head`, `initial`, `last`, `map`, `reject`, `reverse`, `slice`, - * `tail`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `toArray` - * - * The chainable wrapper methods are: - * `after`, `ary`, `assign`, `assignIn`, `assignInWith`, `assignWith`, `at`, - * `before`, `bind`, `bindAll`, `bindKey`, `castArray`, `chain`, `chunk`, - * `commit`, `compact`, `concat`, `conforms`, `constant`, `countBy`, `create`, - * `curry`, `debounce`, `defaults`, `defaultsDeep`, `defer`, `delay`, - * `difference`, `differenceBy`, `differenceWith`, `drop`, `dropRight`, - * `dropRightWhile`, `dropWhile`, `extend`, `extendWith`, `fill`, `filter`, - * `flatMap`, `flatMapDeep`, `flatMapDepth`, `flatten`, `flattenDeep`, - * `flattenDepth`, `flip`, `flow`, `flowRight`, `fromPairs`, `functions`, - * `functionsIn`, `groupBy`, `initial`, `intersection`, `intersectionBy`, - * `intersectionWith`, `invert`, `invertBy`, `invokeMap`, `iteratee`, `keyBy`, - * `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`, - * `memoize`, `merge`, `mergeWith`, `method`, `methodOf`, `mixin`, `negate`, - * `nthArg`, `omit`, `omitBy`, `once`, `orderBy`, `over`, `overArgs`, - * `overEvery`, `overSome`, `partial`, `partialRight`, `partition`, `pick`, - * `pickBy`, `plant`, `property`, `propertyOf`, `pull`, `pullAll`, `pullAllBy`, - * `pullAllWith`, `pullAt`, `push`, `range`, `rangeRight`, `rearg`, `reject`, - * `remove`, `rest`, `reverse`, `sampleSize`, `set`, `setWith`, `shuffle`, - * `slice`, `sort`, `sortBy`, `splice`, `spread`, `tail`, `take`, `takeRight`, - * `takeRightWhile`, `takeWhile`, `tap`, `throttle`, `thru`, `toArray`, - * `toPairs`, `toPairsIn`, `toPath`, `toPlainObject`, `transform`, `unary`, - * `union`, `unionBy`, `unionWith`, `uniq`, `uniqBy`, `uniqWith`, `unset`, - * `unshift`, `unzip`, `unzipWith`, `update`, `updateWith`, `values`, - * `valuesIn`, `without`, `wrap`, `xor`, `xorBy`, `xorWith`, `zip`, - * `zipObject`, `zipObjectDeep`, and `zipWith` - * - * The wrapper methods that are **not** chainable by default are: - * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`, - * `cloneDeep`, `cloneDeepWith`, `cloneWith`, `conformsTo`, `deburr`, - * `defaultTo`, `divide`, `each`, `eachRight`, `endsWith`, `eq`, `escape`, - * `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`, - * `findLastIndex`, `findLastKey`, `first`, `floor`, `forEach`, `forEachRight`, - * `forIn`, `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`, - * `hasIn`, `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`, - * `isArguments`, `isArray`, `isArrayBuffer`, `isArrayLike`, `isArrayLikeObject`, - * `isBoolean`, `isBuffer`, `isDate`, `isElement`, `isEmpty`, `isEqual`, - * `isEqualWith`, `isError`, `isFinite`, `isFunction`, `isInteger`, `isLength`, - * `isMap`, `isMatch`, `isMatchWith`, `isNaN`, `isNative`, `isNil`, `isNull`, - * `isNumber`, `isObject`, `isObjectLike`, `isPlainObject`, `isRegExp`, - * `isSafeInteger`, `isSet`, `isString`, `isUndefined`, `isTypedArray`, - * `isWeakMap`, `isWeakSet`, `join`, `kebabCase`, `last`, `lastIndexOf`, - * `lowerCase`, `lowerFirst`, `lt`, `lte`, `max`, `maxBy`, `mean`, `meanBy`, - * `min`, `minBy`, `multiply`, `noConflict`, `noop`, `now`, `nth`, `pad`, - * `padEnd`, `padStart`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`, - * `repeat`, `result`, `round`, `runInContext`, `sample`, `shift`, `size`, - * `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`, `sortedLastIndex`, - * `sortedLastIndexBy`, `startCase`, `startsWith`, `stubArray`, `stubFalse`, - * `stubObject`, `stubString`, `stubTrue`, `subtract`, `sum`, `sumBy`, - * `template`, `times`, `toFinite`, `toInteger`, `toJSON`, `toLength`, - * `toLower`, `toNumber`, `toSafeInteger`, `toString`, `toUpper`, `trim`, - * `trimEnd`, `trimStart`, `truncate`, `unescape`, `uniqueId`, `upperCase`, - * `upperFirst`, `value`, and `words` - * - * @name _ - * @constructor - * @category Seq - * @param {*} value The value to wrap in a `lodash` instance. - * @returns {Object} Returns the new `lodash` wrapper instance. - * @example - * - * function square(n) { - * return n * n; - * } - * - * var wrapped = _([1, 2, 3]); - * - * // Returns an unwrapped value. - * wrapped.reduce(_.add); - * // => 6 - * - * // Returns a wrapped value. - * var squares = wrapped.map(square); - * - * _.isArray(squares); - * // => false - * - * _.isArray(squares.value()); - * // => true - */ -function lodash(value) { - if (isObjectLike_1(value) && !isArray_1(value) && !(value instanceof _LazyWrapper)) { - if (value instanceof _LodashWrapper) { - return value; - } - if (hasOwnProperty$i.call(value, '__wrapped__')) { - return _wrapperClone(value); - } - } - return new _LodashWrapper(value); -} - -// Ensure wrappers are instances of `baseLodash`. -lodash.prototype = _baseLodash.prototype; -lodash.prototype.constructor = lodash; - -var wrapperLodash = lodash; - -/** - * Checks if `func` has a lazy counterpart. - * - * @private - * @param {Function} func The function to check. - * @returns {boolean} Returns `true` if `func` has a lazy counterpart, - * else `false`. - */ -function isLaziable(func) { - var funcName = _getFuncName(func), - other = wrapperLodash[funcName]; - - if (typeof other != 'function' || !(funcName in _LazyWrapper.prototype)) { - return false; - } - if (func === other) { - return true; - } - var data = _getData(other); - return !!data && func === data[0]; -} - -var _isLaziable = isLaziable; - -/** Error message constants. */ -var FUNC_ERROR_TEXT$5 = 'Expected a function'; - -/** Used to compose bitmasks for function metadata. */ -var WRAP_CURRY_FLAG = 8, - WRAP_PARTIAL_FLAG = 32, - WRAP_ARY_FLAG = 128, - WRAP_REARG_FLAG = 256; - -/** - * Creates a `_.flow` or `_.flowRight` function. - * - * @private - * @param {boolean} [fromRight] Specify iterating from right to left. - * @returns {Function} Returns the new flow function. - */ -function createFlow(fromRight) { - return _flatRest(function(funcs) { - var length = funcs.length, - index = length, - prereq = _LodashWrapper.prototype.thru; - - if (fromRight) { - funcs.reverse(); - } - while (index--) { - var func = funcs[index]; - if (typeof func != 'function') { - throw new TypeError(FUNC_ERROR_TEXT$5); - } - if (prereq && !wrapper && _getFuncName(func) == 'wrapper') { - var wrapper = new _LodashWrapper([], true); - } - } - index = wrapper ? index : length; - while (++index < length) { - func = funcs[index]; - - var funcName = _getFuncName(func), - data = funcName == 'wrapper' ? _getData(func) : undefined; - - if (data && _isLaziable(data[0]) && - data[1] == (WRAP_ARY_FLAG | WRAP_CURRY_FLAG | WRAP_PARTIAL_FLAG | WRAP_REARG_FLAG) && - !data[4].length && data[9] == 1 - ) { - wrapper = wrapper[_getFuncName(data[0])].apply(wrapper, data[3]); - } else { - wrapper = (func.length == 1 && _isLaziable(func)) - ? wrapper[funcName]() - : wrapper.thru(func); - } - } - return function() { - var args = arguments, - value = args[0]; - - if (wrapper && args.length == 1 && isArray_1(value)) { - return wrapper.plant(value).value(); - } - var index = 0, - result = length ? funcs[index].apply(this, args) : value; - - while (++index < length) { - result = funcs[index].call(this, result); - } - return result; - }; - }); -} - -var _createFlow = createFlow; - -/** - * Creates a function that returns the result of invoking the given functions - * with the `this` binding of the created function, where each successive - * invocation is supplied the return value of the previous. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Util - * @param {...(Function|Function[])} [funcs] The functions to invoke. - * @returns {Function} Returns the new composite function. - * @see _.flowRight - * @example - * - * function square(n) { - * return n * n; - * } - * - * var addSquare = _.flow([_.add, square]); - * addSquare(1, 2); - * // => 9 - */ -var flow = _createFlow(); - -var flow_1 = flow; - -/** - * Casts `value` to `identity` if it's not a function. - * - * @private - * @param {*} value The value to inspect. - * @returns {Function} Returns cast function. - */ -function castFunction(value) { - return typeof value == 'function' ? value : identity_1; -} - -var _castFunction = castFunction; - -/** - * Iterates over own enumerable string keyed properties of an object and - * invokes `iteratee` for each property. The iteratee is invoked with three - * arguments: (value, key, object). Iteratee functions may exit iteration - * early by explicitly returning `false`. - * - * @static - * @memberOf _ - * @since 0.3.0 - * @category Object - * @param {Object} object The object to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Object} Returns `object`. - * @see _.forOwnRight - * @example - * - * function Foo() { - * this.a = 1; - * this.b = 2; - * } - * - * Foo.prototype.c = 3; - * - * _.forOwn(new Foo, function(value, key) { - * console.log(key); - * }); - * // => Logs 'a' then 'b' (iteration order is not guaranteed). - */ -function forOwn(object, iteratee) { - return object && _baseForOwn(object, _castFunction(iteratee)); -} - -var forOwn_1 = forOwn; - -/** - * The base implementation of `_.toPairs` and `_.toPairsIn` which creates an array - * of key-value pairs for `object` corresponding to the property names of `props`. - * - * @private - * @param {Object} object The object to query. - * @param {Array} props The property names to get values for. - * @returns {Object} Returns the key-value pairs. - */ -function baseToPairs(object, props) { - return _arrayMap(props, function(key) { - return [key, object[key]]; - }); -} - -var _baseToPairs = baseToPairs; - -/** - * Converts `set` to its value-value pairs. - * - * @private - * @param {Object} set The set to convert. - * @returns {Array} Returns the value-value pairs. - */ -function setToPairs(set) { - var index = -1, - result = Array(set.size); - - set.forEach(function(value) { - result[++index] = [value, value]; - }); - return result; -} - -var _setToPairs = setToPairs; - -/** `Object#toString` result references. */ -var mapTag$4 = '[object Map]', - setTag$4 = '[object Set]'; - -/** - * Creates a `_.toPairs` or `_.toPairsIn` function. - * - * @private - * @param {Function} keysFunc The function to get the keys of a given object. - * @returns {Function} Returns the new pairs function. - */ -function createToPairs(keysFunc) { - return function(object) { - var tag = _getTag(object); - if (tag == mapTag$4) { - return _mapToArray(object); - } - if (tag == setTag$4) { - return _setToPairs(object); - } - return _baseToPairs(object, keysFunc(object)); - }; -} - -var _createToPairs = createToPairs; - -/** - * Creates an array of own enumerable string keyed-value pairs for `object` - * which can be consumed by `_.fromPairs`. If `object` is a map or set, its - * entries are returned. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @alias entries - * @category Object - * @param {Object} object The object to query. - * @returns {Array} Returns the key-value pairs. - * @example - * - * function Foo() { - * this.a = 1; - * this.b = 2; - * } - * - * Foo.prototype.c = 3; - * - * _.toPairs(new Foo); - * // => [['a', 1], ['b', 2]] (iteration order is not guaranteed) - */ -var toPairs = _createToPairs(keys_1); - -var toPairs_1 = toPairs; - -function _toConsumableArray$r(arr) { return _arrayWithoutHoles$r(arr) || _iterableToArray$r(arr) || _nonIterableSpread$r(); } - -function _nonIterableSpread$r() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$r(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$r(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function _objectSpread$r(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$w(target, key, source[key]); }); } return target; } - -function _defineProperty$w(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -function _classCallCheck$m(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$m(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$m(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$m(Constructor.prototype, protoProps); if (staticProps) _defineProperties$m(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$l(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$l(self); } - -function _assertThisInitialized$l(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _inherits$l(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } - -function _slicedToArray$2(arr, i) { return _arrayWithHoles$2(arr) || _iterableToArrayLimit$2(arr, i) || _nonIterableRest$2(); } - -function _nonIterableRest$2() { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } - -function _iterableToArrayLimit$2(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } - -function _arrayWithHoles$2(arr) { if (Array.isArray(arr)) return arr; } - -var ensureArray = function (thing) { - if (!thing) { - return []; - } else if (!Array.isArray(thing)) { - return [thing]; - } else { - return thing; - } -}; - -var combineEventHandlers = function (eventHandlersArray) { - // takes an array of event handler objects and produces one eventHandlers object - // creates a custom combinedHandler() for events with multiple conflicting handlers - return eventHandlersArray.reduce(function (localHandlers, finalHandlers) { - forOwn_1(localHandlers, function (localHandler, eventName) { - var existingHandler = finalHandlers[eventName]; - - if (existingHandler) { - // create new handler for event that concats the existing handler's mutations with new ones - finalHandlers[eventName] = function combinedHandler() { - // named for debug clarity - // sometimes handlers return undefined; use empty array instead, for concat() - var existingMutations = ensureArray(existingHandler.apply(void 0, arguments)); - var localMutations = ensureArray(localHandler.apply(void 0, arguments)); - return existingMutations.concat(localMutations); - }; - } else { - finalHandlers[eventName] = localHandler; - } - }); - - return finalHandlers; - }); -}; - -var combineDefaultEvents = function (defaultEvents) { - // takes a defaultEvents array and returns one equal or lesser length, - // by combining any events that have the same target - var eventsByTarget = groupBy_1(defaultEvents, "target"); - - var events = toPairs_1(eventsByTarget).map(function (_ref) { - var _ref2 = _slicedToArray$2(_ref, 2), - target = _ref2[0], - eventsArray = _ref2[1]; - - eventsArray = eventsArray.filter(Boolean); - return isEmpty_1(eventsArray) ? null : { - target: target, - eventHandlers: combineEventHandlers(eventsArray.map(function (event) { - return event.eventHandlers; - })) // note: does not currently handle eventKey or childName - - }; - }); - - return events.filter(Boolean); -}; - -var combineContainerMixins = function (mixins, Container) { - var _class, _temp; - - // similar to Object.assign(A, B), this function will decide conflicts in favor mixinB. - // this applies to propTypes and defaultProps. - // getChildren will call A's getChildren() and pass the resulting children to B's. - // defaultEvents attempts to resolve any conflicts between A and B's defaultEvents. - var Classes = mixins.map(function (mixin) { - return mixin(Container); - }); - var instances = Classes.map(function (Class) { - return new Class(); - }); - - var NaiveCombinedContainer = flow_1(mixins)(Container); - - var displayType = Classes.map(function (Class) { - var match = Class.displayName.match(/Victory(.*)Container/); - return match[1] || ""; - }).join(""); - return _temp = _class = - /*#__PURE__*/ - function (_NaiveCombinedContain) { - _inherits$l(VictoryCombinedContainer, _NaiveCombinedContain); - - function VictoryCombinedContainer() { - _classCallCheck$m(this, VictoryCombinedContainer); - - return _possibleConstructorReturn$l(this, (VictoryCombinedContainer.__proto__ || Object.getPrototypeOf(VictoryCombinedContainer)).apply(this, arguments)); - } - - _createClass$m(VictoryCombinedContainer, [{ - key: "getChildren", - value: function getChildren(props) { - return instances.reduce(function (children, instance) { - return instance.getChildren(_objectSpread$r({}, props, { - children: children - })); - }, props.children); - } - }]); - - return VictoryCombinedContainer; - }(NaiveCombinedContainer), Object.defineProperty(_class, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "Victory".concat(displayType, "Container") - }), Object.defineProperty(_class, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: Classes.reduce(function (propTypes, Class) { - return _objectSpread$r({}, propTypes, Class.propTypes); - }, {}) - }), Object.defineProperty(_class, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: Classes.reduce(function (defaultProps, Class) { - return _objectSpread$r({}, defaultProps, Class.defaultProps); - }, {}) - }), Object.defineProperty(_class, "defaultEvents", { - configurable: true, - enumerable: true, - writable: true, - value: function (props) { - return combineDefaultEvents(Classes.reduce(function (defaultEvents, Class) { - var events = isFunction_1(Class.defaultEvents) ? Class.defaultEvents(props) : Class.defaultEvents; - return _toConsumableArray$r(defaultEvents).concat(_toConsumableArray$r(events)); - }, [])); - } - }), _temp; -}; - -var checkBehaviorName = function (behavior, behaviors) { - if (behavior && !includes_1(behaviors, behavior)) { - Log.warn("\"".concat(behavior, "\" is not a valid behavior. Choose from [").concat(behaviors.join(", "), "].")); - } -}; - -var makeCreateContainerFunction = function (mixinMap, Container) { - return function (behaviorA, behaviorB) { - // eslint-disable-line - var behaviors = keys_1(mixinMap); - - checkBehaviorName(behaviorA, behaviors); - checkBehaviorName(behaviorB, behaviors); - - if (arguments.length <= 2 ? 0 : arguments.length - 2) { - Log.warn("too many arguments given to createContainer (maximum accepted: 2)."); - } - - var firstMixins = mixinMap[behaviorA]; - var secondMixins = mixinMap[behaviorB] || []; - - if (!firstMixins) { - return Container; - } - - return combineContainerMixins(_toConsumableArray$r(firstMixins).concat(_toConsumableArray$r(secondMixins)), Container); - }; -}; - -var createContainer = makeCreateContainerFunction({ - zoom: [zoomContainerMixin], - voronoi: [voronoiContainerMixin], - selection: [selectionContainerMixin], - cursor: [cursorContainerMixin], - brush: [brushContainerMixin] -}, VictoryContainer); - -/** - * The base implementation of `_.sum` and `_.sumBy` without support for - * iteratee shorthands. - * - * @private - * @param {Array} array The array to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {number} Returns the sum. - */ -function baseSum(array, iteratee) { - var result, - index = -1, - length = array.length; - - while (++index < length) { - var current = iteratee(array[index]); - if (current !== undefined) { - result = result === undefined ? current : (result + current); - } - } - return result; -} - -var _baseSum = baseSum; - -/** - * Computes the sum of the values in `array`. - * - * @static - * @memberOf _ - * @since 3.4.0 - * @category Math - * @param {Array} array The array to iterate over. - * @returns {number} Returns the sum. - * @example - * - * _.sum([4, 2, 8, 6]); - * // => 20 - */ -function sum$1(array) { - return (array && array.length) - ? _baseSum(array, identity_1) - : 0; -} - -var sum_1 = sum$1; - -function _toConsumableArray$s(arr) { return _arrayWithoutHoles$s(arr) || _iterableToArray$s(arr) || _nonIterableSpread$s(); } - -function _nonIterableSpread$s() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$s(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$s(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function _objectSpread$s(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$x(target, key, source[key]); }); } return target; } - -function _defineProperty$x(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } - -var getColorScale$1 = function (props) { - var colorScale = props.colorScale; - return typeof colorScale === "string" ? Style.getColorScale(colorScale) : colorScale || []; -}; - -var getLabelStyles = function (props) { - var data = props.data, - style = props.style; - return data.map(function (datum, index) { - var baseLabelStyles = defaults_1({}, datum.labels, style.labels); - - return Helpers.evaluateStyle(baseLabelStyles, { - datum: datum, - index: index, - data: data - }); - }); -}; - -var getStyles$5 = function (props, styleObject) { - var style = props.style || {}; - styleObject = styleObject || {}; - var parentStyleProps = { - height: "100%", - width: "100%" - }; - return { - parent: defaults_1(style.parent, styleObject.parent, parentStyleProps), - data: defaults_1({}, style.data, styleObject.data), - labels: defaults_1({}, style.labels, styleObject.labels), - border: defaults_1({}, style.border, styleObject.border), - title: defaults_1({}, style.title, styleObject.title) - }; -}; - -var getCalculatedValues$5 = function (props) { - var orientation = props.orientation, - theme = props.theme; - var defaultStyles = theme && theme.legend && theme.legend.style ? theme.legend.style : {}; - var style = getStyles$5(props, defaultStyles); - var colorScale = getColorScale$1(props); - var isHorizontal = orientation === "horizontal"; - var borderPadding = Helpers.getPadding({ - padding: props.borderPadding - }); - return assign_1({}, props, { - style: style, - isHorizontal: isHorizontal, - colorScale: colorScale, - borderPadding: borderPadding - }); -}; - -var getColumn = function (props, index) { - var itemsPerRow = props.itemsPerRow, - isHorizontal = props.isHorizontal; - - if (!itemsPerRow) { - return isHorizontal ? index : 0; - } - - return isHorizontal ? index % itemsPerRow : Math.floor(index / itemsPerRow); -}; - -var getRow = function (props, index) { - var itemsPerRow = props.itemsPerRow, - isHorizontal = props.isHorizontal; - - if (!itemsPerRow) { - return isHorizontal ? 0 : index; - } - - return isHorizontal ? Math.floor(index / itemsPerRow) : index % itemsPerRow; -}; - -var groupData = function (props) { - var data = props.data; - var style = props.style && props.style.data || {}; - var labelStyles = getLabelStyles(props); - return data.map(function (datum, index) { - var symbol = datum.symbol || {}; - var fontSize = labelStyles[index].fontSize; // eslint-disable-next-line no-magic-numbers - - var size = symbol.size || style.size || fontSize / 2.5; - var symbolSpacer = props.symbolSpacer || Math.max(size, fontSize); - return _objectSpread$s({}, datum, { - size: size, - symbolSpacer: symbolSpacer, - fontSize: fontSize, - textSize: TextSize.approximateTextSize(datum.name, labelStyles[index]), - column: getColumn(props, index), - row: getRow(props, index) - }); - }); -}; - -var getColumnWidths = function (props, data) { - var gutter = props.gutter || {}; - var gutterWidth = typeof gutter === "object" ? (gutter.left || 0) + (gutter.right || 0) : gutter || 0; - - var dataByColumn = groupBy_1(data, "column"); - - var columns = keys_1(dataByColumn); - - return columns.reduce(function (memo, curr, index) { - var lengths = dataByColumn[curr].map(function (d) { - return d.textSize.width + d.size + d.symbolSpacer + gutterWidth; - }); - memo[index] = Math.max.apply(Math, _toConsumableArray$s(lengths)); - return memo; - }, []); -}; - -var getRowHeights = function (props, data) { - var gutter = props.rowGutter || {}; - var gutterHeight = typeof gutter === "object" ? (gutter.top || 0) + (gutter.bottom || 0) : gutter || 0; - - var dataByRow = groupBy_1(data, "row"); - - return keys_1(dataByRow).reduce(function (memo, curr, index) { - var rows = dataByRow[curr]; - var lengths = rows.map(function (d) { - return d.textSize.height + d.symbolSpacer + gutterHeight; - }); - memo[index] = Math.max.apply(Math, _toConsumableArray$s(lengths)); - return memo; - }, []); -}; - -var getTitleDimensions = function (props) { - var style = props.style && props.style.title || {}; - var textSize = TextSize.approximateTextSize(props.title, style); - var padding = style.padding || 0; - return { - height: textSize.height + 2 * padding || 0, - width: textSize.width + 2 * padding || 0 - }; -}; - -var getOffset$2 = function (datum, rowHeights, columnWidths) { - var column = datum.column, - row = datum.row; - return { - x: range_1(column).reduce(function (memo, curr) { - memo += columnWidths[curr]; - return memo; - }, 0), - y: range_1(row).reduce(function (memo, curr) { - memo += rowHeights[curr]; - return memo; - }, 0) - }; -}; - -var getAnchors$1 = function (titleOrientation, centerTitle) { - var standardAnchors = { - textAnchor: titleOrientation === "right" ? "end" : "start", - verticalAnchor: titleOrientation === "bottom" ? "end" : "start" - }; - - if (centerTitle) { - var horizontal = titleOrientation === "top" || titleOrientation === "bottom"; - return { - textAnchor: horizontal ? "middle" : standardAnchors.textAnchor, - verticalAnchor: horizontal ? standardAnchors.verticalAnchor : "middle" - }; - } else { - return standardAnchors; - } -}; - -var getTitleStyle = function (props) { - var titleOrientation = props.titleOrientation, - centerTitle = props.centerTitle, - titleComponent = props.titleComponent; - var baseStyle = props.style && props.style.title || {}; - var componentStyle = titleComponent.props && titleComponent.props.style || {}; - var anchors = getAnchors$1(titleOrientation, centerTitle); - return Array.isArray(componentStyle) ? componentStyle.map(function (obj) { - return defaults_1({}, obj, baseStyle, anchors); - }) : defaults_1({}, componentStyle, baseStyle, anchors); -}; // eslint-disable-next-line complexity - - -var getTitleProps = function (props, borderProps) { - var title = props.title, - titleOrientation = props.titleOrientation, - centerTitle = props.centerTitle, - borderPadding = props.borderPadding; - var height = borderProps.height, - width = borderProps.width; - var style = getTitleStyle(props); - var padding = Array.isArray(style) ? style[0].padding : style.padding; - var horizontal = titleOrientation === "top" || titleOrientation === "bottom"; - var xOrientation = titleOrientation === "bottom" ? "bottom" : "top"; - var yOrientation = titleOrientation === "right" ? "right" : "left"; - var standardPadding = { - x: centerTitle ? width / 2 : borderPadding[xOrientation] + (padding || 0), - y: centerTitle ? height / 2 : borderPadding[yOrientation] + (padding || 0) - }; - - var getPadding = function () { - return borderPadding[titleOrientation] + (padding || 0); - }; - - var xOffset = horizontal ? standardPadding.x : getPadding(); - var yOffset = horizontal ? getPadding() : standardPadding.y; - return { - x: titleOrientation === "right" ? props.x + width - xOffset : props.x + xOffset, - y: titleOrientation === "bottom" ? props.y + height - yOffset : props.y + yOffset, - style: style, - text: title - }; -}; - -var getBorderProps = function (props, contentHeight, contentWidth) { - var x = props.x, - y = props.y, - borderPadding = props.borderPadding, - style = props.style; - var height = (contentHeight || 0) + borderPadding.top + borderPadding.bottom; - var width = (contentWidth || 0) + borderPadding.left + borderPadding.right; - return { - x: x, - y: y, - height: height, - width: width, - style: assign_1({ - fill: "none" - }, style.border) - }; -}; - -var getDimensions = function (props, fallbackProps) { - var modifiedProps = Helpers.modifyProps(props, fallbackProps, "legend"); - props = assign_1({}, modifiedProps, getCalculatedValues$5(modifiedProps)); - var _props = props, - title = _props.title, - titleOrientation = _props.titleOrientation; - var groupedData = groupData(props); - var columnWidths = getColumnWidths(props, groupedData); - var rowHeights = getRowHeights(props, groupedData); - var titleDimensions = title ? getTitleDimensions(props) : { - height: 0, - width: 0 - }; - return { - height: titleOrientation === "left" || titleOrientation === "right" ? Math.max(sum_1(rowHeights), titleDimensions.height) : sum_1(rowHeights) + titleDimensions.height, - width: titleOrientation === "left" || titleOrientation === "right" ? sum_1(columnWidths) + titleDimensions.width : Math.max(sum_1(columnWidths), titleDimensions.width) - }; -}; - -var getBaseProps$5 = function (props, fallbackProps) { - var modifiedProps = Helpers.modifyProps(props, fallbackProps, "legend"); - props = assign_1({}, modifiedProps, getCalculatedValues$5(modifiedProps)); - var _props2 = props, - data = _props2.data, - standalone = _props2.standalone, - theme = _props2.theme, - padding = _props2.padding, - style = _props2.style, - colorScale = _props2.colorScale, - gutter = _props2.gutter, - rowGutter = _props2.rowGutter, - borderPadding = _props2.borderPadding, - title = _props2.title, - titleOrientation = _props2.titleOrientation, - name = _props2.name, - _props2$x = _props2.x, - x = _props2$x === void 0 ? 0 : _props2$x, - _props2$y = _props2.y, - y = _props2$y === void 0 ? 0 : _props2$y; - var groupedData = groupData(props); - var columnWidths = getColumnWidths(props, groupedData); - var rowHeights = getRowHeights(props, groupedData); - var labelStyles = getLabelStyles(props); - var titleDimensions = title ? getTitleDimensions(props) : { - height: 0, - width: 0 - }; - var titleOffset = { - x: titleOrientation === "left" ? titleDimensions.width : 0, - y: titleOrientation === "top" ? titleDimensions.height : 0 - }; - var gutterOffset = { - x: gutter && typeof gutter === "object" ? gutter.left || 0 : 0, - y: rowGutter && typeof rowGutter === "object" ? rowGutter.top || 0 : 0 - }; - - var _getDimensions = getDimensions(props, fallbackProps), - height = _getDimensions.height, - width = _getDimensions.width; - - var borderProps = getBorderProps(props, height, width); - var titleProps = getTitleProps(props, borderProps); - var initialProps = { - parent: { - data: data, - standalone: standalone, - theme: theme, - padding: padding, - name: name, - height: props.height, - width: props.width, - style: style.parent - }, - all: { - border: borderProps, - title: titleProps - } - }; - return groupedData.reduce(function (childProps, datum, i) { - var color = colorScale[i % colorScale.length]; - - var dataStyle = defaults_1({}, datum.symbol, style.data, { - fill: color - }); - - var eventKey = !isNil_1(datum.eventKey) ? datum.eventKey : i; - var offset = getOffset$2(datum, rowHeights, columnWidths); - var originY = y + borderPadding.top + datum.symbolSpacer; - var originX = x + borderPadding.left + datum.symbolSpacer; - var dataProps = { - index: i, - data: data, - datum: datum, - symbol: dataStyle.type || dataStyle.symbol || "circle", - size: datum.size, - style: dataStyle, - y: originY + offset.y + titleOffset.y + gutterOffset.y, - x: originX + offset.x + titleOffset.x + gutterOffset.x - }; - var labelProps = { - datum: datum, - data: data, - text: datum.name, - style: labelStyles[i], - y: dataProps.y, - x: dataProps.x + datum.symbolSpacer + datum.size / 2 - }; - childProps[eventKey] = { - data: dataProps, - labels: labelProps - }; - return childProps; - }, initialProps); -}; - -function _toConsumableArray$t(arr) { return _arrayWithoutHoles$t(arr) || _iterableToArray$t(arr) || _nonIterableSpread$t(); } - -function _nonIterableSpread$t() { throw new TypeError("Invalid attempt to spread non-iterable instance"); } - -function _iterableToArray$t(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); } - -function _arrayWithoutHoles$t(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } } - -function _classCallCheck$n(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -function _defineProperties$n(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } - -function _createClass$n(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$n(Constructor.prototype, protoProps); if (staticProps) _defineProperties$n(Constructor, staticProps); return Constructor; } - -function _possibleConstructorReturn$m(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } return _assertThisInitialized$m(self); } - -function _assertThisInitialized$m(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } - -function _inherits$m(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } -var fallbackProps$a = { - orientation: "vertical", - titleOrientation: "top", - width: 450, - height: 300, - x: 0, - y: 0 -}; -var defaultLegendData = [{ - name: "Series 1" -}, { - name: "Series 2" -}]; - -var VictoryLegend = -/*#__PURE__*/ -function (_React$Component) { - _inherits$m(VictoryLegend, _React$Component); - - function VictoryLegend() { - _classCallCheck$n(this, VictoryLegend); - - return _possibleConstructorReturn$m(this, (VictoryLegend.__proto__ || Object.getPrototypeOf(VictoryLegend)).apply(this, arguments)); - } - - _createClass$n(VictoryLegend, [{ - key: "renderChildren", - value: function renderChildren(props) { - var _this = this; - - var dataComponent = props.dataComponent, - labelComponent = props.labelComponent, - title = props.title; - var dataComponents = this.dataKeys.map(function (_dataKey, index) { - if (_dataKey === "all") { - return undefined; - } - - var dataProps = _this.getComponentProps(dataComponent, "data", index); - - return React__default.cloneElement(dataComponent, dataProps); - }).filter(Boolean); - var labelComponents = this.dataKeys.map(function (_dataKey, index) { - if (_dataKey === "all") { - return undefined; - } - - var labelProps = _this.getComponentProps(labelComponent, "labels", index); - - if (labelProps.text !== undefined && labelProps.text !== null) { - return React__default.cloneElement(labelComponent, labelProps); - } - - return undefined; - }).filter(Boolean); - var borderProps = this.getComponentProps(props.borderComponent, "border", "all"); - var borderComponent = React__default.cloneElement(props.borderComponent, borderProps); - - if (title) { - var titleProps = this.getComponentProps(props.title, "title", "all"); - var titleComponent = React__default.cloneElement(props.titleComponent, titleProps); - return [borderComponent].concat(_toConsumableArray$t(dataComponents), [titleComponent], _toConsumableArray$t(labelComponents)); - } - - return [borderComponent].concat(_toConsumableArray$t(dataComponents), _toConsumableArray$t(labelComponents)); - } - }, { - key: "render", - value: function render() { - var role = this.constructor.role; - var props = Helpers.modifyProps(this.props, fallbackProps$a, role); - var children = [this.renderChildren(props)]; - return props.standalone ? this.renderContainer(props.containerComponent, children) : React__default.cloneElement(props.groupComponent, {}, children); - } - }]); - - return VictoryLegend; -}(React__default.Component); - -Object.defineProperty(VictoryLegend, "displayName", { - configurable: true, - enumerable: true, - writable: true, - value: "VictoryLegend" -}); -Object.defineProperty(VictoryLegend, "role", { - configurable: true, - enumerable: true, - writable: true, - value: "legend" -}); -Object.defineProperty(VictoryLegend, "propTypes", { - configurable: true, - enumerable: true, - writable: true, - value: { - borderComponent: propTypes.element, - borderPadding: propTypes.oneOfType([propTypes.number, propTypes.shape({ - top: propTypes.number, - bottom: propTypes.number, - left: propTypes.number, - right: propTypes.number - })]), - centerTitle: propTypes.bool, - colorScale: propTypes.oneOfType([propTypes.arrayOf(propTypes.string), propTypes.oneOf(["grayscale", "qualitative", "heatmap", "warm", "cool", "red", "green", "blue"])]), - containerComponent: propTypes.element, - data: propTypes.arrayOf(propTypes.shape({ - name: propTypes.string.isRequired, - label: propTypes.object, - symbol: propTypes.object - })), - dataComponent: propTypes.element, - eventKey: propTypes.oneOfType([propTypes.func, CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.nonNegative]), propTypes.string]), - events: propTypes.arrayOf(propTypes.shape({ - target: propTypes.oneOf(["data", "labels", "parent"]), - eventKey: propTypes.oneOfType([propTypes.array, CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.nonNegative]), propTypes.string]), - eventHandlers: propTypes.object - })), - externalEventMutations: propTypes.arrayOf(propTypes.shape({ - callback: propTypes.function, - childName: propTypes.oneOfType([propTypes.string, propTypes.array]), - eventKey: propTypes.oneOfType([propTypes.array, CustomPropTypes.allOfType([CustomPropTypes.integer, CustomPropTypes.nonNegative]), propTypes.string]), - mutation: propTypes.function, - target: propTypes.oneOfType([propTypes.string, propTypes.array]) - })), - groupComponent: propTypes.element, - gutter: propTypes.oneOfType([propTypes.number, propTypes.shape({ - left: propTypes.number, - right: propTypes.number - })]), - height: CustomPropTypes.nonNegative, - itemsPerRow: CustomPropTypes.nonNegative, - labelComponent: propTypes.element, - name: propTypes.string, - orientation: propTypes.oneOf(["horizontal", "vertical"]), - padding: propTypes.oneOfType([propTypes.number, propTypes.shape({ - top: propTypes.number, - bottom: propTypes.number, - left: propTypes.number, - right: propTypes.number - })]), - rowGutter: propTypes.oneOfType([propTypes.number, propTypes.shape({ - top: propTypes.number, - bottom: propTypes.number - })]), - sharedEvents: propTypes.shape({ - events: propTypes.array, - getEventState: propTypes.func - }), - standalone: propTypes.bool, - style: propTypes.shape({ - border: propTypes.object, - data: propTypes.object, - labels: propTypes.object, - parent: propTypes.object, - title: propTypes.object - }), - symbolSpacer: propTypes.number, - theme: propTypes.object, - title: propTypes.oneOfType([propTypes.string, propTypes.array]), - titleComponent: propTypes.element, - titleOrientation: propTypes.oneOf(["top", "bottom", "left", "right"]), - width: CustomPropTypes.nonNegative, - x: CustomPropTypes.nonNegative, - y: CustomPropTypes.nonNegative - } -}); -Object.defineProperty(VictoryLegend, "defaultProps", { - configurable: true, - enumerable: true, - writable: true, - value: { - borderComponent: React__default.createElement(Border, null), - data: defaultLegendData, - containerComponent: React__default.createElement(VictoryContainer, null), - dataComponent: React__default.createElement(Point, null), - groupComponent: React__default.createElement("g", null), - labelComponent: React__default.createElement(VictoryLabel, null), - standalone: true, - theme: VictoryTheme.grayscale, - titleComponent: React__default.createElement(VictoryLabel, null) - } -}); -Object.defineProperty(VictoryLegend, "getBaseProps", { - configurable: true, - enumerable: true, - writable: true, - value: function (props) { - return getBaseProps$5(props, fallbackProps$a); - } -}); -Object.defineProperty(VictoryLegend, "getDimensions", { - configurable: true, - enumerable: true, - writable: true, - value: function (props) { - return getDimensions(props, fallbackProps$a); - } -}); -Object.defineProperty(VictoryLegend, "expectedComponents", { - configurable: true, - enumerable: true, - writable: true, - value: ["borderComponent", "containerComponent", "dataComponent", "groupComponent", "labelComponent", "titleComponent"] -}); -var VictoryLegend$1 = addEvents(VictoryLegend); - -var ukwhoHeightMaleCentileData = { - "centile_data": [ - { - "uk90_preterm": { - "male": { - "height": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": -0.2875, - "y": 27.7419 - }, - { - "l": "0.4", - "x": -0.2683, - "y": 28.7883 - }, - { - "l": "0.4", - "x": -0.2491, - "y": 29.8516 - }, - { - "l": "0.4", - "x": -0.23, - "y": 30.9325 - }, - { - "l": "0.4", - "x": -0.2108, - "y": 32.0479 - }, - { - "l": "0.4", - "x": -0.1916, - "y": 33.2236 - }, - { - "l": "0.4", - "x": -0.1725, - "y": 34.4775 - }, - { - "l": "0.4", - "x": -0.1533, - "y": 35.7906 - }, - { - "l": "0.4", - "x": -0.1342, - "y": 37.1336 - }, - { - "l": "0.4", - "x": -0.115, - "y": 38.4763 - }, - { - "l": "0.4", - "x": -0.0958, - "y": 39.7938 - }, - { - "l": "0.4", - "x": -0.0767, - "y": 41.0676 - }, - { - "l": "0.4", - "x": -0.0575, - "y": 42.281 - }, - { - "l": "0.4", - "x": -0.0383, - "y": 43.403 - }, - { - "l": "0.4", - "x": -0.0192, - "y": 44.3934 - }, - { - "l": "0.4", - "x": -0.0, - "y": 45.242 - }, - { - "l": "0.4", - "x": 0.0192, - "y": 45.9987 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 46.7337 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 46.7337 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": -0.2875, - "y": 29.6624 - }, - { - "l": "2.0", - "x": -0.2683, - "y": 30.6975 - }, - { - "l": "2.0", - "x": -0.2491, - "y": 31.7456 - }, - { - "l": "2.0", - "x": -0.23, - "y": 32.8063 - }, - { - "l": "2.0", - "x": -0.2108, - "y": 33.8951 - }, - { - "l": "2.0", - "x": -0.1916, - "y": 35.0377 - }, - { - "l": "2.0", - "x": -0.1725, - "y": 36.2527 - }, - { - "l": "2.0", - "x": -0.1533, - "y": 37.5221 - }, - { - "l": "2.0", - "x": -0.1342, - "y": 38.8179 - }, - { - "l": "2.0", - "x": -0.115, - "y": 40.1117 - }, - { - "l": "2.0", - "x": -0.0958, - "y": 41.3807 - }, - { - "l": "2.0", - "x": -0.0767, - "y": 42.6091 - }, - { - "l": "2.0", - "x": -0.0575, - "y": 43.7824 - }, - { - "l": "2.0", - "x": -0.0383, - "y": 44.8714 - }, - { - "l": "2.0", - "x": -0.0192, - "y": 45.8366 - }, - { - "l": "2.0", - "x": -0.0, - "y": 46.6676 - }, - { - "l": "2.0", - "x": 0.0192, - "y": 47.4105 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 48.1266 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 48.1266 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": -0.2875, - "y": 31.583 - }, - { - "l": "9.0", - "x": -0.2683, - "y": 32.6066 - }, - { - "l": "9.0", - "x": -0.2491, - "y": 33.6397 - }, - { - "l": "9.0", - "x": -0.23, - "y": 34.6802 - }, - { - "l": "9.0", - "x": -0.2108, - "y": 35.7423 - }, - { - "l": "9.0", - "x": -0.1916, - "y": 36.8519 - }, - { - "l": "9.0", - "x": -0.1725, - "y": 38.0279 - }, - { - "l": "9.0", - "x": -0.1533, - "y": 39.2536 - }, - { - "l": "9.0", - "x": -0.1342, - "y": 40.5022 - }, - { - "l": "9.0", - "x": -0.115, - "y": 41.7472 - }, - { - "l": "9.0", - "x": -0.0958, - "y": 42.9677 - }, - { - "l": "9.0", - "x": -0.0767, - "y": 44.1506 - }, - { - "l": "9.0", - "x": -0.0575, - "y": 45.2839 - }, - { - "l": "9.0", - "x": -0.0383, - "y": 46.3398 - }, - { - "l": "9.0", - "x": -0.0192, - "y": 47.2797 - }, - { - "l": "9.0", - "x": -0.0, - "y": 48.0933 - }, - { - "l": "9.0", - "x": 0.0192, - "y": 48.8223 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 49.5194 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 49.5194 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": -0.2875, - "y": 33.5036 - }, - { - "l": "25.0", - "x": -0.2683, - "y": 34.5158 - }, - { - "l": "25.0", - "x": -0.2491, - "y": 35.5337 - }, - { - "l": "25.0", - "x": -0.23, - "y": 36.554 - }, - { - "l": "25.0", - "x": -0.2108, - "y": 37.5895 - }, - { - "l": "25.0", - "x": -0.1916, - "y": 38.666 - }, - { - "l": "25.0", - "x": -0.1725, - "y": 39.8031 - }, - { - "l": "25.0", - "x": -0.1533, - "y": 40.9851 - }, - { - "l": "25.0", - "x": -0.1342, - "y": 42.1865 - }, - { - "l": "25.0", - "x": -0.115, - "y": 43.3826 - }, - { - "l": "25.0", - "x": -0.0958, - "y": 44.5546 - }, - { - "l": "25.0", - "x": -0.0767, - "y": 45.692 - }, - { - "l": "25.0", - "x": -0.0575, - "y": 46.7853 - }, - { - "l": "25.0", - "x": -0.0383, - "y": 47.8082 - }, - { - "l": "25.0", - "x": -0.0192, - "y": 48.7228 - }, - { - "l": "25.0", - "x": -0.0, - "y": 49.5189 - }, - { - "l": "25.0", - "x": 0.0192, - "y": 50.234 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 50.9123 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 50.9123 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": -0.2875, - "y": 35.4241 - }, - { - "l": "50.0", - "x": -0.2683, - "y": 36.4249 - }, - { - "l": "50.0", - "x": -0.2491, - "y": 37.4277 - }, - { - "l": "50.0", - "x": -0.23, - "y": 38.4279 - }, - { - "l": "50.0", - "x": -0.2108, - "y": 39.4367 - }, - { - "l": "50.0", - "x": -0.1916, - "y": 40.4801 - }, - { - "l": "50.0", - "x": -0.1725, - "y": 41.5784 - }, - { - "l": "50.0", - "x": -0.1533, - "y": 42.7166 - }, - { - "l": "50.0", - "x": -0.1342, - "y": 43.8708 - }, - { - "l": "50.0", - "x": -0.115, - "y": 45.018 - }, - { - "l": "50.0", - "x": -0.0958, - "y": 46.1415 - }, - { - "l": "50.0", - "x": -0.0767, - "y": 47.2335 - }, - { - "l": "50.0", - "x": -0.0575, - "y": 48.2868 - }, - { - "l": "50.0", - "x": -0.0383, - "y": 49.2766 - }, - { - "l": "50.0", - "x": -0.0192, - "y": 50.1659 - }, - { - "l": "50.0", - "x": -0.0, - "y": 50.9445 - }, - { - "l": "50.0", - "x": 0.0192, - "y": 51.6458 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 52.3051 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 52.3051 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": -0.2875, - "y": 37.3447 - }, - { - "l": "75.0", - "x": -0.2683, - "y": 38.3341 - }, - { - "l": "75.0", - "x": -0.2491, - "y": 39.3217 - }, - { - "l": "75.0", - "x": -0.23, - "y": 40.3017 - }, - { - "l": "75.0", - "x": -0.2108, - "y": 41.2839 - }, - { - "l": "75.0", - "x": -0.1916, - "y": 42.2942 - }, - { - "l": "75.0", - "x": -0.1725, - "y": 43.3536 - }, - { - "l": "75.0", - "x": -0.1533, - "y": 44.4481 - }, - { - "l": "75.0", - "x": -0.1342, - "y": 45.5551 - }, - { - "l": "75.0", - "x": -0.115, - "y": 46.6535 - }, - { - "l": "75.0", - "x": -0.0958, - "y": 47.7284 - }, - { - "l": "75.0", - "x": -0.0767, - "y": 48.775 - }, - { - "l": "75.0", - "x": -0.0575, - "y": 49.7882 - }, - { - "l": "75.0", - "x": -0.0383, - "y": 50.745 - }, - { - "l": "75.0", - "x": -0.0192, - "y": 51.6091 - }, - { - "l": "75.0", - "x": -0.0, - "y": 52.3702 - }, - { - "l": "75.0", - "x": 0.0192, - "y": 53.0576 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 53.698 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 53.698 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": -0.2875, - "y": 39.2653 - }, - { - "l": "91.0", - "x": -0.2683, - "y": 40.2432 - }, - { - "l": "91.0", - "x": -0.2491, - "y": 41.2158 - }, - { - "l": "91.0", - "x": -0.23, - "y": 42.1756 - }, - { - "l": "91.0", - "x": -0.2108, - "y": 43.1311 - }, - { - "l": "91.0", - "x": -0.1916, - "y": 44.1083 - }, - { - "l": "91.0", - "x": -0.1725, - "y": 45.1288 - }, - { - "l": "91.0", - "x": -0.1533, - "y": 46.1796 - }, - { - "l": "91.0", - "x": -0.1342, - "y": 47.2394 - }, - { - "l": "91.0", - "x": -0.115, - "y": 48.2889 - }, - { - "l": "91.0", - "x": -0.0958, - "y": 49.3153 - }, - { - "l": "91.0", - "x": -0.0767, - "y": 50.3165 - }, - { - "l": "91.0", - "x": -0.0575, - "y": 51.2897 - }, - { - "l": "91.0", - "x": -0.0383, - "y": 52.2134 - }, - { - "l": "91.0", - "x": -0.0192, - "y": 53.0522 - }, - { - "l": "91.0", - "x": -0.0, - "y": 53.7958 - }, - { - "l": "91.0", - "x": 0.0192, - "y": 54.4693 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 55.0908 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 55.0908 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": -0.2875, - "y": 41.1858 - }, - { - "l": "98.0", - "x": -0.2683, - "y": 42.1524 - }, - { - "l": "98.0", - "x": -0.2491, - "y": 43.1098 - }, - { - "l": "98.0", - "x": -0.23, - "y": 44.0495 - }, - { - "l": "98.0", - "x": -0.2108, - "y": 44.9784 - }, - { - "l": "98.0", - "x": -0.1916, - "y": 45.9224 - }, - { - "l": "98.0", - "x": -0.1725, - "y": 46.9041 - }, - { - "l": "98.0", - "x": -0.1533, - "y": 47.9111 - }, - { - "l": "98.0", - "x": -0.1342, - "y": 48.9238 - }, - { - "l": "98.0", - "x": -0.115, - "y": 49.9244 - }, - { - "l": "98.0", - "x": -0.0958, - "y": 50.9023 - }, - { - "l": "98.0", - "x": -0.0767, - "y": 51.858 - }, - { - "l": "98.0", - "x": -0.0575, - "y": 52.7911 - }, - { - "l": "98.0", - "x": -0.0383, - "y": 53.6818 - }, - { - "l": "98.0", - "x": -0.0192, - "y": 54.4953 - }, - { - "l": "98.0", - "x": -0.0, - "y": 55.2215 - }, - { - "l": "98.0", - "x": 0.0192, - "y": 55.8811 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 56.4837 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 56.4837 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": -0.2875, - "y": 43.1064 - }, - { - "l": "99.6", - "x": -0.2683, - "y": 44.0615 - }, - { - "l": "99.6", - "x": -0.2491, - "y": 45.0038 - }, - { - "l": "99.6", - "x": -0.23, - "y": 45.9233 - }, - { - "l": "99.6", - "x": -0.2108, - "y": 46.8256 - }, - { - "l": "99.6", - "x": -0.1916, - "y": 47.7365 - }, - { - "l": "99.6", - "x": -0.1725, - "y": 48.6793 - }, - { - "l": "99.6", - "x": -0.1533, - "y": 49.6426 - }, - { - "l": "99.6", - "x": -0.1342, - "y": 50.6081 - }, - { - "l": "99.6", - "x": -0.115, - "y": 51.5598 - }, - { - "l": "99.6", - "x": -0.0958, - "y": 52.4892 - }, - { - "l": "99.6", - "x": -0.0767, - "y": 53.3994 - }, - { - "l": "99.6", - "x": -0.0575, - "y": 54.2926 - }, - { - "l": "99.6", - "x": -0.0383, - "y": 55.1502 - }, - { - "l": "99.6", - "x": -0.0192, - "y": 55.9385 - }, - { - "l": "99.6", - "x": -0.0, - "y": 56.6471 - }, - { - "l": "99.6", - "x": 0.0192, - "y": 57.2928 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 57.8765 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 57.8765 - } - ] - } - ], - "weight": null, - "ofc": null, - "bmi": null - }, - "female": null - } - }, - { - "uk_who_infant": { - "male": { - "height": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 0.0383, - "y": 47.2483 - }, - { - "l": "0.4", - "x": 0.0575, - "y": 48.2522 - }, - { - "l": "0.4", - "x": 0.0767, - "y": 49.2104 - }, - { - "l": "0.4", - "x": 0.0958, - "y": 50.1224 - }, - { - "l": "0.4", - "x": 0.115, - "y": 50.9855 - }, - { - "l": "0.4", - "x": 0.1342, - "y": 51.8028 - }, - { - "l": "0.4", - "x": 0.1533, - "y": 52.5755 - }, - { - "l": "0.4", - "x": 0.1725, - "y": 53.3106 - }, - { - "l": "0.4", - "x": 0.1916, - "y": 54.0154 - }, - { - "l": "0.4", - "x": 0.2108, - "y": 54.691 - }, - { - "l": "0.4", - "x": 0.23, - "y": 55.3358 - }, - { - "l": "0.4", - "x": 0.2491, - "y": 55.9505 - }, - { - "l": "0.4", - "x": 0.2683, - "y": 56.5417 - }, - { - "l": "0.4", - "x": 0.2875, - "y": 57.103 - }, - { - "l": "0.4", - "x": 0.3066, - "y": 57.6365 - }, - { - "l": "0.4", - "x": 0.3258, - "y": 58.1443 - }, - { - "l": "0.4", - "x": 0.345, - "y": 58.6299 - }, - { - "l": "0.4", - "x": 0.3641, - "y": 59.0947 - }, - { - "l": "0.4", - "x": 0.3833, - "y": 59.5397 - }, - { - "l": "0.4", - "x": 0.4025, - "y": 59.9664 - }, - { - "l": "0.4", - "x": 0.4216, - "y": 60.3769 - }, - { - "l": "0.4", - "x": 0.4408, - "y": 60.7732 - }, - { - "l": "0.4", - "x": 0.46, - "y": 61.1557 - }, - { - "l": "0.4", - "x": 0.4791, - "y": 61.5258 - }, - { - "l": "0.4", - "x": 0.4983, - "y": 61.8846 - }, - { - "l": "0.4", - "x": 0.5175, - "y": 62.2347 - }, - { - "l": "0.4", - "x": 0.5366, - "y": 62.5759 - }, - { - "l": "0.4", - "x": 0.5558, - "y": 62.9089 - }, - { - "l": "0.4", - "x": 0.5749, - "y": 63.2346 - }, - { - "l": "0.4", - "x": 0.5941, - "y": 63.5544 - }, - { - "l": "0.4", - "x": 0.6133, - "y": 63.8688 - }, - { - "l": "0.4", - "x": 0.6324, - "y": 64.1778 - }, - { - "l": "0.4", - "x": 0.6516, - "y": 64.482 - }, - { - "l": "0.4", - "x": 0.6708, - "y": 64.7822 - }, - { - "l": "0.4", - "x": 0.6899, - "y": 65.0795 - }, - { - "l": "0.4", - "x": 0.7091, - "y": 65.3729 - }, - { - "l": "0.4", - "x": 0.7283, - "y": 65.6626 - }, - { - "l": "0.4", - "x": 0.7474, - "y": 65.9486 - }, - { - "l": "0.4", - "x": 0.7666, - "y": 66.2312 - }, - { - "l": "0.4", - "x": 0.7858, - "y": 66.5102 - }, - { - "l": "0.4", - "x": 0.8049, - "y": 66.7858 - }, - { - "l": "0.4", - "x": 0.8241, - "y": 67.0581 - }, - { - "l": "0.4", - "x": 0.8433, - "y": 67.3269 - }, - { - "l": "0.4", - "x": 0.8624, - "y": 67.5924 - }, - { - "l": "0.4", - "x": 0.8816, - "y": 67.8548 - }, - { - "l": "0.4", - "x": 0.9008, - "y": 68.1141 - }, - { - "l": "0.4", - "x": 0.9199, - "y": 68.3705 - }, - { - "l": "0.4", - "x": 0.9391, - "y": 68.6241 - }, - { - "l": "0.4", - "x": 0.9582, - "y": 68.875 - }, - { - "l": "0.4", - "x": 0.9774, - "y": 69.1231 - }, - { - "l": "0.4", - "x": 0.9966, - "y": 69.3686 - }, - { - "l": "0.4", - "x": 1.0157, - "y": 69.6116 - }, - { - "l": "0.4", - "x": 1.0349, - "y": 69.8521 - }, - { - "l": "0.4", - "x": 1.0541, - "y": 70.0902 - }, - { - "l": "0.4", - "x": 1.0732, - "y": 70.326 - }, - { - "l": "0.4", - "x": 1.0924, - "y": 70.5595 - }, - { - "l": "0.4", - "x": 1.1116, - "y": 70.7908 - }, - { - "l": "0.4", - "x": 1.1307, - "y": 71.0198 - }, - { - "l": "0.4", - "x": 1.1499, - "y": 71.2468 - }, - { - "l": "0.4", - "x": 1.1691, - "y": 71.4715 - }, - { - "l": "0.4", - "x": 1.1882, - "y": 71.6942 - }, - { - "l": "0.4", - "x": 1.2074, - "y": 71.9148 - }, - { - "l": "0.4", - "x": 1.2266, - "y": 72.1334 - }, - { - "l": "0.4", - "x": 1.2457, - "y": 72.3502 - }, - { - "l": "0.4", - "x": 1.2649, - "y": 72.5654 - }, - { - "l": "0.4", - "x": 1.2841, - "y": 72.7788 - }, - { - "l": "0.4", - "x": 1.3032, - "y": 72.9905 - }, - { - "l": "0.4", - "x": 1.3224, - "y": 73.2004 - }, - { - "l": "0.4", - "x": 1.3415, - "y": 73.4084 - }, - { - "l": "0.4", - "x": 1.3607, - "y": 73.6146 - }, - { - "l": "0.4", - "x": 1.3799, - "y": 73.8191 - }, - { - "l": "0.4", - "x": 1.399, - "y": 74.022 - }, - { - "l": "0.4", - "x": 1.4182, - "y": 74.2233 - }, - { - "l": "0.4", - "x": 1.4374, - "y": 74.4233 - }, - { - "l": "0.4", - "x": 1.4565, - "y": 74.6217 - }, - { - "l": "0.4", - "x": 1.4757, - "y": 74.8186 - }, - { - "l": "0.4", - "x": 1.4949, - "y": 75.014 - }, - { - "l": "0.4", - "x": 1.514, - "y": 75.2075 - }, - { - "l": "0.4", - "x": 1.5332, - "y": 75.3994 - }, - { - "l": "0.4", - "x": 1.5524, - "y": 75.5898 - }, - { - "l": "0.4", - "x": 1.5715, - "y": 75.7787 - }, - { - "l": "0.4", - "x": 1.5907, - "y": 75.9662 - }, - { - "l": "0.4", - "x": 1.6099, - "y": 76.1523 - }, - { - "l": "0.4", - "x": 1.629, - "y": 76.337 - }, - { - "l": "0.4", - "x": 1.6482, - "y": 76.5203 - }, - { - "l": "0.4", - "x": 1.6674, - "y": 76.7022 - }, - { - "l": "0.4", - "x": 1.6865, - "y": 76.8825 - }, - { - "l": "0.4", - "x": 1.7057, - "y": 77.0615 - }, - { - "l": "0.4", - "x": 1.7248, - "y": 77.2391 - }, - { - "l": "0.4", - "x": 1.744, - "y": 77.4155 - }, - { - "l": "0.4", - "x": 1.7632, - "y": 77.5909 - }, - { - "l": "0.4", - "x": 1.7823, - "y": 77.7651 - }, - { - "l": "0.4", - "x": 1.8015, - "y": 77.9382 - }, - { - "l": "0.4", - "x": 1.8207, - "y": 78.1101 - }, - { - "l": "0.4", - "x": 1.8398, - "y": 78.2808 - }, - { - "l": "0.4", - "x": 1.859, - "y": 78.4503 - }, - { - "l": "0.4", - "x": 1.8782, - "y": 78.6187 - }, - { - "l": "0.4", - "x": 1.8973, - "y": 78.7861 - }, - { - "l": "0.4", - "x": 1.9165, - "y": 78.9525 - }, - { - "l": "0.4", - "x": 1.9357, - "y": 79.1171 - }, - { - "l": "0.4", - "x": 1.9548, - "y": 79.2817 - }, - { - "l": "0.4", - "x": 1.974, - "y": 79.4461 - }, - { - "l": "0.4", - "x": 1.9932, - "y": 79.6104 - }, - { - "l": "0.4", - "x": 2.0, - "y": 79.6691 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 0.0383, - "y": 48.5227 - }, - { - "l": "2.0", - "x": 0.0575, - "y": 49.5368 - }, - { - "l": "2.0", - "x": 0.0767, - "y": 50.5048 - }, - { - "l": "2.0", - "x": 0.0958, - "y": 51.4262 - }, - { - "l": "2.0", - "x": 0.115, - "y": 52.2981 - }, - { - "l": "2.0", - "x": 0.1342, - "y": 53.1234 - }, - { - "l": "2.0", - "x": 0.1533, - "y": 53.9038 - }, - { - "l": "2.0", - "x": 0.1725, - "y": 54.6464 - }, - { - "l": "2.0", - "x": 0.1916, - "y": 55.3584 - }, - { - "l": "2.0", - "x": 0.2108, - "y": 56.0406 - }, - { - "l": "2.0", - "x": 0.23, - "y": 56.692 - }, - { - "l": "2.0", - "x": 0.2491, - "y": 57.3132 - }, - { - "l": "2.0", - "x": 0.2683, - "y": 57.9094 - }, - { - "l": "2.0", - "x": 0.2875, - "y": 58.4762 - }, - { - "l": "2.0", - "x": 0.3066, - "y": 59.0155 - }, - { - "l": "2.0", - "x": 0.3258, - "y": 59.5292 - }, - { - "l": "2.0", - "x": 0.345, - "y": 60.0201 - }, - { - "l": "2.0", - "x": 0.3641, - "y": 60.4898 - }, - { - "l": "2.0", - "x": 0.3833, - "y": 60.9395 - }, - { - "l": "2.0", - "x": 0.4025, - "y": 61.3708 - }, - { - "l": "2.0", - "x": 0.4216, - "y": 61.7857 - }, - { - "l": "2.0", - "x": 0.4408, - "y": 62.1864 - }, - { - "l": "2.0", - "x": 0.46, - "y": 62.5734 - }, - { - "l": "2.0", - "x": 0.4791, - "y": 62.9478 - }, - { - "l": "2.0", - "x": 0.4983, - "y": 63.3111 - }, - { - "l": "2.0", - "x": 0.5175, - "y": 63.6658 - }, - { - "l": "2.0", - "x": 0.5366, - "y": 64.0116 - }, - { - "l": "2.0", - "x": 0.5558, - "y": 64.3493 - }, - { - "l": "2.0", - "x": 0.5749, - "y": 64.6798 - }, - { - "l": "2.0", - "x": 0.5941, - "y": 65.0046 - }, - { - "l": "2.0", - "x": 0.6133, - "y": 65.3241 - }, - { - "l": "2.0", - "x": 0.6324, - "y": 65.6385 - }, - { - "l": "2.0", - "x": 0.6516, - "y": 65.9481 - }, - { - "l": "2.0", - "x": 0.6708, - "y": 66.2537 - }, - { - "l": "2.0", - "x": 0.6899, - "y": 66.5566 - }, - { - "l": "2.0", - "x": 0.7091, - "y": 66.8558 - }, - { - "l": "2.0", - "x": 0.7283, - "y": 67.1513 - }, - { - "l": "2.0", - "x": 0.7474, - "y": 67.4433 - }, - { - "l": "2.0", - "x": 0.7666, - "y": 67.732 - }, - { - "l": "2.0", - "x": 0.7858, - "y": 68.0174 - }, - { - "l": "2.0", - "x": 0.8049, - "y": 68.2994 - }, - { - "l": "2.0", - "x": 0.8241, - "y": 68.5781 - }, - { - "l": "2.0", - "x": 0.8433, - "y": 68.8536 - }, - { - "l": "2.0", - "x": 0.8624, - "y": 69.1258 - }, - { - "l": "2.0", - "x": 0.8816, - "y": 69.395 - }, - { - "l": "2.0", - "x": 0.9008, - "y": 69.6612 - }, - { - "l": "2.0", - "x": 0.9199, - "y": 69.9246 - }, - { - "l": "2.0", - "x": 0.9391, - "y": 70.1853 - }, - { - "l": "2.0", - "x": 0.9582, - "y": 70.4432 - }, - { - "l": "2.0", - "x": 0.9774, - "y": 70.6986 - }, - { - "l": "2.0", - "x": 0.9966, - "y": 70.9514 - }, - { - "l": "2.0", - "x": 1.0157, - "y": 71.2019 - }, - { - "l": "2.0", - "x": 1.0349, - "y": 71.45 - }, - { - "l": "2.0", - "x": 1.0541, - "y": 71.6958 - }, - { - "l": "2.0", - "x": 1.0732, - "y": 71.9392 - }, - { - "l": "2.0", - "x": 1.0924, - "y": 72.1805 - }, - { - "l": "2.0", - "x": 1.1116, - "y": 72.4196 - }, - { - "l": "2.0", - "x": 1.1307, - "y": 72.6565 - }, - { - "l": "2.0", - "x": 1.1499, - "y": 72.8913 - }, - { - "l": "2.0", - "x": 1.1691, - "y": 73.1241 - }, - { - "l": "2.0", - "x": 1.1882, - "y": 73.3547 - }, - { - "l": "2.0", - "x": 1.2074, - "y": 73.5834 - }, - { - "l": "2.0", - "x": 1.2266, - "y": 73.8102 - }, - { - "l": "2.0", - "x": 1.2457, - "y": 74.0352 - }, - { - "l": "2.0", - "x": 1.2649, - "y": 74.2586 - }, - { - "l": "2.0", - "x": 1.2841, - "y": 74.4803 - }, - { - "l": "2.0", - "x": 1.3032, - "y": 74.7003 - }, - { - "l": "2.0", - "x": 1.3224, - "y": 74.9185 - }, - { - "l": "2.0", - "x": 1.3415, - "y": 75.135 - }, - { - "l": "2.0", - "x": 1.3607, - "y": 75.3498 - }, - { - "l": "2.0", - "x": 1.3799, - "y": 75.5629 - }, - { - "l": "2.0", - "x": 1.399, - "y": 75.7744 - }, - { - "l": "2.0", - "x": 1.4182, - "y": 75.9844 - }, - { - "l": "2.0", - "x": 1.4374, - "y": 76.193 - }, - { - "l": "2.0", - "x": 1.4565, - "y": 76.4001 - }, - { - "l": "2.0", - "x": 1.4757, - "y": 76.6057 - }, - { - "l": "2.0", - "x": 1.4949, - "y": 76.8098 - }, - { - "l": "2.0", - "x": 1.514, - "y": 77.0122 - }, - { - "l": "2.0", - "x": 1.5332, - "y": 77.2129 - }, - { - "l": "2.0", - "x": 1.5524, - "y": 77.4122 - }, - { - "l": "2.0", - "x": 1.5715, - "y": 77.61 - }, - { - "l": "2.0", - "x": 1.5907, - "y": 77.8065 - }, - { - "l": "2.0", - "x": 1.6099, - "y": 78.0015 - }, - { - "l": "2.0", - "x": 1.629, - "y": 78.1952 - }, - { - "l": "2.0", - "x": 1.6482, - "y": 78.3875 - }, - { - "l": "2.0", - "x": 1.6674, - "y": 78.5785 - }, - { - "l": "2.0", - "x": 1.6865, - "y": 78.768 - }, - { - "l": "2.0", - "x": 1.7057, - "y": 78.9561 - }, - { - "l": "2.0", - "x": 1.7248, - "y": 79.143 - }, - { - "l": "2.0", - "x": 1.744, - "y": 79.3287 - }, - { - "l": "2.0", - "x": 1.7632, - "y": 79.5133 - }, - { - "l": "2.0", - "x": 1.7823, - "y": 79.6967 - }, - { - "l": "2.0", - "x": 1.8015, - "y": 79.879 - }, - { - "l": "2.0", - "x": 1.8207, - "y": 80.0602 - }, - { - "l": "2.0", - "x": 1.8398, - "y": 80.2401 - }, - { - "l": "2.0", - "x": 1.859, - "y": 80.4189 - }, - { - "l": "2.0", - "x": 1.8782, - "y": 80.5966 - }, - { - "l": "2.0", - "x": 1.8973, - "y": 80.7734 - }, - { - "l": "2.0", - "x": 1.9165, - "y": 80.9492 - }, - { - "l": "2.0", - "x": 1.9357, - "y": 81.123 - }, - { - "l": "2.0", - "x": 1.9548, - "y": 81.2967 - }, - { - "l": "2.0", - "x": 1.974, - "y": 81.4703 - }, - { - "l": "2.0", - "x": 1.9932, - "y": 81.6439 - }, - { - "l": "2.0", - "x": 2.0, - "y": 81.7059 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 0.0383, - "y": 49.7972 - }, - { - "l": "9.0", - "x": 0.0575, - "y": 50.8213 - }, - { - "l": "9.0", - "x": 0.0767, - "y": 51.7992 - }, - { - "l": "9.0", - "x": 0.0958, - "y": 52.7299 - }, - { - "l": "9.0", - "x": 0.115, - "y": 53.6106 - }, - { - "l": "9.0", - "x": 0.1342, - "y": 54.444 - }, - { - "l": "9.0", - "x": 0.1533, - "y": 55.2322 - }, - { - "l": "9.0", - "x": 0.1725, - "y": 55.9821 - }, - { - "l": "9.0", - "x": 0.1916, - "y": 56.7013 - }, - { - "l": "9.0", - "x": 0.2108, - "y": 57.3902 - }, - { - "l": "9.0", - "x": 0.23, - "y": 58.0482 - }, - { - "l": "9.0", - "x": 0.2491, - "y": 58.6759 - }, - { - "l": "9.0", - "x": 0.2683, - "y": 59.2771 - }, - { - "l": "9.0", - "x": 0.2875, - "y": 59.8494 - }, - { - "l": "9.0", - "x": 0.3066, - "y": 60.3944 - }, - { - "l": "9.0", - "x": 0.3258, - "y": 60.9141 - }, - { - "l": "9.0", - "x": 0.345, - "y": 61.4103 - }, - { - "l": "9.0", - "x": 0.3641, - "y": 61.8848 - }, - { - "l": "9.0", - "x": 0.3833, - "y": 62.3392 - }, - { - "l": "9.0", - "x": 0.4025, - "y": 62.7751 - }, - { - "l": "9.0", - "x": 0.4216, - "y": 63.1946 - }, - { - "l": "9.0", - "x": 0.4408, - "y": 63.5997 - }, - { - "l": "9.0", - "x": 0.46, - "y": 63.991 - }, - { - "l": "9.0", - "x": 0.4791, - "y": 64.3698 - }, - { - "l": "9.0", - "x": 0.4983, - "y": 64.7375 - }, - { - "l": "9.0", - "x": 0.5175, - "y": 65.0968 - }, - { - "l": "9.0", - "x": 0.5366, - "y": 65.4472 - }, - { - "l": "9.0", - "x": 0.5558, - "y": 65.7897 - }, - { - "l": "9.0", - "x": 0.5749, - "y": 66.125 - }, - { - "l": "9.0", - "x": 0.5941, - "y": 66.4548 - }, - { - "l": "9.0", - "x": 0.6133, - "y": 66.7795 - }, - { - "l": "9.0", - "x": 0.6324, - "y": 67.0991 - }, - { - "l": "9.0", - "x": 0.6516, - "y": 67.4141 - }, - { - "l": "9.0", - "x": 0.6708, - "y": 67.7253 - }, - { - "l": "9.0", - "x": 0.6899, - "y": 68.0337 - }, - { - "l": "9.0", - "x": 0.7091, - "y": 68.3386 - }, - { - "l": "9.0", - "x": 0.7283, - "y": 68.64 - }, - { - "l": "9.0", - "x": 0.7474, - "y": 68.938 - }, - { - "l": "9.0", - "x": 0.7666, - "y": 69.2329 - }, - { - "l": "9.0", - "x": 0.7858, - "y": 69.5245 - }, - { - "l": "9.0", - "x": 0.8049, - "y": 69.813 - }, - { - "l": "9.0", - "x": 0.8241, - "y": 70.0982 - }, - { - "l": "9.0", - "x": 0.8433, - "y": 70.3803 - }, - { - "l": "9.0", - "x": 0.8624, - "y": 70.6592 - }, - { - "l": "9.0", - "x": 0.8816, - "y": 70.9352 - }, - { - "l": "9.0", - "x": 0.9008, - "y": 71.2083 - }, - { - "l": "9.0", - "x": 0.9199, - "y": 71.4787 - }, - { - "l": "9.0", - "x": 0.9391, - "y": 71.7464 - }, - { - "l": "9.0", - "x": 0.9582, - "y": 72.0115 - }, - { - "l": "9.0", - "x": 0.9774, - "y": 72.2741 - }, - { - "l": "9.0", - "x": 0.9966, - "y": 72.5343 - }, - { - "l": "9.0", - "x": 1.0157, - "y": 72.7922 - }, - { - "l": "9.0", - "x": 1.0349, - "y": 73.0479 - }, - { - "l": "9.0", - "x": 1.0541, - "y": 73.3013 - }, - { - "l": "9.0", - "x": 1.0732, - "y": 73.5525 - }, - { - "l": "9.0", - "x": 1.0924, - "y": 73.8015 - }, - { - "l": "9.0", - "x": 1.1116, - "y": 74.0484 - }, - { - "l": "9.0", - "x": 1.1307, - "y": 74.2932 - }, - { - "l": "9.0", - "x": 1.1499, - "y": 74.5359 - }, - { - "l": "9.0", - "x": 1.1691, - "y": 74.7766 - }, - { - "l": "9.0", - "x": 1.1882, - "y": 75.0153 - }, - { - "l": "9.0", - "x": 1.2074, - "y": 75.2521 - }, - { - "l": "9.0", - "x": 1.2266, - "y": 75.4871 - }, - { - "l": "9.0", - "x": 1.2457, - "y": 75.7203 - }, - { - "l": "9.0", - "x": 1.2649, - "y": 75.9519 - }, - { - "l": "9.0", - "x": 1.2841, - "y": 76.1818 - }, - { - "l": "9.0", - "x": 1.3032, - "y": 76.4101 - }, - { - "l": "9.0", - "x": 1.3224, - "y": 76.6367 - }, - { - "l": "9.0", - "x": 1.3415, - "y": 76.8616 - }, - { - "l": "9.0", - "x": 1.3607, - "y": 77.0849 - }, - { - "l": "9.0", - "x": 1.3799, - "y": 77.3066 - }, - { - "l": "9.0", - "x": 1.399, - "y": 77.5268 - }, - { - "l": "9.0", - "x": 1.4182, - "y": 77.7454 - }, - { - "l": "9.0", - "x": 1.4374, - "y": 77.9627 - }, - { - "l": "9.0", - "x": 1.4565, - "y": 78.1785 - }, - { - "l": "9.0", - "x": 1.4757, - "y": 78.3928 - }, - { - "l": "9.0", - "x": 1.4949, - "y": 78.6056 - }, - { - "l": "9.0", - "x": 1.514, - "y": 78.8168 - }, - { - "l": "9.0", - "x": 1.5332, - "y": 79.0264 - }, - { - "l": "9.0", - "x": 1.5524, - "y": 79.2346 - }, - { - "l": "9.0", - "x": 1.5715, - "y": 79.4414 - }, - { - "l": "9.0", - "x": 1.5907, - "y": 79.6468 - }, - { - "l": "9.0", - "x": 1.6099, - "y": 79.8508 - }, - { - "l": "9.0", - "x": 1.629, - "y": 80.0534 - }, - { - "l": "9.0", - "x": 1.6482, - "y": 80.2548 - }, - { - "l": "9.0", - "x": 1.6674, - "y": 80.4548 - }, - { - "l": "9.0", - "x": 1.6865, - "y": 80.6534 - }, - { - "l": "9.0", - "x": 1.7057, - "y": 80.8508 - }, - { - "l": "9.0", - "x": 1.7248, - "y": 81.047 - }, - { - "l": "9.0", - "x": 1.744, - "y": 81.2419 - }, - { - "l": "9.0", - "x": 1.7632, - "y": 81.4357 - }, - { - "l": "9.0", - "x": 1.7823, - "y": 81.6283 - }, - { - "l": "9.0", - "x": 1.8015, - "y": 81.8198 - }, - { - "l": "9.0", - "x": 1.8207, - "y": 82.0102 - }, - { - "l": "9.0", - "x": 1.8398, - "y": 82.1995 - }, - { - "l": "9.0", - "x": 1.859, - "y": 82.3876 - }, - { - "l": "9.0", - "x": 1.8782, - "y": 82.5746 - }, - { - "l": "9.0", - "x": 1.8973, - "y": 82.7607 - }, - { - "l": "9.0", - "x": 1.9165, - "y": 82.9459 - }, - { - "l": "9.0", - "x": 1.9357, - "y": 83.1288 - }, - { - "l": "9.0", - "x": 1.9548, - "y": 83.3117 - }, - { - "l": "9.0", - "x": 1.974, - "y": 83.4945 - }, - { - "l": "9.0", - "x": 1.9932, - "y": 83.6773 - }, - { - "l": "9.0", - "x": 2.0, - "y": 83.7426 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 0.0383, - "y": 51.0716 - }, - { - "l": "25.0", - "x": 0.0575, - "y": 52.1059 - }, - { - "l": "25.0", - "x": 0.0767, - "y": 53.0937 - }, - { - "l": "25.0", - "x": 0.0958, - "y": 54.0337 - }, - { - "l": "25.0", - "x": 0.115, - "y": 54.9232 - }, - { - "l": "25.0", - "x": 0.1342, - "y": 55.7645 - }, - { - "l": "25.0", - "x": 0.1533, - "y": 56.5605 - }, - { - "l": "25.0", - "x": 0.1725, - "y": 57.3179 - }, - { - "l": "25.0", - "x": 0.1916, - "y": 58.0443 - }, - { - "l": "25.0", - "x": 0.2108, - "y": 58.7398 - }, - { - "l": "25.0", - "x": 0.23, - "y": 59.4043 - }, - { - "l": "25.0", - "x": 0.2491, - "y": 60.0386 - }, - { - "l": "25.0", - "x": 0.2683, - "y": 60.6448 - }, - { - "l": "25.0", - "x": 0.2875, - "y": 61.2225 - }, - { - "l": "25.0", - "x": 0.3066, - "y": 61.7734 - }, - { - "l": "25.0", - "x": 0.3258, - "y": 62.2989 - }, - { - "l": "25.0", - "x": 0.345, - "y": 62.8005 - }, - { - "l": "25.0", - "x": 0.3641, - "y": 63.2799 - }, - { - "l": "25.0", - "x": 0.3833, - "y": 63.739 - }, - { - "l": "25.0", - "x": 0.4025, - "y": 64.1795 - }, - { - "l": "25.0", - "x": 0.4216, - "y": 64.6034 - }, - { - "l": "25.0", - "x": 0.4408, - "y": 65.0129 - }, - { - "l": "25.0", - "x": 0.46, - "y": 65.4086 - }, - { - "l": "25.0", - "x": 0.4791, - "y": 65.7919 - }, - { - "l": "25.0", - "x": 0.4983, - "y": 66.164 - }, - { - "l": "25.0", - "x": 0.5175, - "y": 66.5278 - }, - { - "l": "25.0", - "x": 0.5366, - "y": 66.8829 - }, - { - "l": "25.0", - "x": 0.5558, - "y": 67.2301 - }, - { - "l": "25.0", - "x": 0.5749, - "y": 67.5703 - }, - { - "l": "25.0", - "x": 0.5941, - "y": 67.905 - }, - { - "l": "25.0", - "x": 0.6133, - "y": 68.2349 - }, - { - "l": "25.0", - "x": 0.6324, - "y": 68.5597 - }, - { - "l": "25.0", - "x": 0.6516, - "y": 68.8801 - }, - { - "l": "25.0", - "x": 0.6708, - "y": 69.1968 - }, - { - "l": "25.0", - "x": 0.6899, - "y": 69.5109 - }, - { - "l": "25.0", - "x": 0.7091, - "y": 69.8215 - }, - { - "l": "25.0", - "x": 0.7283, - "y": 70.1287 - }, - { - "l": "25.0", - "x": 0.7474, - "y": 70.4327 - }, - { - "l": "25.0", - "x": 0.7666, - "y": 70.7337 - }, - { - "l": "25.0", - "x": 0.7858, - "y": 71.0317 - }, - { - "l": "25.0", - "x": 0.8049, - "y": 71.3265 - }, - { - "l": "25.0", - "x": 0.8241, - "y": 71.6183 - }, - { - "l": "25.0", - "x": 0.8433, - "y": 71.907 - }, - { - "l": "25.0", - "x": 0.8624, - "y": 72.1927 - }, - { - "l": "25.0", - "x": 0.8816, - "y": 72.4754 - }, - { - "l": "25.0", - "x": 0.9008, - "y": 72.7554 - }, - { - "l": "25.0", - "x": 0.9199, - "y": 73.0328 - }, - { - "l": "25.0", - "x": 0.9391, - "y": 73.3075 - }, - { - "l": "25.0", - "x": 0.9582, - "y": 73.5798 - }, - { - "l": "25.0", - "x": 0.9774, - "y": 73.8496 - }, - { - "l": "25.0", - "x": 0.9966, - "y": 74.1171 - }, - { - "l": "25.0", - "x": 1.0157, - "y": 74.3825 - }, - { - "l": "25.0", - "x": 1.0349, - "y": 74.6457 - }, - { - "l": "25.0", - "x": 1.0541, - "y": 74.9068 - }, - { - "l": "25.0", - "x": 1.0732, - "y": 75.1657 - }, - { - "l": "25.0", - "x": 1.0924, - "y": 75.4225 - }, - { - "l": "25.0", - "x": 1.1116, - "y": 75.6772 - }, - { - "l": "25.0", - "x": 1.1307, - "y": 75.9298 - }, - { - "l": "25.0", - "x": 1.1499, - "y": 76.1805 - }, - { - "l": "25.0", - "x": 1.1691, - "y": 76.4291 - }, - { - "l": "25.0", - "x": 1.1882, - "y": 76.6759 - }, - { - "l": "25.0", - "x": 1.2074, - "y": 76.9208 - }, - { - "l": "25.0", - "x": 1.2266, - "y": 77.1639 - }, - { - "l": "25.0", - "x": 1.2457, - "y": 77.4053 - }, - { - "l": "25.0", - "x": 1.2649, - "y": 77.6451 - }, - { - "l": "25.0", - "x": 1.2841, - "y": 77.8833 - }, - { - "l": "25.0", - "x": 1.3032, - "y": 78.1198 - }, - { - "l": "25.0", - "x": 1.3224, - "y": 78.3548 - }, - { - "l": "25.0", - "x": 1.3415, - "y": 78.5882 - }, - { - "l": "25.0", - "x": 1.3607, - "y": 78.8201 - }, - { - "l": "25.0", - "x": 1.3799, - "y": 79.0504 - }, - { - "l": "25.0", - "x": 1.399, - "y": 79.2792 - }, - { - "l": "25.0", - "x": 1.4182, - "y": 79.5065 - }, - { - "l": "25.0", - "x": 1.4374, - "y": 79.7325 - }, - { - "l": "25.0", - "x": 1.4565, - "y": 79.9569 - }, - { - "l": "25.0", - "x": 1.4757, - "y": 80.1799 - }, - { - "l": "25.0", - "x": 1.4949, - "y": 80.4014 - }, - { - "l": "25.0", - "x": 1.514, - "y": 80.6214 - }, - { - "l": "25.0", - "x": 1.5332, - "y": 80.84 - }, - { - "l": "25.0", - "x": 1.5524, - "y": 81.057 - }, - { - "l": "25.0", - "x": 1.5715, - "y": 81.2727 - }, - { - "l": "25.0", - "x": 1.5907, - "y": 81.4871 - }, - { - "l": "25.0", - "x": 1.6099, - "y": 81.7 - }, - { - "l": "25.0", - "x": 1.629, - "y": 81.9117 - }, - { - "l": "25.0", - "x": 1.6482, - "y": 82.122 - }, - { - "l": "25.0", - "x": 1.6674, - "y": 82.3311 - }, - { - "l": "25.0", - "x": 1.6865, - "y": 82.5389 - }, - { - "l": "25.0", - "x": 1.7057, - "y": 82.7455 - }, - { - "l": "25.0", - "x": 1.7248, - "y": 82.9509 - }, - { - "l": "25.0", - "x": 1.744, - "y": 83.1551 - }, - { - "l": "25.0", - "x": 1.7632, - "y": 83.3581 - }, - { - "l": "25.0", - "x": 1.7823, - "y": 83.56 - }, - { - "l": "25.0", - "x": 1.8015, - "y": 83.7607 - }, - { - "l": "25.0", - "x": 1.8207, - "y": 83.9603 - }, - { - "l": "25.0", - "x": 1.8398, - "y": 84.1588 - }, - { - "l": "25.0", - "x": 1.859, - "y": 84.3562 - }, - { - "l": "25.0", - "x": 1.8782, - "y": 84.5526 - }, - { - "l": "25.0", - "x": 1.8973, - "y": 84.7481 - }, - { - "l": "25.0", - "x": 1.9165, - "y": 84.9425 - }, - { - "l": "25.0", - "x": 1.9357, - "y": 85.1346 - }, - { - "l": "25.0", - "x": 1.9548, - "y": 85.3267 - }, - { - "l": "25.0", - "x": 1.974, - "y": 85.5187 - }, - { - "l": "25.0", - "x": 1.9932, - "y": 85.7108 - }, - { - "l": "25.0", - "x": 2.0, - "y": 85.7794 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 0.0383, - "y": 52.3461 - }, - { - "l": "50.0", - "x": 0.0575, - "y": 53.3905 - }, - { - "l": "50.0", - "x": 0.0767, - "y": 54.3881 - }, - { - "l": "50.0", - "x": 0.0958, - "y": 55.3374 - }, - { - "l": "50.0", - "x": 0.115, - "y": 56.2357 - }, - { - "l": "50.0", - "x": 0.1342, - "y": 57.0851 - }, - { - "l": "50.0", - "x": 0.1533, - "y": 57.8889 - }, - { - "l": "50.0", - "x": 0.1725, - "y": 58.6536 - }, - { - "l": "50.0", - "x": 0.1916, - "y": 59.3872 - }, - { - "l": "50.0", - "x": 0.2108, - "y": 60.0894 - }, - { - "l": "50.0", - "x": 0.23, - "y": 60.7605 - }, - { - "l": "50.0", - "x": 0.2491, - "y": 61.4013 - }, - { - "l": "50.0", - "x": 0.2683, - "y": 62.0125 - }, - { - "l": "50.0", - "x": 0.2875, - "y": 62.5957 - }, - { - "l": "50.0", - "x": 0.3066, - "y": 63.1524 - }, - { - "l": "50.0", - "x": 0.3258, - "y": 63.6838 - }, - { - "l": "50.0", - "x": 0.345, - "y": 64.1907 - }, - { - "l": "50.0", - "x": 0.3641, - "y": 64.6749 - }, - { - "l": "50.0", - "x": 0.3833, - "y": 65.1387 - }, - { - "l": "50.0", - "x": 0.4025, - "y": 65.5838 - }, - { - "l": "50.0", - "x": 0.4216, - "y": 66.0122 - }, - { - "l": "50.0", - "x": 0.4408, - "y": 66.4262 - }, - { - "l": "50.0", - "x": 0.46, - "y": 66.8263 - }, - { - "l": "50.0", - "x": 0.4791, - "y": 67.2139 - }, - { - "l": "50.0", - "x": 0.4983, - "y": 67.5905 - }, - { - "l": "50.0", - "x": 0.5175, - "y": 67.9588 - }, - { - "l": "50.0", - "x": 0.5366, - "y": 68.3185 - }, - { - "l": "50.0", - "x": 0.5558, - "y": 68.6705 - }, - { - "l": "50.0", - "x": 0.5749, - "y": 69.0155 - }, - { - "l": "50.0", - "x": 0.5941, - "y": 69.3552 - }, - { - "l": "50.0", - "x": 0.6133, - "y": 69.6902 - }, - { - "l": "50.0", - "x": 0.6324, - "y": 70.0204 - }, - { - "l": "50.0", - "x": 0.6516, - "y": 70.3461 - }, - { - "l": "50.0", - "x": 0.6708, - "y": 70.6683 - }, - { - "l": "50.0", - "x": 0.6899, - "y": 70.988 - }, - { - "l": "50.0", - "x": 0.7091, - "y": 71.3043 - }, - { - "l": "50.0", - "x": 0.7283, - "y": 71.6174 - }, - { - "l": "50.0", - "x": 0.7474, - "y": 71.9274 - }, - { - "l": "50.0", - "x": 0.7666, - "y": 72.2346 - }, - { - "l": "50.0", - "x": 0.7858, - "y": 72.5388 - }, - { - "l": "50.0", - "x": 0.8049, - "y": 72.8401 - }, - { - "l": "50.0", - "x": 0.8241, - "y": 73.1384 - }, - { - "l": "50.0", - "x": 0.8433, - "y": 73.4337 - }, - { - "l": "50.0", - "x": 0.8624, - "y": 73.7261 - }, - { - "l": "50.0", - "x": 0.8816, - "y": 74.0156 - }, - { - "l": "50.0", - "x": 0.9008, - "y": 74.3025 - }, - { - "l": "50.0", - "x": 0.9199, - "y": 74.5869 - }, - { - "l": "50.0", - "x": 0.9391, - "y": 74.8687 - }, - { - "l": "50.0", - "x": 0.9582, - "y": 75.148 - }, - { - "l": "50.0", - "x": 0.9774, - "y": 75.4251 - }, - { - "l": "50.0", - "x": 0.9966, - "y": 75.7 - }, - { - "l": "50.0", - "x": 1.0157, - "y": 75.9728 - }, - { - "l": "50.0", - "x": 1.0349, - "y": 76.2436 - }, - { - "l": "50.0", - "x": 1.0541, - "y": 76.5123 - }, - { - "l": "50.0", - "x": 1.0732, - "y": 76.779 - }, - { - "l": "50.0", - "x": 1.0924, - "y": 77.0435 - }, - { - "l": "50.0", - "x": 1.1116, - "y": 77.306 - }, - { - "l": "50.0", - "x": 1.1307, - "y": 77.5665 - }, - { - "l": "50.0", - "x": 1.1499, - "y": 77.825 - }, - { - "l": "50.0", - "x": 1.1691, - "y": 78.0817 - }, - { - "l": "50.0", - "x": 1.1882, - "y": 78.3365 - }, - { - "l": "50.0", - "x": 1.2074, - "y": 78.5895 - }, - { - "l": "50.0", - "x": 1.2266, - "y": 78.8407 - }, - { - "l": "50.0", - "x": 1.2457, - "y": 79.0903 - }, - { - "l": "50.0", - "x": 1.2649, - "y": 79.3383 - }, - { - "l": "50.0", - "x": 1.2841, - "y": 79.5847 - }, - { - "l": "50.0", - "x": 1.3032, - "y": 79.8296 - }, - { - "l": "50.0", - "x": 1.3224, - "y": 80.0729 - }, - { - "l": "50.0", - "x": 1.3415, - "y": 80.3148 - }, - { - "l": "50.0", - "x": 1.3607, - "y": 80.5552 - }, - { - "l": "50.0", - "x": 1.3799, - "y": 80.7941 - }, - { - "l": "50.0", - "x": 1.399, - "y": 81.0316 - }, - { - "l": "50.0", - "x": 1.4182, - "y": 81.2676 - }, - { - "l": "50.0", - "x": 1.4374, - "y": 81.5022 - }, - { - "l": "50.0", - "x": 1.4565, - "y": 81.7353 - }, - { - "l": "50.0", - "x": 1.4757, - "y": 81.967 - }, - { - "l": "50.0", - "x": 1.4949, - "y": 82.1973 - }, - { - "l": "50.0", - "x": 1.514, - "y": 82.4261 - }, - { - "l": "50.0", - "x": 1.5332, - "y": 82.6535 - }, - { - "l": "50.0", - "x": 1.5524, - "y": 82.8795 - }, - { - "l": "50.0", - "x": 1.5715, - "y": 83.1041 - }, - { - "l": "50.0", - "x": 1.5907, - "y": 83.3273 - }, - { - "l": "50.0", - "x": 1.6099, - "y": 83.5493 - }, - { - "l": "50.0", - "x": 1.629, - "y": 83.7699 - }, - { - "l": "50.0", - "x": 1.6482, - "y": 83.9892 - }, - { - "l": "50.0", - "x": 1.6674, - "y": 84.2074 - }, - { - "l": "50.0", - "x": 1.6865, - "y": 84.4244 - }, - { - "l": "50.0", - "x": 1.7057, - "y": 84.6402 - }, - { - "l": "50.0", - "x": 1.7248, - "y": 84.8549 - }, - { - "l": "50.0", - "x": 1.744, - "y": 85.0683 - }, - { - "l": "50.0", - "x": 1.7632, - "y": 85.2806 - }, - { - "l": "50.0", - "x": 1.7823, - "y": 85.4916 - }, - { - "l": "50.0", - "x": 1.8015, - "y": 85.7015 - }, - { - "l": "50.0", - "x": 1.8207, - "y": 85.9103 - }, - { - "l": "50.0", - "x": 1.8398, - "y": 86.1181 - }, - { - "l": "50.0", - "x": 1.859, - "y": 86.3249 - }, - { - "l": "50.0", - "x": 1.8782, - "y": 86.5306 - }, - { - "l": "50.0", - "x": 1.8973, - "y": 86.7354 - }, - { - "l": "50.0", - "x": 1.9165, - "y": 86.9392 - }, - { - "l": "50.0", - "x": 1.9357, - "y": 87.1405 - }, - { - "l": "50.0", - "x": 1.9548, - "y": 87.3417 - }, - { - "l": "50.0", - "x": 1.974, - "y": 87.543 - }, - { - "l": "50.0", - "x": 1.9932, - "y": 87.7442 - }, - { - "l": "50.0", - "x": 2.0, - "y": 87.8161 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 0.0383, - "y": 53.6206 - }, - { - "l": "75.0", - "x": 0.0575, - "y": 54.6751 - }, - { - "l": "75.0", - "x": 0.0767, - "y": 55.6825 - }, - { - "l": "75.0", - "x": 0.0958, - "y": 56.6411 - }, - { - "l": "75.0", - "x": 0.115, - "y": 57.5482 - }, - { - "l": "75.0", - "x": 0.1342, - "y": 58.4057 - }, - { - "l": "75.0", - "x": 0.1533, - "y": 59.2173 - }, - { - "l": "75.0", - "x": 0.1725, - "y": 59.9893 - }, - { - "l": "75.0", - "x": 0.1916, - "y": 60.7301 - }, - { - "l": "75.0", - "x": 0.2108, - "y": 61.439 - }, - { - "l": "75.0", - "x": 0.23, - "y": 62.1167 - }, - { - "l": "75.0", - "x": 0.2491, - "y": 62.764 - }, - { - "l": "75.0", - "x": 0.2683, - "y": 63.3802 - }, - { - "l": "75.0", - "x": 0.2875, - "y": 63.9689 - }, - { - "l": "75.0", - "x": 0.3066, - "y": 64.5313 - }, - { - "l": "75.0", - "x": 0.3258, - "y": 65.0687 - }, - { - "l": "75.0", - "x": 0.345, - "y": 65.5809 - }, - { - "l": "75.0", - "x": 0.3641, - "y": 66.07 - }, - { - "l": "75.0", - "x": 0.3833, - "y": 66.5385 - }, - { - "l": "75.0", - "x": 0.4025, - "y": 66.9881 - }, - { - "l": "75.0", - "x": 0.4216, - "y": 67.421 - }, - { - "l": "75.0", - "x": 0.4408, - "y": 67.8394 - }, - { - "l": "75.0", - "x": 0.46, - "y": 68.2439 - }, - { - "l": "75.0", - "x": 0.4791, - "y": 68.6359 - }, - { - "l": "75.0", - "x": 0.4983, - "y": 69.0169 - }, - { - "l": "75.0", - "x": 0.5175, - "y": 69.3898 - }, - { - "l": "75.0", - "x": 0.5366, - "y": 69.7542 - }, - { - "l": "75.0", - "x": 0.5558, - "y": 70.1108 - }, - { - "l": "75.0", - "x": 0.5749, - "y": 70.4607 - }, - { - "l": "75.0", - "x": 0.5941, - "y": 70.8055 - }, - { - "l": "75.0", - "x": 0.6133, - "y": 71.1456 - }, - { - "l": "75.0", - "x": 0.6324, - "y": 71.481 - }, - { - "l": "75.0", - "x": 0.6516, - "y": 71.8122 - }, - { - "l": "75.0", - "x": 0.6708, - "y": 72.1399 - }, - { - "l": "75.0", - "x": 0.6899, - "y": 72.4652 - }, - { - "l": "75.0", - "x": 0.7091, - "y": 72.7872 - }, - { - "l": "75.0", - "x": 0.7283, - "y": 73.1062 - }, - { - "l": "75.0", - "x": 0.7474, - "y": 73.4221 - }, - { - "l": "75.0", - "x": 0.7666, - "y": 73.7354 - }, - { - "l": "75.0", - "x": 0.7858, - "y": 74.046 - }, - { - "l": "75.0", - "x": 0.8049, - "y": 74.3536 - }, - { - "l": "75.0", - "x": 0.8241, - "y": 74.6585 - }, - { - "l": "75.0", - "x": 0.8433, - "y": 74.9604 - }, - { - "l": "75.0", - "x": 0.8624, - "y": 75.2595 - }, - { - "l": "75.0", - "x": 0.8816, - "y": 75.5559 - }, - { - "l": "75.0", - "x": 0.9008, - "y": 75.8496 - }, - { - "l": "75.0", - "x": 0.9199, - "y": 76.1409 - }, - { - "l": "75.0", - "x": 0.9391, - "y": 76.4298 - }, - { - "l": "75.0", - "x": 0.9582, - "y": 76.7163 - }, - { - "l": "75.0", - "x": 0.9774, - "y": 77.0006 - }, - { - "l": "75.0", - "x": 0.9966, - "y": 77.2828 - }, - { - "l": "75.0", - "x": 1.0157, - "y": 77.5631 - }, - { - "l": "75.0", - "x": 1.0349, - "y": 77.8415 - }, - { - "l": "75.0", - "x": 1.0541, - "y": 78.1179 - }, - { - "l": "75.0", - "x": 1.0732, - "y": 78.3922 - }, - { - "l": "75.0", - "x": 1.0924, - "y": 78.6645 - }, - { - "l": "75.0", - "x": 1.1116, - "y": 78.9348 - }, - { - "l": "75.0", - "x": 1.1307, - "y": 79.2031 - }, - { - "l": "75.0", - "x": 1.1499, - "y": 79.4696 - }, - { - "l": "75.0", - "x": 1.1691, - "y": 79.7342 - }, - { - "l": "75.0", - "x": 1.1882, - "y": 79.997 - }, - { - "l": "75.0", - "x": 1.2074, - "y": 80.2581 - }, - { - "l": "75.0", - "x": 1.2266, - "y": 80.5176 - }, - { - "l": "75.0", - "x": 1.2457, - "y": 80.7753 - }, - { - "l": "75.0", - "x": 1.2649, - "y": 81.0316 - }, - { - "l": "75.0", - "x": 1.2841, - "y": 81.2862 - }, - { - "l": "75.0", - "x": 1.3032, - "y": 81.5394 - }, - { - "l": "75.0", - "x": 1.3224, - "y": 81.7911 - }, - { - "l": "75.0", - "x": 1.3415, - "y": 82.0414 - }, - { - "l": "75.0", - "x": 1.3607, - "y": 82.2903 - }, - { - "l": "75.0", - "x": 1.3799, - "y": 82.5379 - }, - { - "l": "75.0", - "x": 1.399, - "y": 82.784 - }, - { - "l": "75.0", - "x": 1.4182, - "y": 83.0287 - }, - { - "l": "75.0", - "x": 1.4374, - "y": 83.2719 - }, - { - "l": "75.0", - "x": 1.4565, - "y": 83.5137 - }, - { - "l": "75.0", - "x": 1.4757, - "y": 83.7541 - }, - { - "l": "75.0", - "x": 1.4949, - "y": 83.9931 - }, - { - "l": "75.0", - "x": 1.514, - "y": 84.2307 - }, - { - "l": "75.0", - "x": 1.5332, - "y": 84.467 - }, - { - "l": "75.0", - "x": 1.5524, - "y": 84.7019 - }, - { - "l": "75.0", - "x": 1.5715, - "y": 84.9354 - }, - { - "l": "75.0", - "x": 1.5907, - "y": 85.1676 - }, - { - "l": "75.0", - "x": 1.6099, - "y": 85.3985 - }, - { - "l": "75.0", - "x": 1.629, - "y": 85.6281 - }, - { - "l": "75.0", - "x": 1.6482, - "y": 85.8565 - }, - { - "l": "75.0", - "x": 1.6674, - "y": 86.0837 - }, - { - "l": "75.0", - "x": 1.6865, - "y": 86.3099 - }, - { - "l": "75.0", - "x": 1.7057, - "y": 86.5349 - }, - { - "l": "75.0", - "x": 1.7248, - "y": 86.7588 - }, - { - "l": "75.0", - "x": 1.744, - "y": 86.9815 - }, - { - "l": "75.0", - "x": 1.7632, - "y": 87.203 - }, - { - "l": "75.0", - "x": 1.7823, - "y": 87.4232 - }, - { - "l": "75.0", - "x": 1.8015, - "y": 87.6423 - }, - { - "l": "75.0", - "x": 1.8207, - "y": 87.8604 - }, - { - "l": "75.0", - "x": 1.8398, - "y": 88.0774 - }, - { - "l": "75.0", - "x": 1.859, - "y": 88.2935 - }, - { - "l": "75.0", - "x": 1.8782, - "y": 88.5086 - }, - { - "l": "75.0", - "x": 1.8973, - "y": 88.7227 - }, - { - "l": "75.0", - "x": 1.9165, - "y": 88.9358 - }, - { - "l": "75.0", - "x": 1.9357, - "y": 89.1463 - }, - { - "l": "75.0", - "x": 1.9548, - "y": 89.3567 - }, - { - "l": "75.0", - "x": 1.974, - "y": 89.5672 - }, - { - "l": "75.0", - "x": 1.9932, - "y": 89.7777 - }, - { - "l": "75.0", - "x": 2.0, - "y": 89.8528 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 0.0383, - "y": 54.895 - }, - { - "l": "91.0", - "x": 0.0575, - "y": 55.9597 - }, - { - "l": "91.0", - "x": 0.0767, - "y": 56.977 - }, - { - "l": "91.0", - "x": 0.0958, - "y": 57.9449 - }, - { - "l": "91.0", - "x": 0.115, - "y": 58.8608 - }, - { - "l": "91.0", - "x": 0.1342, - "y": 59.7262 - }, - { - "l": "91.0", - "x": 0.1533, - "y": 60.5456 - }, - { - "l": "91.0", - "x": 0.1725, - "y": 61.3251 - }, - { - "l": "91.0", - "x": 0.1916, - "y": 62.0731 - }, - { - "l": "91.0", - "x": 0.2108, - "y": 62.7886 - }, - { - "l": "91.0", - "x": 0.23, - "y": 63.4728 - }, - { - "l": "91.0", - "x": 0.2491, - "y": 64.1267 - }, - { - "l": "91.0", - "x": 0.2683, - "y": 64.7479 - }, - { - "l": "91.0", - "x": 0.2875, - "y": 65.3421 - }, - { - "l": "91.0", - "x": 0.3066, - "y": 65.9103 - }, - { - "l": "91.0", - "x": 0.3258, - "y": 66.4536 - }, - { - "l": "91.0", - "x": 0.345, - "y": 66.9711 - }, - { - "l": "91.0", - "x": 0.3641, - "y": 67.465 - }, - { - "l": "91.0", - "x": 0.3833, - "y": 67.9382 - }, - { - "l": "91.0", - "x": 0.4025, - "y": 68.3925 - }, - { - "l": "91.0", - "x": 0.4216, - "y": 68.8299 - }, - { - "l": "91.0", - "x": 0.4408, - "y": 69.2527 - }, - { - "l": "91.0", - "x": 0.46, - "y": 69.6615 - }, - { - "l": "91.0", - "x": 0.4791, - "y": 70.0579 - }, - { - "l": "91.0", - "x": 0.4983, - "y": 70.4434 - }, - { - "l": "91.0", - "x": 0.5175, - "y": 70.8208 - }, - { - "l": "91.0", - "x": 0.5366, - "y": 71.1898 - }, - { - "l": "91.0", - "x": 0.5558, - "y": 71.5512 - }, - { - "l": "91.0", - "x": 0.5749, - "y": 71.9059 - }, - { - "l": "91.0", - "x": 0.5941, - "y": 72.2557 - }, - { - "l": "91.0", - "x": 0.6133, - "y": 72.6009 - }, - { - "l": "91.0", - "x": 0.6324, - "y": 72.9416 - }, - { - "l": "91.0", - "x": 0.6516, - "y": 73.2782 - }, - { - "l": "91.0", - "x": 0.6708, - "y": 73.6114 - }, - { - "l": "91.0", - "x": 0.6899, - "y": 73.9423 - }, - { - "l": "91.0", - "x": 0.7091, - "y": 74.2701 - }, - { - "l": "91.0", - "x": 0.7283, - "y": 74.5949 - }, - { - "l": "91.0", - "x": 0.7474, - "y": 74.9168 - }, - { - "l": "91.0", - "x": 0.7666, - "y": 75.2363 - }, - { - "l": "91.0", - "x": 0.7858, - "y": 75.5531 - }, - { - "l": "91.0", - "x": 0.8049, - "y": 75.8672 - }, - { - "l": "91.0", - "x": 0.8241, - "y": 76.1786 - }, - { - "l": "91.0", - "x": 0.8433, - "y": 76.4871 - }, - { - "l": "91.0", - "x": 0.8624, - "y": 76.7929 - }, - { - "l": "91.0", - "x": 0.8816, - "y": 77.0961 - }, - { - "l": "91.0", - "x": 0.9008, - "y": 77.3967 - }, - { - "l": "91.0", - "x": 0.9199, - "y": 77.695 - }, - { - "l": "91.0", - "x": 0.9391, - "y": 77.9909 - }, - { - "l": "91.0", - "x": 0.9582, - "y": 78.2846 - }, - { - "l": "91.0", - "x": 0.9774, - "y": 78.5761 - }, - { - "l": "91.0", - "x": 0.9966, - "y": 78.8656 - }, - { - "l": "91.0", - "x": 1.0157, - "y": 79.1534 - }, - { - "l": "91.0", - "x": 1.0349, - "y": 79.4394 - }, - { - "l": "91.0", - "x": 1.0541, - "y": 79.7234 - }, - { - "l": "91.0", - "x": 1.0732, - "y": 80.0055 - }, - { - "l": "91.0", - "x": 1.0924, - "y": 80.2855 - }, - { - "l": "91.0", - "x": 1.1116, - "y": 80.5636 - }, - { - "l": "91.0", - "x": 1.1307, - "y": 80.8398 - }, - { - "l": "91.0", - "x": 1.1499, - "y": 81.1141 - }, - { - "l": "91.0", - "x": 1.1691, - "y": 81.3867 - }, - { - "l": "91.0", - "x": 1.1882, - "y": 81.6576 - }, - { - "l": "91.0", - "x": 1.2074, - "y": 81.9268 - }, - { - "l": "91.0", - "x": 1.2266, - "y": 82.1944 - }, - { - "l": "91.0", - "x": 1.2457, - "y": 82.4604 - }, - { - "l": "91.0", - "x": 1.2649, - "y": 82.7248 - }, - { - "l": "91.0", - "x": 1.2841, - "y": 82.9877 - }, - { - "l": "91.0", - "x": 1.3032, - "y": 83.2492 - }, - { - "l": "91.0", - "x": 1.3224, - "y": 83.5092 - }, - { - "l": "91.0", - "x": 1.3415, - "y": 83.768 - }, - { - "l": "91.0", - "x": 1.3607, - "y": 84.0255 - }, - { - "l": "91.0", - "x": 1.3799, - "y": 84.2816 - }, - { - "l": "91.0", - "x": 1.399, - "y": 84.5364 - }, - { - "l": "91.0", - "x": 1.4182, - "y": 84.7898 - }, - { - "l": "91.0", - "x": 1.4374, - "y": 85.0416 - }, - { - "l": "91.0", - "x": 1.4565, - "y": 85.2921 - }, - { - "l": "91.0", - "x": 1.4757, - "y": 85.5412 - }, - { - "l": "91.0", - "x": 1.4949, - "y": 85.7889 - }, - { - "l": "91.0", - "x": 1.514, - "y": 86.0354 - }, - { - "l": "91.0", - "x": 1.5332, - "y": 86.2805 - }, - { - "l": "91.0", - "x": 1.5524, - "y": 86.5243 - }, - { - "l": "91.0", - "x": 1.5715, - "y": 86.7668 - }, - { - "l": "91.0", - "x": 1.5907, - "y": 87.0079 - }, - { - "l": "91.0", - "x": 1.6099, - "y": 87.2477 - }, - { - "l": "91.0", - "x": 1.629, - "y": 87.4863 - }, - { - "l": "91.0", - "x": 1.6482, - "y": 87.7237 - }, - { - "l": "91.0", - "x": 1.6674, - "y": 87.96 - }, - { - "l": "91.0", - "x": 1.6865, - "y": 88.1953 - }, - { - "l": "91.0", - "x": 1.7057, - "y": 88.4296 - }, - { - "l": "91.0", - "x": 1.7248, - "y": 88.6628 - }, - { - "l": "91.0", - "x": 1.744, - "y": 88.8947 - }, - { - "l": "91.0", - "x": 1.7632, - "y": 89.1254 - }, - { - "l": "91.0", - "x": 1.7823, - "y": 89.3548 - }, - { - "l": "91.0", - "x": 1.8015, - "y": 89.5831 - }, - { - "l": "91.0", - "x": 1.8207, - "y": 89.8104 - }, - { - "l": "91.0", - "x": 1.8398, - "y": 90.0367 - }, - { - "l": "91.0", - "x": 1.859, - "y": 90.2622 - }, - { - "l": "91.0", - "x": 1.8782, - "y": 90.4866 - }, - { - "l": "91.0", - "x": 1.8973, - "y": 90.7101 - }, - { - "l": "91.0", - "x": 1.9165, - "y": 90.9325 - }, - { - "l": "91.0", - "x": 1.9357, - "y": 91.1521 - }, - { - "l": "91.0", - "x": 1.9548, - "y": 91.3717 - }, - { - "l": "91.0", - "x": 1.974, - "y": 91.5914 - }, - { - "l": "91.0", - "x": 1.9932, - "y": 91.8111 - }, - { - "l": "91.0", - "x": 2.0, - "y": 91.8896 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 0.0383, - "y": 56.1695 - }, - { - "l": "98.0", - "x": 0.0575, - "y": 57.2442 - }, - { - "l": "98.0", - "x": 0.0767, - "y": 58.2714 - }, - { - "l": "98.0", - "x": 0.0958, - "y": 59.2486 - }, - { - "l": "98.0", - "x": 0.115, - "y": 60.1733 - }, - { - "l": "98.0", - "x": 0.1342, - "y": 61.0468 - }, - { - "l": "98.0", - "x": 0.1533, - "y": 61.874 - }, - { - "l": "98.0", - "x": 0.1725, - "y": 62.6608 - }, - { - "l": "98.0", - "x": 0.1916, - "y": 63.416 - }, - { - "l": "98.0", - "x": 0.2108, - "y": 64.1382 - }, - { - "l": "98.0", - "x": 0.23, - "y": 64.829 - }, - { - "l": "98.0", - "x": 0.2491, - "y": 65.4894 - }, - { - "l": "98.0", - "x": 0.2683, - "y": 66.1155 - }, - { - "l": "98.0", - "x": 0.2875, - "y": 66.7152 - }, - { - "l": "98.0", - "x": 0.3066, - "y": 67.2893 - }, - { - "l": "98.0", - "x": 0.3258, - "y": 67.8384 - }, - { - "l": "98.0", - "x": 0.345, - "y": 68.3613 - }, - { - "l": "98.0", - "x": 0.3641, - "y": 68.8601 - }, - { - "l": "98.0", - "x": 0.3833, - "y": 69.338 - }, - { - "l": "98.0", - "x": 0.4025, - "y": 69.7968 - }, - { - "l": "98.0", - "x": 0.4216, - "y": 70.2387 - }, - { - "l": "98.0", - "x": 0.4408, - "y": 70.6659 - }, - { - "l": "98.0", - "x": 0.46, - "y": 71.0792 - }, - { - "l": "98.0", - "x": 0.4791, - "y": 71.48 - }, - { - "l": "98.0", - "x": 0.4983, - "y": 71.8698 - }, - { - "l": "98.0", - "x": 0.5175, - "y": 72.2518 - }, - { - "l": "98.0", - "x": 0.5366, - "y": 72.6254 - }, - { - "l": "98.0", - "x": 0.5558, - "y": 72.9916 - }, - { - "l": "98.0", - "x": 0.5749, - "y": 73.3512 - }, - { - "l": "98.0", - "x": 0.5941, - "y": 73.7059 - }, - { - "l": "98.0", - "x": 0.6133, - "y": 74.0563 - }, - { - "l": "98.0", - "x": 0.6324, - "y": 74.4023 - }, - { - "l": "98.0", - "x": 0.6516, - "y": 74.7442 - }, - { - "l": "98.0", - "x": 0.6708, - "y": 75.083 - }, - { - "l": "98.0", - "x": 0.6899, - "y": 75.4194 - }, - { - "l": "98.0", - "x": 0.7091, - "y": 75.7529 - }, - { - "l": "98.0", - "x": 0.7283, - "y": 76.0836 - }, - { - "l": "98.0", - "x": 0.7474, - "y": 76.4115 - }, - { - "l": "98.0", - "x": 0.7666, - "y": 76.7372 - }, - { - "l": "98.0", - "x": 0.7858, - "y": 77.0603 - }, - { - "l": "98.0", - "x": 0.8049, - "y": 77.3808 - }, - { - "l": "98.0", - "x": 0.8241, - "y": 77.6987 - }, - { - "l": "98.0", - "x": 0.8433, - "y": 78.0138 - }, - { - "l": "98.0", - "x": 0.8624, - "y": 78.3263 - }, - { - "l": "98.0", - "x": 0.8816, - "y": 78.6363 - }, - { - "l": "98.0", - "x": 0.9008, - "y": 78.9438 - }, - { - "l": "98.0", - "x": 0.9199, - "y": 79.2491 - }, - { - "l": "98.0", - "x": 0.9391, - "y": 79.552 - }, - { - "l": "98.0", - "x": 0.9582, - "y": 79.8529 - }, - { - "l": "98.0", - "x": 0.9774, - "y": 80.1516 - }, - { - "l": "98.0", - "x": 0.9966, - "y": 80.4485 - }, - { - "l": "98.0", - "x": 1.0157, - "y": 80.7437 - }, - { - "l": "98.0", - "x": 1.0349, - "y": 81.0373 - }, - { - "l": "98.0", - "x": 1.0541, - "y": 81.3289 - }, - { - "l": "98.0", - "x": 1.0732, - "y": 81.6187 - }, - { - "l": "98.0", - "x": 1.0924, - "y": 81.9065 - }, - { - "l": "98.0", - "x": 1.1116, - "y": 82.1924 - }, - { - "l": "98.0", - "x": 1.1307, - "y": 82.4764 - }, - { - "l": "98.0", - "x": 1.1499, - "y": 82.7587 - }, - { - "l": "98.0", - "x": 1.1691, - "y": 83.0393 - }, - { - "l": "98.0", - "x": 1.1882, - "y": 83.3182 - }, - { - "l": "98.0", - "x": 1.2074, - "y": 83.5955 - }, - { - "l": "98.0", - "x": 1.2266, - "y": 83.8712 - }, - { - "l": "98.0", - "x": 1.2457, - "y": 84.1454 - }, - { - "l": "98.0", - "x": 1.2649, - "y": 84.418 - }, - { - "l": "98.0", - "x": 1.2841, - "y": 84.6892 - }, - { - "l": "98.0", - "x": 1.3032, - "y": 84.9589 - }, - { - "l": "98.0", - "x": 1.3224, - "y": 85.2273 - }, - { - "l": "98.0", - "x": 1.3415, - "y": 85.4945 - }, - { - "l": "98.0", - "x": 1.3607, - "y": 85.7606 - }, - { - "l": "98.0", - "x": 1.3799, - "y": 86.0254 - }, - { - "l": "98.0", - "x": 1.399, - "y": 86.2888 - }, - { - "l": "98.0", - "x": 1.4182, - "y": 86.5509 - }, - { - "l": "98.0", - "x": 1.4374, - "y": 86.8114 - }, - { - "l": "98.0", - "x": 1.4565, - "y": 87.0705 - }, - { - "l": "98.0", - "x": 1.4757, - "y": 87.3283 - }, - { - "l": "98.0", - "x": 1.4949, - "y": 87.5847 - }, - { - "l": "98.0", - "x": 1.514, - "y": 87.84 - }, - { - "l": "98.0", - "x": 1.5332, - "y": 88.094 - }, - { - "l": "98.0", - "x": 1.5524, - "y": 88.3467 - }, - { - "l": "98.0", - "x": 1.5715, - "y": 88.5981 - }, - { - "l": "98.0", - "x": 1.5907, - "y": 88.8482 - }, - { - "l": "98.0", - "x": 1.6099, - "y": 89.097 - }, - { - "l": "98.0", - "x": 1.629, - "y": 89.3445 - }, - { - "l": "98.0", - "x": 1.6482, - "y": 89.5909 - }, - { - "l": "98.0", - "x": 1.6674, - "y": 89.8363 - }, - { - "l": "98.0", - "x": 1.6865, - "y": 90.0808 - }, - { - "l": "98.0", - "x": 1.7057, - "y": 90.3243 - }, - { - "l": "98.0", - "x": 1.7248, - "y": 90.5667 - }, - { - "l": "98.0", - "x": 1.744, - "y": 90.808 - }, - { - "l": "98.0", - "x": 1.7632, - "y": 91.0478 - }, - { - "l": "98.0", - "x": 1.7823, - "y": 91.2864 - }, - { - "l": "98.0", - "x": 1.8015, - "y": 91.524 - }, - { - "l": "98.0", - "x": 1.8207, - "y": 91.7605 - }, - { - "l": "98.0", - "x": 1.8398, - "y": 91.996 - }, - { - "l": "98.0", - "x": 1.859, - "y": 92.2308 - }, - { - "l": "98.0", - "x": 1.8782, - "y": 92.4646 - }, - { - "l": "98.0", - "x": 1.8973, - "y": 92.6974 - }, - { - "l": "98.0", - "x": 1.9165, - "y": 92.9292 - }, - { - "l": "98.0", - "x": 1.9357, - "y": 93.1579 - }, - { - "l": "98.0", - "x": 1.9548, - "y": 93.3868 - }, - { - "l": "98.0", - "x": 1.974, - "y": 93.6156 - }, - { - "l": "98.0", - "x": 1.9932, - "y": 93.8446 - }, - { - "l": "98.0", - "x": 2.0, - "y": 93.9263 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 0.0383, - "y": 57.4439 - }, - { - "l": "99.6", - "x": 0.0575, - "y": 58.5288 - }, - { - "l": "99.6", - "x": 0.0767, - "y": 59.5658 - }, - { - "l": "99.6", - "x": 0.0958, - "y": 60.5524 - }, - { - "l": "99.6", - "x": 0.115, - "y": 61.4859 - }, - { - "l": "99.6", - "x": 0.1342, - "y": 62.3674 - }, - { - "l": "99.6", - "x": 0.1533, - "y": 63.2023 - }, - { - "l": "99.6", - "x": 0.1725, - "y": 63.9966 - }, - { - "l": "99.6", - "x": 0.1916, - "y": 64.759 - }, - { - "l": "99.6", - "x": 0.2108, - "y": 65.4878 - }, - { - "l": "99.6", - "x": 0.23, - "y": 66.1852 - }, - { - "l": "99.6", - "x": 0.2491, - "y": 66.8521 - }, - { - "l": "99.6", - "x": 0.2683, - "y": 67.4832 - }, - { - "l": "99.6", - "x": 0.2875, - "y": 68.0884 - }, - { - "l": "99.6", - "x": 0.3066, - "y": 68.6682 - }, - { - "l": "99.6", - "x": 0.3258, - "y": 69.2233 - }, - { - "l": "99.6", - "x": 0.345, - "y": 69.7515 - }, - { - "l": "99.6", - "x": 0.3641, - "y": 70.2551 - }, - { - "l": "99.6", - "x": 0.3833, - "y": 70.7377 - }, - { - "l": "99.6", - "x": 0.4025, - "y": 71.2011 - }, - { - "l": "99.6", - "x": 0.4216, - "y": 71.6475 - }, - { - "l": "99.6", - "x": 0.4408, - "y": 72.0792 - }, - { - "l": "99.6", - "x": 0.46, - "y": 72.4968 - }, - { - "l": "99.6", - "x": 0.4791, - "y": 72.902 - }, - { - "l": "99.6", - "x": 0.4983, - "y": 73.2963 - }, - { - "l": "99.6", - "x": 0.5175, - "y": 73.6828 - }, - { - "l": "99.6", - "x": 0.5366, - "y": 74.0611 - }, - { - "l": "99.6", - "x": 0.5558, - "y": 74.432 - }, - { - "l": "99.6", - "x": 0.5749, - "y": 74.7964 - }, - { - "l": "99.6", - "x": 0.5941, - "y": 75.1561 - }, - { - "l": "99.6", - "x": 0.6133, - "y": 75.5117 - }, - { - "l": "99.6", - "x": 0.6324, - "y": 75.8629 - }, - { - "l": "99.6", - "x": 0.6516, - "y": 76.2103 - }, - { - "l": "99.6", - "x": 0.6708, - "y": 76.5545 - }, - { - "l": "99.6", - "x": 0.6899, - "y": 76.8966 - }, - { - "l": "99.6", - "x": 0.7091, - "y": 77.2358 - }, - { - "l": "99.6", - "x": 0.7283, - "y": 77.5723 - }, - { - "l": "99.6", - "x": 0.7474, - "y": 77.9062 - }, - { - "l": "99.6", - "x": 0.7666, - "y": 78.238 - }, - { - "l": "99.6", - "x": 0.7858, - "y": 78.5674 - }, - { - "l": "99.6", - "x": 0.8049, - "y": 78.8943 - }, - { - "l": "99.6", - "x": 0.8241, - "y": 79.2188 - }, - { - "l": "99.6", - "x": 0.8433, - "y": 79.5405 - }, - { - "l": "99.6", - "x": 0.8624, - "y": 79.8597 - }, - { - "l": "99.6", - "x": 0.8816, - "y": 80.1765 - }, - { - "l": "99.6", - "x": 0.9008, - "y": 80.4909 - }, - { - "l": "99.6", - "x": 0.9199, - "y": 80.8032 - }, - { - "l": "99.6", - "x": 0.9391, - "y": 81.1132 - }, - { - "l": "99.6", - "x": 0.9582, - "y": 81.4211 - }, - { - "l": "99.6", - "x": 0.9774, - "y": 81.7271 - }, - { - "l": "99.6", - "x": 0.9966, - "y": 82.0313 - }, - { - "l": "99.6", - "x": 1.0157, - "y": 82.3341 - }, - { - "l": "99.6", - "x": 1.0349, - "y": 82.6351 - }, - { - "l": "99.6", - "x": 1.0541, - "y": 82.9344 - }, - { - "l": "99.6", - "x": 1.0732, - "y": 83.232 - }, - { - "l": "99.6", - "x": 1.0924, - "y": 83.5276 - }, - { - "l": "99.6", - "x": 1.1116, - "y": 83.8212 - }, - { - "l": "99.6", - "x": 1.1307, - "y": 84.1131 - }, - { - "l": "99.6", - "x": 1.1499, - "y": 84.4033 - }, - { - "l": "99.6", - "x": 1.1691, - "y": 84.6918 - }, - { - "l": "99.6", - "x": 1.1882, - "y": 84.9788 - }, - { - "l": "99.6", - "x": 1.2074, - "y": 85.2642 - }, - { - "l": "99.6", - "x": 1.2266, - "y": 85.5481 - }, - { - "l": "99.6", - "x": 1.2457, - "y": 85.8304 - }, - { - "l": "99.6", - "x": 1.2649, - "y": 86.1113 - }, - { - "l": "99.6", - "x": 1.2841, - "y": 86.3907 - }, - { - "l": "99.6", - "x": 1.3032, - "y": 86.6687 - }, - { - "l": "99.6", - "x": 1.3224, - "y": 86.9455 - }, - { - "l": "99.6", - "x": 1.3415, - "y": 87.2211 - }, - { - "l": "99.6", - "x": 1.3607, - "y": 87.4958 - }, - { - "l": "99.6", - "x": 1.3799, - "y": 87.7691 - }, - { - "l": "99.6", - "x": 1.399, - "y": 88.0412 - }, - { - "l": "99.6", - "x": 1.4182, - "y": 88.3119 - }, - { - "l": "99.6", - "x": 1.4374, - "y": 88.5811 - }, - { - "l": "99.6", - "x": 1.4565, - "y": 88.8489 - }, - { - "l": "99.6", - "x": 1.4757, - "y": 89.1154 - }, - { - "l": "99.6", - "x": 1.4949, - "y": 89.3806 - }, - { - "l": "99.6", - "x": 1.514, - "y": 89.6446 - }, - { - "l": "99.6", - "x": 1.5332, - "y": 89.9075 - }, - { - "l": "99.6", - "x": 1.5524, - "y": 90.1691 - }, - { - "l": "99.6", - "x": 1.5715, - "y": 90.4295 - }, - { - "l": "99.6", - "x": 1.5907, - "y": 90.6885 - }, - { - "l": "99.6", - "x": 1.6099, - "y": 90.9462 - }, - { - "l": "99.6", - "x": 1.629, - "y": 91.2027 - }, - { - "l": "99.6", - "x": 1.6482, - "y": 91.4582 - }, - { - "l": "99.6", - "x": 1.6674, - "y": 91.7125 - }, - { - "l": "99.6", - "x": 1.6865, - "y": 91.9663 - }, - { - "l": "99.6", - "x": 1.7057, - "y": 92.219 - }, - { - "l": "99.6", - "x": 1.7248, - "y": 92.4706 - }, - { - "l": "99.6", - "x": 1.744, - "y": 92.7212 - }, - { - "l": "99.6", - "x": 1.7632, - "y": 92.9702 - }, - { - "l": "99.6", - "x": 1.7823, - "y": 93.2181 - }, - { - "l": "99.6", - "x": 1.8015, - "y": 93.4648 - }, - { - "l": "99.6", - "x": 1.8207, - "y": 93.7105 - }, - { - "l": "99.6", - "x": 1.8398, - "y": 93.9553 - }, - { - "l": "99.6", - "x": 1.859, - "y": 94.1995 - }, - { - "l": "99.6", - "x": 1.8782, - "y": 94.4426 - }, - { - "l": "99.6", - "x": 1.8973, - "y": 94.6847 - }, - { - "l": "99.6", - "x": 1.9165, - "y": 94.9258 - }, - { - "l": "99.6", - "x": 1.9357, - "y": 95.1638 - }, - { - "l": "99.6", - "x": 1.9548, - "y": 95.4018 - }, - { - "l": "99.6", - "x": 1.974, - "y": 95.6398 - }, - { - "l": "99.6", - "x": 1.9932, - "y": 95.878 - }, - { - "l": "99.6", - "x": 2.0, - "y": 95.9631 - } - ] - } - ], - "weight": null, - "ofc": null, - "bmi": null - }, - "female": null - } - }, - { - "uk_who_child": { - "male": { - "height": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 2.0, - "y": 78.969 - }, - { - "l": "0.4", - "x": 2.0192, - "y": 79.1287 - }, - { - "l": "0.4", - "x": 2.1025, - "y": 79.8197 - }, - { - "l": "0.4", - "x": 2.1858, - "y": 80.4901 - }, - { - "l": "0.4", - "x": 2.2692, - "y": 81.1408 - }, - { - "l": "0.4", - "x": 2.3525, - "y": 81.775 - }, - { - "l": "0.4", - "x": 2.4358, - "y": 82.3894 - }, - { - "l": "0.4", - "x": 2.5192, - "y": 82.9885 - }, - { - "l": "0.4", - "x": 2.6025, - "y": 83.5714 - }, - { - "l": "0.4", - "x": 2.6858, - "y": 84.1403 - }, - { - "l": "0.4", - "x": 2.7692, - "y": 84.6986 - }, - { - "l": "0.4", - "x": 2.8525, - "y": 85.2463 - }, - { - "l": "0.4", - "x": 2.9358, - "y": 85.7862 - }, - { - "l": "0.4", - "x": 3.0192, - "y": 86.3208 - }, - { - "l": "0.4", - "x": 3.1025, - "y": 86.8478 - }, - { - "l": "0.4", - "x": 3.1858, - "y": 87.3672 - }, - { - "l": "0.4", - "x": 3.2692, - "y": 87.883 - }, - { - "l": "0.4", - "x": 3.3525, - "y": 88.3929 - }, - { - "l": "0.4", - "x": 3.4358, - "y": 88.8962 - }, - { - "l": "0.4", - "x": 3.5192, - "y": 89.3919 - }, - { - "l": "0.4", - "x": 3.6025, - "y": 89.8832 - }, - { - "l": "0.4", - "x": 3.6858, - "y": 90.3658 - }, - { - "l": "0.4", - "x": 3.7692, - "y": 90.8451 - }, - { - "l": "0.4", - "x": 3.8525, - "y": 91.3165 - }, - { - "l": "0.4", - "x": 3.9358, - "y": 91.7849 - }, - { - "l": "0.4", - "x": 4.0, - "y": 92.1432 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 2.0, - "y": 81.0058 - }, - { - "l": "2.0", - "x": 2.0192, - "y": 81.1748 - }, - { - "l": "2.0", - "x": 2.1025, - "y": 81.9063 - }, - { - "l": "2.0", - "x": 2.1858, - "y": 82.6164 - }, - { - "l": "2.0", - "x": 2.2692, - "y": 83.3065 - }, - { - "l": "2.0", - "x": 2.3525, - "y": 83.979 - }, - { - "l": "2.0", - "x": 2.4358, - "y": 84.6313 - }, - { - "l": "2.0", - "x": 2.5192, - "y": 85.267 - }, - { - "l": "2.0", - "x": 2.6025, - "y": 85.8857 - }, - { - "l": "2.0", - "x": 2.6858, - "y": 86.4894 - }, - { - "l": "2.0", - "x": 2.7692, - "y": 87.0812 - }, - { - "l": "2.0", - "x": 2.8525, - "y": 87.6618 - }, - { - "l": "2.0", - "x": 2.9358, - "y": 88.2337 - }, - { - "l": "2.0", - "x": 3.0192, - "y": 88.7991 - }, - { - "l": "2.0", - "x": 3.1025, - "y": 89.3564 - }, - { - "l": "2.0", - "x": 3.1858, - "y": 89.9057 - }, - { - "l": "2.0", - "x": 3.2692, - "y": 90.4501 - }, - { - "l": "2.0", - "x": 3.3525, - "y": 90.988 - }, - { - "l": "2.0", - "x": 3.4358, - "y": 91.5186 - }, - { - "l": "2.0", - "x": 3.5192, - "y": 92.0413 - }, - { - "l": "2.0", - "x": 3.6025, - "y": 92.5586 - }, - { - "l": "2.0", - "x": 3.6858, - "y": 93.0673 - }, - { - "l": "2.0", - "x": 3.7692, - "y": 93.5717 - }, - { - "l": "2.0", - "x": 3.8525, - "y": 94.0685 - }, - { - "l": "2.0", - "x": 3.9358, - "y": 94.5618 - }, - { - "l": "2.0", - "x": 4.0, - "y": 94.9392 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 2.0, - "y": 83.0426 - }, - { - "l": "9.0", - "x": 2.0192, - "y": 83.2208 - }, - { - "l": "9.0", - "x": 2.1025, - "y": 83.9928 - }, - { - "l": "9.0", - "x": 2.1858, - "y": 84.7427 - }, - { - "l": "9.0", - "x": 2.2692, - "y": 85.4723 - }, - { - "l": "9.0", - "x": 2.3525, - "y": 86.1831 - }, - { - "l": "9.0", - "x": 2.4358, - "y": 86.8732 - }, - { - "l": "9.0", - "x": 2.5192, - "y": 87.5454 - }, - { - "l": "9.0", - "x": 2.6025, - "y": 88.1999 - }, - { - "l": "9.0", - "x": 2.6858, - "y": 88.8385 - }, - { - "l": "9.0", - "x": 2.7692, - "y": 89.4638 - }, - { - "l": "9.0", - "x": 2.8525, - "y": 90.0774 - }, - { - "l": "9.0", - "x": 2.9358, - "y": 90.6812 - }, - { - "l": "9.0", - "x": 3.0192, - "y": 91.2773 - }, - { - "l": "9.0", - "x": 3.1025, - "y": 91.8649 - }, - { - "l": "9.0", - "x": 3.1858, - "y": 92.4442 - }, - { - "l": "9.0", - "x": 3.2692, - "y": 93.0172 - }, - { - "l": "9.0", - "x": 3.3525, - "y": 93.5831 - }, - { - "l": "9.0", - "x": 3.4358, - "y": 94.1411 - }, - { - "l": "9.0", - "x": 3.5192, - "y": 94.6907 - }, - { - "l": "9.0", - "x": 3.6025, - "y": 95.2339 - }, - { - "l": "9.0", - "x": 3.6858, - "y": 95.7687 - }, - { - "l": "9.0", - "x": 3.7692, - "y": 96.2982 - }, - { - "l": "9.0", - "x": 3.8525, - "y": 96.8206 - }, - { - "l": "9.0", - "x": 3.9358, - "y": 97.3386 - }, - { - "l": "9.0", - "x": 4.0, - "y": 97.7352 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 2.0, - "y": 85.0793 - }, - { - "l": "25.0", - "x": 2.0192, - "y": 85.2669 - }, - { - "l": "25.0", - "x": 2.1025, - "y": 86.0793 - }, - { - "l": "25.0", - "x": 2.1858, - "y": 86.8691 - }, - { - "l": "25.0", - "x": 2.2692, - "y": 87.638 - }, - { - "l": "25.0", - "x": 2.3525, - "y": 88.3871 - }, - { - "l": "25.0", - "x": 2.4358, - "y": 89.1151 - }, - { - "l": "25.0", - "x": 2.5192, - "y": 89.8239 - }, - { - "l": "25.0", - "x": 2.6025, - "y": 90.5142 - }, - { - "l": "25.0", - "x": 2.6858, - "y": 91.1876 - }, - { - "l": "25.0", - "x": 2.7692, - "y": 91.8465 - }, - { - "l": "25.0", - "x": 2.8525, - "y": 92.4929 - }, - { - "l": "25.0", - "x": 2.9358, - "y": 93.1287 - }, - { - "l": "25.0", - "x": 3.0192, - "y": 93.7556 - }, - { - "l": "25.0", - "x": 3.1025, - "y": 94.3734 - }, - { - "l": "25.0", - "x": 3.1858, - "y": 94.9826 - }, - { - "l": "25.0", - "x": 3.2692, - "y": 95.5844 - }, - { - "l": "25.0", - "x": 3.3525, - "y": 96.1781 - }, - { - "l": "25.0", - "x": 3.4358, - "y": 96.7635 - }, - { - "l": "25.0", - "x": 3.5192, - "y": 97.3401 - }, - { - "l": "25.0", - "x": 3.6025, - "y": 97.9093 - }, - { - "l": "25.0", - "x": 3.6858, - "y": 98.4702 - }, - { - "l": "25.0", - "x": 3.7692, - "y": 99.0248 - }, - { - "l": "25.0", - "x": 3.8525, - "y": 99.5726 - }, - { - "l": "25.0", - "x": 3.9358, - "y": 100.1155 - }, - { - "l": "25.0", - "x": 4.0, - "y": 100.5313 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 2.0, - "y": 87.1161 - }, - { - "l": "50.0", - "x": 2.0192, - "y": 87.3129 - }, - { - "l": "50.0", - "x": 2.1025, - "y": 88.1658 - }, - { - "l": "50.0", - "x": 2.1858, - "y": 88.9954 - }, - { - "l": "50.0", - "x": 2.2692, - "y": 89.8038 - }, - { - "l": "50.0", - "x": 2.3525, - "y": 90.5912 - }, - { - "l": "50.0", - "x": 2.4358, - "y": 91.3571 - }, - { - "l": "50.0", - "x": 2.5192, - "y": 92.1024 - }, - { - "l": "50.0", - "x": 2.6025, - "y": 92.8284 - }, - { - "l": "50.0", - "x": 2.6858, - "y": 93.5367 - }, - { - "l": "50.0", - "x": 2.7692, - "y": 94.2291 - }, - { - "l": "50.0", - "x": 2.8525, - "y": 94.9084 - }, - { - "l": "50.0", - "x": 2.9358, - "y": 95.5763 - }, - { - "l": "50.0", - "x": 3.0192, - "y": 96.2339 - }, - { - "l": "50.0", - "x": 3.1025, - "y": 96.882 - }, - { - "l": "50.0", - "x": 3.1858, - "y": 97.5211 - }, - { - "l": "50.0", - "x": 3.2692, - "y": 98.1515 - }, - { - "l": "50.0", - "x": 3.3525, - "y": 98.7732 - }, - { - "l": "50.0", - "x": 3.4358, - "y": 99.386 - }, - { - "l": "50.0", - "x": 3.5192, - "y": 99.9895 - }, - { - "l": "50.0", - "x": 3.6025, - "y": 100.5846 - }, - { - "l": "50.0", - "x": 3.6858, - "y": 101.1717 - }, - { - "l": "50.0", - "x": 3.7692, - "y": 101.7513 - }, - { - "l": "50.0", - "x": 3.8525, - "y": 102.3247 - }, - { - "l": "50.0", - "x": 3.9358, - "y": 102.8924 - }, - { - "l": "50.0", - "x": 4.0, - "y": 103.3273 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 2.0, - "y": 89.1529 - }, - { - "l": "75.0", - "x": 2.0192, - "y": 89.359 - }, - { - "l": "75.0", - "x": 2.1025, - "y": 90.2523 - }, - { - "l": "75.0", - "x": 2.1858, - "y": 91.1217 - }, - { - "l": "75.0", - "x": 2.2692, - "y": 91.9695 - }, - { - "l": "75.0", - "x": 2.3525, - "y": 92.7952 - }, - { - "l": "75.0", - "x": 2.4358, - "y": 93.599 - }, - { - "l": "75.0", - "x": 2.5192, - "y": 94.3808 - }, - { - "l": "75.0", - "x": 2.6025, - "y": 95.1427 - }, - { - "l": "75.0", - "x": 2.6858, - "y": 95.8858 - }, - { - "l": "75.0", - "x": 2.7692, - "y": 96.6117 - }, - { - "l": "75.0", - "x": 2.8525, - "y": 97.3239 - }, - { - "l": "75.0", - "x": 2.9358, - "y": 98.0238 - }, - { - "l": "75.0", - "x": 3.0192, - "y": 98.7121 - }, - { - "l": "75.0", - "x": 3.1025, - "y": 99.3905 - }, - { - "l": "75.0", - "x": 3.1858, - "y": 100.0596 - }, - { - "l": "75.0", - "x": 3.2692, - "y": 100.7187 - }, - { - "l": "75.0", - "x": 3.3525, - "y": 101.3683 - }, - { - "l": "75.0", - "x": 3.4358, - "y": 102.0084 - }, - { - "l": "75.0", - "x": 3.5192, - "y": 102.6389 - }, - { - "l": "75.0", - "x": 3.6025, - "y": 103.26 - }, - { - "l": "75.0", - "x": 3.6858, - "y": 103.8732 - }, - { - "l": "75.0", - "x": 3.7692, - "y": 104.4779 - }, - { - "l": "75.0", - "x": 3.8525, - "y": 105.0767 - }, - { - "l": "75.0", - "x": 3.9358, - "y": 105.6693 - }, - { - "l": "75.0", - "x": 4.0, - "y": 106.1233 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 2.0, - "y": 91.1896 - }, - { - "l": "91.0", - "x": 2.0192, - "y": 91.4051 - }, - { - "l": "91.0", - "x": 2.1025, - "y": 92.3388 - }, - { - "l": "91.0", - "x": 2.1858, - "y": 93.2481 - }, - { - "l": "91.0", - "x": 2.2692, - "y": 94.1353 - }, - { - "l": "91.0", - "x": 2.3525, - "y": 94.9992 - }, - { - "l": "91.0", - "x": 2.4358, - "y": 95.8409 - }, - { - "l": "91.0", - "x": 2.5192, - "y": 96.6593 - }, - { - "l": "91.0", - "x": 2.6025, - "y": 97.4569 - }, - { - "l": "91.0", - "x": 2.6858, - "y": 98.2349 - }, - { - "l": "91.0", - "x": 2.7692, - "y": 98.9944 - }, - { - "l": "91.0", - "x": 2.8525, - "y": 99.7394 - }, - { - "l": "91.0", - "x": 2.9358, - "y": 100.4713 - }, - { - "l": "91.0", - "x": 3.0192, - "y": 101.1904 - }, - { - "l": "91.0", - "x": 3.1025, - "y": 101.899 - }, - { - "l": "91.0", - "x": 3.1858, - "y": 102.5981 - }, - { - "l": "91.0", - "x": 3.2692, - "y": 103.2858 - }, - { - "l": "91.0", - "x": 3.3525, - "y": 103.9634 - }, - { - "l": "91.0", - "x": 3.4358, - "y": 104.6309 - }, - { - "l": "91.0", - "x": 3.5192, - "y": 105.2883 - }, - { - "l": "91.0", - "x": 3.6025, - "y": 105.9353 - }, - { - "l": "91.0", - "x": 3.6858, - "y": 106.5747 - }, - { - "l": "91.0", - "x": 3.7692, - "y": 107.2044 - }, - { - "l": "91.0", - "x": 3.8525, - "y": 107.8287 - }, - { - "l": "91.0", - "x": 3.9358, - "y": 108.4461 - }, - { - "l": "91.0", - "x": 4.0, - "y": 108.9194 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 2.0, - "y": 93.2264 - }, - { - "l": "98.0", - "x": 2.0192, - "y": 93.4511 - }, - { - "l": "98.0", - "x": 2.1025, - "y": 94.4254 - }, - { - "l": "98.0", - "x": 2.1858, - "y": 95.3744 - }, - { - "l": "98.0", - "x": 2.2692, - "y": 96.301 - }, - { - "l": "98.0", - "x": 2.3525, - "y": 97.2033 - }, - { - "l": "98.0", - "x": 2.4358, - "y": 98.0828 - }, - { - "l": "98.0", - "x": 2.5192, - "y": 98.9377 - }, - { - "l": "98.0", - "x": 2.6025, - "y": 99.7712 - }, - { - "l": "98.0", - "x": 2.6858, - "y": 100.584 - }, - { - "l": "98.0", - "x": 2.7692, - "y": 101.377 - }, - { - "l": "98.0", - "x": 2.8525, - "y": 102.1549 - }, - { - "l": "98.0", - "x": 2.9358, - "y": 102.9188 - }, - { - "l": "98.0", - "x": 3.0192, - "y": 103.6687 - }, - { - "l": "98.0", - "x": 3.1025, - "y": 104.4076 - }, - { - "l": "98.0", - "x": 3.1858, - "y": 105.1366 - }, - { - "l": "98.0", - "x": 3.2692, - "y": 105.8529 - }, - { - "l": "98.0", - "x": 3.3525, - "y": 106.5584 - }, - { - "l": "98.0", - "x": 3.4358, - "y": 107.2533 - }, - { - "l": "98.0", - "x": 3.5192, - "y": 107.9377 - }, - { - "l": "98.0", - "x": 3.6025, - "y": 108.6107 - }, - { - "l": "98.0", - "x": 3.6858, - "y": 109.2761 - }, - { - "l": "98.0", - "x": 3.7692, - "y": 109.931 - }, - { - "l": "98.0", - "x": 3.8525, - "y": 110.5808 - }, - { - "l": "98.0", - "x": 3.9358, - "y": 111.223 - }, - { - "l": "98.0", - "x": 4.0, - "y": 111.7154 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 2.0, - "y": 95.2632 - }, - { - "l": "99.6", - "x": 2.0192, - "y": 95.4972 - }, - { - "l": "99.6", - "x": 2.1025, - "y": 96.5119 - }, - { - "l": "99.6", - "x": 2.1858, - "y": 97.5007 - }, - { - "l": "99.6", - "x": 2.2692, - "y": 98.4668 - }, - { - "l": "99.6", - "x": 2.3525, - "y": 99.4073 - }, - { - "l": "99.6", - "x": 2.4358, - "y": 100.3248 - }, - { - "l": "99.6", - "x": 2.5192, - "y": 101.2162 - }, - { - "l": "99.6", - "x": 2.6025, - "y": 102.0854 - }, - { - "l": "99.6", - "x": 2.6858, - "y": 102.933 - }, - { - "l": "99.6", - "x": 2.7692, - "y": 103.7597 - }, - { - "l": "99.6", - "x": 2.8525, - "y": 104.5704 - }, - { - "l": "99.6", - "x": 2.9358, - "y": 105.3663 - }, - { - "l": "99.6", - "x": 3.0192, - "y": 106.1469 - }, - { - "l": "99.6", - "x": 3.1025, - "y": 106.9161 - }, - { - "l": "99.6", - "x": 3.1858, - "y": 107.675 - }, - { - "l": "99.6", - "x": 3.2692, - "y": 108.4201 - }, - { - "l": "99.6", - "x": 3.3525, - "y": 109.1535 - }, - { - "l": "99.6", - "x": 3.4358, - "y": 109.8758 - }, - { - "l": "99.6", - "x": 3.5192, - "y": 110.5871 - }, - { - "l": "99.6", - "x": 3.6025, - "y": 111.286 - }, - { - "l": "99.6", - "x": 3.6858, - "y": 111.9776 - }, - { - "l": "99.6", - "x": 3.7692, - "y": 112.6575 - }, - { - "l": "99.6", - "x": 3.8525, - "y": 113.3328 - }, - { - "l": "99.6", - "x": 3.9358, - "y": 113.9999 - }, - { - "l": "99.6", - "x": 4.0, - "y": 114.5114 - } - ] - } - ], - "weight": null, - "ofc": null, - "bmi": null - }, - "female": null - } - }, - { - "uk90_child": { - "male": { - "height": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 4.0, - "y": 91.5359 - }, - { - "l": "0.4", - "x": 4.0833, - "y": 92.0092 - }, - { - "l": "0.4", - "x": 4.1667, - "y": 92.4939 - }, - { - "l": "0.4", - "x": 4.25, - "y": 92.9781 - }, - { - "l": "0.4", - "x": 4.3333, - "y": 93.462 - }, - { - "l": "0.4", - "x": 4.4167, - "y": 93.9662 - }, - { - "l": "0.4", - "x": 4.5, - "y": 94.4729 - }, - { - "l": "0.4", - "x": 4.5833, - "y": 94.9763 - }, - { - "l": "0.4", - "x": 4.6667, - "y": 95.4941 - }, - { - "l": "0.4", - "x": 4.75, - "y": 96.0026 - }, - { - "l": "0.4", - "x": 4.8333, - "y": 96.5138 - }, - { - "l": "0.4", - "x": 4.9167, - "y": 97.0247 - }, - { - "l": "0.4", - "x": 5.0, - "y": 97.5176 - }, - { - "l": "0.4", - "x": 5.0833, - "y": 98.0071 - }, - { - "l": "0.4", - "x": 5.1667, - "y": 98.4936 - }, - { - "l": "0.4", - "x": 5.25, - "y": 98.968 - }, - { - "l": "0.4", - "x": 5.3333, - "y": 99.4215 - }, - { - "l": "0.4", - "x": 5.4167, - "y": 99.8866 - }, - { - "l": "0.4", - "x": 5.5, - "y": 100.3339 - }, - { - "l": "0.4", - "x": 5.5833, - "y": 100.7721 - }, - { - "l": "0.4", - "x": 5.6667, - "y": 101.2222 - }, - { - "l": "0.4", - "x": 5.75, - "y": 101.6632 - }, - { - "l": "0.4", - "x": 5.8333, - "y": 102.1041 - }, - { - "l": "0.4", - "x": 5.9167, - "y": 102.5449 - }, - { - "l": "0.4", - "x": 6.0, - "y": 102.9768 - }, - { - "l": "0.4", - "x": 6.0833, - "y": 103.4205 - }, - { - "l": "0.4", - "x": 6.1667, - "y": 103.8521 - }, - { - "l": "0.4", - "x": 6.25, - "y": 104.2867 - }, - { - "l": "0.4", - "x": 6.3333, - "y": 104.7213 - }, - { - "l": "0.4", - "x": 6.4167, - "y": 105.1469 - }, - { - "l": "0.4", - "x": 6.5, - "y": 105.5813 - }, - { - "l": "0.4", - "x": 6.5833, - "y": 106.0067 - }, - { - "l": "0.4", - "x": 6.6667, - "y": 106.4289 - }, - { - "l": "0.4", - "x": 6.75, - "y": 106.8631 - }, - { - "l": "0.4", - "x": 6.8333, - "y": 107.285 - }, - { - "l": "0.4", - "x": 6.9167, - "y": 107.7158 - }, - { - "l": "0.4", - "x": 7.0, - "y": 108.1464 - }, - { - "l": "0.4", - "x": 7.0833, - "y": 108.5737 - }, - { - "l": "0.4", - "x": 7.1667, - "y": 109.0041 - }, - { - "l": "0.4", - "x": 7.25, - "y": 109.4311 - }, - { - "l": "0.4", - "x": 7.3333, - "y": 109.8613 - }, - { - "l": "0.4", - "x": 7.4167, - "y": 110.2881 - }, - { - "l": "0.4", - "x": 7.5, - "y": 110.7147 - }, - { - "l": "0.4", - "x": 7.5833, - "y": 111.1445 - }, - { - "l": "0.4", - "x": 7.6667, - "y": 111.5654 - }, - { - "l": "0.4", - "x": 7.75, - "y": 111.9917 - }, - { - "l": "0.4", - "x": 7.8333, - "y": 112.4034 - }, - { - "l": "0.4", - "x": 7.9167, - "y": 112.824 - }, - { - "l": "0.4", - "x": 8.0, - "y": 113.2444 - }, - { - "l": "0.4", - "x": 8.0833, - "y": 113.6525 - }, - { - "l": "0.4", - "x": 8.1667, - "y": 114.055 - }, - { - "l": "0.4", - "x": 8.25, - "y": 114.4574 - }, - { - "l": "0.4", - "x": 8.3333, - "y": 114.8562 - }, - { - "l": "0.4", - "x": 8.4167, - "y": 115.2372 - }, - { - "l": "0.4", - "x": 8.5, - "y": 115.6181 - }, - { - "l": "0.4", - "x": 8.5833, - "y": 115.9954 - }, - { - "l": "0.4", - "x": 8.6667, - "y": 116.3726 - }, - { - "l": "0.4", - "x": 8.75, - "y": 116.7319 - }, - { - "l": "0.4", - "x": 8.8333, - "y": 117.0963 - }, - { - "l": "0.4", - "x": 8.9167, - "y": 117.4518 - }, - { - "l": "0.4", - "x": 9.0, - "y": 117.816 - }, - { - "l": "0.4", - "x": 9.0833, - "y": 118.1675 - }, - { - "l": "0.4", - "x": 9.1667, - "y": 118.5189 - }, - { - "l": "0.4", - "x": 9.25, - "y": 118.8666 - }, - { - "l": "0.4", - "x": 9.3333, - "y": 119.2088 - }, - { - "l": "0.4", - "x": 9.4167, - "y": 119.5524 - }, - { - "l": "0.4", - "x": 9.5, - "y": 119.8906 - }, - { - "l": "0.4", - "x": 9.5833, - "y": 120.2249 - }, - { - "l": "0.4", - "x": 9.6667, - "y": 120.559 - }, - { - "l": "0.4", - "x": 9.75, - "y": 120.893 - }, - { - "l": "0.4", - "x": 9.8333, - "y": 121.2318 - }, - { - "l": "0.4", - "x": 9.9167, - "y": 121.5667 - }, - { - "l": "0.4", - "x": 10.0, - "y": 121.9013 - }, - { - "l": "0.4", - "x": 10.0833, - "y": 122.2356 - }, - { - "l": "0.4", - "x": 10.1667, - "y": 122.5748 - }, - { - "l": "0.4", - "x": 10.25, - "y": 122.9048 - }, - { - "l": "0.4", - "x": 10.3333, - "y": 123.2309 - }, - { - "l": "0.4", - "x": 10.4167, - "y": 123.5478 - }, - { - "l": "0.4", - "x": 10.5, - "y": 123.8644 - }, - { - "l": "0.4", - "x": 10.5833, - "y": 124.1719 - }, - { - "l": "0.4", - "x": 10.6667, - "y": 124.4753 - }, - { - "l": "0.4", - "x": 10.75, - "y": 124.7696 - }, - { - "l": "0.4", - "x": 10.8333, - "y": 125.0636 - }, - { - "l": "0.4", - "x": 10.9167, - "y": 125.3534 - }, - { - "l": "0.4", - "x": 11.0, - "y": 125.638 - }, - { - "l": "0.4", - "x": 11.0833, - "y": 125.9272 - }, - { - "l": "0.4", - "x": 11.1667, - "y": 126.2073 - }, - { - "l": "0.4", - "x": 11.25, - "y": 126.4832 - }, - { - "l": "0.4", - "x": 11.3333, - "y": 126.7675 - }, - { - "l": "0.4", - "x": 11.4167, - "y": 127.0427 - }, - { - "l": "0.4", - "x": 11.5, - "y": 127.335 - }, - { - "l": "0.4", - "x": 11.5833, - "y": 127.6269 - }, - { - "l": "0.4", - "x": 11.6667, - "y": 127.9194 - }, - { - "l": "0.4", - "x": 11.75, - "y": 128.2328 - }, - { - "l": "0.4", - "x": 11.8333, - "y": 128.5458 - }, - { - "l": "0.4", - "x": 11.9167, - "y": 128.8631 - }, - { - "l": "0.4", - "x": 12.0, - "y": 129.18 - }, - { - "l": "0.4", - "x": 12.0833, - "y": 129.5099 - }, - { - "l": "0.4", - "x": 12.1667, - "y": 129.8519 - }, - { - "l": "0.4", - "x": 12.25, - "y": 130.2109 - }, - { - "l": "0.4", - "x": 12.3333, - "y": 130.5653 - }, - { - "l": "0.4", - "x": 12.4167, - "y": 130.9406 - }, - { - "l": "0.4", - "x": 12.5, - "y": 131.3153 - }, - { - "l": "0.4", - "x": 12.5833, - "y": 131.7069 - }, - { - "l": "0.4", - "x": 12.6667, - "y": 132.1106 - }, - { - "l": "0.4", - "x": 12.75, - "y": 132.5225 - }, - { - "l": "0.4", - "x": 12.8333, - "y": 132.9511 - }, - { - "l": "0.4", - "x": 12.9167, - "y": 133.3961 - }, - { - "l": "0.4", - "x": 13.0, - "y": 133.8534 - }, - { - "l": "0.4", - "x": 13.0833, - "y": 134.3188 - }, - { - "l": "0.4", - "x": 13.1667, - "y": 134.8048 - }, - { - "l": "0.4", - "x": 13.25, - "y": 135.2991 - }, - { - "l": "0.4", - "x": 13.3333, - "y": 135.8142 - }, - { - "l": "0.4", - "x": 13.4167, - "y": 136.3374 - }, - { - "l": "0.4", - "x": 13.5, - "y": 136.8646 - }, - { - "l": "0.4", - "x": 13.5833, - "y": 137.4129 - }, - { - "l": "0.4", - "x": 13.6667, - "y": 137.9611 - }, - { - "l": "0.4", - "x": 13.75, - "y": 138.5134 - }, - { - "l": "0.4", - "x": 13.8333, - "y": 139.0873 - }, - { - "l": "0.4", - "x": 13.9167, - "y": 139.6571 - }, - { - "l": "0.4", - "x": 14.0, - "y": 140.2357 - }, - { - "l": "0.4", - "x": 14.0833, - "y": 140.8148 - }, - { - "l": "0.4", - "x": 14.1667, - "y": 141.4073 - }, - { - "l": "0.4", - "x": 14.25, - "y": 141.9961 - }, - { - "l": "0.4", - "x": 14.3333, - "y": 142.5856 - }, - { - "l": "0.4", - "x": 14.4167, - "y": 143.1846 - }, - { - "l": "0.4", - "x": 14.5, - "y": 143.7715 - }, - { - "l": "0.4", - "x": 14.5833, - "y": 144.368 - }, - { - "l": "0.4", - "x": 14.6667, - "y": 144.9569 - }, - { - "l": "0.4", - "x": 14.75, - "y": 145.5424 - }, - { - "l": "0.4", - "x": 14.8333, - "y": 146.1247 - }, - { - "l": "0.4", - "x": 14.9167, - "y": 146.6992 - }, - { - "l": "0.4", - "x": 15.0, - "y": 147.2661 - }, - { - "l": "0.4", - "x": 15.0833, - "y": 147.8252 - }, - { - "l": "0.4", - "x": 15.1667, - "y": 148.3722 - }, - { - "l": "0.4", - "x": 15.25, - "y": 148.9071 - }, - { - "l": "0.4", - "x": 15.3333, - "y": 149.4341 - }, - { - "l": "0.4", - "x": 15.4167, - "y": 149.9398 - }, - { - "l": "0.4", - "x": 15.5, - "y": 150.4287 - }, - { - "l": "0.4", - "x": 15.5833, - "y": 150.9095 - }, - { - "l": "0.4", - "x": 15.6667, - "y": 151.3822 - }, - { - "l": "0.4", - "x": 15.75, - "y": 151.8376 - }, - { - "l": "0.4", - "x": 15.8333, - "y": 152.2672 - }, - { - "l": "0.4", - "x": 15.9167, - "y": 152.6927 - }, - { - "l": "0.4", - "x": 16.0, - "y": 153.0964 - }, - { - "l": "0.4", - "x": 16.0833, - "y": 153.4784 - }, - { - "l": "0.4", - "x": 16.1667, - "y": 153.8562 - }, - { - "l": "0.4", - "x": 16.25, - "y": 154.2074 - }, - { - "l": "0.4", - "x": 16.3333, - "y": 154.5454 - }, - { - "l": "0.4", - "x": 16.4167, - "y": 154.8661 - }, - { - "l": "0.4", - "x": 16.5, - "y": 155.1731 - }, - { - "l": "0.4", - "x": 16.5833, - "y": 155.4626 - }, - { - "l": "0.4", - "x": 16.6667, - "y": 155.7388 - }, - { - "l": "0.4", - "x": 16.75, - "y": 155.997 - }, - { - "l": "0.4", - "x": 16.8333, - "y": 156.2508 - }, - { - "l": "0.4", - "x": 16.9167, - "y": 156.4869 - }, - { - "l": "0.4", - "x": 17.0, - "y": 156.7048 - }, - { - "l": "0.4", - "x": 17.0833, - "y": 156.9183 - }, - { - "l": "0.4", - "x": 17.1667, - "y": 157.1182 - }, - { - "l": "0.4", - "x": 17.25, - "y": 157.3005 - }, - { - "l": "0.4", - "x": 17.3333, - "y": 157.4734 - }, - { - "l": "0.4", - "x": 17.4167, - "y": 157.6417 - }, - { - "l": "0.4", - "x": 17.5, - "y": 157.7875 - }, - { - "l": "0.4", - "x": 17.5833, - "y": 157.9197 - }, - { - "l": "0.4", - "x": 17.6667, - "y": 158.0473 - }, - { - "l": "0.4", - "x": 17.75, - "y": 158.1476 - }, - { - "l": "0.4", - "x": 17.8333, - "y": 158.2479 - }, - { - "l": "0.4", - "x": 17.9167, - "y": 158.3257 - }, - { - "l": "0.4", - "x": 18.0, - "y": 158.3987 - }, - { - "l": "0.4", - "x": 18.0833, - "y": 158.4581 - }, - { - "l": "0.4", - "x": 18.1667, - "y": 158.5175 - }, - { - "l": "0.4", - "x": 18.25, - "y": 158.5586 - }, - { - "l": "0.4", - "x": 18.3333, - "y": 158.5996 - }, - { - "l": "0.4", - "x": 18.4167, - "y": 158.6269 - }, - { - "l": "0.4", - "x": 18.5, - "y": 158.6453 - }, - { - "l": "0.4", - "x": 18.5833, - "y": 158.659 - }, - { - "l": "0.4", - "x": 18.6667, - "y": 158.6637 - }, - { - "l": "0.4", - "x": 18.75, - "y": 158.6727 - }, - { - "l": "0.4", - "x": 18.8333, - "y": 158.6727 - }, - { - "l": "0.4", - "x": 18.9167, - "y": 158.6727 - }, - { - "l": "0.4", - "x": 19.0, - "y": 158.6774 - }, - { - "l": "0.4", - "x": 19.0833, - "y": 158.6864 - }, - { - "l": "0.4", - "x": 19.1667, - "y": 158.6911 - }, - { - "l": "0.4", - "x": 19.25, - "y": 158.6911 - }, - { - "l": "0.4", - "x": 19.3333, - "y": 158.7 - }, - { - "l": "0.4", - "x": 19.4167, - "y": 158.7 - }, - { - "l": "0.4", - "x": 19.5, - "y": 158.7 - }, - { - "l": "0.4", - "x": 19.5833, - "y": 158.7048 - }, - { - "l": "0.4", - "x": 19.6667, - "y": 158.7048 - }, - { - "l": "0.4", - "x": 19.75, - "y": 158.7185 - }, - { - "l": "0.4", - "x": 19.8333, - "y": 158.7321 - }, - { - "l": "0.4", - "x": 19.9167, - "y": 158.7458 - }, - { - "l": "0.4", - "x": 20.0, - "y": 158.7595 - }, - { - "l": "0.4", - "x": 20.0, - "y": 158.7595 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 4.0, - "y": 94.2744 - }, - { - "l": "2.0", - "x": 4.0833, - "y": 94.7719 - }, - { - "l": "2.0", - "x": 4.1667, - "y": 95.2804 - }, - { - "l": "2.0", - "x": 4.25, - "y": 95.7886 - }, - { - "l": "2.0", - "x": 4.3333, - "y": 96.2965 - }, - { - "l": "2.0", - "x": 4.4167, - "y": 96.8247 - }, - { - "l": "2.0", - "x": 4.5, - "y": 97.3546 - }, - { - "l": "2.0", - "x": 4.5833, - "y": 97.8823 - }, - { - "l": "2.0", - "x": 4.6667, - "y": 98.4231 - }, - { - "l": "2.0", - "x": 4.75, - "y": 98.9545 - }, - { - "l": "2.0", - "x": 4.8333, - "y": 99.4879 - }, - { - "l": "2.0", - "x": 4.9167, - "y": 100.021 - }, - { - "l": "2.0", - "x": 5.0, - "y": 100.5357 - }, - { - "l": "2.0", - "x": 5.0833, - "y": 101.0454 - }, - { - "l": "2.0", - "x": 5.1667, - "y": 101.5527 - }, - { - "l": "2.0", - "x": 5.25, - "y": 102.046 - }, - { - "l": "2.0", - "x": 5.3333, - "y": 102.5186 - }, - { - "l": "2.0", - "x": 5.4167, - "y": 103.0025 - }, - { - "l": "2.0", - "x": 5.5, - "y": 103.4679 - }, - { - "l": "2.0", - "x": 5.5833, - "y": 103.9241 - }, - { - "l": "2.0", - "x": 5.6667, - "y": 104.3916 - }, - { - "l": "2.0", - "x": 5.75, - "y": 104.8499 - }, - { - "l": "2.0", - "x": 5.8333, - "y": 105.3081 - }, - { - "l": "2.0", - "x": 5.9167, - "y": 105.7662 - }, - { - "l": "2.0", - "x": 6.0, - "y": 106.2151 - }, - { - "l": "2.0", - "x": 6.0833, - "y": 106.6753 - }, - { - "l": "2.0", - "x": 6.1667, - "y": 107.1241 - }, - { - "l": "2.0", - "x": 6.25, - "y": 107.575 - }, - { - "l": "2.0", - "x": 6.3333, - "y": 108.026 - }, - { - "l": "2.0", - "x": 6.4167, - "y": 108.4677 - }, - { - "l": "2.0", - "x": 6.5, - "y": 108.9185 - }, - { - "l": "2.0", - "x": 6.5833, - "y": 109.3601 - }, - { - "l": "2.0", - "x": 6.6667, - "y": 109.7992 - }, - { - "l": "2.0", - "x": 6.75, - "y": 110.2498 - }, - { - "l": "2.0", - "x": 6.8333, - "y": 110.6888 - }, - { - "l": "2.0", - "x": 6.9167, - "y": 111.1368 - }, - { - "l": "2.0", - "x": 7.0, - "y": 111.5848 - }, - { - "l": "2.0", - "x": 7.0833, - "y": 112.0303 - }, - { - "l": "2.0", - "x": 7.1667, - "y": 112.4781 - }, - { - "l": "2.0", - "x": 7.25, - "y": 112.9233 - }, - { - "l": "2.0", - "x": 7.3333, - "y": 113.371 - }, - { - "l": "2.0", - "x": 7.4167, - "y": 113.816 - }, - { - "l": "2.0", - "x": 7.5, - "y": 114.261 - }, - { - "l": "2.0", - "x": 7.5833, - "y": 114.7084 - }, - { - "l": "2.0", - "x": 7.6667, - "y": 115.1465 - }, - { - "l": "2.0", - "x": 7.75, - "y": 115.5912 - }, - { - "l": "2.0", - "x": 7.8333, - "y": 116.0201 - }, - { - "l": "2.0", - "x": 7.9167, - "y": 116.458 - }, - { - "l": "2.0", - "x": 8.0, - "y": 116.8958 - }, - { - "l": "2.0", - "x": 8.0833, - "y": 117.3219 - }, - { - "l": "2.0", - "x": 8.1667, - "y": 117.7412 - }, - { - "l": "2.0", - "x": 8.25, - "y": 118.1605 - }, - { - "l": "2.0", - "x": 8.3333, - "y": 118.5772 - }, - { - "l": "2.0", - "x": 8.4167, - "y": 118.9754 - }, - { - "l": "2.0", - "x": 8.5, - "y": 119.3736 - }, - { - "l": "2.0", - "x": 8.5833, - "y": 119.7691 - }, - { - "l": "2.0", - "x": 8.6667, - "y": 120.1644 - }, - { - "l": "2.0", - "x": 8.75, - "y": 120.5414 - }, - { - "l": "2.0", - "x": 8.8333, - "y": 120.9248 - }, - { - "l": "2.0", - "x": 8.9167, - "y": 121.2989 - }, - { - "l": "2.0", - "x": 9.0, - "y": 121.682 - }, - { - "l": "2.0", - "x": 9.0833, - "y": 122.0532 - }, - { - "l": "2.0", - "x": 9.1667, - "y": 122.4242 - }, - { - "l": "2.0", - "x": 9.25, - "y": 122.7924 - }, - { - "l": "2.0", - "x": 9.3333, - "y": 123.1541 - }, - { - "l": "2.0", - "x": 9.4167, - "y": 123.5193 - }, - { - "l": "2.0", - "x": 9.5, - "y": 123.8779 - }, - { - "l": "2.0", - "x": 9.5833, - "y": 124.2337 - }, - { - "l": "2.0", - "x": 9.6667, - "y": 124.5893 - }, - { - "l": "2.0", - "x": 9.75, - "y": 124.9447 - }, - { - "l": "2.0", - "x": 9.8333, - "y": 125.3063 - }, - { - "l": "2.0", - "x": 9.9167, - "y": 125.665 - }, - { - "l": "2.0", - "x": 10.0, - "y": 126.0235 - }, - { - "l": "2.0", - "x": 10.0833, - "y": 126.3817 - }, - { - "l": "2.0", - "x": 10.1667, - "y": 126.7461 - }, - { - "l": "2.0", - "x": 10.25, - "y": 127.1011 - }, - { - "l": "2.0", - "x": 10.3333, - "y": 127.4532 - }, - { - "l": "2.0", - "x": 10.4167, - "y": 127.7958 - }, - { - "l": "2.0", - "x": 10.5, - "y": 128.1383 - }, - { - "l": "2.0", - "x": 10.5833, - "y": 128.4714 - }, - { - "l": "2.0", - "x": 10.6667, - "y": 128.8015 - }, - { - "l": "2.0", - "x": 10.75, - "y": 129.1222 - }, - { - "l": "2.0", - "x": 10.8333, - "y": 129.4427 - }, - { - "l": "2.0", - "x": 10.9167, - "y": 129.7601 - }, - { - "l": "2.0", - "x": 11.0, - "y": 130.071 - }, - { - "l": "2.0", - "x": 11.0833, - "y": 130.3879 - }, - { - "l": "2.0", - "x": 11.1667, - "y": 130.6955 - }, - { - "l": "2.0", - "x": 11.25, - "y": 130.9999 - }, - { - "l": "2.0", - "x": 11.3333, - "y": 131.3131 - }, - { - "l": "2.0", - "x": 11.4167, - "y": 131.617 - }, - { - "l": "2.0", - "x": 11.5, - "y": 131.9387 - }, - { - "l": "2.0", - "x": 11.5833, - "y": 132.2602 - }, - { - "l": "2.0", - "x": 11.6667, - "y": 132.5845 - }, - { - "l": "2.0", - "x": 11.75, - "y": 132.9296 - }, - { - "l": "2.0", - "x": 11.8333, - "y": 133.2743 - }, - { - "l": "2.0", - "x": 11.9167, - "y": 133.6249 - }, - { - "l": "2.0", - "x": 12.0, - "y": 133.975 - }, - { - "l": "2.0", - "x": 12.0833, - "y": 134.3399 - }, - { - "l": "2.0", - "x": 12.1667, - "y": 134.7164 - }, - { - "l": "2.0", - "x": 12.25, - "y": 135.1106 - }, - { - "l": "2.0", - "x": 12.3333, - "y": 135.5015 - }, - { - "l": "2.0", - "x": 12.4167, - "y": 135.9129 - }, - { - "l": "2.0", - "x": 12.5, - "y": 136.324 - }, - { - "l": "2.0", - "x": 12.5833, - "y": 136.7526 - }, - { - "l": "2.0", - "x": 12.6667, - "y": 137.193 - }, - { - "l": "2.0", - "x": 12.75, - "y": 137.6419 - }, - { - "l": "2.0", - "x": 12.8333, - "y": 138.1084 - }, - { - "l": "2.0", - "x": 12.9167, - "y": 138.5896 - }, - { - "l": "2.0", - "x": 13.0, - "y": 139.0825 - }, - { - "l": "2.0", - "x": 13.0833, - "y": 139.5841 - }, - { - "l": "2.0", - "x": 13.1667, - "y": 140.1036 - }, - { - "l": "2.0", - "x": 13.25, - "y": 140.6318 - }, - { - "l": "2.0", - "x": 13.3333, - "y": 141.1781 - }, - { - "l": "2.0", - "x": 13.4167, - "y": 141.7305 - }, - { - "l": "2.0", - "x": 13.5, - "y": 142.2859 - }, - { - "l": "2.0", - "x": 13.5833, - "y": 142.8597 - }, - { - "l": "2.0", - "x": 13.6667, - "y": 143.4308 - }, - { - "l": "2.0", - "x": 13.75, - "y": 144.0026 - }, - { - "l": "2.0", - "x": 13.8333, - "y": 144.593 - }, - { - "l": "2.0", - "x": 13.9167, - "y": 145.1778 - }, - { - "l": "2.0", - "x": 14.0, - "y": 145.7668 - }, - { - "l": "2.0", - "x": 14.0833, - "y": 146.3536 - }, - { - "l": "2.0", - "x": 14.1667, - "y": 146.9505 - }, - { - "l": "2.0", - "x": 14.25, - "y": 147.5396 - }, - { - "l": "2.0", - "x": 14.3333, - "y": 148.1267 - }, - { - "l": "2.0", - "x": 14.4167, - "y": 148.7209 - }, - { - "l": "2.0", - "x": 14.5, - "y": 149.2986 - }, - { - "l": "2.0", - "x": 14.5833, - "y": 149.8835 - }, - { - "l": "2.0", - "x": 14.6667, - "y": 150.4577 - }, - { - "l": "2.0", - "x": 14.75, - "y": 151.0268 - }, - { - "l": "2.0", - "x": 14.8333, - "y": 151.5885 - }, - { - "l": "2.0", - "x": 14.9167, - "y": 152.1419 - }, - { - "l": "2.0", - "x": 15.0, - "y": 152.6846 - }, - { - "l": "2.0", - "x": 15.0833, - "y": 153.2189 - }, - { - "l": "2.0", - "x": 15.1667, - "y": 153.7392 - }, - { - "l": "2.0", - "x": 15.25, - "y": 154.2453 - }, - { - "l": "2.0", - "x": 15.3333, - "y": 154.7431 - }, - { - "l": "2.0", - "x": 15.4167, - "y": 155.2198 - }, - { - "l": "2.0", - "x": 15.5, - "y": 155.679 - }, - { - "l": "2.0", - "x": 15.5833, - "y": 156.1296 - }, - { - "l": "2.0", - "x": 15.6667, - "y": 156.5717 - }, - { - "l": "2.0", - "x": 15.75, - "y": 156.9982 - }, - { - "l": "2.0", - "x": 15.8333, - "y": 157.3979 - }, - { - "l": "2.0", - "x": 15.9167, - "y": 157.7945 - }, - { - "l": "2.0", - "x": 16.0, - "y": 158.1698 - }, - { - "l": "2.0", - "x": 16.0833, - "y": 158.5238 - }, - { - "l": "2.0", - "x": 16.1667, - "y": 158.8746 - }, - { - "l": "2.0", - "x": 16.25, - "y": 159.2005 - }, - { - "l": "2.0", - "x": 16.3333, - "y": 159.5141 - }, - { - "l": "2.0", - "x": 16.4167, - "y": 159.8096 - }, - { - "l": "2.0", - "x": 16.5, - "y": 160.0948 - }, - { - "l": "2.0", - "x": 16.5833, - "y": 160.362 - }, - { - "l": "2.0", - "x": 16.6667, - "y": 160.6166 - }, - { - "l": "2.0", - "x": 16.75, - "y": 160.8553 - }, - { - "l": "2.0", - "x": 16.8333, - "y": 161.0906 - }, - { - "l": "2.0", - "x": 16.9167, - "y": 161.3076 - }, - { - "l": "2.0", - "x": 17.0, - "y": 161.5086 - }, - { - "l": "2.0", - "x": 17.0833, - "y": 161.7062 - }, - { - "l": "2.0", - "x": 17.1667, - "y": 161.8912 - }, - { - "l": "2.0", - "x": 17.25, - "y": 162.0578 - }, - { - "l": "2.0", - "x": 17.3333, - "y": 162.2175 - }, - { - "l": "2.0", - "x": 17.4167, - "y": 162.3738 - }, - { - "l": "2.0", - "x": 17.5, - "y": 162.5081 - }, - { - "l": "2.0", - "x": 17.5833, - "y": 162.6298 - }, - { - "l": "2.0", - "x": 17.6667, - "y": 162.748 - }, - { - "l": "2.0", - "x": 17.75, - "y": 162.8407 - }, - { - "l": "2.0", - "x": 17.8333, - "y": 162.9335 - }, - { - "l": "2.0", - "x": 17.9167, - "y": 163.0043 - }, - { - "l": "2.0", - "x": 18.0, - "y": 163.0716 - }, - { - "l": "2.0", - "x": 18.0833, - "y": 163.1261 - }, - { - "l": "2.0", - "x": 18.1667, - "y": 163.1807 - }, - { - "l": "2.0", - "x": 18.25, - "y": 163.2189 - }, - { - "l": "2.0", - "x": 18.3333, - "y": 163.2572 - }, - { - "l": "2.0", - "x": 18.4167, - "y": 163.2827 - }, - { - "l": "2.0", - "x": 18.5, - "y": 163.299 - }, - { - "l": "2.0", - "x": 18.5833, - "y": 163.3118 - }, - { - "l": "2.0", - "x": 18.6667, - "y": 163.3153 - }, - { - "l": "2.0", - "x": 18.75, - "y": 163.3245 - }, - { - "l": "2.0", - "x": 18.8333, - "y": 163.3245 - }, - { - "l": "2.0", - "x": 18.9167, - "y": 163.3245 - }, - { - "l": "2.0", - "x": 19.0, - "y": 163.3281 - }, - { - "l": "2.0", - "x": 19.0833, - "y": 163.3373 - }, - { - "l": "2.0", - "x": 19.1667, - "y": 163.3408 - }, - { - "l": "2.0", - "x": 19.25, - "y": 163.3408 - }, - { - "l": "2.0", - "x": 19.3333, - "y": 163.35 - }, - { - "l": "2.0", - "x": 19.4167, - "y": 163.35 - }, - { - "l": "2.0", - "x": 19.5, - "y": 163.35 - }, - { - "l": "2.0", - "x": 19.5833, - "y": 163.3536 - }, - { - "l": "2.0", - "x": 19.6667, - "y": 163.3536 - }, - { - "l": "2.0", - "x": 19.75, - "y": 163.3663 - }, - { - "l": "2.0", - "x": 19.8333, - "y": 163.3791 - }, - { - "l": "2.0", - "x": 19.9167, - "y": 163.3919 - }, - { - "l": "2.0", - "x": 20.0, - "y": 163.4046 - }, - { - "l": "2.0", - "x": 20.0, - "y": 163.4046 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 4.0, - "y": 97.0129 - }, - { - "l": "9.0", - "x": 4.0833, - "y": 97.5346 - }, - { - "l": "9.0", - "x": 4.1667, - "y": 98.0669 - }, - { - "l": "9.0", - "x": 4.25, - "y": 98.5991 - }, - { - "l": "9.0", - "x": 4.3333, - "y": 99.131 - }, - { - "l": "9.0", - "x": 4.4167, - "y": 99.6831 - }, - { - "l": "9.0", - "x": 4.5, - "y": 100.2364 - }, - { - "l": "9.0", - "x": 4.5833, - "y": 100.7882 - }, - { - "l": "9.0", - "x": 4.6667, - "y": 101.352 - }, - { - "l": "9.0", - "x": 4.75, - "y": 101.9063 - }, - { - "l": "9.0", - "x": 4.8333, - "y": 102.4619 - }, - { - "l": "9.0", - "x": 4.9167, - "y": 103.0174 - }, - { - "l": "9.0", - "x": 5.0, - "y": 103.5538 - }, - { - "l": "9.0", - "x": 5.0833, - "y": 104.0836 - }, - { - "l": "9.0", - "x": 5.1667, - "y": 104.6118 - }, - { - "l": "9.0", - "x": 5.25, - "y": 105.124 - }, - { - "l": "9.0", - "x": 5.3333, - "y": 105.6157 - }, - { - "l": "9.0", - "x": 5.4167, - "y": 106.1183 - }, - { - "l": "9.0", - "x": 5.5, - "y": 106.602 - }, - { - "l": "9.0", - "x": 5.5833, - "y": 107.0761 - }, - { - "l": "9.0", - "x": 5.6667, - "y": 107.5611 - }, - { - "l": "9.0", - "x": 5.75, - "y": 108.0366 - }, - { - "l": "9.0", - "x": 5.8333, - "y": 108.5121 - }, - { - "l": "9.0", - "x": 5.9167, - "y": 108.9875 - }, - { - "l": "9.0", - "x": 6.0, - "y": 109.4534 - }, - { - "l": "9.0", - "x": 6.0833, - "y": 109.9302 - }, - { - "l": "9.0", - "x": 6.1667, - "y": 110.396 - }, - { - "l": "9.0", - "x": 6.25, - "y": 110.8634 - }, - { - "l": "9.0", - "x": 6.3333, - "y": 111.3306 - }, - { - "l": "9.0", - "x": 6.4167, - "y": 111.7884 - }, - { - "l": "9.0", - "x": 6.5, - "y": 112.2556 - }, - { - "l": "9.0", - "x": 6.5833, - "y": 112.7134 - }, - { - "l": "9.0", - "x": 6.6667, - "y": 113.1695 - }, - { - "l": "9.0", - "x": 6.75, - "y": 113.6365 - }, - { - "l": "9.0", - "x": 6.8333, - "y": 114.0925 - }, - { - "l": "9.0", - "x": 6.9167, - "y": 114.5579 - }, - { - "l": "9.0", - "x": 7.0, - "y": 115.0232 - }, - { - "l": "9.0", - "x": 7.0833, - "y": 115.4868 - }, - { - "l": "9.0", - "x": 7.1667, - "y": 115.9521 - }, - { - "l": "9.0", - "x": 7.25, - "y": 116.4156 - }, - { - "l": "9.0", - "x": 7.3333, - "y": 116.8807 - }, - { - "l": "9.0", - "x": 7.4167, - "y": 117.344 - }, - { - "l": "9.0", - "x": 7.5, - "y": 117.8073 - }, - { - "l": "9.0", - "x": 7.5833, - "y": 118.2723 - }, - { - "l": "9.0", - "x": 7.6667, - "y": 118.7277 - }, - { - "l": "9.0", - "x": 7.75, - "y": 119.1908 - }, - { - "l": "9.0", - "x": 7.8333, - "y": 119.6367 - }, - { - "l": "9.0", - "x": 7.9167, - "y": 120.092 - }, - { - "l": "9.0", - "x": 8.0, - "y": 120.5472 - }, - { - "l": "9.0", - "x": 8.0833, - "y": 120.9912 - }, - { - "l": "9.0", - "x": 8.1667, - "y": 121.4275 - }, - { - "l": "9.0", - "x": 8.25, - "y": 121.8637 - }, - { - "l": "9.0", - "x": 8.3333, - "y": 122.2981 - }, - { - "l": "9.0", - "x": 8.4167, - "y": 122.7136 - }, - { - "l": "9.0", - "x": 8.5, - "y": 123.1291 - }, - { - "l": "9.0", - "x": 8.5833, - "y": 123.5427 - }, - { - "l": "9.0", - "x": 8.6667, - "y": 123.9563 - }, - { - "l": "9.0", - "x": 8.75, - "y": 124.3509 - }, - { - "l": "9.0", - "x": 8.8333, - "y": 124.7532 - }, - { - "l": "9.0", - "x": 8.9167, - "y": 125.1459 - }, - { - "l": "9.0", - "x": 9.0, - "y": 125.548 - }, - { - "l": "9.0", - "x": 9.0833, - "y": 125.9388 - }, - { - "l": "9.0", - "x": 9.1667, - "y": 126.3295 - }, - { - "l": "9.0", - "x": 9.25, - "y": 126.7183 - }, - { - "l": "9.0", - "x": 9.3333, - "y": 127.0994 - }, - { - "l": "9.0", - "x": 9.4167, - "y": 127.4862 - }, - { - "l": "9.0", - "x": 9.5, - "y": 127.8653 - }, - { - "l": "9.0", - "x": 9.5833, - "y": 128.2425 - }, - { - "l": "9.0", - "x": 9.6667, - "y": 128.6195 - }, - { - "l": "9.0", - "x": 9.75, - "y": 128.9965 - }, - { - "l": "9.0", - "x": 9.8333, - "y": 129.3809 - }, - { - "l": "9.0", - "x": 9.9167, - "y": 129.7633 - }, - { - "l": "9.0", - "x": 10.0, - "y": 130.1456 - }, - { - "l": "9.0", - "x": 10.0833, - "y": 130.5278 - }, - { - "l": "9.0", - "x": 10.1667, - "y": 130.9174 - }, - { - "l": "9.0", - "x": 10.25, - "y": 131.2974 - }, - { - "l": "9.0", - "x": 10.3333, - "y": 131.6754 - }, - { - "l": "9.0", - "x": 10.4167, - "y": 132.0439 - }, - { - "l": "9.0", - "x": 10.5, - "y": 132.4122 - }, - { - "l": "9.0", - "x": 10.5833, - "y": 132.7709 - }, - { - "l": "9.0", - "x": 10.6667, - "y": 133.1276 - }, - { - "l": "9.0", - "x": 10.75, - "y": 133.4748 - }, - { - "l": "9.0", - "x": 10.8333, - "y": 133.8218 - }, - { - "l": "9.0", - "x": 10.9167, - "y": 134.1667 - }, - { - "l": "9.0", - "x": 11.0, - "y": 134.504 - }, - { - "l": "9.0", - "x": 11.0833, - "y": 134.8486 - }, - { - "l": "9.0", - "x": 11.1667, - "y": 135.1836 - }, - { - "l": "9.0", - "x": 11.25, - "y": 135.5166 - }, - { - "l": "9.0", - "x": 11.3333, - "y": 135.8587 - }, - { - "l": "9.0", - "x": 11.4167, - "y": 136.1913 - }, - { - "l": "9.0", - "x": 11.5, - "y": 136.5425 - }, - { - "l": "9.0", - "x": 11.5833, - "y": 136.8935 - }, - { - "l": "9.0", - "x": 11.6667, - "y": 137.2497 - }, - { - "l": "9.0", - "x": 11.75, - "y": 137.6264 - }, - { - "l": "9.0", - "x": 11.8333, - "y": 138.0029 - }, - { - "l": "9.0", - "x": 11.9167, - "y": 138.3866 - }, - { - "l": "9.0", - "x": 12.0, - "y": 138.77 - }, - { - "l": "9.0", - "x": 12.0833, - "y": 139.1699 - }, - { - "l": "9.0", - "x": 12.1667, - "y": 139.581 - }, - { - "l": "9.0", - "x": 12.25, - "y": 140.0104 - }, - { - "l": "9.0", - "x": 12.3333, - "y": 140.4376 - }, - { - "l": "9.0", - "x": 12.4167, - "y": 140.8853 - }, - { - "l": "9.0", - "x": 12.5, - "y": 141.3326 - }, - { - "l": "9.0", - "x": 12.5833, - "y": 141.7984 - }, - { - "l": "9.0", - "x": 12.6667, - "y": 142.2753 - }, - { - "l": "9.0", - "x": 12.75, - "y": 142.7612 - }, - { - "l": "9.0", - "x": 12.8333, - "y": 143.2656 - }, - { - "l": "9.0", - "x": 12.9167, - "y": 143.7831 - }, - { - "l": "9.0", - "x": 13.0, - "y": 144.3117 - }, - { - "l": "9.0", - "x": 13.0833, - "y": 144.8494 - }, - { - "l": "9.0", - "x": 13.1667, - "y": 145.4024 - }, - { - "l": "9.0", - "x": 13.25, - "y": 145.9645 - }, - { - "l": "9.0", - "x": 13.3333, - "y": 146.5421 - }, - { - "l": "9.0", - "x": 13.4167, - "y": 147.1237 - }, - { - "l": "9.0", - "x": 13.5, - "y": 147.7073 - }, - { - "l": "9.0", - "x": 13.5833, - "y": 148.3065 - }, - { - "l": "9.0", - "x": 13.6667, - "y": 148.9006 - }, - { - "l": "9.0", - "x": 13.75, - "y": 149.4917 - }, - { - "l": "9.0", - "x": 13.8333, - "y": 150.0987 - }, - { - "l": "9.0", - "x": 13.9167, - "y": 150.6985 - }, - { - "l": "9.0", - "x": 14.0, - "y": 151.2979 - }, - { - "l": "9.0", - "x": 14.0833, - "y": 151.8924 - }, - { - "l": "9.0", - "x": 14.1667, - "y": 152.4936 - }, - { - "l": "9.0", - "x": 14.25, - "y": 153.0831 - }, - { - "l": "9.0", - "x": 14.3333, - "y": 153.6678 - }, - { - "l": "9.0", - "x": 14.4167, - "y": 154.2573 - }, - { - "l": "9.0", - "x": 14.5, - "y": 154.8258 - }, - { - "l": "9.0", - "x": 14.5833, - "y": 155.399 - }, - { - "l": "9.0", - "x": 14.6667, - "y": 155.9584 - }, - { - "l": "9.0", - "x": 14.75, - "y": 156.5112 - }, - { - "l": "9.0", - "x": 14.8333, - "y": 157.0523 - }, - { - "l": "9.0", - "x": 14.9167, - "y": 157.5846 - }, - { - "l": "9.0", - "x": 15.0, - "y": 158.1031 - }, - { - "l": "9.0", - "x": 15.0833, - "y": 158.6126 - }, - { - "l": "9.0", - "x": 15.1667, - "y": 159.1061 - }, - { - "l": "9.0", - "x": 15.25, - "y": 159.5836 - }, - { - "l": "9.0", - "x": 15.3333, - "y": 160.0521 - }, - { - "l": "9.0", - "x": 15.4167, - "y": 160.4999 - }, - { - "l": "9.0", - "x": 15.5, - "y": 160.9293 - }, - { - "l": "9.0", - "x": 15.5833, - "y": 161.3497 - }, - { - "l": "9.0", - "x": 15.6667, - "y": 161.7611 - }, - { - "l": "9.0", - "x": 15.75, - "y": 162.1588 - }, - { - "l": "9.0", - "x": 15.8333, - "y": 162.5286 - }, - { - "l": "9.0", - "x": 15.9167, - "y": 162.8963 - }, - { - "l": "9.0", - "x": 16.0, - "y": 163.2432 - }, - { - "l": "9.0", - "x": 16.0833, - "y": 163.5692 - }, - { - "l": "9.0", - "x": 16.1667, - "y": 163.8931 - }, - { - "l": "9.0", - "x": 16.25, - "y": 164.1937 - }, - { - "l": "9.0", - "x": 16.3333, - "y": 164.4827 - }, - { - "l": "9.0", - "x": 16.4167, - "y": 164.753 - }, - { - "l": "9.0", - "x": 16.5, - "y": 165.0165 - }, - { - "l": "9.0", - "x": 16.5833, - "y": 165.2613 - }, - { - "l": "9.0", - "x": 16.6667, - "y": 165.4944 - }, - { - "l": "9.0", - "x": 16.75, - "y": 165.7135 - }, - { - "l": "9.0", - "x": 16.8333, - "y": 165.9304 - }, - { - "l": "9.0", - "x": 16.9167, - "y": 166.1284 - }, - { - "l": "9.0", - "x": 17.0, - "y": 166.3124 - }, - { - "l": "9.0", - "x": 17.0833, - "y": 166.4941 - }, - { - "l": "9.0", - "x": 17.1667, - "y": 166.6641 - }, - { - "l": "9.0", - "x": 17.25, - "y": 166.8152 - }, - { - "l": "9.0", - "x": 17.3333, - "y": 166.9617 - }, - { - "l": "9.0", - "x": 17.4167, - "y": 167.1058 - }, - { - "l": "9.0", - "x": 17.5, - "y": 167.2288 - }, - { - "l": "9.0", - "x": 17.5833, - "y": 167.3399 - }, - { - "l": "9.0", - "x": 17.6667, - "y": 167.4487 - }, - { - "l": "9.0", - "x": 17.75, - "y": 167.5338 - }, - { - "l": "9.0", - "x": 17.8333, - "y": 167.619 - }, - { - "l": "9.0", - "x": 17.9167, - "y": 167.6828 - }, - { - "l": "9.0", - "x": 18.0, - "y": 167.7444 - }, - { - "l": "9.0", - "x": 18.0833, - "y": 167.7941 - }, - { - "l": "9.0", - "x": 18.1667, - "y": 167.8438 - }, - { - "l": "9.0", - "x": 18.25, - "y": 167.8793 - }, - { - "l": "9.0", - "x": 18.3333, - "y": 167.9148 - }, - { - "l": "9.0", - "x": 18.4167, - "y": 167.9385 - }, - { - "l": "9.0", - "x": 18.5, - "y": 167.9527 - }, - { - "l": "9.0", - "x": 18.5833, - "y": 167.9645 - }, - { - "l": "9.0", - "x": 18.6667, - "y": 167.9669 - }, - { - "l": "9.0", - "x": 18.75, - "y": 167.9763 - }, - { - "l": "9.0", - "x": 18.8333, - "y": 167.9763 - }, - { - "l": "9.0", - "x": 18.9167, - "y": 167.9763 - }, - { - "l": "9.0", - "x": 19.0, - "y": 167.9787 - }, - { - "l": "9.0", - "x": 19.0833, - "y": 167.9882 - }, - { - "l": "9.0", - "x": 19.1667, - "y": 167.9905 - }, - { - "l": "9.0", - "x": 19.25, - "y": 167.9905 - }, - { - "l": "9.0", - "x": 19.3333, - "y": 168.0 - }, - { - "l": "9.0", - "x": 19.4167, - "y": 168.0 - }, - { - "l": "9.0", - "x": 19.5, - "y": 168.0 - }, - { - "l": "9.0", - "x": 19.5833, - "y": 168.0024 - }, - { - "l": "9.0", - "x": 19.6667, - "y": 168.0024 - }, - { - "l": "9.0", - "x": 19.75, - "y": 168.0142 - }, - { - "l": "9.0", - "x": 19.8333, - "y": 168.0261 - }, - { - "l": "9.0", - "x": 19.9167, - "y": 168.0379 - }, - { - "l": "9.0", - "x": 20.0, - "y": 168.0497 - }, - { - "l": "9.0", - "x": 20.0, - "y": 168.0497 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 4.0, - "y": 99.7515 - }, - { - "l": "25.0", - "x": 4.0833, - "y": 100.2973 - }, - { - "l": "25.0", - "x": 4.1667, - "y": 100.8535 - }, - { - "l": "25.0", - "x": 4.25, - "y": 101.4095 - }, - { - "l": "25.0", - "x": 4.3333, - "y": 101.9655 - }, - { - "l": "25.0", - "x": 4.4167, - "y": 102.5416 - }, - { - "l": "25.0", - "x": 4.5, - "y": 103.1182 - }, - { - "l": "25.0", - "x": 4.5833, - "y": 103.6941 - }, - { - "l": "25.0", - "x": 4.6667, - "y": 104.281 - }, - { - "l": "25.0", - "x": 4.75, - "y": 104.8582 - }, - { - "l": "25.0", - "x": 4.8333, - "y": 105.436 - }, - { - "l": "25.0", - "x": 4.9167, - "y": 106.0137 - }, - { - "l": "25.0", - "x": 5.0, - "y": 106.5719 - }, - { - "l": "25.0", - "x": 5.0833, - "y": 107.1218 - }, - { - "l": "25.0", - "x": 5.1667, - "y": 107.6709 - }, - { - "l": "25.0", - "x": 5.25, - "y": 108.202 - }, - { - "l": "25.0", - "x": 5.3333, - "y": 108.7129 - }, - { - "l": "25.0", - "x": 5.4167, - "y": 109.2342 - }, - { - "l": "25.0", - "x": 5.5, - "y": 109.736 - }, - { - "l": "25.0", - "x": 5.5833, - "y": 110.228 - }, - { - "l": "25.0", - "x": 5.6667, - "y": 110.7305 - }, - { - "l": "25.0", - "x": 5.75, - "y": 111.2233 - }, - { - "l": "25.0", - "x": 5.8333, - "y": 111.716 - }, - { - "l": "25.0", - "x": 5.9167, - "y": 112.2087 - }, - { - "l": "25.0", - "x": 6.0, - "y": 112.6917 - }, - { - "l": "25.0", - "x": 6.0833, - "y": 113.1851 - }, - { - "l": "25.0", - "x": 6.1667, - "y": 113.668 - }, - { - "l": "25.0", - "x": 6.25, - "y": 114.1517 - }, - { - "l": "25.0", - "x": 6.3333, - "y": 114.6353 - }, - { - "l": "25.0", - "x": 6.4167, - "y": 115.1092 - }, - { - "l": "25.0", - "x": 6.5, - "y": 115.5928 - }, - { - "l": "25.0", - "x": 6.5833, - "y": 116.0667 - }, - { - "l": "25.0", - "x": 6.6667, - "y": 116.5397 - }, - { - "l": "25.0", - "x": 6.75, - "y": 117.0233 - }, - { - "l": "25.0", - "x": 6.8333, - "y": 117.4963 - }, - { - "l": "25.0", - "x": 6.9167, - "y": 117.9789 - }, - { - "l": "25.0", - "x": 7.0, - "y": 118.4616 - }, - { - "l": "25.0", - "x": 7.0833, - "y": 118.9434 - }, - { - "l": "25.0", - "x": 7.1667, - "y": 119.426 - }, - { - "l": "25.0", - "x": 7.25, - "y": 119.9078 - }, - { - "l": "25.0", - "x": 7.3333, - "y": 120.3903 - }, - { - "l": "25.0", - "x": 7.4167, - "y": 120.872 - }, - { - "l": "25.0", - "x": 7.5, - "y": 121.3537 - }, - { - "l": "25.0", - "x": 7.5833, - "y": 121.8361 - }, - { - "l": "25.0", - "x": 7.6667, - "y": 122.3088 - }, - { - "l": "25.0", - "x": 7.75, - "y": 122.7904 - }, - { - "l": "25.0", - "x": 7.8333, - "y": 123.2534 - }, - { - "l": "25.0", - "x": 7.9167, - "y": 123.726 - }, - { - "l": "25.0", - "x": 8.0, - "y": 124.1986 - }, - { - "l": "25.0", - "x": 8.0833, - "y": 124.6606 - }, - { - "l": "25.0", - "x": 8.1667, - "y": 125.1137 - }, - { - "l": "25.0", - "x": 8.25, - "y": 125.5668 - }, - { - "l": "25.0", - "x": 8.3333, - "y": 126.0191 - }, - { - "l": "25.0", - "x": 8.4167, - "y": 126.4518 - }, - { - "l": "25.0", - "x": 8.5, - "y": 126.8845 - }, - { - "l": "25.0", - "x": 8.5833, - "y": 127.3164 - }, - { - "l": "25.0", - "x": 8.6667, - "y": 127.7481 - }, - { - "l": "25.0", - "x": 8.75, - "y": 128.1605 - }, - { - "l": "25.0", - "x": 8.8333, - "y": 128.5816 - }, - { - "l": "25.0", - "x": 8.9167, - "y": 128.993 - }, - { - "l": "25.0", - "x": 9.0, - "y": 129.414 - }, - { - "l": "25.0", - "x": 9.0833, - "y": 129.8244 - }, - { - "l": "25.0", - "x": 9.1667, - "y": 130.2347 - }, - { - "l": "25.0", - "x": 9.25, - "y": 130.6441 - }, - { - "l": "25.0", - "x": 9.3333, - "y": 131.0447 - }, - { - "l": "25.0", - "x": 9.4167, - "y": 131.4531 - }, - { - "l": "25.0", - "x": 9.5, - "y": 131.8526 - }, - { - "l": "25.0", - "x": 9.5833, - "y": 132.2512 - }, - { - "l": "25.0", - "x": 9.6667, - "y": 132.6498 - }, - { - "l": "25.0", - "x": 9.75, - "y": 133.0482 - }, - { - "l": "25.0", - "x": 9.8333, - "y": 133.4554 - }, - { - "l": "25.0", - "x": 9.9167, - "y": 133.8617 - }, - { - "l": "25.0", - "x": 10.0, - "y": 134.2678 - }, - { - "l": "25.0", - "x": 10.0833, - "y": 134.6739 - }, - { - "l": "25.0", - "x": 10.1667, - "y": 135.0887 - }, - { - "l": "25.0", - "x": 10.25, - "y": 135.4937 - }, - { - "l": "25.0", - "x": 10.3333, - "y": 135.8977 - }, - { - "l": "25.0", - "x": 10.4167, - "y": 136.2919 - }, - { - "l": "25.0", - "x": 10.5, - "y": 136.6861 - }, - { - "l": "25.0", - "x": 10.5833, - "y": 137.0705 - }, - { - "l": "25.0", - "x": 10.6667, - "y": 137.4538 - }, - { - "l": "25.0", - "x": 10.75, - "y": 137.8274 - }, - { - "l": "25.0", - "x": 10.8333, - "y": 138.2009 - }, - { - "l": "25.0", - "x": 10.9167, - "y": 138.5734 - }, - { - "l": "25.0", - "x": 11.0, - "y": 138.937 - }, - { - "l": "25.0", - "x": 11.0833, - "y": 139.3093 - }, - { - "l": "25.0", - "x": 11.1667, - "y": 139.6718 - }, - { - "l": "25.0", - "x": 11.25, - "y": 140.0333 - }, - { - "l": "25.0", - "x": 11.3333, - "y": 140.4044 - }, - { - "l": "25.0", - "x": 11.4167, - "y": 140.7657 - }, - { - "l": "25.0", - "x": 11.5, - "y": 141.1462 - }, - { - "l": "25.0", - "x": 11.5833, - "y": 141.5267 - }, - { - "l": "25.0", - "x": 11.6667, - "y": 141.9148 - }, - { - "l": "25.0", - "x": 11.75, - "y": 142.3232 - }, - { - "l": "25.0", - "x": 11.8333, - "y": 142.7314 - }, - { - "l": "25.0", - "x": 11.9167, - "y": 143.1483 - }, - { - "l": "25.0", - "x": 12.0, - "y": 143.565 - }, - { - "l": "25.0", - "x": 12.0833, - "y": 144.0 - }, - { - "l": "25.0", - "x": 12.1667, - "y": 144.4455 - }, - { - "l": "25.0", - "x": 12.25, - "y": 144.9102 - }, - { - "l": "25.0", - "x": 12.3333, - "y": 145.3738 - }, - { - "l": "25.0", - "x": 12.4167, - "y": 145.8576 - }, - { - "l": "25.0", - "x": 12.5, - "y": 146.3413 - }, - { - "l": "25.0", - "x": 12.5833, - "y": 146.8442 - }, - { - "l": "25.0", - "x": 12.6667, - "y": 147.3577 - }, - { - "l": "25.0", - "x": 12.75, - "y": 147.8806 - }, - { - "l": "25.0", - "x": 12.8333, - "y": 148.4228 - }, - { - "l": "25.0", - "x": 12.9167, - "y": 148.9765 - }, - { - "l": "25.0", - "x": 13.0, - "y": 149.5408 - }, - { - "l": "25.0", - "x": 13.0833, - "y": 150.1147 - }, - { - "l": "25.0", - "x": 13.1667, - "y": 150.7012 - }, - { - "l": "25.0", - "x": 13.25, - "y": 151.2973 - }, - { - "l": "25.0", - "x": 13.3333, - "y": 151.906 - }, - { - "l": "25.0", - "x": 13.4167, - "y": 152.5168 - }, - { - "l": "25.0", - "x": 13.5, - "y": 153.1286 - }, - { - "l": "25.0", - "x": 13.5833, - "y": 153.7532 - }, - { - "l": "25.0", - "x": 13.6667, - "y": 154.3703 - }, - { - "l": "25.0", - "x": 13.75, - "y": 154.9809 - }, - { - "l": "25.0", - "x": 13.8333, - "y": 155.6043 - }, - { - "l": "25.0", - "x": 13.9167, - "y": 156.2193 - }, - { - "l": "25.0", - "x": 14.0, - "y": 156.8289 - }, - { - "l": "25.0", - "x": 14.0833, - "y": 157.4312 - }, - { - "l": "25.0", - "x": 14.1667, - "y": 158.0368 - }, - { - "l": "25.0", - "x": 14.25, - "y": 158.6265 - }, - { - "l": "25.0", - "x": 14.3333, - "y": 159.2089 - }, - { - "l": "25.0", - "x": 14.4167, - "y": 159.7936 - }, - { - "l": "25.0", - "x": 14.5, - "y": 160.3529 - }, - { - "l": "25.0", - "x": 14.5833, - "y": 160.9145 - }, - { - "l": "25.0", - "x": 14.6667, - "y": 161.4592 - }, - { - "l": "25.0", - "x": 14.75, - "y": 161.9956 - }, - { - "l": "25.0", - "x": 14.8333, - "y": 162.5162 - }, - { - "l": "25.0", - "x": 14.9167, - "y": 163.0273 - }, - { - "l": "25.0", - "x": 15.0, - "y": 163.5215 - }, - { - "l": "25.0", - "x": 15.0833, - "y": 164.0063 - }, - { - "l": "25.0", - "x": 15.1667, - "y": 164.4731 - }, - { - "l": "25.0", - "x": 15.25, - "y": 164.9218 - }, - { - "l": "25.0", - "x": 15.3333, - "y": 165.361 - }, - { - "l": "25.0", - "x": 15.4167, - "y": 165.7799 - }, - { - "l": "25.0", - "x": 15.5, - "y": 166.1797 - }, - { - "l": "25.0", - "x": 15.5833, - "y": 166.5699 - }, - { - "l": "25.0", - "x": 15.6667, - "y": 166.9506 - }, - { - "l": "25.0", - "x": 15.75, - "y": 167.3194 - }, - { - "l": "25.0", - "x": 15.8333, - "y": 167.6593 - }, - { - "l": "25.0", - "x": 15.9167, - "y": 167.9982 - }, - { - "l": "25.0", - "x": 16.0, - "y": 168.3166 - }, - { - "l": "25.0", - "x": 16.0833, - "y": 168.6146 - }, - { - "l": "25.0", - "x": 16.1667, - "y": 168.9115 - }, - { - "l": "25.0", - "x": 16.25, - "y": 169.1868 - }, - { - "l": "25.0", - "x": 16.3333, - "y": 169.4514 - }, - { - "l": "25.0", - "x": 16.4167, - "y": 169.6965 - }, - { - "l": "25.0", - "x": 16.5, - "y": 169.9383 - }, - { - "l": "25.0", - "x": 16.5833, - "y": 170.1607 - }, - { - "l": "25.0", - "x": 16.6667, - "y": 170.3722 - }, - { - "l": "25.0", - "x": 16.75, - "y": 170.5718 - }, - { - "l": "25.0", - "x": 16.8333, - "y": 170.7702 - }, - { - "l": "25.0", - "x": 16.9167, - "y": 170.9492 - }, - { - "l": "25.0", - "x": 17.0, - "y": 171.1162 - }, - { - "l": "25.0", - "x": 17.0833, - "y": 171.2821 - }, - { - "l": "25.0", - "x": 17.1667, - "y": 171.4371 - }, - { - "l": "25.0", - "x": 17.25, - "y": 171.5726 - }, - { - "l": "25.0", - "x": 17.3333, - "y": 171.7058 - }, - { - "l": "25.0", - "x": 17.4167, - "y": 171.8379 - }, - { - "l": "25.0", - "x": 17.5, - "y": 171.9494 - }, - { - "l": "25.0", - "x": 17.5833, - "y": 172.0499 - }, - { - "l": "25.0", - "x": 17.6667, - "y": 172.1493 - }, - { - "l": "25.0", - "x": 17.75, - "y": 172.2269 - }, - { - "l": "25.0", - "x": 17.8333, - "y": 172.3045 - }, - { - "l": "25.0", - "x": 17.9167, - "y": 172.3614 - }, - { - "l": "25.0", - "x": 18.0, - "y": 172.4172 - }, - { - "l": "25.0", - "x": 18.0833, - "y": 172.462 - }, - { - "l": "25.0", - "x": 18.1667, - "y": 172.5069 - }, - { - "l": "25.0", - "x": 18.25, - "y": 172.5396 - }, - { - "l": "25.0", - "x": 18.3333, - "y": 172.5724 - }, - { - "l": "25.0", - "x": 18.4167, - "y": 172.5942 - }, - { - "l": "25.0", - "x": 18.5, - "y": 172.6063 - }, - { - "l": "25.0", - "x": 18.5833, - "y": 172.6173 - }, - { - "l": "25.0", - "x": 18.6667, - "y": 172.6184 - }, - { - "l": "25.0", - "x": 18.75, - "y": 172.6282 - }, - { - "l": "25.0", - "x": 18.8333, - "y": 172.6282 - }, - { - "l": "25.0", - "x": 18.9167, - "y": 172.6282 - }, - { - "l": "25.0", - "x": 19.0, - "y": 172.6294 - }, - { - "l": "25.0", - "x": 19.0833, - "y": 172.6391 - }, - { - "l": "25.0", - "x": 19.1667, - "y": 172.6403 - }, - { - "l": "25.0", - "x": 19.25, - "y": 172.6403 - }, - { - "l": "25.0", - "x": 19.3333, - "y": 172.65 - }, - { - "l": "25.0", - "x": 19.4167, - "y": 172.65 - }, - { - "l": "25.0", - "x": 19.5, - "y": 172.65 - }, - { - "l": "25.0", - "x": 19.5833, - "y": 172.6512 - }, - { - "l": "25.0", - "x": 19.6667, - "y": 172.6512 - }, - { - "l": "25.0", - "x": 19.75, - "y": 172.6621 - }, - { - "l": "25.0", - "x": 19.8333, - "y": 172.673 - }, - { - "l": "25.0", - "x": 19.9167, - "y": 172.684 - }, - { - "l": "25.0", - "x": 20.0, - "y": 172.6949 - }, - { - "l": "25.0", - "x": 20.0, - "y": 172.6949 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 4.0, - "y": 102.49 - }, - { - "l": "50.0", - "x": 4.0833, - "y": 103.06 - }, - { - "l": "50.0", - "x": 4.1667, - "y": 103.64 - }, - { - "l": "50.0", - "x": 4.25, - "y": 104.22 - }, - { - "l": "50.0", - "x": 4.3333, - "y": 104.8 - }, - { - "l": "50.0", - "x": 4.4167, - "y": 105.4 - }, - { - "l": "50.0", - "x": 4.5, - "y": 106.0 - }, - { - "l": "50.0", - "x": 4.5833, - "y": 106.6 - }, - { - "l": "50.0", - "x": 4.6667, - "y": 107.21 - }, - { - "l": "50.0", - "x": 4.75, - "y": 107.81 - }, - { - "l": "50.0", - "x": 4.8333, - "y": 108.41 - }, - { - "l": "50.0", - "x": 4.9167, - "y": 109.01 - }, - { - "l": "50.0", - "x": 5.0, - "y": 109.59 - }, - { - "l": "50.0", - "x": 5.0833, - "y": 110.16 - }, - { - "l": "50.0", - "x": 5.1667, - "y": 110.73 - }, - { - "l": "50.0", - "x": 5.25, - "y": 111.28 - }, - { - "l": "50.0", - "x": 5.3333, - "y": 111.81 - }, - { - "l": "50.0", - "x": 5.4167, - "y": 112.35 - }, - { - "l": "50.0", - "x": 5.5, - "y": 112.87 - }, - { - "l": "50.0", - "x": 5.5833, - "y": 113.38 - }, - { - "l": "50.0", - "x": 5.6667, - "y": 113.9 - }, - { - "l": "50.0", - "x": 5.75, - "y": 114.41 - }, - { - "l": "50.0", - "x": 5.8333, - "y": 114.92 - }, - { - "l": "50.0", - "x": 5.9167, - "y": 115.43 - }, - { - "l": "50.0", - "x": 6.0, - "y": 115.93 - }, - { - "l": "50.0", - "x": 6.0833, - "y": 116.44 - }, - { - "l": "50.0", - "x": 6.1667, - "y": 116.94 - }, - { - "l": "50.0", - "x": 6.25, - "y": 117.44 - }, - { - "l": "50.0", - "x": 6.3333, - "y": 117.94 - }, - { - "l": "50.0", - "x": 6.4167, - "y": 118.43 - }, - { - "l": "50.0", - "x": 6.5, - "y": 118.93 - }, - { - "l": "50.0", - "x": 6.5833, - "y": 119.42 - }, - { - "l": "50.0", - "x": 6.6667, - "y": 119.91 - }, - { - "l": "50.0", - "x": 6.75, - "y": 120.41 - }, - { - "l": "50.0", - "x": 6.8333, - "y": 120.9 - }, - { - "l": "50.0", - "x": 6.9167, - "y": 121.4 - }, - { - "l": "50.0", - "x": 7.0, - "y": 121.9 - }, - { - "l": "50.0", - "x": 7.0833, - "y": 122.4 - }, - { - "l": "50.0", - "x": 7.1667, - "y": 122.9 - }, - { - "l": "50.0", - "x": 7.25, - "y": 123.4 - }, - { - "l": "50.0", - "x": 7.3333, - "y": 123.9 - }, - { - "l": "50.0", - "x": 7.4167, - "y": 124.4 - }, - { - "l": "50.0", - "x": 7.5, - "y": 124.9 - }, - { - "l": "50.0", - "x": 7.5833, - "y": 125.4 - }, - { - "l": "50.0", - "x": 7.6667, - "y": 125.89 - }, - { - "l": "50.0", - "x": 7.75, - "y": 126.39 - }, - { - "l": "50.0", - "x": 7.8333, - "y": 126.87 - }, - { - "l": "50.0", - "x": 7.9167, - "y": 127.36 - }, - { - "l": "50.0", - "x": 8.0, - "y": 127.85 - }, - { - "l": "50.0", - "x": 8.0833, - "y": 128.33 - }, - { - "l": "50.0", - "x": 8.1667, - "y": 128.8 - }, - { - "l": "50.0", - "x": 8.25, - "y": 129.27 - }, - { - "l": "50.0", - "x": 8.3333, - "y": 129.74 - }, - { - "l": "50.0", - "x": 8.4167, - "y": 130.19 - }, - { - "l": "50.0", - "x": 8.5, - "y": 130.64 - }, - { - "l": "50.0", - "x": 8.5833, - "y": 131.09 - }, - { - "l": "50.0", - "x": 8.6667, - "y": 131.54 - }, - { - "l": "50.0", - "x": 8.75, - "y": 131.97 - }, - { - "l": "50.0", - "x": 8.8333, - "y": 132.41 - }, - { - "l": "50.0", - "x": 8.9167, - "y": 132.84 - }, - { - "l": "50.0", - "x": 9.0, - "y": 133.28 - }, - { - "l": "50.0", - "x": 9.0833, - "y": 133.71 - }, - { - "l": "50.0", - "x": 9.1667, - "y": 134.14 - }, - { - "l": "50.0", - "x": 9.25, - "y": 134.57 - }, - { - "l": "50.0", - "x": 9.3333, - "y": 134.99 - }, - { - "l": "50.0", - "x": 9.4167, - "y": 135.42 - }, - { - "l": "50.0", - "x": 9.5, - "y": 135.84 - }, - { - "l": "50.0", - "x": 9.5833, - "y": 136.26 - }, - { - "l": "50.0", - "x": 9.6667, - "y": 136.68 - }, - { - "l": "50.0", - "x": 9.75, - "y": 137.1 - }, - { - "l": "50.0", - "x": 9.8333, - "y": 137.53 - }, - { - "l": "50.0", - "x": 9.9167, - "y": 137.96 - }, - { - "l": "50.0", - "x": 10.0, - "y": 138.39 - }, - { - "l": "50.0", - "x": 10.0833, - "y": 138.82 - }, - { - "l": "50.0", - "x": 10.1667, - "y": 139.26 - }, - { - "l": "50.0", - "x": 10.25, - "y": 139.69 - }, - { - "l": "50.0", - "x": 10.3333, - "y": 140.12 - }, - { - "l": "50.0", - "x": 10.4167, - "y": 140.54 - }, - { - "l": "50.0", - "x": 10.5, - "y": 140.96 - }, - { - "l": "50.0", - "x": 10.5833, - "y": 141.37 - }, - { - "l": "50.0", - "x": 10.6667, - "y": 141.78 - }, - { - "l": "50.0", - "x": 10.75, - "y": 142.18 - }, - { - "l": "50.0", - "x": 10.8333, - "y": 142.58 - }, - { - "l": "50.0", - "x": 10.9167, - "y": 142.98 - }, - { - "l": "50.0", - "x": 11.0, - "y": 143.37 - }, - { - "l": "50.0", - "x": 11.0833, - "y": 143.77 - }, - { - "l": "50.0", - "x": 11.1667, - "y": 144.16 - }, - { - "l": "50.0", - "x": 11.25, - "y": 144.55 - }, - { - "l": "50.0", - "x": 11.3333, - "y": 144.95 - }, - { - "l": "50.0", - "x": 11.4167, - "y": 145.34 - }, - { - "l": "50.0", - "x": 11.5, - "y": 145.75 - }, - { - "l": "50.0", - "x": 11.5833, - "y": 146.16 - }, - { - "l": "50.0", - "x": 11.6667, - "y": 146.58 - }, - { - "l": "50.0", - "x": 11.75, - "y": 147.02 - }, - { - "l": "50.0", - "x": 11.8333, - "y": 147.46 - }, - { - "l": "50.0", - "x": 11.9167, - "y": 147.91 - }, - { - "l": "50.0", - "x": 12.0, - "y": 148.36 - }, - { - "l": "50.0", - "x": 12.0833, - "y": 148.83 - }, - { - "l": "50.0", - "x": 12.1667, - "y": 149.31 - }, - { - "l": "50.0", - "x": 12.25, - "y": 149.81 - }, - { - "l": "50.0", - "x": 12.3333, - "y": 150.31 - }, - { - "l": "50.0", - "x": 12.4167, - "y": 150.83 - }, - { - "l": "50.0", - "x": 12.5, - "y": 151.35 - }, - { - "l": "50.0", - "x": 12.5833, - "y": 151.89 - }, - { - "l": "50.0", - "x": 12.6667, - "y": 152.44 - }, - { - "l": "50.0", - "x": 12.75, - "y": 153.0 - }, - { - "l": "50.0", - "x": 12.8333, - "y": 153.58 - }, - { - "l": "50.0", - "x": 12.9167, - "y": 154.17 - }, - { - "l": "50.0", - "x": 13.0, - "y": 154.77 - }, - { - "l": "50.0", - "x": 13.0833, - "y": 155.38 - }, - { - "l": "50.0", - "x": 13.1667, - "y": 156.0 - }, - { - "l": "50.0", - "x": 13.25, - "y": 156.63 - }, - { - "l": "50.0", - "x": 13.3333, - "y": 157.27 - }, - { - "l": "50.0", - "x": 13.4167, - "y": 157.91 - }, - { - "l": "50.0", - "x": 13.5, - "y": 158.55 - }, - { - "l": "50.0", - "x": 13.5833, - "y": 159.2 - }, - { - "l": "50.0", - "x": 13.6667, - "y": 159.84 - }, - { - "l": "50.0", - "x": 13.75, - "y": 160.47 - }, - { - "l": "50.0", - "x": 13.8333, - "y": 161.11 - }, - { - "l": "50.0", - "x": 13.9167, - "y": 161.74 - }, - { - "l": "50.0", - "x": 14.0, - "y": 162.36 - }, - { - "l": "50.0", - "x": 14.0833, - "y": 162.97 - }, - { - "l": "50.0", - "x": 14.1667, - "y": 163.58 - }, - { - "l": "50.0", - "x": 14.25, - "y": 164.17 - }, - { - "l": "50.0", - "x": 14.3333, - "y": 164.75 - }, - { - "l": "50.0", - "x": 14.4167, - "y": 165.33 - }, - { - "l": "50.0", - "x": 14.5, - "y": 165.88 - }, - { - "l": "50.0", - "x": 14.5833, - "y": 166.43 - }, - { - "l": "50.0", - "x": 14.6667, - "y": 166.96 - }, - { - "l": "50.0", - "x": 14.75, - "y": 167.48 - }, - { - "l": "50.0", - "x": 14.8333, - "y": 167.98 - }, - { - "l": "50.0", - "x": 14.9167, - "y": 168.47 - }, - { - "l": "50.0", - "x": 15.0, - "y": 168.94 - }, - { - "l": "50.0", - "x": 15.0833, - "y": 169.4 - }, - { - "l": "50.0", - "x": 15.1667, - "y": 169.84 - }, - { - "l": "50.0", - "x": 15.25, - "y": 170.26 - }, - { - "l": "50.0", - "x": 15.3333, - "y": 170.67 - }, - { - "l": "50.0", - "x": 15.4167, - "y": 171.06 - }, - { - "l": "50.0", - "x": 15.5, - "y": 171.43 - }, - { - "l": "50.0", - "x": 15.5833, - "y": 171.79 - }, - { - "l": "50.0", - "x": 15.6667, - "y": 172.14 - }, - { - "l": "50.0", - "x": 15.75, - "y": 172.48 - }, - { - "l": "50.0", - "x": 15.8333, - "y": 172.79 - }, - { - "l": "50.0", - "x": 15.9167, - "y": 173.1 - }, - { - "l": "50.0", - "x": 16.0, - "y": 173.39 - }, - { - "l": "50.0", - "x": 16.0833, - "y": 173.66 - }, - { - "l": "50.0", - "x": 16.1667, - "y": 173.93 - }, - { - "l": "50.0", - "x": 16.25, - "y": 174.18 - }, - { - "l": "50.0", - "x": 16.3333, - "y": 174.42 - }, - { - "l": "50.0", - "x": 16.4167, - "y": 174.64 - }, - { - "l": "50.0", - "x": 16.5, - "y": 174.86 - }, - { - "l": "50.0", - "x": 16.5833, - "y": 175.06 - }, - { - "l": "50.0", - "x": 16.6667, - "y": 175.25 - }, - { - "l": "50.0", - "x": 16.75, - "y": 175.43 - }, - { - "l": "50.0", - "x": 16.8333, - "y": 175.61 - }, - { - "l": "50.0", - "x": 16.9167, - "y": 175.77 - }, - { - "l": "50.0", - "x": 17.0, - "y": 175.92 - }, - { - "l": "50.0", - "x": 17.0833, - "y": 176.07 - }, - { - "l": "50.0", - "x": 17.1667, - "y": 176.21 - }, - { - "l": "50.0", - "x": 17.25, - "y": 176.33 - }, - { - "l": "50.0", - "x": 17.3333, - "y": 176.45 - }, - { - "l": "50.0", - "x": 17.4167, - "y": 176.57 - }, - { - "l": "50.0", - "x": 17.5, - "y": 176.67 - }, - { - "l": "50.0", - "x": 17.5833, - "y": 176.76 - }, - { - "l": "50.0", - "x": 17.6667, - "y": 176.85 - }, - { - "l": "50.0", - "x": 17.75, - "y": 176.92 - }, - { - "l": "50.0", - "x": 17.8333, - "y": 176.99 - }, - { - "l": "50.0", - "x": 17.9167, - "y": 177.04 - }, - { - "l": "50.0", - "x": 18.0, - "y": 177.09 - }, - { - "l": "50.0", - "x": 18.0833, - "y": 177.13 - }, - { - "l": "50.0", - "x": 18.1667, - "y": 177.17 - }, - { - "l": "50.0", - "x": 18.25, - "y": 177.2 - }, - { - "l": "50.0", - "x": 18.3333, - "y": 177.23 - }, - { - "l": "50.0", - "x": 18.4167, - "y": 177.25 - }, - { - "l": "50.0", - "x": 18.5, - "y": 177.26 - }, - { - "l": "50.0", - "x": 18.5833, - "y": 177.27 - }, - { - "l": "50.0", - "x": 18.6667, - "y": 177.27 - }, - { - "l": "50.0", - "x": 18.75, - "y": 177.28 - }, - { - "l": "50.0", - "x": 18.8333, - "y": 177.28 - }, - { - "l": "50.0", - "x": 18.9167, - "y": 177.28 - }, - { - "l": "50.0", - "x": 19.0, - "y": 177.28 - }, - { - "l": "50.0", - "x": 19.0833, - "y": 177.29 - }, - { - "l": "50.0", - "x": 19.1667, - "y": 177.29 - }, - { - "l": "50.0", - "x": 19.25, - "y": 177.29 - }, - { - "l": "50.0", - "x": 19.3333, - "y": 177.3 - }, - { - "l": "50.0", - "x": 19.4167, - "y": 177.3 - }, - { - "l": "50.0", - "x": 19.5, - "y": 177.3 - }, - { - "l": "50.0", - "x": 19.5833, - "y": 177.3 - }, - { - "l": "50.0", - "x": 19.6667, - "y": 177.3 - }, - { - "l": "50.0", - "x": 19.75, - "y": 177.31 - }, - { - "l": "50.0", - "x": 19.8333, - "y": 177.32 - }, - { - "l": "50.0", - "x": 19.9167, - "y": 177.33 - }, - { - "l": "50.0", - "x": 20.0, - "y": 177.34 - }, - { - "l": "50.0", - "x": 20.0, - "y": 177.34 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 4.0, - "y": 105.2285 - }, - { - "l": "75.0", - "x": 4.0833, - "y": 105.8227 - }, - { - "l": "75.0", - "x": 4.1667, - "y": 106.4265 - }, - { - "l": "75.0", - "x": 4.25, - "y": 107.0305 - }, - { - "l": "75.0", - "x": 4.3333, - "y": 107.6345 - }, - { - "l": "75.0", - "x": 4.4167, - "y": 108.2584 - }, - { - "l": "75.0", - "x": 4.5, - "y": 108.8818 - }, - { - "l": "75.0", - "x": 4.5833, - "y": 109.5059 - }, - { - "l": "75.0", - "x": 4.6667, - "y": 110.139 - }, - { - "l": "75.0", - "x": 4.75, - "y": 110.7618 - }, - { - "l": "75.0", - "x": 4.8333, - "y": 111.384 - }, - { - "l": "75.0", - "x": 4.9167, - "y": 112.0063 - }, - { - "l": "75.0", - "x": 5.0, - "y": 112.6081 - }, - { - "l": "75.0", - "x": 5.0833, - "y": 113.1982 - }, - { - "l": "75.0", - "x": 5.1667, - "y": 113.7891 - }, - { - "l": "75.0", - "x": 5.25, - "y": 114.358 - }, - { - "l": "75.0", - "x": 5.3333, - "y": 114.9071 - }, - { - "l": "75.0", - "x": 5.4167, - "y": 115.4658 - }, - { - "l": "75.0", - "x": 5.5, - "y": 116.004 - }, - { - "l": "75.0", - "x": 5.5833, - "y": 116.532 - }, - { - "l": "75.0", - "x": 5.6667, - "y": 117.0695 - }, - { - "l": "75.0", - "x": 5.75, - "y": 117.5967 - }, - { - "l": "75.0", - "x": 5.8333, - "y": 118.124 - }, - { - "l": "75.0", - "x": 5.9167, - "y": 118.6513 - }, - { - "l": "75.0", - "x": 6.0, - "y": 119.1683 - }, - { - "l": "75.0", - "x": 6.0833, - "y": 119.6949 - }, - { - "l": "75.0", - "x": 6.1667, - "y": 120.212 - }, - { - "l": "75.0", - "x": 6.25, - "y": 120.7283 - }, - { - "l": "75.0", - "x": 6.3333, - "y": 121.2447 - }, - { - "l": "75.0", - "x": 6.4167, - "y": 121.7508 - }, - { - "l": "75.0", - "x": 6.5, - "y": 122.2672 - }, - { - "l": "75.0", - "x": 6.5833, - "y": 122.7733 - }, - { - "l": "75.0", - "x": 6.6667, - "y": 123.2803 - }, - { - "l": "75.0", - "x": 6.75, - "y": 123.7967 - }, - { - "l": "75.0", - "x": 6.8333, - "y": 124.3037 - }, - { - "l": "75.0", - "x": 6.9167, - "y": 124.8211 - }, - { - "l": "75.0", - "x": 7.0, - "y": 125.3384 - }, - { - "l": "75.0", - "x": 7.0833, - "y": 125.8566 - }, - { - "l": "75.0", - "x": 7.1667, - "y": 126.374 - }, - { - "l": "75.0", - "x": 7.25, - "y": 126.8922 - }, - { - "l": "75.0", - "x": 7.3333, - "y": 127.4097 - }, - { - "l": "75.0", - "x": 7.4167, - "y": 127.928 - }, - { - "l": "75.0", - "x": 7.5, - "y": 128.4463 - }, - { - "l": "75.0", - "x": 7.5833, - "y": 128.9639 - }, - { - "l": "75.0", - "x": 7.6667, - "y": 129.4712 - }, - { - "l": "75.0", - "x": 7.75, - "y": 129.9896 - }, - { - "l": "75.0", - "x": 7.8333, - "y": 130.4866 - }, - { - "l": "75.0", - "x": 7.9167, - "y": 130.994 - }, - { - "l": "75.0", - "x": 8.0, - "y": 131.5014 - }, - { - "l": "75.0", - "x": 8.0833, - "y": 131.9994 - }, - { - "l": "75.0", - "x": 8.1667, - "y": 132.4863 - }, - { - "l": "75.0", - "x": 8.25, - "y": 132.9732 - }, - { - "l": "75.0", - "x": 8.3333, - "y": 133.4609 - }, - { - "l": "75.0", - "x": 8.4167, - "y": 133.9282 - }, - { - "l": "75.0", - "x": 8.5, - "y": 134.3955 - }, - { - "l": "75.0", - "x": 8.5833, - "y": 134.8636 - }, - { - "l": "75.0", - "x": 8.6667, - "y": 135.3319 - }, - { - "l": "75.0", - "x": 8.75, - "y": 135.7795 - }, - { - "l": "75.0", - "x": 8.8333, - "y": 136.2384 - }, - { - "l": "75.0", - "x": 8.9167, - "y": 136.687 - }, - { - "l": "75.0", - "x": 9.0, - "y": 137.146 - }, - { - "l": "75.0", - "x": 9.0833, - "y": 137.5956 - }, - { - "l": "75.0", - "x": 9.1667, - "y": 138.0453 - }, - { - "l": "75.0", - "x": 9.25, - "y": 138.4959 - }, - { - "l": "75.0", - "x": 9.3333, - "y": 138.9353 - }, - { - "l": "75.0", - "x": 9.4167, - "y": 139.3869 - }, - { - "l": "75.0", - "x": 9.5, - "y": 139.8274 - }, - { - "l": "75.0", - "x": 9.5833, - "y": 140.2688 - }, - { - "l": "75.0", - "x": 9.6667, - "y": 140.7102 - }, - { - "l": "75.0", - "x": 9.75, - "y": 141.1518 - }, - { - "l": "75.0", - "x": 9.8333, - "y": 141.6046 - }, - { - "l": "75.0", - "x": 9.9167, - "y": 142.0583 - }, - { - "l": "75.0", - "x": 10.0, - "y": 142.5122 - }, - { - "l": "75.0", - "x": 10.0833, - "y": 142.9661 - }, - { - "l": "75.0", - "x": 10.1667, - "y": 143.4313 - }, - { - "l": "75.0", - "x": 10.25, - "y": 143.8863 - }, - { - "l": "75.0", - "x": 10.3333, - "y": 144.3423 - }, - { - "l": "75.0", - "x": 10.4167, - "y": 144.7881 - }, - { - "l": "75.0", - "x": 10.5, - "y": 145.2339 - }, - { - "l": "75.0", - "x": 10.5833, - "y": 145.6695 - }, - { - "l": "75.0", - "x": 10.6667, - "y": 146.1062 - }, - { - "l": "75.0", - "x": 10.75, - "y": 146.5326 - }, - { - "l": "75.0", - "x": 10.8333, - "y": 146.9591 - }, - { - "l": "75.0", - "x": 10.9167, - "y": 147.3866 - }, - { - "l": "75.0", - "x": 11.0, - "y": 147.803 - }, - { - "l": "75.0", - "x": 11.0833, - "y": 148.2307 - }, - { - "l": "75.0", - "x": 11.1667, - "y": 148.6482 - }, - { - "l": "75.0", - "x": 11.25, - "y": 149.0667 - }, - { - "l": "75.0", - "x": 11.3333, - "y": 149.4956 - }, - { - "l": "75.0", - "x": 11.4167, - "y": 149.9143 - }, - { - "l": "75.0", - "x": 11.5, - "y": 150.3538 - }, - { - "l": "75.0", - "x": 11.5833, - "y": 150.7933 - }, - { - "l": "75.0", - "x": 11.6667, - "y": 151.2452 - }, - { - "l": "75.0", - "x": 11.75, - "y": 151.7168 - }, - { - "l": "75.0", - "x": 11.8333, - "y": 152.1886 - }, - { - "l": "75.0", - "x": 11.9167, - "y": 152.6717 - }, - { - "l": "75.0", - "x": 12.0, - "y": 153.155 - }, - { - "l": "75.0", - "x": 12.0833, - "y": 153.66 - }, - { - "l": "75.0", - "x": 12.1667, - "y": 154.1745 - }, - { - "l": "75.0", - "x": 12.25, - "y": 154.7098 - }, - { - "l": "75.0", - "x": 12.3333, - "y": 155.2462 - }, - { - "l": "75.0", - "x": 12.4167, - "y": 155.8024 - }, - { - "l": "75.0", - "x": 12.5, - "y": 156.3587 - }, - { - "l": "75.0", - "x": 12.5833, - "y": 156.9358 - }, - { - "l": "75.0", - "x": 12.6667, - "y": 157.5223 - }, - { - "l": "75.0", - "x": 12.75, - "y": 158.1194 - }, - { - "l": "75.0", - "x": 12.8333, - "y": 158.7372 - }, - { - "l": "75.0", - "x": 12.9167, - "y": 159.3635 - }, - { - "l": "75.0", - "x": 13.0, - "y": 159.9992 - }, - { - "l": "75.0", - "x": 13.0833, - "y": 160.6453 - }, - { - "l": "75.0", - "x": 13.1667, - "y": 161.2988 - }, - { - "l": "75.0", - "x": 13.25, - "y": 161.9627 - }, - { - "l": "75.0", - "x": 13.3333, - "y": 162.634 - }, - { - "l": "75.0", - "x": 13.4167, - "y": 163.3032 - }, - { - "l": "75.0", - "x": 13.5, - "y": 163.9714 - }, - { - "l": "75.0", - "x": 13.5833, - "y": 164.6468 - }, - { - "l": "75.0", - "x": 13.6667, - "y": 165.3097 - }, - { - "l": "75.0", - "x": 13.75, - "y": 165.9591 - }, - { - "l": "75.0", - "x": 13.8333, - "y": 166.6157 - }, - { - "l": "75.0", - "x": 13.9167, - "y": 167.2607 - }, - { - "l": "75.0", - "x": 14.0, - "y": 167.8911 - }, - { - "l": "75.0", - "x": 14.0833, - "y": 168.5088 - }, - { - "l": "75.0", - "x": 14.1667, - "y": 169.1232 - }, - { - "l": "75.0", - "x": 14.25, - "y": 169.7135 - }, - { - "l": "75.0", - "x": 14.3333, - "y": 170.2911 - }, - { - "l": "75.0", - "x": 14.4167, - "y": 170.8664 - }, - { - "l": "75.0", - "x": 14.5, - "y": 171.4071 - }, - { - "l": "75.0", - "x": 14.5833, - "y": 171.9455 - }, - { - "l": "75.0", - "x": 14.6667, - "y": 172.4608 - }, - { - "l": "75.0", - "x": 14.75, - "y": 172.9644 - }, - { - "l": "75.0", - "x": 14.8333, - "y": 173.4438 - }, - { - "l": "75.0", - "x": 14.9167, - "y": 173.9127 - }, - { - "l": "75.0", - "x": 15.0, - "y": 174.3585 - }, - { - "l": "75.0", - "x": 15.0833, - "y": 174.7937 - }, - { - "l": "75.0", - "x": 15.1667, - "y": 175.2069 - }, - { - "l": "75.0", - "x": 15.25, - "y": 175.5982 - }, - { - "l": "75.0", - "x": 15.3333, - "y": 175.979 - }, - { - "l": "75.0", - "x": 15.4167, - "y": 176.3401 - }, - { - "l": "75.0", - "x": 15.5, - "y": 176.6803 - }, - { - "l": "75.0", - "x": 15.5833, - "y": 177.0101 - }, - { - "l": "75.0", - "x": 15.6667, - "y": 177.3294 - }, - { - "l": "75.0", - "x": 15.75, - "y": 177.6406 - }, - { - "l": "75.0", - "x": 15.8333, - "y": 177.9207 - }, - { - "l": "75.0", - "x": 15.9167, - "y": 178.2018 - }, - { - "l": "75.0", - "x": 16.0, - "y": 178.4634 - }, - { - "l": "75.0", - "x": 16.0833, - "y": 178.7054 - }, - { - "l": "75.0", - "x": 16.1667, - "y": 178.9485 - }, - { - "l": "75.0", - "x": 16.25, - "y": 179.1732 - }, - { - "l": "75.0", - "x": 16.3333, - "y": 179.3886 - }, - { - "l": "75.0", - "x": 16.4167, - "y": 179.5835 - }, - { - "l": "75.0", - "x": 16.5, - "y": 179.7817 - }, - { - "l": "75.0", - "x": 16.5833, - "y": 179.9593 - }, - { - "l": "75.0", - "x": 16.6667, - "y": 180.1278 - }, - { - "l": "75.0", - "x": 16.75, - "y": 180.2882 - }, - { - "l": "75.0", - "x": 16.8333, - "y": 180.4498 - }, - { - "l": "75.0", - "x": 16.9167, - "y": 180.5908 - }, - { - "l": "75.0", - "x": 17.0, - "y": 180.7238 - }, - { - "l": "75.0", - "x": 17.0833, - "y": 180.8579 - }, - { - "l": "75.0", - "x": 17.1667, - "y": 180.9829 - }, - { - "l": "75.0", - "x": 17.25, - "y": 181.0874 - }, - { - "l": "75.0", - "x": 17.3333, - "y": 181.1942 - }, - { - "l": "75.0", - "x": 17.4167, - "y": 181.3021 - }, - { - "l": "75.0", - "x": 17.5, - "y": 181.3906 - }, - { - "l": "75.0", - "x": 17.5833, - "y": 181.4701 - }, - { - "l": "75.0", - "x": 17.6667, - "y": 181.5507 - }, - { - "l": "75.0", - "x": 17.75, - "y": 181.6131 - }, - { - "l": "75.0", - "x": 17.8333, - "y": 181.6755 - }, - { - "l": "75.0", - "x": 17.9167, - "y": 181.7186 - }, - { - "l": "75.0", - "x": 18.0, - "y": 181.7628 - }, - { - "l": "75.0", - "x": 18.0833, - "y": 181.798 - }, - { - "l": "75.0", - "x": 18.1667, - "y": 181.8331 - }, - { - "l": "75.0", - "x": 18.25, - "y": 181.8604 - }, - { - "l": "75.0", - "x": 18.3333, - "y": 181.8876 - }, - { - "l": "75.0", - "x": 18.4167, - "y": 181.9058 - }, - { - "l": "75.0", - "x": 18.5, - "y": 181.9137 - }, - { - "l": "75.0", - "x": 18.5833, - "y": 181.9227 - }, - { - "l": "75.0", - "x": 18.6667, - "y": 181.9216 - }, - { - "l": "75.0", - "x": 18.75, - "y": 181.9318 - }, - { - "l": "75.0", - "x": 18.8333, - "y": 181.9318 - }, - { - "l": "75.0", - "x": 18.9167, - "y": 181.9318 - }, - { - "l": "75.0", - "x": 19.0, - "y": 181.9306 - }, - { - "l": "75.0", - "x": 19.0833, - "y": 181.9409 - }, - { - "l": "75.0", - "x": 19.1667, - "y": 181.9397 - }, - { - "l": "75.0", - "x": 19.25, - "y": 181.9397 - }, - { - "l": "75.0", - "x": 19.3333, - "y": 181.95 - }, - { - "l": "75.0", - "x": 19.4167, - "y": 181.95 - }, - { - "l": "75.0", - "x": 19.5, - "y": 181.95 - }, - { - "l": "75.0", - "x": 19.5833, - "y": 181.9488 - }, - { - "l": "75.0", - "x": 19.6667, - "y": 181.9488 - }, - { - "l": "75.0", - "x": 19.75, - "y": 181.9579 - }, - { - "l": "75.0", - "x": 19.8333, - "y": 181.967 - }, - { - "l": "75.0", - "x": 19.9167, - "y": 181.976 - }, - { - "l": "75.0", - "x": 20.0, - "y": 181.9851 - }, - { - "l": "75.0", - "x": 20.0, - "y": 181.9851 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 4.0, - "y": 107.9671 - }, - { - "l": "91.0", - "x": 4.0833, - "y": 108.5854 - }, - { - "l": "91.0", - "x": 4.1667, - "y": 109.2131 - }, - { - "l": "91.0", - "x": 4.25, - "y": 109.8409 - }, - { - "l": "91.0", - "x": 4.3333, - "y": 110.469 - }, - { - "l": "91.0", - "x": 4.4167, - "y": 111.1169 - }, - { - "l": "91.0", - "x": 4.5, - "y": 111.7636 - }, - { - "l": "91.0", - "x": 4.5833, - "y": 112.4118 - }, - { - "l": "91.0", - "x": 4.6667, - "y": 113.068 - }, - { - "l": "91.0", - "x": 4.75, - "y": 113.7137 - }, - { - "l": "91.0", - "x": 4.8333, - "y": 114.3581 - }, - { - "l": "91.0", - "x": 4.9167, - "y": 115.0026 - }, - { - "l": "91.0", - "x": 5.0, - "y": 115.6262 - }, - { - "l": "91.0", - "x": 5.0833, - "y": 116.2364 - }, - { - "l": "91.0", - "x": 5.1667, - "y": 116.8482 - }, - { - "l": "91.0", - "x": 5.25, - "y": 117.436 - }, - { - "l": "91.0", - "x": 5.3333, - "y": 118.0043 - }, - { - "l": "91.0", - "x": 5.4167, - "y": 118.5817 - }, - { - "l": "91.0", - "x": 5.5, - "y": 119.138 - }, - { - "l": "91.0", - "x": 5.5833, - "y": 119.6839 - }, - { - "l": "91.0", - "x": 5.6667, - "y": 120.2389 - }, - { - "l": "91.0", - "x": 5.75, - "y": 120.7834 - }, - { - "l": "91.0", - "x": 5.8333, - "y": 121.3279 - }, - { - "l": "91.0", - "x": 5.9167, - "y": 121.8725 - }, - { - "l": "91.0", - "x": 6.0, - "y": 122.4066 - }, - { - "l": "91.0", - "x": 6.0833, - "y": 122.9498 - }, - { - "l": "91.0", - "x": 6.1667, - "y": 123.484 - }, - { - "l": "91.0", - "x": 6.25, - "y": 124.0166 - }, - { - "l": "91.0", - "x": 6.3333, - "y": 124.5494 - }, - { - "l": "91.0", - "x": 6.4167, - "y": 125.0716 - }, - { - "l": "91.0", - "x": 6.5, - "y": 125.6044 - }, - { - "l": "91.0", - "x": 6.5833, - "y": 126.1266 - }, - { - "l": "91.0", - "x": 6.6667, - "y": 126.6505 - }, - { - "l": "91.0", - "x": 6.75, - "y": 127.1835 - }, - { - "l": "91.0", - "x": 6.8333, - "y": 127.7075 - }, - { - "l": "91.0", - "x": 6.9167, - "y": 128.2421 - }, - { - "l": "91.0", - "x": 7.0, - "y": 128.7768 - }, - { - "l": "91.0", - "x": 7.0833, - "y": 129.3132 - }, - { - "l": "91.0", - "x": 7.1667, - "y": 129.8479 - }, - { - "l": "91.0", - "x": 7.25, - "y": 130.3844 - }, - { - "l": "91.0", - "x": 7.3333, - "y": 130.9193 - }, - { - "l": "91.0", - "x": 7.4167, - "y": 131.456 - }, - { - "l": "91.0", - "x": 7.5, - "y": 131.9927 - }, - { - "l": "91.0", - "x": 7.5833, - "y": 132.5277 - }, - { - "l": "91.0", - "x": 7.6667, - "y": 133.0523 - }, - { - "l": "91.0", - "x": 7.75, - "y": 133.5892 - }, - { - "l": "91.0", - "x": 7.8333, - "y": 134.1033 - }, - { - "l": "91.0", - "x": 7.9167, - "y": 134.628 - }, - { - "l": "91.0", - "x": 8.0, - "y": 135.1528 - }, - { - "l": "91.0", - "x": 8.0833, - "y": 135.6688 - }, - { - "l": "91.0", - "x": 8.1667, - "y": 136.1725 - }, - { - "l": "91.0", - "x": 8.25, - "y": 136.6763 - }, - { - "l": "91.0", - "x": 8.3333, - "y": 137.1819 - }, - { - "l": "91.0", - "x": 8.4167, - "y": 137.6664 - }, - { - "l": "91.0", - "x": 8.5, - "y": 138.1509 - }, - { - "l": "91.0", - "x": 8.5833, - "y": 138.6373 - }, - { - "l": "91.0", - "x": 8.6667, - "y": 139.1237 - }, - { - "l": "91.0", - "x": 8.75, - "y": 139.5891 - }, - { - "l": "91.0", - "x": 8.8333, - "y": 140.0668 - }, - { - "l": "91.0", - "x": 8.9167, - "y": 140.5341 - }, - { - "l": "91.0", - "x": 9.0, - "y": 141.012 - }, - { - "l": "91.0", - "x": 9.0833, - "y": 141.4812 - }, - { - "l": "91.0", - "x": 9.1667, - "y": 141.9505 - }, - { - "l": "91.0", - "x": 9.25, - "y": 142.4217 - }, - { - "l": "91.0", - "x": 9.3333, - "y": 142.8806 - }, - { - "l": "91.0", - "x": 9.4167, - "y": 143.3538 - }, - { - "l": "91.0", - "x": 9.5, - "y": 143.8147 - }, - { - "l": "91.0", - "x": 9.5833, - "y": 144.2775 - }, - { - "l": "91.0", - "x": 9.6667, - "y": 144.7405 - }, - { - "l": "91.0", - "x": 9.75, - "y": 145.2035 - }, - { - "l": "91.0", - "x": 9.8333, - "y": 145.6791 - }, - { - "l": "91.0", - "x": 9.9167, - "y": 146.1567 - }, - { - "l": "91.0", - "x": 10.0, - "y": 146.6344 - }, - { - "l": "91.0", - "x": 10.0833, - "y": 147.1122 - }, - { - "l": "91.0", - "x": 10.1667, - "y": 147.6026 - }, - { - "l": "91.0", - "x": 10.25, - "y": 148.0826 - }, - { - "l": "91.0", - "x": 10.3333, - "y": 148.5646 - }, - { - "l": "91.0", - "x": 10.4167, - "y": 149.0361 - }, - { - "l": "91.0", - "x": 10.5, - "y": 149.5078 - }, - { - "l": "91.0", - "x": 10.5833, - "y": 149.9691 - }, - { - "l": "91.0", - "x": 10.6667, - "y": 150.4324 - }, - { - "l": "91.0", - "x": 10.75, - "y": 150.8852 - }, - { - "l": "91.0", - "x": 10.8333, - "y": 151.3382 - }, - { - "l": "91.0", - "x": 10.9167, - "y": 151.7933 - }, - { - "l": "91.0", - "x": 11.0, - "y": 152.236 - }, - { - "l": "91.0", - "x": 11.0833, - "y": 152.6914 - }, - { - "l": "91.0", - "x": 11.1667, - "y": 153.1364 - }, - { - "l": "91.0", - "x": 11.25, - "y": 153.5834 - }, - { - "l": "91.0", - "x": 11.3333, - "y": 154.0413 - }, - { - "l": "91.0", - "x": 11.4167, - "y": 154.4887 - }, - { - "l": "91.0", - "x": 11.5, - "y": 154.9575 - }, - { - "l": "91.0", - "x": 11.5833, - "y": 155.4265 - }, - { - "l": "91.0", - "x": 11.6667, - "y": 155.9103 - }, - { - "l": "91.0", - "x": 11.75, - "y": 156.4136 - }, - { - "l": "91.0", - "x": 11.8333, - "y": 156.9171 - }, - { - "l": "91.0", - "x": 11.9167, - "y": 157.4334 - }, - { - "l": "91.0", - "x": 12.0, - "y": 157.95 - }, - { - "l": "91.0", - "x": 12.0833, - "y": 158.4901 - }, - { - "l": "91.0", - "x": 12.1667, - "y": 159.039 - }, - { - "l": "91.0", - "x": 12.25, - "y": 159.6096 - }, - { - "l": "91.0", - "x": 12.3333, - "y": 160.1824 - }, - { - "l": "91.0", - "x": 12.4167, - "y": 160.7747 - }, - { - "l": "91.0", - "x": 12.5, - "y": 161.3674 - }, - { - "l": "91.0", - "x": 12.5833, - "y": 161.9816 - }, - { - "l": "91.0", - "x": 12.6667, - "y": 162.6047 - }, - { - "l": "91.0", - "x": 12.75, - "y": 163.2388 - }, - { - "l": "91.0", - "x": 12.8333, - "y": 163.8944 - }, - { - "l": "91.0", - "x": 12.9167, - "y": 164.5569 - }, - { - "l": "91.0", - "x": 13.0, - "y": 165.2283 - }, - { - "l": "91.0", - "x": 13.0833, - "y": 165.9106 - }, - { - "l": "91.0", - "x": 13.1667, - "y": 166.5976 - }, - { - "l": "91.0", - "x": 13.25, - "y": 167.2955 - }, - { - "l": "91.0", - "x": 13.3333, - "y": 167.9979 - }, - { - "l": "91.0", - "x": 13.4167, - "y": 168.6963 - }, - { - "l": "91.0", - "x": 13.5, - "y": 169.3927 - }, - { - "l": "91.0", - "x": 13.5833, - "y": 170.0935 - }, - { - "l": "91.0", - "x": 13.6667, - "y": 170.7794 - }, - { - "l": "91.0", - "x": 13.75, - "y": 171.4483 - }, - { - "l": "91.0", - "x": 13.8333, - "y": 172.1213 - }, - { - "l": "91.0", - "x": 13.9167, - "y": 172.7815 - }, - { - "l": "91.0", - "x": 14.0, - "y": 173.4221 - }, - { - "l": "91.0", - "x": 14.0833, - "y": 174.0476 - }, - { - "l": "91.0", - "x": 14.1667, - "y": 174.6664 - }, - { - "l": "91.0", - "x": 14.25, - "y": 175.2569 - }, - { - "l": "91.0", - "x": 14.3333, - "y": 175.8322 - }, - { - "l": "91.0", - "x": 14.4167, - "y": 176.4027 - }, - { - "l": "91.0", - "x": 14.5, - "y": 176.9342 - }, - { - "l": "91.0", - "x": 14.5833, - "y": 177.461 - }, - { - "l": "91.0", - "x": 14.6667, - "y": 177.9616 - }, - { - "l": "91.0", - "x": 14.75, - "y": 178.4488 - }, - { - "l": "91.0", - "x": 14.8333, - "y": 178.9077 - }, - { - "l": "91.0", - "x": 14.9167, - "y": 179.3554 - }, - { - "l": "91.0", - "x": 15.0, - "y": 179.7769 - }, - { - "l": "91.0", - "x": 15.0833, - "y": 180.1874 - }, - { - "l": "91.0", - "x": 15.1667, - "y": 180.5739 - }, - { - "l": "91.0", - "x": 15.25, - "y": 180.9364 - }, - { - "l": "91.0", - "x": 15.3333, - "y": 181.2879 - }, - { - "l": "91.0", - "x": 15.4167, - "y": 181.6201 - }, - { - "l": "91.0", - "x": 15.5, - "y": 181.9307 - }, - { - "l": "91.0", - "x": 15.5833, - "y": 182.2303 - }, - { - "l": "91.0", - "x": 15.6667, - "y": 182.5189 - }, - { - "l": "91.0", - "x": 15.75, - "y": 182.8012 - }, - { - "l": "91.0", - "x": 15.8333, - "y": 183.0514 - }, - { - "l": "91.0", - "x": 15.9167, - "y": 183.3037 - }, - { - "l": "91.0", - "x": 16.0, - "y": 183.5368 - }, - { - "l": "91.0", - "x": 16.0833, - "y": 183.7508 - }, - { - "l": "91.0", - "x": 16.1667, - "y": 183.9669 - }, - { - "l": "91.0", - "x": 16.25, - "y": 184.1663 - }, - { - "l": "91.0", - "x": 16.3333, - "y": 184.3573 - }, - { - "l": "91.0", - "x": 16.4167, - "y": 184.527 - }, - { - "l": "91.0", - "x": 16.5, - "y": 184.7035 - }, - { - "l": "91.0", - "x": 16.5833, - "y": 184.8587 - }, - { - "l": "91.0", - "x": 16.6667, - "y": 185.0056 - }, - { - "l": "91.0", - "x": 16.75, - "y": 185.1465 - }, - { - "l": "91.0", - "x": 16.8333, - "y": 185.2896 - }, - { - "l": "91.0", - "x": 16.9167, - "y": 185.4116 - }, - { - "l": "91.0", - "x": 17.0, - "y": 185.5276 - }, - { - "l": "91.0", - "x": 17.0833, - "y": 185.6459 - }, - { - "l": "91.0", - "x": 17.1667, - "y": 185.7559 - }, - { - "l": "91.0", - "x": 17.25, - "y": 185.8448 - }, - { - "l": "91.0", - "x": 17.3333, - "y": 185.9383 - }, - { - "l": "91.0", - "x": 17.4167, - "y": 186.0342 - }, - { - "l": "91.0", - "x": 17.5, - "y": 186.1112 - }, - { - "l": "91.0", - "x": 17.5833, - "y": 186.1801 - }, - { - "l": "91.0", - "x": 17.6667, - "y": 186.2513 - }, - { - "l": "91.0", - "x": 17.75, - "y": 186.3062 - }, - { - "l": "91.0", - "x": 17.8333, - "y": 186.361 - }, - { - "l": "91.0", - "x": 17.9167, - "y": 186.3972 - }, - { - "l": "91.0", - "x": 18.0, - "y": 186.4356 - }, - { - "l": "91.0", - "x": 18.0833, - "y": 186.4659 - }, - { - "l": "91.0", - "x": 18.1667, - "y": 186.4962 - }, - { - "l": "91.0", - "x": 18.25, - "y": 186.5207 - }, - { - "l": "91.0", - "x": 18.3333, - "y": 186.5452 - }, - { - "l": "91.0", - "x": 18.4167, - "y": 186.5615 - }, - { - "l": "91.0", - "x": 18.5, - "y": 186.5673 - }, - { - "l": "91.0", - "x": 18.5833, - "y": 186.5755 - }, - { - "l": "91.0", - "x": 18.6667, - "y": 186.5731 - }, - { - "l": "91.0", - "x": 18.75, - "y": 186.5837 - }, - { - "l": "91.0", - "x": 18.8333, - "y": 186.5837 - }, - { - "l": "91.0", - "x": 18.9167, - "y": 186.5837 - }, - { - "l": "91.0", - "x": 19.0, - "y": 186.5813 - }, - { - "l": "91.0", - "x": 19.0833, - "y": 186.5918 - }, - { - "l": "91.0", - "x": 19.1667, - "y": 186.5895 - }, - { - "l": "91.0", - "x": 19.25, - "y": 186.5895 - }, - { - "l": "91.0", - "x": 19.3333, - "y": 186.6 - }, - { - "l": "91.0", - "x": 19.4167, - "y": 186.6 - }, - { - "l": "91.0", - "x": 19.5, - "y": 186.6 - }, - { - "l": "91.0", - "x": 19.5833, - "y": 186.5976 - }, - { - "l": "91.0", - "x": 19.6667, - "y": 186.5976 - }, - { - "l": "91.0", - "x": 19.75, - "y": 186.6058 - }, - { - "l": "91.0", - "x": 19.8333, - "y": 186.6139 - }, - { - "l": "91.0", - "x": 19.9167, - "y": 186.6221 - }, - { - "l": "91.0", - "x": 20.0, - "y": 186.6303 - }, - { - "l": "91.0", - "x": 20.0, - "y": 186.6303 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 4.0, - "y": 110.7056 - }, - { - "l": "98.0", - "x": 4.0833, - "y": 111.3481 - }, - { - "l": "98.0", - "x": 4.1667, - "y": 111.9996 - }, - { - "l": "98.0", - "x": 4.25, - "y": 112.6514 - }, - { - "l": "98.0", - "x": 4.3333, - "y": 113.3035 - }, - { - "l": "98.0", - "x": 4.4167, - "y": 113.9753 - }, - { - "l": "98.0", - "x": 4.5, - "y": 114.6454 - }, - { - "l": "98.0", - "x": 4.5833, - "y": 115.3177 - }, - { - "l": "98.0", - "x": 4.6667, - "y": 115.9969 - }, - { - "l": "98.0", - "x": 4.75, - "y": 116.6655 - }, - { - "l": "98.0", - "x": 4.8333, - "y": 117.3321 - }, - { - "l": "98.0", - "x": 4.9167, - "y": 117.999 - }, - { - "l": "98.0", - "x": 5.0, - "y": 118.6443 - }, - { - "l": "98.0", - "x": 5.0833, - "y": 119.2746 - }, - { - "l": "98.0", - "x": 5.1667, - "y": 119.9073 - }, - { - "l": "98.0", - "x": 5.25, - "y": 120.514 - }, - { - "l": "98.0", - "x": 5.3333, - "y": 121.1014 - }, - { - "l": "98.0", - "x": 5.4167, - "y": 121.6975 - }, - { - "l": "98.0", - "x": 5.5, - "y": 122.2721 - }, - { - "l": "98.0", - "x": 5.5833, - "y": 122.8359 - }, - { - "l": "98.0", - "x": 5.6667, - "y": 123.4084 - }, - { - "l": "98.0", - "x": 5.75, - "y": 123.9701 - }, - { - "l": "98.0", - "x": 5.8333, - "y": 124.5319 - }, - { - "l": "98.0", - "x": 5.9167, - "y": 125.0938 - }, - { - "l": "98.0", - "x": 6.0, - "y": 125.6449 - }, - { - "l": "98.0", - "x": 6.0833, - "y": 126.2047 - }, - { - "l": "98.0", - "x": 6.1667, - "y": 126.7559 - }, - { - "l": "98.0", - "x": 6.25, - "y": 127.305 - }, - { - "l": "98.0", - "x": 6.3333, - "y": 127.854 - }, - { - "l": "98.0", - "x": 6.4167, - "y": 128.3923 - }, - { - "l": "98.0", - "x": 6.5, - "y": 128.9415 - }, - { - "l": "98.0", - "x": 6.5833, - "y": 129.4799 - }, - { - "l": "98.0", - "x": 6.6667, - "y": 130.0208 - }, - { - "l": "98.0", - "x": 6.75, - "y": 130.5702 - }, - { - "l": "98.0", - "x": 6.8333, - "y": 131.1112 - }, - { - "l": "98.0", - "x": 6.9167, - "y": 131.6632 - }, - { - "l": "98.0", - "x": 7.0, - "y": 132.2152 - }, - { - "l": "98.0", - "x": 7.0833, - "y": 132.7697 - }, - { - "l": "98.0", - "x": 7.1667, - "y": 133.3219 - }, - { - "l": "98.0", - "x": 7.25, - "y": 133.8767 - }, - { - "l": "98.0", - "x": 7.3333, - "y": 134.429 - }, - { - "l": "98.0", - "x": 7.4167, - "y": 134.984 - }, - { - "l": "98.0", - "x": 7.5, - "y": 135.539 - }, - { - "l": "98.0", - "x": 7.5833, - "y": 136.0916 - }, - { - "l": "98.0", - "x": 7.6667, - "y": 136.6335 - }, - { - "l": "98.0", - "x": 7.75, - "y": 137.1888 - }, - { - "l": "98.0", - "x": 7.8333, - "y": 137.7199 - }, - { - "l": "98.0", - "x": 7.9167, - "y": 138.262 - }, - { - "l": "98.0", - "x": 8.0, - "y": 138.8042 - }, - { - "l": "98.0", - "x": 8.0833, - "y": 139.3381 - }, - { - "l": "98.0", - "x": 8.1667, - "y": 139.8588 - }, - { - "l": "98.0", - "x": 8.25, - "y": 140.3795 - }, - { - "l": "98.0", - "x": 8.3333, - "y": 140.9028 - }, - { - "l": "98.0", - "x": 8.4167, - "y": 141.4046 - }, - { - "l": "98.0", - "x": 8.5, - "y": 141.9064 - }, - { - "l": "98.0", - "x": 8.5833, - "y": 142.4109 - }, - { - "l": "98.0", - "x": 8.6667, - "y": 142.9156 - }, - { - "l": "98.0", - "x": 8.75, - "y": 143.3986 - }, - { - "l": "98.0", - "x": 8.8333, - "y": 143.8952 - }, - { - "l": "98.0", - "x": 8.9167, - "y": 144.3811 - }, - { - "l": "98.0", - "x": 9.0, - "y": 144.878 - }, - { - "l": "98.0", - "x": 9.0833, - "y": 145.3668 - }, - { - "l": "98.0", - "x": 9.1667, - "y": 145.8558 - }, - { - "l": "98.0", - "x": 9.25, - "y": 146.3476 - }, - { - "l": "98.0", - "x": 9.3333, - "y": 146.8259 - }, - { - "l": "98.0", - "x": 9.4167, - "y": 147.3207 - }, - { - "l": "98.0", - "x": 9.5, - "y": 147.8021 - }, - { - "l": "98.0", - "x": 9.5833, - "y": 148.2863 - }, - { - "l": "98.0", - "x": 9.6667, - "y": 148.7707 - }, - { - "l": "98.0", - "x": 9.75, - "y": 149.2553 - }, - { - "l": "98.0", - "x": 9.8333, - "y": 149.7537 - }, - { - "l": "98.0", - "x": 9.9167, - "y": 150.255 - }, - { - "l": "98.0", - "x": 10.0, - "y": 150.7565 - }, - { - "l": "98.0", - "x": 10.0833, - "y": 151.2583 - }, - { - "l": "98.0", - "x": 10.1667, - "y": 151.7739 - }, - { - "l": "98.0", - "x": 10.25, - "y": 152.2789 - }, - { - "l": "98.0", - "x": 10.3333, - "y": 152.7868 - }, - { - "l": "98.0", - "x": 10.4167, - "y": 153.2842 - }, - { - "l": "98.0", - "x": 10.5, - "y": 153.7817 - }, - { - "l": "98.0", - "x": 10.5833, - "y": 154.2686 - }, - { - "l": "98.0", - "x": 10.6667, - "y": 154.7585 - }, - { - "l": "98.0", - "x": 10.75, - "y": 155.2378 - }, - { - "l": "98.0", - "x": 10.8333, - "y": 155.7173 - }, - { - "l": "98.0", - "x": 10.9167, - "y": 156.1999 - }, - { - "l": "98.0", - "x": 11.0, - "y": 156.669 - }, - { - "l": "98.0", - "x": 11.0833, - "y": 157.1521 - }, - { - "l": "98.0", - "x": 11.1667, - "y": 157.6245 - }, - { - "l": "98.0", - "x": 11.25, - "y": 158.1001 - }, - { - "l": "98.0", - "x": 11.3333, - "y": 158.5869 - }, - { - "l": "98.0", - "x": 11.4167, - "y": 159.063 - }, - { - "l": "98.0", - "x": 11.5, - "y": 159.5613 - }, - { - "l": "98.0", - "x": 11.5833, - "y": 160.0598 - }, - { - "l": "98.0", - "x": 11.6667, - "y": 160.5755 - }, - { - "l": "98.0", - "x": 11.75, - "y": 161.1104 - }, - { - "l": "98.0", - "x": 11.8333, - "y": 161.6457 - }, - { - "l": "98.0", - "x": 11.9167, - "y": 162.1951 - }, - { - "l": "98.0", - "x": 12.0, - "y": 162.745 - }, - { - "l": "98.0", - "x": 12.0833, - "y": 163.3201 - }, - { - "l": "98.0", - "x": 12.1667, - "y": 163.9036 - }, - { - "l": "98.0", - "x": 12.25, - "y": 164.5094 - }, - { - "l": "98.0", - "x": 12.3333, - "y": 165.1185 - }, - { - "l": "98.0", - "x": 12.4167, - "y": 165.7471 - }, - { - "l": "98.0", - "x": 12.5, - "y": 166.376 - }, - { - "l": "98.0", - "x": 12.5833, - "y": 167.0274 - }, - { - "l": "98.0", - "x": 12.6667, - "y": 167.687 - }, - { - "l": "98.0", - "x": 12.75, - "y": 168.3581 - }, - { - "l": "98.0", - "x": 12.8333, - "y": 169.0516 - }, - { - "l": "98.0", - "x": 12.9167, - "y": 169.7504 - }, - { - "l": "98.0", - "x": 13.0, - "y": 170.4575 - }, - { - "l": "98.0", - "x": 13.0833, - "y": 171.1759 - }, - { - "l": "98.0", - "x": 13.1667, - "y": 171.8964 - }, - { - "l": "98.0", - "x": 13.25, - "y": 172.6282 - }, - { - "l": "98.0", - "x": 13.3333, - "y": 173.3619 - }, - { - "l": "98.0", - "x": 13.4167, - "y": 174.0895 - }, - { - "l": "98.0", - "x": 13.5, - "y": 174.8141 - }, - { - "l": "98.0", - "x": 13.5833, - "y": 175.5403 - }, - { - "l": "98.0", - "x": 13.6667, - "y": 176.2492 - }, - { - "l": "98.0", - "x": 13.75, - "y": 176.9374 - }, - { - "l": "98.0", - "x": 13.8333, - "y": 177.627 - }, - { - "l": "98.0", - "x": 13.9167, - "y": 178.3022 - }, - { - "l": "98.0", - "x": 14.0, - "y": 178.9532 - }, - { - "l": "98.0", - "x": 14.0833, - "y": 179.5864 - }, - { - "l": "98.0", - "x": 14.1667, - "y": 180.2095 - }, - { - "l": "98.0", - "x": 14.25, - "y": 180.8004 - }, - { - "l": "98.0", - "x": 14.3333, - "y": 181.3733 - }, - { - "l": "98.0", - "x": 14.4167, - "y": 181.9391 - }, - { - "l": "98.0", - "x": 14.5, - "y": 182.4614 - }, - { - "l": "98.0", - "x": 14.5833, - "y": 182.9765 - }, - { - "l": "98.0", - "x": 14.6667, - "y": 183.4623 - }, - { - "l": "98.0", - "x": 14.75, - "y": 183.9332 - }, - { - "l": "98.0", - "x": 14.8333, - "y": 184.3715 - }, - { - "l": "98.0", - "x": 14.9167, - "y": 184.7981 - }, - { - "l": "98.0", - "x": 15.0, - "y": 185.1954 - }, - { - "l": "98.0", - "x": 15.0833, - "y": 185.5811 - }, - { - "l": "98.0", - "x": 15.1667, - "y": 185.9408 - }, - { - "l": "98.0", - "x": 15.25, - "y": 186.2747 - }, - { - "l": "98.0", - "x": 15.3333, - "y": 186.5969 - }, - { - "l": "98.0", - "x": 15.4167, - "y": 186.9002 - }, - { - "l": "98.0", - "x": 15.5, - "y": 187.181 - }, - { - "l": "98.0", - "x": 15.5833, - "y": 187.4504 - }, - { - "l": "98.0", - "x": 15.6667, - "y": 187.7083 - }, - { - "l": "98.0", - "x": 15.75, - "y": 187.9618 - }, - { - "l": "98.0", - "x": 15.8333, - "y": 188.1821 - }, - { - "l": "98.0", - "x": 15.9167, - "y": 188.4055 - }, - { - "l": "98.0", - "x": 16.0, - "y": 188.6102 - }, - { - "l": "98.0", - "x": 16.0833, - "y": 188.7962 - }, - { - "l": "98.0", - "x": 16.1667, - "y": 188.9854 - }, - { - "l": "98.0", - "x": 16.25, - "y": 189.1595 - }, - { - "l": "98.0", - "x": 16.3333, - "y": 189.3259 - }, - { - "l": "98.0", - "x": 16.4167, - "y": 189.4704 - }, - { - "l": "98.0", - "x": 16.5, - "y": 189.6252 - }, - { - "l": "98.0", - "x": 16.5833, - "y": 189.758 - }, - { - "l": "98.0", - "x": 16.6667, - "y": 189.8834 - }, - { - "l": "98.0", - "x": 16.75, - "y": 190.0047 - }, - { - "l": "98.0", - "x": 16.8333, - "y": 190.1294 - }, - { - "l": "98.0", - "x": 16.9167, - "y": 190.2324 - }, - { - "l": "98.0", - "x": 17.0, - "y": 190.3314 - }, - { - "l": "98.0", - "x": 17.0833, - "y": 190.4338 - }, - { - "l": "98.0", - "x": 17.1667, - "y": 190.5288 - }, - { - "l": "98.0", - "x": 17.25, - "y": 190.6022 - }, - { - "l": "98.0", - "x": 17.3333, - "y": 190.6825 - }, - { - "l": "98.0", - "x": 17.4167, - "y": 190.7662 - }, - { - "l": "98.0", - "x": 17.5, - "y": 190.8319 - }, - { - "l": "98.0", - "x": 17.5833, - "y": 190.8902 - }, - { - "l": "98.0", - "x": 17.6667, - "y": 190.952 - }, - { - "l": "98.0", - "x": 17.75, - "y": 190.9993 - }, - { - "l": "98.0", - "x": 17.8333, - "y": 191.0465 - }, - { - "l": "98.0", - "x": 17.9167, - "y": 191.0757 - }, - { - "l": "98.0", - "x": 18.0, - "y": 191.1084 - }, - { - "l": "98.0", - "x": 18.0833, - "y": 191.1339 - }, - { - "l": "98.0", - "x": 18.1667, - "y": 191.1593 - }, - { - "l": "98.0", - "x": 18.25, - "y": 191.1811 - }, - { - "l": "98.0", - "x": 18.3333, - "y": 191.2028 - }, - { - "l": "98.0", - "x": 18.4167, - "y": 191.2173 - }, - { - "l": "98.0", - "x": 18.5, - "y": 191.221 - }, - { - "l": "98.0", - "x": 18.5833, - "y": 191.2282 - }, - { - "l": "98.0", - "x": 18.6667, - "y": 191.2247 - }, - { - "l": "98.0", - "x": 18.75, - "y": 191.2355 - }, - { - "l": "98.0", - "x": 18.8333, - "y": 191.2355 - }, - { - "l": "98.0", - "x": 18.9167, - "y": 191.2355 - }, - { - "l": "98.0", - "x": 19.0, - "y": 191.2319 - }, - { - "l": "98.0", - "x": 19.0833, - "y": 191.2427 - }, - { - "l": "98.0", - "x": 19.1667, - "y": 191.2392 - }, - { - "l": "98.0", - "x": 19.25, - "y": 191.2392 - }, - { - "l": "98.0", - "x": 19.3333, - "y": 191.25 - }, - { - "l": "98.0", - "x": 19.4167, - "y": 191.25 - }, - { - "l": "98.0", - "x": 19.5, - "y": 191.25 - }, - { - "l": "98.0", - "x": 19.5833, - "y": 191.2464 - }, - { - "l": "98.0", - "x": 19.6667, - "y": 191.2464 - }, - { - "l": "98.0", - "x": 19.75, - "y": 191.2537 - }, - { - "l": "98.0", - "x": 19.8333, - "y": 191.2609 - }, - { - "l": "98.0", - "x": 19.9167, - "y": 191.2681 - }, - { - "l": "98.0", - "x": 20.0, - "y": 191.2754 - }, - { - "l": "98.0", - "x": 20.0, - "y": 191.2754 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 4.0, - "y": 113.4441 - }, - { - "l": "99.6", - "x": 4.0833, - "y": 114.1108 - }, - { - "l": "99.6", - "x": 4.1667, - "y": 114.7861 - }, - { - "l": "99.6", - "x": 4.25, - "y": 115.4619 - }, - { - "l": "99.6", - "x": 4.3333, - "y": 116.138 - }, - { - "l": "99.6", - "x": 4.4167, - "y": 116.8338 - }, - { - "l": "99.6", - "x": 4.5, - "y": 117.5271 - }, - { - "l": "99.6", - "x": 4.5833, - "y": 118.2237 - }, - { - "l": "99.6", - "x": 4.6667, - "y": 118.9259 - }, - { - "l": "99.6", - "x": 4.75, - "y": 119.6174 - }, - { - "l": "99.6", - "x": 4.8333, - "y": 120.3062 - }, - { - "l": "99.6", - "x": 4.9167, - "y": 120.9953 - }, - { - "l": "99.6", - "x": 5.0, - "y": 121.6624 - }, - { - "l": "99.6", - "x": 5.0833, - "y": 122.3129 - }, - { - "l": "99.6", - "x": 5.1667, - "y": 122.9664 - }, - { - "l": "99.6", - "x": 5.25, - "y": 123.592 - }, - { - "l": "99.6", - "x": 5.3333, - "y": 124.1985 - }, - { - "l": "99.6", - "x": 5.4167, - "y": 124.8134 - }, - { - "l": "99.6", - "x": 5.5, - "y": 125.4061 - }, - { - "l": "99.6", - "x": 5.5833, - "y": 125.9879 - }, - { - "l": "99.6", - "x": 5.6667, - "y": 126.5778 - }, - { - "l": "99.6", - "x": 5.75, - "y": 127.1568 - }, - { - "l": "99.6", - "x": 5.8333, - "y": 127.7359 - }, - { - "l": "99.6", - "x": 5.9167, - "y": 128.3151 - }, - { - "l": "99.6", - "x": 6.0, - "y": 128.8832 - }, - { - "l": "99.6", - "x": 6.0833, - "y": 129.4595 - }, - { - "l": "99.6", - "x": 6.1667, - "y": 130.0279 - }, - { - "l": "99.6", - "x": 6.25, - "y": 130.5933 - }, - { - "l": "99.6", - "x": 6.3333, - "y": 131.1587 - }, - { - "l": "99.6", - "x": 6.4167, - "y": 131.7131 - }, - { - "l": "99.6", - "x": 6.5, - "y": 132.2787 - }, - { - "l": "99.6", - "x": 6.5833, - "y": 132.8333 - }, - { - "l": "99.6", - "x": 6.6667, - "y": 133.3911 - }, - { - "l": "99.6", - "x": 6.75, - "y": 133.9569 - }, - { - "l": "99.6", - "x": 6.8333, - "y": 134.515 - }, - { - "l": "99.6", - "x": 6.9167, - "y": 135.0842 - }, - { - "l": "99.6", - "x": 7.0, - "y": 135.6536 - }, - { - "l": "99.6", - "x": 7.0833, - "y": 136.2263 - }, - { - "l": "99.6", - "x": 7.1667, - "y": 136.7959 - }, - { - "l": "99.6", - "x": 7.25, - "y": 137.3689 - }, - { - "l": "99.6", - "x": 7.3333, - "y": 137.9387 - }, - { - "l": "99.6", - "x": 7.4167, - "y": 138.5119 - }, - { - "l": "99.6", - "x": 7.5, - "y": 139.0853 - }, - { - "l": "99.6", - "x": 7.5833, - "y": 139.6555 - }, - { - "l": "99.6", - "x": 7.6667, - "y": 140.2146 - }, - { - "l": "99.6", - "x": 7.75, - "y": 140.7883 - }, - { - "l": "99.6", - "x": 7.8333, - "y": 141.3366 - }, - { - "l": "99.6", - "x": 7.9167, - "y": 141.896 - }, - { - "l": "99.6", - "x": 8.0, - "y": 142.4556 - }, - { - "l": "99.6", - "x": 8.0833, - "y": 143.0075 - }, - { - "l": "99.6", - "x": 8.1667, - "y": 143.545 - }, - { - "l": "99.6", - "x": 8.25, - "y": 144.0826 - }, - { - "l": "99.6", - "x": 8.3333, - "y": 144.6238 - }, - { - "l": "99.6", - "x": 8.4167, - "y": 145.1428 - }, - { - "l": "99.6", - "x": 8.5, - "y": 145.6619 - }, - { - "l": "99.6", - "x": 8.5833, - "y": 146.1846 - }, - { - "l": "99.6", - "x": 8.6667, - "y": 146.7074 - }, - { - "l": "99.6", - "x": 8.75, - "y": 147.2081 - }, - { - "l": "99.6", - "x": 8.8333, - "y": 147.7237 - }, - { - "l": "99.6", - "x": 8.9167, - "y": 148.2282 - }, - { - "l": "99.6", - "x": 9.0, - "y": 148.744 - }, - { - "l": "99.6", - "x": 9.0833, - "y": 149.2525 - }, - { - "l": "99.6", - "x": 9.1667, - "y": 149.7611 - }, - { - "l": "99.6", - "x": 9.25, - "y": 150.2734 - }, - { - "l": "99.6", - "x": 9.3333, - "y": 150.7712 - }, - { - "l": "99.6", - "x": 9.4167, - "y": 151.2876 - }, - { - "l": "99.6", - "x": 9.5, - "y": 151.7894 - }, - { - "l": "99.6", - "x": 9.5833, - "y": 152.2951 - }, - { - "l": "99.6", - "x": 9.6667, - "y": 152.801 - }, - { - "l": "99.6", - "x": 9.75, - "y": 153.307 - }, - { - "l": "99.6", - "x": 9.8333, - "y": 153.8282 - }, - { - "l": "99.6", - "x": 9.9167, - "y": 154.3533 - }, - { - "l": "99.6", - "x": 10.0, - "y": 154.8787 - }, - { - "l": "99.6", - "x": 10.0833, - "y": 155.4044 - }, - { - "l": "99.6", - "x": 10.1667, - "y": 155.9452 - }, - { - "l": "99.6", - "x": 10.25, - "y": 156.4752 - }, - { - "l": "99.6", - "x": 10.3333, - "y": 157.0091 - }, - { - "l": "99.6", - "x": 10.4167, - "y": 157.5322 - }, - { - "l": "99.6", - "x": 10.5, - "y": 158.0556 - }, - { - "l": "99.6", - "x": 10.5833, - "y": 158.5681 - }, - { - "l": "99.6", - "x": 10.6667, - "y": 159.0847 - }, - { - "l": "99.6", - "x": 10.75, - "y": 159.5904 - }, - { - "l": "99.6", - "x": 10.8333, - "y": 160.0964 - }, - { - "l": "99.6", - "x": 10.9167, - "y": 160.6066 - }, - { - "l": "99.6", - "x": 11.0, - "y": 161.102 - }, - { - "l": "99.6", - "x": 11.0833, - "y": 161.6128 - }, - { - "l": "99.6", - "x": 11.1667, - "y": 162.1127 - }, - { - "l": "99.6", - "x": 11.25, - "y": 162.6168 - }, - { - "l": "99.6", - "x": 11.3333, - "y": 163.1325 - }, - { - "l": "99.6", - "x": 11.4167, - "y": 163.6373 - }, - { - "l": "99.6", - "x": 11.5, - "y": 164.165 - }, - { - "l": "99.6", - "x": 11.5833, - "y": 164.6931 - }, - { - "l": "99.6", - "x": 11.6667, - "y": 165.2406 - }, - { - "l": "99.6", - "x": 11.75, - "y": 165.8072 - }, - { - "l": "99.6", - "x": 11.8333, - "y": 166.3742 - }, - { - "l": "99.6", - "x": 11.9167, - "y": 166.9569 - }, - { - "l": "99.6", - "x": 12.0, - "y": 167.54 - }, - { - "l": "99.6", - "x": 12.0833, - "y": 168.1501 - }, - { - "l": "99.6", - "x": 12.1667, - "y": 168.7681 - }, - { - "l": "99.6", - "x": 12.25, - "y": 169.4091 - }, - { - "l": "99.6", - "x": 12.3333, - "y": 170.0547 - }, - { - "l": "99.6", - "x": 12.4167, - "y": 170.7194 - }, - { - "l": "99.6", - "x": 12.5, - "y": 171.3847 - }, - { - "l": "99.6", - "x": 12.5833, - "y": 172.0731 - }, - { - "l": "99.6", - "x": 12.6667, - "y": 172.7694 - }, - { - "l": "99.6", - "x": 12.75, - "y": 173.4775 - }, - { - "l": "99.6", - "x": 12.8333, - "y": 174.2089 - }, - { - "l": "99.6", - "x": 12.9167, - "y": 174.9439 - }, - { - "l": "99.6", - "x": 13.0, - "y": 175.6866 - }, - { - "l": "99.6", - "x": 13.0833, - "y": 176.4412 - }, - { - "l": "99.6", - "x": 13.1667, - "y": 177.1952 - }, - { - "l": "99.6", - "x": 13.25, - "y": 177.9609 - }, - { - "l": "99.6", - "x": 13.3333, - "y": 178.7258 - }, - { - "l": "99.6", - "x": 13.4167, - "y": 179.4826 - }, - { - "l": "99.6", - "x": 13.5, - "y": 180.2354 - }, - { - "l": "99.6", - "x": 13.5833, - "y": 180.9871 - }, - { - "l": "99.6", - "x": 13.6667, - "y": 181.7189 - }, - { - "l": "99.6", - "x": 13.75, - "y": 182.4266 - }, - { - "l": "99.6", - "x": 13.8333, - "y": 183.1327 - }, - { - "l": "99.6", - "x": 13.9167, - "y": 183.8229 - }, - { - "l": "99.6", - "x": 14.0, - "y": 184.4843 - }, - { - "l": "99.6", - "x": 14.0833, - "y": 185.1252 - }, - { - "l": "99.6", - "x": 14.1667, - "y": 185.7527 - }, - { - "l": "99.6", - "x": 14.25, - "y": 186.3439 - }, - { - "l": "99.6", - "x": 14.3333, - "y": 186.9144 - }, - { - "l": "99.6", - "x": 14.4167, - "y": 187.4754 - }, - { - "l": "99.6", - "x": 14.5, - "y": 187.9885 - }, - { - "l": "99.6", - "x": 14.5833, - "y": 188.492 - }, - { - "l": "99.6", - "x": 14.6667, - "y": 188.9631 - }, - { - "l": "99.6", - "x": 14.75, - "y": 189.4176 - }, - { - "l": "99.6", - "x": 14.8333, - "y": 189.8353 - }, - { - "l": "99.6", - "x": 14.9167, - "y": 190.2408 - }, - { - "l": "99.6", - "x": 15.0, - "y": 190.6139 - }, - { - "l": "99.6", - "x": 15.0833, - "y": 190.9748 - }, - { - "l": "99.6", - "x": 15.1667, - "y": 191.3078 - }, - { - "l": "99.6", - "x": 15.25, - "y": 191.6129 - }, - { - "l": "99.6", - "x": 15.3333, - "y": 191.9059 - }, - { - "l": "99.6", - "x": 15.4167, - "y": 192.1802 - }, - { - "l": "99.6", - "x": 15.5, - "y": 192.4313 - }, - { - "l": "99.6", - "x": 15.5833, - "y": 192.6705 - }, - { - "l": "99.6", - "x": 15.6667, - "y": 192.8978 - }, - { - "l": "99.6", - "x": 15.75, - "y": 193.1224 - }, - { - "l": "99.6", - "x": 15.8333, - "y": 193.3128 - }, - { - "l": "99.6", - "x": 15.9167, - "y": 193.5073 - }, - { - "l": "99.6", - "x": 16.0, - "y": 193.6836 - }, - { - "l": "99.6", - "x": 16.0833, - "y": 193.8416 - }, - { - "l": "99.6", - "x": 16.1667, - "y": 194.0038 - }, - { - "l": "99.6", - "x": 16.25, - "y": 194.1526 - }, - { - "l": "99.6", - "x": 16.3333, - "y": 194.2946 - }, - { - "l": "99.6", - "x": 16.4167, - "y": 194.4139 - }, - { - "l": "99.6", - "x": 16.5, - "y": 194.5469 - }, - { - "l": "99.6", - "x": 16.5833, - "y": 194.6574 - }, - { - "l": "99.6", - "x": 16.6667, - "y": 194.7612 - }, - { - "l": "99.6", - "x": 16.75, - "y": 194.863 - }, - { - "l": "99.6", - "x": 16.8333, - "y": 194.9692 - }, - { - "l": "99.6", - "x": 16.9167, - "y": 195.0531 - }, - { - "l": "99.6", - "x": 17.0, - "y": 195.1352 - }, - { - "l": "99.6", - "x": 17.0833, - "y": 195.2217 - }, - { - "l": "99.6", - "x": 17.1667, - "y": 195.3018 - }, - { - "l": "99.6", - "x": 17.25, - "y": 195.3595 - }, - { - "l": "99.6", - "x": 17.3333, - "y": 195.4266 - }, - { - "l": "99.6", - "x": 17.4167, - "y": 195.4983 - }, - { - "l": "99.6", - "x": 17.5, - "y": 195.5525 - }, - { - "l": "99.6", - "x": 17.5833, - "y": 195.6003 - }, - { - "l": "99.6", - "x": 17.6667, - "y": 195.6527 - }, - { - "l": "99.6", - "x": 17.75, - "y": 195.6924 - }, - { - "l": "99.6", - "x": 17.8333, - "y": 195.7321 - }, - { - "l": "99.6", - "x": 17.9167, - "y": 195.7543 - }, - { - "l": "99.6", - "x": 18.0, - "y": 195.7813 - }, - { - "l": "99.6", - "x": 18.0833, - "y": 195.8019 - }, - { - "l": "99.6", - "x": 18.1667, - "y": 195.8225 - }, - { - "l": "99.6", - "x": 18.25, - "y": 195.8414 - }, - { - "l": "99.6", - "x": 18.3333, - "y": 195.8604 - }, - { - "l": "99.6", - "x": 18.4167, - "y": 195.8731 - }, - { - "l": "99.6", - "x": 18.5, - "y": 195.8747 - }, - { - "l": "99.6", - "x": 18.5833, - "y": 195.881 - }, - { - "l": "99.6", - "x": 18.6667, - "y": 195.8763 - }, - { - "l": "99.6", - "x": 18.75, - "y": 195.8873 - }, - { - "l": "99.6", - "x": 18.8333, - "y": 195.8873 - }, - { - "l": "99.6", - "x": 18.9167, - "y": 195.8873 - }, - { - "l": "99.6", - "x": 19.0, - "y": 195.8826 - }, - { - "l": "99.6", - "x": 19.0833, - "y": 195.8936 - }, - { - "l": "99.6", - "x": 19.1667, - "y": 195.8889 - }, - { - "l": "99.6", - "x": 19.25, - "y": 195.8889 - }, - { - "l": "99.6", - "x": 19.3333, - "y": 195.9 - }, - { - "l": "99.6", - "x": 19.4167, - "y": 195.9 - }, - { - "l": "99.6", - "x": 19.5, - "y": 195.9 - }, - { - "l": "99.6", - "x": 19.5833, - "y": 195.8952 - }, - { - "l": "99.6", - "x": 19.6667, - "y": 195.8952 - }, - { - "l": "99.6", - "x": 19.75, - "y": 195.9015 - }, - { - "l": "99.6", - "x": 19.8333, - "y": 195.9079 - }, - { - "l": "99.6", - "x": 19.9167, - "y": 195.9142 - }, - { - "l": "99.6", - "x": 20.0, - "y": 195.9205 - }, - { - "l": "99.6", - "x": 20.0, - "y": 195.9205 - } - ] - } - ], - "weight": null, - "ofc": null, - "bmi": null - }, - "female": null - } - } - ] -}; - -var ukwhoHeightFemaleCentileData = { - "centile_data": [ - { - "uk90_preterm": { - "male": null, - "female": { - "height": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": -0.2875, - "y": 27.1357 - }, - { - "l": "0.4", - "x": -0.2683, - "y": 28.2546 - }, - { - "l": "0.4", - "x": -0.2491, - "y": 29.3979 - }, - { - "l": "0.4", - "x": -0.23, - "y": 30.5862 - }, - { - "l": "0.4", - "x": -0.2108, - "y": 31.841 - }, - { - "l": "0.4", - "x": -0.1916, - "y": 33.1643 - }, - { - "l": "0.4", - "x": -0.1725, - "y": 34.531 - }, - { - "l": "0.4", - "x": -0.1533, - "y": 35.9174 - }, - { - "l": "0.4", - "x": -0.1342, - "y": 37.3007 - }, - { - "l": "0.4", - "x": -0.115, - "y": 38.657 - }, - { - "l": "0.4", - "x": -0.0958, - "y": 39.9618 - }, - { - "l": "0.4", - "x": -0.0767, - "y": 41.1926 - }, - { - "l": "0.4", - "x": -0.0575, - "y": 42.3308 - }, - { - "l": "0.4", - "x": -0.0383, - "y": 43.3618 - }, - { - "l": "0.4", - "x": -0.0192, - "y": 44.2875 - }, - { - "l": "0.4", - "x": -0.0, - "y": 45.0865 - }, - { - "l": "0.4", - "x": 0.0192, - "y": 45.7532 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 46.3303 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 46.3303 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": -0.2875, - "y": 29.0006 - }, - { - "l": "2.0", - "x": -0.2683, - "y": 30.0904 - }, - { - "l": "2.0", - "x": -0.2491, - "y": 31.2007 - }, - { - "l": "2.0", - "x": -0.23, - "y": 32.3542 - }, - { - "l": "2.0", - "x": -0.2108, - "y": 33.5732 - }, - { - "l": "2.0", - "x": -0.1916, - "y": 34.8585 - }, - { - "l": "2.0", - "x": -0.1725, - "y": 36.1836 - }, - { - "l": "2.0", - "x": -0.1533, - "y": 37.5249 - }, - { - "l": "2.0", - "x": -0.1342, - "y": 38.86 - }, - { - "l": "2.0", - "x": -0.115, - "y": 40.1661 - }, - { - "l": "2.0", - "x": -0.0958, - "y": 41.419 - }, - { - "l": "2.0", - "x": -0.0767, - "y": 42.5972 - }, - { - "l": "2.0", - "x": -0.0575, - "y": 43.683 - }, - { - "l": "2.0", - "x": -0.0383, - "y": 44.6658 - }, - { - "l": "2.0", - "x": -0.0192, - "y": 45.5506 - }, - { - "l": "2.0", - "x": -0.0, - "y": 46.3192 - }, - { - "l": "2.0", - "x": 0.0192, - "y": 46.9712 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 47.5493 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 47.5493 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": -0.2875, - "y": 30.8656 - }, - { - "l": "9.0", - "x": -0.2683, - "y": 31.9261 - }, - { - "l": "9.0", - "x": -0.2491, - "y": 33.0035 - }, - { - "l": "9.0", - "x": -0.23, - "y": 34.1223 - }, - { - "l": "9.0", - "x": -0.2108, - "y": 35.3055 - }, - { - "l": "9.0", - "x": -0.1916, - "y": 36.5527 - }, - { - "l": "9.0", - "x": -0.1725, - "y": 37.8363 - }, - { - "l": "9.0", - "x": -0.1533, - "y": 39.1323 - }, - { - "l": "9.0", - "x": -0.1342, - "y": 40.4194 - }, - { - "l": "9.0", - "x": -0.115, - "y": 41.6751 - }, - { - "l": "9.0", - "x": -0.0958, - "y": 42.8763 - }, - { - "l": "9.0", - "x": -0.0767, - "y": 44.0017 - }, - { - "l": "9.0", - "x": -0.0575, - "y": 45.0353 - }, - { - "l": "9.0", - "x": -0.0383, - "y": 45.9698 - }, - { - "l": "9.0", - "x": -0.0192, - "y": 46.8136 - }, - { - "l": "9.0", - "x": -0.0, - "y": 47.5518 - }, - { - "l": "9.0", - "x": 0.0192, - "y": 48.1892 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 48.7684 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 48.7684 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": -0.2875, - "y": 32.7305 - }, - { - "l": "25.0", - "x": -0.2683, - "y": 33.7619 - }, - { - "l": "25.0", - "x": -0.2491, - "y": 34.8063 - }, - { - "l": "25.0", - "x": -0.23, - "y": 35.8903 - }, - { - "l": "25.0", - "x": -0.2108, - "y": 37.0377 - }, - { - "l": "25.0", - "x": -0.1916, - "y": 38.247 - }, - { - "l": "25.0", - "x": -0.1725, - "y": 39.4889 - }, - { - "l": "25.0", - "x": -0.1533, - "y": 40.7398 - }, - { - "l": "25.0", - "x": -0.1342, - "y": 41.9787 - }, - { - "l": "25.0", - "x": -0.115, - "y": 43.1841 - }, - { - "l": "25.0", - "x": -0.0958, - "y": 44.3335 - }, - { - "l": "25.0", - "x": -0.0767, - "y": 45.4062 - }, - { - "l": "25.0", - "x": -0.0575, - "y": 46.3875 - }, - { - "l": "25.0", - "x": -0.0383, - "y": 47.2737 - }, - { - "l": "25.0", - "x": -0.0192, - "y": 48.0766 - }, - { - "l": "25.0", - "x": -0.0, - "y": 48.7845 - }, - { - "l": "25.0", - "x": 0.0192, - "y": 49.4072 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 49.9874 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 49.9874 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": -0.2875, - "y": 34.5954 - }, - { - "l": "50.0", - "x": -0.2683, - "y": 35.5977 - }, - { - "l": "50.0", - "x": -0.2491, - "y": 36.6091 - }, - { - "l": "50.0", - "x": -0.23, - "y": 37.6583 - }, - { - "l": "50.0", - "x": -0.2108, - "y": 38.7699 - }, - { - "l": "50.0", - "x": -0.1916, - "y": 39.9412 - }, - { - "l": "50.0", - "x": -0.1725, - "y": 41.1415 - }, - { - "l": "50.0", - "x": -0.1533, - "y": 42.3472 - }, - { - "l": "50.0", - "x": -0.1342, - "y": 43.538 - }, - { - "l": "50.0", - "x": -0.115, - "y": 44.6931 - }, - { - "l": "50.0", - "x": -0.0958, - "y": 45.7908 - }, - { - "l": "50.0", - "x": -0.0767, - "y": 46.8107 - }, - { - "l": "50.0", - "x": -0.0575, - "y": 47.7397 - }, - { - "l": "50.0", - "x": -0.0383, - "y": 48.5777 - }, - { - "l": "50.0", - "x": -0.0192, - "y": 49.3396 - }, - { - "l": "50.0", - "x": -0.0, - "y": 50.0172 - }, - { - "l": "50.0", - "x": 0.0192, - "y": 50.6252 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 51.2065 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 51.2065 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": -0.2875, - "y": 36.4604 - }, - { - "l": "75.0", - "x": -0.2683, - "y": 37.4335 - }, - { - "l": "75.0", - "x": -0.2491, - "y": 38.4118 - }, - { - "l": "75.0", - "x": -0.23, - "y": 39.4263 - }, - { - "l": "75.0", - "x": -0.2108, - "y": 40.5021 - }, - { - "l": "75.0", - "x": -0.1916, - "y": 41.6354 - }, - { - "l": "75.0", - "x": -0.1725, - "y": 42.7942 - }, - { - "l": "75.0", - "x": -0.1533, - "y": 43.9547 - }, - { - "l": "75.0", - "x": -0.1342, - "y": 45.0973 - }, - { - "l": "75.0", - "x": -0.115, - "y": 46.2022 - }, - { - "l": "75.0", - "x": -0.0958, - "y": 47.248 - }, - { - "l": "75.0", - "x": -0.0767, - "y": 48.2152 - }, - { - "l": "75.0", - "x": -0.0575, - "y": 49.0919 - }, - { - "l": "75.0", - "x": -0.0383, - "y": 49.8817 - }, - { - "l": "75.0", - "x": -0.0192, - "y": 50.6026 - }, - { - "l": "75.0", - "x": -0.0, - "y": 51.2499 - }, - { - "l": "75.0", - "x": 0.0192, - "y": 51.8432 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 52.4255 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 52.4255 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": -0.2875, - "y": 38.3253 - }, - { - "l": "91.0", - "x": -0.2683, - "y": 39.2693 - }, - { - "l": "91.0", - "x": -0.2491, - "y": 40.2146 - }, - { - "l": "91.0", - "x": -0.23, - "y": 41.1944 - }, - { - "l": "91.0", - "x": -0.2108, - "y": 42.2343 - }, - { - "l": "91.0", - "x": -0.1916, - "y": 43.3296 - }, - { - "l": "91.0", - "x": -0.1725, - "y": 44.4468 - }, - { - "l": "91.0", - "x": -0.1533, - "y": 45.5622 - }, - { - "l": "91.0", - "x": -0.1342, - "y": 46.6566 - }, - { - "l": "91.0", - "x": -0.115, - "y": 47.7112 - }, - { - "l": "91.0", - "x": -0.0958, - "y": 48.7053 - }, - { - "l": "91.0", - "x": -0.0767, - "y": 49.6197 - }, - { - "l": "91.0", - "x": -0.0575, - "y": 50.4442 - }, - { - "l": "91.0", - "x": -0.0383, - "y": 51.1857 - }, - { - "l": "91.0", - "x": -0.0192, - "y": 51.8657 - }, - { - "l": "91.0", - "x": -0.0, - "y": 52.4825 - }, - { - "l": "91.0", - "x": 0.0192, - "y": 53.0612 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 53.6446 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 53.6446 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": -0.2875, - "y": 40.1902 - }, - { - "l": "98.0", - "x": -0.2683, - "y": 41.1051 - }, - { - "l": "98.0", - "x": -0.2491, - "y": 42.0174 - }, - { - "l": "98.0", - "x": -0.23, - "y": 42.9624 - }, - { - "l": "98.0", - "x": -0.2108, - "y": 43.9665 - }, - { - "l": "98.0", - "x": -0.1916, - "y": 45.0238 - }, - { - "l": "98.0", - "x": -0.1725, - "y": 46.0995 - }, - { - "l": "98.0", - "x": -0.1533, - "y": 47.1696 - }, - { - "l": "98.0", - "x": -0.1342, - "y": 48.216 - }, - { - "l": "98.0", - "x": -0.115, - "y": 49.2202 - }, - { - "l": "98.0", - "x": -0.0958, - "y": 50.1626 - }, - { - "l": "98.0", - "x": -0.0767, - "y": 51.0243 - }, - { - "l": "98.0", - "x": -0.0575, - "y": 51.7964 - }, - { - "l": "98.0", - "x": -0.0383, - "y": 52.4896 - }, - { - "l": "98.0", - "x": -0.0192, - "y": 53.1287 - }, - { - "l": "98.0", - "x": -0.0, - "y": 53.7152 - }, - { - "l": "98.0", - "x": 0.0192, - "y": 54.2792 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 54.8636 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 54.8636 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": -0.2875, - "y": 42.0552 - }, - { - "l": "99.6", - "x": -0.2683, - "y": 42.9408 - }, - { - "l": "99.6", - "x": -0.2491, - "y": 43.8202 - }, - { - "l": "99.6", - "x": -0.23, - "y": 44.7304 - }, - { - "l": "99.6", - "x": -0.2108, - "y": 45.6987 - }, - { - "l": "99.6", - "x": -0.1916, - "y": 46.718 - }, - { - "l": "99.6", - "x": -0.1725, - "y": 47.7521 - }, - { - "l": "99.6", - "x": -0.1533, - "y": 48.7771 - }, - { - "l": "99.6", - "x": -0.1342, - "y": 49.7753 - }, - { - "l": "99.6", - "x": -0.115, - "y": 50.7293 - }, - { - "l": "99.6", - "x": -0.0958, - "y": 51.6198 - }, - { - "l": "99.6", - "x": -0.0767, - "y": 52.4288 - }, - { - "l": "99.6", - "x": -0.0575, - "y": 53.1486 - }, - { - "l": "99.6", - "x": -0.0383, - "y": 53.7936 - }, - { - "l": "99.6", - "x": -0.0192, - "y": 54.3917 - }, - { - "l": "99.6", - "x": -0.0, - "y": 54.9479 - }, - { - "l": "99.6", - "x": 0.0192, - "y": 55.4972 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 56.0827 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 56.0827 - } - ] - } - ], - "weight": null, - "ofc": null, - "bmi": null - } - } - }, - { - "uk_who_infant": { - "male": null, - "female": { - "height": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 0.0383, - "y": 46.4377 - }, - { - "l": "0.4", - "x": 0.0575, - "y": 47.3359 - }, - { - "l": "0.4", - "x": 0.0767, - "y": 48.1894 - }, - { - "l": "0.4", - "x": 0.0958, - "y": 48.9988 - }, - { - "l": "0.4", - "x": 0.115, - "y": 49.7648 - }, - { - "l": "0.4", - "x": 0.1342, - "y": 50.4903 - }, - { - "l": "0.4", - "x": 0.1533, - "y": 51.1785 - }, - { - "l": "0.4", - "x": 0.1725, - "y": 51.8326 - }, - { - "l": "0.4", - "x": 0.1916, - "y": 52.4552 - }, - { - "l": "0.4", - "x": 0.2108, - "y": 53.0515 - }, - { - "l": "0.4", - "x": 0.23, - "y": 53.6202 - }, - { - "l": "0.4", - "x": 0.2491, - "y": 54.1662 - }, - { - "l": "0.4", - "x": 0.2683, - "y": 54.6799 - }, - { - "l": "0.4", - "x": 0.2875, - "y": 55.1804 - }, - { - "l": "0.4", - "x": 0.3066, - "y": 55.6668 - }, - { - "l": "0.4", - "x": 0.3258, - "y": 56.1376 - }, - { - "l": "0.4", - "x": 0.345, - "y": 56.5867 - }, - { - "l": "0.4", - "x": 0.3641, - "y": 57.0161 - }, - { - "l": "0.4", - "x": 0.3833, - "y": 57.4299 - }, - { - "l": "0.4", - "x": 0.4025, - "y": 57.8295 - }, - { - "l": "0.4", - "x": 0.4216, - "y": 58.2162 - }, - { - "l": "0.4", - "x": 0.4408, - "y": 58.5916 - }, - { - "l": "0.4", - "x": 0.46, - "y": 58.9561 - }, - { - "l": "0.4", - "x": 0.4791, - "y": 59.3109 - }, - { - "l": "0.4", - "x": 0.4983, - "y": 59.6568 - }, - { - "l": "0.4", - "x": 0.5175, - "y": 59.9963 - }, - { - "l": "0.4", - "x": 0.5366, - "y": 60.3287 - }, - { - "l": "0.4", - "x": 0.5558, - "y": 60.6547 - }, - { - "l": "0.4", - "x": 0.5749, - "y": 60.9747 - }, - { - "l": "0.4", - "x": 0.5941, - "y": 61.29 - }, - { - "l": "0.4", - "x": 0.6133, - "y": 61.6008 - }, - { - "l": "0.4", - "x": 0.6324, - "y": 61.9069 - }, - { - "l": "0.4", - "x": 0.6516, - "y": 62.2088 - }, - { - "l": "0.4", - "x": 0.6708, - "y": 62.5067 - }, - { - "l": "0.4", - "x": 0.6899, - "y": 62.8012 - }, - { - "l": "0.4", - "x": 0.7091, - "y": 63.0921 - }, - { - "l": "0.4", - "x": 0.7283, - "y": 63.3795 - }, - { - "l": "0.4", - "x": 0.7474, - "y": 63.6637 - }, - { - "l": "0.4", - "x": 0.7666, - "y": 63.945 - }, - { - "l": "0.4", - "x": 0.7858, - "y": 64.2234 - }, - { - "l": "0.4", - "x": 0.8049, - "y": 64.4988 - }, - { - "l": "0.4", - "x": 0.8241, - "y": 64.7713 - }, - { - "l": "0.4", - "x": 0.8433, - "y": 65.041 - }, - { - "l": "0.4", - "x": 0.8624, - "y": 65.3079 - }, - { - "l": "0.4", - "x": 0.8816, - "y": 65.5721 - }, - { - "l": "0.4", - "x": 0.9008, - "y": 65.8337 - }, - { - "l": "0.4", - "x": 0.9199, - "y": 66.0927 - }, - { - "l": "0.4", - "x": 0.9391, - "y": 66.3491 - }, - { - "l": "0.4", - "x": 0.9582, - "y": 66.6032 - }, - { - "l": "0.4", - "x": 0.9774, - "y": 66.8548 - }, - { - "l": "0.4", - "x": 0.9966, - "y": 67.1041 - }, - { - "l": "0.4", - "x": 1.0157, - "y": 67.3512 - }, - { - "l": "0.4", - "x": 1.0349, - "y": 67.596 - }, - { - "l": "0.4", - "x": 1.0541, - "y": 67.8388 - }, - { - "l": "0.4", - "x": 1.0732, - "y": 68.0794 - }, - { - "l": "0.4", - "x": 1.0924, - "y": 68.318 - }, - { - "l": "0.4", - "x": 1.1116, - "y": 68.5548 - }, - { - "l": "0.4", - "x": 1.1307, - "y": 68.7895 - }, - { - "l": "0.4", - "x": 1.1499, - "y": 69.0222 - }, - { - "l": "0.4", - "x": 1.1691, - "y": 69.2529 - }, - { - "l": "0.4", - "x": 1.1882, - "y": 69.4815 - }, - { - "l": "0.4", - "x": 1.2074, - "y": 69.7081 - }, - { - "l": "0.4", - "x": 1.2266, - "y": 69.9329 - }, - { - "l": "0.4", - "x": 1.2457, - "y": 70.1558 - }, - { - "l": "0.4", - "x": 1.2649, - "y": 70.3771 - }, - { - "l": "0.4", - "x": 1.2841, - "y": 70.5966 - }, - { - "l": "0.4", - "x": 1.3032, - "y": 70.8145 - }, - { - "l": "0.4", - "x": 1.3224, - "y": 71.0308 - }, - { - "l": "0.4", - "x": 1.3415, - "y": 71.2456 - }, - { - "l": "0.4", - "x": 1.3607, - "y": 71.4591 - }, - { - "l": "0.4", - "x": 1.3799, - "y": 71.671 - }, - { - "l": "0.4", - "x": 1.399, - "y": 71.8814 - }, - { - "l": "0.4", - "x": 1.4182, - "y": 72.0903 - }, - { - "l": "0.4", - "x": 1.4374, - "y": 72.2974 - }, - { - "l": "0.4", - "x": 1.4565, - "y": 72.5031 - }, - { - "l": "0.4", - "x": 1.4757, - "y": 72.7073 - }, - { - "l": "0.4", - "x": 1.4949, - "y": 72.9101 - }, - { - "l": "0.4", - "x": 1.514, - "y": 73.1117 - }, - { - "l": "0.4", - "x": 1.5332, - "y": 73.3121 - }, - { - "l": "0.4", - "x": 1.5524, - "y": 73.511 - }, - { - "l": "0.4", - "x": 1.5715, - "y": 73.7086 - }, - { - "l": "0.4", - "x": 1.5907, - "y": 73.9048 - }, - { - "l": "0.4", - "x": 1.6099, - "y": 74.0995 - }, - { - "l": "0.4", - "x": 1.629, - "y": 74.2929 - }, - { - "l": "0.4", - "x": 1.6482, - "y": 74.4851 - }, - { - "l": "0.4", - "x": 1.6674, - "y": 74.676 - }, - { - "l": "0.4", - "x": 1.6865, - "y": 74.8658 - }, - { - "l": "0.4", - "x": 1.7057, - "y": 75.0544 - }, - { - "l": "0.4", - "x": 1.7248, - "y": 75.2419 - }, - { - "l": "0.4", - "x": 1.744, - "y": 75.4282 - }, - { - "l": "0.4", - "x": 1.7632, - "y": 75.6137 - }, - { - "l": "0.4", - "x": 1.7823, - "y": 75.7982 - }, - { - "l": "0.4", - "x": 1.8015, - "y": 75.9816 - }, - { - "l": "0.4", - "x": 1.8207, - "y": 76.1638 - }, - { - "l": "0.4", - "x": 1.8398, - "y": 76.3446 - }, - { - "l": "0.4", - "x": 1.859, - "y": 76.5241 - }, - { - "l": "0.4", - "x": 1.8782, - "y": 76.7024 - }, - { - "l": "0.4", - "x": 1.8973, - "y": 76.8795 - }, - { - "l": "0.4", - "x": 1.9165, - "y": 77.0556 - }, - { - "l": "0.4", - "x": 1.9357, - "y": 77.229 - }, - { - "l": "0.4", - "x": 1.9548, - "y": 77.4023 - }, - { - "l": "0.4", - "x": 1.974, - "y": 77.5756 - }, - { - "l": "0.4", - "x": 1.9932, - "y": 77.7488 - }, - { - "l": "0.4", - "x": 2.0, - "y": 77.8106 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 0.0383, - "y": 47.7063 - }, - { - "l": "2.0", - "x": 0.0575, - "y": 48.6193 - }, - { - "l": "2.0", - "x": 0.0767, - "y": 49.4873 - }, - { - "l": "2.0", - "x": 0.0958, - "y": 50.3104 - }, - { - "l": "2.0", - "x": 0.115, - "y": 51.0897 - }, - { - "l": "2.0", - "x": 0.1342, - "y": 51.8279 - }, - { - "l": "2.0", - "x": 0.1533, - "y": 52.5281 - }, - { - "l": "2.0", - "x": 0.1725, - "y": 53.1935 - }, - { - "l": "2.0", - "x": 0.1916, - "y": 53.8273 - }, - { - "l": "2.0", - "x": 0.2108, - "y": 54.434 - }, - { - "l": "2.0", - "x": 0.23, - "y": 55.0132 - }, - { - "l": "2.0", - "x": 0.2491, - "y": 55.569 - }, - { - "l": "2.0", - "x": 0.2683, - "y": 56.0949 - }, - { - "l": "2.0", - "x": 0.2875, - "y": 56.6054 - }, - { - "l": "2.0", - "x": 0.3066, - "y": 57.0999 - }, - { - "l": "2.0", - "x": 0.3258, - "y": 57.5779 - }, - { - "l": "2.0", - "x": 0.345, - "y": 58.0349 - }, - { - "l": "2.0", - "x": 0.3641, - "y": 58.4725 - }, - { - "l": "2.0", - "x": 0.3833, - "y": 58.8944 - }, - { - "l": "2.0", - "x": 0.4025, - "y": 59.3019 - }, - { - "l": "2.0", - "x": 0.4216, - "y": 59.6964 - }, - { - "l": "2.0", - "x": 0.4408, - "y": 60.0794 - }, - { - "l": "2.0", - "x": 0.46, - "y": 60.4515 - }, - { - "l": "2.0", - "x": 0.4791, - "y": 60.8137 - }, - { - "l": "2.0", - "x": 0.4983, - "y": 61.1671 - }, - { - "l": "2.0", - "x": 0.5175, - "y": 61.514 - }, - { - "l": "2.0", - "x": 0.5366, - "y": 61.854 - }, - { - "l": "2.0", - "x": 0.5558, - "y": 62.1874 - }, - { - "l": "2.0", - "x": 0.5749, - "y": 62.515 - }, - { - "l": "2.0", - "x": 0.5941, - "y": 62.8378 - }, - { - "l": "2.0", - "x": 0.6133, - "y": 63.1561 - }, - { - "l": "2.0", - "x": 0.6324, - "y": 63.4699 - }, - { - "l": "2.0", - "x": 0.6516, - "y": 63.7794 - }, - { - "l": "2.0", - "x": 0.6708, - "y": 64.085 - }, - { - "l": "2.0", - "x": 0.6899, - "y": 64.3872 - }, - { - "l": "2.0", - "x": 0.7091, - "y": 64.6859 - }, - { - "l": "2.0", - "x": 0.7283, - "y": 64.9811 - }, - { - "l": "2.0", - "x": 0.7474, - "y": 65.2731 - }, - { - "l": "2.0", - "x": 0.7666, - "y": 65.5623 - }, - { - "l": "2.0", - "x": 0.7858, - "y": 65.8486 - }, - { - "l": "2.0", - "x": 0.8049, - "y": 66.132 - }, - { - "l": "2.0", - "x": 0.8241, - "y": 66.4125 - }, - { - "l": "2.0", - "x": 0.8433, - "y": 66.6902 - }, - { - "l": "2.0", - "x": 0.8624, - "y": 66.9652 - }, - { - "l": "2.0", - "x": 0.8816, - "y": 67.2376 - }, - { - "l": "2.0", - "x": 0.9008, - "y": 67.5074 - }, - { - "l": "2.0", - "x": 0.9199, - "y": 67.7746 - }, - { - "l": "2.0", - "x": 0.9391, - "y": 68.0393 - }, - { - "l": "2.0", - "x": 0.9582, - "y": 68.3017 - }, - { - "l": "2.0", - "x": 0.9774, - "y": 68.5616 - }, - { - "l": "2.0", - "x": 0.9966, - "y": 68.8193 - }, - { - "l": "2.0", - "x": 1.0157, - "y": 69.0747 - }, - { - "l": "2.0", - "x": 1.0349, - "y": 69.3279 - }, - { - "l": "2.0", - "x": 1.0541, - "y": 69.579 - }, - { - "l": "2.0", - "x": 1.0732, - "y": 69.828 - }, - { - "l": "2.0", - "x": 1.0924, - "y": 70.0751 - }, - { - "l": "2.0", - "x": 1.1116, - "y": 70.3201 - }, - { - "l": "2.0", - "x": 1.1307, - "y": 70.5632 - }, - { - "l": "2.0", - "x": 1.1499, - "y": 70.8043 - }, - { - "l": "2.0", - "x": 1.1691, - "y": 71.0434 - }, - { - "l": "2.0", - "x": 1.1882, - "y": 71.2803 - }, - { - "l": "2.0", - "x": 1.2074, - "y": 71.5154 - }, - { - "l": "2.0", - "x": 1.2266, - "y": 71.7487 - }, - { - "l": "2.0", - "x": 1.2457, - "y": 71.9801 - }, - { - "l": "2.0", - "x": 1.2649, - "y": 72.2098 - }, - { - "l": "2.0", - "x": 1.2841, - "y": 72.4378 - }, - { - "l": "2.0", - "x": 1.3032, - "y": 72.6642 - }, - { - "l": "2.0", - "x": 1.3224, - "y": 72.8889 - }, - { - "l": "2.0", - "x": 1.3415, - "y": 73.1122 - }, - { - "l": "2.0", - "x": 1.3607, - "y": 73.334 - }, - { - "l": "2.0", - "x": 1.3799, - "y": 73.5543 - }, - { - "l": "2.0", - "x": 1.399, - "y": 73.7731 - }, - { - "l": "2.0", - "x": 1.4182, - "y": 73.9903 - }, - { - "l": "2.0", - "x": 1.4374, - "y": 74.2059 - }, - { - "l": "2.0", - "x": 1.4565, - "y": 74.42 - }, - { - "l": "2.0", - "x": 1.4757, - "y": 74.6326 - }, - { - "l": "2.0", - "x": 1.4949, - "y": 74.8438 - }, - { - "l": "2.0", - "x": 1.514, - "y": 75.0538 - }, - { - "l": "2.0", - "x": 1.5332, - "y": 75.2624 - }, - { - "l": "2.0", - "x": 1.5524, - "y": 75.4697 - }, - { - "l": "2.0", - "x": 1.5715, - "y": 75.6756 - }, - { - "l": "2.0", - "x": 1.5907, - "y": 75.8801 - }, - { - "l": "2.0", - "x": 1.6099, - "y": 76.0833 - }, - { - "l": "2.0", - "x": 1.629, - "y": 76.2851 - }, - { - "l": "2.0", - "x": 1.6482, - "y": 76.4856 - }, - { - "l": "2.0", - "x": 1.6674, - "y": 76.6849 - }, - { - "l": "2.0", - "x": 1.6865, - "y": 76.883 - }, - { - "l": "2.0", - "x": 1.7057, - "y": 77.08 - }, - { - "l": "2.0", - "x": 1.7248, - "y": 77.2758 - }, - { - "l": "2.0", - "x": 1.744, - "y": 77.4704 - }, - { - "l": "2.0", - "x": 1.7632, - "y": 77.6641 - }, - { - "l": "2.0", - "x": 1.7823, - "y": 77.8568 - }, - { - "l": "2.0", - "x": 1.8015, - "y": 78.0482 - }, - { - "l": "2.0", - "x": 1.8207, - "y": 78.2385 - }, - { - "l": "2.0", - "x": 1.8398, - "y": 78.4276 - }, - { - "l": "2.0", - "x": 1.859, - "y": 78.6152 - }, - { - "l": "2.0", - "x": 1.8782, - "y": 78.8017 - }, - { - "l": "2.0", - "x": 1.8973, - "y": 78.987 - }, - { - "l": "2.0", - "x": 1.9165, - "y": 79.1713 - }, - { - "l": "2.0", - "x": 1.9357, - "y": 79.3528 - }, - { - "l": "2.0", - "x": 1.9548, - "y": 79.5342 - }, - { - "l": "2.0", - "x": 1.974, - "y": 79.7157 - }, - { - "l": "2.0", - "x": 1.9932, - "y": 79.897 - }, - { - "l": "2.0", - "x": 2.0, - "y": 79.9618 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 0.0383, - "y": 48.9749 - }, - { - "l": "9.0", - "x": 0.0575, - "y": 49.9027 - }, - { - "l": "9.0", - "x": 0.0767, - "y": 50.7852 - }, - { - "l": "9.0", - "x": 0.0958, - "y": 51.6221 - }, - { - "l": "9.0", - "x": 0.115, - "y": 52.4145 - }, - { - "l": "9.0", - "x": 0.1342, - "y": 53.1655 - }, - { - "l": "9.0", - "x": 0.1533, - "y": 53.8776 - }, - { - "l": "9.0", - "x": 0.1725, - "y": 54.5543 - }, - { - "l": "9.0", - "x": 0.1916, - "y": 55.1994 - }, - { - "l": "9.0", - "x": 0.2108, - "y": 55.8165 - }, - { - "l": "9.0", - "x": 0.23, - "y": 56.4062 - }, - { - "l": "9.0", - "x": 0.2491, - "y": 56.9718 - }, - { - "l": "9.0", - "x": 0.2683, - "y": 57.5098 - }, - { - "l": "9.0", - "x": 0.2875, - "y": 58.0303 - }, - { - "l": "9.0", - "x": 0.3066, - "y": 58.5331 - }, - { - "l": "9.0", - "x": 0.3258, - "y": 59.0182 - }, - { - "l": "9.0", - "x": 0.345, - "y": 59.483 - }, - { - "l": "9.0", - "x": 0.3641, - "y": 59.9289 - }, - { - "l": "9.0", - "x": 0.3833, - "y": 60.3589 - }, - { - "l": "9.0", - "x": 0.4025, - "y": 60.7744 - }, - { - "l": "9.0", - "x": 0.4216, - "y": 61.1767 - }, - { - "l": "9.0", - "x": 0.4408, - "y": 61.5673 - }, - { - "l": "9.0", - "x": 0.46, - "y": 61.9469 - }, - { - "l": "9.0", - "x": 0.4791, - "y": 62.3166 - }, - { - "l": "9.0", - "x": 0.4983, - "y": 62.6774 - }, - { - "l": "9.0", - "x": 0.5175, - "y": 63.0318 - }, - { - "l": "9.0", - "x": 0.5366, - "y": 63.3792 - }, - { - "l": "9.0", - "x": 0.5558, - "y": 63.7202 - }, - { - "l": "9.0", - "x": 0.5749, - "y": 64.0553 - }, - { - "l": "9.0", - "x": 0.5941, - "y": 64.3856 - }, - { - "l": "9.0", - "x": 0.6133, - "y": 64.7115 - }, - { - "l": "9.0", - "x": 0.6324, - "y": 65.0329 - }, - { - "l": "9.0", - "x": 0.6516, - "y": 65.3501 - }, - { - "l": "9.0", - "x": 0.6708, - "y": 65.6634 - }, - { - "l": "9.0", - "x": 0.6899, - "y": 65.9733 - }, - { - "l": "9.0", - "x": 0.7091, - "y": 66.2797 - }, - { - "l": "9.0", - "x": 0.7283, - "y": 66.5827 - }, - { - "l": "9.0", - "x": 0.7474, - "y": 66.8826 - }, - { - "l": "9.0", - "x": 0.7666, - "y": 67.1797 - }, - { - "l": "9.0", - "x": 0.7858, - "y": 67.4738 - }, - { - "l": "9.0", - "x": 0.8049, - "y": 67.7651 - }, - { - "l": "9.0", - "x": 0.8241, - "y": 68.0536 - }, - { - "l": "9.0", - "x": 0.8433, - "y": 68.3394 - }, - { - "l": "9.0", - "x": 0.8624, - "y": 68.6225 - }, - { - "l": "9.0", - "x": 0.8816, - "y": 68.9031 - }, - { - "l": "9.0", - "x": 0.9008, - "y": 69.181 - }, - { - "l": "9.0", - "x": 0.9199, - "y": 69.4565 - }, - { - "l": "9.0", - "x": 0.9391, - "y": 69.7295 - }, - { - "l": "9.0", - "x": 0.9582, - "y": 70.0001 - }, - { - "l": "9.0", - "x": 0.9774, - "y": 70.2684 - }, - { - "l": "9.0", - "x": 0.9966, - "y": 70.5344 - }, - { - "l": "9.0", - "x": 1.0157, - "y": 70.7982 - }, - { - "l": "9.0", - "x": 1.0349, - "y": 71.0598 - }, - { - "l": "9.0", - "x": 1.0541, - "y": 71.3193 - }, - { - "l": "9.0", - "x": 1.0732, - "y": 71.5767 - }, - { - "l": "9.0", - "x": 1.0924, - "y": 71.8321 - }, - { - "l": "9.0", - "x": 1.1116, - "y": 72.0855 - }, - { - "l": "9.0", - "x": 1.1307, - "y": 72.3369 - }, - { - "l": "9.0", - "x": 1.1499, - "y": 72.5863 - }, - { - "l": "9.0", - "x": 1.1691, - "y": 72.8338 - }, - { - "l": "9.0", - "x": 1.1882, - "y": 73.0792 - }, - { - "l": "9.0", - "x": 1.2074, - "y": 73.3227 - }, - { - "l": "9.0", - "x": 1.2266, - "y": 73.5644 - }, - { - "l": "9.0", - "x": 1.2457, - "y": 73.8043 - }, - { - "l": "9.0", - "x": 1.2649, - "y": 74.0425 - }, - { - "l": "9.0", - "x": 1.2841, - "y": 74.279 - }, - { - "l": "9.0", - "x": 1.3032, - "y": 74.5138 - }, - { - "l": "9.0", - "x": 1.3224, - "y": 74.747 - }, - { - "l": "9.0", - "x": 1.3415, - "y": 74.9787 - }, - { - "l": "9.0", - "x": 1.3607, - "y": 75.2089 - }, - { - "l": "9.0", - "x": 1.3799, - "y": 75.4376 - }, - { - "l": "9.0", - "x": 1.399, - "y": 75.6648 - }, - { - "l": "9.0", - "x": 1.4182, - "y": 75.8904 - }, - { - "l": "9.0", - "x": 1.4374, - "y": 76.1143 - }, - { - "l": "9.0", - "x": 1.4565, - "y": 76.3368 - }, - { - "l": "9.0", - "x": 1.4757, - "y": 76.5579 - }, - { - "l": "9.0", - "x": 1.4949, - "y": 76.7775 - }, - { - "l": "9.0", - "x": 1.514, - "y": 76.9958 - }, - { - "l": "9.0", - "x": 1.5332, - "y": 77.2128 - }, - { - "l": "9.0", - "x": 1.5524, - "y": 77.4284 - }, - { - "l": "9.0", - "x": 1.5715, - "y": 77.6426 - }, - { - "l": "9.0", - "x": 1.5907, - "y": 77.8555 - }, - { - "l": "9.0", - "x": 1.6099, - "y": 78.067 - }, - { - "l": "9.0", - "x": 1.629, - "y": 78.2772 - }, - { - "l": "9.0", - "x": 1.6482, - "y": 78.4861 - }, - { - "l": "9.0", - "x": 1.6674, - "y": 78.6938 - }, - { - "l": "9.0", - "x": 1.6865, - "y": 78.9003 - }, - { - "l": "9.0", - "x": 1.7057, - "y": 79.1056 - }, - { - "l": "9.0", - "x": 1.7248, - "y": 79.3097 - }, - { - "l": "9.0", - "x": 1.744, - "y": 79.5126 - }, - { - "l": "9.0", - "x": 1.7632, - "y": 79.7145 - }, - { - "l": "9.0", - "x": 1.7823, - "y": 79.9153 - }, - { - "l": "9.0", - "x": 1.8015, - "y": 80.1149 - }, - { - "l": "9.0", - "x": 1.8207, - "y": 80.3133 - }, - { - "l": "9.0", - "x": 1.8398, - "y": 80.5105 - }, - { - "l": "9.0", - "x": 1.859, - "y": 80.7063 - }, - { - "l": "9.0", - "x": 1.8782, - "y": 80.901 - }, - { - "l": "9.0", - "x": 1.8973, - "y": 81.0945 - }, - { - "l": "9.0", - "x": 1.9165, - "y": 81.2869 - }, - { - "l": "9.0", - "x": 1.9357, - "y": 81.4766 - }, - { - "l": "9.0", - "x": 1.9548, - "y": 81.6662 - }, - { - "l": "9.0", - "x": 1.974, - "y": 81.8557 - }, - { - "l": "9.0", - "x": 1.9932, - "y": 82.0453 - }, - { - "l": "9.0", - "x": 2.0, - "y": 82.113 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 0.0383, - "y": 50.2434 - }, - { - "l": "25.0", - "x": 0.0575, - "y": 51.1861 - }, - { - "l": "25.0", - "x": 0.0767, - "y": 52.083 - }, - { - "l": "25.0", - "x": 0.0958, - "y": 52.9337 - }, - { - "l": "25.0", - "x": 0.115, - "y": 53.7394 - }, - { - "l": "25.0", - "x": 0.1342, - "y": 54.503 - }, - { - "l": "25.0", - "x": 0.1533, - "y": 55.2272 - }, - { - "l": "25.0", - "x": 0.1725, - "y": 55.9152 - }, - { - "l": "25.0", - "x": 0.1916, - "y": 56.5715 - }, - { - "l": "25.0", - "x": 0.2108, - "y": 57.1991 - }, - { - "l": "25.0", - "x": 0.23, - "y": 57.7992 - }, - { - "l": "25.0", - "x": 0.2491, - "y": 58.3745 - }, - { - "l": "25.0", - "x": 0.2683, - "y": 58.9248 - }, - { - "l": "25.0", - "x": 0.2875, - "y": 59.4552 - }, - { - "l": "25.0", - "x": 0.3066, - "y": 59.9663 - }, - { - "l": "25.0", - "x": 0.3258, - "y": 60.4586 - }, - { - "l": "25.0", - "x": 0.345, - "y": 60.9311 - }, - { - "l": "25.0", - "x": 0.3641, - "y": 61.3853 - }, - { - "l": "25.0", - "x": 0.3833, - "y": 61.8234 - }, - { - "l": "25.0", - "x": 0.4025, - "y": 62.2469 - }, - { - "l": "25.0", - "x": 0.4216, - "y": 62.6569 - }, - { - "l": "25.0", - "x": 0.4408, - "y": 63.0552 - }, - { - "l": "25.0", - "x": 0.46, - "y": 63.4423 - }, - { - "l": "25.0", - "x": 0.4791, - "y": 63.8194 - }, - { - "l": "25.0", - "x": 0.4983, - "y": 64.1877 - }, - { - "l": "25.0", - "x": 0.5175, - "y": 64.5496 - }, - { - "l": "25.0", - "x": 0.5366, - "y": 64.9045 - }, - { - "l": "25.0", - "x": 0.5558, - "y": 65.2529 - }, - { - "l": "25.0", - "x": 0.5749, - "y": 65.5955 - }, - { - "l": "25.0", - "x": 0.5941, - "y": 65.9334 - }, - { - "l": "25.0", - "x": 0.6133, - "y": 66.2669 - }, - { - "l": "25.0", - "x": 0.6324, - "y": 66.5959 - }, - { - "l": "25.0", - "x": 0.6516, - "y": 66.9207 - }, - { - "l": "25.0", - "x": 0.6708, - "y": 67.2417 - }, - { - "l": "25.0", - "x": 0.6899, - "y": 67.5593 - }, - { - "l": "25.0", - "x": 0.7091, - "y": 67.8735 - }, - { - "l": "25.0", - "x": 0.7283, - "y": 68.1843 - }, - { - "l": "25.0", - "x": 0.7474, - "y": 68.492 - }, - { - "l": "25.0", - "x": 0.7666, - "y": 68.797 - }, - { - "l": "25.0", - "x": 0.7858, - "y": 69.099 - }, - { - "l": "25.0", - "x": 0.8049, - "y": 69.3983 - }, - { - "l": "25.0", - "x": 0.8241, - "y": 69.6948 - }, - { - "l": "25.0", - "x": 0.8433, - "y": 69.9886 - }, - { - "l": "25.0", - "x": 0.8624, - "y": 70.2799 - }, - { - "l": "25.0", - "x": 0.8816, - "y": 70.5686 - }, - { - "l": "25.0", - "x": 0.9008, - "y": 70.8547 - }, - { - "l": "25.0", - "x": 0.9199, - "y": 71.1384 - }, - { - "l": "25.0", - "x": 0.9391, - "y": 71.4197 - }, - { - "l": "25.0", - "x": 0.9582, - "y": 71.6986 - }, - { - "l": "25.0", - "x": 0.9774, - "y": 71.9752 - }, - { - "l": "25.0", - "x": 0.9966, - "y": 72.2496 - }, - { - "l": "25.0", - "x": 1.0157, - "y": 72.5217 - }, - { - "l": "25.0", - "x": 1.0349, - "y": 72.7917 - }, - { - "l": "25.0", - "x": 1.0541, - "y": 73.0596 - }, - { - "l": "25.0", - "x": 1.0732, - "y": 73.3254 - }, - { - "l": "25.0", - "x": 1.0924, - "y": 73.5891 - }, - { - "l": "25.0", - "x": 1.1116, - "y": 73.8508 - }, - { - "l": "25.0", - "x": 1.1307, - "y": 74.1106 - }, - { - "l": "25.0", - "x": 1.1499, - "y": 74.3684 - }, - { - "l": "25.0", - "x": 1.1691, - "y": 74.6242 - }, - { - "l": "25.0", - "x": 1.1882, - "y": 74.8781 - }, - { - "l": "25.0", - "x": 1.2074, - "y": 75.13 - }, - { - "l": "25.0", - "x": 1.2266, - "y": 75.3802 - }, - { - "l": "25.0", - "x": 1.2457, - "y": 75.6286 - }, - { - "l": "25.0", - "x": 1.2649, - "y": 75.8752 - }, - { - "l": "25.0", - "x": 1.2841, - "y": 76.1202 - }, - { - "l": "25.0", - "x": 1.3032, - "y": 76.3635 - }, - { - "l": "25.0", - "x": 1.3224, - "y": 76.6052 - }, - { - "l": "25.0", - "x": 1.3415, - "y": 76.8453 - }, - { - "l": "25.0", - "x": 1.3607, - "y": 77.0839 - }, - { - "l": "25.0", - "x": 1.3799, - "y": 77.3209 - }, - { - "l": "25.0", - "x": 1.399, - "y": 77.5564 - }, - { - "l": "25.0", - "x": 1.4182, - "y": 77.7904 - }, - { - "l": "25.0", - "x": 1.4374, - "y": 78.0228 - }, - { - "l": "25.0", - "x": 1.4565, - "y": 78.2537 - }, - { - "l": "25.0", - "x": 1.4757, - "y": 78.4831 - }, - { - "l": "25.0", - "x": 1.4949, - "y": 78.7111 - }, - { - "l": "25.0", - "x": 1.514, - "y": 78.9378 - }, - { - "l": "25.0", - "x": 1.5332, - "y": 79.1631 - }, - { - "l": "25.0", - "x": 1.5524, - "y": 79.387 - }, - { - "l": "25.0", - "x": 1.5715, - "y": 79.6096 - }, - { - "l": "25.0", - "x": 1.5907, - "y": 79.8308 - }, - { - "l": "25.0", - "x": 1.6099, - "y": 80.0507 - }, - { - "l": "25.0", - "x": 1.629, - "y": 80.2693 - }, - { - "l": "25.0", - "x": 1.6482, - "y": 80.4866 - }, - { - "l": "25.0", - "x": 1.6674, - "y": 80.7027 - }, - { - "l": "25.0", - "x": 1.6865, - "y": 80.9176 - }, - { - "l": "25.0", - "x": 1.7057, - "y": 81.1312 - }, - { - "l": "25.0", - "x": 1.7248, - "y": 81.3436 - }, - { - "l": "25.0", - "x": 1.744, - "y": 81.5549 - }, - { - "l": "25.0", - "x": 1.7632, - "y": 81.7649 - }, - { - "l": "25.0", - "x": 1.7823, - "y": 81.9738 - }, - { - "l": "25.0", - "x": 1.8015, - "y": 82.1815 - }, - { - "l": "25.0", - "x": 1.8207, - "y": 82.3881 - }, - { - "l": "25.0", - "x": 1.8398, - "y": 82.5934 - }, - { - "l": "25.0", - "x": 1.859, - "y": 82.7974 - }, - { - "l": "25.0", - "x": 1.8782, - "y": 83.0003 - }, - { - "l": "25.0", - "x": 1.8973, - "y": 83.202 - }, - { - "l": "25.0", - "x": 1.9165, - "y": 83.4026 - }, - { - "l": "25.0", - "x": 1.9357, - "y": 83.6004 - }, - { - "l": "25.0", - "x": 1.9548, - "y": 83.7981 - }, - { - "l": "25.0", - "x": 1.974, - "y": 83.9958 - }, - { - "l": "25.0", - "x": 1.9932, - "y": 84.1935 - }, - { - "l": "25.0", - "x": 2.0, - "y": 84.2641 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 0.0383, - "y": 51.512 - }, - { - "l": "50.0", - "x": 0.0575, - "y": 52.4695 - }, - { - "l": "50.0", - "x": 0.0767, - "y": 53.3809 - }, - { - "l": "50.0", - "x": 0.0958, - "y": 54.2454 - }, - { - "l": "50.0", - "x": 0.115, - "y": 55.0642 - }, - { - "l": "50.0", - "x": 0.1342, - "y": 55.8406 - }, - { - "l": "50.0", - "x": 0.1533, - "y": 56.5767 - }, - { - "l": "50.0", - "x": 0.1725, - "y": 57.2761 - }, - { - "l": "50.0", - "x": 0.1916, - "y": 57.9436 - }, - { - "l": "50.0", - "x": 0.2108, - "y": 58.5816 - }, - { - "l": "50.0", - "x": 0.23, - "y": 59.1922 - }, - { - "l": "50.0", - "x": 0.2491, - "y": 59.7773 - }, - { - "l": "50.0", - "x": 0.2683, - "y": 60.3398 - }, - { - "l": "50.0", - "x": 0.2875, - "y": 60.8802 - }, - { - "l": "50.0", - "x": 0.3066, - "y": 61.3995 - }, - { - "l": "50.0", - "x": 0.3258, - "y": 61.8989 - }, - { - "l": "50.0", - "x": 0.345, - "y": 62.3792 - }, - { - "l": "50.0", - "x": 0.3641, - "y": 62.8417 - }, - { - "l": "50.0", - "x": 0.3833, - "y": 63.288 - }, - { - "l": "50.0", - "x": 0.4025, - "y": 63.7193 - }, - { - "l": "50.0", - "x": 0.4216, - "y": 64.1372 - }, - { - "l": "50.0", - "x": 0.4408, - "y": 64.543 - }, - { - "l": "50.0", - "x": 0.46, - "y": 64.9377 - }, - { - "l": "50.0", - "x": 0.4791, - "y": 65.3223 - }, - { - "l": "50.0", - "x": 0.4983, - "y": 65.698 - }, - { - "l": "50.0", - "x": 0.5175, - "y": 66.0673 - }, - { - "l": "50.0", - "x": 0.5366, - "y": 66.4297 - }, - { - "l": "50.0", - "x": 0.5558, - "y": 66.7857 - }, - { - "l": "50.0", - "x": 0.5749, - "y": 67.1358 - }, - { - "l": "50.0", - "x": 0.5941, - "y": 67.4812 - }, - { - "l": "50.0", - "x": 0.6133, - "y": 67.8223 - }, - { - "l": "50.0", - "x": 0.6324, - "y": 68.1589 - }, - { - "l": "50.0", - "x": 0.6516, - "y": 68.4913 - }, - { - "l": "50.0", - "x": 0.6708, - "y": 68.82 - }, - { - "l": "50.0", - "x": 0.6899, - "y": 69.1454 - }, - { - "l": "50.0", - "x": 0.7091, - "y": 69.4673 - }, - { - "l": "50.0", - "x": 0.7283, - "y": 69.7859 - }, - { - "l": "50.0", - "x": 0.7474, - "y": 70.1015 - }, - { - "l": "50.0", - "x": 0.7666, - "y": 70.4143 - }, - { - "l": "50.0", - "x": 0.7858, - "y": 70.7243 - }, - { - "l": "50.0", - "x": 0.8049, - "y": 71.0315 - }, - { - "l": "50.0", - "x": 0.8241, - "y": 71.3359 - }, - { - "l": "50.0", - "x": 0.8433, - "y": 71.6378 - }, - { - "l": "50.0", - "x": 0.8624, - "y": 71.9372 - }, - { - "l": "50.0", - "x": 0.8816, - "y": 72.2341 - }, - { - "l": "50.0", - "x": 0.9008, - "y": 72.5284 - }, - { - "l": "50.0", - "x": 0.9199, - "y": 72.8204 - }, - { - "l": "50.0", - "x": 0.9391, - "y": 73.1099 - }, - { - "l": "50.0", - "x": 0.9582, - "y": 73.3971 - }, - { - "l": "50.0", - "x": 0.9774, - "y": 73.6821 - }, - { - "l": "50.0", - "x": 0.9966, - "y": 73.9648 - }, - { - "l": "50.0", - "x": 1.0157, - "y": 74.2453 - }, - { - "l": "50.0", - "x": 1.0349, - "y": 74.5236 - }, - { - "l": "50.0", - "x": 1.0541, - "y": 74.7999 - }, - { - "l": "50.0", - "x": 1.0732, - "y": 75.074 - }, - { - "l": "50.0", - "x": 1.0924, - "y": 75.3461 - }, - { - "l": "50.0", - "x": 1.1116, - "y": 75.6162 - }, - { - "l": "50.0", - "x": 1.1307, - "y": 75.8843 - }, - { - "l": "50.0", - "x": 1.1499, - "y": 76.1504 - }, - { - "l": "50.0", - "x": 1.1691, - "y": 76.4146 - }, - { - "l": "50.0", - "x": 1.1882, - "y": 76.6769 - }, - { - "l": "50.0", - "x": 1.2074, - "y": 76.9373 - }, - { - "l": "50.0", - "x": 1.2266, - "y": 77.196 - }, - { - "l": "50.0", - "x": 1.2457, - "y": 77.4528 - }, - { - "l": "50.0", - "x": 1.2649, - "y": 77.7079 - }, - { - "l": "50.0", - "x": 1.2841, - "y": 77.9614 - }, - { - "l": "50.0", - "x": 1.3032, - "y": 78.2132 - }, - { - "l": "50.0", - "x": 1.3224, - "y": 78.4633 - }, - { - "l": "50.0", - "x": 1.3415, - "y": 78.7118 - }, - { - "l": "50.0", - "x": 1.3607, - "y": 78.9588 - }, - { - "l": "50.0", - "x": 1.3799, - "y": 79.2042 - }, - { - "l": "50.0", - "x": 1.399, - "y": 79.4481 - }, - { - "l": "50.0", - "x": 1.4182, - "y": 79.6904 - }, - { - "l": "50.0", - "x": 1.4374, - "y": 79.9312 - }, - { - "l": "50.0", - "x": 1.4565, - "y": 80.1705 - }, - { - "l": "50.0", - "x": 1.4757, - "y": 80.4084 - }, - { - "l": "50.0", - "x": 1.4949, - "y": 80.6448 - }, - { - "l": "50.0", - "x": 1.514, - "y": 80.8798 - }, - { - "l": "50.0", - "x": 1.5332, - "y": 81.1135 - }, - { - "l": "50.0", - "x": 1.5524, - "y": 81.3457 - }, - { - "l": "50.0", - "x": 1.5715, - "y": 81.5766 - }, - { - "l": "50.0", - "x": 1.5907, - "y": 81.8062 - }, - { - "l": "50.0", - "x": 1.6099, - "y": 82.0345 - }, - { - "l": "50.0", - "x": 1.629, - "y": 82.2615 - }, - { - "l": "50.0", - "x": 1.6482, - "y": 82.4872 - }, - { - "l": "50.0", - "x": 1.6674, - "y": 82.7116 - }, - { - "l": "50.0", - "x": 1.6865, - "y": 82.9348 - }, - { - "l": "50.0", - "x": 1.7057, - "y": 83.1568 - }, - { - "l": "50.0", - "x": 1.7248, - "y": 83.3775 - }, - { - "l": "50.0", - "x": 1.744, - "y": 83.5971 - }, - { - "l": "50.0", - "x": 1.7632, - "y": 83.8153 - }, - { - "l": "50.0", - "x": 1.7823, - "y": 84.0324 - }, - { - "l": "50.0", - "x": 1.8015, - "y": 84.2482 - }, - { - "l": "50.0", - "x": 1.8207, - "y": 84.4628 - }, - { - "l": "50.0", - "x": 1.8398, - "y": 84.6763 - }, - { - "l": "50.0", - "x": 1.859, - "y": 84.8885 - }, - { - "l": "50.0", - "x": 1.8782, - "y": 85.0996 - }, - { - "l": "50.0", - "x": 1.8973, - "y": 85.3095 - }, - { - "l": "50.0", - "x": 1.9165, - "y": 85.5183 - }, - { - "l": "50.0", - "x": 1.9357, - "y": 85.7242 - }, - { - "l": "50.0", - "x": 1.9548, - "y": 85.9301 - }, - { - "l": "50.0", - "x": 1.974, - "y": 86.1359 - }, - { - "l": "50.0", - "x": 1.9932, - "y": 86.3418 - }, - { - "l": "50.0", - "x": 2.0, - "y": 86.4153 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 0.0383, - "y": 52.7806 - }, - { - "l": "75.0", - "x": 0.0575, - "y": 53.7529 - }, - { - "l": "75.0", - "x": 0.0767, - "y": 54.6788 - }, - { - "l": "75.0", - "x": 0.0958, - "y": 55.5571 - }, - { - "l": "75.0", - "x": 0.115, - "y": 56.389 - }, - { - "l": "75.0", - "x": 0.1342, - "y": 57.1782 - }, - { - "l": "75.0", - "x": 0.1533, - "y": 57.9262 - }, - { - "l": "75.0", - "x": 0.1725, - "y": 58.637 - }, - { - "l": "75.0", - "x": 0.1916, - "y": 59.3157 - }, - { - "l": "75.0", - "x": 0.2108, - "y": 59.9641 - }, - { - "l": "75.0", - "x": 0.23, - "y": 60.5852 - }, - { - "l": "75.0", - "x": 0.2491, - "y": 61.1801 - }, - { - "l": "75.0", - "x": 0.2683, - "y": 61.7548 - }, - { - "l": "75.0", - "x": 0.2875, - "y": 62.3051 - }, - { - "l": "75.0", - "x": 0.3066, - "y": 62.8327 - }, - { - "l": "75.0", - "x": 0.3258, - "y": 63.3392 - }, - { - "l": "75.0", - "x": 0.345, - "y": 63.8273 - }, - { - "l": "75.0", - "x": 0.3641, - "y": 64.2981 - }, - { - "l": "75.0", - "x": 0.3833, - "y": 64.7525 - }, - { - "l": "75.0", - "x": 0.4025, - "y": 65.1918 - }, - { - "l": "75.0", - "x": 0.4216, - "y": 65.6174 - }, - { - "l": "75.0", - "x": 0.4408, - "y": 66.0309 - }, - { - "l": "75.0", - "x": 0.46, - "y": 66.4331 - }, - { - "l": "75.0", - "x": 0.4791, - "y": 66.8251 - }, - { - "l": "75.0", - "x": 0.4983, - "y": 67.2082 - }, - { - "l": "75.0", - "x": 0.5175, - "y": 67.5851 - }, - { - "l": "75.0", - "x": 0.5366, - "y": 67.955 - }, - { - "l": "75.0", - "x": 0.5558, - "y": 68.3185 - }, - { - "l": "75.0", - "x": 0.5749, - "y": 68.6761 - }, - { - "l": "75.0", - "x": 0.5941, - "y": 69.0291 - }, - { - "l": "75.0", - "x": 0.6133, - "y": 69.3777 - }, - { - "l": "75.0", - "x": 0.6324, - "y": 69.7219 - }, - { - "l": "75.0", - "x": 0.6516, - "y": 70.062 - }, - { - "l": "75.0", - "x": 0.6708, - "y": 70.3983 - }, - { - "l": "75.0", - "x": 0.6899, - "y": 70.7314 - }, - { - "l": "75.0", - "x": 0.7091, - "y": 71.0611 - }, - { - "l": "75.0", - "x": 0.7283, - "y": 71.3875 - }, - { - "l": "75.0", - "x": 0.7474, - "y": 71.7109 - }, - { - "l": "75.0", - "x": 0.7666, - "y": 72.0316 - }, - { - "l": "75.0", - "x": 0.7858, - "y": 72.3495 - }, - { - "l": "75.0", - "x": 0.8049, - "y": 72.6646 - }, - { - "l": "75.0", - "x": 0.8241, - "y": 72.9771 - }, - { - "l": "75.0", - "x": 0.8433, - "y": 73.2871 - }, - { - "l": "75.0", - "x": 0.8624, - "y": 73.5945 - }, - { - "l": "75.0", - "x": 0.8816, - "y": 73.8995 - }, - { - "l": "75.0", - "x": 0.9008, - "y": 74.2021 - }, - { - "l": "75.0", - "x": 0.9199, - "y": 74.5023 - }, - { - "l": "75.0", - "x": 0.9391, - "y": 74.8001 - }, - { - "l": "75.0", - "x": 0.9582, - "y": 75.0956 - }, - { - "l": "75.0", - "x": 0.9774, - "y": 75.3889 - }, - { - "l": "75.0", - "x": 0.9966, - "y": 75.6799 - }, - { - "l": "75.0", - "x": 1.0157, - "y": 75.9688 - }, - { - "l": "75.0", - "x": 1.0349, - "y": 76.2555 - }, - { - "l": "75.0", - "x": 1.0541, - "y": 76.5401 - }, - { - "l": "75.0", - "x": 1.0732, - "y": 76.8227 - }, - { - "l": "75.0", - "x": 1.0924, - "y": 77.1031 - }, - { - "l": "75.0", - "x": 1.1116, - "y": 77.3815 - }, - { - "l": "75.0", - "x": 1.1307, - "y": 77.658 - }, - { - "l": "75.0", - "x": 1.1499, - "y": 77.9325 - }, - { - "l": "75.0", - "x": 1.1691, - "y": 78.205 - }, - { - "l": "75.0", - "x": 1.1882, - "y": 78.4758 - }, - { - "l": "75.0", - "x": 1.2074, - "y": 78.7446 - }, - { - "l": "75.0", - "x": 1.2266, - "y": 79.0117 - }, - { - "l": "75.0", - "x": 1.2457, - "y": 79.277 - }, - { - "l": "75.0", - "x": 1.2649, - "y": 79.5407 - }, - { - "l": "75.0", - "x": 1.2841, - "y": 79.8026 - }, - { - "l": "75.0", - "x": 1.3032, - "y": 80.0628 - }, - { - "l": "75.0", - "x": 1.3224, - "y": 80.3214 - }, - { - "l": "75.0", - "x": 1.3415, - "y": 80.5784 - }, - { - "l": "75.0", - "x": 1.3607, - "y": 80.8337 - }, - { - "l": "75.0", - "x": 1.3799, - "y": 81.0875 - }, - { - "l": "75.0", - "x": 1.399, - "y": 81.3397 - }, - { - "l": "75.0", - "x": 1.4182, - "y": 81.5904 - }, - { - "l": "75.0", - "x": 1.4374, - "y": 81.8397 - }, - { - "l": "75.0", - "x": 1.4565, - "y": 82.0874 - }, - { - "l": "75.0", - "x": 1.4757, - "y": 82.3337 - }, - { - "l": "75.0", - "x": 1.4949, - "y": 82.5785 - }, - { - "l": "75.0", - "x": 1.514, - "y": 82.8218 - }, - { - "l": "75.0", - "x": 1.5332, - "y": 83.0638 - }, - { - "l": "75.0", - "x": 1.5524, - "y": 83.3044 - }, - { - "l": "75.0", - "x": 1.5715, - "y": 83.5436 - }, - { - "l": "75.0", - "x": 1.5907, - "y": 83.7815 - }, - { - "l": "75.0", - "x": 1.6099, - "y": 84.0182 - }, - { - "l": "75.0", - "x": 1.629, - "y": 84.2536 - }, - { - "l": "75.0", - "x": 1.6482, - "y": 84.4877 - }, - { - "l": "75.0", - "x": 1.6674, - "y": 84.7205 - }, - { - "l": "75.0", - "x": 1.6865, - "y": 84.9521 - }, - { - "l": "75.0", - "x": 1.7057, - "y": 85.1824 - }, - { - "l": "75.0", - "x": 1.7248, - "y": 85.4115 - }, - { - "l": "75.0", - "x": 1.744, - "y": 85.6393 - }, - { - "l": "75.0", - "x": 1.7632, - "y": 85.8657 - }, - { - "l": "75.0", - "x": 1.7823, - "y": 86.0909 - }, - { - "l": "75.0", - "x": 1.8015, - "y": 86.3149 - }, - { - "l": "75.0", - "x": 1.8207, - "y": 86.5376 - }, - { - "l": "75.0", - "x": 1.8398, - "y": 86.7592 - }, - { - "l": "75.0", - "x": 1.859, - "y": 86.9796 - }, - { - "l": "75.0", - "x": 1.8782, - "y": 87.1989 - }, - { - "l": "75.0", - "x": 1.8973, - "y": 87.417 - }, - { - "l": "75.0", - "x": 1.9165, - "y": 87.634 - }, - { - "l": "75.0", - "x": 1.9357, - "y": 87.848 - }, - { - "l": "75.0", - "x": 1.9548, - "y": 88.062 - }, - { - "l": "75.0", - "x": 1.974, - "y": 88.276 - }, - { - "l": "75.0", - "x": 1.9932, - "y": 88.49 - }, - { - "l": "75.0", - "x": 2.0, - "y": 88.5665 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 0.0383, - "y": 54.0491 - }, - { - "l": "91.0", - "x": 0.0575, - "y": 55.0363 - }, - { - "l": "91.0", - "x": 0.0767, - "y": 55.9766 - }, - { - "l": "91.0", - "x": 0.0958, - "y": 56.8687 - }, - { - "l": "91.0", - "x": 0.115, - "y": 57.7139 - }, - { - "l": "91.0", - "x": 0.1342, - "y": 58.5157 - }, - { - "l": "91.0", - "x": 0.1533, - "y": 59.2758 - }, - { - "l": "91.0", - "x": 0.1725, - "y": 59.9979 - }, - { - "l": "91.0", - "x": 0.1916, - "y": 60.6878 - }, - { - "l": "91.0", - "x": 0.2108, - "y": 61.3467 - }, - { - "l": "91.0", - "x": 0.23, - "y": 61.9782 - }, - { - "l": "91.0", - "x": 0.2491, - "y": 62.5828 - }, - { - "l": "91.0", - "x": 0.2683, - "y": 63.1698 - }, - { - "l": "91.0", - "x": 0.2875, - "y": 63.73 - }, - { - "l": "91.0", - "x": 0.3066, - "y": 64.2659 - }, - { - "l": "91.0", - "x": 0.3258, - "y": 64.7796 - }, - { - "l": "91.0", - "x": 0.345, - "y": 65.2754 - }, - { - "l": "91.0", - "x": 0.3641, - "y": 65.7545 - }, - { - "l": "91.0", - "x": 0.3833, - "y": 66.217 - }, - { - "l": "91.0", - "x": 0.4025, - "y": 66.6642 - }, - { - "l": "91.0", - "x": 0.4216, - "y": 67.0976 - }, - { - "l": "91.0", - "x": 0.4408, - "y": 67.5187 - }, - { - "l": "91.0", - "x": 0.46, - "y": 67.9284 - }, - { - "l": "91.0", - "x": 0.4791, - "y": 68.328 - }, - { - "l": "91.0", - "x": 0.4983, - "y": 68.7185 - }, - { - "l": "91.0", - "x": 0.5175, - "y": 69.1028 - }, - { - "l": "91.0", - "x": 0.5366, - "y": 69.4803 - }, - { - "l": "91.0", - "x": 0.5558, - "y": 69.8512 - }, - { - "l": "91.0", - "x": 0.5749, - "y": 70.2164 - }, - { - "l": "91.0", - "x": 0.5941, - "y": 70.5769 - }, - { - "l": "91.0", - "x": 0.6133, - "y": 70.9331 - }, - { - "l": "91.0", - "x": 0.6324, - "y": 71.2849 - }, - { - "l": "91.0", - "x": 0.6516, - "y": 71.6326 - }, - { - "l": "91.0", - "x": 0.6708, - "y": 71.9766 - }, - { - "l": "91.0", - "x": 0.6899, - "y": 72.3174 - }, - { - "l": "91.0", - "x": 0.7091, - "y": 72.6549 - }, - { - "l": "91.0", - "x": 0.7283, - "y": 72.9891 - }, - { - "l": "91.0", - "x": 0.7474, - "y": 73.3204 - }, - { - "l": "91.0", - "x": 0.7666, - "y": 73.6489 - }, - { - "l": "91.0", - "x": 0.7858, - "y": 73.9747 - }, - { - "l": "91.0", - "x": 0.8049, - "y": 74.2978 - }, - { - "l": "91.0", - "x": 0.8241, - "y": 74.6183 - }, - { - "l": "91.0", - "x": 0.8433, - "y": 74.9363 - }, - { - "l": "91.0", - "x": 0.8624, - "y": 75.2519 - }, - { - "l": "91.0", - "x": 0.8816, - "y": 75.565 - }, - { - "l": "91.0", - "x": 0.9008, - "y": 75.8758 - }, - { - "l": "91.0", - "x": 0.9199, - "y": 76.1842 - }, - { - "l": "91.0", - "x": 0.9391, - "y": 76.4903 - }, - { - "l": "91.0", - "x": 0.9582, - "y": 76.7941 - }, - { - "l": "91.0", - "x": 0.9774, - "y": 77.0957 - }, - { - "l": "91.0", - "x": 0.9966, - "y": 77.3951 - }, - { - "l": "91.0", - "x": 1.0157, - "y": 77.6923 - }, - { - "l": "91.0", - "x": 1.0349, - "y": 77.9874 - }, - { - "l": "91.0", - "x": 1.0541, - "y": 78.2804 - }, - { - "l": "91.0", - "x": 1.0732, - "y": 78.5713 - }, - { - "l": "91.0", - "x": 1.0924, - "y": 78.8601 - }, - { - "l": "91.0", - "x": 1.1116, - "y": 79.1469 - }, - { - "l": "91.0", - "x": 1.1307, - "y": 79.4317 - }, - { - "l": "91.0", - "x": 1.1499, - "y": 79.7145 - }, - { - "l": "91.0", - "x": 1.1691, - "y": 79.9955 - }, - { - "l": "91.0", - "x": 1.1882, - "y": 80.2746 - }, - { - "l": "91.0", - "x": 1.2074, - "y": 80.5519 - }, - { - "l": "91.0", - "x": 1.2266, - "y": 80.8275 - }, - { - "l": "91.0", - "x": 1.2457, - "y": 81.1013 - }, - { - "l": "91.0", - "x": 1.2649, - "y": 81.3734 - }, - { - "l": "91.0", - "x": 1.2841, - "y": 81.6438 - }, - { - "l": "91.0", - "x": 1.3032, - "y": 81.9125 - }, - { - "l": "91.0", - "x": 1.3224, - "y": 82.1795 - }, - { - "l": "91.0", - "x": 1.3415, - "y": 82.4449 - }, - { - "l": "91.0", - "x": 1.3607, - "y": 82.7087 - }, - { - "l": "91.0", - "x": 1.3799, - "y": 82.9708 - }, - { - "l": "91.0", - "x": 1.399, - "y": 83.2314 - }, - { - "l": "91.0", - "x": 1.4182, - "y": 83.4905 - }, - { - "l": "91.0", - "x": 1.4374, - "y": 83.7481 - }, - { - "l": "91.0", - "x": 1.4565, - "y": 84.0043 - }, - { - "l": "91.0", - "x": 1.4757, - "y": 84.2589 - }, - { - "l": "91.0", - "x": 1.4949, - "y": 84.5121 - }, - { - "l": "91.0", - "x": 1.514, - "y": 84.7639 - }, - { - "l": "91.0", - "x": 1.5332, - "y": 85.0142 - }, - { - "l": "91.0", - "x": 1.5524, - "y": 85.2631 - }, - { - "l": "91.0", - "x": 1.5715, - "y": 85.5106 - }, - { - "l": "91.0", - "x": 1.5907, - "y": 85.7569 - }, - { - "l": "91.0", - "x": 1.6099, - "y": 86.0019 - }, - { - "l": "91.0", - "x": 1.629, - "y": 86.2457 - }, - { - "l": "91.0", - "x": 1.6482, - "y": 86.4882 - }, - { - "l": "91.0", - "x": 1.6674, - "y": 86.7294 - }, - { - "l": "91.0", - "x": 1.6865, - "y": 86.9693 - }, - { - "l": "91.0", - "x": 1.7057, - "y": 87.208 - }, - { - "l": "91.0", - "x": 1.7248, - "y": 87.4454 - }, - { - "l": "91.0", - "x": 1.744, - "y": 87.6815 - }, - { - "l": "91.0", - "x": 1.7632, - "y": 87.9161 - }, - { - "l": "91.0", - "x": 1.7823, - "y": 88.1495 - }, - { - "l": "91.0", - "x": 1.8015, - "y": 88.3815 - }, - { - "l": "91.0", - "x": 1.8207, - "y": 88.6124 - }, - { - "l": "91.0", - "x": 1.8398, - "y": 88.8421 - }, - { - "l": "91.0", - "x": 1.859, - "y": 89.0707 - }, - { - "l": "91.0", - "x": 1.8782, - "y": 89.2982 - }, - { - "l": "91.0", - "x": 1.8973, - "y": 89.5245 - }, - { - "l": "91.0", - "x": 1.9165, - "y": 89.7497 - }, - { - "l": "91.0", - "x": 1.9357, - "y": 89.9718 - }, - { - "l": "91.0", - "x": 1.9548, - "y": 90.194 - }, - { - "l": "91.0", - "x": 1.974, - "y": 90.4161 - }, - { - "l": "91.0", - "x": 1.9932, - "y": 90.6383 - }, - { - "l": "91.0", - "x": 2.0, - "y": 90.7176 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 0.0383, - "y": 55.3177 - }, - { - "l": "98.0", - "x": 0.0575, - "y": 56.3197 - }, - { - "l": "98.0", - "x": 0.0767, - "y": 57.2745 - }, - { - "l": "98.0", - "x": 0.0958, - "y": 58.1804 - }, - { - "l": "98.0", - "x": 0.115, - "y": 59.0387 - }, - { - "l": "98.0", - "x": 0.1342, - "y": 59.8533 - }, - { - "l": "98.0", - "x": 0.1533, - "y": 60.6253 - }, - { - "l": "98.0", - "x": 0.1725, - "y": 61.3587 - }, - { - "l": "98.0", - "x": 0.1916, - "y": 62.0599 - }, - { - "l": "98.0", - "x": 0.2108, - "y": 62.7292 - }, - { - "l": "98.0", - "x": 0.23, - "y": 63.3712 - }, - { - "l": "98.0", - "x": 0.2491, - "y": 63.9856 - }, - { - "l": "98.0", - "x": 0.2683, - "y": 64.5848 - }, - { - "l": "98.0", - "x": 0.2875, - "y": 65.155 - }, - { - "l": "98.0", - "x": 0.3066, - "y": 65.699 - }, - { - "l": "98.0", - "x": 0.3258, - "y": 66.2199 - }, - { - "l": "98.0", - "x": 0.345, - "y": 66.7235 - }, - { - "l": "98.0", - "x": 0.3641, - "y": 67.2109 - }, - { - "l": "98.0", - "x": 0.3833, - "y": 67.6815 - }, - { - "l": "98.0", - "x": 0.4025, - "y": 68.1367 - }, - { - "l": "98.0", - "x": 0.4216, - "y": 68.5779 - }, - { - "l": "98.0", - "x": 0.4408, - "y": 69.0066 - }, - { - "l": "98.0", - "x": 0.46, - "y": 69.4238 - }, - { - "l": "98.0", - "x": 0.4791, - "y": 69.8308 - }, - { - "l": "98.0", - "x": 0.4983, - "y": 70.2288 - }, - { - "l": "98.0", - "x": 0.5175, - "y": 70.6206 - }, - { - "l": "98.0", - "x": 0.5366, - "y": 71.0055 - }, - { - "l": "98.0", - "x": 0.5558, - "y": 71.384 - }, - { - "l": "98.0", - "x": 0.5749, - "y": 71.7566 - }, - { - "l": "98.0", - "x": 0.5941, - "y": 72.1247 - }, - { - "l": "98.0", - "x": 0.6133, - "y": 72.4885 - }, - { - "l": "98.0", - "x": 0.6324, - "y": 72.8479 - }, - { - "l": "98.0", - "x": 0.6516, - "y": 73.2033 - }, - { - "l": "98.0", - "x": 0.6708, - "y": 73.5549 - }, - { - "l": "98.0", - "x": 0.6899, - "y": 73.9035 - }, - { - "l": "98.0", - "x": 0.7091, - "y": 74.2487 - }, - { - "l": "98.0", - "x": 0.7283, - "y": 74.5907 - }, - { - "l": "98.0", - "x": 0.7474, - "y": 74.9298 - }, - { - "l": "98.0", - "x": 0.7666, - "y": 75.2662 - }, - { - "l": "98.0", - "x": 0.7858, - "y": 75.5999 - }, - { - "l": "98.0", - "x": 0.8049, - "y": 75.931 - }, - { - "l": "98.0", - "x": 0.8241, - "y": 76.2594 - }, - { - "l": "98.0", - "x": 0.8433, - "y": 76.5855 - }, - { - "l": "98.0", - "x": 0.8624, - "y": 76.9092 - }, - { - "l": "98.0", - "x": 0.8816, - "y": 77.2305 - }, - { - "l": "98.0", - "x": 0.9008, - "y": 77.5495 - }, - { - "l": "98.0", - "x": 0.9199, - "y": 77.8661 - }, - { - "l": "98.0", - "x": 0.9391, - "y": 78.1805 - }, - { - "l": "98.0", - "x": 0.9582, - "y": 78.4926 - }, - { - "l": "98.0", - "x": 0.9774, - "y": 78.8025 - }, - { - "l": "98.0", - "x": 0.9966, - "y": 79.1102 - }, - { - "l": "98.0", - "x": 1.0157, - "y": 79.4158 - }, - { - "l": "98.0", - "x": 1.0349, - "y": 79.7193 - }, - { - "l": "98.0", - "x": 1.0541, - "y": 80.0207 - }, - { - "l": "98.0", - "x": 1.0732, - "y": 80.32 - }, - { - "l": "98.0", - "x": 1.0924, - "y": 80.6172 - }, - { - "l": "98.0", - "x": 1.1116, - "y": 80.9123 - }, - { - "l": "98.0", - "x": 1.1307, - "y": 81.2054 - }, - { - "l": "98.0", - "x": 1.1499, - "y": 81.4966 - }, - { - "l": "98.0", - "x": 1.1691, - "y": 81.7859 - }, - { - "l": "98.0", - "x": 1.1882, - "y": 82.0735 - }, - { - "l": "98.0", - "x": 1.2074, - "y": 82.3592 - }, - { - "l": "98.0", - "x": 1.2266, - "y": 82.6433 - }, - { - "l": "98.0", - "x": 1.2457, - "y": 82.9255 - }, - { - "l": "98.0", - "x": 1.2649, - "y": 83.2061 - }, - { - "l": "98.0", - "x": 1.2841, - "y": 83.485 - }, - { - "l": "98.0", - "x": 1.3032, - "y": 83.7622 - }, - { - "l": "98.0", - "x": 1.3224, - "y": 84.0377 - }, - { - "l": "98.0", - "x": 1.3415, - "y": 84.3115 - }, - { - "l": "98.0", - "x": 1.3607, - "y": 84.5836 - }, - { - "l": "98.0", - "x": 1.3799, - "y": 84.8541 - }, - { - "l": "98.0", - "x": 1.399, - "y": 85.1231 - }, - { - "l": "98.0", - "x": 1.4182, - "y": 85.3905 - }, - { - "l": "98.0", - "x": 1.4374, - "y": 85.6566 - }, - { - "l": "98.0", - "x": 1.4565, - "y": 85.9211 - }, - { - "l": "98.0", - "x": 1.4757, - "y": 86.1842 - }, - { - "l": "98.0", - "x": 1.4949, - "y": 86.4458 - }, - { - "l": "98.0", - "x": 1.514, - "y": 86.7059 - }, - { - "l": "98.0", - "x": 1.5332, - "y": 86.9645 - }, - { - "l": "98.0", - "x": 1.5524, - "y": 87.2217 - }, - { - "l": "98.0", - "x": 1.5715, - "y": 87.4776 - }, - { - "l": "98.0", - "x": 1.5907, - "y": 87.7322 - }, - { - "l": "98.0", - "x": 1.6099, - "y": 87.9857 - }, - { - "l": "98.0", - "x": 1.629, - "y": 88.2378 - }, - { - "l": "98.0", - "x": 1.6482, - "y": 88.4887 - }, - { - "l": "98.0", - "x": 1.6674, - "y": 88.7383 - }, - { - "l": "98.0", - "x": 1.6865, - "y": 88.9866 - }, - { - "l": "98.0", - "x": 1.7057, - "y": 89.2336 - }, - { - "l": "98.0", - "x": 1.7248, - "y": 89.4793 - }, - { - "l": "98.0", - "x": 1.744, - "y": 89.7237 - }, - { - "l": "98.0", - "x": 1.7632, - "y": 89.9665 - }, - { - "l": "98.0", - "x": 1.7823, - "y": 90.208 - }, - { - "l": "98.0", - "x": 1.8015, - "y": 90.4482 - }, - { - "l": "98.0", - "x": 1.8207, - "y": 90.6871 - }, - { - "l": "98.0", - "x": 1.8398, - "y": 90.925 - }, - { - "l": "98.0", - "x": 1.859, - "y": 91.1618 - }, - { - "l": "98.0", - "x": 1.8782, - "y": 91.3975 - }, - { - "l": "98.0", - "x": 1.8973, - "y": 91.632 - }, - { - "l": "98.0", - "x": 1.9165, - "y": 91.8654 - }, - { - "l": "98.0", - "x": 1.9357, - "y": 92.0957 - }, - { - "l": "98.0", - "x": 1.9548, - "y": 92.3259 - }, - { - "l": "98.0", - "x": 1.974, - "y": 92.5562 - }, - { - "l": "98.0", - "x": 1.9932, - "y": 92.7865 - }, - { - "l": "98.0", - "x": 2.0, - "y": 92.8688 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 0.0383, - "y": 56.5863 - }, - { - "l": "99.6", - "x": 0.0575, - "y": 57.6031 - }, - { - "l": "99.6", - "x": 0.0767, - "y": 58.5724 - }, - { - "l": "99.6", - "x": 0.0958, - "y": 59.492 - }, - { - "l": "99.6", - "x": 0.115, - "y": 60.3636 - }, - { - "l": "99.6", - "x": 0.1342, - "y": 61.1909 - }, - { - "l": "99.6", - "x": 0.1533, - "y": 61.9749 - }, - { - "l": "99.6", - "x": 0.1725, - "y": 62.7196 - }, - { - "l": "99.6", - "x": 0.1916, - "y": 63.432 - }, - { - "l": "99.6", - "x": 0.2108, - "y": 64.1117 - }, - { - "l": "99.6", - "x": 0.23, - "y": 64.7642 - }, - { - "l": "99.6", - "x": 0.2491, - "y": 65.3884 - }, - { - "l": "99.6", - "x": 0.2683, - "y": 65.9997 - }, - { - "l": "99.6", - "x": 0.2875, - "y": 66.5799 - }, - { - "l": "99.6", - "x": 0.3066, - "y": 67.1322 - }, - { - "l": "99.6", - "x": 0.3258, - "y": 67.6602 - }, - { - "l": "99.6", - "x": 0.345, - "y": 68.1716 - }, - { - "l": "99.6", - "x": 0.3641, - "y": 68.6673 - }, - { - "l": "99.6", - "x": 0.3833, - "y": 69.146 - }, - { - "l": "99.6", - "x": 0.4025, - "y": 69.6091 - }, - { - "l": "99.6", - "x": 0.4216, - "y": 70.0581 - }, - { - "l": "99.6", - "x": 0.4408, - "y": 70.4945 - }, - { - "l": "99.6", - "x": 0.46, - "y": 70.9192 - }, - { - "l": "99.6", - "x": 0.4791, - "y": 71.3337 - }, - { - "l": "99.6", - "x": 0.4983, - "y": 71.7391 - }, - { - "l": "99.6", - "x": 0.5175, - "y": 72.1384 - }, - { - "l": "99.6", - "x": 0.5366, - "y": 72.5308 - }, - { - "l": "99.6", - "x": 0.5558, - "y": 72.9167 - }, - { - "l": "99.6", - "x": 0.5749, - "y": 73.2969 - }, - { - "l": "99.6", - "x": 0.5941, - "y": 73.6725 - }, - { - "l": "99.6", - "x": 0.6133, - "y": 74.0439 - }, - { - "l": "99.6", - "x": 0.6324, - "y": 74.4109 - }, - { - "l": "99.6", - "x": 0.6516, - "y": 74.7739 - }, - { - "l": "99.6", - "x": 0.6708, - "y": 75.1332 - }, - { - "l": "99.6", - "x": 0.6899, - "y": 75.4895 - }, - { - "l": "99.6", - "x": 0.7091, - "y": 75.8425 - }, - { - "l": "99.6", - "x": 0.7283, - "y": 76.1923 - }, - { - "l": "99.6", - "x": 0.7474, - "y": 76.5392 - }, - { - "l": "99.6", - "x": 0.7666, - "y": 76.8835 - }, - { - "l": "99.6", - "x": 0.7858, - "y": 77.2251 - }, - { - "l": "99.6", - "x": 0.8049, - "y": 77.5641 - }, - { - "l": "99.6", - "x": 0.8241, - "y": 77.9006 - }, - { - "l": "99.6", - "x": 0.8433, - "y": 78.2347 - }, - { - "l": "99.6", - "x": 0.8624, - "y": 78.5665 - }, - { - "l": "99.6", - "x": 0.8816, - "y": 78.896 - }, - { - "l": "99.6", - "x": 0.9008, - "y": 79.2232 - }, - { - "l": "99.6", - "x": 0.9199, - "y": 79.5481 - }, - { - "l": "99.6", - "x": 0.9391, - "y": 79.8707 - }, - { - "l": "99.6", - "x": 0.9582, - "y": 80.1911 - }, - { - "l": "99.6", - "x": 0.9774, - "y": 80.5093 - }, - { - "l": "99.6", - "x": 0.9966, - "y": 80.8254 - }, - { - "l": "99.6", - "x": 1.0157, - "y": 81.1394 - }, - { - "l": "99.6", - "x": 1.0349, - "y": 81.4512 - }, - { - "l": "99.6", - "x": 1.0541, - "y": 81.761 - }, - { - "l": "99.6", - "x": 1.0732, - "y": 82.0686 - }, - { - "l": "99.6", - "x": 1.0924, - "y": 82.3742 - }, - { - "l": "99.6", - "x": 1.1116, - "y": 82.6776 - }, - { - "l": "99.6", - "x": 1.1307, - "y": 82.9791 - }, - { - "l": "99.6", - "x": 1.1499, - "y": 83.2786 - }, - { - "l": "99.6", - "x": 1.1691, - "y": 83.5763 - }, - { - "l": "99.6", - "x": 1.1882, - "y": 83.8723 - }, - { - "l": "99.6", - "x": 1.2074, - "y": 84.1665 - }, - { - "l": "99.6", - "x": 1.2266, - "y": 84.459 - }, - { - "l": "99.6", - "x": 1.2457, - "y": 84.7498 - }, - { - "l": "99.6", - "x": 1.2649, - "y": 85.0388 - }, - { - "l": "99.6", - "x": 1.2841, - "y": 85.3262 - }, - { - "l": "99.6", - "x": 1.3032, - "y": 85.6118 - }, - { - "l": "99.6", - "x": 1.3224, - "y": 85.8958 - }, - { - "l": "99.6", - "x": 1.3415, - "y": 86.178 - }, - { - "l": "99.6", - "x": 1.3607, - "y": 86.4585 - }, - { - "l": "99.6", - "x": 1.3799, - "y": 86.7374 - }, - { - "l": "99.6", - "x": 1.399, - "y": 87.0147 - }, - { - "l": "99.6", - "x": 1.4182, - "y": 87.2905 - }, - { - "l": "99.6", - "x": 1.4374, - "y": 87.565 - }, - { - "l": "99.6", - "x": 1.4565, - "y": 87.838 - }, - { - "l": "99.6", - "x": 1.4757, - "y": 88.1095 - }, - { - "l": "99.6", - "x": 1.4949, - "y": 88.3795 - }, - { - "l": "99.6", - "x": 1.514, - "y": 88.6479 - }, - { - "l": "99.6", - "x": 1.5332, - "y": 88.9149 - }, - { - "l": "99.6", - "x": 1.5524, - "y": 89.1804 - }, - { - "l": "99.6", - "x": 1.5715, - "y": 89.4446 - }, - { - "l": "99.6", - "x": 1.5907, - "y": 89.7076 - }, - { - "l": "99.6", - "x": 1.6099, - "y": 89.9694 - }, - { - "l": "99.6", - "x": 1.629, - "y": 90.23 - }, - { - "l": "99.6", - "x": 1.6482, - "y": 90.4892 - }, - { - "l": "99.6", - "x": 1.6674, - "y": 90.7472 - }, - { - "l": "99.6", - "x": 1.6865, - "y": 91.0039 - }, - { - "l": "99.6", - "x": 1.7057, - "y": 91.2592 - }, - { - "l": "99.6", - "x": 1.7248, - "y": 91.5132 - }, - { - "l": "99.6", - "x": 1.744, - "y": 91.7659 - }, - { - "l": "99.6", - "x": 1.7632, - "y": 92.0169 - }, - { - "l": "99.6", - "x": 1.7823, - "y": 92.2665 - }, - { - "l": "99.6", - "x": 1.8015, - "y": 92.5148 - }, - { - "l": "99.6", - "x": 1.8207, - "y": 92.7619 - }, - { - "l": "99.6", - "x": 1.8398, - "y": 93.0079 - }, - { - "l": "99.6", - "x": 1.859, - "y": 93.2529 - }, - { - "l": "99.6", - "x": 1.8782, - "y": 93.4968 - }, - { - "l": "99.6", - "x": 1.8973, - "y": 93.7395 - }, - { - "l": "99.6", - "x": 1.9165, - "y": 93.9811 - }, - { - "l": "99.6", - "x": 1.9357, - "y": 94.2195 - }, - { - "l": "99.6", - "x": 1.9548, - "y": 94.4578 - }, - { - "l": "99.6", - "x": 1.974, - "y": 94.6963 - }, - { - "l": "99.6", - "x": 1.9932, - "y": 94.9348 - }, - { - "l": "99.6", - "x": 2.0, - "y": 95.02 - } - ] - } - ], - "weight": null, - "ofc": null, - "bmi": null - } - } - }, - { - "uk_who_child": { - "male": null, - "female": { - "height": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 2.0, - "y": 77.1118 - }, - { - "l": "0.4", - "x": 2.0192, - "y": 77.2812 - }, - { - "l": "0.4", - "x": 2.1025, - "y": 78.015 - }, - { - "l": "0.4", - "x": 2.1858, - "y": 78.7288 - }, - { - "l": "0.4", - "x": 2.2692, - "y": 79.4252 - }, - { - "l": "0.4", - "x": 2.3525, - "y": 80.1052 - }, - { - "l": "0.4", - "x": 2.4358, - "y": 80.7674 - }, - { - "l": "0.4", - "x": 2.5192, - "y": 81.4133 - }, - { - "l": "0.4", - "x": 2.6025, - "y": 82.0451 - }, - { - "l": "0.4", - "x": 2.6858, - "y": 82.6628 - }, - { - "l": "0.4", - "x": 2.7692, - "y": 83.2692 - }, - { - "l": "0.4", - "x": 2.8525, - "y": 83.8642 - }, - { - "l": "0.4", - "x": 2.9358, - "y": 84.451 - }, - { - "l": "0.4", - "x": 3.0192, - "y": 85.0292 - }, - { - "l": "0.4", - "x": 3.1025, - "y": 85.5962 - }, - { - "l": "0.4", - "x": 3.1858, - "y": 86.1572 - }, - { - "l": "0.4", - "x": 3.2692, - "y": 86.7115 - }, - { - "l": "0.4", - "x": 3.3525, - "y": 87.2572 - }, - { - "l": "0.4", - "x": 3.4358, - "y": 87.7945 - }, - { - "l": "0.4", - "x": 3.5192, - "y": 88.3241 - }, - { - "l": "0.4", - "x": 3.6025, - "y": 88.8477 - }, - { - "l": "0.4", - "x": 3.6858, - "y": 89.3632 - }, - { - "l": "0.4", - "x": 3.7692, - "y": 89.8715 - }, - { - "l": "0.4", - "x": 3.8525, - "y": 90.3738 - }, - { - "l": "0.4", - "x": 3.9358, - "y": 90.8668 - }, - { - "l": "0.4", - "x": 4.0, - "y": 91.2445 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 2.0, - "y": 79.2627 - }, - { - "l": "2.0", - "x": 2.0192, - "y": 79.4401 - }, - { - "l": "2.0", - "x": 2.1025, - "y": 80.2085 - }, - { - "l": "2.0", - "x": 2.1858, - "y": 80.9567 - }, - { - "l": "2.0", - "x": 2.2692, - "y": 81.687 - }, - { - "l": "2.0", - "x": 2.3525, - "y": 82.4003 - }, - { - "l": "2.0", - "x": 2.4358, - "y": 83.0956 - }, - { - "l": "2.0", - "x": 2.5192, - "y": 83.7742 - }, - { - "l": "2.0", - "x": 2.6025, - "y": 84.4379 - }, - { - "l": "2.0", - "x": 2.6858, - "y": 85.0872 - }, - { - "l": "2.0", - "x": 2.7692, - "y": 85.7246 - }, - { - "l": "2.0", - "x": 2.8525, - "y": 86.3502 - }, - { - "l": "2.0", - "x": 2.9358, - "y": 86.967 - }, - { - "l": "2.0", - "x": 3.0192, - "y": 87.5745 - }, - { - "l": "2.0", - "x": 3.1025, - "y": 88.1714 - }, - { - "l": "2.0", - "x": 3.1858, - "y": 88.7613 - }, - { - "l": "2.0", - "x": 3.2692, - "y": 89.3439 - }, - { - "l": "2.0", - "x": 3.3525, - "y": 89.9179 - }, - { - "l": "2.0", - "x": 3.4358, - "y": 90.4835 - }, - { - "l": "2.0", - "x": 3.5192, - "y": 91.041 - }, - { - "l": "2.0", - "x": 3.6025, - "y": 91.5919 - }, - { - "l": "2.0", - "x": 3.6858, - "y": 92.1345 - }, - { - "l": "2.0", - "x": 3.7692, - "y": 92.6698 - }, - { - "l": "2.0", - "x": 3.8525, - "y": 93.1986 - }, - { - "l": "2.0", - "x": 3.9358, - "y": 93.7183 - }, - { - "l": "2.0", - "x": 4.0, - "y": 94.1162 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 2.0, - "y": 81.4135 - }, - { - "l": "9.0", - "x": 2.0192, - "y": 81.5989 - }, - { - "l": "9.0", - "x": 2.1025, - "y": 82.402 - }, - { - "l": "9.0", - "x": 2.1858, - "y": 83.1846 - }, - { - "l": "9.0", - "x": 2.2692, - "y": 83.9489 - }, - { - "l": "9.0", - "x": 2.3525, - "y": 84.6954 - }, - { - "l": "9.0", - "x": 2.4358, - "y": 85.4238 - }, - { - "l": "9.0", - "x": 2.5192, - "y": 86.135 - }, - { - "l": "9.0", - "x": 2.6025, - "y": 86.8307 - }, - { - "l": "9.0", - "x": 2.6858, - "y": 87.5116 - }, - { - "l": "9.0", - "x": 2.7692, - "y": 88.18 - }, - { - "l": "9.0", - "x": 2.8525, - "y": 88.8363 - }, - { - "l": "9.0", - "x": 2.9358, - "y": 89.4829 - }, - { - "l": "9.0", - "x": 3.0192, - "y": 90.1199 - }, - { - "l": "9.0", - "x": 3.1025, - "y": 90.7465 - }, - { - "l": "9.0", - "x": 3.1858, - "y": 91.3653 - }, - { - "l": "9.0", - "x": 3.2692, - "y": 91.9764 - }, - { - "l": "9.0", - "x": 3.3525, - "y": 92.5786 - }, - { - "l": "9.0", - "x": 3.4358, - "y": 93.1724 - }, - { - "l": "9.0", - "x": 3.5192, - "y": 93.7578 - }, - { - "l": "9.0", - "x": 3.6025, - "y": 94.336 - }, - { - "l": "9.0", - "x": 3.6858, - "y": 94.9059 - }, - { - "l": "9.0", - "x": 3.7692, - "y": 95.4682 - }, - { - "l": "9.0", - "x": 3.8525, - "y": 96.0233 - }, - { - "l": "9.0", - "x": 3.9358, - "y": 96.5698 - }, - { - "l": "9.0", - "x": 4.0, - "y": 96.9878 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 2.0, - "y": 83.5644 - }, - { - "l": "25.0", - "x": 2.0192, - "y": 83.7577 - }, - { - "l": "25.0", - "x": 2.1025, - "y": 84.5954 - }, - { - "l": "25.0", - "x": 2.1858, - "y": 85.4125 - }, - { - "l": "25.0", - "x": 2.2692, - "y": 86.2108 - }, - { - "l": "25.0", - "x": 2.3525, - "y": 86.9906 - }, - { - "l": "25.0", - "x": 2.4358, - "y": 87.752 - }, - { - "l": "25.0", - "x": 2.5192, - "y": 88.4959 - }, - { - "l": "25.0", - "x": 2.6025, - "y": 89.2235 - }, - { - "l": "25.0", - "x": 2.6858, - "y": 89.936 - }, - { - "l": "25.0", - "x": 2.7692, - "y": 90.6353 - }, - { - "l": "25.0", - "x": 2.8525, - "y": 91.3224 - }, - { - "l": "25.0", - "x": 2.9358, - "y": 91.9988 - }, - { - "l": "25.0", - "x": 3.0192, - "y": 92.6653 - }, - { - "l": "25.0", - "x": 3.1025, - "y": 93.3217 - }, - { - "l": "25.0", - "x": 3.1858, - "y": 93.9694 - }, - { - "l": "25.0", - "x": 3.2692, - "y": 94.6088 - }, - { - "l": "25.0", - "x": 3.3525, - "y": 95.2394 - }, - { - "l": "25.0", - "x": 3.4358, - "y": 95.8613 - }, - { - "l": "25.0", - "x": 3.5192, - "y": 96.4747 - }, - { - "l": "25.0", - "x": 3.6025, - "y": 97.0801 - }, - { - "l": "25.0", - "x": 3.6858, - "y": 97.6773 - }, - { - "l": "25.0", - "x": 3.7692, - "y": 98.2665 - }, - { - "l": "25.0", - "x": 3.8525, - "y": 98.8481 - }, - { - "l": "25.0", - "x": 3.9358, - "y": 99.4214 - }, - { - "l": "25.0", - "x": 4.0, - "y": 99.8595 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 2.0, - "y": 85.7153 - }, - { - "l": "50.0", - "x": 2.0192, - "y": 85.9166 - }, - { - "l": "50.0", - "x": 2.1025, - "y": 86.7889 - }, - { - "l": "50.0", - "x": 2.1858, - "y": 87.6403 - }, - { - "l": "50.0", - "x": 2.2692, - "y": 88.4727 - }, - { - "l": "50.0", - "x": 2.3525, - "y": 89.2857 - }, - { - "l": "50.0", - "x": 2.4358, - "y": 90.0802 - }, - { - "l": "50.0", - "x": 2.5192, - "y": 90.8567 - }, - { - "l": "50.0", - "x": 2.6025, - "y": 91.6163 - }, - { - "l": "50.0", - "x": 2.6858, - "y": 92.3605 - }, - { - "l": "50.0", - "x": 2.7692, - "y": 93.0907 - }, - { - "l": "50.0", - "x": 2.8525, - "y": 93.8084 - }, - { - "l": "50.0", - "x": 2.9358, - "y": 94.5148 - }, - { - "l": "50.0", - "x": 3.0192, - "y": 95.2107 - }, - { - "l": "50.0", - "x": 3.1025, - "y": 95.8968 - }, - { - "l": "50.0", - "x": 3.1858, - "y": 96.5735 - }, - { - "l": "50.0", - "x": 3.2692, - "y": 97.2413 - }, - { - "l": "50.0", - "x": 3.3525, - "y": 97.9001 - }, - { - "l": "50.0", - "x": 3.4358, - "y": 98.5502 - }, - { - "l": "50.0", - "x": 3.5192, - "y": 99.1915 - }, - { - "l": "50.0", - "x": 3.6025, - "y": 99.8243 - }, - { - "l": "50.0", - "x": 3.6858, - "y": 100.4487 - }, - { - "l": "50.0", - "x": 3.7692, - "y": 101.0648 - }, - { - "l": "50.0", - "x": 3.8525, - "y": 101.6729 - }, - { - "l": "50.0", - "x": 3.9358, - "y": 102.2729 - }, - { - "l": "50.0", - "x": 4.0, - "y": 102.7312 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 2.0, - "y": 87.8662 - }, - { - "l": "75.0", - "x": 2.0192, - "y": 88.0754 - }, - { - "l": "75.0", - "x": 2.1025, - "y": 88.9824 - }, - { - "l": "75.0", - "x": 2.1858, - "y": 89.8682 - }, - { - "l": "75.0", - "x": 2.2692, - "y": 90.7346 - }, - { - "l": "75.0", - "x": 2.3525, - "y": 91.5809 - }, - { - "l": "75.0", - "x": 2.4358, - "y": 92.4084 - }, - { - "l": "75.0", - "x": 2.5192, - "y": 93.2176 - }, - { - "l": "75.0", - "x": 2.6025, - "y": 94.0091 - }, - { - "l": "75.0", - "x": 2.6858, - "y": 94.7849 - }, - { - "l": "75.0", - "x": 2.7692, - "y": 95.5461 - }, - { - "l": "75.0", - "x": 2.8525, - "y": 96.2945 - }, - { - "l": "75.0", - "x": 2.9358, - "y": 97.0307 - }, - { - "l": "75.0", - "x": 3.0192, - "y": 97.7561 - }, - { - "l": "75.0", - "x": 3.1025, - "y": 98.472 - }, - { - "l": "75.0", - "x": 3.1858, - "y": 99.1776 - }, - { - "l": "75.0", - "x": 3.2692, - "y": 99.8737 - }, - { - "l": "75.0", - "x": 3.3525, - "y": 100.5608 - }, - { - "l": "75.0", - "x": 3.4358, - "y": 101.2391 - }, - { - "l": "75.0", - "x": 3.5192, - "y": 101.9084 - }, - { - "l": "75.0", - "x": 3.6025, - "y": 102.5684 - }, - { - "l": "75.0", - "x": 3.6858, - "y": 103.22 - }, - { - "l": "75.0", - "x": 3.7692, - "y": 103.8631 - }, - { - "l": "75.0", - "x": 3.8525, - "y": 104.4976 - }, - { - "l": "75.0", - "x": 3.9358, - "y": 105.1244 - }, - { - "l": "75.0", - "x": 4.0, - "y": 105.6029 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 2.0, - "y": 90.0171 - }, - { - "l": "91.0", - "x": 2.0192, - "y": 90.2342 - }, - { - "l": "91.0", - "x": 2.1025, - "y": 91.1759 - }, - { - "l": "91.0", - "x": 2.1858, - "y": 92.0961 - }, - { - "l": "91.0", - "x": 2.2692, - "y": 92.9964 - }, - { - "l": "91.0", - "x": 2.3525, - "y": 93.876 - }, - { - "l": "91.0", - "x": 2.4358, - "y": 94.7366 - }, - { - "l": "91.0", - "x": 2.5192, - "y": 95.5784 - }, - { - "l": "91.0", - "x": 2.6025, - "y": 96.4019 - }, - { - "l": "91.0", - "x": 2.6858, - "y": 97.2093 - }, - { - "l": "91.0", - "x": 2.7692, - "y": 98.0014 - }, - { - "l": "91.0", - "x": 2.8525, - "y": 98.7806 - }, - { - "l": "91.0", - "x": 2.9358, - "y": 99.5467 - }, - { - "l": "91.0", - "x": 3.0192, - "y": 100.3014 - }, - { - "l": "91.0", - "x": 3.1025, - "y": 101.0471 - }, - { - "l": "91.0", - "x": 3.1858, - "y": 101.7817 - }, - { - "l": "91.0", - "x": 3.2692, - "y": 102.5061 - }, - { - "l": "91.0", - "x": 3.3525, - "y": 103.2215 - }, - { - "l": "91.0", - "x": 3.4358, - "y": 103.9281 - }, - { - "l": "91.0", - "x": 3.5192, - "y": 104.6252 - }, - { - "l": "91.0", - "x": 3.6025, - "y": 105.3125 - }, - { - "l": "91.0", - "x": 3.6858, - "y": 105.9914 - }, - { - "l": "91.0", - "x": 3.7692, - "y": 106.6614 - }, - { - "l": "91.0", - "x": 3.8525, - "y": 107.3224 - }, - { - "l": "91.0", - "x": 3.9358, - "y": 107.9759 - }, - { - "l": "91.0", - "x": 4.0, - "y": 108.4746 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 2.0, - "y": 92.1679 - }, - { - "l": "98.0", - "x": 2.0192, - "y": 92.393 - }, - { - "l": "98.0", - "x": 2.1025, - "y": 93.3694 - }, - { - "l": "98.0", - "x": 2.1858, - "y": 94.324 - }, - { - "l": "98.0", - "x": 2.2692, - "y": 95.2583 - }, - { - "l": "98.0", - "x": 2.3525, - "y": 96.1711 - }, - { - "l": "98.0", - "x": 2.4358, - "y": 97.0648 - }, - { - "l": "98.0", - "x": 2.5192, - "y": 97.9393 - }, - { - "l": "98.0", - "x": 2.6025, - "y": 98.7947 - }, - { - "l": "98.0", - "x": 2.6858, - "y": 99.6337 - }, - { - "l": "98.0", - "x": 2.7692, - "y": 100.4568 - }, - { - "l": "98.0", - "x": 2.8525, - "y": 101.2666 - }, - { - "l": "98.0", - "x": 2.9358, - "y": 102.0626 - }, - { - "l": "98.0", - "x": 3.0192, - "y": 102.8468 - }, - { - "l": "98.0", - "x": 3.1025, - "y": 103.6223 - }, - { - "l": "98.0", - "x": 3.1858, - "y": 104.3858 - }, - { - "l": "98.0", - "x": 3.2692, - "y": 105.1386 - }, - { - "l": "98.0", - "x": 3.3525, - "y": 105.8822 - }, - { - "l": "98.0", - "x": 3.4358, - "y": 106.617 - }, - { - "l": "98.0", - "x": 3.5192, - "y": 107.3421 - }, - { - "l": "98.0", - "x": 3.6025, - "y": 108.0567 - }, - { - "l": "98.0", - "x": 3.6858, - "y": 108.7628 - }, - { - "l": "98.0", - "x": 3.7692, - "y": 109.4597 - }, - { - "l": "98.0", - "x": 3.8525, - "y": 110.1472 - }, - { - "l": "98.0", - "x": 3.9358, - "y": 110.8274 - }, - { - "l": "98.0", - "x": 4.0, - "y": 111.3462 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 2.0, - "y": 94.3188 - }, - { - "l": "99.6", - "x": 2.0192, - "y": 94.5519 - }, - { - "l": "99.6", - "x": 2.1025, - "y": 95.5628 - }, - { - "l": "99.6", - "x": 2.1858, - "y": 96.5518 - }, - { - "l": "99.6", - "x": 2.2692, - "y": 97.5202 - }, - { - "l": "99.6", - "x": 2.3525, - "y": 98.4663 - }, - { - "l": "99.6", - "x": 2.4358, - "y": 99.393 - }, - { - "l": "99.6", - "x": 2.5192, - "y": 100.3001 - }, - { - "l": "99.6", - "x": 2.6025, - "y": 101.1875 - }, - { - "l": "99.6", - "x": 2.6858, - "y": 102.0581 - }, - { - "l": "99.6", - "x": 2.7692, - "y": 102.9121 - }, - { - "l": "99.6", - "x": 2.8525, - "y": 103.7527 - }, - { - "l": "99.6", - "x": 2.9358, - "y": 104.5785 - }, - { - "l": "99.6", - "x": 3.0192, - "y": 105.3922 - }, - { - "l": "99.6", - "x": 3.1025, - "y": 106.1974 - }, - { - "l": "99.6", - "x": 3.1858, - "y": 106.9899 - }, - { - "l": "99.6", - "x": 3.2692, - "y": 107.771 - }, - { - "l": "99.6", - "x": 3.3525, - "y": 108.5429 - }, - { - "l": "99.6", - "x": 3.4358, - "y": 109.3059 - }, - { - "l": "99.6", - "x": 3.5192, - "y": 110.059 - }, - { - "l": "99.6", - "x": 3.6025, - "y": 110.8008 - }, - { - "l": "99.6", - "x": 3.6858, - "y": 111.5341 - }, - { - "l": "99.6", - "x": 3.7692, - "y": 112.258 - }, - { - "l": "99.6", - "x": 3.8525, - "y": 112.9719 - }, - { - "l": "99.6", - "x": 3.9358, - "y": 113.679 - }, - { - "l": "99.6", - "x": 4.0, - "y": 114.2179 - } - ] - } - ], - "weight": null, - "ofc": null, - "bmi": null - } - } - }, - { - "uk90_child": { - "male": null, - "female": { - "height": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 4.0, - "y": 90.7984 - }, - { - "l": "0.4", - "x": 4.0833, - "y": 91.2844 - }, - { - "l": "0.4", - "x": 4.1667, - "y": 91.7762 - }, - { - "l": "0.4", - "x": 4.25, - "y": 92.2792 - }, - { - "l": "0.4", - "x": 4.3333, - "y": 92.7819 - }, - { - "l": "0.4", - "x": 4.4167, - "y": 93.3021 - }, - { - "l": "0.4", - "x": 4.5, - "y": 93.819 - }, - { - "l": "0.4", - "x": 4.5833, - "y": 94.3384 - }, - { - "l": "0.4", - "x": 4.6667, - "y": 94.8662 - }, - { - "l": "0.4", - "x": 4.75, - "y": 95.3848 - }, - { - "l": "0.4", - "x": 4.8333, - "y": 95.9058 - }, - { - "l": "0.4", - "x": 4.9167, - "y": 96.4265 - }, - { - "l": "0.4", - "x": 5.0, - "y": 96.9289 - }, - { - "l": "0.4", - "x": 5.0833, - "y": 97.4251 - }, - { - "l": "0.4", - "x": 5.1667, - "y": 97.912 - }, - { - "l": "0.4", - "x": 5.25, - "y": 98.3898 - }, - { - "l": "0.4", - "x": 5.3333, - "y": 98.8613 - }, - { - "l": "0.4", - "x": 5.4167, - "y": 99.3266 - }, - { - "l": "0.4", - "x": 5.5, - "y": 99.7739 - }, - { - "l": "0.4", - "x": 5.5833, - "y": 100.221 - }, - { - "l": "0.4", - "x": 5.6667, - "y": 100.6619 - }, - { - "l": "0.4", - "x": 5.75, - "y": 101.1027 - }, - { - "l": "0.4", - "x": 5.8333, - "y": 101.5345 - }, - { - "l": "0.4", - "x": 5.9167, - "y": 101.9602 - }, - { - "l": "0.4", - "x": 6.0, - "y": 102.3946 - }, - { - "l": "0.4", - "x": 6.0833, - "y": 102.82 - }, - { - "l": "0.4", - "x": 6.1667, - "y": 103.2483 - }, - { - "l": "0.4", - "x": 6.25, - "y": 103.6676 - }, - { - "l": "0.4", - "x": 6.3333, - "y": 104.0868 - }, - { - "l": "0.4", - "x": 6.4167, - "y": 104.5147 - }, - { - "l": "0.4", - "x": 6.5, - "y": 104.9337 - }, - { - "l": "0.4", - "x": 6.5833, - "y": 105.3556 - }, - { - "l": "0.4", - "x": 6.6667, - "y": 105.7743 - }, - { - "l": "0.4", - "x": 6.75, - "y": 106.1961 - }, - { - "l": "0.4", - "x": 6.8333, - "y": 106.6177 - }, - { - "l": "0.4", - "x": 6.9167, - "y": 107.057 - }, - { - "l": "0.4", - "x": 7.0, - "y": 107.4905 - }, - { - "l": "0.4", - "x": 7.0833, - "y": 107.9207 - }, - { - "l": "0.4", - "x": 7.1667, - "y": 108.3629 - }, - { - "l": "0.4", - "x": 7.25, - "y": 108.805 - }, - { - "l": "0.4", - "x": 7.3333, - "y": 109.2592 - }, - { - "l": "0.4", - "x": 7.4167, - "y": 109.7012 - }, - { - "l": "0.4", - "x": 7.5, - "y": 110.1464 - }, - { - "l": "0.4", - "x": 7.5833, - "y": 110.5883 - }, - { - "l": "0.4", - "x": 7.6667, - "y": 111.0212 - }, - { - "l": "0.4", - "x": 7.75, - "y": 111.4628 - }, - { - "l": "0.4", - "x": 7.8333, - "y": 111.8956 - }, - { - "l": "0.4", - "x": 7.9167, - "y": 112.3282 - }, - { - "l": "0.4", - "x": 8.0, - "y": 112.7451 - }, - { - "l": "0.4", - "x": 8.0833, - "y": 113.1565 - }, - { - "l": "0.4", - "x": 8.1667, - "y": 113.5609 - }, - { - "l": "0.4", - "x": 8.25, - "y": 113.9474 - }, - { - "l": "0.4", - "x": 8.3333, - "y": 114.3393 - }, - { - "l": "0.4", - "x": 8.4167, - "y": 114.722 - }, - { - "l": "0.4", - "x": 8.5, - "y": 115.0923 - }, - { - "l": "0.4", - "x": 8.5833, - "y": 115.459 - }, - { - "l": "0.4", - "x": 8.6667, - "y": 115.8165 - }, - { - "l": "0.4", - "x": 8.75, - "y": 116.1792 - }, - { - "l": "0.4", - "x": 8.8333, - "y": 116.5293 - }, - { - "l": "0.4", - "x": 8.9167, - "y": 116.8845 - }, - { - "l": "0.4", - "x": 9.0, - "y": 117.2393 - }, - { - "l": "0.4", - "x": 9.0833, - "y": 117.5903 - }, - { - "l": "0.4", - "x": 9.1667, - "y": 117.9463 - }, - { - "l": "0.4", - "x": 9.25, - "y": 118.3019 - }, - { - "l": "0.4", - "x": 9.3333, - "y": 118.6536 - }, - { - "l": "0.4", - "x": 9.4167, - "y": 119.0101 - }, - { - "l": "0.4", - "x": 9.5, - "y": 119.3662 - }, - { - "l": "0.4", - "x": 9.5833, - "y": 119.7183 - }, - { - "l": "0.4", - "x": 9.6667, - "y": 120.0699 - }, - { - "l": "0.4", - "x": 9.75, - "y": 120.4212 - }, - { - "l": "0.4", - "x": 9.8333, - "y": 120.7771 - }, - { - "l": "0.4", - "x": 9.9167, - "y": 121.1238 - }, - { - "l": "0.4", - "x": 10.0, - "y": 121.4751 - }, - { - "l": "0.4", - "x": 10.0833, - "y": 121.8172 - }, - { - "l": "0.4", - "x": 10.1667, - "y": 122.1712 - }, - { - "l": "0.4", - "x": 10.25, - "y": 122.5211 - }, - { - "l": "0.4", - "x": 10.3333, - "y": 122.8655 - }, - { - "l": "0.4", - "x": 10.4167, - "y": 123.2181 - }, - { - "l": "0.4", - "x": 10.5, - "y": 123.5654 - }, - { - "l": "0.4", - "x": 10.5833, - "y": 123.9209 - }, - { - "l": "0.4", - "x": 10.6667, - "y": 124.2749 - }, - { - "l": "0.4", - "x": 10.75, - "y": 124.6372 - }, - { - "l": "0.4", - "x": 10.8333, - "y": 124.998 - }, - { - "l": "0.4", - "x": 10.9167, - "y": 125.3624 - }, - { - "l": "0.4", - "x": 11.0, - "y": 125.7303 - }, - { - "l": "0.4", - "x": 11.0833, - "y": 126.1095 - }, - { - "l": "0.4", - "x": 11.1667, - "y": 126.4923 - }, - { - "l": "0.4", - "x": 11.25, - "y": 126.8828 - }, - { - "l": "0.4", - "x": 11.3333, - "y": 127.2809 - }, - { - "l": "0.4", - "x": 11.4167, - "y": 127.6867 - }, - { - "l": "0.4", - "x": 11.5, - "y": 128.0916 - }, - { - "l": "0.4", - "x": 11.5833, - "y": 128.5131 - }, - { - "l": "0.4", - "x": 11.6667, - "y": 128.9466 - }, - { - "l": "0.4", - "x": 11.75, - "y": 129.3841 - }, - { - "l": "0.4", - "x": 11.8333, - "y": 129.8425 - }, - { - "l": "0.4", - "x": 11.9167, - "y": 130.2916 - }, - { - "l": "0.4", - "x": 12.0, - "y": 130.7704 - }, - { - "l": "0.4", - "x": 12.0833, - "y": 131.2537 - }, - { - "l": "0.4", - "x": 12.1667, - "y": 131.7366 - }, - { - "l": "0.4", - "x": 12.25, - "y": 132.2281 - }, - { - "l": "0.4", - "x": 12.3333, - "y": 132.7328 - }, - { - "l": "0.4", - "x": 12.4167, - "y": 133.2375 - }, - { - "l": "0.4", - "x": 12.5, - "y": 133.7508 - }, - { - "l": "0.4", - "x": 12.5833, - "y": 134.2602 - }, - { - "l": "0.4", - "x": 12.6667, - "y": 134.7742 - }, - { - "l": "0.4", - "x": 12.75, - "y": 135.2754 - }, - { - "l": "0.4", - "x": 12.8333, - "y": 135.7902 - }, - { - "l": "0.4", - "x": 12.9167, - "y": 136.301 - }, - { - "l": "0.4", - "x": 13.0, - "y": 136.8038 - }, - { - "l": "0.4", - "x": 13.0833, - "y": 137.3025 - }, - { - "l": "0.4", - "x": 13.1667, - "y": 137.7931 - }, - { - "l": "0.4", - "x": 13.25, - "y": 138.2844 - }, - { - "l": "0.4", - "x": 13.3333, - "y": 138.7587 - }, - { - "l": "0.4", - "x": 13.4167, - "y": 139.2159 - }, - { - "l": "0.4", - "x": 13.5, - "y": 139.6737 - }, - { - "l": "0.4", - "x": 13.5833, - "y": 140.1144 - }, - { - "l": "0.4", - "x": 13.6667, - "y": 140.5515 - }, - { - "l": "0.4", - "x": 13.75, - "y": 140.9802 - }, - { - "l": "0.4", - "x": 13.8333, - "y": 141.3875 - }, - { - "l": "0.4", - "x": 13.9167, - "y": 141.7774 - }, - { - "l": "0.4", - "x": 14.0, - "y": 142.1593 - }, - { - "l": "0.4", - "x": 14.0833, - "y": 142.5238 - }, - { - "l": "0.4", - "x": 14.1667, - "y": 142.8798 - }, - { - "l": "0.4", - "x": 14.25, - "y": 143.2187 - }, - { - "l": "0.4", - "x": 14.3333, - "y": 143.5447 - }, - { - "l": "0.4", - "x": 14.4167, - "y": 143.8489 - }, - { - "l": "0.4", - "x": 14.5, - "y": 144.1401 - }, - { - "l": "0.4", - "x": 14.5833, - "y": 144.4094 - }, - { - "l": "0.4", - "x": 14.6667, - "y": 144.6788 - }, - { - "l": "0.4", - "x": 14.75, - "y": 144.9267 - }, - { - "l": "0.4", - "x": 14.8333, - "y": 145.1567 - }, - { - "l": "0.4", - "x": 14.9167, - "y": 145.3604 - }, - { - "l": "0.4", - "x": 15.0, - "y": 145.5641 - }, - { - "l": "0.4", - "x": 15.0833, - "y": 145.7504 - }, - { - "l": "0.4", - "x": 15.1667, - "y": 145.9144 - }, - { - "l": "0.4", - "x": 15.25, - "y": 146.0742 - }, - { - "l": "0.4", - "x": 15.3333, - "y": 146.2118 - }, - { - "l": "0.4", - "x": 15.4167, - "y": 146.3451 - }, - { - "l": "0.4", - "x": 15.5, - "y": 146.4695 - }, - { - "l": "0.4", - "x": 15.5833, - "y": 146.5672 - }, - { - "l": "0.4", - "x": 15.6667, - "y": 146.6739 - }, - { - "l": "0.4", - "x": 15.75, - "y": 146.7583 - }, - { - "l": "0.4", - "x": 15.8333, - "y": 146.8384 - }, - { - "l": "0.4", - "x": 15.9167, - "y": 146.9186 - }, - { - "l": "0.4", - "x": 16.0, - "y": 146.9763 - }, - { - "l": "0.4", - "x": 16.0833, - "y": 147.0388 - }, - { - "l": "0.4", - "x": 16.1667, - "y": 147.0876 - }, - { - "l": "0.4", - "x": 16.25, - "y": 147.1367 - }, - { - "l": "0.4", - "x": 16.3333, - "y": 147.1811 - }, - { - "l": "0.4", - "x": 16.4167, - "y": 147.2212 - }, - { - "l": "0.4", - "x": 16.5, - "y": 147.248 - }, - { - "l": "0.4", - "x": 16.5833, - "y": 147.2881 - }, - { - "l": "0.4", - "x": 16.6667, - "y": 147.3014 - }, - { - "l": "0.4", - "x": 16.75, - "y": 147.3282 - }, - { - "l": "0.4", - "x": 16.8333, - "y": 147.3415 - }, - { - "l": "0.4", - "x": 16.9167, - "y": 147.3549 - }, - { - "l": "0.4", - "x": 17.0, - "y": 147.3683 - }, - { - "l": "0.4", - "x": 17.0833, - "y": 147.3727 - }, - { - "l": "0.4", - "x": 17.1667, - "y": 147.3817 - }, - { - "l": "0.4", - "x": 17.25, - "y": 147.3817 - }, - { - "l": "0.4", - "x": 17.3333, - "y": 147.3817 - }, - { - "l": "0.4", - "x": 17.4167, - "y": 147.386 - }, - { - "l": "0.4", - "x": 17.5, - "y": 147.395 - }, - { - "l": "0.4", - "x": 17.5833, - "y": 147.3994 - }, - { - "l": "0.4", - "x": 17.6667, - "y": 147.4084 - }, - { - "l": "0.4", - "x": 17.75, - "y": 147.4218 - }, - { - "l": "0.4", - "x": 17.8333, - "y": 147.4352 - }, - { - "l": "0.4", - "x": 17.9167, - "y": 147.4485 - }, - { - "l": "0.4", - "x": 18.0, - "y": 147.4529 - }, - { - "l": "0.4", - "x": 18.0833, - "y": 147.4619 - }, - { - "l": "0.4", - "x": 18.1667, - "y": 147.4753 - }, - { - "l": "0.4", - "x": 18.25, - "y": 147.4887 - }, - { - "l": "0.4", - "x": 18.3333, - "y": 147.4887 - }, - { - "l": "0.4", - "x": 18.4167, - "y": 147.5021 - }, - { - "l": "0.4", - "x": 18.5, - "y": 147.5021 - }, - { - "l": "0.4", - "x": 18.5833, - "y": 147.5154 - }, - { - "l": "0.4", - "x": 18.6667, - "y": 147.5154 - }, - { - "l": "0.4", - "x": 18.75, - "y": 147.5154 - }, - { - "l": "0.4", - "x": 18.8333, - "y": 147.5244 - }, - { - "l": "0.4", - "x": 18.9167, - "y": 147.5244 - }, - { - "l": "0.4", - "x": 19.0, - "y": 147.5244 - }, - { - "l": "0.4", - "x": 19.0833, - "y": 147.5244 - }, - { - "l": "0.4", - "x": 19.1667, - "y": 147.5244 - }, - { - "l": "0.4", - "x": 19.25, - "y": 147.5244 - }, - { - "l": "0.4", - "x": 19.3333, - "y": 147.5244 - }, - { - "l": "0.4", - "x": 19.4167, - "y": 147.5244 - }, - { - "l": "0.4", - "x": 19.5, - "y": 147.5288 - }, - { - "l": "0.4", - "x": 19.5833, - "y": 147.5288 - }, - { - "l": "0.4", - "x": 19.6667, - "y": 147.5288 - }, - { - "l": "0.4", - "x": 19.75, - "y": 147.5288 - }, - { - "l": "0.4", - "x": 19.8333, - "y": 147.5378 - }, - { - "l": "0.4", - "x": 19.9167, - "y": 147.5378 - }, - { - "l": "0.4", - "x": 20.0, - "y": 147.5378 - }, - { - "l": "0.4", - "x": 20.0, - "y": 147.5378 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 4.0, - "y": 93.4838 - }, - { - "l": "2.0", - "x": 4.0833, - "y": 93.9933 - }, - { - "l": "2.0", - "x": 4.1667, - "y": 94.5096 - }, - { - "l": "2.0", - "x": 4.25, - "y": 95.0369 - }, - { - "l": "2.0", - "x": 4.3333, - "y": 95.5639 - }, - { - "l": "2.0", - "x": 4.4167, - "y": 96.1091 - }, - { - "l": "2.0", - "x": 4.5, - "y": 96.6518 - }, - { - "l": "2.0", - "x": 4.5833, - "y": 97.1963 - }, - { - "l": "2.0", - "x": 4.6667, - "y": 97.7497 - }, - { - "l": "2.0", - "x": 4.75, - "y": 98.2936 - }, - { - "l": "2.0", - "x": 4.8333, - "y": 98.8394 - }, - { - "l": "2.0", - "x": 4.9167, - "y": 99.3848 - }, - { - "l": "2.0", - "x": 5.0, - "y": 99.9117 - }, - { - "l": "2.0", - "x": 5.0833, - "y": 100.4313 - }, - { - "l": "2.0", - "x": 5.1667, - "y": 100.9415 - }, - { - "l": "2.0", - "x": 5.25, - "y": 101.4423 - }, - { - "l": "2.0", - "x": 5.3333, - "y": 101.9359 - }, - { - "l": "2.0", - "x": 5.4167, - "y": 102.4224 - }, - { - "l": "2.0", - "x": 5.5, - "y": 102.8904 - }, - { - "l": "2.0", - "x": 5.5833, - "y": 103.3582 - }, - { - "l": "2.0", - "x": 5.6667, - "y": 103.819 - }, - { - "l": "2.0", - "x": 5.75, - "y": 104.2796 - }, - { - "l": "2.0", - "x": 5.8333, - "y": 104.7308 - }, - { - "l": "2.0", - "x": 5.9167, - "y": 105.1751 - }, - { - "l": "2.0", - "x": 6.0, - "y": 105.6284 - }, - { - "l": "2.0", - "x": 6.0833, - "y": 106.0725 - }, - { - "l": "2.0", - "x": 6.1667, - "y": 106.5187 - }, - { - "l": "2.0", - "x": 6.25, - "y": 106.9557 - }, - { - "l": "2.0", - "x": 6.3333, - "y": 107.3926 - }, - { - "l": "2.0", - "x": 6.4167, - "y": 107.8386 - }, - { - "l": "2.0", - "x": 6.5, - "y": 108.2753 - }, - { - "l": "2.0", - "x": 6.5833, - "y": 108.7142 - }, - { - "l": "2.0", - "x": 6.6667, - "y": 109.1507 - }, - { - "l": "2.0", - "x": 6.75, - "y": 109.5895 - }, - { - "l": "2.0", - "x": 6.8333, - "y": 110.0283 - }, - { - "l": "2.0", - "x": 6.9167, - "y": 110.4852 - }, - { - "l": "2.0", - "x": 7.0, - "y": 110.9354 - }, - { - "l": "2.0", - "x": 7.0833, - "y": 111.383 - }, - { - "l": "2.0", - "x": 7.1667, - "y": 111.8422 - }, - { - "l": "2.0", - "x": 7.25, - "y": 112.3013 - }, - { - "l": "2.0", - "x": 7.3333, - "y": 112.7719 - }, - { - "l": "2.0", - "x": 7.4167, - "y": 113.2309 - }, - { - "l": "2.0", - "x": 7.5, - "y": 113.6923 - }, - { - "l": "2.0", - "x": 7.5833, - "y": 114.1512 - }, - { - "l": "2.0", - "x": 7.6667, - "y": 114.6009 - }, - { - "l": "2.0", - "x": 7.75, - "y": 115.0596 - }, - { - "l": "2.0", - "x": 7.8333, - "y": 115.5092 - }, - { - "l": "2.0", - "x": 7.9167, - "y": 115.9587 - }, - { - "l": "2.0", - "x": 8.0, - "y": 116.3939 - }, - { - "l": "2.0", - "x": 8.0833, - "y": 116.8224 - }, - { - "l": "2.0", - "x": 8.1667, - "y": 117.2457 - }, - { - "l": "2.0", - "x": 8.25, - "y": 117.6506 - }, - { - "l": "2.0", - "x": 8.3333, - "y": 118.0619 - }, - { - "l": "2.0", - "x": 8.4167, - "y": 118.464 - }, - { - "l": "2.0", - "x": 8.5, - "y": 118.8543 - }, - { - "l": "2.0", - "x": 8.5833, - "y": 119.2417 - }, - { - "l": "2.0", - "x": 8.6667, - "y": 119.6199 - }, - { - "l": "2.0", - "x": 8.75, - "y": 120.0044 - }, - { - "l": "2.0", - "x": 8.8333, - "y": 120.377 - }, - { - "l": "2.0", - "x": 8.9167, - "y": 120.7559 - }, - { - "l": "2.0", - "x": 9.0, - "y": 121.1345 - }, - { - "l": "2.0", - "x": 9.0833, - "y": 121.5103 - }, - { - "l": "2.0", - "x": 9.1667, - "y": 121.8922 - }, - { - "l": "2.0", - "x": 9.25, - "y": 122.2739 - }, - { - "l": "2.0", - "x": 9.3333, - "y": 122.6527 - }, - { - "l": "2.0", - "x": 9.4167, - "y": 123.0376 - }, - { - "l": "2.0", - "x": 9.5, - "y": 123.4222 - }, - { - "l": "2.0", - "x": 9.5833, - "y": 123.8037 - }, - { - "l": "2.0", - "x": 9.6667, - "y": 124.185 - }, - { - "l": "2.0", - "x": 9.75, - "y": 124.5659 - }, - { - "l": "2.0", - "x": 9.8333, - "y": 124.9528 - }, - { - "l": "2.0", - "x": 9.9167, - "y": 125.3303 - }, - { - "l": "2.0", - "x": 10.0, - "y": 125.7138 - }, - { - "l": "2.0", - "x": 10.0833, - "y": 126.0879 - }, - { - "l": "2.0", - "x": 10.1667, - "y": 126.4734 - }, - { - "l": "2.0", - "x": 10.25, - "y": 126.8558 - }, - { - "l": "2.0", - "x": 10.3333, - "y": 127.2316 - }, - { - "l": "2.0", - "x": 10.4167, - "y": 127.6161 - }, - { - "l": "2.0", - "x": 10.5, - "y": 127.994 - }, - { - "l": "2.0", - "x": 10.5833, - "y": 128.3807 - }, - { - "l": "2.0", - "x": 10.6667, - "y": 128.7637 - }, - { - "l": "2.0", - "x": 10.75, - "y": 129.1554 - }, - { - "l": "2.0", - "x": 10.8333, - "y": 129.5435 - }, - { - "l": "2.0", - "x": 10.9167, - "y": 129.9343 - }, - { - "l": "2.0", - "x": 11.0, - "y": 130.3277 - }, - { - "l": "2.0", - "x": 11.0833, - "y": 130.7296 - }, - { - "l": "2.0", - "x": 11.1667, - "y": 131.1342 - }, - { - "l": "2.0", - "x": 11.25, - "y": 131.5446 - }, - { - "l": "2.0", - "x": 11.3333, - "y": 131.9606 - }, - { - "l": "2.0", - "x": 11.4167, - "y": 132.3825 - }, - { - "l": "2.0", - "x": 11.5, - "y": 132.8012 - }, - { - "l": "2.0", - "x": 11.5833, - "y": 133.2349 - }, - { - "l": "2.0", - "x": 11.6667, - "y": 133.6774 - }, - { - "l": "2.0", - "x": 11.75, - "y": 134.1231 - }, - { - "l": "2.0", - "x": 11.8333, - "y": 134.5869 - }, - { - "l": "2.0", - "x": 11.9167, - "y": 135.0387 - }, - { - "l": "2.0", - "x": 12.0, - "y": 135.5178 - }, - { - "l": "2.0", - "x": 12.0833, - "y": 136.0003 - }, - { - "l": "2.0", - "x": 12.1667, - "y": 136.48 - }, - { - "l": "2.0", - "x": 12.25, - "y": 136.9661 - }, - { - "l": "2.0", - "x": 12.3333, - "y": 137.4646 - }, - { - "l": "2.0", - "x": 12.4167, - "y": 137.9606 - }, - { - "l": "2.0", - "x": 12.5, - "y": 138.4631 - }, - { - "l": "2.0", - "x": 12.5833, - "y": 138.9601 - }, - { - "l": "2.0", - "x": 12.6667, - "y": 139.4606 - }, - { - "l": "2.0", - "x": 12.75, - "y": 139.9466 - }, - { - "l": "2.0", - "x": 12.8333, - "y": 140.4452 - }, - { - "l": "2.0", - "x": 12.9167, - "y": 140.9383 - }, - { - "l": "2.0", - "x": 13.0, - "y": 141.4228 - }, - { - "l": "2.0", - "x": 13.0833, - "y": 141.9019 - }, - { - "l": "2.0", - "x": 13.1667, - "y": 142.3723 - }, - { - "l": "2.0", - "x": 13.25, - "y": 142.8433 - }, - { - "l": "2.0", - "x": 13.3333, - "y": 143.2965 - }, - { - "l": "2.0", - "x": 13.4167, - "y": 143.7319 - }, - { - "l": "2.0", - "x": 13.5, - "y": 144.1678 - }, - { - "l": "2.0", - "x": 13.5833, - "y": 144.5858 - }, - { - "l": "2.0", - "x": 13.6667, - "y": 145.0011 - }, - { - "l": "2.0", - "x": 13.75, - "y": 145.4076 - }, - { - "l": "2.0", - "x": 13.8333, - "y": 145.7931 - }, - { - "l": "2.0", - "x": 13.9167, - "y": 146.1606 - }, - { - "l": "2.0", - "x": 14.0, - "y": 146.522 - }, - { - "l": "2.0", - "x": 14.0833, - "y": 146.8654 - }, - { - "l": "2.0", - "x": 14.1667, - "y": 147.1999 - }, - { - "l": "2.0", - "x": 14.25, - "y": 147.519 - }, - { - "l": "2.0", - "x": 14.3333, - "y": 147.826 - }, - { - "l": "2.0", - "x": 14.4167, - "y": 148.1117 - }, - { - "l": "2.0", - "x": 14.5, - "y": 148.3851 - }, - { - "l": "2.0", - "x": 14.5833, - "y": 148.637 - }, - { - "l": "2.0", - "x": 14.6667, - "y": 148.8891 - }, - { - "l": "2.0", - "x": 14.75, - "y": 149.1225 - }, - { - "l": "2.0", - "x": 14.8333, - "y": 149.3375 - }, - { - "l": "2.0", - "x": 14.9167, - "y": 149.5278 - }, - { - "l": "2.0", - "x": 15.0, - "y": 149.7181 - }, - { - "l": "2.0", - "x": 15.0833, - "y": 149.8928 - }, - { - "l": "2.0", - "x": 15.1667, - "y": 150.0458 - }, - { - "l": "2.0", - "x": 15.25, - "y": 150.1957 - }, - { - "l": "2.0", - "x": 15.3333, - "y": 150.3239 - }, - { - "l": "2.0", - "x": 15.4167, - "y": 150.4488 - }, - { - "l": "2.0", - "x": 15.5, - "y": 150.5646 - }, - { - "l": "2.0", - "x": 15.5833, - "y": 150.6554 - }, - { - "l": "2.0", - "x": 15.6667, - "y": 150.7554 - }, - { - "l": "2.0", - "x": 15.75, - "y": 150.8338 - }, - { - "l": "2.0", - "x": 15.8333, - "y": 150.9088 - }, - { - "l": "2.0", - "x": 15.9167, - "y": 150.9839 - }, - { - "l": "2.0", - "x": 16.0, - "y": 151.0373 - }, - { - "l": "2.0", - "x": 16.0833, - "y": 151.0966 - }, - { - "l": "2.0", - "x": 16.1667, - "y": 151.1407 - }, - { - "l": "2.0", - "x": 16.25, - "y": 151.1875 - }, - { - "l": "2.0", - "x": 16.3333, - "y": 151.2283 - }, - { - "l": "2.0", - "x": 16.4167, - "y": 151.2659 - }, - { - "l": "2.0", - "x": 16.5, - "y": 151.291 - }, - { - "l": "2.0", - "x": 16.5833, - "y": 151.3285 - }, - { - "l": "2.0", - "x": 16.6667, - "y": 151.3411 - }, - { - "l": "2.0", - "x": 16.75, - "y": 151.3661 - }, - { - "l": "2.0", - "x": 16.8333, - "y": 151.3787 - }, - { - "l": "2.0", - "x": 16.9167, - "y": 151.3912 - }, - { - "l": "2.0", - "x": 17.0, - "y": 151.4037 - }, - { - "l": "2.0", - "x": 17.0833, - "y": 151.407 - }, - { - "l": "2.0", - "x": 17.1667, - "y": 151.4162 - }, - { - "l": "2.0", - "x": 17.25, - "y": 151.4162 - }, - { - "l": "2.0", - "x": 17.3333, - "y": 151.4162 - }, - { - "l": "2.0", - "x": 17.4167, - "y": 151.4195 - }, - { - "l": "2.0", - "x": 17.5, - "y": 151.4288 - }, - { - "l": "2.0", - "x": 17.5833, - "y": 151.4321 - }, - { - "l": "2.0", - "x": 17.6667, - "y": 151.4413 - }, - { - "l": "2.0", - "x": 17.75, - "y": 151.4538 - }, - { - "l": "2.0", - "x": 17.8333, - "y": 151.4664 - }, - { - "l": "2.0", - "x": 17.9167, - "y": 151.4789 - }, - { - "l": "2.0", - "x": 18.0, - "y": 151.4822 - }, - { - "l": "2.0", - "x": 18.0833, - "y": 151.4914 - }, - { - "l": "2.0", - "x": 18.1667, - "y": 151.504 - }, - { - "l": "2.0", - "x": 18.25, - "y": 151.5165 - }, - { - "l": "2.0", - "x": 18.3333, - "y": 151.5165 - }, - { - "l": "2.0", - "x": 18.4167, - "y": 151.529 - }, - { - "l": "2.0", - "x": 18.5, - "y": 151.529 - }, - { - "l": "2.0", - "x": 18.5833, - "y": 151.5416 - }, - { - "l": "2.0", - "x": 18.6667, - "y": 151.5416 - }, - { - "l": "2.0", - "x": 18.75, - "y": 151.5416 - }, - { - "l": "2.0", - "x": 18.8333, - "y": 151.5508 - }, - { - "l": "2.0", - "x": 18.9167, - "y": 151.5508 - }, - { - "l": "2.0", - "x": 19.0, - "y": 151.5508 - }, - { - "l": "2.0", - "x": 19.0833, - "y": 151.5508 - }, - { - "l": "2.0", - "x": 19.1667, - "y": 151.5508 - }, - { - "l": "2.0", - "x": 19.25, - "y": 151.5508 - }, - { - "l": "2.0", - "x": 19.3333, - "y": 151.5508 - }, - { - "l": "2.0", - "x": 19.4167, - "y": 151.5508 - }, - { - "l": "2.0", - "x": 19.5, - "y": 151.5541 - }, - { - "l": "2.0", - "x": 19.5833, - "y": 151.5541 - }, - { - "l": "2.0", - "x": 19.6667, - "y": 151.5541 - }, - { - "l": "2.0", - "x": 19.75, - "y": 151.5541 - }, - { - "l": "2.0", - "x": 19.8333, - "y": 151.5634 - }, - { - "l": "2.0", - "x": 19.9167, - "y": 151.5634 - }, - { - "l": "2.0", - "x": 20.0, - "y": 151.5634 - }, - { - "l": "2.0", - "x": 20.0, - "y": 151.5634 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 4.0, - "y": 96.1692 - }, - { - "l": "9.0", - "x": 4.0833, - "y": 96.7022 - }, - { - "l": "9.0", - "x": 4.1667, - "y": 97.2431 - }, - { - "l": "9.0", - "x": 4.25, - "y": 97.7946 - }, - { - "l": "9.0", - "x": 4.3333, - "y": 98.346 - }, - { - "l": "9.0", - "x": 4.4167, - "y": 98.916 - }, - { - "l": "9.0", - "x": 4.5, - "y": 99.4845 - }, - { - "l": "9.0", - "x": 4.5833, - "y": 100.0542 - }, - { - "l": "9.0", - "x": 4.6667, - "y": 100.6331 - }, - { - "l": "9.0", - "x": 4.75, - "y": 101.2024 - }, - { - "l": "9.0", - "x": 4.8333, - "y": 101.7729 - }, - { - "l": "9.0", - "x": 4.9167, - "y": 102.3432 - }, - { - "l": "9.0", - "x": 5.0, - "y": 102.8945 - }, - { - "l": "9.0", - "x": 5.0833, - "y": 103.4375 - }, - { - "l": "9.0", - "x": 5.1667, - "y": 103.971 - }, - { - "l": "9.0", - "x": 5.25, - "y": 104.4949 - }, - { - "l": "9.0", - "x": 5.3333, - "y": 105.0106 - }, - { - "l": "9.0", - "x": 5.4167, - "y": 105.5183 - }, - { - "l": "9.0", - "x": 5.5, - "y": 106.0069 - }, - { - "l": "9.0", - "x": 5.5833, - "y": 106.4955 - }, - { - "l": "9.0", - "x": 5.6667, - "y": 106.976 - }, - { - "l": "9.0", - "x": 5.75, - "y": 107.4564 - }, - { - "l": "9.0", - "x": 5.8333, - "y": 107.9272 - }, - { - "l": "9.0", - "x": 5.9167, - "y": 108.3901 - }, - { - "l": "9.0", - "x": 6.0, - "y": 108.8623 - }, - { - "l": "9.0", - "x": 6.0833, - "y": 109.325 - }, - { - "l": "9.0", - "x": 6.1667, - "y": 109.7892 - }, - { - "l": "9.0", - "x": 6.25, - "y": 110.2438 - }, - { - "l": "9.0", - "x": 6.3333, - "y": 110.6984 - }, - { - "l": "9.0", - "x": 6.4167, - "y": 111.1624 - }, - { - "l": "9.0", - "x": 6.5, - "y": 111.6168 - }, - { - "l": "9.0", - "x": 6.5833, - "y": 112.0728 - }, - { - "l": "9.0", - "x": 6.6667, - "y": 112.5272 - }, - { - "l": "9.0", - "x": 6.75, - "y": 112.983 - }, - { - "l": "9.0", - "x": 6.8333, - "y": 113.4389 - }, - { - "l": "9.0", - "x": 6.9167, - "y": 113.9135 - }, - { - "l": "9.0", - "x": 7.0, - "y": 114.3802 - }, - { - "l": "9.0", - "x": 7.0833, - "y": 114.8453 - }, - { - "l": "9.0", - "x": 7.1667, - "y": 115.3215 - }, - { - "l": "9.0", - "x": 7.25, - "y": 115.7975 - }, - { - "l": "9.0", - "x": 7.3333, - "y": 116.2846 - }, - { - "l": "9.0", - "x": 7.4167, - "y": 116.7606 - }, - { - "l": "9.0", - "x": 7.5, - "y": 117.2382 - }, - { - "l": "9.0", - "x": 7.5833, - "y": 117.7141 - }, - { - "l": "9.0", - "x": 7.6667, - "y": 118.1806 - }, - { - "l": "9.0", - "x": 7.75, - "y": 118.6564 - }, - { - "l": "9.0", - "x": 7.8333, - "y": 119.1228 - }, - { - "l": "9.0", - "x": 7.9167, - "y": 119.5891 - }, - { - "l": "9.0", - "x": 8.0, - "y": 120.0426 - }, - { - "l": "9.0", - "x": 8.0833, - "y": 120.4882 - }, - { - "l": "9.0", - "x": 8.1667, - "y": 120.9304 - }, - { - "l": "9.0", - "x": 8.25, - "y": 121.3537 - }, - { - "l": "9.0", - "x": 8.3333, - "y": 121.7846 - }, - { - "l": "9.0", - "x": 8.4167, - "y": 122.206 - }, - { - "l": "9.0", - "x": 8.5, - "y": 122.6162 - }, - { - "l": "9.0", - "x": 8.5833, - "y": 123.0245 - }, - { - "l": "9.0", - "x": 8.6667, - "y": 123.4233 - }, - { - "l": "9.0", - "x": 8.75, - "y": 123.8296 - }, - { - "l": "9.0", - "x": 8.8333, - "y": 124.2247 - }, - { - "l": "9.0", - "x": 8.9167, - "y": 124.6272 - }, - { - "l": "9.0", - "x": 9.0, - "y": 125.0297 - }, - { - "l": "9.0", - "x": 9.0833, - "y": 125.4302 - }, - { - "l": "9.0", - "x": 9.1667, - "y": 125.8381 - }, - { - "l": "9.0", - "x": 9.25, - "y": 126.246 - }, - { - "l": "9.0", - "x": 9.3333, - "y": 126.6518 - }, - { - "l": "9.0", - "x": 9.4167, - "y": 127.065 - }, - { - "l": "9.0", - "x": 9.5, - "y": 127.4781 - }, - { - "l": "9.0", - "x": 9.5833, - "y": 127.8891 - }, - { - "l": "9.0", - "x": 9.6667, - "y": 128.3 - }, - { - "l": "9.0", - "x": 9.75, - "y": 128.7106 - }, - { - "l": "9.0", - "x": 9.8333, - "y": 129.1285 - }, - { - "l": "9.0", - "x": 9.9167, - "y": 129.5369 - }, - { - "l": "9.0", - "x": 10.0, - "y": 129.9525 - }, - { - "l": "9.0", - "x": 10.0833, - "y": 130.3586 - }, - { - "l": "9.0", - "x": 10.1667, - "y": 130.7756 - }, - { - "l": "9.0", - "x": 10.25, - "y": 131.1905 - }, - { - "l": "9.0", - "x": 10.3333, - "y": 131.5977 - }, - { - "l": "9.0", - "x": 10.4167, - "y": 132.0141 - }, - { - "l": "9.0", - "x": 10.5, - "y": 132.4227 - }, - { - "l": "9.0", - "x": 10.5833, - "y": 132.8405 - }, - { - "l": "9.0", - "x": 10.6667, - "y": 133.2524 - }, - { - "l": "9.0", - "x": 10.75, - "y": 133.6736 - }, - { - "l": "9.0", - "x": 10.8333, - "y": 134.089 - }, - { - "l": "9.0", - "x": 10.9167, - "y": 134.5062 - }, - { - "l": "9.0", - "x": 11.0, - "y": 134.9251 - }, - { - "l": "9.0", - "x": 11.0833, - "y": 135.3497 - }, - { - "l": "9.0", - "x": 11.1667, - "y": 135.7762 - }, - { - "l": "9.0", - "x": 11.25, - "y": 136.2064 - }, - { - "l": "9.0", - "x": 11.3333, - "y": 136.6404 - }, - { - "l": "9.0", - "x": 11.4167, - "y": 137.0783 - }, - { - "l": "9.0", - "x": 11.5, - "y": 137.5108 - }, - { - "l": "9.0", - "x": 11.5833, - "y": 137.9566 - }, - { - "l": "9.0", - "x": 11.6667, - "y": 138.4083 - }, - { - "l": "9.0", - "x": 11.75, - "y": 138.8621 - }, - { - "l": "9.0", - "x": 11.8333, - "y": 139.3312 - }, - { - "l": "9.0", - "x": 11.9167, - "y": 139.7858 - }, - { - "l": "9.0", - "x": 12.0, - "y": 140.2652 - }, - { - "l": "9.0", - "x": 12.0833, - "y": 140.7468 - }, - { - "l": "9.0", - "x": 12.1667, - "y": 141.2233 - }, - { - "l": "9.0", - "x": 12.25, - "y": 141.704 - }, - { - "l": "9.0", - "x": 12.3333, - "y": 142.1964 - }, - { - "l": "9.0", - "x": 12.4167, - "y": 142.6837 - }, - { - "l": "9.0", - "x": 12.5, - "y": 143.1754 - }, - { - "l": "9.0", - "x": 12.5833, - "y": 143.6601 - }, - { - "l": "9.0", - "x": 12.6667, - "y": 144.1471 - }, - { - "l": "9.0", - "x": 12.75, - "y": 144.6177 - }, - { - "l": "9.0", - "x": 12.8333, - "y": 145.1001 - }, - { - "l": "9.0", - "x": 12.9167, - "y": 145.5755 - }, - { - "l": "9.0", - "x": 13.0, - "y": 146.0419 - }, - { - "l": "9.0", - "x": 13.0833, - "y": 146.5012 - }, - { - "l": "9.0", - "x": 13.1667, - "y": 146.9515 - }, - { - "l": "9.0", - "x": 13.25, - "y": 147.4022 - }, - { - "l": "9.0", - "x": 13.3333, - "y": 147.8343 - }, - { - "l": "9.0", - "x": 13.4167, - "y": 148.2479 - }, - { - "l": "9.0", - "x": 13.5, - "y": 148.6618 - }, - { - "l": "9.0", - "x": 13.5833, - "y": 149.0572 - }, - { - "l": "9.0", - "x": 13.6667, - "y": 149.4507 - }, - { - "l": "9.0", - "x": 13.75, - "y": 149.8351 - }, - { - "l": "9.0", - "x": 13.8333, - "y": 150.1987 - }, - { - "l": "9.0", - "x": 13.9167, - "y": 150.5437 - }, - { - "l": "9.0", - "x": 14.0, - "y": 150.8847 - }, - { - "l": "9.0", - "x": 14.0833, - "y": 151.2069 - }, - { - "l": "9.0", - "x": 14.1667, - "y": 151.5199 - }, - { - "l": "9.0", - "x": 14.25, - "y": 151.8193 - }, - { - "l": "9.0", - "x": 14.3333, - "y": 152.1074 - }, - { - "l": "9.0", - "x": 14.4167, - "y": 152.3744 - }, - { - "l": "9.0", - "x": 14.5, - "y": 152.6301 - }, - { - "l": "9.0", - "x": 14.5833, - "y": 152.8647 - }, - { - "l": "9.0", - "x": 14.6667, - "y": 153.0994 - }, - { - "l": "9.0", - "x": 14.75, - "y": 153.3183 - }, - { - "l": "9.0", - "x": 14.8333, - "y": 153.5184 - }, - { - "l": "9.0", - "x": 14.9167, - "y": 153.6952 - }, - { - "l": "9.0", - "x": 15.0, - "y": 153.8721 - }, - { - "l": "9.0", - "x": 15.0833, - "y": 154.0352 - }, - { - "l": "9.0", - "x": 15.1667, - "y": 154.1772 - }, - { - "l": "9.0", - "x": 15.25, - "y": 154.3171 - }, - { - "l": "9.0", - "x": 15.3333, - "y": 154.4359 - }, - { - "l": "9.0", - "x": 15.4167, - "y": 154.5526 - }, - { - "l": "9.0", - "x": 15.5, - "y": 154.6597 - }, - { - "l": "9.0", - "x": 15.5833, - "y": 154.7436 - }, - { - "l": "9.0", - "x": 15.6667, - "y": 154.837 - }, - { - "l": "9.0", - "x": 15.75, - "y": 154.9092 - }, - { - "l": "9.0", - "x": 15.8333, - "y": 154.9792 - }, - { - "l": "9.0", - "x": 15.9167, - "y": 155.0493 - }, - { - "l": "9.0", - "x": 16.0, - "y": 155.0982 - }, - { - "l": "9.0", - "x": 16.0833, - "y": 155.1544 - }, - { - "l": "9.0", - "x": 16.1667, - "y": 155.1938 - }, - { - "l": "9.0", - "x": 16.25, - "y": 155.2383 - }, - { - "l": "9.0", - "x": 16.3333, - "y": 155.2756 - }, - { - "l": "9.0", - "x": 16.4167, - "y": 155.3106 - }, - { - "l": "9.0", - "x": 16.5, - "y": 155.334 - }, - { - "l": "9.0", - "x": 16.5833, - "y": 155.369 - }, - { - "l": "9.0", - "x": 16.6667, - "y": 155.3807 - }, - { - "l": "9.0", - "x": 16.75, - "y": 155.4041 - }, - { - "l": "9.0", - "x": 16.8333, - "y": 155.4158 - }, - { - "l": "9.0", - "x": 16.9167, - "y": 155.4275 - }, - { - "l": "9.0", - "x": 17.0, - "y": 155.4391 - }, - { - "l": "9.0", - "x": 17.0833, - "y": 155.4413 - }, - { - "l": "9.0", - "x": 17.1667, - "y": 155.4508 - }, - { - "l": "9.0", - "x": 17.25, - "y": 155.4508 - }, - { - "l": "9.0", - "x": 17.3333, - "y": 155.4508 - }, - { - "l": "9.0", - "x": 17.4167, - "y": 155.453 - }, - { - "l": "9.0", - "x": 17.5, - "y": 155.4625 - }, - { - "l": "9.0", - "x": 17.5833, - "y": 155.4647 - }, - { - "l": "9.0", - "x": 17.6667, - "y": 155.4742 - }, - { - "l": "9.0", - "x": 17.75, - "y": 155.4859 - }, - { - "l": "9.0", - "x": 17.8333, - "y": 155.4976 - }, - { - "l": "9.0", - "x": 17.9167, - "y": 155.5093 - }, - { - "l": "9.0", - "x": 18.0, - "y": 155.5115 - }, - { - "l": "9.0", - "x": 18.0833, - "y": 155.521 - }, - { - "l": "9.0", - "x": 18.1667, - "y": 155.5326 - }, - { - "l": "9.0", - "x": 18.25, - "y": 155.5443 - }, - { - "l": "9.0", - "x": 18.3333, - "y": 155.5443 - }, - { - "l": "9.0", - "x": 18.4167, - "y": 155.556 - }, - { - "l": "9.0", - "x": 18.5, - "y": 155.556 - }, - { - "l": "9.0", - "x": 18.5833, - "y": 155.5677 - }, - { - "l": "9.0", - "x": 18.6667, - "y": 155.5677 - }, - { - "l": "9.0", - "x": 18.75, - "y": 155.5677 - }, - { - "l": "9.0", - "x": 18.8333, - "y": 155.5772 - }, - { - "l": "9.0", - "x": 18.9167, - "y": 155.5772 - }, - { - "l": "9.0", - "x": 19.0, - "y": 155.5772 - }, - { - "l": "9.0", - "x": 19.0833, - "y": 155.5772 - }, - { - "l": "9.0", - "x": 19.1667, - "y": 155.5772 - }, - { - "l": "9.0", - "x": 19.25, - "y": 155.5772 - }, - { - "l": "9.0", - "x": 19.3333, - "y": 155.5772 - }, - { - "l": "9.0", - "x": 19.4167, - "y": 155.5772 - }, - { - "l": "9.0", - "x": 19.5, - "y": 155.5794 - }, - { - "l": "9.0", - "x": 19.5833, - "y": 155.5794 - }, - { - "l": "9.0", - "x": 19.6667, - "y": 155.5794 - }, - { - "l": "9.0", - "x": 19.75, - "y": 155.5794 - }, - { - "l": "9.0", - "x": 19.8333, - "y": 155.5889 - }, - { - "l": "9.0", - "x": 19.9167, - "y": 155.5889 - }, - { - "l": "9.0", - "x": 20.0, - "y": 155.5889 - }, - { - "l": "9.0", - "x": 20.0, - "y": 155.5889 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 4.0, - "y": 98.8546 - }, - { - "l": "25.0", - "x": 4.0833, - "y": 99.4111 - }, - { - "l": "25.0", - "x": 4.1667, - "y": 99.9765 - }, - { - "l": "25.0", - "x": 4.25, - "y": 100.5523 - }, - { - "l": "25.0", - "x": 4.3333, - "y": 101.128 - }, - { - "l": "25.0", - "x": 4.4167, - "y": 101.723 - }, - { - "l": "25.0", - "x": 4.5, - "y": 102.3173 - }, - { - "l": "25.0", - "x": 4.5833, - "y": 102.9121 - }, - { - "l": "25.0", - "x": 4.6667, - "y": 103.5166 - }, - { - "l": "25.0", - "x": 4.75, - "y": 104.1112 - }, - { - "l": "25.0", - "x": 4.8333, - "y": 104.7065 - }, - { - "l": "25.0", - "x": 4.9167, - "y": 105.3016 - }, - { - "l": "25.0", - "x": 5.0, - "y": 105.8772 - }, - { - "l": "25.0", - "x": 5.0833, - "y": 106.4438 - }, - { - "l": "25.0", - "x": 5.1667, - "y": 107.0005 - }, - { - "l": "25.0", - "x": 5.25, - "y": 107.5474 - }, - { - "l": "25.0", - "x": 5.3333, - "y": 108.0853 - }, - { - "l": "25.0", - "x": 5.4167, - "y": 108.6141 - }, - { - "l": "25.0", - "x": 5.5, - "y": 109.1235 - }, - { - "l": "25.0", - "x": 5.5833, - "y": 109.6327 - }, - { - "l": "25.0", - "x": 5.6667, - "y": 110.133 - }, - { - "l": "25.0", - "x": 5.75, - "y": 110.6332 - }, - { - "l": "25.0", - "x": 5.8333, - "y": 111.1236 - }, - { - "l": "25.0", - "x": 5.9167, - "y": 111.605 - }, - { - "l": "25.0", - "x": 6.0, - "y": 112.0961 - }, - { - "l": "25.0", - "x": 6.0833, - "y": 112.5775 - }, - { - "l": "25.0", - "x": 6.1667, - "y": 113.0596 - }, - { - "l": "25.0", - "x": 6.25, - "y": 113.5319 - }, - { - "l": "25.0", - "x": 6.3333, - "y": 114.0042 - }, - { - "l": "25.0", - "x": 6.4167, - "y": 114.4862 - }, - { - "l": "25.0", - "x": 6.5, - "y": 114.9584 - }, - { - "l": "25.0", - "x": 6.5833, - "y": 115.4314 - }, - { - "l": "25.0", - "x": 6.6667, - "y": 115.9036 - }, - { - "l": "25.0", - "x": 6.75, - "y": 116.3765 - }, - { - "l": "25.0", - "x": 6.8333, - "y": 116.8494 - }, - { - "l": "25.0", - "x": 6.9167, - "y": 117.3417 - }, - { - "l": "25.0", - "x": 7.0, - "y": 117.8251 - }, - { - "l": "25.0", - "x": 7.0833, - "y": 118.3077 - }, - { - "l": "25.0", - "x": 7.1667, - "y": 118.8007 - }, - { - "l": "25.0", - "x": 7.25, - "y": 119.2938 - }, - { - "l": "25.0", - "x": 7.3333, - "y": 119.7973 - }, - { - "l": "25.0", - "x": 7.4167, - "y": 120.2903 - }, - { - "l": "25.0", - "x": 7.5, - "y": 120.7841 - }, - { - "l": "25.0", - "x": 7.5833, - "y": 121.2771 - }, - { - "l": "25.0", - "x": 7.6667, - "y": 121.7603 - }, - { - "l": "25.0", - "x": 7.75, - "y": 122.2532 - }, - { - "l": "25.0", - "x": 7.8333, - "y": 122.7364 - }, - { - "l": "25.0", - "x": 7.9167, - "y": 123.2196 - }, - { - "l": "25.0", - "x": 8.0, - "y": 123.6913 - }, - { - "l": "25.0", - "x": 8.0833, - "y": 124.1541 - }, - { - "l": "25.0", - "x": 8.1667, - "y": 124.6152 - }, - { - "l": "25.0", - "x": 8.25, - "y": 125.0569 - }, - { - "l": "25.0", - "x": 8.3333, - "y": 125.5073 - }, - { - "l": "25.0", - "x": 8.4167, - "y": 125.948 - }, - { - "l": "25.0", - "x": 8.5, - "y": 126.3781 - }, - { - "l": "25.0", - "x": 8.5833, - "y": 126.8072 - }, - { - "l": "25.0", - "x": 8.6667, - "y": 127.2266 - }, - { - "l": "25.0", - "x": 8.75, - "y": 127.6548 - }, - { - "l": "25.0", - "x": 8.8333, - "y": 128.0723 - }, - { - "l": "25.0", - "x": 8.9167, - "y": 128.4986 - }, - { - "l": "25.0", - "x": 9.0, - "y": 128.9248 - }, - { - "l": "25.0", - "x": 9.0833, - "y": 129.3501 - }, - { - "l": "25.0", - "x": 9.1667, - "y": 129.7841 - }, - { - "l": "25.0", - "x": 9.25, - "y": 130.218 - }, - { - "l": "25.0", - "x": 9.3333, - "y": 130.6509 - }, - { - "l": "25.0", - "x": 9.4167, - "y": 131.0925 - }, - { - "l": "25.0", - "x": 9.5, - "y": 131.5341 - }, - { - "l": "25.0", - "x": 9.5833, - "y": 131.9746 - }, - { - "l": "25.0", - "x": 9.6667, - "y": 132.415 - }, - { - "l": "25.0", - "x": 9.75, - "y": 132.8553 - }, - { - "l": "25.0", - "x": 9.8333, - "y": 133.3043 - }, - { - "l": "25.0", - "x": 9.9167, - "y": 133.7434 - }, - { - "l": "25.0", - "x": 10.0, - "y": 134.1913 - }, - { - "l": "25.0", - "x": 10.0833, - "y": 134.6293 - }, - { - "l": "25.0", - "x": 10.1667, - "y": 135.0778 - }, - { - "l": "25.0", - "x": 10.25, - "y": 135.5253 - }, - { - "l": "25.0", - "x": 10.3333, - "y": 135.9639 - }, - { - "l": "25.0", - "x": 10.4167, - "y": 136.412 - }, - { - "l": "25.0", - "x": 10.5, - "y": 136.8513 - }, - { - "l": "25.0", - "x": 10.5833, - "y": 137.3002 - }, - { - "l": "25.0", - "x": 10.6667, - "y": 137.7412 - }, - { - "l": "25.0", - "x": 10.75, - "y": 138.1918 - }, - { - "l": "25.0", - "x": 10.8333, - "y": 138.6345 - }, - { - "l": "25.0", - "x": 10.9167, - "y": 139.0781 - }, - { - "l": "25.0", - "x": 11.0, - "y": 139.5226 - }, - { - "l": "25.0", - "x": 11.0833, - "y": 139.9699 - }, - { - "l": "25.0", - "x": 11.1667, - "y": 140.4181 - }, - { - "l": "25.0", - "x": 11.25, - "y": 140.8682 - }, - { - "l": "25.0", - "x": 11.3333, - "y": 141.3202 - }, - { - "l": "25.0", - "x": 11.4167, - "y": 141.7742 - }, - { - "l": "25.0", - "x": 11.5, - "y": 142.2204 - }, - { - "l": "25.0", - "x": 11.5833, - "y": 142.6783 - }, - { - "l": "25.0", - "x": 11.6667, - "y": 143.1391 - }, - { - "l": "25.0", - "x": 11.75, - "y": 143.601 - }, - { - "l": "25.0", - "x": 11.8333, - "y": 144.0756 - }, - { - "l": "25.0", - "x": 11.9167, - "y": 144.5329 - }, - { - "l": "25.0", - "x": 12.0, - "y": 145.0126 - }, - { - "l": "25.0", - "x": 12.0833, - "y": 145.4934 - }, - { - "l": "25.0", - "x": 12.1667, - "y": 145.9667 - }, - { - "l": "25.0", - "x": 12.25, - "y": 146.442 - }, - { - "l": "25.0", - "x": 12.3333, - "y": 146.9282 - }, - { - "l": "25.0", - "x": 12.4167, - "y": 147.4069 - }, - { - "l": "25.0", - "x": 12.5, - "y": 147.8877 - }, - { - "l": "25.0", - "x": 12.5833, - "y": 148.36 - }, - { - "l": "25.0", - "x": 12.6667, - "y": 148.8335 - }, - { - "l": "25.0", - "x": 12.75, - "y": 149.2889 - }, - { - "l": "25.0", - "x": 12.8333, - "y": 149.7551 - }, - { - "l": "25.0", - "x": 12.9167, - "y": 150.2128 - }, - { - "l": "25.0", - "x": 13.0, - "y": 150.6609 - }, - { - "l": "25.0", - "x": 13.0833, - "y": 151.1006 - }, - { - "l": "25.0", - "x": 13.1667, - "y": 151.5308 - }, - { - "l": "25.0", - "x": 13.25, - "y": 151.9611 - }, - { - "l": "25.0", - "x": 13.3333, - "y": 152.3722 - }, - { - "l": "25.0", - "x": 13.4167, - "y": 152.764 - }, - { - "l": "25.0", - "x": 13.5, - "y": 153.1559 - }, - { - "l": "25.0", - "x": 13.5833, - "y": 153.5286 - }, - { - "l": "25.0", - "x": 13.6667, - "y": 153.9004 - }, - { - "l": "25.0", - "x": 13.75, - "y": 154.2625 - }, - { - "l": "25.0", - "x": 13.8333, - "y": 154.6044 - }, - { - "l": "25.0", - "x": 13.9167, - "y": 154.9269 - }, - { - "l": "25.0", - "x": 14.0, - "y": 155.2473 - }, - { - "l": "25.0", - "x": 14.0833, - "y": 155.5485 - }, - { - "l": "25.0", - "x": 14.1667, - "y": 155.84 - }, - { - "l": "25.0", - "x": 14.25, - "y": 156.1197 - }, - { - "l": "25.0", - "x": 14.3333, - "y": 156.3887 - }, - { - "l": "25.0", - "x": 14.4167, - "y": 156.6372 - }, - { - "l": "25.0", - "x": 14.5, - "y": 156.875 - }, - { - "l": "25.0", - "x": 14.5833, - "y": 157.0923 - }, - { - "l": "25.0", - "x": 14.6667, - "y": 157.3097 - }, - { - "l": "25.0", - "x": 14.75, - "y": 157.5142 - }, - { - "l": "25.0", - "x": 14.8333, - "y": 157.6992 - }, - { - "l": "25.0", - "x": 14.9167, - "y": 157.8626 - }, - { - "l": "25.0", - "x": 15.0, - "y": 158.026 - }, - { - "l": "25.0", - "x": 15.0833, - "y": 158.1776 - }, - { - "l": "25.0", - "x": 15.1667, - "y": 158.3086 - }, - { - "l": "25.0", - "x": 15.25, - "y": 158.4386 - }, - { - "l": "25.0", - "x": 15.3333, - "y": 158.548 - }, - { - "l": "25.0", - "x": 15.4167, - "y": 158.6563 - }, - { - "l": "25.0", - "x": 15.5, - "y": 158.7549 - }, - { - "l": "25.0", - "x": 15.5833, - "y": 158.8318 - }, - { - "l": "25.0", - "x": 15.6667, - "y": 158.9185 - }, - { - "l": "25.0", - "x": 15.75, - "y": 158.9846 - }, - { - "l": "25.0", - "x": 15.8333, - "y": 159.0496 - }, - { - "l": "25.0", - "x": 15.9167, - "y": 159.1146 - }, - { - "l": "25.0", - "x": 16.0, - "y": 159.1591 - }, - { - "l": "25.0", - "x": 16.0833, - "y": 159.2122 - }, - { - "l": "25.0", - "x": 16.1667, - "y": 159.2469 - }, - { - "l": "25.0", - "x": 16.25, - "y": 159.2892 - }, - { - "l": "25.0", - "x": 16.3333, - "y": 159.3228 - }, - { - "l": "25.0", - "x": 16.4167, - "y": 159.3553 - }, - { - "l": "25.0", - "x": 16.5, - "y": 159.377 - }, - { - "l": "25.0", - "x": 16.5833, - "y": 159.4095 - }, - { - "l": "25.0", - "x": 16.6667, - "y": 159.4204 - }, - { - "l": "25.0", - "x": 16.75, - "y": 159.442 - }, - { - "l": "25.0", - "x": 16.8333, - "y": 159.4529 - }, - { - "l": "25.0", - "x": 16.9167, - "y": 159.4637 - }, - { - "l": "25.0", - "x": 17.0, - "y": 159.4746 - }, - { - "l": "25.0", - "x": 17.0833, - "y": 159.4757 - }, - { - "l": "25.0", - "x": 17.1667, - "y": 159.4854 - }, - { - "l": "25.0", - "x": 17.25, - "y": 159.4854 - }, - { - "l": "25.0", - "x": 17.3333, - "y": 159.4854 - }, - { - "l": "25.0", - "x": 17.4167, - "y": 159.4865 - }, - { - "l": "25.0", - "x": 17.5, - "y": 159.4963 - }, - { - "l": "25.0", - "x": 17.5833, - "y": 159.4974 - }, - { - "l": "25.0", - "x": 17.6667, - "y": 159.5071 - }, - { - "l": "25.0", - "x": 17.75, - "y": 159.5179 - }, - { - "l": "25.0", - "x": 17.8333, - "y": 159.5288 - }, - { - "l": "25.0", - "x": 17.9167, - "y": 159.5396 - }, - { - "l": "25.0", - "x": 18.0, - "y": 159.5407 - }, - { - "l": "25.0", - "x": 18.0833, - "y": 159.5505 - }, - { - "l": "25.0", - "x": 18.1667, - "y": 159.5613 - }, - { - "l": "25.0", - "x": 18.25, - "y": 159.5722 - }, - { - "l": "25.0", - "x": 18.3333, - "y": 159.5722 - }, - { - "l": "25.0", - "x": 18.4167, - "y": 159.583 - }, - { - "l": "25.0", - "x": 18.5, - "y": 159.583 - }, - { - "l": "25.0", - "x": 18.5833, - "y": 159.5939 - }, - { - "l": "25.0", - "x": 18.6667, - "y": 159.5939 - }, - { - "l": "25.0", - "x": 18.75, - "y": 159.5939 - }, - { - "l": "25.0", - "x": 18.8333, - "y": 159.6036 - }, - { - "l": "25.0", - "x": 18.9167, - "y": 159.6036 - }, - { - "l": "25.0", - "x": 19.0, - "y": 159.6036 - }, - { - "l": "25.0", - "x": 19.0833, - "y": 159.6036 - }, - { - "l": "25.0", - "x": 19.1667, - "y": 159.6036 - }, - { - "l": "25.0", - "x": 19.25, - "y": 159.6036 - }, - { - "l": "25.0", - "x": 19.3333, - "y": 159.6036 - }, - { - "l": "25.0", - "x": 19.4167, - "y": 159.6036 - }, - { - "l": "25.0", - "x": 19.5, - "y": 159.6047 - }, - { - "l": "25.0", - "x": 19.5833, - "y": 159.6047 - }, - { - "l": "25.0", - "x": 19.6667, - "y": 159.6047 - }, - { - "l": "25.0", - "x": 19.75, - "y": 159.6047 - }, - { - "l": "25.0", - "x": 19.8333, - "y": 159.6145 - }, - { - "l": "25.0", - "x": 19.9167, - "y": 159.6145 - }, - { - "l": "25.0", - "x": 20.0, - "y": 159.6145 - }, - { - "l": "25.0", - "x": 20.0, - "y": 159.6145 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 4.0, - "y": 101.54 - }, - { - "l": "50.0", - "x": 4.0833, - "y": 102.12 - }, - { - "l": "50.0", - "x": 4.1667, - "y": 102.71 - }, - { - "l": "50.0", - "x": 4.25, - "y": 103.31 - }, - { - "l": "50.0", - "x": 4.3333, - "y": 103.91 - }, - { - "l": "50.0", - "x": 4.4167, - "y": 104.53 - }, - { - "l": "50.0", - "x": 4.5, - "y": 105.15 - }, - { - "l": "50.0", - "x": 4.5833, - "y": 105.77 - }, - { - "l": "50.0", - "x": 4.6667, - "y": 106.4 - }, - { - "l": "50.0", - "x": 4.75, - "y": 107.02 - }, - { - "l": "50.0", - "x": 4.8333, - "y": 107.64 - }, - { - "l": "50.0", - "x": 4.9167, - "y": 108.26 - }, - { - "l": "50.0", - "x": 5.0, - "y": 108.86 - }, - { - "l": "50.0", - "x": 5.0833, - "y": 109.45 - }, - { - "l": "50.0", - "x": 5.1667, - "y": 110.03 - }, - { - "l": "50.0", - "x": 5.25, - "y": 110.6 - }, - { - "l": "50.0", - "x": 5.3333, - "y": 111.16 - }, - { - "l": "50.0", - "x": 5.4167, - "y": 111.71 - }, - { - "l": "50.0", - "x": 5.5, - "y": 112.24 - }, - { - "l": "50.0", - "x": 5.5833, - "y": 112.77 - }, - { - "l": "50.0", - "x": 5.6667, - "y": 113.29 - }, - { - "l": "50.0", - "x": 5.75, - "y": 113.81 - }, - { - "l": "50.0", - "x": 5.8333, - "y": 114.32 - }, - { - "l": "50.0", - "x": 5.9167, - "y": 114.82 - }, - { - "l": "50.0", - "x": 6.0, - "y": 115.33 - }, - { - "l": "50.0", - "x": 6.0833, - "y": 115.83 - }, - { - "l": "50.0", - "x": 6.1667, - "y": 116.33 - }, - { - "l": "50.0", - "x": 6.25, - "y": 116.82 - }, - { - "l": "50.0", - "x": 6.3333, - "y": 117.31 - }, - { - "l": "50.0", - "x": 6.4167, - "y": 117.81 - }, - { - "l": "50.0", - "x": 6.5, - "y": 118.3 - }, - { - "l": "50.0", - "x": 6.5833, - "y": 118.79 - }, - { - "l": "50.0", - "x": 6.6667, - "y": 119.28 - }, - { - "l": "50.0", - "x": 6.75, - "y": 119.77 - }, - { - "l": "50.0", - "x": 6.8333, - "y": 120.26 - }, - { - "l": "50.0", - "x": 6.9167, - "y": 120.77 - }, - { - "l": "50.0", - "x": 7.0, - "y": 121.27 - }, - { - "l": "50.0", - "x": 7.0833, - "y": 121.77 - }, - { - "l": "50.0", - "x": 7.1667, - "y": 122.28 - }, - { - "l": "50.0", - "x": 7.25, - "y": 122.79 - }, - { - "l": "50.0", - "x": 7.3333, - "y": 123.31 - }, - { - "l": "50.0", - "x": 7.4167, - "y": 123.82 - }, - { - "l": "50.0", - "x": 7.5, - "y": 124.33 - }, - { - "l": "50.0", - "x": 7.5833, - "y": 124.84 - }, - { - "l": "50.0", - "x": 7.6667, - "y": 125.34 - }, - { - "l": "50.0", - "x": 7.75, - "y": 125.85 - }, - { - "l": "50.0", - "x": 7.8333, - "y": 126.35 - }, - { - "l": "50.0", - "x": 7.9167, - "y": 126.85 - }, - { - "l": "50.0", - "x": 8.0, - "y": 127.34 - }, - { - "l": "50.0", - "x": 8.0833, - "y": 127.82 - }, - { - "l": "50.0", - "x": 8.1667, - "y": 128.3 - }, - { - "l": "50.0", - "x": 8.25, - "y": 128.76 - }, - { - "l": "50.0", - "x": 8.3333, - "y": 129.23 - }, - { - "l": "50.0", - "x": 8.4167, - "y": 129.69 - }, - { - "l": "50.0", - "x": 8.5, - "y": 130.14 - }, - { - "l": "50.0", - "x": 8.5833, - "y": 130.59 - }, - { - "l": "50.0", - "x": 8.6667, - "y": 131.03 - }, - { - "l": "50.0", - "x": 8.75, - "y": 131.48 - }, - { - "l": "50.0", - "x": 8.8333, - "y": 131.92 - }, - { - "l": "50.0", - "x": 8.9167, - "y": 132.37 - }, - { - "l": "50.0", - "x": 9.0, - "y": 132.82 - }, - { - "l": "50.0", - "x": 9.0833, - "y": 133.27 - }, - { - "l": "50.0", - "x": 9.1667, - "y": 133.73 - }, - { - "l": "50.0", - "x": 9.25, - "y": 134.19 - }, - { - "l": "50.0", - "x": 9.3333, - "y": 134.65 - }, - { - "l": "50.0", - "x": 9.4167, - "y": 135.12 - }, - { - "l": "50.0", - "x": 9.5, - "y": 135.59 - }, - { - "l": "50.0", - "x": 9.5833, - "y": 136.06 - }, - { - "l": "50.0", - "x": 9.6667, - "y": 136.53 - }, - { - "l": "50.0", - "x": 9.75, - "y": 137.0 - }, - { - "l": "50.0", - "x": 9.8333, - "y": 137.48 - }, - { - "l": "50.0", - "x": 9.9167, - "y": 137.95 - }, - { - "l": "50.0", - "x": 10.0, - "y": 138.43 - }, - { - "l": "50.0", - "x": 10.0833, - "y": 138.9 - }, - { - "l": "50.0", - "x": 10.1667, - "y": 139.38 - }, - { - "l": "50.0", - "x": 10.25, - "y": 139.86 - }, - { - "l": "50.0", - "x": 10.3333, - "y": 140.33 - }, - { - "l": "50.0", - "x": 10.4167, - "y": 140.81 - }, - { - "l": "50.0", - "x": 10.5, - "y": 141.28 - }, - { - "l": "50.0", - "x": 10.5833, - "y": 141.76 - }, - { - "l": "50.0", - "x": 10.6667, - "y": 142.23 - }, - { - "l": "50.0", - "x": 10.75, - "y": 142.71 - }, - { - "l": "50.0", - "x": 10.8333, - "y": 143.18 - }, - { - "l": "50.0", - "x": 10.9167, - "y": 143.65 - }, - { - "l": "50.0", - "x": 11.0, - "y": 144.12 - }, - { - "l": "50.0", - "x": 11.0833, - "y": 144.59 - }, - { - "l": "50.0", - "x": 11.1667, - "y": 145.06 - }, - { - "l": "50.0", - "x": 11.25, - "y": 145.53 - }, - { - "l": "50.0", - "x": 11.3333, - "y": 146.0 - }, - { - "l": "50.0", - "x": 11.4167, - "y": 146.47 - }, - { - "l": "50.0", - "x": 11.5, - "y": 146.93 - }, - { - "l": "50.0", - "x": 11.5833, - "y": 147.4 - }, - { - "l": "50.0", - "x": 11.6667, - "y": 147.87 - }, - { - "l": "50.0", - "x": 11.75, - "y": 148.34 - }, - { - "l": "50.0", - "x": 11.8333, - "y": 148.82 - }, - { - "l": "50.0", - "x": 11.9167, - "y": 149.28 - }, - { - "l": "50.0", - "x": 12.0, - "y": 149.76 - }, - { - "l": "50.0", - "x": 12.0833, - "y": 150.24 - }, - { - "l": "50.0", - "x": 12.1667, - "y": 150.71 - }, - { - "l": "50.0", - "x": 12.25, - "y": 151.18 - }, - { - "l": "50.0", - "x": 12.3333, - "y": 151.66 - }, - { - "l": "50.0", - "x": 12.4167, - "y": 152.13 - }, - { - "l": "50.0", - "x": 12.5, - "y": 152.6 - }, - { - "l": "50.0", - "x": 12.5833, - "y": 153.06 - }, - { - "l": "50.0", - "x": 12.6667, - "y": 153.52 - }, - { - "l": "50.0", - "x": 12.75, - "y": 153.96 - }, - { - "l": "50.0", - "x": 12.8333, - "y": 154.41 - }, - { - "l": "50.0", - "x": 12.9167, - "y": 154.85 - }, - { - "l": "50.0", - "x": 13.0, - "y": 155.28 - }, - { - "l": "50.0", - "x": 13.0833, - "y": 155.7 - }, - { - "l": "50.0", - "x": 13.1667, - "y": 156.11 - }, - { - "l": "50.0", - "x": 13.25, - "y": 156.52 - }, - { - "l": "50.0", - "x": 13.3333, - "y": 156.91 - }, - { - "l": "50.0", - "x": 13.4167, - "y": 157.28 - }, - { - "l": "50.0", - "x": 13.5, - "y": 157.65 - }, - { - "l": "50.0", - "x": 13.5833, - "y": 158.0 - }, - { - "l": "50.0", - "x": 13.6667, - "y": 158.35 - }, - { - "l": "50.0", - "x": 13.75, - "y": 158.69 - }, - { - "l": "50.0", - "x": 13.8333, - "y": 159.01 - }, - { - "l": "50.0", - "x": 13.9167, - "y": 159.31 - }, - { - "l": "50.0", - "x": 14.0, - "y": 159.61 - }, - { - "l": "50.0", - "x": 14.0833, - "y": 159.89 - }, - { - "l": "50.0", - "x": 14.1667, - "y": 160.16 - }, - { - "l": "50.0", - "x": 14.25, - "y": 160.42 - }, - { - "l": "50.0", - "x": 14.3333, - "y": 160.67 - }, - { - "l": "50.0", - "x": 14.4167, - "y": 160.9 - }, - { - "l": "50.0", - "x": 14.5, - "y": 161.12 - }, - { - "l": "50.0", - "x": 14.5833, - "y": 161.32 - }, - { - "l": "50.0", - "x": 14.6667, - "y": 161.52 - }, - { - "l": "50.0", - "x": 14.75, - "y": 161.71 - }, - { - "l": "50.0", - "x": 14.8333, - "y": 161.88 - }, - { - "l": "50.0", - "x": 14.9167, - "y": 162.03 - }, - { - "l": "50.0", - "x": 15.0, - "y": 162.18 - }, - { - "l": "50.0", - "x": 15.0833, - "y": 162.32 - }, - { - "l": "50.0", - "x": 15.1667, - "y": 162.44 - }, - { - "l": "50.0", - "x": 15.25, - "y": 162.56 - }, - { - "l": "50.0", - "x": 15.3333, - "y": 162.66 - }, - { - "l": "50.0", - "x": 15.4167, - "y": 162.76 - }, - { - "l": "50.0", - "x": 15.5, - "y": 162.85 - }, - { - "l": "50.0", - "x": 15.5833, - "y": 162.92 - }, - { - "l": "50.0", - "x": 15.6667, - "y": 163.0 - }, - { - "l": "50.0", - "x": 15.75, - "y": 163.06 - }, - { - "l": "50.0", - "x": 15.8333, - "y": 163.12 - }, - { - "l": "50.0", - "x": 15.9167, - "y": 163.18 - }, - { - "l": "50.0", - "x": 16.0, - "y": 163.22 - }, - { - "l": "50.0", - "x": 16.0833, - "y": 163.27 - }, - { - "l": "50.0", - "x": 16.1667, - "y": 163.3 - }, - { - "l": "50.0", - "x": 16.25, - "y": 163.34 - }, - { - "l": "50.0", - "x": 16.3333, - "y": 163.37 - }, - { - "l": "50.0", - "x": 16.4167, - "y": 163.4 - }, - { - "l": "50.0", - "x": 16.5, - "y": 163.42 - }, - { - "l": "50.0", - "x": 16.5833, - "y": 163.45 - }, - { - "l": "50.0", - "x": 16.6667, - "y": 163.46 - }, - { - "l": "50.0", - "x": 16.75, - "y": 163.48 - }, - { - "l": "50.0", - "x": 16.8333, - "y": 163.49 - }, - { - "l": "50.0", - "x": 16.9167, - "y": 163.5 - }, - { - "l": "50.0", - "x": 17.0, - "y": 163.51 - }, - { - "l": "50.0", - "x": 17.0833, - "y": 163.51 - }, - { - "l": "50.0", - "x": 17.1667, - "y": 163.52 - }, - { - "l": "50.0", - "x": 17.25, - "y": 163.52 - }, - { - "l": "50.0", - "x": 17.3333, - "y": 163.52 - }, - { - "l": "50.0", - "x": 17.4167, - "y": 163.52 - }, - { - "l": "50.0", - "x": 17.5, - "y": 163.53 - }, - { - "l": "50.0", - "x": 17.5833, - "y": 163.53 - }, - { - "l": "50.0", - "x": 17.6667, - "y": 163.54 - }, - { - "l": "50.0", - "x": 17.75, - "y": 163.55 - }, - { - "l": "50.0", - "x": 17.8333, - "y": 163.56 - }, - { - "l": "50.0", - "x": 17.9167, - "y": 163.57 - }, - { - "l": "50.0", - "x": 18.0, - "y": 163.57 - }, - { - "l": "50.0", - "x": 18.0833, - "y": 163.58 - }, - { - "l": "50.0", - "x": 18.1667, - "y": 163.59 - }, - { - "l": "50.0", - "x": 18.25, - "y": 163.6 - }, - { - "l": "50.0", - "x": 18.3333, - "y": 163.6 - }, - { - "l": "50.0", - "x": 18.4167, - "y": 163.61 - }, - { - "l": "50.0", - "x": 18.5, - "y": 163.61 - }, - { - "l": "50.0", - "x": 18.5833, - "y": 163.62 - }, - { - "l": "50.0", - "x": 18.6667, - "y": 163.62 - }, - { - "l": "50.0", - "x": 18.75, - "y": 163.62 - }, - { - "l": "50.0", - "x": 18.8333, - "y": 163.63 - }, - { - "l": "50.0", - "x": 18.9167, - "y": 163.63 - }, - { - "l": "50.0", - "x": 19.0, - "y": 163.63 - }, - { - "l": "50.0", - "x": 19.0833, - "y": 163.63 - }, - { - "l": "50.0", - "x": 19.1667, - "y": 163.63 - }, - { - "l": "50.0", - "x": 19.25, - "y": 163.63 - }, - { - "l": "50.0", - "x": 19.3333, - "y": 163.63 - }, - { - "l": "50.0", - "x": 19.4167, - "y": 163.63 - }, - { - "l": "50.0", - "x": 19.5, - "y": 163.63 - }, - { - "l": "50.0", - "x": 19.5833, - "y": 163.63 - }, - { - "l": "50.0", - "x": 19.6667, - "y": 163.63 - }, - { - "l": "50.0", - "x": 19.75, - "y": 163.63 - }, - { - "l": "50.0", - "x": 19.8333, - "y": 163.64 - }, - { - "l": "50.0", - "x": 19.9167, - "y": 163.64 - }, - { - "l": "50.0", - "x": 20.0, - "y": 163.64 - }, - { - "l": "50.0", - "x": 20.0, - "y": 163.64 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 4.0, - "y": 104.2254 - }, - { - "l": "75.0", - "x": 4.0833, - "y": 104.8289 - }, - { - "l": "75.0", - "x": 4.1667, - "y": 105.4435 - }, - { - "l": "75.0", - "x": 4.25, - "y": 106.0677 - }, - { - "l": "75.0", - "x": 4.3333, - "y": 106.692 - }, - { - "l": "75.0", - "x": 4.4167, - "y": 107.337 - }, - { - "l": "75.0", - "x": 4.5, - "y": 107.9827 - }, - { - "l": "75.0", - "x": 4.5833, - "y": 108.6279 - }, - { - "l": "75.0", - "x": 4.6667, - "y": 109.2834 - }, - { - "l": "75.0", - "x": 4.75, - "y": 109.9288 - }, - { - "l": "75.0", - "x": 4.8333, - "y": 110.5735 - }, - { - "l": "75.0", - "x": 4.9167, - "y": 111.2184 - }, - { - "l": "75.0", - "x": 5.0, - "y": 111.8428 - }, - { - "l": "75.0", - "x": 5.0833, - "y": 112.4562 - }, - { - "l": "75.0", - "x": 5.1667, - "y": 113.0595 - }, - { - "l": "75.0", - "x": 5.25, - "y": 113.6526 - }, - { - "l": "75.0", - "x": 5.3333, - "y": 114.2347 - }, - { - "l": "75.0", - "x": 5.4167, - "y": 114.8059 - }, - { - "l": "75.0", - "x": 5.5, - "y": 115.3565 - }, - { - "l": "75.0", - "x": 5.5833, - "y": 115.9073 - }, - { - "l": "75.0", - "x": 5.6667, - "y": 116.447 - }, - { - "l": "75.0", - "x": 5.75, - "y": 116.9868 - }, - { - "l": "75.0", - "x": 5.8333, - "y": 117.5164 - }, - { - "l": "75.0", - "x": 5.9167, - "y": 118.035 - }, - { - "l": "75.0", - "x": 6.0, - "y": 118.5639 - }, - { - "l": "75.0", - "x": 6.0833, - "y": 119.0825 - }, - { - "l": "75.0", - "x": 6.1667, - "y": 119.6004 - }, - { - "l": "75.0", - "x": 6.25, - "y": 120.1081 - }, - { - "l": "75.0", - "x": 6.3333, - "y": 120.6158 - }, - { - "l": "75.0", - "x": 6.4167, - "y": 121.1338 - }, - { - "l": "75.0", - "x": 6.5, - "y": 121.6416 - }, - { - "l": "75.0", - "x": 6.5833, - "y": 122.1486 - }, - { - "l": "75.0", - "x": 6.6667, - "y": 122.6564 - }, - { - "l": "75.0", - "x": 6.75, - "y": 123.1635 - }, - { - "l": "75.0", - "x": 6.8333, - "y": 123.6706 - }, - { - "l": "75.0", - "x": 6.9167, - "y": 124.1983 - }, - { - "l": "75.0", - "x": 7.0, - "y": 124.7149 - }, - { - "l": "75.0", - "x": 7.0833, - "y": 125.2323 - }, - { - "l": "75.0", - "x": 7.1667, - "y": 125.7593 - }, - { - "l": "75.0", - "x": 7.25, - "y": 126.2862 - }, - { - "l": "75.0", - "x": 7.3333, - "y": 126.8227 - }, - { - "l": "75.0", - "x": 7.4167, - "y": 127.3497 - }, - { - "l": "75.0", - "x": 7.5, - "y": 127.8759 - }, - { - "l": "75.0", - "x": 7.5833, - "y": 128.4029 - }, - { - "l": "75.0", - "x": 7.6667, - "y": 128.9197 - }, - { - "l": "75.0", - "x": 7.75, - "y": 129.4468 - }, - { - "l": "75.0", - "x": 7.8333, - "y": 129.9636 - }, - { - "l": "75.0", - "x": 7.9167, - "y": 130.4804 - }, - { - "l": "75.0", - "x": 8.0, - "y": 130.9887 - }, - { - "l": "75.0", - "x": 8.0833, - "y": 131.4859 - }, - { - "l": "75.0", - "x": 8.1667, - "y": 131.9848 - }, - { - "l": "75.0", - "x": 8.25, - "y": 132.4631 - }, - { - "l": "75.0", - "x": 8.3333, - "y": 132.9527 - }, - { - "l": "75.0", - "x": 8.4167, - "y": 133.432 - }, - { - "l": "75.0", - "x": 8.5, - "y": 133.9019 - }, - { - "l": "75.0", - "x": 8.5833, - "y": 134.3728 - }, - { - "l": "75.0", - "x": 8.6667, - "y": 134.8334 - }, - { - "l": "75.0", - "x": 8.75, - "y": 135.3052 - }, - { - "l": "75.0", - "x": 8.8333, - "y": 135.7677 - }, - { - "l": "75.0", - "x": 8.9167, - "y": 136.2414 - }, - { - "l": "75.0", - "x": 9.0, - "y": 136.7152 - }, - { - "l": "75.0", - "x": 9.0833, - "y": 137.1899 - }, - { - "l": "75.0", - "x": 9.1667, - "y": 137.6759 - }, - { - "l": "75.0", - "x": 9.25, - "y": 138.162 - }, - { - "l": "75.0", - "x": 9.3333, - "y": 138.6491 - }, - { - "l": "75.0", - "x": 9.4167, - "y": 139.1475 - }, - { - "l": "75.0", - "x": 9.5, - "y": 139.6459 - }, - { - "l": "75.0", - "x": 9.5833, - "y": 140.1454 - }, - { - "l": "75.0", - "x": 9.6667, - "y": 140.645 - }, - { - "l": "75.0", - "x": 9.75, - "y": 141.1447 - }, - { - "l": "75.0", - "x": 9.8333, - "y": 141.6557 - }, - { - "l": "75.0", - "x": 9.9167, - "y": 142.1566 - }, - { - "l": "75.0", - "x": 10.0, - "y": 142.6687 - }, - { - "l": "75.0", - "x": 10.0833, - "y": 143.1707 - }, - { - "l": "75.0", - "x": 10.1667, - "y": 143.6822 - }, - { - "l": "75.0", - "x": 10.25, - "y": 144.1947 - }, - { - "l": "75.0", - "x": 10.3333, - "y": 144.6961 - }, - { - "l": "75.0", - "x": 10.4167, - "y": 145.208 - }, - { - "l": "75.0", - "x": 10.5, - "y": 145.7087 - }, - { - "l": "75.0", - "x": 10.5833, - "y": 146.2198 - }, - { - "l": "75.0", - "x": 10.6667, - "y": 146.7188 - }, - { - "l": "75.0", - "x": 10.75, - "y": 147.2282 - }, - { - "l": "75.0", - "x": 10.8333, - "y": 147.7255 - }, - { - "l": "75.0", - "x": 10.9167, - "y": 148.2219 - }, - { - "l": "75.0", - "x": 11.0, - "y": 148.7174 - }, - { - "l": "75.0", - "x": 11.0833, - "y": 149.2101 - }, - { - "l": "75.0", - "x": 11.1667, - "y": 149.7019 - }, - { - "l": "75.0", - "x": 11.25, - "y": 150.1918 - }, - { - "l": "75.0", - "x": 11.3333, - "y": 150.6798 - }, - { - "l": "75.0", - "x": 11.4167, - "y": 151.1658 - }, - { - "l": "75.0", - "x": 11.5, - "y": 151.6396 - }, - { - "l": "75.0", - "x": 11.5833, - "y": 152.1217 - }, - { - "l": "75.0", - "x": 11.6667, - "y": 152.6009 - }, - { - "l": "75.0", - "x": 11.75, - "y": 153.079 - }, - { - "l": "75.0", - "x": 11.8333, - "y": 153.5644 - }, - { - "l": "75.0", - "x": 11.9167, - "y": 154.0271 - }, - { - "l": "75.0", - "x": 12.0, - "y": 154.5074 - }, - { - "l": "75.0", - "x": 12.0833, - "y": 154.9866 - }, - { - "l": "75.0", - "x": 12.1667, - "y": 155.4533 - }, - { - "l": "75.0", - "x": 12.25, - "y": 155.918 - }, - { - "l": "75.0", - "x": 12.3333, - "y": 156.3918 - }, - { - "l": "75.0", - "x": 12.4167, - "y": 156.8531 - }, - { - "l": "75.0", - "x": 12.5, - "y": 157.3123 - }, - { - "l": "75.0", - "x": 12.5833, - "y": 157.76 - }, - { - "l": "75.0", - "x": 12.6667, - "y": 158.2065 - }, - { - "l": "75.0", - "x": 12.75, - "y": 158.6311 - }, - { - "l": "75.0", - "x": 12.8333, - "y": 159.0649 - }, - { - "l": "75.0", - "x": 12.9167, - "y": 159.4872 - }, - { - "l": "75.0", - "x": 13.0, - "y": 159.8991 - }, - { - "l": "75.0", - "x": 13.0833, - "y": 160.2994 - }, - { - "l": "75.0", - "x": 13.1667, - "y": 160.6892 - }, - { - "l": "75.0", - "x": 13.25, - "y": 161.0789 - }, - { - "l": "75.0", - "x": 13.3333, - "y": 161.4478 - }, - { - "l": "75.0", - "x": 13.4167, - "y": 161.796 - }, - { - "l": "75.0", - "x": 13.5, - "y": 162.1441 - }, - { - "l": "75.0", - "x": 13.5833, - "y": 162.4714 - }, - { - "l": "75.0", - "x": 13.6667, - "y": 162.7996 - }, - { - "l": "75.0", - "x": 13.75, - "y": 163.1175 - }, - { - "l": "75.0", - "x": 13.8333, - "y": 163.4156 - }, - { - "l": "75.0", - "x": 13.9167, - "y": 163.6931 - }, - { - "l": "75.0", - "x": 14.0, - "y": 163.9727 - }, - { - "l": "75.0", - "x": 14.0833, - "y": 164.2315 - }, - { - "l": "75.0", - "x": 14.1667, - "y": 164.48 - }, - { - "l": "75.0", - "x": 14.25, - "y": 164.7203 - }, - { - "l": "75.0", - "x": 14.3333, - "y": 164.9513 - }, - { - "l": "75.0", - "x": 14.4167, - "y": 165.1628 - }, - { - "l": "75.0", - "x": 14.5, - "y": 165.365 - }, - { - "l": "75.0", - "x": 14.5833, - "y": 165.5477 - }, - { - "l": "75.0", - "x": 14.6667, - "y": 165.7303 - }, - { - "l": "75.0", - "x": 14.75, - "y": 165.9058 - }, - { - "l": "75.0", - "x": 14.8333, - "y": 166.0608 - }, - { - "l": "75.0", - "x": 14.9167, - "y": 166.1974 - }, - { - "l": "75.0", - "x": 15.0, - "y": 166.334 - }, - { - "l": "75.0", - "x": 15.0833, - "y": 166.4624 - }, - { - "l": "75.0", - "x": 15.1667, - "y": 166.5714 - }, - { - "l": "75.0", - "x": 15.25, - "y": 166.6814 - }, - { - "l": "75.0", - "x": 15.3333, - "y": 166.772 - }, - { - "l": "75.0", - "x": 15.4167, - "y": 166.8637 - }, - { - "l": "75.0", - "x": 15.5, - "y": 166.9451 - }, - { - "l": "75.0", - "x": 15.5833, - "y": 167.0082 - }, - { - "l": "75.0", - "x": 15.6667, - "y": 167.0815 - }, - { - "l": "75.0", - "x": 15.75, - "y": 167.1354 - }, - { - "l": "75.0", - "x": 15.8333, - "y": 167.1904 - }, - { - "l": "75.0", - "x": 15.9167, - "y": 167.2454 - }, - { - "l": "75.0", - "x": 16.0, - "y": 167.2809 - }, - { - "l": "75.0", - "x": 16.0833, - "y": 167.3278 - }, - { - "l": "75.0", - "x": 16.1667, - "y": 167.3531 - }, - { - "l": "75.0", - "x": 16.25, - "y": 167.3908 - }, - { - "l": "75.0", - "x": 16.3333, - "y": 167.4172 - }, - { - "l": "75.0", - "x": 16.4167, - "y": 167.4447 - }, - { - "l": "75.0", - "x": 16.5, - "y": 167.463 - }, - { - "l": "75.0", - "x": 16.5833, - "y": 167.4905 - }, - { - "l": "75.0", - "x": 16.6667, - "y": 167.4996 - }, - { - "l": "75.0", - "x": 16.75, - "y": 167.518 - }, - { - "l": "75.0", - "x": 16.8333, - "y": 167.5271 - }, - { - "l": "75.0", - "x": 16.9167, - "y": 167.5363 - }, - { - "l": "75.0", - "x": 17.0, - "y": 167.5454 - }, - { - "l": "75.0", - "x": 17.0833, - "y": 167.5443 - }, - { - "l": "75.0", - "x": 17.1667, - "y": 167.5546 - }, - { - "l": "75.0", - "x": 17.25, - "y": 167.5546 - }, - { - "l": "75.0", - "x": 17.3333, - "y": 167.5546 - }, - { - "l": "75.0", - "x": 17.4167, - "y": 167.5535 - }, - { - "l": "75.0", - "x": 17.5, - "y": 167.5637 - }, - { - "l": "75.0", - "x": 17.5833, - "y": 167.5626 - }, - { - "l": "75.0", - "x": 17.6667, - "y": 167.5729 - }, - { - "l": "75.0", - "x": 17.75, - "y": 167.5821 - }, - { - "l": "75.0", - "x": 17.8333, - "y": 167.5912 - }, - { - "l": "75.0", - "x": 17.9167, - "y": 167.6004 - }, - { - "l": "75.0", - "x": 18.0, - "y": 167.5993 - }, - { - "l": "75.0", - "x": 18.0833, - "y": 167.6095 - }, - { - "l": "75.0", - "x": 18.1667, - "y": 167.6187 - }, - { - "l": "75.0", - "x": 18.25, - "y": 167.6278 - }, - { - "l": "75.0", - "x": 18.3333, - "y": 167.6278 - }, - { - "l": "75.0", - "x": 18.4167, - "y": 167.637 - }, - { - "l": "75.0", - "x": 18.5, - "y": 167.637 - }, - { - "l": "75.0", - "x": 18.5833, - "y": 167.6461 - }, - { - "l": "75.0", - "x": 18.6667, - "y": 167.6461 - }, - { - "l": "75.0", - "x": 18.75, - "y": 167.6461 - }, - { - "l": "75.0", - "x": 18.8333, - "y": 167.6564 - }, - { - "l": "75.0", - "x": 18.9167, - "y": 167.6564 - }, - { - "l": "75.0", - "x": 19.0, - "y": 167.6564 - }, - { - "l": "75.0", - "x": 19.0833, - "y": 167.6564 - }, - { - "l": "75.0", - "x": 19.1667, - "y": 167.6564 - }, - { - "l": "75.0", - "x": 19.25, - "y": 167.6564 - }, - { - "l": "75.0", - "x": 19.3333, - "y": 167.6564 - }, - { - "l": "75.0", - "x": 19.4167, - "y": 167.6564 - }, - { - "l": "75.0", - "x": 19.5, - "y": 167.6553 - }, - { - "l": "75.0", - "x": 19.5833, - "y": 167.6553 - }, - { - "l": "75.0", - "x": 19.6667, - "y": 167.6553 - }, - { - "l": "75.0", - "x": 19.75, - "y": 167.6553 - }, - { - "l": "75.0", - "x": 19.8333, - "y": 167.6655 - }, - { - "l": "75.0", - "x": 19.9167, - "y": 167.6655 - }, - { - "l": "75.0", - "x": 20.0, - "y": 167.6655 - }, - { - "l": "75.0", - "x": 20.0, - "y": 167.6655 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 4.0, - "y": 106.9108 - }, - { - "l": "91.0", - "x": 4.0833, - "y": 107.5378 - }, - { - "l": "91.0", - "x": 4.1667, - "y": 108.1769 - }, - { - "l": "91.0", - "x": 4.25, - "y": 108.8254 - }, - { - "l": "91.0", - "x": 4.3333, - "y": 109.474 - }, - { - "l": "91.0", - "x": 4.4167, - "y": 110.144 - }, - { - "l": "91.0", - "x": 4.5, - "y": 110.8155 - }, - { - "l": "91.0", - "x": 4.5833, - "y": 111.4858 - }, - { - "l": "91.0", - "x": 4.6667, - "y": 112.1669 - }, - { - "l": "91.0", - "x": 4.75, - "y": 112.8376 - }, - { - "l": "91.0", - "x": 4.8333, - "y": 113.5071 - }, - { - "l": "91.0", - "x": 4.9167, - "y": 114.1768 - }, - { - "l": "91.0", - "x": 5.0, - "y": 114.8255 - }, - { - "l": "91.0", - "x": 5.0833, - "y": 115.4625 - }, - { - "l": "91.0", - "x": 5.1667, - "y": 116.089 - }, - { - "l": "91.0", - "x": 5.25, - "y": 116.7051 - }, - { - "l": "91.0", - "x": 5.3333, - "y": 117.3094 - }, - { - "l": "91.0", - "x": 5.4167, - "y": 117.9017 - }, - { - "l": "91.0", - "x": 5.5, - "y": 118.4731 - }, - { - "l": "91.0", - "x": 5.5833, - "y": 119.0445 - }, - { - "l": "91.0", - "x": 5.6667, - "y": 119.604 - }, - { - "l": "91.0", - "x": 5.75, - "y": 120.1636 - }, - { - "l": "91.0", - "x": 5.8333, - "y": 120.7128 - }, - { - "l": "91.0", - "x": 5.9167, - "y": 121.2499 - }, - { - "l": "91.0", - "x": 6.0, - "y": 121.7977 - }, - { - "l": "91.0", - "x": 6.0833, - "y": 122.335 - }, - { - "l": "91.0", - "x": 6.1667, - "y": 122.8708 - }, - { - "l": "91.0", - "x": 6.25, - "y": 123.3962 - }, - { - "l": "91.0", - "x": 6.3333, - "y": 123.9216 - }, - { - "l": "91.0", - "x": 6.4167, - "y": 124.4576 - }, - { - "l": "91.0", - "x": 6.5, - "y": 124.9832 - }, - { - "l": "91.0", - "x": 6.5833, - "y": 125.5072 - }, - { - "l": "91.0", - "x": 6.6667, - "y": 126.0328 - }, - { - "l": "91.0", - "x": 6.75, - "y": 126.557 - }, - { - "l": "91.0", - "x": 6.8333, - "y": 127.0811 - }, - { - "l": "91.0", - "x": 6.9167, - "y": 127.6265 - }, - { - "l": "91.0", - "x": 7.0, - "y": 128.1598 - }, - { - "l": "91.0", - "x": 7.0833, - "y": 128.6947 - }, - { - "l": "91.0", - "x": 7.1667, - "y": 129.2385 - }, - { - "l": "91.0", - "x": 7.25, - "y": 129.7825 - }, - { - "l": "91.0", - "x": 7.3333, - "y": 130.3354 - }, - { - "l": "91.0", - "x": 7.4167, - "y": 130.8794 - }, - { - "l": "91.0", - "x": 7.5, - "y": 131.4218 - }, - { - "l": "91.0", - "x": 7.5833, - "y": 131.9659 - }, - { - "l": "91.0", - "x": 7.6667, - "y": 132.4994 - }, - { - "l": "91.0", - "x": 7.75, - "y": 133.0436 - }, - { - "l": "91.0", - "x": 7.8333, - "y": 133.5772 - }, - { - "l": "91.0", - "x": 7.9167, - "y": 134.1109 - }, - { - "l": "91.0", - "x": 8.0, - "y": 134.6374 - }, - { - "l": "91.0", - "x": 8.0833, - "y": 135.1518 - }, - { - "l": "91.0", - "x": 8.1667, - "y": 135.6696 - }, - { - "l": "91.0", - "x": 8.25, - "y": 136.1663 - }, - { - "l": "91.0", - "x": 8.3333, - "y": 136.6754 - }, - { - "l": "91.0", - "x": 8.4167, - "y": 137.174 - }, - { - "l": "91.0", - "x": 8.5, - "y": 137.6638 - }, - { - "l": "91.0", - "x": 8.5833, - "y": 138.1555 - }, - { - "l": "91.0", - "x": 8.6667, - "y": 138.6367 - }, - { - "l": "91.0", - "x": 8.75, - "y": 139.1304 - }, - { - "l": "91.0", - "x": 8.8333, - "y": 139.6153 - }, - { - "l": "91.0", - "x": 8.9167, - "y": 140.1128 - }, - { - "l": "91.0", - "x": 9.0, - "y": 140.6103 - }, - { - "l": "91.0", - "x": 9.0833, - "y": 141.1098 - }, - { - "l": "91.0", - "x": 9.1667, - "y": 141.6219 - }, - { - "l": "91.0", - "x": 9.25, - "y": 142.134 - }, - { - "l": "91.0", - "x": 9.3333, - "y": 142.6482 - }, - { - "l": "91.0", - "x": 9.4167, - "y": 143.175 - }, - { - "l": "91.0", - "x": 9.5, - "y": 143.7019 - }, - { - "l": "91.0", - "x": 9.5833, - "y": 144.2309 - }, - { - "l": "91.0", - "x": 9.6667, - "y": 144.76 - }, - { - "l": "91.0", - "x": 9.75, - "y": 145.2894 - }, - { - "l": "91.0", - "x": 9.8333, - "y": 145.8315 - }, - { - "l": "91.0", - "x": 9.9167, - "y": 146.3631 - }, - { - "l": "91.0", - "x": 10.0, - "y": 146.9075 - }, - { - "l": "91.0", - "x": 10.0833, - "y": 147.4414 - }, - { - "l": "91.0", - "x": 10.1667, - "y": 147.9844 - }, - { - "l": "91.0", - "x": 10.25, - "y": 148.5295 - }, - { - "l": "91.0", - "x": 10.3333, - "y": 149.0623 - }, - { - "l": "91.0", - "x": 10.4167, - "y": 149.6059 - }, - { - "l": "91.0", - "x": 10.5, - "y": 150.1373 - }, - { - "l": "91.0", - "x": 10.5833, - "y": 150.6795 - }, - { - "l": "91.0", - "x": 10.6667, - "y": 151.2076 - }, - { - "l": "91.0", - "x": 10.75, - "y": 151.7464 - }, - { - "l": "91.0", - "x": 10.8333, - "y": 152.271 - }, - { - "l": "91.0", - "x": 10.9167, - "y": 152.7938 - }, - { - "l": "91.0", - "x": 11.0, - "y": 153.3149 - }, - { - "l": "91.0", - "x": 11.0833, - "y": 153.8303 - }, - { - "l": "91.0", - "x": 11.1667, - "y": 154.3438 - }, - { - "l": "91.0", - "x": 11.25, - "y": 154.8536 - }, - { - "l": "91.0", - "x": 11.3333, - "y": 155.3596 - }, - { - "l": "91.0", - "x": 11.4167, - "y": 155.8617 - }, - { - "l": "91.0", - "x": 11.5, - "y": 156.3492 - }, - { - "l": "91.0", - "x": 11.5833, - "y": 156.8434 - }, - { - "l": "91.0", - "x": 11.6667, - "y": 157.3317 - }, - { - "l": "91.0", - "x": 11.75, - "y": 157.8179 - }, - { - "l": "91.0", - "x": 11.8333, - "y": 158.3088 - }, - { - "l": "91.0", - "x": 11.9167, - "y": 158.7742 - }, - { - "l": "91.0", - "x": 12.0, - "y": 159.2548 - }, - { - "l": "91.0", - "x": 12.0833, - "y": 159.7332 - }, - { - "l": "91.0", - "x": 12.1667, - "y": 160.1967 - }, - { - "l": "91.0", - "x": 12.25, - "y": 160.656 - }, - { - "l": "91.0", - "x": 12.3333, - "y": 161.1236 - }, - { - "l": "91.0", - "x": 12.4167, - "y": 161.5763 - }, - { - "l": "91.0", - "x": 12.5, - "y": 162.0246 - }, - { - "l": "91.0", - "x": 12.5833, - "y": 162.4599 - }, - { - "l": "91.0", - "x": 12.6667, - "y": 162.8929 - }, - { - "l": "91.0", - "x": 12.75, - "y": 163.3023 - }, - { - "l": "91.0", - "x": 12.8333, - "y": 163.7199 - }, - { - "l": "91.0", - "x": 12.9167, - "y": 164.1245 - }, - { - "l": "91.0", - "x": 13.0, - "y": 164.5181 - }, - { - "l": "91.0", - "x": 13.0833, - "y": 164.8988 - }, - { - "l": "91.0", - "x": 13.1667, - "y": 165.2685 - }, - { - "l": "91.0", - "x": 13.25, - "y": 165.6378 - }, - { - "l": "91.0", - "x": 13.3333, - "y": 165.9857 - }, - { - "l": "91.0", - "x": 13.4167, - "y": 166.3121 - }, - { - "l": "91.0", - "x": 13.5, - "y": 166.6382 - }, - { - "l": "91.0", - "x": 13.5833, - "y": 166.9428 - }, - { - "l": "91.0", - "x": 13.6667, - "y": 167.2493 - }, - { - "l": "91.0", - "x": 13.75, - "y": 167.5449 - }, - { - "l": "91.0", - "x": 13.8333, - "y": 167.8213 - }, - { - "l": "91.0", - "x": 13.9167, - "y": 168.0763 - }, - { - "l": "91.0", - "x": 14.0, - "y": 168.3353 - }, - { - "l": "91.0", - "x": 14.0833, - "y": 168.5731 - }, - { - "l": "91.0", - "x": 14.1667, - "y": 168.8001 - }, - { - "l": "91.0", - "x": 14.25, - "y": 169.0207 - }, - { - "l": "91.0", - "x": 14.3333, - "y": 169.2326 - }, - { - "l": "91.0", - "x": 14.4167, - "y": 169.4256 - }, - { - "l": "91.0", - "x": 14.5, - "y": 169.6099 - }, - { - "l": "91.0", - "x": 14.5833, - "y": 169.7753 - }, - { - "l": "91.0", - "x": 14.6667, - "y": 169.9406 - }, - { - "l": "91.0", - "x": 14.75, - "y": 170.1017 - }, - { - "l": "91.0", - "x": 14.8333, - "y": 170.2416 - }, - { - "l": "91.0", - "x": 14.9167, - "y": 170.3648 - }, - { - "l": "91.0", - "x": 15.0, - "y": 170.4879 - }, - { - "l": "91.0", - "x": 15.0833, - "y": 170.6048 - }, - { - "l": "91.0", - "x": 15.1667, - "y": 170.7028 - }, - { - "l": "91.0", - "x": 15.25, - "y": 170.8029 - }, - { - "l": "91.0", - "x": 15.3333, - "y": 170.8841 - }, - { - "l": "91.0", - "x": 15.4167, - "y": 170.9674 - }, - { - "l": "91.0", - "x": 15.5, - "y": 171.0403 - }, - { - "l": "91.0", - "x": 15.5833, - "y": 171.0964 - }, - { - "l": "91.0", - "x": 15.6667, - "y": 171.163 - }, - { - "l": "91.0", - "x": 15.75, - "y": 171.2108 - }, - { - "l": "91.0", - "x": 15.8333, - "y": 171.2608 - }, - { - "l": "91.0", - "x": 15.9167, - "y": 171.3107 - }, - { - "l": "91.0", - "x": 16.0, - "y": 171.3418 - }, - { - "l": "91.0", - "x": 16.0833, - "y": 171.3856 - }, - { - "l": "91.0", - "x": 16.1667, - "y": 171.4062 - }, - { - "l": "91.0", - "x": 16.25, - "y": 171.4417 - }, - { - "l": "91.0", - "x": 16.3333, - "y": 171.4644 - }, - { - "l": "91.0", - "x": 16.4167, - "y": 171.4894 - }, - { - "l": "91.0", - "x": 16.5, - "y": 171.506 - }, - { - "l": "91.0", - "x": 16.5833, - "y": 171.531 - }, - { - "l": "91.0", - "x": 16.6667, - "y": 171.5393 - }, - { - "l": "91.0", - "x": 16.75, - "y": 171.5559 - }, - { - "l": "91.0", - "x": 16.8333, - "y": 171.5642 - }, - { - "l": "91.0", - "x": 16.9167, - "y": 171.5725 - }, - { - "l": "91.0", - "x": 17.0, - "y": 171.5809 - }, - { - "l": "91.0", - "x": 17.0833, - "y": 171.5787 - }, - { - "l": "91.0", - "x": 17.1667, - "y": 171.5892 - }, - { - "l": "91.0", - "x": 17.25, - "y": 171.5892 - }, - { - "l": "91.0", - "x": 17.3333, - "y": 171.5892 - }, - { - "l": "91.0", - "x": 17.4167, - "y": 171.587 - }, - { - "l": "91.0", - "x": 17.5, - "y": 171.5975 - }, - { - "l": "91.0", - "x": 17.5833, - "y": 171.5953 - }, - { - "l": "91.0", - "x": 17.6667, - "y": 171.6058 - }, - { - "l": "91.0", - "x": 17.75, - "y": 171.6141 - }, - { - "l": "91.0", - "x": 17.8333, - "y": 171.6224 - }, - { - "l": "91.0", - "x": 17.9167, - "y": 171.6307 - }, - { - "l": "91.0", - "x": 18.0, - "y": 171.6285 - }, - { - "l": "91.0", - "x": 18.0833, - "y": 171.639 - }, - { - "l": "91.0", - "x": 18.1667, - "y": 171.6474 - }, - { - "l": "91.0", - "x": 18.25, - "y": 171.6557 - }, - { - "l": "91.0", - "x": 18.3333, - "y": 171.6557 - }, - { - "l": "91.0", - "x": 18.4167, - "y": 171.664 - }, - { - "l": "91.0", - "x": 18.5, - "y": 171.664 - }, - { - "l": "91.0", - "x": 18.5833, - "y": 171.6723 - }, - { - "l": "91.0", - "x": 18.6667, - "y": 171.6723 - }, - { - "l": "91.0", - "x": 18.75, - "y": 171.6723 - }, - { - "l": "91.0", - "x": 18.8333, - "y": 171.6828 - }, - { - "l": "91.0", - "x": 18.9167, - "y": 171.6828 - }, - { - "l": "91.0", - "x": 19.0, - "y": 171.6828 - }, - { - "l": "91.0", - "x": 19.0833, - "y": 171.6828 - }, - { - "l": "91.0", - "x": 19.1667, - "y": 171.6828 - }, - { - "l": "91.0", - "x": 19.25, - "y": 171.6828 - }, - { - "l": "91.0", - "x": 19.3333, - "y": 171.6828 - }, - { - "l": "91.0", - "x": 19.4167, - "y": 171.6828 - }, - { - "l": "91.0", - "x": 19.5, - "y": 171.6806 - }, - { - "l": "91.0", - "x": 19.5833, - "y": 171.6806 - }, - { - "l": "91.0", - "x": 19.6667, - "y": 171.6806 - }, - { - "l": "91.0", - "x": 19.75, - "y": 171.6806 - }, - { - "l": "91.0", - "x": 19.8333, - "y": 171.6911 - }, - { - "l": "91.0", - "x": 19.9167, - "y": 171.6911 - }, - { - "l": "91.0", - "x": 20.0, - "y": 171.6911 - }, - { - "l": "91.0", - "x": 20.0, - "y": 171.6911 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 4.0, - "y": 109.5962 - }, - { - "l": "98.0", - "x": 4.0833, - "y": 110.2467 - }, - { - "l": "98.0", - "x": 4.1667, - "y": 110.9104 - }, - { - "l": "98.0", - "x": 4.25, - "y": 111.5831 - }, - { - "l": "98.0", - "x": 4.3333, - "y": 112.2561 - }, - { - "l": "98.0", - "x": 4.4167, - "y": 112.9509 - }, - { - "l": "98.0", - "x": 4.5, - "y": 113.6482 - }, - { - "l": "98.0", - "x": 4.5833, - "y": 114.3437 - }, - { - "l": "98.0", - "x": 4.6667, - "y": 115.0503 - }, - { - "l": "98.0", - "x": 4.75, - "y": 115.7464 - }, - { - "l": "98.0", - "x": 4.8333, - "y": 116.4406 - }, - { - "l": "98.0", - "x": 4.9167, - "y": 117.1352 - }, - { - "l": "98.0", - "x": 5.0, - "y": 117.8083 - }, - { - "l": "98.0", - "x": 5.0833, - "y": 118.4687 - }, - { - "l": "98.0", - "x": 5.1667, - "y": 119.1185 - }, - { - "l": "98.0", - "x": 5.25, - "y": 119.7577 - }, - { - "l": "98.0", - "x": 5.3333, - "y": 120.3841 - }, - { - "l": "98.0", - "x": 5.4167, - "y": 120.9976 - }, - { - "l": "98.0", - "x": 5.5, - "y": 121.5896 - }, - { - "l": "98.0", - "x": 5.5833, - "y": 122.1818 - }, - { - "l": "98.0", - "x": 5.6667, - "y": 122.761 - }, - { - "l": "98.0", - "x": 5.75, - "y": 123.3404 - }, - { - "l": "98.0", - "x": 5.8333, - "y": 123.9092 - }, - { - "l": "98.0", - "x": 5.9167, - "y": 124.4649 - }, - { - "l": "98.0", - "x": 6.0, - "y": 125.0316 - }, - { - "l": "98.0", - "x": 6.0833, - "y": 125.5875 - }, - { - "l": "98.0", - "x": 6.1667, - "y": 126.1413 - }, - { - "l": "98.0", - "x": 6.25, - "y": 126.6843 - }, - { - "l": "98.0", - "x": 6.3333, - "y": 127.2274 - }, - { - "l": "98.0", - "x": 6.4167, - "y": 127.7814 - }, - { - "l": "98.0", - "x": 6.5, - "y": 128.3247 - }, - { - "l": "98.0", - "x": 6.5833, - "y": 128.8658 - }, - { - "l": "98.0", - "x": 6.6667, - "y": 129.4093 - }, - { - "l": "98.0", - "x": 6.75, - "y": 129.9504 - }, - { - "l": "98.0", - "x": 6.8333, - "y": 130.4917 - }, - { - "l": "98.0", - "x": 6.9167, - "y": 131.0548 - }, - { - "l": "98.0", - "x": 7.0, - "y": 131.6046 - }, - { - "l": "98.0", - "x": 7.0833, - "y": 132.157 - }, - { - "l": "98.0", - "x": 7.1667, - "y": 132.7178 - }, - { - "l": "98.0", - "x": 7.25, - "y": 133.2787 - }, - { - "l": "98.0", - "x": 7.3333, - "y": 133.8481 - }, - { - "l": "98.0", - "x": 7.4167, - "y": 134.4091 - }, - { - "l": "98.0", - "x": 7.5, - "y": 134.9677 - }, - { - "l": "98.0", - "x": 7.5833, - "y": 135.5288 - }, - { - "l": "98.0", - "x": 7.6667, - "y": 136.0791 - }, - { - "l": "98.0", - "x": 7.75, - "y": 136.6404 - }, - { - "l": "98.0", - "x": 7.8333, - "y": 137.1908 - }, - { - "l": "98.0", - "x": 7.9167, - "y": 137.7413 - }, - { - "l": "98.0", - "x": 8.0, - "y": 138.2861 - }, - { - "l": "98.0", - "x": 8.0833, - "y": 138.8176 - }, - { - "l": "98.0", - "x": 8.1667, - "y": 139.3543 - }, - { - "l": "98.0", - "x": 8.25, - "y": 139.8694 - }, - { - "l": "98.0", - "x": 8.3333, - "y": 140.3981 - }, - { - "l": "98.0", - "x": 8.4167, - "y": 140.916 - }, - { - "l": "98.0", - "x": 8.5, - "y": 141.4257 - }, - { - "l": "98.0", - "x": 8.5833, - "y": 141.9383 - }, - { - "l": "98.0", - "x": 8.6667, - "y": 142.4401 - }, - { - "l": "98.0", - "x": 8.75, - "y": 142.9556 - }, - { - "l": "98.0", - "x": 8.8333, - "y": 143.463 - }, - { - "l": "98.0", - "x": 8.9167, - "y": 143.9841 - }, - { - "l": "98.0", - "x": 9.0, - "y": 144.5055 - }, - { - "l": "98.0", - "x": 9.0833, - "y": 145.0297 - }, - { - "l": "98.0", - "x": 9.1667, - "y": 145.5678 - }, - { - "l": "98.0", - "x": 9.25, - "y": 146.1061 - }, - { - "l": "98.0", - "x": 9.3333, - "y": 146.6473 - }, - { - "l": "98.0", - "x": 9.4167, - "y": 147.2024 - }, - { - "l": "98.0", - "x": 9.5, - "y": 147.7578 - }, - { - "l": "98.0", - "x": 9.5833, - "y": 148.3163 - }, - { - "l": "98.0", - "x": 9.6667, - "y": 148.875 - }, - { - "l": "98.0", - "x": 9.75, - "y": 149.4341 - }, - { - "l": "98.0", - "x": 9.8333, - "y": 150.0072 - }, - { - "l": "98.0", - "x": 9.9167, - "y": 150.5697 - }, - { - "l": "98.0", - "x": 10.0, - "y": 151.1462 - }, - { - "l": "98.0", - "x": 10.0833, - "y": 151.7121 - }, - { - "l": "98.0", - "x": 10.1667, - "y": 152.2866 - }, - { - "l": "98.0", - "x": 10.25, - "y": 152.8642 - }, - { - "l": "98.0", - "x": 10.3333, - "y": 153.4284 - }, - { - "l": "98.0", - "x": 10.4167, - "y": 154.0039 - }, - { - "l": "98.0", - "x": 10.5, - "y": 154.566 - }, - { - "l": "98.0", - "x": 10.5833, - "y": 155.1393 - }, - { - "l": "98.0", - "x": 10.6667, - "y": 155.6963 - }, - { - "l": "98.0", - "x": 10.75, - "y": 156.2646 - }, - { - "l": "98.0", - "x": 10.8333, - "y": 156.8165 - }, - { - "l": "98.0", - "x": 10.9167, - "y": 157.3657 - }, - { - "l": "98.0", - "x": 11.0, - "y": 157.9123 - }, - { - "l": "98.0", - "x": 11.0833, - "y": 158.4504 - }, - { - "l": "98.0", - "x": 11.1667, - "y": 158.9858 - }, - { - "l": "98.0", - "x": 11.25, - "y": 159.5154 - }, - { - "l": "98.0", - "x": 11.3333, - "y": 160.0394 - }, - { - "l": "98.0", - "x": 11.4167, - "y": 160.5575 - }, - { - "l": "98.0", - "x": 11.5, - "y": 161.0588 - }, - { - "l": "98.0", - "x": 11.5833, - "y": 161.5651 - }, - { - "l": "98.0", - "x": 11.6667, - "y": 162.0626 - }, - { - "l": "98.0", - "x": 11.75, - "y": 162.5569 - }, - { - "l": "98.0", - "x": 11.8333, - "y": 163.0531 - }, - { - "l": "98.0", - "x": 11.9167, - "y": 163.5213 - }, - { - "l": "98.0", - "x": 12.0, - "y": 164.0022 - }, - { - "l": "98.0", - "x": 12.0833, - "y": 164.4797 - }, - { - "l": "98.0", - "x": 12.1667, - "y": 164.94 - }, - { - "l": "98.0", - "x": 12.25, - "y": 165.3939 - }, - { - "l": "98.0", - "x": 12.3333, - "y": 165.8554 - }, - { - "l": "98.0", - "x": 12.4167, - "y": 166.2994 - }, - { - "l": "98.0", - "x": 12.5, - "y": 166.7369 - }, - { - "l": "98.0", - "x": 12.5833, - "y": 167.1599 - }, - { - "l": "98.0", - "x": 12.6667, - "y": 167.5794 - }, - { - "l": "98.0", - "x": 12.75, - "y": 167.9734 - }, - { - "l": "98.0", - "x": 12.8333, - "y": 168.3748 - }, - { - "l": "98.0", - "x": 12.9167, - "y": 168.7617 - }, - { - "l": "98.0", - "x": 13.0, - "y": 169.1372 - }, - { - "l": "98.0", - "x": 13.0833, - "y": 169.4981 - }, - { - "l": "98.0", - "x": 13.1667, - "y": 169.8477 - }, - { - "l": "98.0", - "x": 13.25, - "y": 170.1967 - }, - { - "l": "98.0", - "x": 13.3333, - "y": 170.5235 - }, - { - "l": "98.0", - "x": 13.4167, - "y": 170.8281 - }, - { - "l": "98.0", - "x": 13.5, - "y": 171.1322 - }, - { - "l": "98.0", - "x": 13.5833, - "y": 171.4142 - }, - { - "l": "98.0", - "x": 13.6667, - "y": 171.6989 - }, - { - "l": "98.0", - "x": 13.75, - "y": 171.9724 - }, - { - "l": "98.0", - "x": 13.8333, - "y": 172.2269 - }, - { - "l": "98.0", - "x": 13.9167, - "y": 172.4594 - }, - { - "l": "98.0", - "x": 14.0, - "y": 172.698 - }, - { - "l": "98.0", - "x": 14.0833, - "y": 172.9146 - }, - { - "l": "98.0", - "x": 14.1667, - "y": 173.1201 - }, - { - "l": "98.0", - "x": 14.25, - "y": 173.321 - }, - { - "l": "98.0", - "x": 14.3333, - "y": 173.514 - }, - { - "l": "98.0", - "x": 14.4167, - "y": 173.6883 - }, - { - "l": "98.0", - "x": 14.5, - "y": 173.8549 - }, - { - "l": "98.0", - "x": 14.5833, - "y": 174.003 - }, - { - "l": "98.0", - "x": 14.6667, - "y": 174.1509 - }, - { - "l": "98.0", - "x": 14.75, - "y": 174.2975 - }, - { - "l": "98.0", - "x": 14.8333, - "y": 174.4225 - }, - { - "l": "98.0", - "x": 14.9167, - "y": 174.5322 - }, - { - "l": "98.0", - "x": 15.0, - "y": 174.6419 - }, - { - "l": "98.0", - "x": 15.0833, - "y": 174.7472 - }, - { - "l": "98.0", - "x": 15.1667, - "y": 174.8342 - }, - { - "l": "98.0", - "x": 15.25, - "y": 174.9243 - }, - { - "l": "98.0", - "x": 15.3333, - "y": 174.9961 - }, - { - "l": "98.0", - "x": 15.4167, - "y": 175.0712 - }, - { - "l": "98.0", - "x": 15.5, - "y": 175.1354 - }, - { - "l": "98.0", - "x": 15.5833, - "y": 175.1846 - }, - { - "l": "98.0", - "x": 15.6667, - "y": 175.2446 - }, - { - "l": "98.0", - "x": 15.75, - "y": 175.2862 - }, - { - "l": "98.0", - "x": 15.8333, - "y": 175.3312 - }, - { - "l": "98.0", - "x": 15.9167, - "y": 175.3761 - }, - { - "l": "98.0", - "x": 16.0, - "y": 175.4027 - }, - { - "l": "98.0", - "x": 16.0833, - "y": 175.4434 - }, - { - "l": "98.0", - "x": 16.1667, - "y": 175.4593 - }, - { - "l": "98.0", - "x": 16.25, - "y": 175.4925 - }, - { - "l": "98.0", - "x": 16.3333, - "y": 175.5117 - }, - { - "l": "98.0", - "x": 16.4167, - "y": 175.5341 - }, - { - "l": "98.0", - "x": 16.5, - "y": 175.549 - }, - { - "l": "98.0", - "x": 16.5833, - "y": 175.5715 - }, - { - "l": "98.0", - "x": 16.6667, - "y": 175.5789 - }, - { - "l": "98.0", - "x": 16.75, - "y": 175.5939 - }, - { - "l": "98.0", - "x": 16.8333, - "y": 175.6013 - }, - { - "l": "98.0", - "x": 16.9167, - "y": 175.6088 - }, - { - "l": "98.0", - "x": 17.0, - "y": 175.6163 - }, - { - "l": "98.0", - "x": 17.0833, - "y": 175.613 - }, - { - "l": "98.0", - "x": 17.1667, - "y": 175.6238 - }, - { - "l": "98.0", - "x": 17.25, - "y": 175.6238 - }, - { - "l": "98.0", - "x": 17.3333, - "y": 175.6238 - }, - { - "l": "98.0", - "x": 17.4167, - "y": 175.6205 - }, - { - "l": "98.0", - "x": 17.5, - "y": 175.6312 - }, - { - "l": "98.0", - "x": 17.5833, - "y": 175.6279 - }, - { - "l": "98.0", - "x": 17.6667, - "y": 175.6387 - }, - { - "l": "98.0", - "x": 17.75, - "y": 175.6462 - }, - { - "l": "98.0", - "x": 17.8333, - "y": 175.6536 - }, - { - "l": "98.0", - "x": 17.9167, - "y": 175.6611 - }, - { - "l": "98.0", - "x": 18.0, - "y": 175.6578 - }, - { - "l": "98.0", - "x": 18.0833, - "y": 175.6686 - }, - { - "l": "98.0", - "x": 18.1667, - "y": 175.676 - }, - { - "l": "98.0", - "x": 18.25, - "y": 175.6835 - }, - { - "l": "98.0", - "x": 18.3333, - "y": 175.6835 - }, - { - "l": "98.0", - "x": 18.4167, - "y": 175.691 - }, - { - "l": "98.0", - "x": 18.5, - "y": 175.691 - }, - { - "l": "98.0", - "x": 18.5833, - "y": 175.6984 - }, - { - "l": "98.0", - "x": 18.6667, - "y": 175.6984 - }, - { - "l": "98.0", - "x": 18.75, - "y": 175.6984 - }, - { - "l": "98.0", - "x": 18.8333, - "y": 175.7092 - }, - { - "l": "98.0", - "x": 18.9167, - "y": 175.7092 - }, - { - "l": "98.0", - "x": 19.0, - "y": 175.7092 - }, - { - "l": "98.0", - "x": 19.0833, - "y": 175.7092 - }, - { - "l": "98.0", - "x": 19.1667, - "y": 175.7092 - }, - { - "l": "98.0", - "x": 19.25, - "y": 175.7092 - }, - { - "l": "98.0", - "x": 19.3333, - "y": 175.7092 - }, - { - "l": "98.0", - "x": 19.4167, - "y": 175.7092 - }, - { - "l": "98.0", - "x": 19.5, - "y": 175.7059 - }, - { - "l": "98.0", - "x": 19.5833, - "y": 175.7059 - }, - { - "l": "98.0", - "x": 19.6667, - "y": 175.7059 - }, - { - "l": "98.0", - "x": 19.75, - "y": 175.7059 - }, - { - "l": "98.0", - "x": 19.8333, - "y": 175.7166 - }, - { - "l": "98.0", - "x": 19.9167, - "y": 175.7166 - }, - { - "l": "98.0", - "x": 20.0, - "y": 175.7166 - }, - { - "l": "98.0", - "x": 20.0, - "y": 175.7166 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 4.0, - "y": 112.2816 - }, - { - "l": "99.6", - "x": 4.0833, - "y": 112.9556 - }, - { - "l": "99.6", - "x": 4.1667, - "y": 113.6438 - }, - { - "l": "99.6", - "x": 4.25, - "y": 114.3408 - }, - { - "l": "99.6", - "x": 4.3333, - "y": 115.0381 - }, - { - "l": "99.6", - "x": 4.4167, - "y": 115.7579 - }, - { - "l": "99.6", - "x": 4.5, - "y": 116.481 - }, - { - "l": "99.6", - "x": 4.5833, - "y": 117.2016 - }, - { - "l": "99.6", - "x": 4.6667, - "y": 117.9338 - }, - { - "l": "99.6", - "x": 4.75, - "y": 118.6552 - }, - { - "l": "99.6", - "x": 4.8333, - "y": 119.3742 - }, - { - "l": "99.6", - "x": 4.9167, - "y": 120.0935 - }, - { - "l": "99.6", - "x": 5.0, - "y": 120.7911 - }, - { - "l": "99.6", - "x": 5.0833, - "y": 121.4749 - }, - { - "l": "99.6", - "x": 5.1667, - "y": 122.148 - }, - { - "l": "99.6", - "x": 5.25, - "y": 122.8102 - }, - { - "l": "99.6", - "x": 5.3333, - "y": 123.4587 - }, - { - "l": "99.6", - "x": 5.4167, - "y": 124.0934 - }, - { - "l": "99.6", - "x": 5.5, - "y": 124.7061 - }, - { - "l": "99.6", - "x": 5.5833, - "y": 125.319 - }, - { - "l": "99.6", - "x": 5.6667, - "y": 125.9181 - }, - { - "l": "99.6", - "x": 5.75, - "y": 126.5173 - }, - { - "l": "99.6", - "x": 5.8333, - "y": 127.1055 - }, - { - "l": "99.6", - "x": 5.9167, - "y": 127.6798 - }, - { - "l": "99.6", - "x": 6.0, - "y": 128.2654 - }, - { - "l": "99.6", - "x": 6.0833, - "y": 128.84 - }, - { - "l": "99.6", - "x": 6.1667, - "y": 129.4117 - }, - { - "l": "99.6", - "x": 6.25, - "y": 129.9724 - }, - { - "l": "99.6", - "x": 6.3333, - "y": 130.5332 - }, - { - "l": "99.6", - "x": 6.4167, - "y": 131.1053 - }, - { - "l": "99.6", - "x": 6.5, - "y": 131.6663 - }, - { - "l": "99.6", - "x": 6.5833, - "y": 132.2244 - }, - { - "l": "99.6", - "x": 6.6667, - "y": 132.7857 - }, - { - "l": "99.6", - "x": 6.75, - "y": 133.3439 - }, - { - "l": "99.6", - "x": 6.8333, - "y": 133.9023 - }, - { - "l": "99.6", - "x": 6.9167, - "y": 134.483 - }, - { - "l": "99.6", - "x": 7.0, - "y": 135.0495 - }, - { - "l": "99.6", - "x": 7.0833, - "y": 135.6193 - }, - { - "l": "99.6", - "x": 7.1667, - "y": 136.1971 - }, - { - "l": "99.6", - "x": 7.25, - "y": 136.775 - }, - { - "l": "99.6", - "x": 7.3333, - "y": 137.3608 - }, - { - "l": "99.6", - "x": 7.4167, - "y": 137.9388 - }, - { - "l": "99.6", - "x": 7.5, - "y": 138.5136 - }, - { - "l": "99.6", - "x": 7.5833, - "y": 139.0917 - }, - { - "l": "99.6", - "x": 7.6667, - "y": 139.6588 - }, - { - "l": "99.6", - "x": 7.75, - "y": 140.2372 - }, - { - "l": "99.6", - "x": 7.8333, - "y": 140.8044 - }, - { - "l": "99.6", - "x": 7.9167, - "y": 141.3718 - }, - { - "l": "99.6", - "x": 8.0, - "y": 141.9349 - }, - { - "l": "99.6", - "x": 8.0833, - "y": 142.4835 - }, - { - "l": "99.6", - "x": 8.1667, - "y": 143.0391 - }, - { - "l": "99.6", - "x": 8.25, - "y": 143.5726 - }, - { - "l": "99.6", - "x": 8.3333, - "y": 144.1207 - }, - { - "l": "99.6", - "x": 8.4167, - "y": 144.658 - }, - { - "l": "99.6", - "x": 8.5, - "y": 145.1877 - }, - { - "l": "99.6", - "x": 8.5833, - "y": 145.721 - }, - { - "l": "99.6", - "x": 8.6667, - "y": 146.2435 - }, - { - "l": "99.6", - "x": 8.75, - "y": 146.7808 - }, - { - "l": "99.6", - "x": 8.8333, - "y": 147.3107 - }, - { - "l": "99.6", - "x": 8.9167, - "y": 147.8555 - }, - { - "l": "99.6", - "x": 9.0, - "y": 148.4007 - }, - { - "l": "99.6", - "x": 9.0833, - "y": 148.9497 - }, - { - "l": "99.6", - "x": 9.1667, - "y": 149.5137 - }, - { - "l": "99.6", - "x": 9.25, - "y": 150.0781 - }, - { - "l": "99.6", - "x": 9.3333, - "y": 150.6464 - }, - { - "l": "99.6", - "x": 9.4167, - "y": 151.2299 - }, - { - "l": "99.6", - "x": 9.5, - "y": 151.8138 - }, - { - "l": "99.6", - "x": 9.5833, - "y": 152.4017 - }, - { - "l": "99.6", - "x": 9.6667, - "y": 152.9901 - }, - { - "l": "99.6", - "x": 9.75, - "y": 153.5788 - }, - { - "l": "99.6", - "x": 9.8333, - "y": 154.1829 - }, - { - "l": "99.6", - "x": 9.9167, - "y": 154.7762 - }, - { - "l": "99.6", - "x": 10.0, - "y": 155.3849 - }, - { - "l": "99.6", - "x": 10.0833, - "y": 155.9828 - }, - { - "l": "99.6", - "x": 10.1667, - "y": 156.5888 - }, - { - "l": "99.6", - "x": 10.25, - "y": 157.1989 - }, - { - "l": "99.6", - "x": 10.3333, - "y": 157.7945 - }, - { - "l": "99.6", - "x": 10.4167, - "y": 158.4019 - }, - { - "l": "99.6", - "x": 10.5, - "y": 158.9946 - }, - { - "l": "99.6", - "x": 10.5833, - "y": 159.5991 - }, - { - "l": "99.6", - "x": 10.6667, - "y": 160.1851 - }, - { - "l": "99.6", - "x": 10.75, - "y": 160.7828 - }, - { - "l": "99.6", - "x": 10.8333, - "y": 161.362 - }, - { - "l": "99.6", - "x": 10.9167, - "y": 161.9376 - }, - { - "l": "99.6", - "x": 11.0, - "y": 162.5097 - }, - { - "l": "99.6", - "x": 11.0833, - "y": 163.0705 - }, - { - "l": "99.6", - "x": 11.1667, - "y": 163.6277 - }, - { - "l": "99.6", - "x": 11.25, - "y": 164.1772 - }, - { - "l": "99.6", - "x": 11.3333, - "y": 164.7191 - }, - { - "l": "99.6", - "x": 11.4167, - "y": 165.2533 - }, - { - "l": "99.6", - "x": 11.5, - "y": 165.7684 - }, - { - "l": "99.6", - "x": 11.5833, - "y": 166.2869 - }, - { - "l": "99.6", - "x": 11.6667, - "y": 166.7934 - }, - { - "l": "99.6", - "x": 11.75, - "y": 167.2959 - }, - { - "l": "99.6", - "x": 11.8333, - "y": 167.7975 - }, - { - "l": "99.6", - "x": 11.9167, - "y": 168.2684 - }, - { - "l": "99.6", - "x": 12.0, - "y": 168.7496 - }, - { - "l": "99.6", - "x": 12.0833, - "y": 169.2263 - }, - { - "l": "99.6", - "x": 12.1667, - "y": 169.6834 - }, - { - "l": "99.6", - "x": 12.25, - "y": 170.1319 - }, - { - "l": "99.6", - "x": 12.3333, - "y": 170.5872 - }, - { - "l": "99.6", - "x": 12.4167, - "y": 171.0225 - }, - { - "l": "99.6", - "x": 12.5, - "y": 171.4492 - }, - { - "l": "99.6", - "x": 12.5833, - "y": 171.8598 - }, - { - "l": "99.6", - "x": 12.6667, - "y": 172.2658 - }, - { - "l": "99.6", - "x": 12.75, - "y": 172.6446 - }, - { - "l": "99.6", - "x": 12.8333, - "y": 173.0298 - }, - { - "l": "99.6", - "x": 12.9167, - "y": 173.399 - }, - { - "l": "99.6", - "x": 13.0, - "y": 173.7562 - }, - { - "l": "99.6", - "x": 13.0833, - "y": 174.0975 - }, - { - "l": "99.6", - "x": 13.1667, - "y": 174.4269 - }, - { - "l": "99.6", - "x": 13.25, - "y": 174.7556 - }, - { - "l": "99.6", - "x": 13.3333, - "y": 175.0613 - }, - { - "l": "99.6", - "x": 13.4167, - "y": 175.3441 - }, - { - "l": "99.6", - "x": 13.5, - "y": 175.6263 - }, - { - "l": "99.6", - "x": 13.5833, - "y": 175.8856 - }, - { - "l": "99.6", - "x": 13.6667, - "y": 176.1485 - }, - { - "l": "99.6", - "x": 13.75, - "y": 176.3998 - }, - { - "l": "99.6", - "x": 13.8333, - "y": 176.6325 - }, - { - "l": "99.6", - "x": 13.9167, - "y": 176.8426 - }, - { - "l": "99.6", - "x": 14.0, - "y": 177.0607 - }, - { - "l": "99.6", - "x": 14.0833, - "y": 177.2562 - }, - { - "l": "99.6", - "x": 14.1667, - "y": 177.4402 - }, - { - "l": "99.6", - "x": 14.25, - "y": 177.6213 - }, - { - "l": "99.6", - "x": 14.3333, - "y": 177.7953 - }, - { - "l": "99.6", - "x": 14.4167, - "y": 177.9511 - }, - { - "l": "99.6", - "x": 14.5, - "y": 178.0999 - }, - { - "l": "99.6", - "x": 14.5833, - "y": 178.2306 - }, - { - "l": "99.6", - "x": 14.6667, - "y": 178.3612 - }, - { - "l": "99.6", - "x": 14.75, - "y": 178.4933 - }, - { - "l": "99.6", - "x": 14.8333, - "y": 178.6033 - }, - { - "l": "99.6", - "x": 14.9167, - "y": 178.6996 - }, - { - "l": "99.6", - "x": 15.0, - "y": 178.7959 - }, - { - "l": "99.6", - "x": 15.0833, - "y": 178.8896 - }, - { - "l": "99.6", - "x": 15.1667, - "y": 178.9656 - }, - { - "l": "99.6", - "x": 15.25, - "y": 179.0458 - }, - { - "l": "99.6", - "x": 15.3333, - "y": 179.1082 - }, - { - "l": "99.6", - "x": 15.4167, - "y": 179.1749 - }, - { - "l": "99.6", - "x": 15.5, - "y": 179.2305 - }, - { - "l": "99.6", - "x": 15.5833, - "y": 179.2728 - }, - { - "l": "99.6", - "x": 15.6667, - "y": 179.3261 - }, - { - "l": "99.6", - "x": 15.75, - "y": 179.3617 - }, - { - "l": "99.6", - "x": 15.8333, - "y": 179.4016 - }, - { - "l": "99.6", - "x": 15.9167, - "y": 179.4414 - }, - { - "l": "99.6", - "x": 16.0, - "y": 179.4637 - }, - { - "l": "99.6", - "x": 16.0833, - "y": 179.5012 - }, - { - "l": "99.6", - "x": 16.1667, - "y": 179.5124 - }, - { - "l": "99.6", - "x": 16.25, - "y": 179.5433 - }, - { - "l": "99.6", - "x": 16.3333, - "y": 179.5589 - }, - { - "l": "99.6", - "x": 16.4167, - "y": 179.5788 - }, - { - "l": "99.6", - "x": 16.5, - "y": 179.592 - }, - { - "l": "99.6", - "x": 16.5833, - "y": 179.6119 - }, - { - "l": "99.6", - "x": 16.6667, - "y": 179.6186 - }, - { - "l": "99.6", - "x": 16.75, - "y": 179.6318 - }, - { - "l": "99.6", - "x": 16.8333, - "y": 179.6385 - }, - { - "l": "99.6", - "x": 16.9167, - "y": 179.6451 - }, - { - "l": "99.6", - "x": 17.0, - "y": 179.6517 - }, - { - "l": "99.6", - "x": 17.0833, - "y": 179.6473 - }, - { - "l": "99.6", - "x": 17.1667, - "y": 179.6583 - }, - { - "l": "99.6", - "x": 17.25, - "y": 179.6583 - }, - { - "l": "99.6", - "x": 17.3333, - "y": 179.6583 - }, - { - "l": "99.6", - "x": 17.4167, - "y": 179.654 - }, - { - "l": "99.6", - "x": 17.5, - "y": 179.665 - }, - { - "l": "99.6", - "x": 17.5833, - "y": 179.6606 - }, - { - "l": "99.6", - "x": 17.6667, - "y": 179.6716 - }, - { - "l": "99.6", - "x": 17.75, - "y": 179.6782 - }, - { - "l": "99.6", - "x": 17.8333, - "y": 179.6848 - }, - { - "l": "99.6", - "x": 17.9167, - "y": 179.6915 - }, - { - "l": "99.6", - "x": 18.0, - "y": 179.6871 - }, - { - "l": "99.6", - "x": 18.0833, - "y": 179.6981 - }, - { - "l": "99.6", - "x": 18.1667, - "y": 179.7047 - }, - { - "l": "99.6", - "x": 18.25, - "y": 179.7113 - }, - { - "l": "99.6", - "x": 18.3333, - "y": 179.7113 - }, - { - "l": "99.6", - "x": 18.4167, - "y": 179.7179 - }, - { - "l": "99.6", - "x": 18.5, - "y": 179.7179 - }, - { - "l": "99.6", - "x": 18.5833, - "y": 179.7246 - }, - { - "l": "99.6", - "x": 18.6667, - "y": 179.7246 - }, - { - "l": "99.6", - "x": 18.75, - "y": 179.7246 - }, - { - "l": "99.6", - "x": 18.8333, - "y": 179.7356 - }, - { - "l": "99.6", - "x": 18.9167, - "y": 179.7356 - }, - { - "l": "99.6", - "x": 19.0, - "y": 179.7356 - }, - { - "l": "99.6", - "x": 19.0833, - "y": 179.7356 - }, - { - "l": "99.6", - "x": 19.1667, - "y": 179.7356 - }, - { - "l": "99.6", - "x": 19.25, - "y": 179.7356 - }, - { - "l": "99.6", - "x": 19.3333, - "y": 179.7356 - }, - { - "l": "99.6", - "x": 19.4167, - "y": 179.7356 - }, - { - "l": "99.6", - "x": 19.5, - "y": 179.7312 - }, - { - "l": "99.6", - "x": 19.5833, - "y": 179.7312 - }, - { - "l": "99.6", - "x": 19.6667, - "y": 179.7312 - }, - { - "l": "99.6", - "x": 19.75, - "y": 179.7312 - }, - { - "l": "99.6", - "x": 19.8333, - "y": 179.7422 - }, - { - "l": "99.6", - "x": 19.9167, - "y": 179.7422 - }, - { - "l": "99.6", - "x": 20.0, - "y": 179.7422 - }, - { - "l": "99.6", - "x": 20.0, - "y": 179.7422 - } - ] - } - ], - "weight": null, - "ofc": null, - "bmi": null - } - } - } - ] -}; - -var ukwhoWeightMaleCentileData = { - "centile_data": [ - { - "uk90_preterm": { - "male": { - "height": null, - "weight": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": -0.3258, - "y": 0.3442 - }, - { - "l": "0.4", - "x": -0.3066, - "y": 0.3942 - }, - { - "l": "0.4", - "x": -0.2875, - "y": 0.4442 - }, - { - "l": "0.4", - "x": -0.2683, - "y": 0.4954 - }, - { - "l": "0.4", - "x": -0.2491, - "y": 0.5484 - }, - { - "l": "0.4", - "x": -0.23, - "y": 0.6061 - }, - { - "l": "0.4", - "x": -0.2108, - "y": 0.6707 - }, - { - "l": "0.4", - "x": -0.1916, - "y": 0.7452 - }, - { - "l": "0.4", - "x": -0.1725, - "y": 0.8363 - }, - { - "l": "0.4", - "x": -0.1533, - "y": 0.9479 - }, - { - "l": "0.4", - "x": -0.1342, - "y": 1.082 - }, - { - "l": "0.4", - "x": -0.115, - "y": 1.2373 - }, - { - "l": "0.4", - "x": -0.0958, - "y": 1.4122 - }, - { - "l": "0.4", - "x": -0.0767, - "y": 1.6039 - }, - { - "l": "0.4", - "x": -0.0575, - "y": 1.8075 - }, - { - "l": "0.4", - "x": -0.0383, - "y": 2.0136 - }, - { - "l": "0.4", - "x": -0.0192, - "y": 2.2105 - }, - { - "l": "0.4", - "x": -0.0, - "y": 2.3856 - }, - { - "l": "0.4", - "x": 0.0192, - "y": 2.5389 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 2.6784 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 2.6784 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": -0.3258, - "y": 0.4141 - }, - { - "l": "2.0", - "x": -0.3066, - "y": 0.4765 - }, - { - "l": "2.0", - "x": -0.2875, - "y": 0.5396 - }, - { - "l": "2.0", - "x": -0.2683, - "y": 0.6048 - }, - { - "l": "2.0", - "x": -0.2491, - "y": 0.6722 - }, - { - "l": "2.0", - "x": -0.23, - "y": 0.7454 - }, - { - "l": "2.0", - "x": -0.2108, - "y": 0.8262 - }, - { - "l": "2.0", - "x": -0.1916, - "y": 0.9178 - }, - { - "l": "2.0", - "x": -0.1725, - "y": 1.0272 - }, - { - "l": "2.0", - "x": -0.1533, - "y": 1.1583 - }, - { - "l": "2.0", - "x": -0.1342, - "y": 1.3116 - }, - { - "l": "2.0", - "x": -0.115, - "y": 1.4846 - }, - { - "l": "2.0", - "x": -0.0958, - "y": 1.6741 - }, - { - "l": "2.0", - "x": -0.0767, - "y": 1.8768 - }, - { - "l": "2.0", - "x": -0.0575, - "y": 2.0871 - }, - { - "l": "2.0", - "x": -0.0383, - "y": 2.2958 - }, - { - "l": "2.0", - "x": -0.0192, - "y": 2.4928 - }, - { - "l": "2.0", - "x": -0.0, - "y": 2.6683 - }, - { - "l": "2.0", - "x": 0.0192, - "y": 2.8232 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 2.9655 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 2.9655 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": -0.3258, - "y": 0.4822 - }, - { - "l": "9.0", - "x": -0.3066, - "y": 0.5571 - }, - { - "l": "9.0", - "x": -0.2875, - "y": 0.6333 - }, - { - "l": "9.0", - "x": -0.2683, - "y": 0.7126 - }, - { - "l": "9.0", - "x": -0.2491, - "y": 0.7947 - }, - { - "l": "9.0", - "x": -0.23, - "y": 0.8836 - }, - { - "l": "9.0", - "x": -0.2108, - "y": 0.9812 - }, - { - "l": "9.0", - "x": -0.1916, - "y": 1.0904 - }, - { - "l": "9.0", - "x": -0.1725, - "y": 1.2191 - }, - { - "l": "9.0", - "x": -0.1533, - "y": 1.3705 - }, - { - "l": "9.0", - "x": -0.1342, - "y": 1.5439 - }, - { - "l": "9.0", - "x": -0.115, - "y": 1.7357 - }, - { - "l": "9.0", - "x": -0.0958, - "y": 1.9408 - }, - { - "l": "9.0", - "x": -0.0767, - "y": 2.1551 - }, - { - "l": "9.0", - "x": -0.0575, - "y": 2.3726 - }, - { - "l": "9.0", - "x": -0.0383, - "y": 2.5842 - }, - { - "l": "9.0", - "x": -0.0192, - "y": 2.7816 - }, - { - "l": "9.0", - "x": -0.0, - "y": 2.9577 - }, - { - "l": "9.0", - "x": 0.0192, - "y": 3.1146 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 3.26 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 3.26 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": -0.3258, - "y": 0.5489 - }, - { - "l": "25.0", - "x": -0.3066, - "y": 0.6363 - }, - { - "l": "25.0", - "x": -0.2875, - "y": 0.7256 - }, - { - "l": "25.0", - "x": -0.2683, - "y": 0.8191 - }, - { - "l": "25.0", - "x": -0.2491, - "y": 0.916 - }, - { - "l": "25.0", - "x": -0.23, - "y": 1.021 - }, - { - "l": "25.0", - "x": -0.2108, - "y": 1.1357 - }, - { - "l": "25.0", - "x": -0.1916, - "y": 1.2632 - }, - { - "l": "25.0", - "x": -0.1725, - "y": 1.4117 - }, - { - "l": "25.0", - "x": -0.1533, - "y": 1.5842 - }, - { - "l": "25.0", - "x": -0.1342, - "y": 1.7787 - }, - { - "l": "25.0", - "x": -0.115, - "y": 1.99 - }, - { - "l": "25.0", - "x": -0.0958, - "y": 2.2115 - }, - { - "l": "25.0", - "x": -0.0767, - "y": 2.4382 - }, - { - "l": "25.0", - "x": -0.0575, - "y": 2.6635 - }, - { - "l": "25.0", - "x": -0.0383, - "y": 2.8783 - }, - { - "l": "25.0", - "x": -0.0192, - "y": 3.0764 - }, - { - "l": "25.0", - "x": -0.0, - "y": 3.2534 - }, - { - "l": "25.0", - "x": 0.0192, - "y": 3.4127 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 3.5617 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 3.5617 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": -0.3258, - "y": 0.6145 - }, - { - "l": "50.0", - "x": -0.3066, - "y": 0.7142 - }, - { - "l": "50.0", - "x": -0.2875, - "y": 0.8167 - }, - { - "l": "50.0", - "x": -0.2683, - "y": 0.9244 - }, - { - "l": "50.0", - "x": -0.2491, - "y": 1.0364 - }, - { - "l": "50.0", - "x": -0.23, - "y": 1.1577 - }, - { - "l": "50.0", - "x": -0.2108, - "y": 1.2898 - }, - { - "l": "50.0", - "x": -0.1916, - "y": 1.436 - }, - { - "l": "50.0", - "x": -0.1725, - "y": 1.605 - }, - { - "l": "50.0", - "x": -0.1533, - "y": 1.7993 - }, - { - "l": "50.0", - "x": -0.1342, - "y": 2.0156 - }, - { - "l": "50.0", - "x": -0.115, - "y": 2.2472 - }, - { - "l": "50.0", - "x": -0.0958, - "y": 2.486 - }, - { - "l": "50.0", - "x": -0.0767, - "y": 2.7257 - }, - { - "l": "50.0", - "x": -0.0575, - "y": 2.9594 - }, - { - "l": "50.0", - "x": -0.0383, - "y": 3.1778 - }, - { - "l": "50.0", - "x": -0.0192, - "y": 3.3769 - }, - { - "l": "50.0", - "x": -0.0, - "y": 3.5551 - }, - { - "l": "50.0", - "x": 0.0192, - "y": 3.7172 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 3.8702 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 3.8702 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": -0.3258, - "y": 0.6791 - }, - { - "l": "75.0", - "x": -0.3066, - "y": 0.7911 - }, - { - "l": "75.0", - "x": -0.2875, - "y": 0.9067 - }, - { - "l": "75.0", - "x": -0.2683, - "y": 1.0287 - }, - { - "l": "75.0", - "x": -0.2491, - "y": 1.1559 - }, - { - "l": "75.0", - "x": -0.23, - "y": 1.2937 - }, - { - "l": "75.0", - "x": -0.2108, - "y": 1.4436 - }, - { - "l": "75.0", - "x": -0.1916, - "y": 1.6089 - }, - { - "l": "75.0", - "x": -0.1725, - "y": 1.7989 - }, - { - "l": "75.0", - "x": -0.1533, - "y": 2.0156 - }, - { - "l": "75.0", - "x": -0.1342, - "y": 2.2544 - }, - { - "l": "75.0", - "x": -0.115, - "y": 2.5071 - }, - { - "l": "75.0", - "x": -0.0958, - "y": 2.7639 - }, - { - "l": "75.0", - "x": -0.0767, - "y": 3.0173 - }, - { - "l": "75.0", - "x": -0.0575, - "y": 3.2599 - }, - { - "l": "75.0", - "x": -0.0383, - "y": 3.4823 - }, - { - "l": "75.0", - "x": -0.0192, - "y": 3.6828 - }, - { - "l": "75.0", - "x": -0.0, - "y": 3.8625 - }, - { - "l": "75.0", - "x": 0.0192, - "y": 4.0278 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 4.1852 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 4.1852 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": -0.3258, - "y": 0.7427 - }, - { - "l": "91.0", - "x": -0.3066, - "y": 0.867 - }, - { - "l": "91.0", - "x": -0.2875, - "y": 0.9958 - }, - { - "l": "91.0", - "x": -0.2683, - "y": 1.1322 - }, - { - "l": "91.0", - "x": -0.2491, - "y": 1.2747 - }, - { - "l": "91.0", - "x": -0.23, - "y": 1.4292 - }, - { - "l": "91.0", - "x": -0.2108, - "y": 1.5971 - }, - { - "l": "91.0", - "x": -0.1916, - "y": 1.7818 - }, - { - "l": "91.0", - "x": -0.1725, - "y": 1.9933 - }, - { - "l": "91.0", - "x": -0.1533, - "y": 2.2329 - }, - { - "l": "91.0", - "x": -0.1342, - "y": 2.4949 - }, - { - "l": "91.0", - "x": -0.115, - "y": 2.7694 - }, - { - "l": "91.0", - "x": -0.0958, - "y": 3.0449 - }, - { - "l": "91.0", - "x": -0.0767, - "y": 3.3127 - }, - { - "l": "91.0", - "x": -0.0575, - "y": 3.5648 - }, - { - "l": "91.0", - "x": -0.0383, - "y": 3.7916 - }, - { - "l": "91.0", - "x": -0.0192, - "y": 3.9937 - }, - { - "l": "91.0", - "x": -0.0, - "y": 4.1753 - }, - { - "l": "91.0", - "x": 0.0192, - "y": 4.3443 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 4.5066 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 4.5066 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": -0.3258, - "y": 0.8056 - }, - { - "l": "98.0", - "x": -0.3066, - "y": 0.9421 - }, - { - "l": "98.0", - "x": -0.2875, - "y": 1.0841 - }, - { - "l": "98.0", - "x": -0.2683, - "y": 1.2349 - }, - { - "l": "98.0", - "x": -0.2491, - "y": 1.3927 - }, - { - "l": "98.0", - "x": -0.23, - "y": 1.5641 - }, - { - "l": "98.0", - "x": -0.2108, - "y": 1.7503 - }, - { - "l": "98.0", - "x": -0.1916, - "y": 1.9548 - }, - { - "l": "98.0", - "x": -0.1725, - "y": 2.1881 - }, - { - "l": "98.0", - "x": -0.1533, - "y": 2.4512 - }, - { - "l": "98.0", - "x": -0.1342, - "y": 2.7371 - }, - { - "l": "98.0", - "x": -0.115, - "y": 3.034 - }, - { - "l": "98.0", - "x": -0.0958, - "y": 3.3289 - }, - { - "l": "98.0", - "x": -0.0767, - "y": 3.6116 - }, - { - "l": "98.0", - "x": -0.0575, - "y": 3.8737 - }, - { - "l": "98.0", - "x": -0.0383, - "y": 4.1053 - }, - { - "l": "98.0", - "x": -0.0192, - "y": 4.3095 - }, - { - "l": "98.0", - "x": -0.0, - "y": 4.4933 - }, - { - "l": "98.0", - "x": 0.0192, - "y": 4.6663 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 4.8341 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 4.8341 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": -0.3258, - "y": 0.8677 - }, - { - "l": "99.6", - "x": -0.3066, - "y": 1.0164 - }, - { - "l": "99.6", - "x": -0.2875, - "y": 1.1717 - }, - { - "l": "99.6", - "x": -0.2683, - "y": 1.3369 - }, - { - "l": "99.6", - "x": -0.2491, - "y": 1.5102 - }, - { - "l": "99.6", - "x": -0.23, - "y": 1.6986 - }, - { - "l": "99.6", - "x": -0.2108, - "y": 1.9033 - }, - { - "l": "99.6", - "x": -0.1916, - "y": 2.1279 - }, - { - "l": "99.6", - "x": -0.1725, - "y": 2.3834 - }, - { - "l": "99.6", - "x": -0.1533, - "y": 2.6704 - }, - { - "l": "99.6", - "x": -0.1342, - "y": 2.9807 - }, - { - "l": "99.6", - "x": -0.115, - "y": 3.3006 - }, - { - "l": "99.6", - "x": -0.0958, - "y": 3.6156 - }, - { - "l": "99.6", - "x": -0.0767, - "y": 3.9137 - }, - { - "l": "99.6", - "x": -0.0575, - "y": 4.1864 - }, - { - "l": "99.6", - "x": -0.0383, - "y": 4.4233 - }, - { - "l": "99.6", - "x": -0.0192, - "y": 4.6299 - }, - { - "l": "99.6", - "x": -0.0, - "y": 4.8163 - }, - { - "l": "99.6", - "x": 0.0192, - "y": 4.9939 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 5.1674 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 5.1674 - } - ] - } - ], - "ofc": null, - "bmi": null - }, - "female": null - } - }, - { - "uk_who_infant": { - "male": { - "height": null, - "weight": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 0.0383, - "y": 2.5238 - }, - { - "l": "0.4", - "x": 0.0575, - "y": 2.7606 - }, - { - "l": "0.4", - "x": 0.0767, - "y": 2.9987 - }, - { - "l": "0.4", - "x": 0.0958, - "y": 3.2276 - }, - { - "l": "0.4", - "x": 0.115, - "y": 3.4427 - }, - { - "l": "0.4", - "x": 0.1342, - "y": 3.6441 - }, - { - "l": "0.4", - "x": 0.1533, - "y": 3.8326 - }, - { - "l": "0.4", - "x": 0.1725, - "y": 4.0093 - }, - { - "l": "0.4", - "x": 0.1916, - "y": 4.1755 - }, - { - "l": "0.4", - "x": 0.2108, - "y": 4.3317 - }, - { - "l": "0.4", - "x": 0.23, - "y": 4.4785 - }, - { - "l": "0.4", - "x": 0.2491, - "y": 4.617 - }, - { - "l": "0.4", - "x": 0.2683, - "y": 4.7466 - }, - { - "l": "0.4", - "x": 0.2875, - "y": 4.8698 - }, - { - "l": "0.4", - "x": 0.3066, - "y": 4.9871 - }, - { - "l": "0.4", - "x": 0.3258, - "y": 5.0984 - }, - { - "l": "0.4", - "x": 0.345, - "y": 5.2041 - }, - { - "l": "0.4", - "x": 0.3641, - "y": 5.3043 - }, - { - "l": "0.4", - "x": 0.3833, - "y": 5.3995 - }, - { - "l": "0.4", - "x": 0.4025, - "y": 5.4901 - }, - { - "l": "0.4", - "x": 0.4216, - "y": 5.5763 - }, - { - "l": "0.4", - "x": 0.4408, - "y": 5.6588 - }, - { - "l": "0.4", - "x": 0.46, - "y": 5.7375 - }, - { - "l": "0.4", - "x": 0.4791, - "y": 5.8128 - }, - { - "l": "0.4", - "x": 0.4983, - "y": 5.8848 - }, - { - "l": "0.4", - "x": 0.5175, - "y": 5.9543 - }, - { - "l": "0.4", - "x": 0.5366, - "y": 6.021 - }, - { - "l": "0.4", - "x": 0.5558, - "y": 6.0853 - }, - { - "l": "0.4", - "x": 0.5749, - "y": 6.1472 - }, - { - "l": "0.4", - "x": 0.5941, - "y": 6.207 - }, - { - "l": "0.4", - "x": 0.6133, - "y": 6.2649 - }, - { - "l": "0.4", - "x": 0.6324, - "y": 6.321 - }, - { - "l": "0.4", - "x": 0.6516, - "y": 6.3753 - }, - { - "l": "0.4", - "x": 0.6708, - "y": 6.4282 - }, - { - "l": "0.4", - "x": 0.6899, - "y": 6.4798 - }, - { - "l": "0.4", - "x": 0.7091, - "y": 6.5301 - }, - { - "l": "0.4", - "x": 0.7283, - "y": 6.5791 - }, - { - "l": "0.4", - "x": 0.7474, - "y": 6.6271 - }, - { - "l": "0.4", - "x": 0.7666, - "y": 6.6741 - }, - { - "l": "0.4", - "x": 0.7858, - "y": 6.7201 - }, - { - "l": "0.4", - "x": 0.8049, - "y": 6.7653 - }, - { - "l": "0.4", - "x": 0.8241, - "y": 6.8097 - }, - { - "l": "0.4", - "x": 0.8433, - "y": 6.8533 - }, - { - "l": "0.4", - "x": 0.8624, - "y": 6.8964 - }, - { - "l": "0.4", - "x": 0.8816, - "y": 6.9388 - }, - { - "l": "0.4", - "x": 0.9008, - "y": 6.9807 - }, - { - "l": "0.4", - "x": 0.9199, - "y": 7.022 - }, - { - "l": "0.4", - "x": 0.9391, - "y": 7.0628 - }, - { - "l": "0.4", - "x": 0.9582, - "y": 7.1032 - }, - { - "l": "0.4", - "x": 0.9774, - "y": 7.1431 - }, - { - "l": "0.4", - "x": 0.9966, - "y": 7.1826 - }, - { - "l": "0.4", - "x": 1.0157, - "y": 7.2217 - }, - { - "l": "0.4", - "x": 1.0349, - "y": 7.2604 - }, - { - "l": "0.4", - "x": 1.0541, - "y": 7.2987 - }, - { - "l": "0.4", - "x": 1.0732, - "y": 7.3367 - }, - { - "l": "0.4", - "x": 1.0924, - "y": 7.3744 - }, - { - "l": "0.4", - "x": 1.1116, - "y": 7.4118 - }, - { - "l": "0.4", - "x": 1.1307, - "y": 7.4489 - }, - { - "l": "0.4", - "x": 1.1499, - "y": 7.4858 - }, - { - "l": "0.4", - "x": 1.1691, - "y": 7.5223 - }, - { - "l": "0.4", - "x": 1.1882, - "y": 7.5587 - }, - { - "l": "0.4", - "x": 1.2074, - "y": 7.5948 - }, - { - "l": "0.4", - "x": 1.2266, - "y": 7.6307 - }, - { - "l": "0.4", - "x": 1.2457, - "y": 7.6664 - }, - { - "l": "0.4", - "x": 1.2649, - "y": 7.7019 - }, - { - "l": "0.4", - "x": 1.2841, - "y": 7.7372 - }, - { - "l": "0.4", - "x": 1.3032, - "y": 7.7724 - }, - { - "l": "0.4", - "x": 1.3224, - "y": 7.8074 - }, - { - "l": "0.4", - "x": 1.3415, - "y": 7.8422 - }, - { - "l": "0.4", - "x": 1.3607, - "y": 7.8769 - }, - { - "l": "0.4", - "x": 1.3799, - "y": 7.9113 - }, - { - "l": "0.4", - "x": 1.399, - "y": 7.9457 - }, - { - "l": "0.4", - "x": 1.4182, - "y": 7.9798 - }, - { - "l": "0.4", - "x": 1.4374, - "y": 8.0139 - }, - { - "l": "0.4", - "x": 1.4565, - "y": 8.0478 - }, - { - "l": "0.4", - "x": 1.4757, - "y": 8.0816 - }, - { - "l": "0.4", - "x": 1.4949, - "y": 8.1152 - }, - { - "l": "0.4", - "x": 1.514, - "y": 8.1487 - }, - { - "l": "0.4", - "x": 1.5332, - "y": 8.182 - }, - { - "l": "0.4", - "x": 1.5524, - "y": 8.2151 - }, - { - "l": "0.4", - "x": 1.5715, - "y": 8.2481 - }, - { - "l": "0.4", - "x": 1.5907, - "y": 8.2811 - }, - { - "l": "0.4", - "x": 1.6099, - "y": 8.314 - }, - { - "l": "0.4", - "x": 1.629, - "y": 8.3468 - }, - { - "l": "0.4", - "x": 1.6482, - "y": 8.3795 - }, - { - "l": "0.4", - "x": 1.6674, - "y": 8.4121 - }, - { - "l": "0.4", - "x": 1.6865, - "y": 8.4446 - }, - { - "l": "0.4", - "x": 1.7057, - "y": 8.4771 - }, - { - "l": "0.4", - "x": 1.7248, - "y": 8.5094 - }, - { - "l": "0.4", - "x": 1.744, - "y": 8.5417 - }, - { - "l": "0.4", - "x": 1.7632, - "y": 8.5739 - }, - { - "l": "0.4", - "x": 1.7823, - "y": 8.6061 - }, - { - "l": "0.4", - "x": 1.8015, - "y": 8.6381 - }, - { - "l": "0.4", - "x": 1.8207, - "y": 8.6701 - }, - { - "l": "0.4", - "x": 1.8398, - "y": 8.702 - }, - { - "l": "0.4", - "x": 1.859, - "y": 8.7338 - }, - { - "l": "0.4", - "x": 1.8782, - "y": 8.7656 - }, - { - "l": "0.4", - "x": 1.8973, - "y": 8.7972 - }, - { - "l": "0.4", - "x": 1.9165, - "y": 8.8288 - }, - { - "l": "0.4", - "x": 1.9357, - "y": 8.8603 - }, - { - "l": "0.4", - "x": 1.9548, - "y": 8.8917 - }, - { - "l": "0.4", - "x": 1.974, - "y": 8.923 - }, - { - "l": "0.4", - "x": 1.9932, - "y": 8.9544 - }, - { - "l": "0.4", - "x": 2.0, - "y": 8.9656 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 0.0383, - "y": 2.7978 - }, - { - "l": "2.0", - "x": 0.0575, - "y": 3.0507 - }, - { - "l": "2.0", - "x": 0.0767, - "y": 3.3045 - }, - { - "l": "2.0", - "x": 0.0958, - "y": 3.5479 - }, - { - "l": "2.0", - "x": 0.115, - "y": 3.7761 - }, - { - "l": "2.0", - "x": 0.1342, - "y": 3.9891 - }, - { - "l": "2.0", - "x": 0.1533, - "y": 4.188 - }, - { - "l": "2.0", - "x": 0.1725, - "y": 4.3742 - }, - { - "l": "2.0", - "x": 0.1916, - "y": 4.5489 - }, - { - "l": "2.0", - "x": 0.2108, - "y": 4.7129 - }, - { - "l": "2.0", - "x": 0.23, - "y": 4.867 - }, - { - "l": "2.0", - "x": 0.2491, - "y": 5.0122 - }, - { - "l": "2.0", - "x": 0.2683, - "y": 5.1482 - }, - { - "l": "2.0", - "x": 0.2875, - "y": 5.2775 - }, - { - "l": "2.0", - "x": 0.3066, - "y": 5.4004 - }, - { - "l": "2.0", - "x": 0.3258, - "y": 5.5171 - }, - { - "l": "2.0", - "x": 0.345, - "y": 5.628 - }, - { - "l": "2.0", - "x": 0.3641, - "y": 5.7334 - }, - { - "l": "2.0", - "x": 0.3833, - "y": 5.8336 - }, - { - "l": "2.0", - "x": 0.4025, - "y": 5.9289 - }, - { - "l": "2.0", - "x": 0.4216, - "y": 6.0199 - }, - { - "l": "2.0", - "x": 0.4408, - "y": 6.107 - }, - { - "l": "2.0", - "x": 0.46, - "y": 6.1902 - }, - { - "l": "2.0", - "x": 0.4791, - "y": 6.2699 - }, - { - "l": "2.0", - "x": 0.4983, - "y": 6.3463 - }, - { - "l": "2.0", - "x": 0.5175, - "y": 6.42 - }, - { - "l": "2.0", - "x": 0.5366, - "y": 6.4909 - }, - { - "l": "2.0", - "x": 0.5558, - "y": 6.5593 - }, - { - "l": "2.0", - "x": 0.5749, - "y": 6.6252 - }, - { - "l": "2.0", - "x": 0.5941, - "y": 6.6889 - }, - { - "l": "2.0", - "x": 0.6133, - "y": 6.7507 - }, - { - "l": "2.0", - "x": 0.6324, - "y": 6.8105 - }, - { - "l": "2.0", - "x": 0.6516, - "y": 6.8686 - }, - { - "l": "2.0", - "x": 0.6708, - "y": 6.9251 - }, - { - "l": "2.0", - "x": 0.6899, - "y": 6.9803 - }, - { - "l": "2.0", - "x": 0.7091, - "y": 7.0341 - }, - { - "l": "2.0", - "x": 0.7283, - "y": 7.0867 - }, - { - "l": "2.0", - "x": 0.7474, - "y": 7.138 - }, - { - "l": "2.0", - "x": 0.7666, - "y": 7.1884 - }, - { - "l": "2.0", - "x": 0.7858, - "y": 7.2378 - }, - { - "l": "2.0", - "x": 0.8049, - "y": 7.2863 - }, - { - "l": "2.0", - "x": 0.8241, - "y": 7.3339 - }, - { - "l": "2.0", - "x": 0.8433, - "y": 7.3808 - }, - { - "l": "2.0", - "x": 0.8624, - "y": 7.427 - }, - { - "l": "2.0", - "x": 0.8816, - "y": 7.4726 - }, - { - "l": "2.0", - "x": 0.9008, - "y": 7.5175 - }, - { - "l": "2.0", - "x": 0.9199, - "y": 7.5619 - }, - { - "l": "2.0", - "x": 0.9391, - "y": 7.6058 - }, - { - "l": "2.0", - "x": 0.9582, - "y": 7.6492 - }, - { - "l": "2.0", - "x": 0.9774, - "y": 7.6922 - }, - { - "l": "2.0", - "x": 0.9966, - "y": 7.7347 - }, - { - "l": "2.0", - "x": 1.0157, - "y": 7.7767 - }, - { - "l": "2.0", - "x": 1.0349, - "y": 7.8184 - }, - { - "l": "2.0", - "x": 1.0541, - "y": 7.8597 - }, - { - "l": "2.0", - "x": 1.0732, - "y": 7.9007 - }, - { - "l": "2.0", - "x": 1.0924, - "y": 7.9413 - }, - { - "l": "2.0", - "x": 1.1116, - "y": 7.9816 - }, - { - "l": "2.0", - "x": 1.1307, - "y": 8.0217 - }, - { - "l": "2.0", - "x": 1.1499, - "y": 8.0614 - }, - { - "l": "2.0", - "x": 1.1691, - "y": 8.1009 - }, - { - "l": "2.0", - "x": 1.1882, - "y": 8.1402 - }, - { - "l": "2.0", - "x": 1.2074, - "y": 8.1792 - }, - { - "l": "2.0", - "x": 1.2266, - "y": 8.218 - }, - { - "l": "2.0", - "x": 1.2457, - "y": 8.2565 - }, - { - "l": "2.0", - "x": 1.2649, - "y": 8.295 - }, - { - "l": "2.0", - "x": 1.2841, - "y": 8.3332 - }, - { - "l": "2.0", - "x": 1.3032, - "y": 8.3713 - }, - { - "l": "2.0", - "x": 1.3224, - "y": 8.4092 - }, - { - "l": "2.0", - "x": 1.3415, - "y": 8.4469 - }, - { - "l": "2.0", - "x": 1.3607, - "y": 8.4844 - }, - { - "l": "2.0", - "x": 1.3799, - "y": 8.5218 - }, - { - "l": "2.0", - "x": 1.399, - "y": 8.559 - }, - { - "l": "2.0", - "x": 1.4182, - "y": 8.5961 - }, - { - "l": "2.0", - "x": 1.4374, - "y": 8.6331 - }, - { - "l": "2.0", - "x": 1.4565, - "y": 8.6699 - }, - { - "l": "2.0", - "x": 1.4757, - "y": 8.7066 - }, - { - "l": "2.0", - "x": 1.4949, - "y": 8.7431 - }, - { - "l": "2.0", - "x": 1.514, - "y": 8.7795 - }, - { - "l": "2.0", - "x": 1.5332, - "y": 8.8157 - }, - { - "l": "2.0", - "x": 1.5524, - "y": 8.8518 - }, - { - "l": "2.0", - "x": 1.5715, - "y": 8.8878 - }, - { - "l": "2.0", - "x": 1.5907, - "y": 8.9237 - }, - { - "l": "2.0", - "x": 1.6099, - "y": 8.9595 - }, - { - "l": "2.0", - "x": 1.629, - "y": 8.9952 - }, - { - "l": "2.0", - "x": 1.6482, - "y": 9.0309 - }, - { - "l": "2.0", - "x": 1.6674, - "y": 9.0665 - }, - { - "l": "2.0", - "x": 1.6865, - "y": 9.102 - }, - { - "l": "2.0", - "x": 1.7057, - "y": 9.1374 - }, - { - "l": "2.0", - "x": 1.7248, - "y": 9.1728 - }, - { - "l": "2.0", - "x": 1.744, - "y": 9.208 - }, - { - "l": "2.0", - "x": 1.7632, - "y": 9.2432 - }, - { - "l": "2.0", - "x": 1.7823, - "y": 9.2784 - }, - { - "l": "2.0", - "x": 1.8015, - "y": 9.3135 - }, - { - "l": "2.0", - "x": 1.8207, - "y": 9.3485 - }, - { - "l": "2.0", - "x": 1.8398, - "y": 9.3834 - }, - { - "l": "2.0", - "x": 1.859, - "y": 9.4183 - }, - { - "l": "2.0", - "x": 1.8782, - "y": 9.4531 - }, - { - "l": "2.0", - "x": 1.8973, - "y": 9.4878 - }, - { - "l": "2.0", - "x": 1.9165, - "y": 9.5224 - }, - { - "l": "2.0", - "x": 1.9357, - "y": 9.5569 - }, - { - "l": "2.0", - "x": 1.9548, - "y": 9.5914 - }, - { - "l": "2.0", - "x": 1.974, - "y": 9.6258 - }, - { - "l": "2.0", - "x": 1.9932, - "y": 9.6602 - }, - { - "l": "2.0", - "x": 2.0, - "y": 9.6725 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 0.0383, - "y": 3.0933 - }, - { - "l": "9.0", - "x": 0.0575, - "y": 3.3632 - }, - { - "l": "9.0", - "x": 0.0767, - "y": 3.6337 - }, - { - "l": "9.0", - "x": 0.0958, - "y": 3.8924 - }, - { - "l": "9.0", - "x": 0.115, - "y": 4.1342 - }, - { - "l": "9.0", - "x": 0.1342, - "y": 4.3594 - }, - { - "l": "9.0", - "x": 0.1533, - "y": 4.5693 - }, - { - "l": "9.0", - "x": 0.1725, - "y": 4.7653 - }, - { - "l": "9.0", - "x": 0.1916, - "y": 4.9489 - }, - { - "l": "9.0", - "x": 0.2108, - "y": 5.1211 - }, - { - "l": "9.0", - "x": 0.23, - "y": 5.2827 - }, - { - "l": "9.0", - "x": 0.2491, - "y": 5.4349 - }, - { - "l": "9.0", - "x": 0.2683, - "y": 5.5777 - }, - { - "l": "9.0", - "x": 0.2875, - "y": 5.7133 - }, - { - "l": "9.0", - "x": 0.3066, - "y": 5.8421 - }, - { - "l": "9.0", - "x": 0.3258, - "y": 5.9644 - }, - { - "l": "9.0", - "x": 0.345, - "y": 6.0808 - }, - { - "l": "9.0", - "x": 0.3641, - "y": 6.1916 - }, - { - "l": "9.0", - "x": 0.3833, - "y": 6.297 - }, - { - "l": "9.0", - "x": 0.4025, - "y": 6.3975 - }, - { - "l": "9.0", - "x": 0.4216, - "y": 6.4935 - }, - { - "l": "9.0", - "x": 0.4408, - "y": 6.5855 - }, - { - "l": "9.0", - "x": 0.46, - "y": 6.6736 - }, - { - "l": "9.0", - "x": 0.4791, - "y": 6.7581 - }, - { - "l": "9.0", - "x": 0.4983, - "y": 6.8391 - }, - { - "l": "9.0", - "x": 0.5175, - "y": 6.9174 - }, - { - "l": "9.0", - "x": 0.5366, - "y": 6.9928 - }, - { - "l": "9.0", - "x": 0.5558, - "y": 7.0656 - }, - { - "l": "9.0", - "x": 0.5749, - "y": 7.1358 - }, - { - "l": "9.0", - "x": 0.5941, - "y": 7.2038 - }, - { - "l": "9.0", - "x": 0.6133, - "y": 7.2698 - }, - { - "l": "9.0", - "x": 0.6324, - "y": 7.3337 - }, - { - "l": "9.0", - "x": 0.6516, - "y": 7.3958 - }, - { - "l": "9.0", - "x": 0.6708, - "y": 7.4563 - }, - { - "l": "9.0", - "x": 0.6899, - "y": 7.5154 - }, - { - "l": "9.0", - "x": 0.7091, - "y": 7.5731 - }, - { - "l": "9.0", - "x": 0.7283, - "y": 7.6294 - }, - { - "l": "9.0", - "x": 0.7474, - "y": 7.6845 - }, - { - "l": "9.0", - "x": 0.7666, - "y": 7.7386 - }, - { - "l": "9.0", - "x": 0.7858, - "y": 7.7916 - }, - { - "l": "9.0", - "x": 0.8049, - "y": 7.8437 - }, - { - "l": "9.0", - "x": 0.8241, - "y": 7.8949 - }, - { - "l": "9.0", - "x": 0.8433, - "y": 7.9453 - }, - { - "l": "9.0", - "x": 0.8624, - "y": 7.995 - }, - { - "l": "9.0", - "x": 0.8816, - "y": 8.044 - }, - { - "l": "9.0", - "x": 0.9008, - "y": 8.0924 - }, - { - "l": "9.0", - "x": 0.9199, - "y": 8.1401 - }, - { - "l": "9.0", - "x": 0.9391, - "y": 8.1874 - }, - { - "l": "9.0", - "x": 0.9582, - "y": 8.2342 - }, - { - "l": "9.0", - "x": 0.9774, - "y": 8.2804 - }, - { - "l": "9.0", - "x": 0.9966, - "y": 8.3262 - }, - { - "l": "9.0", - "x": 1.0157, - "y": 8.3716 - }, - { - "l": "9.0", - "x": 1.0349, - "y": 8.4165 - }, - { - "l": "9.0", - "x": 1.0541, - "y": 8.4611 - }, - { - "l": "9.0", - "x": 1.0732, - "y": 8.5053 - }, - { - "l": "9.0", - "x": 1.0924, - "y": 8.5492 - }, - { - "l": "9.0", - "x": 1.1116, - "y": 8.5927 - }, - { - "l": "9.0", - "x": 1.1307, - "y": 8.636 - }, - { - "l": "9.0", - "x": 1.1499, - "y": 8.679 - }, - { - "l": "9.0", - "x": 1.1691, - "y": 8.7217 - }, - { - "l": "9.0", - "x": 1.1882, - "y": 8.7641 - }, - { - "l": "9.0", - "x": 1.2074, - "y": 8.8063 - }, - { - "l": "9.0", - "x": 1.2266, - "y": 8.8483 - }, - { - "l": "9.0", - "x": 1.2457, - "y": 8.8901 - }, - { - "l": "9.0", - "x": 1.2649, - "y": 8.9317 - }, - { - "l": "9.0", - "x": 1.2841, - "y": 8.9732 - }, - { - "l": "9.0", - "x": 1.3032, - "y": 9.0144 - }, - { - "l": "9.0", - "x": 1.3224, - "y": 9.0555 - }, - { - "l": "9.0", - "x": 1.3415, - "y": 9.0965 - }, - { - "l": "9.0", - "x": 1.3607, - "y": 9.1372 - }, - { - "l": "9.0", - "x": 1.3799, - "y": 9.1778 - }, - { - "l": "9.0", - "x": 1.399, - "y": 9.2183 - }, - { - "l": "9.0", - "x": 1.4182, - "y": 9.2586 - }, - { - "l": "9.0", - "x": 1.4374, - "y": 9.2988 - }, - { - "l": "9.0", - "x": 1.4565, - "y": 9.3388 - }, - { - "l": "9.0", - "x": 1.4757, - "y": 9.3787 - }, - { - "l": "9.0", - "x": 1.4949, - "y": 9.4185 - }, - { - "l": "9.0", - "x": 1.514, - "y": 9.4581 - }, - { - "l": "9.0", - "x": 1.5332, - "y": 9.4976 - }, - { - "l": "9.0", - "x": 1.5524, - "y": 9.5369 - }, - { - "l": "9.0", - "x": 1.5715, - "y": 9.5762 - }, - { - "l": "9.0", - "x": 1.5907, - "y": 9.6153 - }, - { - "l": "9.0", - "x": 1.6099, - "y": 9.6544 - }, - { - "l": "9.0", - "x": 1.629, - "y": 9.6935 - }, - { - "l": "9.0", - "x": 1.6482, - "y": 9.7324 - }, - { - "l": "9.0", - "x": 1.6674, - "y": 9.7713 - }, - { - "l": "9.0", - "x": 1.6865, - "y": 9.8101 - }, - { - "l": "9.0", - "x": 1.7057, - "y": 9.8488 - }, - { - "l": "9.0", - "x": 1.7248, - "y": 9.8875 - }, - { - "l": "9.0", - "x": 1.744, - "y": 9.9261 - }, - { - "l": "9.0", - "x": 1.7632, - "y": 9.9647 - }, - { - "l": "9.0", - "x": 1.7823, - "y": 10.0032 - }, - { - "l": "9.0", - "x": 1.8015, - "y": 10.0416 - }, - { - "l": "9.0", - "x": 1.8207, - "y": 10.08 - }, - { - "l": "9.0", - "x": 1.8398, - "y": 10.1184 - }, - { - "l": "9.0", - "x": 1.859, - "y": 10.1566 - }, - { - "l": "9.0", - "x": 1.8782, - "y": 10.1948 - }, - { - "l": "9.0", - "x": 1.8973, - "y": 10.2329 - }, - { - "l": "9.0", - "x": 1.9165, - "y": 10.271 - }, - { - "l": "9.0", - "x": 1.9357, - "y": 10.3089 - }, - { - "l": "9.0", - "x": 1.9548, - "y": 10.3468 - }, - { - "l": "9.0", - "x": 1.974, - "y": 10.3847 - }, - { - "l": "9.0", - "x": 1.9932, - "y": 10.4225 - }, - { - "l": "9.0", - "x": 2.0, - "y": 10.436 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 0.0383, - "y": 3.4113 - }, - { - "l": "25.0", - "x": 0.0575, - "y": 3.6994 - }, - { - "l": "25.0", - "x": 0.0767, - "y": 3.9875 - }, - { - "l": "25.0", - "x": 0.0958, - "y": 4.2624 - }, - { - "l": "25.0", - "x": 0.115, - "y": 4.5185 - }, - { - "l": "25.0", - "x": 0.1342, - "y": 4.7565 - }, - { - "l": "25.0", - "x": 0.1533, - "y": 4.9778 - }, - { - "l": "25.0", - "x": 0.1725, - "y": 5.184 - }, - { - "l": "25.0", - "x": 0.1916, - "y": 5.377 - }, - { - "l": "25.0", - "x": 0.2108, - "y": 5.5577 - }, - { - "l": "25.0", - "x": 0.23, - "y": 5.7272 - }, - { - "l": "25.0", - "x": 0.2491, - "y": 5.8867 - }, - { - "l": "25.0", - "x": 0.2683, - "y": 6.0365 - }, - { - "l": "25.0", - "x": 0.2875, - "y": 6.1787 - }, - { - "l": "25.0", - "x": 0.3066, - "y": 6.3137 - }, - { - "l": "25.0", - "x": 0.3258, - "y": 6.4419 - }, - { - "l": "25.0", - "x": 0.345, - "y": 6.5641 - }, - { - "l": "25.0", - "x": 0.3641, - "y": 6.6806 - }, - { - "l": "25.0", - "x": 0.3833, - "y": 6.7916 - }, - { - "l": "25.0", - "x": 0.4025, - "y": 6.8976 - }, - { - "l": "25.0", - "x": 0.4216, - "y": 6.9989 - }, - { - "l": "25.0", - "x": 0.4408, - "y": 7.0962 - }, - { - "l": "25.0", - "x": 0.46, - "y": 7.1895 - }, - { - "l": "25.0", - "x": 0.4791, - "y": 7.279 - }, - { - "l": "25.0", - "x": 0.4983, - "y": 7.365 - }, - { - "l": "25.0", - "x": 0.5175, - "y": 7.4483 - }, - { - "l": "25.0", - "x": 0.5366, - "y": 7.5285 - }, - { - "l": "25.0", - "x": 0.5558, - "y": 7.6061 - }, - { - "l": "25.0", - "x": 0.5749, - "y": 7.681 - }, - { - "l": "25.0", - "x": 0.5941, - "y": 7.7536 - }, - { - "l": "25.0", - "x": 0.6133, - "y": 7.8241 - }, - { - "l": "25.0", - "x": 0.6324, - "y": 7.8925 - }, - { - "l": "25.0", - "x": 0.6516, - "y": 7.959 - }, - { - "l": "25.0", - "x": 0.6708, - "y": 8.0238 - }, - { - "l": "25.0", - "x": 0.6899, - "y": 8.0872 - }, - { - "l": "25.0", - "x": 0.7091, - "y": 8.149 - }, - { - "l": "25.0", - "x": 0.7283, - "y": 8.2095 - }, - { - "l": "25.0", - "x": 0.7474, - "y": 8.2687 - }, - { - "l": "25.0", - "x": 0.7666, - "y": 8.3268 - }, - { - "l": "25.0", - "x": 0.7858, - "y": 8.3838 - }, - { - "l": "25.0", - "x": 0.8049, - "y": 8.4399 - }, - { - "l": "25.0", - "x": 0.8241, - "y": 8.4949 - }, - { - "l": "25.0", - "x": 0.8433, - "y": 8.5492 - }, - { - "l": "25.0", - "x": 0.8624, - "y": 8.6028 - }, - { - "l": "25.0", - "x": 0.8816, - "y": 8.6556 - }, - { - "l": "25.0", - "x": 0.9008, - "y": 8.7077 - }, - { - "l": "25.0", - "x": 0.9199, - "y": 8.7592 - }, - { - "l": "25.0", - "x": 0.9391, - "y": 8.8101 - }, - { - "l": "25.0", - "x": 0.9582, - "y": 8.8606 - }, - { - "l": "25.0", - "x": 0.9774, - "y": 8.9105 - }, - { - "l": "25.0", - "x": 0.9966, - "y": 8.9599 - }, - { - "l": "25.0", - "x": 1.0157, - "y": 9.0089 - }, - { - "l": "25.0", - "x": 1.0349, - "y": 9.0574 - }, - { - "l": "25.0", - "x": 1.0541, - "y": 9.1056 - }, - { - "l": "25.0", - "x": 1.0732, - "y": 9.1534 - }, - { - "l": "25.0", - "x": 1.0924, - "y": 9.2008 - }, - { - "l": "25.0", - "x": 1.1116, - "y": 9.2479 - }, - { - "l": "25.0", - "x": 1.1307, - "y": 9.2947 - }, - { - "l": "25.0", - "x": 1.1499, - "y": 9.3413 - }, - { - "l": "25.0", - "x": 1.1691, - "y": 9.3875 - }, - { - "l": "25.0", - "x": 1.1882, - "y": 9.4335 - }, - { - "l": "25.0", - "x": 1.2074, - "y": 9.4793 - }, - { - "l": "25.0", - "x": 1.2266, - "y": 9.5248 - }, - { - "l": "25.0", - "x": 1.2457, - "y": 9.5701 - }, - { - "l": "25.0", - "x": 1.2649, - "y": 9.6153 - }, - { - "l": "25.0", - "x": 1.2841, - "y": 9.6603 - }, - { - "l": "25.0", - "x": 1.3032, - "y": 9.7051 - }, - { - "l": "25.0", - "x": 1.3224, - "y": 9.7497 - }, - { - "l": "25.0", - "x": 1.3415, - "y": 9.7942 - }, - { - "l": "25.0", - "x": 1.3607, - "y": 9.8385 - }, - { - "l": "25.0", - "x": 1.3799, - "y": 9.8827 - }, - { - "l": "25.0", - "x": 1.399, - "y": 9.9267 - }, - { - "l": "25.0", - "x": 1.4182, - "y": 9.9706 - }, - { - "l": "25.0", - "x": 1.4374, - "y": 10.0143 - }, - { - "l": "25.0", - "x": 1.4565, - "y": 10.058 - }, - { - "l": "25.0", - "x": 1.4757, - "y": 10.1014 - }, - { - "l": "25.0", - "x": 1.4949, - "y": 10.1448 - }, - { - "l": "25.0", - "x": 1.514, - "y": 10.188 - }, - { - "l": "25.0", - "x": 1.5332, - "y": 10.2311 - }, - { - "l": "25.0", - "x": 1.5524, - "y": 10.2741 - }, - { - "l": "25.0", - "x": 1.5715, - "y": 10.317 - }, - { - "l": "25.0", - "x": 1.5907, - "y": 10.3598 - }, - { - "l": "25.0", - "x": 1.6099, - "y": 10.4025 - }, - { - "l": "25.0", - "x": 1.629, - "y": 10.4452 - }, - { - "l": "25.0", - "x": 1.6482, - "y": 10.4878 - }, - { - "l": "25.0", - "x": 1.6674, - "y": 10.5304 - }, - { - "l": "25.0", - "x": 1.6865, - "y": 10.5729 - }, - { - "l": "25.0", - "x": 1.7057, - "y": 10.6153 - }, - { - "l": "25.0", - "x": 1.7248, - "y": 10.6577 - }, - { - "l": "25.0", - "x": 1.744, - "y": 10.7 - }, - { - "l": "25.0", - "x": 1.7632, - "y": 10.7423 - }, - { - "l": "25.0", - "x": 1.7823, - "y": 10.7846 - }, - { - "l": "25.0", - "x": 1.8015, - "y": 10.8268 - }, - { - "l": "25.0", - "x": 1.8207, - "y": 10.869 - }, - { - "l": "25.0", - "x": 1.8398, - "y": 10.9111 - }, - { - "l": "25.0", - "x": 1.859, - "y": 10.9531 - }, - { - "l": "25.0", - "x": 1.8782, - "y": 10.9951 - }, - { - "l": "25.0", - "x": 1.8973, - "y": 11.0371 - }, - { - "l": "25.0", - "x": 1.9165, - "y": 11.0789 - }, - { - "l": "25.0", - "x": 1.9357, - "y": 11.1207 - }, - { - "l": "25.0", - "x": 1.9548, - "y": 11.1624 - }, - { - "l": "25.0", - "x": 1.974, - "y": 11.2041 - }, - { - "l": "25.0", - "x": 1.9932, - "y": 11.2458 - }, - { - "l": "25.0", - "x": 2.0, - "y": 11.2607 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 0.0383, - "y": 3.7529 - }, - { - "l": "50.0", - "x": 0.0575, - "y": 4.0603 - }, - { - "l": "50.0", - "x": 0.0767, - "y": 4.3671 - }, - { - "l": "50.0", - "x": 0.0958, - "y": 4.659 - }, - { - "l": "50.0", - "x": 0.115, - "y": 4.9303 - }, - { - "l": "50.0", - "x": 0.1342, - "y": 5.1817 - }, - { - "l": "50.0", - "x": 0.1533, - "y": 5.4149 - }, - { - "l": "50.0", - "x": 0.1725, - "y": 5.6319 - }, - { - "l": "50.0", - "x": 0.1916, - "y": 5.8346 - }, - { - "l": "50.0", - "x": 0.2108, - "y": 6.0242 - }, - { - "l": "50.0", - "x": 0.23, - "y": 6.2019 - }, - { - "l": "50.0", - "x": 0.2491, - "y": 6.369 - }, - { - "l": "50.0", - "x": 0.2683, - "y": 6.5262 - }, - { - "l": "50.0", - "x": 0.2875, - "y": 6.6753 - }, - { - "l": "50.0", - "x": 0.3066, - "y": 6.8168 - }, - { - "l": "50.0", - "x": 0.3258, - "y": 6.9513 - }, - { - "l": "50.0", - "x": 0.345, - "y": 7.0796 - }, - { - "l": "50.0", - "x": 0.3641, - "y": 7.2021 - }, - { - "l": "50.0", - "x": 0.3833, - "y": 7.319 - }, - { - "l": "50.0", - "x": 0.4025, - "y": 7.4308 - }, - { - "l": "50.0", - "x": 0.4216, - "y": 7.5379 - }, - { - "l": "50.0", - "x": 0.4408, - "y": 7.6408 - }, - { - "l": "50.0", - "x": 0.46, - "y": 7.7396 - }, - { - "l": "50.0", - "x": 0.4791, - "y": 7.8345 - }, - { - "l": "50.0", - "x": 0.4983, - "y": 7.926 - }, - { - "l": "50.0", - "x": 0.5175, - "y": 8.0145 - }, - { - "l": "50.0", - "x": 0.5366, - "y": 8.1 - }, - { - "l": "50.0", - "x": 0.5558, - "y": 8.1827 - }, - { - "l": "50.0", - "x": 0.5749, - "y": 8.2628 - }, - { - "l": "50.0", - "x": 0.5941, - "y": 8.3404 - }, - { - "l": "50.0", - "x": 0.6133, - "y": 8.4158 - }, - { - "l": "50.0", - "x": 0.6324, - "y": 8.4891 - }, - { - "l": "50.0", - "x": 0.6516, - "y": 8.5604 - }, - { - "l": "50.0", - "x": 0.6708, - "y": 8.6299 - }, - { - "l": "50.0", - "x": 0.6899, - "y": 8.6979 - }, - { - "l": "50.0", - "x": 0.7091, - "y": 8.7643 - }, - { - "l": "50.0", - "x": 0.7283, - "y": 8.8293 - }, - { - "l": "50.0", - "x": 0.7474, - "y": 8.893 - }, - { - "l": "50.0", - "x": 0.7666, - "y": 8.9555 - }, - { - "l": "50.0", - "x": 0.7858, - "y": 9.0169 - }, - { - "l": "50.0", - "x": 0.8049, - "y": 9.0772 - }, - { - "l": "50.0", - "x": 0.8241, - "y": 9.1366 - }, - { - "l": "50.0", - "x": 0.8433, - "y": 9.1951 - }, - { - "l": "50.0", - "x": 0.8624, - "y": 9.2528 - }, - { - "l": "50.0", - "x": 0.8816, - "y": 9.3098 - }, - { - "l": "50.0", - "x": 0.9008, - "y": 9.366 - }, - { - "l": "50.0", - "x": 0.9199, - "y": 9.4216 - }, - { - "l": "50.0", - "x": 0.9391, - "y": 9.4766 - }, - { - "l": "50.0", - "x": 0.9582, - "y": 9.5311 - }, - { - "l": "50.0", - "x": 0.9774, - "y": 9.585 - }, - { - "l": "50.0", - "x": 0.9966, - "y": 9.6384 - }, - { - "l": "50.0", - "x": 1.0157, - "y": 9.6914 - }, - { - "l": "50.0", - "x": 1.0349, - "y": 9.7439 - }, - { - "l": "50.0", - "x": 1.0541, - "y": 9.7961 - }, - { - "l": "50.0", - "x": 1.0732, - "y": 9.8478 - }, - { - "l": "50.0", - "x": 1.0924, - "y": 9.8992 - }, - { - "l": "50.0", - "x": 1.1116, - "y": 9.9502 - }, - { - "l": "50.0", - "x": 1.1307, - "y": 10.001 - }, - { - "l": "50.0", - "x": 1.1499, - "y": 10.0514 - }, - { - "l": "50.0", - "x": 1.1691, - "y": 10.1016 - }, - { - "l": "50.0", - "x": 1.1882, - "y": 10.1515 - }, - { - "l": "50.0", - "x": 1.2074, - "y": 10.2011 - }, - { - "l": "50.0", - "x": 1.2266, - "y": 10.2506 - }, - { - "l": "50.0", - "x": 1.2457, - "y": 10.2998 - }, - { - "l": "50.0", - "x": 1.2649, - "y": 10.3489 - }, - { - "l": "50.0", - "x": 1.2841, - "y": 10.3978 - }, - { - "l": "50.0", - "x": 1.3032, - "y": 10.4466 - }, - { - "l": "50.0", - "x": 1.3224, - "y": 10.4951 - }, - { - "l": "50.0", - "x": 1.3415, - "y": 10.5435 - }, - { - "l": "50.0", - "x": 1.3607, - "y": 10.5918 - }, - { - "l": "50.0", - "x": 1.3799, - "y": 10.6399 - }, - { - "l": "50.0", - "x": 1.399, - "y": 10.6879 - }, - { - "l": "50.0", - "x": 1.4182, - "y": 10.7357 - }, - { - "l": "50.0", - "x": 1.4374, - "y": 10.7834 - }, - { - "l": "50.0", - "x": 1.4565, - "y": 10.831 - }, - { - "l": "50.0", - "x": 1.4757, - "y": 10.8785 - }, - { - "l": "50.0", - "x": 1.4949, - "y": 10.9258 - }, - { - "l": "50.0", - "x": 1.514, - "y": 10.9731 - }, - { - "l": "50.0", - "x": 1.5332, - "y": 11.0202 - }, - { - "l": "50.0", - "x": 1.5524, - "y": 11.0672 - }, - { - "l": "50.0", - "x": 1.5715, - "y": 11.1141 - }, - { - "l": "50.0", - "x": 1.5907, - "y": 11.161 - }, - { - "l": "50.0", - "x": 1.6099, - "y": 11.2078 - }, - { - "l": "50.0", - "x": 1.629, - "y": 11.2545 - }, - { - "l": "50.0", - "x": 1.6482, - "y": 11.3012 - }, - { - "l": "50.0", - "x": 1.6674, - "y": 11.3479 - }, - { - "l": "50.0", - "x": 1.6865, - "y": 11.3945 - }, - { - "l": "50.0", - "x": 1.7057, - "y": 11.441 - }, - { - "l": "50.0", - "x": 1.7248, - "y": 11.4876 - }, - { - "l": "50.0", - "x": 1.744, - "y": 11.5341 - }, - { - "l": "50.0", - "x": 1.7632, - "y": 11.5806 - }, - { - "l": "50.0", - "x": 1.7823, - "y": 11.627 - }, - { - "l": "50.0", - "x": 1.8015, - "y": 11.6734 - }, - { - "l": "50.0", - "x": 1.8207, - "y": 11.7198 - }, - { - "l": "50.0", - "x": 1.8398, - "y": 11.7661 - }, - { - "l": "50.0", - "x": 1.859, - "y": 11.8124 - }, - { - "l": "50.0", - "x": 1.8782, - "y": 11.8586 - }, - { - "l": "50.0", - "x": 1.8973, - "y": 11.9048 - }, - { - "l": "50.0", - "x": 1.9165, - "y": 11.951 - }, - { - "l": "50.0", - "x": 1.9357, - "y": 11.997 - }, - { - "l": "50.0", - "x": 1.9548, - "y": 12.043 - }, - { - "l": "50.0", - "x": 1.974, - "y": 12.089 - }, - { - "l": "50.0", - "x": 1.9932, - "y": 12.1351 - }, - { - "l": "50.0", - "x": 2.0, - "y": 12.1515 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 0.0383, - "y": 4.1193 - }, - { - "l": "75.0", - "x": 0.0575, - "y": 4.4472 - }, - { - "l": "75.0", - "x": 0.0767, - "y": 4.7738 - }, - { - "l": "75.0", - "x": 0.0958, - "y": 5.0837 - }, - { - "l": "75.0", - "x": 0.115, - "y": 5.371 - }, - { - "l": "75.0", - "x": 0.1342, - "y": 5.6364 - }, - { - "l": "75.0", - "x": 0.1533, - "y": 5.8822 - }, - { - "l": "75.0", - "x": 0.1725, - "y": 6.1104 - }, - { - "l": "75.0", - "x": 0.1916, - "y": 6.3233 - }, - { - "l": "75.0", - "x": 0.2108, - "y": 6.5222 - }, - { - "l": "75.0", - "x": 0.23, - "y": 6.7085 - }, - { - "l": "75.0", - "x": 0.2491, - "y": 6.8835 - }, - { - "l": "75.0", - "x": 0.2683, - "y": 7.0485 - }, - { - "l": "75.0", - "x": 0.2875, - "y": 7.2048 - }, - { - "l": "75.0", - "x": 0.3066, - "y": 7.3531 - }, - { - "l": "75.0", - "x": 0.3258, - "y": 7.4941 - }, - { - "l": "75.0", - "x": 0.345, - "y": 7.6289 - }, - { - "l": "75.0", - "x": 0.3641, - "y": 7.7578 - }, - { - "l": "75.0", - "x": 0.3833, - "y": 7.8811 - }, - { - "l": "75.0", - "x": 0.4025, - "y": 7.999 - }, - { - "l": "75.0", - "x": 0.4216, - "y": 8.1121 - }, - { - "l": "75.0", - "x": 0.4408, - "y": 8.2211 - }, - { - "l": "75.0", - "x": 0.46, - "y": 8.3258 - }, - { - "l": "75.0", - "x": 0.4791, - "y": 8.4267 - }, - { - "l": "75.0", - "x": 0.4983, - "y": 8.5239 - }, - { - "l": "75.0", - "x": 0.5175, - "y": 8.6182 - }, - { - "l": "75.0", - "x": 0.5366, - "y": 8.7094 - }, - { - "l": "75.0", - "x": 0.5558, - "y": 8.7976 - }, - { - "l": "75.0", - "x": 0.5749, - "y": 8.8832 - }, - { - "l": "75.0", - "x": 0.5941, - "y": 8.9663 - }, - { - "l": "75.0", - "x": 0.6133, - "y": 9.047 - }, - { - "l": "75.0", - "x": 0.6324, - "y": 9.1255 - }, - { - "l": "75.0", - "x": 0.6516, - "y": 9.2021 - }, - { - "l": "75.0", - "x": 0.6708, - "y": 9.2767 - }, - { - "l": "75.0", - "x": 0.6899, - "y": 9.3498 - }, - { - "l": "75.0", - "x": 0.7091, - "y": 9.4212 - }, - { - "l": "75.0", - "x": 0.7283, - "y": 9.4912 - }, - { - "l": "75.0", - "x": 0.7474, - "y": 9.5597 - }, - { - "l": "75.0", - "x": 0.7666, - "y": 9.6271 - }, - { - "l": "75.0", - "x": 0.7858, - "y": 9.6933 - }, - { - "l": "75.0", - "x": 0.8049, - "y": 9.7584 - }, - { - "l": "75.0", - "x": 0.8241, - "y": 9.8224 - }, - { - "l": "75.0", - "x": 0.8433, - "y": 9.8856 - }, - { - "l": "75.0", - "x": 0.8624, - "y": 9.9479 - }, - { - "l": "75.0", - "x": 0.8816, - "y": 10.0094 - }, - { - "l": "75.0", - "x": 0.9008, - "y": 10.0702 - }, - { - "l": "75.0", - "x": 0.9199, - "y": 10.1302 - }, - { - "l": "75.0", - "x": 0.9391, - "y": 10.1897 - }, - { - "l": "75.0", - "x": 0.9582, - "y": 10.2486 - }, - { - "l": "75.0", - "x": 0.9774, - "y": 10.307 - }, - { - "l": "75.0", - "x": 0.9966, - "y": 10.3648 - }, - { - "l": "75.0", - "x": 1.0157, - "y": 10.4221 - }, - { - "l": "75.0", - "x": 1.0349, - "y": 10.4791 - }, - { - "l": "75.0", - "x": 1.0541, - "y": 10.5356 - }, - { - "l": "75.0", - "x": 1.0732, - "y": 10.5917 - }, - { - "l": "75.0", - "x": 1.0924, - "y": 10.6474 - }, - { - "l": "75.0", - "x": 1.1116, - "y": 10.7028 - }, - { - "l": "75.0", - "x": 1.1307, - "y": 10.7578 - }, - { - "l": "75.0", - "x": 1.1499, - "y": 10.8126 - }, - { - "l": "75.0", - "x": 1.1691, - "y": 10.8671 - }, - { - "l": "75.0", - "x": 1.1882, - "y": 10.9213 - }, - { - "l": "75.0", - "x": 1.2074, - "y": 10.9753 - }, - { - "l": "75.0", - "x": 1.2266, - "y": 11.0291 - }, - { - "l": "75.0", - "x": 1.2457, - "y": 11.0827 - }, - { - "l": "75.0", - "x": 1.2649, - "y": 11.1361 - }, - { - "l": "75.0", - "x": 1.2841, - "y": 11.1893 - }, - { - "l": "75.0", - "x": 1.3032, - "y": 11.2424 - }, - { - "l": "75.0", - "x": 1.3224, - "y": 11.2953 - }, - { - "l": "75.0", - "x": 1.3415, - "y": 11.3481 - }, - { - "l": "75.0", - "x": 1.3607, - "y": 11.4008 - }, - { - "l": "75.0", - "x": 1.3799, - "y": 11.4533 - }, - { - "l": "75.0", - "x": 1.399, - "y": 11.5057 - }, - { - "l": "75.0", - "x": 1.4182, - "y": 11.5579 - }, - { - "l": "75.0", - "x": 1.4374, - "y": 11.61 - }, - { - "l": "75.0", - "x": 1.4565, - "y": 11.662 - }, - { - "l": "75.0", - "x": 1.4757, - "y": 11.7138 - }, - { - "l": "75.0", - "x": 1.4949, - "y": 11.7656 - }, - { - "l": "75.0", - "x": 1.514, - "y": 11.8173 - }, - { - "l": "75.0", - "x": 1.5332, - "y": 11.8689 - }, - { - "l": "75.0", - "x": 1.5524, - "y": 11.9204 - }, - { - "l": "75.0", - "x": 1.5715, - "y": 11.9718 - }, - { - "l": "75.0", - "x": 1.5907, - "y": 12.0232 - }, - { - "l": "75.0", - "x": 1.6099, - "y": 12.0745 - }, - { - "l": "75.0", - "x": 1.629, - "y": 12.1258 - }, - { - "l": "75.0", - "x": 1.6482, - "y": 12.177 - }, - { - "l": "75.0", - "x": 1.6674, - "y": 12.2282 - }, - { - "l": "75.0", - "x": 1.6865, - "y": 12.2794 - }, - { - "l": "75.0", - "x": 1.7057, - "y": 12.3306 - }, - { - "l": "75.0", - "x": 1.7248, - "y": 12.3818 - }, - { - "l": "75.0", - "x": 1.744, - "y": 12.4329 - }, - { - "l": "75.0", - "x": 1.7632, - "y": 12.484 - }, - { - "l": "75.0", - "x": 1.7823, - "y": 12.5351 - }, - { - "l": "75.0", - "x": 1.8015, - "y": 12.5863 - }, - { - "l": "75.0", - "x": 1.8207, - "y": 12.6373 - }, - { - "l": "75.0", - "x": 1.8398, - "y": 12.6884 - }, - { - "l": "75.0", - "x": 1.859, - "y": 12.7394 - }, - { - "l": "75.0", - "x": 1.8782, - "y": 12.7904 - }, - { - "l": "75.0", - "x": 1.8973, - "y": 12.8414 - }, - { - "l": "75.0", - "x": 1.9165, - "y": 12.8923 - }, - { - "l": "75.0", - "x": 1.9357, - "y": 12.9431 - }, - { - "l": "75.0", - "x": 1.9548, - "y": 12.994 - }, - { - "l": "75.0", - "x": 1.974, - "y": 13.0448 - }, - { - "l": "75.0", - "x": 1.9932, - "y": 13.0956 - }, - { - "l": "75.0", - "x": 2.0, - "y": 13.1138 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 0.0383, - "y": 4.5116 - }, - { - "l": "91.0", - "x": 0.0575, - "y": 4.8614 - }, - { - "l": "91.0", - "x": 0.0767, - "y": 5.209 - }, - { - "l": "91.0", - "x": 0.0958, - "y": 5.5379 - }, - { - "l": "91.0", - "x": 0.115, - "y": 5.8419 - }, - { - "l": "91.0", - "x": 0.1342, - "y": 6.1222 - }, - { - "l": "91.0", - "x": 0.1533, - "y": 6.3811 - }, - { - "l": "91.0", - "x": 0.1725, - "y": 6.6211 - }, - { - "l": "91.0", - "x": 0.1916, - "y": 6.8446 - }, - { - "l": "91.0", - "x": 0.2108, - "y": 7.0532 - }, - { - "l": "91.0", - "x": 0.23, - "y": 7.2485 - }, - { - "l": "91.0", - "x": 0.2491, - "y": 7.4319 - }, - { - "l": "91.0", - "x": 0.2683, - "y": 7.605 - }, - { - "l": "91.0", - "x": 0.2875, - "y": 7.7689 - }, - { - "l": "91.0", - "x": 0.3066, - "y": 7.9245 - }, - { - "l": "91.0", - "x": 0.3258, - "y": 8.0723 - }, - { - "l": "91.0", - "x": 0.345, - "y": 8.2139 - }, - { - "l": "91.0", - "x": 0.3641, - "y": 8.3496 - }, - { - "l": "91.0", - "x": 0.3833, - "y": 8.4795 - }, - { - "l": "91.0", - "x": 0.4025, - "y": 8.6041 - }, - { - "l": "91.0", - "x": 0.4216, - "y": 8.7237 - }, - { - "l": "91.0", - "x": 0.4408, - "y": 8.8391 - }, - { - "l": "91.0", - "x": 0.46, - "y": 8.9502 - }, - { - "l": "91.0", - "x": 0.4791, - "y": 9.0574 - }, - { - "l": "91.0", - "x": 0.4983, - "y": 9.1609 - }, - { - "l": "91.0", - "x": 0.5175, - "y": 9.2614 - }, - { - "l": "91.0", - "x": 0.5366, - "y": 9.3587 - }, - { - "l": "91.0", - "x": 0.5558, - "y": 9.453 - }, - { - "l": "91.0", - "x": 0.5749, - "y": 9.5445 - }, - { - "l": "91.0", - "x": 0.5941, - "y": 9.6335 - }, - { - "l": "91.0", - "x": 0.6133, - "y": 9.7201 - }, - { - "l": "91.0", - "x": 0.6324, - "y": 9.8043 - }, - { - "l": "91.0", - "x": 0.6516, - "y": 9.8865 - }, - { - "l": "91.0", - "x": 0.6708, - "y": 9.9668 - }, - { - "l": "91.0", - "x": 0.6899, - "y": 10.0454 - }, - { - "l": "91.0", - "x": 0.7091, - "y": 10.1223 - }, - { - "l": "91.0", - "x": 0.7283, - "y": 10.1976 - }, - { - "l": "91.0", - "x": 0.7474, - "y": 10.2716 - }, - { - "l": "91.0", - "x": 0.7666, - "y": 10.3442 - }, - { - "l": "91.0", - "x": 0.7858, - "y": 10.4157 - }, - { - "l": "91.0", - "x": 0.8049, - "y": 10.4859 - }, - { - "l": "91.0", - "x": 0.8241, - "y": 10.5552 - }, - { - "l": "91.0", - "x": 0.8433, - "y": 10.6234 - }, - { - "l": "91.0", - "x": 0.8624, - "y": 10.6908 - }, - { - "l": "91.0", - "x": 0.8816, - "y": 10.7573 - }, - { - "l": "91.0", - "x": 0.9008, - "y": 10.823 - }, - { - "l": "91.0", - "x": 0.9199, - "y": 10.888 - }, - { - "l": "91.0", - "x": 0.9391, - "y": 10.9524 - }, - { - "l": "91.0", - "x": 0.9582, - "y": 11.0162 - }, - { - "l": "91.0", - "x": 0.9774, - "y": 11.0794 - }, - { - "l": "91.0", - "x": 0.9966, - "y": 11.1421 - }, - { - "l": "91.0", - "x": 1.0157, - "y": 11.2043 - }, - { - "l": "91.0", - "x": 1.0349, - "y": 11.2661 - }, - { - "l": "91.0", - "x": 1.0541, - "y": 11.3274 - }, - { - "l": "91.0", - "x": 1.0732, - "y": 11.3883 - }, - { - "l": "91.0", - "x": 1.0924, - "y": 11.4488 - }, - { - "l": "91.0", - "x": 1.1116, - "y": 11.509 - }, - { - "l": "91.0", - "x": 1.1307, - "y": 11.5688 - }, - { - "l": "91.0", - "x": 1.1499, - "y": 11.6284 - }, - { - "l": "91.0", - "x": 1.1691, - "y": 11.6876 - }, - { - "l": "91.0", - "x": 1.1882, - "y": 11.7467 - }, - { - "l": "91.0", - "x": 1.2074, - "y": 11.8054 - }, - { - "l": "91.0", - "x": 1.2266, - "y": 11.864 - }, - { - "l": "91.0", - "x": 1.2457, - "y": 11.9224 - }, - { - "l": "91.0", - "x": 1.2649, - "y": 11.9806 - }, - { - "l": "91.0", - "x": 1.2841, - "y": 12.0387 - }, - { - "l": "91.0", - "x": 1.3032, - "y": 12.0965 - }, - { - "l": "91.0", - "x": 1.3224, - "y": 12.1543 - }, - { - "l": "91.0", - "x": 1.3415, - "y": 12.2119 - }, - { - "l": "91.0", - "x": 1.3607, - "y": 12.2694 - }, - { - "l": "91.0", - "x": 1.3799, - "y": 12.3268 - }, - { - "l": "91.0", - "x": 1.399, - "y": 12.384 - }, - { - "l": "91.0", - "x": 1.4182, - "y": 12.4412 - }, - { - "l": "91.0", - "x": 1.4374, - "y": 12.4981 - }, - { - "l": "91.0", - "x": 1.4565, - "y": 12.555 - }, - { - "l": "91.0", - "x": 1.4757, - "y": 12.6118 - }, - { - "l": "91.0", - "x": 1.4949, - "y": 12.6684 - }, - { - "l": "91.0", - "x": 1.514, - "y": 12.7251 - }, - { - "l": "91.0", - "x": 1.5332, - "y": 12.7816 - }, - { - "l": "91.0", - "x": 1.5524, - "y": 12.8381 - }, - { - "l": "91.0", - "x": 1.5715, - "y": 12.8946 - }, - { - "l": "91.0", - "x": 1.5907, - "y": 12.951 - }, - { - "l": "91.0", - "x": 1.6099, - "y": 13.0074 - }, - { - "l": "91.0", - "x": 1.629, - "y": 13.0637 - }, - { - "l": "91.0", - "x": 1.6482, - "y": 13.12 - }, - { - "l": "91.0", - "x": 1.6674, - "y": 13.1763 - }, - { - "l": "91.0", - "x": 1.6865, - "y": 13.2326 - }, - { - "l": "91.0", - "x": 1.7057, - "y": 13.2889 - }, - { - "l": "91.0", - "x": 1.7248, - "y": 13.3452 - }, - { - "l": "91.0", - "x": 1.744, - "y": 13.4015 - }, - { - "l": "91.0", - "x": 1.7632, - "y": 13.4578 - }, - { - "l": "91.0", - "x": 1.7823, - "y": 13.5142 - }, - { - "l": "91.0", - "x": 1.8015, - "y": 13.5705 - }, - { - "l": "91.0", - "x": 1.8207, - "y": 13.6269 - }, - { - "l": "91.0", - "x": 1.8398, - "y": 13.6832 - }, - { - "l": "91.0", - "x": 1.859, - "y": 13.7395 - }, - { - "l": "91.0", - "x": 1.8782, - "y": 13.7958 - }, - { - "l": "91.0", - "x": 1.8973, - "y": 13.8521 - }, - { - "l": "91.0", - "x": 1.9165, - "y": 13.9084 - }, - { - "l": "91.0", - "x": 1.9357, - "y": 13.9646 - }, - { - "l": "91.0", - "x": 1.9548, - "y": 14.0208 - }, - { - "l": "91.0", - "x": 1.974, - "y": 14.0771 - }, - { - "l": "91.0", - "x": 1.9932, - "y": 14.1334 - }, - { - "l": "91.0", - "x": 2.0, - "y": 14.1535 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 0.0383, - "y": 4.9309 - }, - { - "l": "98.0", - "x": 0.0575, - "y": 5.3041 - }, - { - "l": "98.0", - "x": 0.0767, - "y": 5.674 - }, - { - "l": "98.0", - "x": 0.0958, - "y": 6.023 - }, - { - "l": "98.0", - "x": 0.115, - "y": 6.3447 - }, - { - "l": "98.0", - "x": 0.1342, - "y": 6.6406 - }, - { - "l": "98.0", - "x": 0.1533, - "y": 6.9133 - }, - { - "l": "98.0", - "x": 0.1725, - "y": 7.1656 - }, - { - "l": "98.0", - "x": 0.1916, - "y": 7.4002 - }, - { - "l": "98.0", - "x": 0.2108, - "y": 7.6191 - }, - { - "l": "98.0", - "x": 0.23, - "y": 7.8237 - }, - { - "l": "98.0", - "x": 0.2491, - "y": 8.0158 - }, - { - "l": "98.0", - "x": 0.2683, - "y": 8.1975 - }, - { - "l": "98.0", - "x": 0.2875, - "y": 8.3695 - }, - { - "l": "98.0", - "x": 0.3066, - "y": 8.5326 - }, - { - "l": "98.0", - "x": 0.3258, - "y": 8.6877 - }, - { - "l": "98.0", - "x": 0.345, - "y": 8.8365 - }, - { - "l": "98.0", - "x": 0.3641, - "y": 8.9794 - }, - { - "l": "98.0", - "x": 0.3833, - "y": 9.1164 - }, - { - "l": "98.0", - "x": 0.4025, - "y": 9.248 - }, - { - "l": "98.0", - "x": 0.4216, - "y": 9.3746 - }, - { - "l": "98.0", - "x": 0.4408, - "y": 9.4969 - }, - { - "l": "98.0", - "x": 0.46, - "y": 9.6149 - }, - { - "l": "98.0", - "x": 0.4791, - "y": 9.7289 - }, - { - "l": "98.0", - "x": 0.4983, - "y": 9.8392 - }, - { - "l": "98.0", - "x": 0.5175, - "y": 9.9463 - }, - { - "l": "98.0", - "x": 0.5366, - "y": 10.0502 - }, - { - "l": "98.0", - "x": 0.5558, - "y": 10.1511 - }, - { - "l": "98.0", - "x": 0.5749, - "y": 10.2491 - }, - { - "l": "98.0", - "x": 0.5941, - "y": 10.3445 - }, - { - "l": "98.0", - "x": 0.6133, - "y": 10.4373 - }, - { - "l": "98.0", - "x": 0.6324, - "y": 10.5279 - }, - { - "l": "98.0", - "x": 0.6516, - "y": 10.6163 - }, - { - "l": "98.0", - "x": 0.6708, - "y": 10.7027 - }, - { - "l": "98.0", - "x": 0.6899, - "y": 10.7873 - }, - { - "l": "98.0", - "x": 0.7091, - "y": 10.8702 - }, - { - "l": "98.0", - "x": 0.7283, - "y": 10.9514 - }, - { - "l": "98.0", - "x": 0.7474, - "y": 11.0312 - }, - { - "l": "98.0", - "x": 0.7666, - "y": 11.1097 - }, - { - "l": "98.0", - "x": 0.7858, - "y": 11.1869 - }, - { - "l": "98.0", - "x": 0.8049, - "y": 11.2628 - }, - { - "l": "98.0", - "x": 0.8241, - "y": 11.3377 - }, - { - "l": "98.0", - "x": 0.8433, - "y": 11.4115 - }, - { - "l": "98.0", - "x": 0.8624, - "y": 11.4845 - }, - { - "l": "98.0", - "x": 0.8816, - "y": 11.5565 - }, - { - "l": "98.0", - "x": 0.9008, - "y": 11.6277 - }, - { - "l": "98.0", - "x": 0.9199, - "y": 11.6981 - }, - { - "l": "98.0", - "x": 0.9391, - "y": 11.7679 - }, - { - "l": "98.0", - "x": 0.9582, - "y": 11.8371 - }, - { - "l": "98.0", - "x": 0.9774, - "y": 11.9056 - }, - { - "l": "98.0", - "x": 0.9966, - "y": 11.9736 - }, - { - "l": "98.0", - "x": 1.0157, - "y": 12.0412 - }, - { - "l": "98.0", - "x": 1.0349, - "y": 12.1083 - }, - { - "l": "98.0", - "x": 1.0541, - "y": 12.1749 - }, - { - "l": "98.0", - "x": 1.0732, - "y": 12.2412 - }, - { - "l": "98.0", - "x": 1.0924, - "y": 12.307 - }, - { - "l": "98.0", - "x": 1.1116, - "y": 12.3724 - }, - { - "l": "98.0", - "x": 1.1307, - "y": 12.4376 - }, - { - "l": "98.0", - "x": 1.1499, - "y": 12.5024 - }, - { - "l": "98.0", - "x": 1.1691, - "y": 12.5669 - }, - { - "l": "98.0", - "x": 1.1882, - "y": 12.6312 - }, - { - "l": "98.0", - "x": 1.2074, - "y": 12.6953 - }, - { - "l": "98.0", - "x": 1.2266, - "y": 12.7592 - }, - { - "l": "98.0", - "x": 1.2457, - "y": 12.8229 - }, - { - "l": "98.0", - "x": 1.2649, - "y": 12.8864 - }, - { - "l": "98.0", - "x": 1.2841, - "y": 12.9498 - }, - { - "l": "98.0", - "x": 1.3032, - "y": 13.013 - }, - { - "l": "98.0", - "x": 1.3224, - "y": 13.0761 - }, - { - "l": "98.0", - "x": 1.3415, - "y": 13.139 - }, - { - "l": "98.0", - "x": 1.3607, - "y": 13.2019 - }, - { - "l": "98.0", - "x": 1.3799, - "y": 13.2647 - }, - { - "l": "98.0", - "x": 1.399, - "y": 13.3274 - }, - { - "l": "98.0", - "x": 1.4182, - "y": 13.3899 - }, - { - "l": "98.0", - "x": 1.4374, - "y": 13.4523 - }, - { - "l": "98.0", - "x": 1.4565, - "y": 13.5146 - }, - { - "l": "98.0", - "x": 1.4757, - "y": 13.5768 - }, - { - "l": "98.0", - "x": 1.4949, - "y": 13.6389 - }, - { - "l": "98.0", - "x": 1.514, - "y": 13.7011 - }, - { - "l": "98.0", - "x": 1.5332, - "y": 13.7632 - }, - { - "l": "98.0", - "x": 1.5524, - "y": 13.8253 - }, - { - "l": "98.0", - "x": 1.5715, - "y": 13.8873 - }, - { - "l": "98.0", - "x": 1.5907, - "y": 13.9493 - }, - { - "l": "98.0", - "x": 1.6099, - "y": 14.0113 - }, - { - "l": "98.0", - "x": 1.629, - "y": 14.0732 - }, - { - "l": "98.0", - "x": 1.6482, - "y": 14.1352 - }, - { - "l": "98.0", - "x": 1.6674, - "y": 14.1971 - }, - { - "l": "98.0", - "x": 1.6865, - "y": 14.2591 - }, - { - "l": "98.0", - "x": 1.7057, - "y": 14.3212 - }, - { - "l": "98.0", - "x": 1.7248, - "y": 14.3832 - }, - { - "l": "98.0", - "x": 1.744, - "y": 14.4453 - }, - { - "l": "98.0", - "x": 1.7632, - "y": 14.5074 - }, - { - "l": "98.0", - "x": 1.7823, - "y": 14.5696 - }, - { - "l": "98.0", - "x": 1.8015, - "y": 14.6318 - }, - { - "l": "98.0", - "x": 1.8207, - "y": 14.6941 - }, - { - "l": "98.0", - "x": 1.8398, - "y": 14.7563 - }, - { - "l": "98.0", - "x": 1.859, - "y": 14.8186 - }, - { - "l": "98.0", - "x": 1.8782, - "y": 14.8808 - }, - { - "l": "98.0", - "x": 1.8973, - "y": 14.9431 - }, - { - "l": "98.0", - "x": 1.9165, - "y": 15.0053 - }, - { - "l": "98.0", - "x": 1.9357, - "y": 15.0676 - }, - { - "l": "98.0", - "x": 1.9548, - "y": 15.1298 - }, - { - "l": "98.0", - "x": 1.974, - "y": 15.1921 - }, - { - "l": "98.0", - "x": 1.9932, - "y": 15.2545 - }, - { - "l": "98.0", - "x": 2.0, - "y": 15.2767 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 0.0383, - "y": 5.3785 - }, - { - "l": "99.6", - "x": 0.0575, - "y": 5.7766 - }, - { - "l": "99.6", - "x": 0.0767, - "y": 6.1701 - }, - { - "l": "99.6", - "x": 0.0958, - "y": 6.5404 - }, - { - "l": "99.6", - "x": 0.115, - "y": 6.8808 - }, - { - "l": "99.6", - "x": 0.1342, - "y": 7.1931 - }, - { - "l": "99.6", - "x": 0.1533, - "y": 7.4803 - }, - { - "l": "99.6", - "x": 0.1725, - "y": 7.7456 - }, - { - "l": "99.6", - "x": 0.1916, - "y": 7.9919 - }, - { - "l": "99.6", - "x": 0.2108, - "y": 8.2214 - }, - { - "l": "99.6", - "x": 0.23, - "y": 8.4359 - }, - { - "l": "99.6", - "x": 0.2491, - "y": 8.6372 - }, - { - "l": "99.6", - "x": 0.2683, - "y": 8.8279 - }, - { - "l": "99.6", - "x": 0.2875, - "y": 9.0083 - }, - { - "l": "99.6", - "x": 0.3066, - "y": 9.1793 - }, - { - "l": "99.6", - "x": 0.3258, - "y": 9.3421 - }, - { - "l": "99.6", - "x": 0.345, - "y": 9.4986 - }, - { - "l": "99.6", - "x": 0.3641, - "y": 9.6492 - }, - { - "l": "99.6", - "x": 0.3833, - "y": 9.7938 - }, - { - "l": "99.6", - "x": 0.4025, - "y": 9.9328 - }, - { - "l": "99.6", - "x": 0.4216, - "y": 10.0669 - }, - { - "l": "99.6", - "x": 0.4408, - "y": 10.1966 - }, - { - "l": "99.6", - "x": 0.46, - "y": 10.322 - }, - { - "l": "99.6", - "x": 0.4791, - "y": 10.4433 - }, - { - "l": "99.6", - "x": 0.4983, - "y": 10.5609 - }, - { - "l": "99.6", - "x": 0.5175, - "y": 10.6752 - }, - { - "l": "99.6", - "x": 0.5366, - "y": 10.7863 - }, - { - "l": "99.6", - "x": 0.5558, - "y": 10.8942 - }, - { - "l": "99.6", - "x": 0.5749, - "y": 10.9993 - }, - { - "l": "99.6", - "x": 0.5941, - "y": 11.1016 - }, - { - "l": "99.6", - "x": 0.6133, - "y": 11.2014 - }, - { - "l": "99.6", - "x": 0.6324, - "y": 11.2988 - }, - { - "l": "99.6", - "x": 0.6516, - "y": 11.3939 - }, - { - "l": "99.6", - "x": 0.6708, - "y": 11.487 - }, - { - "l": "99.6", - "x": 0.6899, - "y": 11.5782 - }, - { - "l": "99.6", - "x": 0.7091, - "y": 11.6676 - }, - { - "l": "99.6", - "x": 0.7283, - "y": 11.7553 - }, - { - "l": "99.6", - "x": 0.7474, - "y": 11.8415 - }, - { - "l": "99.6", - "x": 0.7666, - "y": 11.9263 - }, - { - "l": "99.6", - "x": 0.7858, - "y": 12.0098 - }, - { - "l": "99.6", - "x": 0.8049, - "y": 12.0921 - }, - { - "l": "99.6", - "x": 0.8241, - "y": 12.1731 - }, - { - "l": "99.6", - "x": 0.8433, - "y": 12.2531 - }, - { - "l": "99.6", - "x": 0.8624, - "y": 12.3321 - }, - { - "l": "99.6", - "x": 0.8816, - "y": 12.4102 - }, - { - "l": "99.6", - "x": 0.9008, - "y": 12.4874 - }, - { - "l": "99.6", - "x": 0.9199, - "y": 12.5638 - }, - { - "l": "99.6", - "x": 0.9391, - "y": 12.6395 - }, - { - "l": "99.6", - "x": 0.9582, - "y": 12.7146 - }, - { - "l": "99.6", - "x": 0.9774, - "y": 12.7891 - }, - { - "l": "99.6", - "x": 0.9966, - "y": 12.863 - }, - { - "l": "99.6", - "x": 1.0157, - "y": 12.9364 - }, - { - "l": "99.6", - "x": 1.0349, - "y": 13.0094 - }, - { - "l": "99.6", - "x": 1.0541, - "y": 13.0819 - }, - { - "l": "99.6", - "x": 1.0732, - "y": 13.154 - }, - { - "l": "99.6", - "x": 1.0924, - "y": 13.2257 - }, - { - "l": "99.6", - "x": 1.1116, - "y": 13.2969 - }, - { - "l": "99.6", - "x": 1.1307, - "y": 13.3679 - }, - { - "l": "99.6", - "x": 1.1499, - "y": 13.4385 - }, - { - "l": "99.6", - "x": 1.1691, - "y": 13.5089 - }, - { - "l": "99.6", - "x": 1.1882, - "y": 13.5791 - }, - { - "l": "99.6", - "x": 1.2074, - "y": 13.649 - }, - { - "l": "99.6", - "x": 1.2266, - "y": 13.7188 - }, - { - "l": "99.6", - "x": 1.2457, - "y": 13.7883 - }, - { - "l": "99.6", - "x": 1.2649, - "y": 13.8577 - }, - { - "l": "99.6", - "x": 1.2841, - "y": 13.927 - }, - { - "l": "99.6", - "x": 1.3032, - "y": 13.9961 - }, - { - "l": "99.6", - "x": 1.3224, - "y": 14.0651 - }, - { - "l": "99.6", - "x": 1.3415, - "y": 14.134 - }, - { - "l": "99.6", - "x": 1.3607, - "y": 14.2029 - }, - { - "l": "99.6", - "x": 1.3799, - "y": 14.2717 - }, - { - "l": "99.6", - "x": 1.399, - "y": 14.3404 - }, - { - "l": "99.6", - "x": 1.4182, - "y": 14.4089 - }, - { - "l": "99.6", - "x": 1.4374, - "y": 14.4773 - }, - { - "l": "99.6", - "x": 1.4565, - "y": 14.5456 - }, - { - "l": "99.6", - "x": 1.4757, - "y": 14.6139 - }, - { - "l": "99.6", - "x": 1.4949, - "y": 14.6821 - }, - { - "l": "99.6", - "x": 1.514, - "y": 14.7503 - }, - { - "l": "99.6", - "x": 1.5332, - "y": 14.8186 - }, - { - "l": "99.6", - "x": 1.5524, - "y": 14.8869 - }, - { - "l": "99.6", - "x": 1.5715, - "y": 14.9552 - }, - { - "l": "99.6", - "x": 1.5907, - "y": 15.0234 - }, - { - "l": "99.6", - "x": 1.6099, - "y": 15.0916 - }, - { - "l": "99.6", - "x": 1.629, - "y": 15.1598 - }, - { - "l": "99.6", - "x": 1.6482, - "y": 15.2281 - }, - { - "l": "99.6", - "x": 1.6674, - "y": 15.2964 - }, - { - "l": "99.6", - "x": 1.6865, - "y": 15.3647 - }, - { - "l": "99.6", - "x": 1.7057, - "y": 15.4331 - }, - { - "l": "99.6", - "x": 1.7248, - "y": 15.5016 - }, - { - "l": "99.6", - "x": 1.744, - "y": 15.5701 - }, - { - "l": "99.6", - "x": 1.7632, - "y": 15.6387 - }, - { - "l": "99.6", - "x": 1.7823, - "y": 15.7074 - }, - { - "l": "99.6", - "x": 1.8015, - "y": 15.7762 - }, - { - "l": "99.6", - "x": 1.8207, - "y": 15.845 - }, - { - "l": "99.6", - "x": 1.8398, - "y": 15.9139 - }, - { - "l": "99.6", - "x": 1.859, - "y": 15.9827 - }, - { - "l": "99.6", - "x": 1.8782, - "y": 16.0516 - }, - { - "l": "99.6", - "x": 1.8973, - "y": 16.1206 - }, - { - "l": "99.6", - "x": 1.9165, - "y": 16.1895 - }, - { - "l": "99.6", - "x": 1.9357, - "y": 16.2585 - }, - { - "l": "99.6", - "x": 1.9548, - "y": 16.3275 - }, - { - "l": "99.6", - "x": 1.974, - "y": 16.3966 - }, - { - "l": "99.6", - "x": 1.9932, - "y": 16.4658 - }, - { - "l": "99.6", - "x": 2.0, - "y": 16.4905 - } - ] - } - ], - "ofc": null, - "bmi": null - }, - "female": null - } - }, - { - "uk_who_child": { - "male": { - "height": null, - "weight": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 2.0, - "y": 8.9656 - }, - { - "l": "0.4", - "x": 2.0192, - "y": 8.9966 - }, - { - "l": "0.4", - "x": 2.1025, - "y": 9.1308 - }, - { - "l": "0.4", - "x": 2.1858, - "y": 9.2627 - }, - { - "l": "0.4", - "x": 2.2692, - "y": 9.3917 - }, - { - "l": "0.4", - "x": 2.3525, - "y": 9.518 - }, - { - "l": "0.4", - "x": 2.4358, - "y": 9.6415 - }, - { - "l": "0.4", - "x": 2.5192, - "y": 9.7624 - }, - { - "l": "0.4", - "x": 2.6025, - "y": 9.8806 - }, - { - "l": "0.4", - "x": 2.6858, - "y": 9.9966 - }, - { - "l": "0.4", - "x": 2.7692, - "y": 10.1105 - }, - { - "l": "0.4", - "x": 2.8525, - "y": 10.2232 - }, - { - "l": "0.4", - "x": 2.9358, - "y": 10.3347 - }, - { - "l": "0.4", - "x": 3.0192, - "y": 10.4452 - }, - { - "l": "0.4", - "x": 3.1025, - "y": 10.5552 - }, - { - "l": "0.4", - "x": 3.1858, - "y": 10.6647 - }, - { - "l": "0.4", - "x": 3.2692, - "y": 10.7739 - }, - { - "l": "0.4", - "x": 3.3525, - "y": 10.8828 - }, - { - "l": "0.4", - "x": 3.4358, - "y": 10.9913 - }, - { - "l": "0.4", - "x": 3.5192, - "y": 11.0992 - }, - { - "l": "0.4", - "x": 3.6025, - "y": 11.2066 - }, - { - "l": "0.4", - "x": 3.6858, - "y": 11.3135 - }, - { - "l": "0.4", - "x": 3.7692, - "y": 11.4193 - }, - { - "l": "0.4", - "x": 3.8525, - "y": 11.5243 - }, - { - "l": "0.4", - "x": 3.9358, - "y": 11.6286 - }, - { - "l": "0.4", - "x": 4.0, - "y": 11.7084 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 2.0, - "y": 9.6725 - }, - { - "l": "2.0", - "x": 2.0192, - "y": 9.7066 - }, - { - "l": "2.0", - "x": 2.1025, - "y": 9.8542 - }, - { - "l": "2.0", - "x": 2.1858, - "y": 9.9994 - }, - { - "l": "2.0", - "x": 2.2692, - "y": 10.1417 - }, - { - "l": "2.0", - "x": 2.3525, - "y": 10.281 - }, - { - "l": "2.0", - "x": 2.4358, - "y": 10.4175 - }, - { - "l": "2.0", - "x": 2.5192, - "y": 10.551 - }, - { - "l": "2.0", - "x": 2.6025, - "y": 10.6817 - }, - { - "l": "2.0", - "x": 2.6858, - "y": 10.8101 - }, - { - "l": "2.0", - "x": 2.7692, - "y": 10.9363 - }, - { - "l": "2.0", - "x": 2.8525, - "y": 11.0611 - }, - { - "l": "2.0", - "x": 2.9358, - "y": 11.1846 - }, - { - "l": "2.0", - "x": 3.0192, - "y": 11.307 - }, - { - "l": "2.0", - "x": 3.1025, - "y": 11.429 - }, - { - "l": "2.0", - "x": 3.1858, - "y": 11.5503 - }, - { - "l": "2.0", - "x": 3.2692, - "y": 11.6714 - }, - { - "l": "2.0", - "x": 3.3525, - "y": 11.7921 - }, - { - "l": "2.0", - "x": 3.4358, - "y": 11.9126 - }, - { - "l": "2.0", - "x": 3.5192, - "y": 12.0325 - }, - { - "l": "2.0", - "x": 3.6025, - "y": 12.152 - }, - { - "l": "2.0", - "x": 3.6858, - "y": 12.271 - }, - { - "l": "2.0", - "x": 3.7692, - "y": 12.3891 - }, - { - "l": "2.0", - "x": 3.8525, - "y": 12.5064 - }, - { - "l": "2.0", - "x": 3.9358, - "y": 12.6232 - }, - { - "l": "2.0", - "x": 4.0, - "y": 12.7126 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 2.0, - "y": 10.436 - }, - { - "l": "9.0", - "x": 2.0192, - "y": 10.4735 - }, - { - "l": "9.0", - "x": 2.1025, - "y": 10.6362 - }, - { - "l": "9.0", - "x": 2.1858, - "y": 10.7963 - }, - { - "l": "9.0", - "x": 2.2692, - "y": 10.9535 - }, - { - "l": "9.0", - "x": 2.3525, - "y": 11.1076 - }, - { - "l": "9.0", - "x": 2.4358, - "y": 11.2585 - }, - { - "l": "9.0", - "x": 2.5192, - "y": 11.4064 - }, - { - "l": "9.0", - "x": 2.6025, - "y": 11.5513 - }, - { - "l": "9.0", - "x": 2.6858, - "y": 11.6937 - }, - { - "l": "9.0", - "x": 2.7692, - "y": 11.8338 - }, - { - "l": "9.0", - "x": 2.8525, - "y": 11.9723 - }, - { - "l": "9.0", - "x": 2.9358, - "y": 12.1094 - }, - { - "l": "9.0", - "x": 3.0192, - "y": 12.2455 - }, - { - "l": "9.0", - "x": 3.1025, - "y": 12.3809 - }, - { - "l": "9.0", - "x": 3.1858, - "y": 12.5157 - }, - { - "l": "9.0", - "x": 3.2692, - "y": 12.6503 - }, - { - "l": "9.0", - "x": 3.3525, - "y": 12.7846 - }, - { - "l": "9.0", - "x": 3.4358, - "y": 12.9186 - }, - { - "l": "9.0", - "x": 3.5192, - "y": 13.0523 - }, - { - "l": "9.0", - "x": 3.6025, - "y": 13.1856 - }, - { - "l": "9.0", - "x": 3.6858, - "y": 13.3184 - }, - { - "l": "9.0", - "x": 3.7692, - "y": 13.4506 - }, - { - "l": "9.0", - "x": 3.8525, - "y": 13.5821 - }, - { - "l": "9.0", - "x": 3.9358, - "y": 13.7132 - }, - { - "l": "9.0", - "x": 4.0, - "y": 13.8136 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 2.0, - "y": 11.2607 - }, - { - "l": "25.0", - "x": 2.0192, - "y": 11.3021 - }, - { - "l": "25.0", - "x": 2.1025, - "y": 11.4816 - }, - { - "l": "25.0", - "x": 2.1858, - "y": 11.6585 - }, - { - "l": "25.0", - "x": 2.2692, - "y": 11.8324 - }, - { - "l": "25.0", - "x": 2.3525, - "y": 12.0031 - }, - { - "l": "25.0", - "x": 2.4358, - "y": 12.1704 - }, - { - "l": "25.0", - "x": 2.5192, - "y": 12.3344 - }, - { - "l": "25.0", - "x": 2.6025, - "y": 12.4954 - }, - { - "l": "25.0", - "x": 2.6858, - "y": 12.6537 - }, - { - "l": "25.0", - "x": 2.7692, - "y": 12.8095 - }, - { - "l": "25.0", - "x": 2.8525, - "y": 12.9636 - }, - { - "l": "25.0", - "x": 2.9358, - "y": 13.1162 - }, - { - "l": "25.0", - "x": 3.0192, - "y": 13.2677 - }, - { - "l": "25.0", - "x": 3.1025, - "y": 13.4184 - }, - { - "l": "25.0", - "x": 3.1858, - "y": 13.5686 - }, - { - "l": "25.0", - "x": 3.2692, - "y": 13.7186 - }, - { - "l": "25.0", - "x": 3.3525, - "y": 13.8683 - }, - { - "l": "25.0", - "x": 3.4358, - "y": 14.0179 - }, - { - "l": "25.0", - "x": 3.5192, - "y": 14.1672 - }, - { - "l": "25.0", - "x": 3.6025, - "y": 14.3163 - }, - { - "l": "25.0", - "x": 3.6858, - "y": 14.465 - }, - { - "l": "25.0", - "x": 3.7692, - "y": 14.6134 - }, - { - "l": "25.0", - "x": 3.8525, - "y": 14.7612 - }, - { - "l": "25.0", - "x": 3.9358, - "y": 14.9086 - }, - { - "l": "25.0", - "x": 4.0, - "y": 15.0219 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 2.0, - "y": 12.1515 - }, - { - "l": "50.0", - "x": 2.0192, - "y": 12.1972 - }, - { - "l": "50.0", - "x": 2.1025, - "y": 12.3956 - }, - { - "l": "50.0", - "x": 2.1858, - "y": 12.5914 - }, - { - "l": "50.0", - "x": 2.2692, - "y": 12.7841 - }, - { - "l": "50.0", - "x": 2.3525, - "y": 12.9735 - }, - { - "l": "50.0", - "x": 2.4358, - "y": 13.1593 - }, - { - "l": "50.0", - "x": 2.5192, - "y": 13.3416 - }, - { - "l": "50.0", - "x": 2.6025, - "y": 13.5207 - }, - { - "l": "50.0", - "x": 2.6858, - "y": 13.697 - }, - { - "l": "50.0", - "x": 2.7692, - "y": 13.8707 - }, - { - "l": "50.0", - "x": 2.8525, - "y": 14.0424 - }, - { - "l": "50.0", - "x": 2.9358, - "y": 14.2126 - }, - { - "l": "50.0", - "x": 3.0192, - "y": 14.3817 - }, - { - "l": "50.0", - "x": 3.1025, - "y": 14.5499 - }, - { - "l": "50.0", - "x": 3.1858, - "y": 14.7176 - }, - { - "l": "50.0", - "x": 3.2692, - "y": 14.8851 - }, - { - "l": "50.0", - "x": 3.3525, - "y": 15.0525 - }, - { - "l": "50.0", - "x": 3.4358, - "y": 15.2198 - }, - { - "l": "50.0", - "x": 3.5192, - "y": 15.3871 - }, - { - "l": "50.0", - "x": 3.6025, - "y": 15.5542 - }, - { - "l": "50.0", - "x": 3.6858, - "y": 15.7212 - }, - { - "l": "50.0", - "x": 3.7692, - "y": 15.888 - }, - { - "l": "50.0", - "x": 3.8525, - "y": 16.0546 - }, - { - "l": "50.0", - "x": 3.9358, - "y": 16.2209 - }, - { - "l": "50.0", - "x": 4.0, - "y": 16.3489 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 2.0, - "y": 13.1138 - }, - { - "l": "75.0", - "x": 2.0192, - "y": 13.1644 - }, - { - "l": "75.0", - "x": 2.1025, - "y": 13.384 - }, - { - "l": "75.0", - "x": 2.1858, - "y": 13.6009 - }, - { - "l": "75.0", - "x": 2.2692, - "y": 13.8149 - }, - { - "l": "75.0", - "x": 2.3525, - "y": 14.0254 - }, - { - "l": "75.0", - "x": 2.4358, - "y": 14.232 - }, - { - "l": "75.0", - "x": 2.5192, - "y": 14.435 - }, - { - "l": "75.0", - "x": 2.6025, - "y": 14.6346 - }, - { - "l": "75.0", - "x": 2.6858, - "y": 14.8313 - }, - { - "l": "75.0", - "x": 2.7692, - "y": 15.0252 - }, - { - "l": "75.0", - "x": 2.8525, - "y": 15.2171 - }, - { - "l": "75.0", - "x": 2.9358, - "y": 15.4073 - }, - { - "l": "75.0", - "x": 3.0192, - "y": 15.5964 - }, - { - "l": "75.0", - "x": 3.1025, - "y": 15.7845 - }, - { - "l": "75.0", - "x": 3.1858, - "y": 15.9722 - }, - { - "l": "75.0", - "x": 3.2692, - "y": 16.1597 - }, - { - "l": "75.0", - "x": 3.3525, - "y": 16.3472 - }, - { - "l": "75.0", - "x": 3.4358, - "y": 16.5348 - }, - { - "l": "75.0", - "x": 3.5192, - "y": 16.7226 - }, - { - "l": "75.0", - "x": 3.6025, - "y": 16.9105 - }, - { - "l": "75.0", - "x": 3.6858, - "y": 17.0984 - }, - { - "l": "75.0", - "x": 3.7692, - "y": 17.2865 - }, - { - "l": "75.0", - "x": 3.8525, - "y": 17.4747 - }, - { - "l": "75.0", - "x": 3.9358, - "y": 17.6628 - }, - { - "l": "75.0", - "x": 4.0, - "y": 17.8077 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 2.0, - "y": 14.1535 - }, - { - "l": "91.0", - "x": 2.0192, - "y": 14.2095 - }, - { - "l": "91.0", - "x": 2.1025, - "y": 14.4528 - }, - { - "l": "91.0", - "x": 2.1858, - "y": 14.6936 - }, - { - "l": "91.0", - "x": 2.2692, - "y": 14.9315 - }, - { - "l": "91.0", - "x": 2.3525, - "y": 15.1657 - }, - { - "l": "91.0", - "x": 2.4358, - "y": 15.3959 - }, - { - "l": "91.0", - "x": 2.5192, - "y": 15.6222 - }, - { - "l": "91.0", - "x": 2.6025, - "y": 15.8451 - }, - { - "l": "91.0", - "x": 2.6858, - "y": 16.0649 - }, - { - "l": "91.0", - "x": 2.7692, - "y": 16.2819 - }, - { - "l": "91.0", - "x": 2.8525, - "y": 16.4966 - }, - { - "l": "91.0", - "x": 2.9358, - "y": 16.7096 - }, - { - "l": "91.0", - "x": 3.0192, - "y": 16.9215 - }, - { - "l": "91.0", - "x": 3.1025, - "y": 17.1323 - }, - { - "l": "91.0", - "x": 3.1858, - "y": 17.3429 - }, - { - "l": "91.0", - "x": 3.2692, - "y": 17.5532 - }, - { - "l": "91.0", - "x": 3.3525, - "y": 17.7637 - }, - { - "l": "91.0", - "x": 3.4358, - "y": 17.9745 - }, - { - "l": "91.0", - "x": 3.5192, - "y": 18.1859 - }, - { - "l": "91.0", - "x": 3.6025, - "y": 18.3976 - }, - { - "l": "91.0", - "x": 3.6858, - "y": 18.6095 - }, - { - "l": "91.0", - "x": 3.7692, - "y": 18.8221 - }, - { - "l": "91.0", - "x": 3.8525, - "y": 19.0351 - }, - { - "l": "91.0", - "x": 3.9358, - "y": 19.2483 - }, - { - "l": "91.0", - "x": 4.0, - "y": 19.4129 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 2.0, - "y": 15.2767 - }, - { - "l": "98.0", - "x": 2.0192, - "y": 15.3388 - }, - { - "l": "98.0", - "x": 2.1025, - "y": 15.6089 - }, - { - "l": "98.0", - "x": 2.1858, - "y": 15.8765 - }, - { - "l": "98.0", - "x": 2.2692, - "y": 16.1412 - }, - { - "l": "98.0", - "x": 2.3525, - "y": 16.4023 - }, - { - "l": "98.0", - "x": 2.4358, - "y": 16.6591 - }, - { - "l": "98.0", - "x": 2.5192, - "y": 16.9118 - }, - { - "l": "98.0", - "x": 2.6025, - "y": 17.1611 - }, - { - "l": "98.0", - "x": 2.6858, - "y": 17.4071 - }, - { - "l": "98.0", - "x": 2.7692, - "y": 17.6503 - }, - { - "l": "98.0", - "x": 2.8525, - "y": 17.8909 - }, - { - "l": "98.0", - "x": 2.9358, - "y": 18.1298 - }, - { - "l": "98.0", - "x": 3.0192, - "y": 18.3677 - }, - { - "l": "98.0", - "x": 3.1025, - "y": 18.6045 - }, - { - "l": "98.0", - "x": 3.1858, - "y": 18.8411 - }, - { - "l": "98.0", - "x": 3.2692, - "y": 19.0776 - }, - { - "l": "98.0", - "x": 3.3525, - "y": 19.3145 - }, - { - "l": "98.0", - "x": 3.4358, - "y": 19.5518 - }, - { - "l": "98.0", - "x": 3.5192, - "y": 19.7902 - }, - { - "l": "98.0", - "x": 3.6025, - "y": 20.0293 - }, - { - "l": "98.0", - "x": 3.6858, - "y": 20.2688 - }, - { - "l": "98.0", - "x": 3.7692, - "y": 20.5096 - }, - { - "l": "98.0", - "x": 3.8525, - "y": 20.7513 - }, - { - "l": "98.0", - "x": 3.9358, - "y": 20.9935 - }, - { - "l": "98.0", - "x": 4.0, - "y": 21.1808 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 2.0, - "y": 16.4905 - }, - { - "l": "99.6", - "x": 2.0192, - "y": 16.5594 - }, - { - "l": "99.6", - "x": 2.1025, - "y": 16.8595 - }, - { - "l": "99.6", - "x": 2.1858, - "y": 17.1572 - }, - { - "l": "99.6", - "x": 2.2692, - "y": 17.4522 - }, - { - "l": "99.6", - "x": 2.3525, - "y": 17.7434 - }, - { - "l": "99.6", - "x": 2.4358, - "y": 18.0303 - }, - { - "l": "99.6", - "x": 2.5192, - "y": 18.313 - }, - { - "l": "99.6", - "x": 2.6025, - "y": 18.5921 - }, - { - "l": "99.6", - "x": 2.6858, - "y": 18.8678 - }, - { - "l": "99.6", - "x": 2.7692, - "y": 19.1408 - }, - { - "l": "99.6", - "x": 2.8525, - "y": 19.4109 - }, - { - "l": "99.6", - "x": 2.9358, - "y": 19.6794 - }, - { - "l": "99.6", - "x": 3.0192, - "y": 19.947 - }, - { - "l": "99.6", - "x": 3.1025, - "y": 20.2134 - }, - { - "l": "99.6", - "x": 3.1858, - "y": 20.4798 - }, - { - "l": "99.6", - "x": 3.2692, - "y": 20.7462 - }, - { - "l": "99.6", - "x": 3.3525, - "y": 21.0132 - }, - { - "l": "99.6", - "x": 3.4358, - "y": 21.2811 - }, - { - "l": "99.6", - "x": 3.5192, - "y": 21.5505 - }, - { - "l": "99.6", - "x": 3.6025, - "y": 21.821 - }, - { - "l": "99.6", - "x": 3.6858, - "y": 22.0923 - }, - { - "l": "99.6", - "x": 3.7692, - "y": 22.3657 - }, - { - "l": "99.6", - "x": 3.8525, - "y": 22.6405 - }, - { - "l": "99.6", - "x": 3.9358, - "y": 22.9162 - }, - { - "l": "99.6", - "x": 4.0, - "y": 23.1298 - } - ] - } - ], - "ofc": null, - "bmi": null - }, - "female": null - } - }, - { - "uk90_child": { - "male": { - "height": null, - "weight": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 4.0, - "y": 12.363 - }, - { - "l": "0.4", - "x": 4.0833, - "y": 12.4763 - }, - { - "l": "0.4", - "x": 4.1667, - "y": 12.5917 - }, - { - "l": "0.4", - "x": 4.25, - "y": 12.7095 - }, - { - "l": "0.4", - "x": 4.3333, - "y": 12.8305 - }, - { - "l": "0.4", - "x": 4.4167, - "y": 12.9531 - }, - { - "l": "0.4", - "x": 4.5, - "y": 13.0787 - }, - { - "l": "0.4", - "x": 4.5833, - "y": 13.2055 - }, - { - "l": "0.4", - "x": 4.6667, - "y": 13.3335 - }, - { - "l": "0.4", - "x": 4.75, - "y": 13.4629 - }, - { - "l": "0.4", - "x": 4.8333, - "y": 13.5922 - }, - { - "l": "0.4", - "x": 4.9167, - "y": 13.7224 - }, - { - "l": "0.4", - "x": 5.0, - "y": 13.8514 - }, - { - "l": "0.4", - "x": 5.0833, - "y": 13.9794 - }, - { - "l": "0.4", - "x": 5.1667, - "y": 14.1062 - }, - { - "l": "0.4", - "x": 5.25, - "y": 14.2311 - }, - { - "l": "0.4", - "x": 5.3333, - "y": 14.355 - }, - { - "l": "0.4", - "x": 5.4167, - "y": 14.4783 - }, - { - "l": "0.4", - "x": 5.5, - "y": 14.6005 - }, - { - "l": "0.4", - "x": 5.5833, - "y": 14.7223 - }, - { - "l": "0.4", - "x": 5.6667, - "y": 14.8437 - }, - { - "l": "0.4", - "x": 5.75, - "y": 14.9652 - }, - { - "l": "0.4", - "x": 5.8333, - "y": 15.0877 - }, - { - "l": "0.4", - "x": 5.9167, - "y": 15.2097 - }, - { - "l": "0.4", - "x": 6.0, - "y": 15.332 - }, - { - "l": "0.4", - "x": 6.0833, - "y": 15.4549 - }, - { - "l": "0.4", - "x": 6.1667, - "y": 15.5773 - }, - { - "l": "0.4", - "x": 6.25, - "y": 15.7004 - }, - { - "l": "0.4", - "x": 6.3333, - "y": 15.8242 - }, - { - "l": "0.4", - "x": 6.4167, - "y": 15.948 - }, - { - "l": "0.4", - "x": 6.5, - "y": 16.0734 - }, - { - "l": "0.4", - "x": 6.5833, - "y": 16.1986 - }, - { - "l": "0.4", - "x": 6.6667, - "y": 16.3261 - }, - { - "l": "0.4", - "x": 6.75, - "y": 16.4545 - }, - { - "l": "0.4", - "x": 6.8333, - "y": 16.5841 - }, - { - "l": "0.4", - "x": 6.9167, - "y": 16.7144 - }, - { - "l": "0.4", - "x": 7.0, - "y": 16.8455 - }, - { - "l": "0.4", - "x": 7.0833, - "y": 16.9792 - }, - { - "l": "0.4", - "x": 7.1667, - "y": 17.1132 - }, - { - "l": "0.4", - "x": 7.25, - "y": 17.2484 - }, - { - "l": "0.4", - "x": 7.3333, - "y": 17.3838 - }, - { - "l": "0.4", - "x": 7.4167, - "y": 17.5187 - }, - { - "l": "0.4", - "x": 7.5, - "y": 17.6539 - }, - { - "l": "0.4", - "x": 7.5833, - "y": 17.79 - }, - { - "l": "0.4", - "x": 7.6667, - "y": 17.9272 - }, - { - "l": "0.4", - "x": 7.75, - "y": 18.0636 - }, - { - "l": "0.4", - "x": 7.8333, - "y": 18.2015 - }, - { - "l": "0.4", - "x": 7.9167, - "y": 18.3404 - }, - { - "l": "0.4", - "x": 8.0, - "y": 18.4798 - }, - { - "l": "0.4", - "x": 8.0833, - "y": 18.62 - }, - { - "l": "0.4", - "x": 8.1667, - "y": 18.7601 - }, - { - "l": "0.4", - "x": 8.25, - "y": 18.9014 - }, - { - "l": "0.4", - "x": 8.3333, - "y": 19.0419 - }, - { - "l": "0.4", - "x": 8.4167, - "y": 19.1842 - }, - { - "l": "0.4", - "x": 8.5, - "y": 19.3253 - }, - { - "l": "0.4", - "x": 8.5833, - "y": 19.4672 - }, - { - "l": "0.4", - "x": 8.6667, - "y": 19.609 - }, - { - "l": "0.4", - "x": 8.75, - "y": 19.7506 - }, - { - "l": "0.4", - "x": 8.8333, - "y": 19.8917 - }, - { - "l": "0.4", - "x": 8.9167, - "y": 20.0338 - }, - { - "l": "0.4", - "x": 9.0, - "y": 20.1753 - }, - { - "l": "0.4", - "x": 9.0833, - "y": 20.3179 - }, - { - "l": "0.4", - "x": 9.1667, - "y": 20.4613 - }, - { - "l": "0.4", - "x": 9.25, - "y": 20.6063 - }, - { - "l": "0.4", - "x": 9.3333, - "y": 20.7508 - }, - { - "l": "0.4", - "x": 9.4167, - "y": 20.8961 - }, - { - "l": "0.4", - "x": 9.5, - "y": 21.0429 - }, - { - "l": "0.4", - "x": 9.5833, - "y": 21.1903 - }, - { - "l": "0.4", - "x": 9.6667, - "y": 21.3395 - }, - { - "l": "0.4", - "x": 9.75, - "y": 21.4896 - }, - { - "l": "0.4", - "x": 9.8333, - "y": 21.643 - }, - { - "l": "0.4", - "x": 9.9167, - "y": 21.7965 - }, - { - "l": "0.4", - "x": 10.0, - "y": 21.9539 - }, - { - "l": "0.4", - "x": 10.0833, - "y": 22.1102 - }, - { - "l": "0.4", - "x": 10.1667, - "y": 22.268 - }, - { - "l": "0.4", - "x": 10.25, - "y": 22.4269 - }, - { - "l": "0.4", - "x": 10.3333, - "y": 22.5846 - }, - { - "l": "0.4", - "x": 10.4167, - "y": 22.7408 - }, - { - "l": "0.4", - "x": 10.5, - "y": 22.8966 - }, - { - "l": "0.4", - "x": 10.5833, - "y": 23.05 - }, - { - "l": "0.4", - "x": 10.6667, - "y": 23.2012 - }, - { - "l": "0.4", - "x": 10.75, - "y": 23.3522 - }, - { - "l": "0.4", - "x": 10.8333, - "y": 23.5022 - }, - { - "l": "0.4", - "x": 10.9167, - "y": 23.6496 - }, - { - "l": "0.4", - "x": 11.0, - "y": 23.7974 - }, - { - "l": "0.4", - "x": 11.0833, - "y": 23.9423 - }, - { - "l": "0.4", - "x": 11.1667, - "y": 24.088 - }, - { - "l": "0.4", - "x": 11.25, - "y": 24.2344 - }, - { - "l": "0.4", - "x": 11.3333, - "y": 24.3804 - }, - { - "l": "0.4", - "x": 11.4167, - "y": 24.5273 - }, - { - "l": "0.4", - "x": 11.5, - "y": 24.6772 - }, - { - "l": "0.4", - "x": 11.5833, - "y": 24.8298 - }, - { - "l": "0.4", - "x": 11.6667, - "y": 24.9842 - }, - { - "l": "0.4", - "x": 11.75, - "y": 25.1431 - }, - { - "l": "0.4", - "x": 11.8333, - "y": 25.3051 - }, - { - "l": "0.4", - "x": 11.9167, - "y": 25.4708 - }, - { - "l": "0.4", - "x": 12.0, - "y": 25.6419 - }, - { - "l": "0.4", - "x": 12.0833, - "y": 25.8181 - }, - { - "l": "0.4", - "x": 12.1667, - "y": 26.0017 - }, - { - "l": "0.4", - "x": 12.25, - "y": 26.1867 - }, - { - "l": "0.4", - "x": 12.3333, - "y": 26.3792 - }, - { - "l": "0.4", - "x": 12.4167, - "y": 26.575 - }, - { - "l": "0.4", - "x": 12.5, - "y": 26.7775 - }, - { - "l": "0.4", - "x": 12.5833, - "y": 26.9824 - }, - { - "l": "0.4", - "x": 12.6667, - "y": 27.1927 - }, - { - "l": "0.4", - "x": 12.75, - "y": 27.4077 - }, - { - "l": "0.4", - "x": 12.8333, - "y": 27.6265 - }, - { - "l": "0.4", - "x": 12.9167, - "y": 27.8499 - }, - { - "l": "0.4", - "x": 13.0, - "y": 28.079 - }, - { - "l": "0.4", - "x": 13.0833, - "y": 28.311 - }, - { - "l": "0.4", - "x": 13.1667, - "y": 28.5509 - }, - { - "l": "0.4", - "x": 13.25, - "y": 28.7982 - }, - { - "l": "0.4", - "x": 13.3333, - "y": 29.0487 - }, - { - "l": "0.4", - "x": 13.4167, - "y": 29.305 - }, - { - "l": "0.4", - "x": 13.5, - "y": 29.5645 - }, - { - "l": "0.4", - "x": 13.5833, - "y": 29.8302 - }, - { - "l": "0.4", - "x": 13.6667, - "y": 30.1021 - }, - { - "l": "0.4", - "x": 13.75, - "y": 30.3788 - }, - { - "l": "0.4", - "x": 13.8333, - "y": 30.6576 - }, - { - "l": "0.4", - "x": 13.9167, - "y": 30.9448 - }, - { - "l": "0.4", - "x": 14.0, - "y": 31.2371 - }, - { - "l": "0.4", - "x": 14.0833, - "y": 31.534 - }, - { - "l": "0.4", - "x": 14.1667, - "y": 31.8369 - }, - { - "l": "0.4", - "x": 14.25, - "y": 32.1491 - }, - { - "l": "0.4", - "x": 14.3333, - "y": 32.4674 - }, - { - "l": "0.4", - "x": 14.4167, - "y": 32.7915 - }, - { - "l": "0.4", - "x": 14.5, - "y": 33.1251 - }, - { - "l": "0.4", - "x": 14.5833, - "y": 33.4694 - }, - { - "l": "0.4", - "x": 14.6667, - "y": 33.8171 - }, - { - "l": "0.4", - "x": 14.75, - "y": 34.1795 - }, - { - "l": "0.4", - "x": 14.8333, - "y": 34.5456 - }, - { - "l": "0.4", - "x": 14.9167, - "y": 34.9265 - }, - { - "l": "0.4", - "x": 15.0, - "y": 35.31 - }, - { - "l": "0.4", - "x": 15.0833, - "y": 35.7045 - }, - { - "l": "0.4", - "x": 15.1667, - "y": 36.1053 - }, - { - "l": "0.4", - "x": 15.25, - "y": 36.5124 - }, - { - "l": "0.4", - "x": 15.3333, - "y": 36.93 - }, - { - "l": "0.4", - "x": 15.4167, - "y": 37.3502 - }, - { - "l": "0.4", - "x": 15.5, - "y": 37.7794 - }, - { - "l": "0.4", - "x": 15.5833, - "y": 38.2113 - }, - { - "l": "0.4", - "x": 15.6667, - "y": 38.6469 - }, - { - "l": "0.4", - "x": 15.75, - "y": 39.0852 - }, - { - "l": "0.4", - "x": 15.8333, - "y": 39.5268 - }, - { - "l": "0.4", - "x": 15.9167, - "y": 39.9648 - }, - { - "l": "0.4", - "x": 16.0, - "y": 40.399 - }, - { - "l": "0.4", - "x": 16.0833, - "y": 40.8314 - }, - { - "l": "0.4", - "x": 16.1667, - "y": 41.2566 - }, - { - "l": "0.4", - "x": 16.25, - "y": 41.6709 - }, - { - "l": "0.4", - "x": 16.3333, - "y": 42.0793 - }, - { - "l": "0.4", - "x": 16.4167, - "y": 42.4784 - }, - { - "l": "0.4", - "x": 16.5, - "y": 42.8634 - }, - { - "l": "0.4", - "x": 16.5833, - "y": 43.2412 - }, - { - "l": "0.4", - "x": 16.6667, - "y": 43.6041 - }, - { - "l": "0.4", - "x": 16.75, - "y": 43.9555 - }, - { - "l": "0.4", - "x": 16.8333, - "y": 44.2952 - }, - { - "l": "0.4", - "x": 16.9167, - "y": 44.6253 - }, - { - "l": "0.4", - "x": 17.0, - "y": 44.9433 - }, - { - "l": "0.4", - "x": 17.0833, - "y": 45.2513 - }, - { - "l": "0.4", - "x": 17.1667, - "y": 45.5461 - }, - { - "l": "0.4", - "x": 17.25, - "y": 45.8287 - }, - { - "l": "0.4", - "x": 17.3333, - "y": 46.1031 - }, - { - "l": "0.4", - "x": 17.4167, - "y": 46.3637 - }, - { - "l": "0.4", - "x": 17.5, - "y": 46.6181 - }, - { - "l": "0.4", - "x": 17.5833, - "y": 46.8607 - }, - { - "l": "0.4", - "x": 17.6667, - "y": 47.0938 - }, - { - "l": "0.4", - "x": 17.75, - "y": 47.315 - }, - { - "l": "0.4", - "x": 17.8333, - "y": 47.5294 - }, - { - "l": "0.4", - "x": 17.9167, - "y": 47.736 - }, - { - "l": "0.4", - "x": 18.0, - "y": 47.9331 - }, - { - "l": "0.4", - "x": 18.0833, - "y": 48.1218 - }, - { - "l": "0.4", - "x": 18.1667, - "y": 48.3025 - }, - { - "l": "0.4", - "x": 18.25, - "y": 48.4772 - }, - { - "l": "0.4", - "x": 18.3333, - "y": 48.6453 - }, - { - "l": "0.4", - "x": 18.4167, - "y": 48.8044 - }, - { - "l": "0.4", - "x": 18.5, - "y": 48.9591 - }, - { - "l": "0.4", - "x": 18.5833, - "y": 49.1066 - }, - { - "l": "0.4", - "x": 18.6667, - "y": 49.2504 - }, - { - "l": "0.4", - "x": 18.75, - "y": 49.3845 - }, - { - "l": "0.4", - "x": 18.8333, - "y": 49.517 - }, - { - "l": "0.4", - "x": 18.9167, - "y": 49.6425 - }, - { - "l": "0.4", - "x": 19.0, - "y": 49.7621 - }, - { - "l": "0.4", - "x": 19.0833, - "y": 49.8774 - }, - { - "l": "0.4", - "x": 19.1667, - "y": 49.9888 - }, - { - "l": "0.4", - "x": 19.25, - "y": 50.0971 - }, - { - "l": "0.4", - "x": 19.3333, - "y": 50.1997 - }, - { - "l": "0.4", - "x": 19.4167, - "y": 50.2993 - }, - { - "l": "0.4", - "x": 19.5, - "y": 50.3953 - }, - { - "l": "0.4", - "x": 19.5833, - "y": 50.4869 - }, - { - "l": "0.4", - "x": 19.6667, - "y": 50.5783 - }, - { - "l": "0.4", - "x": 19.75, - "y": 50.6683 - }, - { - "l": "0.4", - "x": 19.8333, - "y": 50.7524 - }, - { - "l": "0.4", - "x": 19.9167, - "y": 50.8346 - }, - { - "l": "0.4", - "x": 20.0, - "y": 50.9186 - }, - { - "l": "0.4", - "x": 20.0, - "y": 50.9186 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 4.0, - "y": 13.2542 - }, - { - "l": "2.0", - "x": 4.0833, - "y": 13.3755 - }, - { - "l": "2.0", - "x": 4.1667, - "y": 13.4993 - }, - { - "l": "2.0", - "x": 4.25, - "y": 13.6256 - }, - { - "l": "2.0", - "x": 4.3333, - "y": 13.7551 - }, - { - "l": "2.0", - "x": 4.4167, - "y": 13.8867 - }, - { - "l": "2.0", - "x": 4.5, - "y": 14.0212 - }, - { - "l": "2.0", - "x": 4.5833, - "y": 14.1571 - }, - { - "l": "2.0", - "x": 4.6667, - "y": 14.2943 - }, - { - "l": "2.0", - "x": 4.75, - "y": 14.4331 - }, - { - "l": "2.0", - "x": 4.8333, - "y": 14.5715 - }, - { - "l": "2.0", - "x": 4.9167, - "y": 14.7113 - }, - { - "l": "2.0", - "x": 5.0, - "y": 14.8498 - }, - { - "l": "2.0", - "x": 5.0833, - "y": 14.9871 - }, - { - "l": "2.0", - "x": 5.1667, - "y": 15.1233 - }, - { - "l": "2.0", - "x": 5.25, - "y": 15.2574 - }, - { - "l": "2.0", - "x": 5.3333, - "y": 15.3906 - }, - { - "l": "2.0", - "x": 5.4167, - "y": 15.5231 - }, - { - "l": "2.0", - "x": 5.5, - "y": 15.6545 - }, - { - "l": "2.0", - "x": 5.5833, - "y": 15.7855 - }, - { - "l": "2.0", - "x": 5.6667, - "y": 15.9161 - }, - { - "l": "2.0", - "x": 5.75, - "y": 16.047 - }, - { - "l": "2.0", - "x": 5.8333, - "y": 16.1791 - }, - { - "l": "2.0", - "x": 5.9167, - "y": 16.3107 - }, - { - "l": "2.0", - "x": 6.0, - "y": 16.4427 - }, - { - "l": "2.0", - "x": 6.0833, - "y": 16.5755 - }, - { - "l": "2.0", - "x": 6.1667, - "y": 16.7078 - }, - { - "l": "2.0", - "x": 6.25, - "y": 16.8407 - }, - { - "l": "2.0", - "x": 6.3333, - "y": 16.9747 - }, - { - "l": "2.0", - "x": 6.4167, - "y": 17.1087 - }, - { - "l": "2.0", - "x": 6.5, - "y": 17.2442 - }, - { - "l": "2.0", - "x": 6.5833, - "y": 17.3801 - }, - { - "l": "2.0", - "x": 6.6667, - "y": 17.5181 - }, - { - "l": "2.0", - "x": 6.75, - "y": 17.6572 - }, - { - "l": "2.0", - "x": 6.8333, - "y": 17.7978 - }, - { - "l": "2.0", - "x": 6.9167, - "y": 17.9392 - }, - { - "l": "2.0", - "x": 7.0, - "y": 18.0819 - }, - { - "l": "2.0", - "x": 7.0833, - "y": 18.2272 - }, - { - "l": "2.0", - "x": 7.1667, - "y": 18.3729 - }, - { - "l": "2.0", - "x": 7.25, - "y": 18.5199 - }, - { - "l": "2.0", - "x": 7.3333, - "y": 18.6672 - }, - { - "l": "2.0", - "x": 7.4167, - "y": 18.8144 - }, - { - "l": "2.0", - "x": 7.5, - "y": 18.962 - }, - { - "l": "2.0", - "x": 7.5833, - "y": 19.1105 - }, - { - "l": "2.0", - "x": 7.6667, - "y": 19.2601 - }, - { - "l": "2.0", - "x": 7.75, - "y": 19.4095 - }, - { - "l": "2.0", - "x": 7.8333, - "y": 19.5601 - }, - { - "l": "2.0", - "x": 7.9167, - "y": 19.712 - }, - { - "l": "2.0", - "x": 8.0, - "y": 19.8644 - }, - { - "l": "2.0", - "x": 8.0833, - "y": 20.0179 - }, - { - "l": "2.0", - "x": 8.1667, - "y": 20.1716 - }, - { - "l": "2.0", - "x": 8.25, - "y": 20.3262 - }, - { - "l": "2.0", - "x": 8.3333, - "y": 20.4807 - }, - { - "l": "2.0", - "x": 8.4167, - "y": 20.6365 - }, - { - "l": "2.0", - "x": 8.5, - "y": 20.7919 - }, - { - "l": "2.0", - "x": 8.5833, - "y": 20.948 - }, - { - "l": "2.0", - "x": 8.6667, - "y": 21.104 - }, - { - "l": "2.0", - "x": 8.75, - "y": 21.26 - }, - { - "l": "2.0", - "x": 8.8333, - "y": 21.4158 - }, - { - "l": "2.0", - "x": 8.9167, - "y": 21.5727 - }, - { - "l": "2.0", - "x": 9.0, - "y": 21.7293 - }, - { - "l": "2.0", - "x": 9.0833, - "y": 21.8874 - }, - { - "l": "2.0", - "x": 9.1667, - "y": 22.0462 - }, - { - "l": "2.0", - "x": 9.25, - "y": 22.2068 - }, - { - "l": "2.0", - "x": 9.3333, - "y": 22.3672 - }, - { - "l": "2.0", - "x": 9.4167, - "y": 22.5287 - }, - { - "l": "2.0", - "x": 9.5, - "y": 22.6916 - }, - { - "l": "2.0", - "x": 9.5833, - "y": 22.8558 - }, - { - "l": "2.0", - "x": 9.6667, - "y": 23.0222 - }, - { - "l": "2.0", - "x": 9.75, - "y": 23.1897 - }, - { - "l": "2.0", - "x": 9.8333, - "y": 23.3606 - }, - { - "l": "2.0", - "x": 9.9167, - "y": 23.5326 - }, - { - "l": "2.0", - "x": 10.0, - "y": 23.7082 - }, - { - "l": "2.0", - "x": 10.0833, - "y": 23.8838 - }, - { - "l": "2.0", - "x": 10.1667, - "y": 24.0612 - }, - { - "l": "2.0", - "x": 10.25, - "y": 24.2396 - }, - { - "l": "2.0", - "x": 10.3333, - "y": 24.4175 - }, - { - "l": "2.0", - "x": 10.4167, - "y": 24.5944 - }, - { - "l": "2.0", - "x": 10.5, - "y": 24.771 - }, - { - "l": "2.0", - "x": 10.5833, - "y": 24.9457 - }, - { - "l": "2.0", - "x": 10.6667, - "y": 25.1186 - }, - { - "l": "2.0", - "x": 10.75, - "y": 25.2916 - }, - { - "l": "2.0", - "x": 10.8333, - "y": 25.4636 - }, - { - "l": "2.0", - "x": 10.9167, - "y": 25.6341 - }, - { - "l": "2.0", - "x": 11.0, - "y": 25.8047 - }, - { - "l": "2.0", - "x": 11.0833, - "y": 25.9736 - }, - { - "l": "2.0", - "x": 11.1667, - "y": 26.1434 - }, - { - "l": "2.0", - "x": 11.25, - "y": 26.3143 - }, - { - "l": "2.0", - "x": 11.3333, - "y": 26.4854 - }, - { - "l": "2.0", - "x": 11.4167, - "y": 26.6583 - }, - { - "l": "2.0", - "x": 11.5, - "y": 26.8348 - }, - { - "l": "2.0", - "x": 11.5833, - "y": 27.0149 - }, - { - "l": "2.0", - "x": 11.6667, - "y": 27.198 - }, - { - "l": "2.0", - "x": 11.75, - "y": 27.3863 - }, - { - "l": "2.0", - "x": 11.8333, - "y": 27.5789 - }, - { - "l": "2.0", - "x": 11.9167, - "y": 27.7765 - }, - { - "l": "2.0", - "x": 12.0, - "y": 27.981 - }, - { - "l": "2.0", - "x": 12.0833, - "y": 28.1914 - }, - { - "l": "2.0", - "x": 12.1667, - "y": 28.4102 - }, - { - "l": "2.0", - "x": 12.25, - "y": 28.6326 - }, - { - "l": "2.0", - "x": 12.3333, - "y": 28.8636 - }, - { - "l": "2.0", - "x": 12.4167, - "y": 29.0998 - }, - { - "l": "2.0", - "x": 12.5, - "y": 29.3438 - }, - { - "l": "2.0", - "x": 12.5833, - "y": 29.5921 - }, - { - "l": "2.0", - "x": 12.6667, - "y": 29.8471 - }, - { - "l": "2.0", - "x": 12.75, - "y": 30.1081 - }, - { - "l": "2.0", - "x": 12.8333, - "y": 30.3749 - }, - { - "l": "2.0", - "x": 12.9167, - "y": 30.648 - }, - { - "l": "2.0", - "x": 13.0, - "y": 30.9281 - }, - { - "l": "2.0", - "x": 13.0833, - "y": 31.2131 - }, - { - "l": "2.0", - "x": 13.1667, - "y": 31.5067 - }, - { - "l": "2.0", - "x": 13.25, - "y": 31.8082 - }, - { - "l": "2.0", - "x": 13.3333, - "y": 32.1148 - }, - { - "l": "2.0", - "x": 13.4167, - "y": 32.4274 - }, - { - "l": "2.0", - "x": 13.5, - "y": 32.7443 - }, - { - "l": "2.0", - "x": 13.5833, - "y": 33.0673 - }, - { - "l": "2.0", - "x": 13.6667, - "y": 33.3964 - }, - { - "l": "2.0", - "x": 13.75, - "y": 33.7299 - }, - { - "l": "2.0", - "x": 13.8333, - "y": 34.0662 - }, - { - "l": "2.0", - "x": 13.9167, - "y": 34.4091 - }, - { - "l": "2.0", - "x": 14.0, - "y": 34.7564 - }, - { - "l": "2.0", - "x": 14.0833, - "y": 35.1072 - }, - { - "l": "2.0", - "x": 14.1667, - "y": 35.4628 - }, - { - "l": "2.0", - "x": 14.25, - "y": 35.825 - }, - { - "l": "2.0", - "x": 14.3333, - "y": 36.1917 - }, - { - "l": "2.0", - "x": 14.4167, - "y": 36.5624 - }, - { - "l": "2.0", - "x": 14.5, - "y": 36.9394 - }, - { - "l": "2.0", - "x": 14.5833, - "y": 37.3235 - }, - { - "l": "2.0", - "x": 14.6667, - "y": 37.7096 - }, - { - "l": "2.0", - "x": 14.75, - "y": 38.1056 - }, - { - "l": "2.0", - "x": 14.8333, - "y": 38.5038 - }, - { - "l": "2.0", - "x": 14.9167, - "y": 38.9115 - }, - { - "l": "2.0", - "x": 15.0, - "y": 39.3202 - }, - { - "l": "2.0", - "x": 15.0833, - "y": 39.7359 - }, - { - "l": "2.0", - "x": 15.1667, - "y": 40.1548 - }, - { - "l": "2.0", - "x": 15.25, - "y": 40.577 - }, - { - "l": "2.0", - "x": 15.3333, - "y": 41.0056 - }, - { - "l": "2.0", - "x": 15.4167, - "y": 41.4349 - }, - { - "l": "2.0", - "x": 15.5, - "y": 41.8691 - }, - { - "l": "2.0", - "x": 15.5833, - "y": 42.3041 - }, - { - "l": "2.0", - "x": 15.6667, - "y": 42.7401 - }, - { - "l": "2.0", - "x": 15.75, - "y": 43.1762 - }, - { - "l": "2.0", - "x": 15.8333, - "y": 43.6127 - }, - { - "l": "2.0", - "x": 15.9167, - "y": 44.0442 - }, - { - "l": "2.0", - "x": 16.0, - "y": 44.471 - }, - { - "l": "2.0", - "x": 16.0833, - "y": 44.8936 - }, - { - "l": "2.0", - "x": 16.1667, - "y": 45.3081 - }, - { - "l": "2.0", - "x": 16.25, - "y": 45.712 - }, - { - "l": "2.0", - "x": 16.3333, - "y": 46.1085 - }, - { - "l": "2.0", - "x": 16.4167, - "y": 46.4952 - }, - { - "l": "2.0", - "x": 16.5, - "y": 46.8687 - }, - { - "l": "2.0", - "x": 16.5833, - "y": 47.2336 - }, - { - "l": "2.0", - "x": 16.6667, - "y": 47.5848 - }, - { - "l": "2.0", - "x": 16.75, - "y": 47.9246 - }, - { - "l": "2.0", - "x": 16.8333, - "y": 48.2528 - }, - { - "l": "2.0", - "x": 16.9167, - "y": 48.5713 - }, - { - "l": "2.0", - "x": 17.0, - "y": 48.8782 - }, - { - "l": "2.0", - "x": 17.0833, - "y": 49.1753 - }, - { - "l": "2.0", - "x": 17.1667, - "y": 49.4603 - }, - { - "l": "2.0", - "x": 17.25, - "y": 49.7335 - }, - { - "l": "2.0", - "x": 17.3333, - "y": 49.9987 - }, - { - "l": "2.0", - "x": 17.4167, - "y": 50.2512 - }, - { - "l": "2.0", - "x": 17.5, - "y": 50.4969 - }, - { - "l": "2.0", - "x": 17.5833, - "y": 50.7319 - }, - { - "l": "2.0", - "x": 17.6667, - "y": 50.9577 - }, - { - "l": "2.0", - "x": 17.75, - "y": 51.1727 - }, - { - "l": "2.0", - "x": 17.8333, - "y": 51.3813 - }, - { - "l": "2.0", - "x": 17.9167, - "y": 51.582 - }, - { - "l": "2.0", - "x": 18.0, - "y": 51.7735 - }, - { - "l": "2.0", - "x": 18.0833, - "y": 51.9574 - }, - { - "l": "2.0", - "x": 18.1667, - "y": 52.1336 - }, - { - "l": "2.0", - "x": 18.25, - "y": 52.3038 - }, - { - "l": "2.0", - "x": 18.3333, - "y": 52.4675 - }, - { - "l": "2.0", - "x": 18.4167, - "y": 52.6231 - }, - { - "l": "2.0", - "x": 18.5, - "y": 52.7743 - }, - { - "l": "2.0", - "x": 18.5833, - "y": 52.9186 - }, - { - "l": "2.0", - "x": 18.6667, - "y": 53.0588 - }, - { - "l": "2.0", - "x": 18.75, - "y": 53.1906 - }, - { - "l": "2.0", - "x": 18.8333, - "y": 53.3198 - }, - { - "l": "2.0", - "x": 18.9167, - "y": 53.4428 - }, - { - "l": "2.0", - "x": 19.0, - "y": 53.5606 - }, - { - "l": "2.0", - "x": 19.0833, - "y": 53.6735 - }, - { - "l": "2.0", - "x": 19.1667, - "y": 53.783 - }, - { - "l": "2.0", - "x": 19.25, - "y": 53.8889 - }, - { - "l": "2.0", - "x": 19.3333, - "y": 53.9898 - }, - { - "l": "2.0", - "x": 19.4167, - "y": 54.0875 - }, - { - "l": "2.0", - "x": 19.5, - "y": 54.1819 - }, - { - "l": "2.0", - "x": 19.5833, - "y": 54.2725 - }, - { - "l": "2.0", - "x": 19.6667, - "y": 54.3622 - }, - { - "l": "2.0", - "x": 19.75, - "y": 54.4503 - }, - { - "l": "2.0", - "x": 19.8333, - "y": 54.5335 - }, - { - "l": "2.0", - "x": 19.9167, - "y": 54.6147 - }, - { - "l": "2.0", - "x": 20.0, - "y": 54.6968 - }, - { - "l": "2.0", - "x": 20.0, - "y": 54.6968 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 4.0, - "y": 14.2399 - }, - { - "l": "9.0", - "x": 4.0833, - "y": 14.3709 - }, - { - "l": "9.0", - "x": 4.1667, - "y": 14.5047 - }, - { - "l": "9.0", - "x": 4.25, - "y": 14.6412 - }, - { - "l": "9.0", - "x": 4.3333, - "y": 14.781 - }, - { - "l": "9.0", - "x": 4.4167, - "y": 14.9235 - }, - { - "l": "9.0", - "x": 4.5, - "y": 15.0689 - }, - { - "l": "9.0", - "x": 4.5833, - "y": 15.2158 - }, - { - "l": "9.0", - "x": 4.6667, - "y": 15.3642 - }, - { - "l": "9.0", - "x": 4.75, - "y": 15.5144 - }, - { - "l": "9.0", - "x": 4.8333, - "y": 15.6642 - }, - { - "l": "9.0", - "x": 4.9167, - "y": 15.8155 - }, - { - "l": "9.0", - "x": 5.0, - "y": 15.9656 - }, - { - "l": "9.0", - "x": 5.0833, - "y": 16.1145 - }, - { - "l": "9.0", - "x": 5.1667, - "y": 16.2622 - }, - { - "l": "9.0", - "x": 5.25, - "y": 16.4078 - }, - { - "l": "9.0", - "x": 5.3333, - "y": 16.5523 - }, - { - "l": "9.0", - "x": 5.4167, - "y": 16.6962 - }, - { - "l": "9.0", - "x": 5.5, - "y": 16.8391 - }, - { - "l": "9.0", - "x": 5.5833, - "y": 16.9817 - }, - { - "l": "9.0", - "x": 5.6667, - "y": 17.1239 - }, - { - "l": "9.0", - "x": 5.75, - "y": 17.2665 - }, - { - "l": "9.0", - "x": 5.8333, - "y": 17.4105 - }, - { - "l": "9.0", - "x": 5.9167, - "y": 17.5543 - }, - { - "l": "9.0", - "x": 6.0, - "y": 17.6986 - }, - { - "l": "9.0", - "x": 6.0833, - "y": 17.8438 - }, - { - "l": "9.0", - "x": 6.1667, - "y": 17.9886 - }, - { - "l": "9.0", - "x": 6.25, - "y": 18.134 - }, - { - "l": "9.0", - "x": 6.3333, - "y": 18.2808 - }, - { - "l": "9.0", - "x": 6.4167, - "y": 18.428 - }, - { - "l": "9.0", - "x": 6.5, - "y": 18.5765 - }, - { - "l": "9.0", - "x": 6.5833, - "y": 18.7259 - }, - { - "l": "9.0", - "x": 6.6667, - "y": 18.8775 - }, - { - "l": "9.0", - "x": 6.75, - "y": 19.0305 - }, - { - "l": "9.0", - "x": 6.8333, - "y": 19.1851 - }, - { - "l": "9.0", - "x": 6.9167, - "y": 19.341 - }, - { - "l": "9.0", - "x": 7.0, - "y": 19.4986 - }, - { - "l": "9.0", - "x": 7.0833, - "y": 19.6589 - }, - { - "l": "9.0", - "x": 7.1667, - "y": 19.8198 - }, - { - "l": "9.0", - "x": 7.25, - "y": 19.9822 - }, - { - "l": "9.0", - "x": 7.3333, - "y": 20.145 - }, - { - "l": "9.0", - "x": 7.4167, - "y": 20.3081 - }, - { - "l": "9.0", - "x": 7.5, - "y": 20.4718 - }, - { - "l": "9.0", - "x": 7.5833, - "y": 20.6365 - }, - { - "l": "9.0", - "x": 7.6667, - "y": 20.8024 - }, - { - "l": "9.0", - "x": 7.75, - "y": 20.9685 - }, - { - "l": "9.0", - "x": 7.8333, - "y": 21.1358 - }, - { - "l": "9.0", - "x": 7.9167, - "y": 21.3046 - }, - { - "l": "9.0", - "x": 8.0, - "y": 21.474 - }, - { - "l": "9.0", - "x": 8.0833, - "y": 21.6447 - }, - { - "l": "9.0", - "x": 8.1667, - "y": 21.816 - }, - { - "l": "9.0", - "x": 8.25, - "y": 21.9879 - }, - { - "l": "9.0", - "x": 8.3333, - "y": 22.1603 - }, - { - "l": "9.0", - "x": 8.4167, - "y": 22.3339 - }, - { - "l": "9.0", - "x": 8.5, - "y": 22.5076 - }, - { - "l": "9.0", - "x": 8.5833, - "y": 22.6818 - }, - { - "l": "9.0", - "x": 8.6667, - "y": 22.8561 - }, - { - "l": "9.0", - "x": 8.75, - "y": 23.0307 - }, - { - "l": "9.0", - "x": 8.8333, - "y": 23.2052 - }, - { - "l": "9.0", - "x": 8.9167, - "y": 23.3809 - }, - { - "l": "9.0", - "x": 9.0, - "y": 23.5568 - }, - { - "l": "9.0", - "x": 9.0833, - "y": 23.7344 - }, - { - "l": "9.0", - "x": 9.1667, - "y": 23.9127 - }, - { - "l": "9.0", - "x": 9.25, - "y": 24.0928 - }, - { - "l": "9.0", - "x": 9.3333, - "y": 24.2731 - }, - { - "l": "9.0", - "x": 9.4167, - "y": 24.4549 - }, - { - "l": "9.0", - "x": 9.5, - "y": 24.6381 - }, - { - "l": "9.0", - "x": 9.5833, - "y": 24.8231 - }, - { - "l": "9.0", - "x": 9.6667, - "y": 25.0107 - }, - { - "l": "9.0", - "x": 9.75, - "y": 25.1996 - }, - { - "l": "9.0", - "x": 9.8333, - "y": 25.3921 - }, - { - "l": "9.0", - "x": 9.9167, - "y": 25.5867 - }, - { - "l": "9.0", - "x": 10.0, - "y": 25.7848 - }, - { - "l": "9.0", - "x": 10.0833, - "y": 25.9838 - }, - { - "l": "9.0", - "x": 10.1667, - "y": 26.185 - }, - { - "l": "9.0", - "x": 10.25, - "y": 26.3872 - }, - { - "l": "9.0", - "x": 10.3333, - "y": 26.5896 - }, - { - "l": "9.0", - "x": 10.4167, - "y": 26.7915 - }, - { - "l": "9.0", - "x": 10.5, - "y": 26.9931 - }, - { - "l": "9.0", - "x": 10.5833, - "y": 27.1934 - }, - { - "l": "9.0", - "x": 10.6667, - "y": 27.3924 - }, - { - "l": "9.0", - "x": 10.75, - "y": 27.5917 - }, - { - "l": "9.0", - "x": 10.8333, - "y": 27.7901 - }, - { - "l": "9.0", - "x": 10.9167, - "y": 27.988 - }, - { - "l": "9.0", - "x": 11.0, - "y": 28.1859 - }, - { - "l": "9.0", - "x": 11.0833, - "y": 28.3831 - }, - { - "l": "9.0", - "x": 11.1667, - "y": 28.5815 - }, - { - "l": "9.0", - "x": 11.25, - "y": 28.7812 - }, - { - "l": "9.0", - "x": 11.3333, - "y": 28.982 - }, - { - "l": "9.0", - "x": 11.4167, - "y": 29.1853 - }, - { - "l": "9.0", - "x": 11.5, - "y": 29.3928 - }, - { - "l": "9.0", - "x": 11.5833, - "y": 29.6051 - }, - { - "l": "9.0", - "x": 11.6667, - "y": 29.8214 - }, - { - "l": "9.0", - "x": 11.75, - "y": 30.0436 - }, - { - "l": "9.0", - "x": 11.8333, - "y": 30.2715 - }, - { - "l": "9.0", - "x": 11.9167, - "y": 30.5059 - }, - { - "l": "9.0", - "x": 12.0, - "y": 30.7485 - }, - { - "l": "9.0", - "x": 12.0833, - "y": 30.998 - }, - { - "l": "9.0", - "x": 12.1667, - "y": 31.2568 - }, - { - "l": "9.0", - "x": 12.25, - "y": 31.5218 - }, - { - "l": "9.0", - "x": 12.3333, - "y": 31.7964 - }, - { - "l": "9.0", - "x": 12.4167, - "y": 32.0781 - }, - { - "l": "9.0", - "x": 12.5, - "y": 32.3686 - }, - { - "l": "9.0", - "x": 12.5833, - "y": 32.6658 - }, - { - "l": "9.0", - "x": 12.6667, - "y": 32.9708 - }, - { - "l": "9.0", - "x": 12.75, - "y": 33.2835 - }, - { - "l": "9.0", - "x": 12.8333, - "y": 33.6039 - }, - { - "l": "9.0", - "x": 12.9167, - "y": 33.9324 - }, - { - "l": "9.0", - "x": 13.0, - "y": 34.2691 - }, - { - "l": "9.0", - "x": 13.0833, - "y": 34.6131 - }, - { - "l": "9.0", - "x": 13.1667, - "y": 34.9662 - }, - { - "l": "9.0", - "x": 13.25, - "y": 35.3277 - }, - { - "l": "9.0", - "x": 13.3333, - "y": 35.696 - }, - { - "l": "9.0", - "x": 13.4167, - "y": 36.0706 - }, - { - "l": "9.0", - "x": 13.5, - "y": 36.4505 - }, - { - "l": "9.0", - "x": 13.5833, - "y": 36.8364 - }, - { - "l": "9.0", - "x": 13.6667, - "y": 37.228 - }, - { - "l": "9.0", - "x": 13.75, - "y": 37.6237 - }, - { - "l": "9.0", - "x": 13.8333, - "y": 38.0224 - }, - { - "l": "9.0", - "x": 13.9167, - "y": 38.4262 - }, - { - "l": "9.0", - "x": 14.0, - "y": 38.8332 - }, - { - "l": "9.0", - "x": 14.0833, - "y": 39.2427 - }, - { - "l": "9.0", - "x": 14.1667, - "y": 39.6551 - }, - { - "l": "9.0", - "x": 14.25, - "y": 40.0717 - }, - { - "l": "9.0", - "x": 14.3333, - "y": 40.4906 - }, - { - "l": "9.0", - "x": 14.4167, - "y": 40.9113 - }, - { - "l": "9.0", - "x": 14.5, - "y": 41.3349 - }, - { - "l": "9.0", - "x": 14.5833, - "y": 41.7617 - }, - { - "l": "9.0", - "x": 14.6667, - "y": 42.1888 - }, - { - "l": "9.0", - "x": 14.75, - "y": 42.6205 - }, - { - "l": "9.0", - "x": 14.8333, - "y": 43.0524 - }, - { - "l": "9.0", - "x": 14.9167, - "y": 43.4884 - }, - { - "l": "9.0", - "x": 15.0, - "y": 43.9233 - }, - { - "l": "9.0", - "x": 15.0833, - "y": 44.3608 - }, - { - "l": "9.0", - "x": 15.1667, - "y": 44.7979 - }, - { - "l": "9.0", - "x": 15.25, - "y": 45.2351 - }, - { - "l": "9.0", - "x": 15.3333, - "y": 45.674 - }, - { - "l": "9.0", - "x": 15.4167, - "y": 46.1114 - }, - { - "l": "9.0", - "x": 15.5, - "y": 46.5494 - }, - { - "l": "9.0", - "x": 15.5833, - "y": 46.9855 - }, - { - "l": "9.0", - "x": 15.6667, - "y": 47.4198 - }, - { - "l": "9.0", - "x": 15.75, - "y": 47.8513 - }, - { - "l": "9.0", - "x": 15.8333, - "y": 48.28 - }, - { - "l": "9.0", - "x": 15.9167, - "y": 48.7022 - }, - { - "l": "9.0", - "x": 16.0, - "y": 49.1182 - }, - { - "l": "9.0", - "x": 16.0833, - "y": 49.5277 - }, - { - "l": "9.0", - "x": 16.1667, - "y": 49.9279 - }, - { - "l": "9.0", - "x": 16.25, - "y": 50.3178 - }, - { - "l": "9.0", - "x": 16.3333, - "y": 50.6987 - }, - { - "l": "9.0", - "x": 16.4167, - "y": 51.0697 - }, - { - "l": "9.0", - "x": 16.5, - "y": 51.4278 - }, - { - "l": "9.0", - "x": 16.5833, - "y": 51.7766 - }, - { - "l": "9.0", - "x": 16.6667, - "y": 52.1128 - }, - { - "l": "9.0", - "x": 16.75, - "y": 52.4378 - }, - { - "l": "9.0", - "x": 16.8333, - "y": 52.7516 - }, - { - "l": "9.0", - "x": 16.9167, - "y": 53.0558 - }, - { - "l": "9.0", - "x": 17.0, - "y": 53.349 - }, - { - "l": "9.0", - "x": 17.0833, - "y": 53.6327 - }, - { - "l": "9.0", - "x": 17.1667, - "y": 53.9055 - }, - { - "l": "9.0", - "x": 17.25, - "y": 54.1673 - }, - { - "l": "9.0", - "x": 17.3333, - "y": 54.4214 - }, - { - "l": "9.0", - "x": 17.4167, - "y": 54.664 - }, - { - "l": "9.0", - "x": 17.5, - "y": 54.8995 - }, - { - "l": "9.0", - "x": 17.5833, - "y": 55.1253 - }, - { - "l": "9.0", - "x": 17.6667, - "y": 55.3426 - }, - { - "l": "9.0", - "x": 17.75, - "y": 55.5502 - }, - { - "l": "9.0", - "x": 17.8333, - "y": 55.7517 - }, - { - "l": "9.0", - "x": 17.9167, - "y": 55.9457 - }, - { - "l": "9.0", - "x": 18.0, - "y": 56.1306 - }, - { - "l": "9.0", - "x": 18.0833, - "y": 56.3089 - }, - { - "l": "9.0", - "x": 18.1667, - "y": 56.4798 - }, - { - "l": "9.0", - "x": 18.25, - "y": 56.6448 - }, - { - "l": "9.0", - "x": 18.3333, - "y": 56.8036 - }, - { - "l": "9.0", - "x": 18.4167, - "y": 56.9551 - }, - { - "l": "9.0", - "x": 18.5, - "y": 57.1024 - }, - { - "l": "9.0", - "x": 18.5833, - "y": 57.243 - }, - { - "l": "9.0", - "x": 18.6667, - "y": 57.3791 - }, - { - "l": "9.0", - "x": 18.75, - "y": 57.5082 - }, - { - "l": "9.0", - "x": 18.8333, - "y": 57.6339 - }, - { - "l": "9.0", - "x": 18.9167, - "y": 57.754 - }, - { - "l": "9.0", - "x": 19.0, - "y": 57.8697 - }, - { - "l": "9.0", - "x": 19.0833, - "y": 57.98 - }, - { - "l": "9.0", - "x": 19.1667, - "y": 58.0872 - }, - { - "l": "9.0", - "x": 19.25, - "y": 58.1906 - }, - { - "l": "9.0", - "x": 19.3333, - "y": 58.2898 - }, - { - "l": "9.0", - "x": 19.4167, - "y": 58.3853 - }, - { - "l": "9.0", - "x": 19.5, - "y": 58.478 - }, - { - "l": "9.0", - "x": 19.5833, - "y": 58.5673 - }, - { - "l": "9.0", - "x": 19.6667, - "y": 58.6551 - }, - { - "l": "9.0", - "x": 19.75, - "y": 58.7412 - }, - { - "l": "9.0", - "x": 19.8333, - "y": 58.8235 - }, - { - "l": "9.0", - "x": 19.9167, - "y": 58.9035 - }, - { - "l": "9.0", - "x": 20.0, - "y": 58.9838 - }, - { - "l": "9.0", - "x": 20.0, - "y": 58.9838 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 4.0, - "y": 15.3336 - }, - { - "l": "25.0", - "x": 4.0833, - "y": 15.4763 - }, - { - "l": "25.0", - "x": 4.1667, - "y": 15.6222 - }, - { - "l": "25.0", - "x": 4.25, - "y": 15.7711 - }, - { - "l": "25.0", - "x": 4.3333, - "y": 15.9237 - }, - { - "l": "25.0", - "x": 4.4167, - "y": 16.0793 - }, - { - "l": "25.0", - "x": 4.5, - "y": 16.238 - }, - { - "l": "25.0", - "x": 4.5833, - "y": 16.3985 - }, - { - "l": "25.0", - "x": 4.6667, - "y": 16.5606 - }, - { - "l": "25.0", - "x": 4.75, - "y": 16.7249 - }, - { - "l": "25.0", - "x": 4.8333, - "y": 16.8886 - }, - { - "l": "25.0", - "x": 4.9167, - "y": 17.0543 - }, - { - "l": "25.0", - "x": 5.0, - "y": 17.2187 - }, - { - "l": "25.0", - "x": 5.0833, - "y": 17.382 - }, - { - "l": "25.0", - "x": 5.1667, - "y": 17.5439 - }, - { - "l": "25.0", - "x": 5.25, - "y": 17.7037 - }, - { - "l": "25.0", - "x": 5.3333, - "y": 17.8626 - }, - { - "l": "25.0", - "x": 5.4167, - "y": 18.0208 - }, - { - "l": "25.0", - "x": 5.5, - "y": 18.1781 - }, - { - "l": "25.0", - "x": 5.5833, - "y": 18.3353 - }, - { - "l": "25.0", - "x": 5.6667, - "y": 18.4921 - }, - { - "l": "25.0", - "x": 5.75, - "y": 18.6497 - }, - { - "l": "25.0", - "x": 5.8333, - "y": 18.8089 - }, - { - "l": "25.0", - "x": 5.9167, - "y": 18.968 - }, - { - "l": "25.0", - "x": 6.0, - "y": 19.128 - }, - { - "l": "25.0", - "x": 6.0833, - "y": 19.2891 - }, - { - "l": "25.0", - "x": 6.1667, - "y": 19.4499 - }, - { - "l": "25.0", - "x": 6.25, - "y": 19.6115 - }, - { - "l": "25.0", - "x": 6.3333, - "y": 19.7749 - }, - { - "l": "25.0", - "x": 6.4167, - "y": 19.9389 - }, - { - "l": "25.0", - "x": 6.5, - "y": 20.1044 - }, - { - "l": "25.0", - "x": 6.5833, - "y": 20.2714 - }, - { - "l": "25.0", - "x": 6.6667, - "y": 20.4407 - }, - { - "l": "25.0", - "x": 6.75, - "y": 20.6117 - }, - { - "l": "25.0", - "x": 6.8333, - "y": 20.7848 - }, - { - "l": "25.0", - "x": 6.9167, - "y": 20.9597 - }, - { - "l": "25.0", - "x": 7.0, - "y": 21.1368 - }, - { - "l": "25.0", - "x": 7.0833, - "y": 21.3168 - }, - { - "l": "25.0", - "x": 7.1667, - "y": 21.4978 - }, - { - "l": "25.0", - "x": 7.25, - "y": 21.6806 - }, - { - "l": "25.0", - "x": 7.3333, - "y": 21.864 - }, - { - "l": "25.0", - "x": 7.4167, - "y": 22.0483 - }, - { - "l": "25.0", - "x": 7.5, - "y": 22.2333 - }, - { - "l": "25.0", - "x": 7.5833, - "y": 22.4194 - }, - { - "l": "25.0", - "x": 7.6667, - "y": 22.6071 - }, - { - "l": "25.0", - "x": 7.75, - "y": 22.7953 - }, - { - "l": "25.0", - "x": 7.8333, - "y": 22.9849 - }, - { - "l": "25.0", - "x": 7.9167, - "y": 23.1762 - }, - { - "l": "25.0", - "x": 8.0, - "y": 23.3682 - }, - { - "l": "25.0", - "x": 8.0833, - "y": 23.5619 - }, - { - "l": "25.0", - "x": 8.1667, - "y": 23.7565 - }, - { - "l": "25.0", - "x": 8.25, - "y": 23.9515 - }, - { - "l": "25.0", - "x": 8.3333, - "y": 24.1476 - }, - { - "l": "25.0", - "x": 8.4167, - "y": 24.3446 - }, - { - "l": "25.0", - "x": 8.5, - "y": 24.5424 - }, - { - "l": "25.0", - "x": 8.5833, - "y": 24.7407 - }, - { - "l": "25.0", - "x": 8.6667, - "y": 24.9391 - }, - { - "l": "25.0", - "x": 8.75, - "y": 25.1381 - }, - { - "l": "25.0", - "x": 8.8333, - "y": 25.3371 - }, - { - "l": "25.0", - "x": 8.9167, - "y": 25.5375 - }, - { - "l": "25.0", - "x": 9.0, - "y": 25.7383 - }, - { - "l": "25.0", - "x": 9.0833, - "y": 25.9412 - }, - { - "l": "25.0", - "x": 9.1667, - "y": 26.1447 - }, - { - "l": "25.0", - "x": 9.25, - "y": 26.3501 - }, - { - "l": "25.0", - "x": 9.3333, - "y": 26.5561 - }, - { - "l": "25.0", - "x": 9.4167, - "y": 26.7639 - }, - { - "l": "25.0", - "x": 9.5, - "y": 26.9729 - }, - { - "l": "25.0", - "x": 9.5833, - "y": 27.1844 - }, - { - "l": "25.0", - "x": 9.6667, - "y": 27.3987 - }, - { - "l": "25.0", - "x": 9.75, - "y": 27.6146 - }, - { - "l": "25.0", - "x": 9.8333, - "y": 27.8344 - }, - { - "l": "25.0", - "x": 9.9167, - "y": 28.0571 - }, - { - "l": "25.0", - "x": 10.0, - "y": 28.2833 - }, - { - "l": "25.0", - "x": 10.0833, - "y": 28.5114 - }, - { - "l": "25.0", - "x": 10.1667, - "y": 28.7421 - }, - { - "l": "25.0", - "x": 10.25, - "y": 28.9738 - }, - { - "l": "25.0", - "x": 10.3333, - "y": 29.2063 - }, - { - "l": "25.0", - "x": 10.4167, - "y": 29.4389 - }, - { - "l": "25.0", - "x": 10.5, - "y": 29.6712 - }, - { - "l": "25.0", - "x": 10.5833, - "y": 29.9026 - }, - { - "l": "25.0", - "x": 10.6667, - "y": 30.1333 - }, - { - "l": "25.0", - "x": 10.75, - "y": 30.3645 - }, - { - "l": "25.0", - "x": 10.8333, - "y": 30.5949 - }, - { - "l": "25.0", - "x": 10.9167, - "y": 30.8257 - }, - { - "l": "25.0", - "x": 11.0, - "y": 31.0563 - }, - { - "l": "25.0", - "x": 11.0833, - "y": 31.2874 - }, - { - "l": "25.0", - "x": 11.1667, - "y": 31.5198 - }, - { - "l": "25.0", - "x": 11.25, - "y": 31.7539 - }, - { - "l": "25.0", - "x": 11.3333, - "y": 31.9896 - }, - { - "l": "25.0", - "x": 11.4167, - "y": 32.2287 - }, - { - "l": "25.0", - "x": 11.5, - "y": 32.4726 - }, - { - "l": "25.0", - "x": 11.5833, - "y": 32.7224 - }, - { - "l": "25.0", - "x": 11.6667, - "y": 32.9771 - }, - { - "l": "25.0", - "x": 11.75, - "y": 33.2387 - }, - { - "l": "25.0", - "x": 11.8333, - "y": 33.5072 - }, - { - "l": "25.0", - "x": 11.9167, - "y": 33.7836 - }, - { - "l": "25.0", - "x": 12.0, - "y": 34.0695 - }, - { - "l": "25.0", - "x": 12.0833, - "y": 34.3633 - }, - { - "l": "25.0", - "x": 12.1667, - "y": 34.6676 - }, - { - "l": "25.0", - "x": 12.25, - "y": 34.9801 - }, - { - "l": "25.0", - "x": 12.3333, - "y": 35.3036 - }, - { - "l": "25.0", - "x": 12.4167, - "y": 35.6359 - }, - { - "l": "25.0", - "x": 12.5, - "y": 35.9783 - }, - { - "l": "25.0", - "x": 12.5833, - "y": 36.3296 - }, - { - "l": "25.0", - "x": 12.6667, - "y": 36.69 - }, - { - "l": "25.0", - "x": 12.75, - "y": 37.0598 - }, - { - "l": "25.0", - "x": 12.8333, - "y": 37.4389 - }, - { - "l": "25.0", - "x": 12.9167, - "y": 37.8283 - }, - { - "l": "25.0", - "x": 13.0, - "y": 38.227 - }, - { - "l": "25.0", - "x": 13.0833, - "y": 38.6351 - }, - { - "l": "25.0", - "x": 13.1667, - "y": 39.053 - }, - { - "l": "25.0", - "x": 13.25, - "y": 39.4798 - }, - { - "l": "25.0", - "x": 13.3333, - "y": 39.9149 - }, - { - "l": "25.0", - "x": 13.4167, - "y": 40.3564 - }, - { - "l": "25.0", - "x": 13.5, - "y": 40.8042 - }, - { - "l": "25.0", - "x": 13.5833, - "y": 41.2577 - }, - { - "l": "25.0", - "x": 13.6667, - "y": 41.7164 - }, - { - "l": "25.0", - "x": 13.75, - "y": 42.1788 - }, - { - "l": "25.0", - "x": 13.8333, - "y": 42.6441 - }, - { - "l": "25.0", - "x": 13.9167, - "y": 43.1129 - }, - { - "l": "25.0", - "x": 14.0, - "y": 43.5836 - }, - { - "l": "25.0", - "x": 14.0833, - "y": 44.0556 - }, - { - "l": "25.0", - "x": 14.1667, - "y": 44.5285 - }, - { - "l": "25.0", - "x": 14.25, - "y": 45.0027 - }, - { - "l": "25.0", - "x": 14.3333, - "y": 45.4771 - }, - { - "l": "25.0", - "x": 14.4167, - "y": 45.9506 - }, - { - "l": "25.0", - "x": 14.5, - "y": 46.4235 - }, - { - "l": "25.0", - "x": 14.5833, - "y": 46.8955 - }, - { - "l": "25.0", - "x": 14.6667, - "y": 47.3653 - }, - { - "l": "25.0", - "x": 14.75, - "y": 47.8345 - }, - { - "l": "25.0", - "x": 14.8333, - "y": 48.3013 - }, - { - "l": "25.0", - "x": 14.9167, - "y": 48.7668 - }, - { - "l": "25.0", - "x": 15.0, - "y": 49.2283 - }, - { - "l": "25.0", - "x": 15.0833, - "y": 49.688 - }, - { - "l": "25.0", - "x": 15.1667, - "y": 50.1434 - }, - { - "l": "25.0", - "x": 15.25, - "y": 50.5951 - }, - { - "l": "25.0", - "x": 15.3333, - "y": 51.0438 - }, - { - "l": "25.0", - "x": 15.4167, - "y": 51.4878 - }, - { - "l": "25.0", - "x": 15.5, - "y": 51.9283 - }, - { - "l": "25.0", - "x": 15.5833, - "y": 52.3634 - }, - { - "l": "25.0", - "x": 15.6667, - "y": 52.7936 - }, - { - "l": "25.0", - "x": 15.75, - "y": 53.2178 - }, - { - "l": "25.0", - "x": 15.8333, - "y": 53.6358 - }, - { - "l": "25.0", - "x": 15.9167, - "y": 54.0452 - }, - { - "l": "25.0", - "x": 16.0, - "y": 54.4469 - }, - { - "l": "25.0", - "x": 16.0833, - "y": 54.8395 - }, - { - "l": "25.0", - "x": 16.1667, - "y": 55.2216 - }, - { - "l": "25.0", - "x": 16.25, - "y": 55.5932 - }, - { - "l": "25.0", - "x": 16.3333, - "y": 55.9545 - }, - { - "l": "25.0", - "x": 16.4167, - "y": 56.3057 - }, - { - "l": "25.0", - "x": 16.5, - "y": 56.6444 - }, - { - "l": "25.0", - "x": 16.5833, - "y": 56.9733 - }, - { - "l": "25.0", - "x": 16.6667, - "y": 57.2907 - }, - { - "l": "25.0", - "x": 16.75, - "y": 57.5975 - }, - { - "l": "25.0", - "x": 16.8333, - "y": 57.8937 - }, - { - "l": "25.0", - "x": 16.9167, - "y": 58.1803 - }, - { - "l": "25.0", - "x": 17.0, - "y": 58.4571 - }, - { - "l": "25.0", - "x": 17.0833, - "y": 58.7249 - }, - { - "l": "25.0", - "x": 17.1667, - "y": 58.9829 - }, - { - "l": "25.0", - "x": 17.25, - "y": 59.2311 - }, - { - "l": "25.0", - "x": 17.3333, - "y": 59.4721 - }, - { - "l": "25.0", - "x": 17.4167, - "y": 59.7026 - }, - { - "l": "25.0", - "x": 17.5, - "y": 59.9265 - }, - { - "l": "25.0", - "x": 17.5833, - "y": 60.1416 - }, - { - "l": "25.0", - "x": 17.6667, - "y": 60.349 - }, - { - "l": "25.0", - "x": 17.75, - "y": 60.5478 - }, - { - "l": "25.0", - "x": 17.8333, - "y": 60.7413 - }, - { - "l": "25.0", - "x": 17.9167, - "y": 60.9275 - }, - { - "l": "25.0", - "x": 18.0, - "y": 61.1052 - }, - { - "l": "25.0", - "x": 18.0833, - "y": 61.2768 - }, - { - "l": "25.0", - "x": 18.1667, - "y": 61.4419 - }, - { - "l": "25.0", - "x": 18.25, - "y": 61.601 - }, - { - "l": "25.0", - "x": 18.3333, - "y": 61.7545 - }, - { - "l": "25.0", - "x": 18.4167, - "y": 61.9014 - }, - { - "l": "25.0", - "x": 18.5, - "y": 62.0442 - }, - { - "l": "25.0", - "x": 18.5833, - "y": 62.1809 - }, - { - "l": "25.0", - "x": 18.6667, - "y": 62.3127 - }, - { - "l": "25.0", - "x": 18.75, - "y": 62.4388 - }, - { - "l": "25.0", - "x": 18.8333, - "y": 62.5609 - }, - { - "l": "25.0", - "x": 18.9167, - "y": 62.6779 - }, - { - "l": "25.0", - "x": 19.0, - "y": 62.7911 - }, - { - "l": "25.0", - "x": 19.0833, - "y": 62.8989 - }, - { - "l": "25.0", - "x": 19.1667, - "y": 63.0035 - }, - { - "l": "25.0", - "x": 19.25, - "y": 63.1043 - }, - { - "l": "25.0", - "x": 19.3333, - "y": 63.2016 - }, - { - "l": "25.0", - "x": 19.4167, - "y": 63.295 - }, - { - "l": "25.0", - "x": 19.5, - "y": 63.3858 - }, - { - "l": "25.0", - "x": 19.5833, - "y": 63.4737 - }, - { - "l": "25.0", - "x": 19.6667, - "y": 63.5597 - }, - { - "l": "25.0", - "x": 19.75, - "y": 63.6438 - }, - { - "l": "25.0", - "x": 19.8333, - "y": 63.725 - }, - { - "l": "25.0", - "x": 19.9167, - "y": 63.8039 - }, - { - "l": "25.0", - "x": 20.0, - "y": 63.8823 - }, - { - "l": "25.0", - "x": 20.0, - "y": 63.8823 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 4.0, - "y": 16.551 - }, - { - "l": "50.0", - "x": 4.0833, - "y": 16.7081 - }, - { - "l": "50.0", - "x": 4.1667, - "y": 16.8689 - }, - { - "l": "50.0", - "x": 4.25, - "y": 17.033 - }, - { - "l": "50.0", - "x": 4.3333, - "y": 17.2011 - }, - { - "l": "50.0", - "x": 4.4167, - "y": 17.3729 - }, - { - "l": "50.0", - "x": 4.5, - "y": 17.548 - }, - { - "l": "50.0", - "x": 4.5833, - "y": 17.7253 - }, - { - "l": "50.0", - "x": 4.6667, - "y": 17.9043 - }, - { - "l": "50.0", - "x": 4.75, - "y": 18.086 - }, - { - "l": "50.0", - "x": 4.8333, - "y": 18.2673 - }, - { - "l": "50.0", - "x": 4.9167, - "y": 18.4507 - }, - { - "l": "50.0", - "x": 5.0, - "y": 18.633 - }, - { - "l": "50.0", - "x": 5.0833, - "y": 18.8143 - }, - { - "l": "50.0", - "x": 5.1667, - "y": 18.9942 - }, - { - "l": "50.0", - "x": 5.25, - "y": 19.172 - }, - { - "l": "50.0", - "x": 5.3333, - "y": 19.349 - }, - { - "l": "50.0", - "x": 5.4167, - "y": 19.5253 - }, - { - "l": "50.0", - "x": 5.5, - "y": 19.701 - }, - { - "l": "50.0", - "x": 5.5833, - "y": 19.8767 - }, - { - "l": "50.0", - "x": 5.6667, - "y": 20.0523 - }, - { - "l": "50.0", - "x": 5.75, - "y": 20.229 - }, - { - "l": "50.0", - "x": 5.8333, - "y": 20.4077 - }, - { - "l": "50.0", - "x": 5.9167, - "y": 20.5867 - }, - { - "l": "50.0", - "x": 6.0, - "y": 20.767 - }, - { - "l": "50.0", - "x": 6.0833, - "y": 20.9487 - }, - { - "l": "50.0", - "x": 6.1667, - "y": 21.1303 - }, - { - "l": "50.0", - "x": 6.25, - "y": 21.313 - }, - { - "l": "50.0", - "x": 6.3333, - "y": 21.4981 - }, - { - "l": "50.0", - "x": 6.4167, - "y": 21.6842 - }, - { - "l": "50.0", - "x": 6.5, - "y": 21.872 - }, - { - "l": "50.0", - "x": 6.5833, - "y": 22.0621 - }, - { - "l": "50.0", - "x": 6.6667, - "y": 22.2549 - }, - { - "l": "50.0", - "x": 6.75, - "y": 22.45 - }, - { - "l": "50.0", - "x": 6.8333, - "y": 22.6478 - }, - { - "l": "50.0", - "x": 6.9167, - "y": 22.848 - }, - { - "l": "50.0", - "x": 7.0, - "y": 23.051 - }, - { - "l": "50.0", - "x": 7.0833, - "y": 23.2576 - }, - { - "l": "50.0", - "x": 7.1667, - "y": 23.4657 - }, - { - "l": "50.0", - "x": 7.25, - "y": 23.676 - }, - { - "l": "50.0", - "x": 7.3333, - "y": 23.8873 - }, - { - "l": "50.0", - "x": 7.4167, - "y": 24.1001 - }, - { - "l": "50.0", - "x": 7.5, - "y": 24.314 - }, - { - "l": "50.0", - "x": 7.5833, - "y": 24.5293 - }, - { - "l": "50.0", - "x": 7.6667, - "y": 24.7467 - }, - { - "l": "50.0", - "x": 7.75, - "y": 24.965 - }, - { - "l": "50.0", - "x": 7.8333, - "y": 25.1849 - }, - { - "l": "50.0", - "x": 7.9167, - "y": 25.407 - }, - { - "l": "50.0", - "x": 8.0, - "y": 25.63 - }, - { - "l": "50.0", - "x": 8.0833, - "y": 25.855 - }, - { - "l": "50.0", - "x": 8.1667, - "y": 26.0814 - }, - { - "l": "50.0", - "x": 8.25, - "y": 26.308 - }, - { - "l": "50.0", - "x": 8.3333, - "y": 26.5363 - }, - { - "l": "50.0", - "x": 8.4167, - "y": 26.7655 - }, - { - "l": "50.0", - "x": 8.5, - "y": 26.996 - }, - { - "l": "50.0", - "x": 8.5833, - "y": 27.2269 - }, - { - "l": "50.0", - "x": 8.6667, - "y": 27.458 - }, - { - "l": "50.0", - "x": 8.75, - "y": 27.69 - }, - { - "l": "50.0", - "x": 8.8333, - "y": 27.922 - }, - { - "l": "50.0", - "x": 8.9167, - "y": 28.1557 - }, - { - "l": "50.0", - "x": 9.0, - "y": 28.39 - }, - { - "l": "50.0", - "x": 9.0833, - "y": 28.6266 - }, - { - "l": "50.0", - "x": 9.1667, - "y": 28.8637 - }, - { - "l": "50.0", - "x": 9.25, - "y": 29.103 - }, - { - "l": "50.0", - "x": 9.3333, - "y": 29.343 - }, - { - "l": "50.0", - "x": 9.4167, - "y": 29.585 - }, - { - "l": "50.0", - "x": 9.5, - "y": 29.828 - }, - { - "l": "50.0", - "x": 9.5833, - "y": 30.074 - }, - { - "l": "50.0", - "x": 9.6667, - "y": 30.323 - }, - { - "l": "50.0", - "x": 9.75, - "y": 30.574 - }, - { - "l": "50.0", - "x": 9.8333, - "y": 30.829 - }, - { - "l": "50.0", - "x": 9.9167, - "y": 31.0876 - }, - { - "l": "50.0", - "x": 10.0, - "y": 31.35 - }, - { - "l": "50.0", - "x": 10.0833, - "y": 31.615 - }, - { - "l": "50.0", - "x": 10.1667, - "y": 31.883 - }, - { - "l": "50.0", - "x": 10.25, - "y": 32.152 - }, - { - "l": "50.0", - "x": 10.3333, - "y": 32.4224 - }, - { - "l": "50.0", - "x": 10.4167, - "y": 32.6934 - }, - { - "l": "50.0", - "x": 10.5, - "y": 32.964 - }, - { - "l": "50.0", - "x": 10.5833, - "y": 33.234 - }, - { - "l": "50.0", - "x": 10.6667, - "y": 33.5036 - }, - { - "l": "50.0", - "x": 10.75, - "y": 33.774 - }, - { - "l": "50.0", - "x": 10.8333, - "y": 34.0437 - }, - { - "l": "50.0", - "x": 10.9167, - "y": 34.3143 - }, - { - "l": "50.0", - "x": 11.0, - "y": 34.585 - }, - { - "l": "50.0", - "x": 11.0833, - "y": 34.8568 - }, - { - "l": "50.0", - "x": 11.1667, - "y": 35.1298 - }, - { - "l": "50.0", - "x": 11.25, - "y": 35.405 - }, - { - "l": "50.0", - "x": 11.3333, - "y": 35.6823 - }, - { - "l": "50.0", - "x": 11.4167, - "y": 35.9633 - }, - { - "l": "50.0", - "x": 11.5, - "y": 36.25 - }, - { - "l": "50.0", - "x": 11.5833, - "y": 36.5432 - }, - { - "l": "50.0", - "x": 11.6667, - "y": 36.8423 - }, - { - "l": "50.0", - "x": 11.75, - "y": 37.149 - }, - { - "l": "50.0", - "x": 11.8333, - "y": 37.4638 - }, - { - "l": "50.0", - "x": 11.9167, - "y": 37.7877 - }, - { - "l": "50.0", - "x": 12.0, - "y": 38.122 - }, - { - "l": "50.0", - "x": 12.0833, - "y": 38.4653 - }, - { - "l": "50.0", - "x": 12.1667, - "y": 38.8201 - }, - { - "l": "50.0", - "x": 12.25, - "y": 39.185 - }, - { - "l": "50.0", - "x": 12.3333, - "y": 39.5619 - }, - { - "l": "50.0", - "x": 12.4167, - "y": 39.9494 - }, - { - "l": "50.0", - "x": 12.5, - "y": 40.348 - }, - { - "l": "50.0", - "x": 12.5833, - "y": 40.7577 - }, - { - "l": "50.0", - "x": 12.6667, - "y": 41.1778 - }, - { - "l": "50.0", - "x": 12.75, - "y": 41.609 - }, - { - "l": "50.0", - "x": 12.8333, - "y": 42.0509 - }, - { - "l": "50.0", - "x": 12.9167, - "y": 42.5052 - }, - { - "l": "50.0", - "x": 13.0, - "y": 42.97 - }, - { - "l": "50.0", - "x": 13.0833, - "y": 43.4457 - }, - { - "l": "50.0", - "x": 13.1667, - "y": 43.932 - }, - { - "l": "50.0", - "x": 13.25, - "y": 44.428 - }, - { - "l": "50.0", - "x": 13.3333, - "y": 44.9328 - }, - { - "l": "50.0", - "x": 13.4167, - "y": 45.4445 - }, - { - "l": "50.0", - "x": 13.5, - "y": 45.963 - }, - { - "l": "50.0", - "x": 13.5833, - "y": 46.4868 - }, - { - "l": "50.0", - "x": 13.6667, - "y": 47.0153 - }, - { - "l": "50.0", - "x": 13.75, - "y": 47.547 - }, - { - "l": "50.0", - "x": 13.8333, - "y": 48.081 - }, - { - "l": "50.0", - "x": 13.9167, - "y": 48.6173 - }, - { - "l": "50.0", - "x": 14.0, - "y": 49.154 - }, - { - "l": "50.0", - "x": 14.0833, - "y": 49.6907 - }, - { - "l": "50.0", - "x": 14.1667, - "y": 50.2259 - }, - { - "l": "50.0", - "x": 14.25, - "y": 50.76 - }, - { - "l": "50.0", - "x": 14.3333, - "y": 51.2915 - }, - { - "l": "50.0", - "x": 14.4167, - "y": 51.8192 - }, - { - "l": "50.0", - "x": 14.5, - "y": 52.343 - }, - { - "l": "50.0", - "x": 14.5833, - "y": 52.8618 - }, - { - "l": "50.0", - "x": 14.6667, - "y": 53.375 - }, - { - "l": "50.0", - "x": 14.75, - "y": 53.883 - }, - { - "l": "50.0", - "x": 14.8333, - "y": 54.385 - }, - { - "l": "50.0", - "x": 14.9167, - "y": 54.8807 - }, - { - "l": "50.0", - "x": 15.0, - "y": 55.369 - }, - { - "l": "50.0", - "x": 15.0833, - "y": 55.851 - }, - { - "l": "50.0", - "x": 15.1667, - "y": 56.3242 - }, - { - "l": "50.0", - "x": 15.25, - "y": 56.7897 - }, - { - "l": "50.0", - "x": 15.3333, - "y": 57.2474 - }, - { - "l": "50.0", - "x": 15.4167, - "y": 57.6966 - }, - { - "l": "50.0", - "x": 15.5, - "y": 58.138 - }, - { - "l": "50.0", - "x": 15.5833, - "y": 58.5697 - }, - { - "l": "50.0", - "x": 15.6667, - "y": 58.9933 - }, - { - "l": "50.0", - "x": 15.75, - "y": 59.4074 - }, - { - "l": "50.0", - "x": 15.8333, - "y": 59.8116 - }, - { - "l": "50.0", - "x": 15.9167, - "y": 60.2047 - }, - { - "l": "50.0", - "x": 16.0, - "y": 60.588 - }, - { - "l": "50.0", - "x": 16.0833, - "y": 60.9597 - }, - { - "l": "50.0", - "x": 16.1667, - "y": 61.3195 - }, - { - "l": "50.0", - "x": 16.25, - "y": 61.668 - }, - { - "l": "50.0", - "x": 16.3333, - "y": 62.0053 - }, - { - "l": "50.0", - "x": 16.4167, - "y": 62.3324 - }, - { - "l": "50.0", - "x": 16.5, - "y": 62.647 - }, - { - "l": "50.0", - "x": 16.5833, - "y": 62.9519 - }, - { - "l": "50.0", - "x": 16.6667, - "y": 63.2463 - }, - { - "l": "50.0", - "x": 16.75, - "y": 63.531 - }, - { - "l": "50.0", - "x": 16.8333, - "y": 63.806 - }, - { - "l": "50.0", - "x": 16.9167, - "y": 64.0717 - }, - { - "l": "50.0", - "x": 17.0, - "y": 64.329 - }, - { - "l": "50.0", - "x": 17.0833, - "y": 64.5782 - }, - { - "l": "50.0", - "x": 17.1667, - "y": 64.8187 - }, - { - "l": "50.0", - "x": 17.25, - "y": 65.051 - }, - { - "l": "50.0", - "x": 17.3333, - "y": 65.2768 - }, - { - "l": "50.0", - "x": 17.4167, - "y": 65.4933 - }, - { - "l": "50.0", - "x": 17.5, - "y": 65.704 - }, - { - "l": "50.0", - "x": 17.5833, - "y": 65.9069 - }, - { - "l": "50.0", - "x": 17.6667, - "y": 66.1033 - }, - { - "l": "50.0", - "x": 17.75, - "y": 66.292 - }, - { - "l": "50.0", - "x": 17.8333, - "y": 66.4765 - }, - { - "l": "50.0", - "x": 17.9167, - "y": 66.6541 - }, - { - "l": "50.0", - "x": 18.0, - "y": 66.824 - }, - { - "l": "50.0", - "x": 18.0833, - "y": 66.9883 - }, - { - "l": "50.0", - "x": 18.1667, - "y": 67.147 - }, - { - "l": "50.0", - "x": 18.25, - "y": 67.3 - }, - { - "l": "50.0", - "x": 18.3333, - "y": 67.448 - }, - { - "l": "50.0", - "x": 18.4167, - "y": 67.5898 - }, - { - "l": "50.0", - "x": 18.5, - "y": 67.728 - }, - { - "l": "50.0", - "x": 18.5833, - "y": 67.8607 - }, - { - "l": "50.0", - "x": 18.6667, - "y": 67.988 - }, - { - "l": "50.0", - "x": 18.75, - "y": 68.111 - }, - { - "l": "50.0", - "x": 18.8333, - "y": 68.2298 - }, - { - "l": "50.0", - "x": 18.9167, - "y": 68.3437 - }, - { - "l": "50.0", - "x": 19.0, - "y": 68.454 - }, - { - "l": "50.0", - "x": 19.0833, - "y": 68.5595 - }, - { - "l": "50.0", - "x": 19.1667, - "y": 68.6613 - }, - { - "l": "50.0", - "x": 19.25, - "y": 68.76 - }, - { - "l": "50.0", - "x": 19.3333, - "y": 68.8555 - }, - { - "l": "50.0", - "x": 19.4167, - "y": 68.9467 - }, - { - "l": "50.0", - "x": 19.5, - "y": 69.036 - }, - { - "l": "50.0", - "x": 19.5833, - "y": 69.1223 - }, - { - "l": "50.0", - "x": 19.6667, - "y": 69.2067 - }, - { - "l": "50.0", - "x": 19.75, - "y": 69.289 - }, - { - "l": "50.0", - "x": 19.8333, - "y": 69.3693 - }, - { - "l": "50.0", - "x": 19.9167, - "y": 69.447 - }, - { - "l": "50.0", - "x": 20.0, - "y": 69.524 - }, - { - "l": "50.0", - "x": 20.0, - "y": 69.524 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 4.0, - "y": 17.9111 - }, - { - "l": "75.0", - "x": 4.0833, - "y": 18.0858 - }, - { - "l": "75.0", - "x": 4.1667, - "y": 18.265 - }, - { - "l": "75.0", - "x": 4.25, - "y": 18.4478 - }, - { - "l": "75.0", - "x": 4.3333, - "y": 18.6352 - }, - { - "l": "75.0", - "x": 4.4167, - "y": 18.8269 - }, - { - "l": "75.0", - "x": 4.5, - "y": 19.0225 - }, - { - "l": "75.0", - "x": 4.5833, - "y": 19.2206 - }, - { - "l": "75.0", - "x": 4.6667, - "y": 19.4208 - }, - { - "l": "75.0", - "x": 4.75, - "y": 19.6242 - }, - { - "l": "75.0", - "x": 4.8333, - "y": 19.8276 - }, - { - "l": "75.0", - "x": 4.9167, - "y": 20.0334 - }, - { - "l": "75.0", - "x": 5.0, - "y": 20.2382 - }, - { - "l": "75.0", - "x": 5.0833, - "y": 20.4423 - }, - { - "l": "75.0", - "x": 5.1667, - "y": 20.645 - }, - { - "l": "75.0", - "x": 5.25, - "y": 20.8457 - }, - { - "l": "75.0", - "x": 5.3333, - "y": 21.0459 - }, - { - "l": "75.0", - "x": 5.4167, - "y": 21.2454 - }, - { - "l": "75.0", - "x": 5.5, - "y": 21.4448 - }, - { - "l": "75.0", - "x": 5.5833, - "y": 21.6444 - }, - { - "l": "75.0", - "x": 5.6667, - "y": 21.8443 - }, - { - "l": "75.0", - "x": 5.75, - "y": 22.0459 - }, - { - "l": "75.0", - "x": 5.8333, - "y": 22.25 - }, - { - "l": "75.0", - "x": 5.9167, - "y": 22.4549 - }, - { - "l": "75.0", - "x": 6.0, - "y": 22.6618 - }, - { - "l": "75.0", - "x": 6.0833, - "y": 22.8706 - }, - { - "l": "75.0", - "x": 6.1667, - "y": 23.0796 - }, - { - "l": "75.0", - "x": 6.25, - "y": 23.2905 - }, - { - "l": "75.0", - "x": 6.3333, - "y": 23.5043 - }, - { - "l": "75.0", - "x": 6.4167, - "y": 23.7197 - }, - { - "l": "75.0", - "x": 6.5, - "y": 23.9376 - }, - { - "l": "75.0", - "x": 6.5833, - "y": 24.1586 - }, - { - "l": "75.0", - "x": 6.6667, - "y": 24.3831 - }, - { - "l": "75.0", - "x": 6.75, - "y": 24.6108 - }, - { - "l": "75.0", - "x": 6.8333, - "y": 24.8421 - }, - { - "l": "75.0", - "x": 6.9167, - "y": 25.0769 - }, - { - "l": "75.0", - "x": 7.0, - "y": 25.3151 - }, - { - "l": "75.0", - "x": 7.0833, - "y": 25.5581 - }, - { - "l": "75.0", - "x": 7.1667, - "y": 25.8035 - }, - { - "l": "75.0", - "x": 7.25, - "y": 26.0518 - }, - { - "l": "75.0", - "x": 7.3333, - "y": 26.3018 - }, - { - "l": "75.0", - "x": 7.4167, - "y": 26.5541 - }, - { - "l": "75.0", - "x": 7.5, - "y": 26.8082 - }, - { - "l": "75.0", - "x": 7.5833, - "y": 27.0642 - }, - { - "l": "75.0", - "x": 7.6667, - "y": 27.3231 - }, - { - "l": "75.0", - "x": 7.75, - "y": 27.5835 - }, - { - "l": "75.0", - "x": 7.8333, - "y": 27.8458 - }, - { - "l": "75.0", - "x": 7.9167, - "y": 28.1112 - }, - { - "l": "75.0", - "x": 8.0, - "y": 28.3781 - }, - { - "l": "75.0", - "x": 8.0833, - "y": 28.6472 - }, - { - "l": "75.0", - "x": 8.1667, - "y": 28.918 - }, - { - "l": "75.0", - "x": 8.25, - "y": 29.1895 - }, - { - "l": "75.0", - "x": 8.3333, - "y": 29.463 - }, - { - "l": "75.0", - "x": 8.4167, - "y": 29.7378 - }, - { - "l": "75.0", - "x": 8.5, - "y": 30.0141 - }, - { - "l": "75.0", - "x": 8.5833, - "y": 30.2908 - }, - { - "l": "75.0", - "x": 8.6667, - "y": 30.5682 - }, - { - "l": "75.0", - "x": 8.75, - "y": 30.8465 - }, - { - "l": "75.0", - "x": 8.8333, - "y": 31.1245 - }, - { - "l": "75.0", - "x": 8.9167, - "y": 31.4048 - }, - { - "l": "75.0", - "x": 9.0, - "y": 31.6858 - }, - { - "l": "75.0", - "x": 9.0833, - "y": 31.9689 - }, - { - "l": "75.0", - "x": 9.1667, - "y": 32.2525 - }, - { - "l": "75.0", - "x": 9.25, - "y": 32.5387 - }, - { - "l": "75.0", - "x": 9.3333, - "y": 32.8255 - }, - { - "l": "75.0", - "x": 9.4167, - "y": 33.1142 - }, - { - "l": "75.0", - "x": 9.5, - "y": 33.4036 - }, - { - "l": "75.0", - "x": 9.5833, - "y": 33.6964 - }, - { - "l": "75.0", - "x": 9.6667, - "y": 33.9918 - }, - { - "l": "75.0", - "x": 9.75, - "y": 34.2898 - }, - { - "l": "75.0", - "x": 9.8333, - "y": 34.5921 - }, - { - "l": "75.0", - "x": 9.9167, - "y": 34.8979 - }, - { - "l": "75.0", - "x": 10.0, - "y": 35.2082 - }, - { - "l": "75.0", - "x": 10.0833, - "y": 35.5212 - }, - { - "l": "75.0", - "x": 10.1667, - "y": 35.8379 - }, - { - "l": "75.0", - "x": 10.25, - "y": 36.1553 - }, - { - "l": "75.0", - "x": 10.3333, - "y": 36.4747 - }, - { - "l": "75.0", - "x": 10.4167, - "y": 36.7946 - }, - { - "l": "75.0", - "x": 10.5, - "y": 37.1141 - }, - { - "l": "75.0", - "x": 10.5833, - "y": 37.4329 - }, - { - "l": "75.0", - "x": 10.6667, - "y": 37.7512 - }, - { - "l": "75.0", - "x": 10.75, - "y": 38.0705 - }, - { - "l": "75.0", - "x": 10.8333, - "y": 38.3894 - }, - { - "l": "75.0", - "x": 10.9167, - "y": 38.7085 - }, - { - "l": "75.0", - "x": 11.0, - "y": 39.0286 - }, - { - "l": "75.0", - "x": 11.0833, - "y": 39.3495 - }, - { - "l": "75.0", - "x": 11.1667, - "y": 39.6714 - }, - { - "l": "75.0", - "x": 11.25, - "y": 39.9959 - }, - { - "l": "75.0", - "x": 11.3333, - "y": 40.3223 - }, - { - "l": "75.0", - "x": 11.4167, - "y": 40.6522 - }, - { - "l": "75.0", - "x": 11.5, - "y": 40.9887 - }, - { - "l": "75.0", - "x": 11.5833, - "y": 41.3318 - }, - { - "l": "75.0", - "x": 11.6667, - "y": 41.681 - }, - { - "l": "75.0", - "x": 11.75, - "y": 42.0387 - }, - { - "l": "75.0", - "x": 11.8333, - "y": 42.405 - }, - { - "l": "75.0", - "x": 11.9167, - "y": 42.7811 - }, - { - "l": "75.0", - "x": 12.0, - "y": 43.1678 - }, - { - "l": "75.0", - "x": 12.0833, - "y": 43.5644 - }, - { - "l": "75.0", - "x": 12.1667, - "y": 43.9735 - }, - { - "l": "75.0", - "x": 12.25, - "y": 44.3935 - }, - { - "l": "75.0", - "x": 12.3333, - "y": 44.8264 - }, - { - "l": "75.0", - "x": 12.4167, - "y": 45.2711 - }, - { - "l": "75.0", - "x": 12.5, - "y": 45.7278 - }, - { - "l": "75.0", - "x": 12.5833, - "y": 46.1974 - }, - { - "l": "75.0", - "x": 12.6667, - "y": 46.6785 - }, - { - "l": "75.0", - "x": 12.75, - "y": 47.1726 - }, - { - "l": "75.0", - "x": 12.8333, - "y": 47.6778 - }, - { - "l": "75.0", - "x": 12.9167, - "y": 48.1978 - }, - { - "l": "75.0", - "x": 13.0, - "y": 48.7291 - }, - { - "l": "75.0", - "x": 13.0833, - "y": 49.2721 - }, - { - "l": "75.0", - "x": 13.1667, - "y": 49.8268 - }, - { - "l": "75.0", - "x": 13.25, - "y": 50.3922 - }, - { - "l": "75.0", - "x": 13.3333, - "y": 50.9658 - }, - { - "l": "75.0", - "x": 13.4167, - "y": 51.5469 - }, - { - "l": "75.0", - "x": 13.5, - "y": 52.1349 - }, - { - "l": "75.0", - "x": 13.5833, - "y": 52.7279 - }, - { - "l": "75.0", - "x": 13.6667, - "y": 53.3251 - }, - { - "l": "75.0", - "x": 13.75, - "y": 53.9252 - }, - { - "l": "75.0", - "x": 13.8333, - "y": 54.5263 - }, - { - "l": "75.0", - "x": 13.9167, - "y": 55.1293 - }, - { - "l": "75.0", - "x": 14.0, - "y": 55.7311 - }, - { - "l": "75.0", - "x": 14.0833, - "y": 56.3317 - }, - { - "l": "75.0", - "x": 14.1667, - "y": 56.9281 - }, - { - "l": "75.0", - "x": 14.25, - "y": 57.5217 - }, - { - "l": "75.0", - "x": 14.3333, - "y": 58.1096 - }, - { - "l": "75.0", - "x": 14.4167, - "y": 58.6907 - }, - { - "l": "75.0", - "x": 14.5, - "y": 59.2651 - }, - { - "l": "75.0", - "x": 14.5833, - "y": 59.8307 - }, - { - "l": "75.0", - "x": 14.6667, - "y": 60.3863 - }, - { - "l": "75.0", - "x": 14.75, - "y": 60.9332 - }, - { - "l": "75.0", - "x": 14.8333, - "y": 61.4694 - }, - { - "l": "75.0", - "x": 14.9167, - "y": 61.9955 - }, - { - "l": "75.0", - "x": 15.0, - "y": 62.5097 - }, - { - "l": "75.0", - "x": 15.0833, - "y": 63.0135 - }, - { - "l": "75.0", - "x": 15.1667, - "y": 63.5038 - }, - { - "l": "75.0", - "x": 15.25, - "y": 63.982 - }, - { - "l": "75.0", - "x": 15.3333, - "y": 64.448 - }, - { - "l": "75.0", - "x": 15.4167, - "y": 64.9005 - }, - { - "l": "75.0", - "x": 15.5, - "y": 65.3416 - }, - { - "l": "75.0", - "x": 15.5833, - "y": 65.7673 - }, - { - "l": "75.0", - "x": 15.6667, - "y": 66.1816 - }, - { - "l": "75.0", - "x": 15.75, - "y": 66.5829 - }, - { - "l": "75.0", - "x": 15.8333, - "y": 66.9703 - }, - { - "l": "75.0", - "x": 15.9167, - "y": 67.3434 - }, - { - "l": "75.0", - "x": 16.0, - "y": 67.704 - }, - { - "l": "75.0", - "x": 16.0833, - "y": 68.0508 - }, - { - "l": "75.0", - "x": 16.1667, - "y": 68.3838 - }, - { - "l": "75.0", - "x": 16.25, - "y": 68.7039 - }, - { - "l": "75.0", - "x": 16.3333, - "y": 69.0125 - }, - { - "l": "75.0", - "x": 16.4167, - "y": 69.3109 - }, - { - "l": "75.0", - "x": 16.5, - "y": 69.5962 - }, - { - "l": "75.0", - "x": 16.5833, - "y": 69.8728 - }, - { - "l": "75.0", - "x": 16.6667, - "y": 70.1397 - }, - { - "l": "75.0", - "x": 16.75, - "y": 70.3981 - }, - { - "l": "75.0", - "x": 16.8333, - "y": 70.6482 - }, - { - "l": "75.0", - "x": 16.9167, - "y": 70.8894 - }, - { - "l": "75.0", - "x": 17.0, - "y": 71.1243 - }, - { - "l": "75.0", - "x": 17.0833, - "y": 71.3524 - }, - { - "l": "75.0", - "x": 17.1667, - "y": 71.5725 - }, - { - "l": "75.0", - "x": 17.25, - "y": 71.7867 - }, - { - "l": "75.0", - "x": 17.3333, - "y": 71.9955 - }, - { - "l": "75.0", - "x": 17.4167, - "y": 72.1958 - }, - { - "l": "75.0", - "x": 17.5, - "y": 72.3924 - }, - { - "l": "75.0", - "x": 17.5833, - "y": 72.5818 - }, - { - "l": "75.0", - "x": 17.6667, - "y": 72.7663 - }, - { - "l": "75.0", - "x": 17.75, - "y": 72.9439 - }, - { - "l": "75.0", - "x": 17.8333, - "y": 73.1187 - }, - { - "l": "75.0", - "x": 17.9167, - "y": 73.2873 - }, - { - "l": "75.0", - "x": 18.0, - "y": 73.4493 - }, - { - "l": "75.0", - "x": 18.0833, - "y": 73.6058 - }, - { - "l": "75.0", - "x": 18.1667, - "y": 73.758 - }, - { - "l": "75.0", - "x": 18.25, - "y": 73.9049 - }, - { - "l": "75.0", - "x": 18.3333, - "y": 74.0477 - }, - { - "l": "75.0", - "x": 18.4167, - "y": 74.1844 - }, - { - "l": "75.0", - "x": 18.5, - "y": 74.3181 - }, - { - "l": "75.0", - "x": 18.5833, - "y": 74.4472 - }, - { - "l": "75.0", - "x": 18.6667, - "y": 74.5703 - }, - { - "l": "75.0", - "x": 18.75, - "y": 74.6905 - }, - { - "l": "75.0", - "x": 18.8333, - "y": 74.8068 - }, - { - "l": "75.0", - "x": 18.9167, - "y": 74.9179 - }, - { - "l": "75.0", - "x": 19.0, - "y": 75.0252 - }, - { - "l": "75.0", - "x": 19.0833, - "y": 75.1291 - }, - { - "l": "75.0", - "x": 19.1667, - "y": 75.2281 - }, - { - "l": "75.0", - "x": 19.25, - "y": 75.3255 - }, - { - "l": "75.0", - "x": 19.3333, - "y": 75.4196 - }, - { - "l": "75.0", - "x": 19.4167, - "y": 75.509 - }, - { - "l": "75.0", - "x": 19.5, - "y": 75.5974 - }, - { - "l": "75.0", - "x": 19.5833, - "y": 75.6821 - }, - { - "l": "75.0", - "x": 19.6667, - "y": 75.7655 - }, - { - "l": "75.0", - "x": 19.75, - "y": 75.8466 - }, - { - "l": "75.0", - "x": 19.8333, - "y": 75.9263 - }, - { - "l": "75.0", - "x": 19.9167, - "y": 76.0031 - }, - { - "l": "75.0", - "x": 20.0, - "y": 76.0795 - }, - { - "l": "75.0", - "x": 20.0, - "y": 76.0795 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 4.0, - "y": 19.4363 - }, - { - "l": "91.0", - "x": 4.0833, - "y": 19.6329 - }, - { - "l": "91.0", - "x": 4.1667, - "y": 19.8347 - }, - { - "l": "91.0", - "x": 4.25, - "y": 20.0407 - }, - { - "l": "91.0", - "x": 4.3333, - "y": 20.2523 - }, - { - "l": "91.0", - "x": 4.4167, - "y": 20.4689 - }, - { - "l": "91.0", - "x": 4.5, - "y": 20.69 - }, - { - "l": "91.0", - "x": 4.5833, - "y": 20.9143 - }, - { - "l": "91.0", - "x": 4.6667, - "y": 21.1411 - }, - { - "l": "91.0", - "x": 4.75, - "y": 21.3721 - }, - { - "l": "91.0", - "x": 4.8333, - "y": 21.6036 - }, - { - "l": "91.0", - "x": 4.9167, - "y": 21.8377 - }, - { - "l": "91.0", - "x": 5.0, - "y": 22.0713 - }, - { - "l": "91.0", - "x": 5.0833, - "y": 22.3044 - }, - { - "l": "91.0", - "x": 5.1667, - "y": 22.5364 - }, - { - "l": "91.0", - "x": 5.25, - "y": 22.7666 - }, - { - "l": "91.0", - "x": 5.3333, - "y": 22.9967 - }, - { - "l": "91.0", - "x": 5.4167, - "y": 23.2264 - }, - { - "l": "91.0", - "x": 5.5, - "y": 23.4566 - }, - { - "l": "91.0", - "x": 5.5833, - "y": 23.6876 - }, - { - "l": "91.0", - "x": 5.6667, - "y": 23.9194 - }, - { - "l": "91.0", - "x": 5.75, - "y": 24.1537 - }, - { - "l": "91.0", - "x": 5.8333, - "y": 24.3913 - }, - { - "l": "91.0", - "x": 5.9167, - "y": 24.6306 - }, - { - "l": "91.0", - "x": 6.0, - "y": 24.8729 - }, - { - "l": "91.0", - "x": 6.0833, - "y": 25.1177 - }, - { - "l": "91.0", - "x": 6.1667, - "y": 25.3635 - }, - { - "l": "91.0", - "x": 6.25, - "y": 25.6125 - }, - { - "l": "91.0", - "x": 6.3333, - "y": 25.865 - }, - { - "l": "91.0", - "x": 6.4167, - "y": 26.1203 - }, - { - "l": "91.0", - "x": 6.5, - "y": 26.3792 - }, - { - "l": "91.0", - "x": 6.5833, - "y": 26.6424 - }, - { - "l": "91.0", - "x": 6.6667, - "y": 26.9106 - }, - { - "l": "91.0", - "x": 6.75, - "y": 27.1834 - }, - { - "l": "91.0", - "x": 6.8333, - "y": 27.4611 - }, - { - "l": "91.0", - "x": 6.9167, - "y": 27.7441 - }, - { - "l": "91.0", - "x": 7.0, - "y": 28.0313 - }, - { - "l": "91.0", - "x": 7.0833, - "y": 28.3254 - }, - { - "l": "91.0", - "x": 7.1667, - "y": 28.6233 - }, - { - "l": "91.0", - "x": 7.25, - "y": 28.9256 - }, - { - "l": "91.0", - "x": 7.3333, - "y": 29.2307 - }, - { - "l": "91.0", - "x": 7.4167, - "y": 29.5391 - }, - { - "l": "91.0", - "x": 7.5, - "y": 29.8506 - }, - { - "l": "91.0", - "x": 7.5833, - "y": 30.1651 - }, - { - "l": "91.0", - "x": 7.6667, - "y": 30.484 - }, - { - "l": "91.0", - "x": 7.75, - "y": 30.805 - }, - { - "l": "91.0", - "x": 7.8333, - "y": 31.1289 - }, - { - "l": "91.0", - "x": 7.9167, - "y": 31.4573 - }, - { - "l": "91.0", - "x": 8.0, - "y": 31.7882 - }, - { - "l": "91.0", - "x": 8.0833, - "y": 32.1217 - }, - { - "l": "91.0", - "x": 8.1667, - "y": 32.4574 - }, - { - "l": "91.0", - "x": 8.25, - "y": 32.795 - }, - { - "l": "91.0", - "x": 8.3333, - "y": 33.1344 - }, - { - "l": "91.0", - "x": 8.4167, - "y": 33.4766 - }, - { - "l": "91.0", - "x": 8.5, - "y": 33.8198 - }, - { - "l": "91.0", - "x": 8.5833, - "y": 34.1638 - }, - { - "l": "91.0", - "x": 8.6667, - "y": 34.5092 - }, - { - "l": "91.0", - "x": 8.75, - "y": 34.8555 - }, - { - "l": "91.0", - "x": 8.8333, - "y": 35.2008 - }, - { - "l": "91.0", - "x": 8.9167, - "y": 35.5494 - }, - { - "l": "91.0", - "x": 9.0, - "y": 35.8983 - }, - { - "l": "91.0", - "x": 9.0833, - "y": 36.2488 - }, - { - "l": "91.0", - "x": 9.1667, - "y": 36.5998 - }, - { - "l": "91.0", - "x": 9.25, - "y": 36.9541 - }, - { - "l": "91.0", - "x": 9.3333, - "y": 37.3084 - }, - { - "l": "91.0", - "x": 9.4167, - "y": 37.6638 - }, - { - "l": "91.0", - "x": 9.5, - "y": 38.0193 - }, - { - "l": "91.0", - "x": 9.5833, - "y": 38.3784 - }, - { - "l": "91.0", - "x": 9.6667, - "y": 38.7388 - }, - { - "l": "91.0", - "x": 9.75, - "y": 39.1026 - }, - { - "l": "91.0", - "x": 9.8333, - "y": 39.4709 - }, - { - "l": "91.0", - "x": 9.9167, - "y": 39.8412 - }, - { - "l": "91.0", - "x": 10.0, - "y": 40.2177 - }, - { - "l": "91.0", - "x": 10.0833, - "y": 40.5955 - }, - { - "l": "91.0", - "x": 10.1667, - "y": 40.9778 - }, - { - "l": "91.0", - "x": 10.25, - "y": 41.3605 - }, - { - "l": "91.0", - "x": 10.3333, - "y": 41.745 - }, - { - "l": "91.0", - "x": 10.4167, - "y": 42.1292 - }, - { - "l": "91.0", - "x": 10.5, - "y": 42.5128 - }, - { - "l": "91.0", - "x": 10.5833, - "y": 42.8946 - }, - { - "l": "91.0", - "x": 10.6667, - "y": 43.2747 - }, - { - "l": "91.0", - "x": 10.75, - "y": 43.6563 - }, - { - "l": "91.0", - "x": 10.8333, - "y": 44.0375 - }, - { - "l": "91.0", - "x": 10.9167, - "y": 44.4162 - }, - { - "l": "91.0", - "x": 11.0, - "y": 44.7977 - }, - { - "l": "91.0", - "x": 11.0833, - "y": 45.1777 - }, - { - "l": "91.0", - "x": 11.1667, - "y": 45.558 - }, - { - "l": "91.0", - "x": 11.25, - "y": 45.9414 - }, - { - "l": "91.0", - "x": 11.3333, - "y": 46.3252 - }, - { - "l": "91.0", - "x": 11.4167, - "y": 46.7108 - }, - { - "l": "91.0", - "x": 11.5, - "y": 47.1038 - }, - { - "l": "91.0", - "x": 11.5833, - "y": 47.5021 - }, - { - "l": "91.0", - "x": 11.6667, - "y": 47.9056 - }, - { - "l": "91.0", - "x": 11.75, - "y": 48.3181 - }, - { - "l": "91.0", - "x": 11.8333, - "y": 48.7387 - }, - { - "l": "91.0", - "x": 11.9167, - "y": 49.1684 - }, - { - "l": "91.0", - "x": 12.0, - "y": 49.6073 - }, - { - "l": "91.0", - "x": 12.0833, - "y": 50.057 - }, - { - "l": "91.0", - "x": 12.1667, - "y": 50.5199 - }, - { - "l": "91.0", - "x": 12.25, - "y": 50.992 - }, - { - "l": "91.0", - "x": 12.3333, - "y": 51.478 - }, - { - "l": "91.0", - "x": 12.4167, - "y": 51.9756 - }, - { - "l": "91.0", - "x": 12.5, - "y": 52.4858 - }, - { - "l": "91.0", - "x": 12.5833, - "y": 53.01 - }, - { - "l": "91.0", - "x": 12.6667, - "y": 53.5465 - }, - { - "l": "91.0", - "x": 12.75, - "y": 54.0982 - }, - { - "l": "91.0", - "x": 12.8333, - "y": 54.6597 - }, - { - "l": "91.0", - "x": 12.9167, - "y": 55.2389 - }, - { - "l": "91.0", - "x": 13.0, - "y": 55.8296 - }, - { - "l": "91.0", - "x": 13.0833, - "y": 56.4313 - }, - { - "l": "91.0", - "x": 13.1667, - "y": 57.0467 - }, - { - "l": "91.0", - "x": 13.25, - "y": 57.6746 - }, - { - "l": "91.0", - "x": 13.3333, - "y": 58.308 - }, - { - "l": "91.0", - "x": 13.4167, - "y": 58.9503 - }, - { - "l": "91.0", - "x": 13.5, - "y": 59.5991 - }, - { - "l": "91.0", - "x": 13.5833, - "y": 60.253 - }, - { - "l": "91.0", - "x": 13.6667, - "y": 60.9109 - }, - { - "l": "91.0", - "x": 13.75, - "y": 61.572 - }, - { - "l": "91.0", - "x": 13.8333, - "y": 62.2319 - }, - { - "l": "91.0", - "x": 13.9167, - "y": 62.8948 - }, - { - "l": "91.0", - "x": 14.0, - "y": 63.5554 - }, - { - "l": "91.0", - "x": 14.0833, - "y": 64.2138 - }, - { - "l": "91.0", - "x": 14.1667, - "y": 64.8654 - }, - { - "l": "91.0", - "x": 14.25, - "y": 65.5136 - }, - { - "l": "91.0", - "x": 14.3333, - "y": 66.1534 - }, - { - "l": "91.0", - "x": 14.4167, - "y": 66.7831 - }, - { - "l": "91.0", - "x": 14.5, - "y": 67.4047 - }, - { - "l": "91.0", - "x": 14.5833, - "y": 68.0147 - }, - { - "l": "91.0", - "x": 14.6667, - "y": 68.6088 - }, - { - "l": "91.0", - "x": 14.75, - "y": 69.1929 - }, - { - "l": "91.0", - "x": 14.8333, - "y": 69.7603 - }, - { - "l": "91.0", - "x": 14.9167, - "y": 70.316 - }, - { - "l": "91.0", - "x": 15.0, - "y": 70.8539 - }, - { - "l": "91.0", - "x": 15.0833, - "y": 71.3786 - }, - { - "l": "91.0", - "x": 15.1667, - "y": 71.8845 - }, - { - "l": "91.0", - "x": 15.25, - "y": 72.3739 - }, - { - "l": "91.0", - "x": 15.3333, - "y": 72.8477 - }, - { - "l": "91.0", - "x": 15.4167, - "y": 73.3015 - }, - { - "l": "91.0", - "x": 15.5, - "y": 73.7414 - }, - { - "l": "91.0", - "x": 15.5833, - "y": 74.1584 - }, - { - "l": "91.0", - "x": 15.6667, - "y": 74.5609 - }, - { - "l": "91.0", - "x": 15.75, - "y": 74.947 - }, - { - "l": "91.0", - "x": 15.8333, - "y": 75.315 - }, - { - "l": "91.0", - "x": 15.9167, - "y": 75.6646 - }, - { - "l": "91.0", - "x": 16.0, - "y": 75.9985 - }, - { - "l": "91.0", - "x": 16.0833, - "y": 76.3164 - }, - { - "l": "91.0", - "x": 16.1667, - "y": 76.6184 - }, - { - "l": "91.0", - "x": 16.25, - "y": 76.9043 - }, - { - "l": "91.0", - "x": 16.3333, - "y": 77.1796 - }, - { - "l": "91.0", - "x": 16.4167, - "y": 77.4447 - }, - { - "l": "91.0", - "x": 16.5, - "y": 77.695 - }, - { - "l": "91.0", - "x": 16.5833, - "y": 77.9392 - }, - { - "l": "91.0", - "x": 16.6667, - "y": 78.1737 - }, - { - "l": "91.0", - "x": 16.75, - "y": 78.4017 - }, - { - "l": "91.0", - "x": 16.8333, - "y": 78.6231 - }, - { - "l": "91.0", - "x": 16.9167, - "y": 78.8365 - }, - { - "l": "91.0", - "x": 17.0, - "y": 79.0464 - }, - { - "l": "91.0", - "x": 17.0833, - "y": 79.2511 - }, - { - "l": "91.0", - "x": 17.1667, - "y": 79.4483 - }, - { - "l": "91.0", - "x": 17.25, - "y": 79.6427 - }, - { - "l": "91.0", - "x": 17.3333, - "y": 79.8329 - }, - { - "l": "91.0", - "x": 17.4167, - "y": 80.0153 - }, - { - "l": "91.0", - "x": 17.5, - "y": 80.1975 - }, - { - "l": "91.0", - "x": 17.5833, - "y": 80.3727 - }, - { - "l": "91.0", - "x": 17.6667, - "y": 80.5453 - }, - { - "l": "91.0", - "x": 17.75, - "y": 80.7111 - }, - { - "l": "91.0", - "x": 17.8333, - "y": 80.8762 - }, - { - "l": "91.0", - "x": 17.9167, - "y": 81.0361 - }, - { - "l": "91.0", - "x": 18.0, - "y": 81.191 - }, - { - "l": "91.0", - "x": 18.0833, - "y": 81.3397 - }, - { - "l": "91.0", - "x": 18.1667, - "y": 81.486 - }, - { - "l": "91.0", - "x": 18.25, - "y": 81.6276 - }, - { - "l": "91.0", - "x": 18.3333, - "y": 81.7666 - }, - { - "l": "91.0", - "x": 18.4167, - "y": 81.8986 - }, - { - "l": "91.0", - "x": 18.5, - "y": 82.0285 - }, - { - "l": "91.0", - "x": 18.5833, - "y": 82.1553 - }, - { - "l": "91.0", - "x": 18.6667, - "y": 82.2753 - }, - { - "l": "91.0", - "x": 18.75, - "y": 82.3934 - }, - { - "l": "91.0", - "x": 18.8333, - "y": 82.5091 - }, - { - "l": "91.0", - "x": 18.9167, - "y": 82.6183 - }, - { - "l": "91.0", - "x": 19.0, - "y": 82.7228 - }, - { - "l": "91.0", - "x": 19.0833, - "y": 82.8267 - }, - { - "l": "91.0", - "x": 19.1667, - "y": 82.9231 - }, - { - "l": "91.0", - "x": 19.25, - "y": 83.0211 - }, - { - "l": "91.0", - "x": 19.3333, - "y": 83.1148 - }, - { - "l": "91.0", - "x": 19.4167, - "y": 83.2032 - }, - { - "l": "91.0", - "x": 19.5, - "y": 83.2918 - }, - { - "l": "91.0", - "x": 19.5833, - "y": 83.3752 - }, - { - "l": "91.0", - "x": 19.6667, - "y": 83.459 - }, - { - "l": "91.0", - "x": 19.75, - "y": 83.5402 - }, - { - "l": "91.0", - "x": 19.8333, - "y": 83.62 - }, - { - "l": "91.0", - "x": 19.9167, - "y": 83.6966 - }, - { - "l": "91.0", - "x": 20.0, - "y": 83.7738 - }, - { - "l": "91.0", - "x": 20.0, - "y": 83.7738 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 4.0, - "y": 21.1537 - }, - { - "l": "98.0", - "x": 4.0833, - "y": 21.3775 - }, - { - "l": "98.0", - "x": 4.1667, - "y": 21.6077 - }, - { - "l": "98.0", - "x": 4.25, - "y": 21.8426 - }, - { - "l": "98.0", - "x": 4.3333, - "y": 22.0846 - }, - { - "l": "98.0", - "x": 4.4167, - "y": 22.3323 - }, - { - "l": "98.0", - "x": 4.5, - "y": 22.5857 - }, - { - "l": "98.0", - "x": 4.5833, - "y": 22.8433 - }, - { - "l": "98.0", - "x": 4.6667, - "y": 23.1039 - }, - { - "l": "98.0", - "x": 4.75, - "y": 23.3698 - }, - { - "l": "98.0", - "x": 4.8333, - "y": 23.6375 - }, - { - "l": "98.0", - "x": 4.9167, - "y": 23.908 - }, - { - "l": "98.0", - "x": 5.0, - "y": 24.1785 - }, - { - "l": "98.0", - "x": 5.0833, - "y": 24.4492 - }, - { - "l": "98.0", - "x": 5.1667, - "y": 24.7191 - }, - { - "l": "98.0", - "x": 5.25, - "y": 24.9879 - }, - { - "l": "98.0", - "x": 5.3333, - "y": 25.2572 - }, - { - "l": "98.0", - "x": 5.4167, - "y": 25.5266 - }, - { - "l": "98.0", - "x": 5.5, - "y": 25.7974 - }, - { - "l": "98.0", - "x": 5.5833, - "y": 26.07 - }, - { - "l": "98.0", - "x": 5.6667, - "y": 26.3442 - }, - { - "l": "98.0", - "x": 5.75, - "y": 26.6223 - }, - { - "l": "98.0", - "x": 5.8333, - "y": 26.9049 - }, - { - "l": "98.0", - "x": 5.9167, - "y": 27.1905 - }, - { - "l": "98.0", - "x": 6.0, - "y": 27.4805 - }, - { - "l": "98.0", - "x": 6.0833, - "y": 27.7744 - }, - { - "l": "98.0", - "x": 6.1667, - "y": 28.0703 - }, - { - "l": "98.0", - "x": 6.25, - "y": 28.3718 - }, - { - "l": "98.0", - "x": 6.3333, - "y": 28.6775 - }, - { - "l": "98.0", - "x": 6.4167, - "y": 28.9877 - }, - { - "l": "98.0", - "x": 6.5, - "y": 29.3039 - }, - { - "l": "98.0", - "x": 6.5833, - "y": 29.626 - }, - { - "l": "98.0", - "x": 6.6667, - "y": 29.9557 - }, - { - "l": "98.0", - "x": 6.75, - "y": 30.2922 - }, - { - "l": "98.0", - "x": 6.8333, - "y": 30.636 - }, - { - "l": "98.0", - "x": 6.9167, - "y": 30.9877 - }, - { - "l": "98.0", - "x": 7.0, - "y": 31.3449 - }, - { - "l": "98.0", - "x": 7.0833, - "y": 31.7128 - }, - { - "l": "98.0", - "x": 7.1667, - "y": 32.087 - }, - { - "l": "98.0", - "x": 7.25, - "y": 32.4679 - }, - { - "l": "98.0", - "x": 7.3333, - "y": 32.8539 - }, - { - "l": "98.0", - "x": 7.4167, - "y": 33.2449 - }, - { - "l": "98.0", - "x": 7.5, - "y": 33.6414 - }, - { - "l": "98.0", - "x": 7.5833, - "y": 34.0429 - }, - { - "l": "98.0", - "x": 7.6667, - "y": 34.4515 - }, - { - "l": "98.0", - "x": 7.75, - "y": 34.8635 - }, - { - "l": "98.0", - "x": 7.8333, - "y": 35.2801 - }, - { - "l": "98.0", - "x": 7.9167, - "y": 35.7042 - }, - { - "l": "98.0", - "x": 8.0, - "y": 36.133 - }, - { - "l": "98.0", - "x": 8.0833, - "y": 36.5646 - }, - { - "l": "98.0", - "x": 8.1667, - "y": 36.9993 - }, - { - "l": "98.0", - "x": 8.25, - "y": 37.4391 - }, - { - "l": "98.0", - "x": 8.3333, - "y": 37.8795 - }, - { - "l": "98.0", - "x": 8.4167, - "y": 38.3263 - }, - { - "l": "98.0", - "x": 8.5, - "y": 38.7727 - }, - { - "l": "98.0", - "x": 8.5833, - "y": 39.2206 - }, - { - "l": "98.0", - "x": 8.6667, - "y": 39.6721 - }, - { - "l": "98.0", - "x": 8.75, - "y": 40.1239 - }, - { - "l": "98.0", - "x": 8.8333, - "y": 40.5731 - }, - { - "l": "98.0", - "x": 8.9167, - "y": 41.0278 - }, - { - "l": "98.0", - "x": 9.0, - "y": 41.4816 - }, - { - "l": "98.0", - "x": 9.0833, - "y": 41.9356 - }, - { - "l": "98.0", - "x": 9.1667, - "y": 42.3904 - }, - { - "l": "98.0", - "x": 9.25, - "y": 42.8496 - }, - { - "l": "98.0", - "x": 9.3333, - "y": 43.3074 - }, - { - "l": "98.0", - "x": 9.4167, - "y": 43.7639 - }, - { - "l": "98.0", - "x": 9.5, - "y": 44.2201 - }, - { - "l": "98.0", - "x": 9.5833, - "y": 44.6786 - }, - { - "l": "98.0", - "x": 9.6667, - "y": 45.1353 - }, - { - "l": "98.0", - "x": 9.75, - "y": 45.5966 - }, - { - "l": "98.0", - "x": 9.8333, - "y": 46.0628 - }, - { - "l": "98.0", - "x": 9.9167, - "y": 46.5258 - }, - { - "l": "98.0", - "x": 10.0, - "y": 46.9988 - }, - { - "l": "98.0", - "x": 10.0833, - "y": 47.4681 - }, - { - "l": "98.0", - "x": 10.1667, - "y": 47.9431 - }, - { - "l": "98.0", - "x": 10.25, - "y": 48.4178 - }, - { - "l": "98.0", - "x": 10.3333, - "y": 48.8925 - }, - { - "l": "98.0", - "x": 10.4167, - "y": 49.3641 - }, - { - "l": "98.0", - "x": 10.5, - "y": 49.8345 - }, - { - "l": "98.0", - "x": 10.5833, - "y": 50.2997 - }, - { - "l": "98.0", - "x": 10.6667, - "y": 50.7599 - }, - { - "l": "98.0", - "x": 10.75, - "y": 51.2219 - }, - { - "l": "98.0", - "x": 10.8333, - "y": 51.6832 - }, - { - "l": "98.0", - "x": 10.9167, - "y": 52.1343 - }, - { - "l": "98.0", - "x": 11.0, - "y": 52.5927 - }, - { - "l": "98.0", - "x": 11.0833, - "y": 53.0422 - }, - { - "l": "98.0", - "x": 11.1667, - "y": 53.4905 - }, - { - "l": "98.0", - "x": 11.25, - "y": 53.9421 - }, - { - "l": "98.0", - "x": 11.3333, - "y": 54.3899 - }, - { - "l": "98.0", - "x": 11.4167, - "y": 54.8343 - }, - { - "l": "98.0", - "x": 11.5, - "y": 55.2872 - }, - { - "l": "98.0", - "x": 11.5833, - "y": 55.7408 - }, - { - "l": "98.0", - "x": 11.6667, - "y": 56.1958 - }, - { - "l": "98.0", - "x": 11.75, - "y": 56.6604 - }, - { - "l": "98.0", - "x": 11.8333, - "y": 57.1295 - }, - { - "l": "98.0", - "x": 11.9167, - "y": 57.6046 - }, - { - "l": "98.0", - "x": 12.0, - "y": 58.0842 - }, - { - "l": "98.0", - "x": 12.0833, - "y": 58.5753 - }, - { - "l": "98.0", - "x": 12.1667, - "y": 59.08 - }, - { - "l": "98.0", - "x": 12.25, - "y": 59.5878 - }, - { - "l": "98.0", - "x": 12.3333, - "y": 60.1097 - }, - { - "l": "98.0", - "x": 12.4167, - "y": 60.6412 - }, - { - "l": "98.0", - "x": 12.5, - "y": 61.1856 - }, - { - "l": "98.0", - "x": 12.5833, - "y": 61.7434 - }, - { - "l": "98.0", - "x": 12.6667, - "y": 62.3145 - }, - { - "l": "98.0", - "x": 12.75, - "y": 62.9032 - }, - { - "l": "98.0", - "x": 12.8333, - "y": 63.4981 - }, - { - "l": "98.0", - "x": 12.9167, - "y": 64.1141 - }, - { - "l": "98.0", - "x": 13.0, - "y": 64.7418 - }, - { - "l": "98.0", - "x": 13.0833, - "y": 65.3774 - }, - { - "l": "98.0", - "x": 13.1667, - "y": 66.0306 - }, - { - "l": "98.0", - "x": 13.25, - "y": 66.7 - }, - { - "l": "98.0", - "x": 13.3333, - "y": 67.3691 - }, - { - "l": "98.0", - "x": 13.4167, - "y": 68.0501 - }, - { - "l": "98.0", - "x": 13.5, - "y": 68.737 - }, - { - "l": "98.0", - "x": 13.5833, - "y": 69.4301 - }, - { - "l": "98.0", - "x": 13.6667, - "y": 70.1285 - }, - { - "l": "98.0", - "x": 13.75, - "y": 70.8315 - }, - { - "l": "98.0", - "x": 13.8333, - "y": 71.5302 - }, - { - "l": "98.0", - "x": 13.9167, - "y": 72.2365 - }, - { - "l": "98.0", - "x": 14.0, - "y": 72.9399 - }, - { - "l": "98.0", - "x": 14.0833, - "y": 73.6415 - }, - { - "l": "98.0", - "x": 14.1667, - "y": 74.3338 - }, - { - "l": "98.0", - "x": 14.25, - "y": 75.0252 - }, - { - "l": "98.0", - "x": 14.3333, - "y": 75.7055 - }, - { - "l": "98.0", - "x": 14.4167, - "y": 76.373 - }, - { - "l": "98.0", - "x": 14.5, - "y": 77.0334 - }, - { - "l": "98.0", - "x": 14.5833, - "y": 77.6813 - }, - { - "l": "98.0", - "x": 14.6667, - "y": 78.3056 - }, - { - "l": "98.0", - "x": 14.75, - "y": 78.9227 - }, - { - "l": "98.0", - "x": 14.8333, - "y": 79.5151 - }, - { - "l": "98.0", - "x": 14.9167, - "y": 80.0981 - }, - { - "l": "98.0", - "x": 15.0, - "y": 80.6556 - }, - { - "l": "98.0", - "x": 15.0833, - "y": 81.1991 - }, - { - "l": "98.0", - "x": 15.1667, - "y": 81.7186 - }, - { - "l": "98.0", - "x": 15.25, - "y": 82.2173 - }, - { - "l": "98.0", - "x": 15.3333, - "y": 82.6986 - }, - { - "l": "98.0", - "x": 15.4167, - "y": 83.1516 - }, - { - "l": "98.0", - "x": 15.5, - "y": 83.5902 - }, - { - "l": "98.0", - "x": 15.5833, - "y": 83.9963 - }, - { - "l": "98.0", - "x": 15.6667, - "y": 84.3851 - }, - { - "l": "98.0", - "x": 15.75, - "y": 84.7545 - }, - { - "l": "98.0", - "x": 15.8333, - "y": 85.1016 - }, - { - "l": "98.0", - "x": 15.9167, - "y": 85.4249 - }, - { - "l": "98.0", - "x": 16.0, - "y": 85.7282 - }, - { - "l": "98.0", - "x": 16.0833, - "y": 86.0143 - }, - { - "l": "98.0", - "x": 16.1667, - "y": 86.2816 - }, - { - "l": "98.0", - "x": 16.25, - "y": 86.5276 - }, - { - "l": "98.0", - "x": 16.3333, - "y": 86.7654 - }, - { - "l": "98.0", - "x": 16.4167, - "y": 86.9931 - }, - { - "l": "98.0", - "x": 16.5, - "y": 87.2029 - }, - { - "l": "98.0", - "x": 16.5833, - "y": 87.4109 - }, - { - "l": "98.0", - "x": 16.6667, - "y": 87.6085 - }, - { - "l": "98.0", - "x": 16.75, - "y": 87.8021 - }, - { - "l": "98.0", - "x": 16.8333, - "y": 87.9918 - }, - { - "l": "98.0", - "x": 16.9167, - "y": 88.1745 - }, - { - "l": "98.0", - "x": 17.0, - "y": 88.3577 - }, - { - "l": "98.0", - "x": 17.0833, - "y": 88.538 - }, - { - "l": "98.0", - "x": 17.1667, - "y": 88.7101 - }, - { - "l": "98.0", - "x": 17.25, - "y": 88.8838 - }, - { - "l": "98.0", - "x": 17.3333, - "y": 89.0554 - }, - { - "l": "98.0", - "x": 17.4167, - "y": 89.2187 - }, - { - "l": "98.0", - "x": 17.5, - "y": 89.3879 - }, - { - "l": "98.0", - "x": 17.5833, - "y": 89.5491 - }, - { - "l": "98.0", - "x": 17.6667, - "y": 89.7111 - }, - { - "l": "98.0", - "x": 17.75, - "y": 89.8656 - }, - { - "l": "98.0", - "x": 17.8333, - "y": 90.0222 - }, - { - "l": "98.0", - "x": 17.9167, - "y": 90.1749 - }, - { - "l": "98.0", - "x": 18.0, - "y": 90.3251 - }, - { - "l": "98.0", - "x": 18.0833, - "y": 90.467 - }, - { - "l": "98.0", - "x": 18.1667, - "y": 90.6095 - }, - { - "l": "98.0", - "x": 18.25, - "y": 90.748 - }, - { - "l": "98.0", - "x": 18.3333, - "y": 90.8857 - }, - { - "l": "98.0", - "x": 18.4167, - "y": 91.0148 - }, - { - "l": "98.0", - "x": 18.5, - "y": 91.1429 - }, - { - "l": "98.0", - "x": 18.5833, - "y": 91.2699 - }, - { - "l": "98.0", - "x": 18.6667, - "y": 91.3892 - }, - { - "l": "98.0", - "x": 18.75, - "y": 91.5071 - }, - { - "l": "98.0", - "x": 18.8333, - "y": 91.6255 - }, - { - "l": "98.0", - "x": 18.9167, - "y": 91.735 - }, - { - "l": "98.0", - "x": 19.0, - "y": 91.8374 - }, - { - "l": "98.0", - "x": 19.0833, - "y": 91.9441 - }, - { - "l": "98.0", - "x": 19.1667, - "y": 92.0391 - }, - { - "l": "98.0", - "x": 19.25, - "y": 92.1408 - }, - { - "l": "98.0", - "x": 19.3333, - "y": 92.2361 - }, - { - "l": "98.0", - "x": 19.4167, - "y": 92.3254 - }, - { - "l": "98.0", - "x": 19.5, - "y": 92.4165 - }, - { - "l": "98.0", - "x": 19.5833, - "y": 92.4993 - }, - { - "l": "98.0", - "x": 19.6667, - "y": 92.5859 - }, - { - "l": "98.0", - "x": 19.75, - "y": 92.6696 - }, - { - "l": "98.0", - "x": 19.8333, - "y": 92.7509 - }, - { - "l": "98.0", - "x": 19.9167, - "y": 92.8285 - }, - { - "l": "98.0", - "x": 20.0, - "y": 92.9093 - }, - { - "l": "98.0", - "x": 20.0, - "y": 92.9093 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 4.0, - "y": 23.0959 - }, - { - "l": "99.6", - "x": 4.0833, - "y": 23.3539 - }, - { - "l": "99.6", - "x": 4.1667, - "y": 23.6196 - }, - { - "l": "99.6", - "x": 4.25, - "y": 23.8911 - }, - { - "l": "99.6", - "x": 4.3333, - "y": 24.1716 - }, - { - "l": "99.6", - "x": 4.4167, - "y": 24.4586 - }, - { - "l": "99.6", - "x": 4.5, - "y": 24.7533 - }, - { - "l": "99.6", - "x": 4.5833, - "y": 25.0532 - }, - { - "l": "99.6", - "x": 4.6667, - "y": 25.3571 - }, - { - "l": "99.6", - "x": 4.75, - "y": 25.6681 - }, - { - "l": "99.6", - "x": 4.8333, - "y": 25.9827 - }, - { - "l": "99.6", - "x": 4.9167, - "y": 26.3003 - }, - { - "l": "99.6", - "x": 5.0, - "y": 26.6189 - }, - { - "l": "99.6", - "x": 5.0833, - "y": 26.9389 - }, - { - "l": "99.6", - "x": 5.1667, - "y": 27.2586 - }, - { - "l": "99.6", - "x": 5.25, - "y": 27.5782 - }, - { - "l": "99.6", - "x": 5.3333, - "y": 27.8995 - }, - { - "l": "99.6", - "x": 5.4167, - "y": 28.2218 - }, - { - "l": "99.6", - "x": 5.5, - "y": 28.5471 - }, - { - "l": "99.6", - "x": 5.5833, - "y": 28.8756 - }, - { - "l": "99.6", - "x": 5.6667, - "y": 29.2072 - }, - { - "l": "99.6", - "x": 5.75, - "y": 29.5447 - }, - { - "l": "99.6", - "x": 5.8333, - "y": 29.8887 - }, - { - "l": "99.6", - "x": 5.9167, - "y": 30.2377 - }, - { - "l": "99.6", - "x": 6.0, - "y": 30.5934 - }, - { - "l": "99.6", - "x": 6.0833, - "y": 30.9551 - }, - { - "l": "99.6", - "x": 6.1667, - "y": 31.3207 - }, - { - "l": "99.6", - "x": 6.25, - "y": 31.696 - }, - { - "l": "99.6", - "x": 6.3333, - "y": 32.0766 - }, - { - "l": "99.6", - "x": 6.4167, - "y": 32.4644 - }, - { - "l": "99.6", - "x": 6.5, - "y": 32.8626 - }, - { - "l": "99.6", - "x": 6.5833, - "y": 33.2686 - }, - { - "l": "99.6", - "x": 6.6667, - "y": 33.6873 - }, - { - "l": "99.6", - "x": 6.75, - "y": 34.1163 - }, - { - "l": "99.6", - "x": 6.8333, - "y": 34.5567 - }, - { - "l": "99.6", - "x": 6.9167, - "y": 35.0098 - }, - { - "l": "99.6", - "x": 7.0, - "y": 35.47 - }, - { - "l": "99.6", - "x": 7.0833, - "y": 35.9477 - }, - { - "l": "99.6", - "x": 7.1667, - "y": 36.4365 - }, - { - "l": "99.6", - "x": 7.25, - "y": 36.9364 - }, - { - "l": "99.6", - "x": 7.3333, - "y": 37.4459 - }, - { - "l": "99.6", - "x": 7.4167, - "y": 37.9631 - }, - { - "l": "99.6", - "x": 7.5, - "y": 38.4905 - }, - { - "l": "99.6", - "x": 7.5833, - "y": 39.0272 - }, - { - "l": "99.6", - "x": 7.6667, - "y": 39.5764 - }, - { - "l": "99.6", - "x": 7.75, - "y": 40.1313 - }, - { - "l": "99.6", - "x": 7.8333, - "y": 40.6947 - }, - { - "l": "99.6", - "x": 7.9167, - "y": 41.2714 - }, - { - "l": "99.6", - "x": 8.0, - "y": 41.8579 - }, - { - "l": "99.6", - "x": 8.0833, - "y": 42.4482 - }, - { - "l": "99.6", - "x": 8.1667, - "y": 43.0427 - }, - { - "l": "99.6", - "x": 8.25, - "y": 43.6504 - }, - { - "l": "99.6", - "x": 8.3333, - "y": 44.2558 - }, - { - "l": "99.6", - "x": 8.4167, - "y": 44.8761 - }, - { - "l": "99.6", - "x": 8.5, - "y": 45.4922 - }, - { - "l": "99.6", - "x": 8.5833, - "y": 46.1127 - }, - { - "l": "99.6", - "x": 8.6667, - "y": 46.7415 - }, - { - "l": "99.6", - "x": 8.75, - "y": 47.3695 - }, - { - "l": "99.6", - "x": 8.8333, - "y": 47.992 - }, - { - "l": "99.6", - "x": 8.9167, - "y": 48.6246 - }, - { - "l": "99.6", - "x": 9.0, - "y": 49.254 - }, - { - "l": "99.6", - "x": 9.0833, - "y": 49.8798 - }, - { - "l": "99.6", - "x": 9.1667, - "y": 50.5078 - }, - { - "l": "99.6", - "x": 9.25, - "y": 51.1433 - }, - { - "l": "99.6", - "x": 9.3333, - "y": 51.7732 - }, - { - "l": "99.6", - "x": 9.4167, - "y": 52.3965 - }, - { - "l": "99.6", - "x": 9.5, - "y": 53.0185 - }, - { - "l": "99.6", - "x": 9.5833, - "y": 53.6394 - }, - { - "l": "99.6", - "x": 9.6667, - "y": 54.2503 - }, - { - "l": "99.6", - "x": 9.75, - "y": 54.8685 - }, - { - "l": "99.6", - "x": 9.8333, - "y": 55.4918 - }, - { - "l": "99.6", - "x": 9.9167, - "y": 56.0978 - }, - { - "l": "99.6", - "x": 10.0, - "y": 56.7228 - }, - { - "l": "99.6", - "x": 10.0833, - "y": 57.33 - }, - { - "l": "99.6", - "x": 10.1667, - "y": 57.9447 - }, - { - "l": "99.6", - "x": 10.25, - "y": 58.5573 - }, - { - "l": "99.6", - "x": 10.3333, - "y": 59.1639 - }, - { - "l": "99.6", - "x": 10.4167, - "y": 59.7595 - }, - { - "l": "99.6", - "x": 10.5, - "y": 60.3525 - }, - { - "l": "99.6", - "x": 10.5833, - "y": 60.9313 - }, - { - "l": "99.6", - "x": 10.6667, - "y": 61.4958 - }, - { - "l": "99.6", - "x": 10.75, - "y": 62.0621 - }, - { - "l": "99.6", - "x": 10.8333, - "y": 62.6273 - }, - { - "l": "99.6", - "x": 10.9167, - "y": 63.1618 - }, - { - "l": "99.6", - "x": 11.0, - "y": 63.7142 - }, - { - "l": "99.6", - "x": 11.0833, - "y": 64.2386 - }, - { - "l": "99.6", - "x": 11.1667, - "y": 64.7582 - }, - { - "l": "99.6", - "x": 11.25, - "y": 65.2812 - }, - { - "l": "99.6", - "x": 11.3333, - "y": 65.7891 - }, - { - "l": "99.6", - "x": 11.4167, - "y": 66.2813 - }, - { - "l": "99.6", - "x": 11.5, - "y": 66.7831 - }, - { - "l": "99.6", - "x": 11.5833, - "y": 67.2742 - }, - { - "l": "99.6", - "x": 11.6667, - "y": 67.7567 - }, - { - "l": "99.6", - "x": 11.75, - "y": 68.2489 - }, - { - "l": "99.6", - "x": 11.8333, - "y": 68.7365 - }, - { - "l": "99.6", - "x": 11.9167, - "y": 69.2214 - }, - { - "l": "99.6", - "x": 12.0, - "y": 69.6998 - }, - { - "l": "99.6", - "x": 12.0833, - "y": 70.1906 - }, - { - "l": "99.6", - "x": 12.1667, - "y": 70.6954 - }, - { - "l": "99.6", - "x": 12.25, - "y": 71.1876 - }, - { - "l": "99.6", - "x": 12.3333, - "y": 71.6949 - }, - { - "l": "99.6", - "x": 12.4167, - "y": 72.206 - }, - { - "l": "99.6", - "x": 12.5, - "y": 72.7305 - }, - { - "l": "99.6", - "x": 12.5833, - "y": 73.2657 - }, - { - "l": "99.6", - "x": 12.6667, - "y": 73.8162 - }, - { - "l": "99.6", - "x": 12.75, - "y": 74.3887 - }, - { - "l": "99.6", - "x": 12.8333, - "y": 74.9595 - }, - { - "l": "99.6", - "x": 12.9167, - "y": 75.5576 - }, - { - "l": "99.6", - "x": 13.0, - "y": 76.1678 - }, - { - "l": "99.6", - "x": 13.0833, - "y": 76.7797 - }, - { - "l": "99.6", - "x": 13.1667, - "y": 77.4178 - }, - { - "l": "99.6", - "x": 13.25, - "y": 78.0802 - }, - { - "l": "99.6", - "x": 13.3333, - "y": 78.7322 - }, - { - "l": "99.6", - "x": 13.4167, - "y": 79.4034 - }, - { - "l": "99.6", - "x": 13.5, - "y": 80.08 - }, - { - "l": "99.6", - "x": 13.5833, - "y": 80.7671 - }, - { - "l": "99.6", - "x": 13.6667, - "y": 81.4637 - }, - { - "l": "99.6", - "x": 13.75, - "y": 82.1697 - }, - { - "l": "99.6", - "x": 13.8333, - "y": 82.8674 - }, - { - "l": "99.6", - "x": 13.9167, - "y": 83.5833 - }, - { - "l": "99.6", - "x": 14.0, - "y": 84.298 - }, - { - "l": "99.6", - "x": 14.0833, - "y": 85.0134 - }, - { - "l": "99.6", - "x": 14.1667, - "y": 85.7187 - }, - { - "l": "99.6", - "x": 14.25, - "y": 86.4302 - }, - { - "l": "99.6", - "x": 14.3333, - "y": 87.1294 - }, - { - "l": "99.6", - "x": 14.4167, - "y": 87.8141 - }, - { - "l": "99.6", - "x": 14.5, - "y": 88.4969 - }, - { - "l": "99.6", - "x": 14.5833, - "y": 89.1702 - }, - { - "l": "99.6", - "x": 14.6667, - "y": 89.8096 - }, - { - "l": "99.6", - "x": 14.75, - "y": 90.4512 - }, - { - "l": "99.6", - "x": 14.8333, - "y": 91.0578 - }, - { - "l": "99.6", - "x": 14.9167, - "y": 91.6636 - }, - { - "l": "99.6", - "x": 15.0, - "y": 92.234 - }, - { - "l": "99.6", - "x": 15.0833, - "y": 92.7929 - }, - { - "l": "99.6", - "x": 15.1667, - "y": 93.3229 - }, - { - "l": "99.6", - "x": 15.25, - "y": 93.8284 - }, - { - "l": "99.6", - "x": 15.3333, - "y": 94.3179 - }, - { - "l": "99.6", - "x": 15.4167, - "y": 94.7681 - }, - { - "l": "99.6", - "x": 15.5, - "y": 95.2069 - }, - { - "l": "99.6", - "x": 15.5833, - "y": 95.6006 - }, - { - "l": "99.6", - "x": 15.6667, - "y": 95.9751 - }, - { - "l": "99.6", - "x": 15.75, - "y": 96.3278 - }, - { - "l": "99.6", - "x": 15.8333, - "y": 96.6546 - }, - { - "l": "99.6", - "x": 15.9167, - "y": 96.9506 - }, - { - "l": "99.6", - "x": 16.0, - "y": 97.2209 - }, - { - "l": "99.6", - "x": 16.0833, - "y": 97.4742 - }, - { - "l": "99.6", - "x": 16.1667, - "y": 97.7046 - }, - { - "l": "99.6", - "x": 16.25, - "y": 97.9056 - }, - { - "l": "99.6", - "x": 16.3333, - "y": 98.103 - }, - { - "l": "99.6", - "x": 16.4167, - "y": 98.2906 - }, - { - "l": "99.6", - "x": 16.5, - "y": 98.4547 - }, - { - "l": "99.6", - "x": 16.5833, - "y": 98.6246 - }, - { - "l": "99.6", - "x": 16.6667, - "y": 98.7816 - }, - { - "l": "99.6", - "x": 16.75, - "y": 98.938 - }, - { - "l": "99.6", - "x": 16.8333, - "y": 99.0942 - }, - { - "l": "99.6", - "x": 16.9167, - "y": 99.2448 - }, - { - "l": "99.6", - "x": 17.0, - "y": 99.4014 - }, - { - "l": "99.6", - "x": 17.0833, - "y": 99.5582 - }, - { - "l": "99.6", - "x": 17.1667, - "y": 99.7048 - }, - { - "l": "99.6", - "x": 17.25, - "y": 99.8589 - }, - { - "l": "99.6", - "x": 17.3333, - "y": 100.0136 - }, - { - "l": "99.6", - "x": 17.4167, - "y": 100.1584 - }, - { - "l": "99.6", - "x": 17.5, - "y": 100.3186 - }, - { - "l": "99.6", - "x": 17.5833, - "y": 100.4685 - }, - { - "l": "99.6", - "x": 17.6667, - "y": 100.6235 - }, - { - "l": "99.6", - "x": 17.75, - "y": 100.7691 - }, - { - "l": "99.6", - "x": 17.8333, - "y": 100.9204 - }, - { - "l": "99.6", - "x": 17.9167, - "y": 101.0701 - }, - { - "l": "99.6", - "x": 18.0, - "y": 101.2206 - }, - { - "l": "99.6", - "x": 18.0833, - "y": 101.3588 - }, - { - "l": "99.6", - "x": 18.1667, - "y": 101.5014 - }, - { - "l": "99.6", - "x": 18.25, - "y": 101.6415 - }, - { - "l": "99.6", - "x": 18.3333, - "y": 101.7835 - }, - { - "l": "99.6", - "x": 18.4167, - "y": 101.9131 - }, - { - "l": "99.6", - "x": 18.5, - "y": 102.0435 - }, - { - "l": "99.6", - "x": 18.5833, - "y": 102.1756 - }, - { - "l": "99.6", - "x": 18.6667, - "y": 102.299 - }, - { - "l": "99.6", - "x": 18.75, - "y": 102.4202 - }, - { - "l": "99.6", - "x": 18.8333, - "y": 102.5476 - }, - { - "l": "99.6", - "x": 18.9167, - "y": 102.6613 - }, - { - "l": "99.6", - "x": 19.0, - "y": 102.7636 - }, - { - "l": "99.6", - "x": 19.0833, - "y": 102.8783 - }, - { - "l": "99.6", - "x": 19.1667, - "y": 102.9743 - }, - { - "l": "99.6", - "x": 19.25, - "y": 103.0854 - }, - { - "l": "99.6", - "x": 19.3333, - "y": 103.1858 - }, - { - "l": "99.6", - "x": 19.4167, - "y": 103.2795 - }, - { - "l": "99.6", - "x": 19.5, - "y": 103.3774 - }, - { - "l": "99.6", - "x": 19.5833, - "y": 103.4613 - }, - { - "l": "99.6", - "x": 19.6667, - "y": 103.555 - }, - { - "l": "99.6", - "x": 19.75, - "y": 103.6455 - }, - { - "l": "99.6", - "x": 19.8333, - "y": 103.7308 - }, - { - "l": "99.6", - "x": 19.9167, - "y": 103.8121 - }, - { - "l": "99.6", - "x": 20.0, - "y": 103.9014 - }, - { - "l": "99.6", - "x": 20.0, - "y": 103.9014 - } - ] - } - ], - "ofc": null, - "bmi": null - }, - "female": null - } - } - ] -}; - -var ukwhoWeightFemaleCentileData = { - "centile_data": [ - { - "uk90_preterm": { - "male": null, - "female": { - "height": null, - "weight": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": -0.3258, - "y": 0.2724 - }, - { - "l": "0.4", - "x": -0.3066, - "y": 0.3191 - }, - { - "l": "0.4", - "x": -0.2875, - "y": 0.3669 - }, - { - "l": "0.4", - "x": -0.2683, - "y": 0.4157 - }, - { - "l": "0.4", - "x": -0.2491, - "y": 0.4668 - }, - { - "l": "0.4", - "x": -0.23, - "y": 0.5222 - }, - { - "l": "0.4", - "x": -0.2108, - "y": 0.5864 - }, - { - "l": "0.4", - "x": -0.1916, - "y": 0.6657 - }, - { - "l": "0.4", - "x": -0.1725, - "y": 0.7648 - }, - { - "l": "0.4", - "x": -0.1533, - "y": 0.8842 - }, - { - "l": "0.4", - "x": -0.1342, - "y": 1.0242 - }, - { - "l": "0.4", - "x": -0.115, - "y": 1.1836 - }, - { - "l": "0.4", - "x": -0.0958, - "y": 1.3613 - }, - { - "l": "0.4", - "x": -0.0767, - "y": 1.5552 - }, - { - "l": "0.4", - "x": -0.0575, - "y": 1.7623 - }, - { - "l": "0.4", - "x": -0.0383, - "y": 1.9763 - }, - { - "l": "0.4", - "x": -0.0192, - "y": 2.1849 - }, - { - "l": "0.4", - "x": -0.0, - "y": 2.3714 - }, - { - "l": "0.4", - "x": 0.0192, - "y": 2.5265 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 2.6639 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 2.6639 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": -0.3258, - "y": 0.3507 - }, - { - "l": "2.0", - "x": -0.3066, - "y": 0.4108 - }, - { - "l": "2.0", - "x": -0.2875, - "y": 0.472 - }, - { - "l": "2.0", - "x": -0.2683, - "y": 0.5345 - }, - { - "l": "2.0", - "x": -0.2491, - "y": 0.5994 - }, - { - "l": "2.0", - "x": -0.23, - "y": 0.6684 - }, - { - "l": "2.0", - "x": -0.2108, - "y": 0.7455 - }, - { - "l": "2.0", - "x": -0.1916, - "y": 0.8385 - }, - { - "l": "2.0", - "x": -0.1725, - "y": 0.9517 - }, - { - "l": "2.0", - "x": -0.1533, - "y": 1.0853 - }, - { - "l": "2.0", - "x": -0.1342, - "y": 1.2387 - }, - { - "l": "2.0", - "x": -0.115, - "y": 1.4102 - }, - { - "l": "2.0", - "x": -0.0958, - "y": 1.5977 - }, - { - "l": "2.0", - "x": -0.0767, - "y": 1.7987 - }, - { - "l": "2.0", - "x": -0.0575, - "y": 2.0094 - }, - { - "l": "2.0", - "x": -0.0383, - "y": 2.2235 - }, - { - "l": "2.0", - "x": -0.0192, - "y": 2.4303 - }, - { - "l": "2.0", - "x": -0.0, - "y": 2.6141 - }, - { - "l": "2.0", - "x": 0.0192, - "y": 2.7655 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 2.8985 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 2.8985 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": -0.3258, - "y": 0.4237 - }, - { - "l": "9.0", - "x": -0.3066, - "y": 0.497 - }, - { - "l": "9.0", - "x": -0.2875, - "y": 0.572 - }, - { - "l": "9.0", - "x": -0.2683, - "y": 0.6487 - }, - { - "l": "9.0", - "x": -0.2491, - "y": 0.7282 - }, - { - "l": "9.0", - "x": -0.23, - "y": 0.8119 - }, - { - "l": "9.0", - "x": -0.2108, - "y": 0.9035 - }, - { - "l": "9.0", - "x": -0.1916, - "y": 1.0117 - }, - { - "l": "9.0", - "x": -0.1725, - "y": 1.1409 - }, - { - "l": "9.0", - "x": -0.1533, - "y": 1.2906 - }, - { - "l": "9.0", - "x": -0.1342, - "y": 1.4593 - }, - { - "l": "9.0", - "x": -0.115, - "y": 1.6446 - }, - { - "l": "9.0", - "x": -0.0958, - "y": 1.8435 - }, - { - "l": "9.0", - "x": -0.0767, - "y": 2.0528 - }, - { - "l": "9.0", - "x": -0.0575, - "y": 2.2677 - }, - { - "l": "9.0", - "x": -0.0383, - "y": 2.4822 - }, - { - "l": "9.0", - "x": -0.0192, - "y": 2.6874 - }, - { - "l": "9.0", - "x": -0.0, - "y": 2.8686 - }, - { - "l": "9.0", - "x": 0.0192, - "y": 3.0163 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 3.145 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 3.145 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": -0.3258, - "y": 0.4928 - }, - { - "l": "25.0", - "x": -0.3066, - "y": 0.5793 - }, - { - "l": "25.0", - "x": -0.2875, - "y": 0.6681 - }, - { - "l": "25.0", - "x": -0.2683, - "y": 0.7594 - }, - { - "l": "25.0", - "x": -0.2491, - "y": 0.8541 - }, - { - "l": "25.0", - "x": -0.23, - "y": 0.9533 - }, - { - "l": "25.0", - "x": -0.2108, - "y": 1.0604 - }, - { - "l": "25.0", - "x": -0.1916, - "y": 1.1854 - }, - { - "l": "25.0", - "x": -0.1725, - "y": 1.3321 - }, - { - "l": "25.0", - "x": -0.1533, - "y": 1.4996 - }, - { - "l": "25.0", - "x": -0.1342, - "y": 1.6853 - }, - { - "l": "25.0", - "x": -0.115, - "y": 1.8861 - }, - { - "l": "25.0", - "x": -0.0958, - "y": 2.098 - }, - { - "l": "25.0", - "x": -0.0767, - "y": 2.3168 - }, - { - "l": "25.0", - "x": -0.0575, - "y": 2.5368 - }, - { - "l": "25.0", - "x": -0.0383, - "y": 2.7522 - }, - { - "l": "25.0", - "x": -0.0192, - "y": 2.9561 - }, - { - "l": "25.0", - "x": -0.0, - "y": 3.1349 - }, - { - "l": "25.0", - "x": 0.0192, - "y": 3.2791 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 3.4035 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 3.4035 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": -0.3258, - "y": 0.5589 - }, - { - "l": "50.0", - "x": -0.3066, - "y": 0.6584 - }, - { - "l": "50.0", - "x": -0.2875, - "y": 0.7611 - }, - { - "l": "50.0", - "x": -0.2683, - "y": 0.8672 - }, - { - "l": "50.0", - "x": -0.2491, - "y": 0.9775 - }, - { - "l": "50.0", - "x": -0.23, - "y": 1.0929 - }, - { - "l": "50.0", - "x": -0.2108, - "y": 1.2166 - }, - { - "l": "50.0", - "x": -0.1916, - "y": 1.3593 - }, - { - "l": "50.0", - "x": -0.1725, - "y": 1.525 - }, - { - "l": "50.0", - "x": -0.1533, - "y": 1.7118 - }, - { - "l": "50.0", - "x": -0.1342, - "y": 1.9163 - }, - { - "l": "50.0", - "x": -0.115, - "y": 2.1342 - }, - { - "l": "50.0", - "x": -0.0958, - "y": 2.3607 - }, - { - "l": "50.0", - "x": -0.0767, - "y": 2.5903 - }, - { - "l": "50.0", - "x": -0.0575, - "y": 2.8164 - }, - { - "l": "50.0", - "x": -0.0383, - "y": 3.0334 - }, - { - "l": "50.0", - "x": -0.0192, - "y": 3.2362 - }, - { - "l": "50.0", - "x": -0.0, - "y": 3.413 - }, - { - "l": "50.0", - "x": 0.0192, - "y": 3.5539 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 3.6743 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 3.6743 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": -0.3258, - "y": 0.6225 - }, - { - "l": "75.0", - "x": -0.3066, - "y": 0.735 - }, - { - "l": "75.0", - "x": -0.2875, - "y": 0.8516 - }, - { - "l": "75.0", - "x": -0.2683, - "y": 0.9726 - }, - { - "l": "75.0", - "x": -0.2491, - "y": 1.0989 - }, - { - "l": "75.0", - "x": -0.23, - "y": 1.231 - }, - { - "l": "75.0", - "x": -0.2108, - "y": 1.3721 - }, - { - "l": "75.0", - "x": -0.1916, - "y": 1.5335 - }, - { - "l": "75.0", - "x": -0.1725, - "y": 1.7194 - }, - { - "l": "75.0", - "x": -0.1533, - "y": 1.927 - }, - { - "l": "75.0", - "x": -0.1342, - "y": 2.1518 - }, - { - "l": "75.0", - "x": -0.115, - "y": 2.3884 - }, - { - "l": "75.0", - "x": -0.0958, - "y": 2.6311 - }, - { - "l": "75.0", - "x": -0.0767, - "y": 2.8729 - }, - { - "l": "75.0", - "x": -0.0575, - "y": 3.1062 - }, - { - "l": "75.0", - "x": -0.0383, - "y": 3.3254 - }, - { - "l": "75.0", - "x": -0.0192, - "y": 3.5277 - }, - { - "l": "75.0", - "x": -0.0, - "y": 3.7029 - }, - { - "l": "75.0", - "x": 0.0192, - "y": 3.8409 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 3.9575 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 3.9575 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": -0.3258, - "y": 0.684 - }, - { - "l": "91.0", - "x": -0.3066, - "y": 0.8094 - }, - { - "l": "91.0", - "x": -0.2875, - "y": 0.9399 - }, - { - "l": "91.0", - "x": -0.2683, - "y": 1.076 - }, - { - "l": "91.0", - "x": -0.2491, - "y": 1.2186 - }, - { - "l": "91.0", - "x": -0.23, - "y": 1.3679 - }, - { - "l": "91.0", - "x": -0.2108, - "y": 1.5269 - }, - { - "l": "91.0", - "x": -0.1916, - "y": 1.708 - }, - { - "l": "91.0", - "x": -0.1725, - "y": 1.9152 - }, - { - "l": "91.0", - "x": -0.1533, - "y": 2.1448 - }, - { - "l": "91.0", - "x": -0.1342, - "y": 2.3915 - }, - { - "l": "91.0", - "x": -0.115, - "y": 2.6484 - }, - { - "l": "91.0", - "x": -0.0958, - "y": 2.9088 - }, - { - "l": "91.0", - "x": -0.0767, - "y": 3.1643 - }, - { - "l": "91.0", - "x": -0.0575, - "y": 3.4058 - }, - { - "l": "91.0", - "x": -0.0383, - "y": 3.6282 - }, - { - "l": "91.0", - "x": -0.0192, - "y": 3.8305 - }, - { - "l": "91.0", - "x": -0.0, - "y": 4.0045 - }, - { - "l": "91.0", - "x": 0.0192, - "y": 4.1401 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 4.2534 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 4.2534 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": -0.3258, - "y": 0.7438 - }, - { - "l": "98.0", - "x": -0.3066, - "y": 0.8819 - }, - { - "l": "98.0", - "x": -0.2875, - "y": 1.0263 - }, - { - "l": "98.0", - "x": -0.2683, - "y": 1.1776 - }, - { - "l": "98.0", - "x": -0.2491, - "y": 1.3367 - }, - { - "l": "98.0", - "x": -0.23, - "y": 1.5036 - }, - { - "l": "98.0", - "x": -0.2108, - "y": 1.6812 - }, - { - "l": "98.0", - "x": -0.1916, - "y": 1.8828 - }, - { - "l": "98.0", - "x": -0.1725, - "y": 2.1123 - }, - { - "l": "98.0", - "x": -0.1533, - "y": 2.3651 - }, - { - "l": "98.0", - "x": -0.1342, - "y": 2.635 - }, - { - "l": "98.0", - "x": -0.115, - "y": 2.9138 - }, - { - "l": "98.0", - "x": -0.0958, - "y": 3.1935 - }, - { - "l": "98.0", - "x": -0.0767, - "y": 3.4642 - }, - { - "l": "98.0", - "x": -0.0575, - "y": 3.7151 - }, - { - "l": "98.0", - "x": -0.0383, - "y": 3.9414 - }, - { - "l": "98.0", - "x": -0.0192, - "y": 4.1444 - }, - { - "l": "98.0", - "x": -0.0, - "y": 4.318 - }, - { - "l": "98.0", - "x": 0.0192, - "y": 4.4516 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 4.5621 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 4.5621 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": -0.3258, - "y": 0.8021 - }, - { - "l": "99.6", - "x": -0.3066, - "y": 0.9528 - }, - { - "l": "99.6", - "x": -0.2875, - "y": 1.1112 - }, - { - "l": "99.6", - "x": -0.2683, - "y": 1.2777 - }, - { - "l": "99.6", - "x": -0.2491, - "y": 1.4535 - }, - { - "l": "99.6", - "x": -0.23, - "y": 1.6383 - }, - { - "l": "99.6", - "x": -0.2108, - "y": 1.835 - }, - { - "l": "99.6", - "x": -0.1916, - "y": 2.0577 - }, - { - "l": "99.6", - "x": -0.1725, - "y": 2.3105 - }, - { - "l": "99.6", - "x": -0.1533, - "y": 2.5877 - }, - { - "l": "99.6", - "x": -0.1342, - "y": 2.8822 - }, - { - "l": "99.6", - "x": -0.115, - "y": 3.1843 - }, - { - "l": "99.6", - "x": -0.0958, - "y": 3.4848 - }, - { - "l": "99.6", - "x": -0.0767, - "y": 3.7721 - }, - { - "l": "99.6", - "x": -0.0575, - "y": 4.0337 - }, - { - "l": "99.6", - "x": -0.0383, - "y": 4.265 - }, - { - "l": "99.6", - "x": -0.0192, - "y": 4.4694 - }, - { - "l": "99.6", - "x": -0.0, - "y": 4.6432 - }, - { - "l": "99.6", - "x": 0.0192, - "y": 4.7755 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 4.8837 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 4.8837 - } - ] - } - ], - "ofc": null, - "bmi": null - } - } - }, - { - "uk_who_infant": { - "male": null, - "female": { - "height": null, - "weight": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 0.0383, - "y": 2.3919 - }, - { - "l": "0.4", - "x": 0.0575, - "y": 2.5968 - }, - { - "l": "0.4", - "x": 0.0767, - "y": 2.8007 - }, - { - "l": "0.4", - "x": 0.0958, - "y": 2.994 - }, - { - "l": "0.4", - "x": 0.115, - "y": 3.1747 - }, - { - "l": "0.4", - "x": 0.1342, - "y": 3.3434 - }, - { - "l": "0.4", - "x": 0.1533, - "y": 3.5008 - }, - { - "l": "0.4", - "x": 0.1725, - "y": 3.6483 - }, - { - "l": "0.4", - "x": 0.1916, - "y": 3.7874 - }, - { - "l": "0.4", - "x": 0.2108, - "y": 3.9187 - }, - { - "l": "0.4", - "x": 0.23, - "y": 4.0428 - }, - { - "l": "0.4", - "x": 0.2491, - "y": 4.1608 - }, - { - "l": "0.4", - "x": 0.2683, - "y": 4.2724 - }, - { - "l": "0.4", - "x": 0.2875, - "y": 4.3793 - }, - { - "l": "0.4", - "x": 0.3066, - "y": 4.4814 - }, - { - "l": "0.4", - "x": 0.3258, - "y": 4.579 - }, - { - "l": "0.4", - "x": 0.345, - "y": 4.672 - }, - { - "l": "0.4", - "x": 0.3641, - "y": 4.7607 - }, - { - "l": "0.4", - "x": 0.3833, - "y": 4.8454 - }, - { - "l": "0.4", - "x": 0.4025, - "y": 4.9264 - }, - { - "l": "0.4", - "x": 0.4216, - "y": 5.004 - }, - { - "l": "0.4", - "x": 0.4408, - "y": 5.0786 - }, - { - "l": "0.4", - "x": 0.46, - "y": 5.1501 - }, - { - "l": "0.4", - "x": 0.4791, - "y": 5.2188 - }, - { - "l": "0.4", - "x": 0.4983, - "y": 5.285 - }, - { - "l": "0.4", - "x": 0.5175, - "y": 5.3489 - }, - { - "l": "0.4", - "x": 0.5366, - "y": 5.4107 - }, - { - "l": "0.4", - "x": 0.5558, - "y": 5.4704 - }, - { - "l": "0.4", - "x": 0.5749, - "y": 5.5281 - }, - { - "l": "0.4", - "x": 0.5941, - "y": 5.5841 - }, - { - "l": "0.4", - "x": 0.6133, - "y": 5.6386 - }, - { - "l": "0.4", - "x": 0.6324, - "y": 5.6914 - }, - { - "l": "0.4", - "x": 0.6516, - "y": 5.7428 - }, - { - "l": "0.4", - "x": 0.6708, - "y": 5.7929 - }, - { - "l": "0.4", - "x": 0.6899, - "y": 5.8417 - }, - { - "l": "0.4", - "x": 0.7091, - "y": 5.8893 - }, - { - "l": "0.4", - "x": 0.7283, - "y": 5.9358 - }, - { - "l": "0.4", - "x": 0.7474, - "y": 5.9813 - }, - { - "l": "0.4", - "x": 0.7666, - "y": 6.0259 - }, - { - "l": "0.4", - "x": 0.7858, - "y": 6.0696 - }, - { - "l": "0.4", - "x": 0.8049, - "y": 6.1125 - }, - { - "l": "0.4", - "x": 0.8241, - "y": 6.1547 - }, - { - "l": "0.4", - "x": 0.8433, - "y": 6.1962 - }, - { - "l": "0.4", - "x": 0.8624, - "y": 6.2372 - }, - { - "l": "0.4", - "x": 0.8816, - "y": 6.2777 - }, - { - "l": "0.4", - "x": 0.9008, - "y": 6.3177 - }, - { - "l": "0.4", - "x": 0.9199, - "y": 6.3572 - }, - { - "l": "0.4", - "x": 0.9391, - "y": 6.3964 - }, - { - "l": "0.4", - "x": 0.9582, - "y": 6.4352 - }, - { - "l": "0.4", - "x": 0.9774, - "y": 6.4737 - }, - { - "l": "0.4", - "x": 0.9966, - "y": 6.5119 - }, - { - "l": "0.4", - "x": 1.0157, - "y": 6.5499 - }, - { - "l": "0.4", - "x": 1.0349, - "y": 6.5876 - }, - { - "l": "0.4", - "x": 1.0541, - "y": 6.6252 - }, - { - "l": "0.4", - "x": 1.0732, - "y": 6.6625 - }, - { - "l": "0.4", - "x": 1.0924, - "y": 6.6997 - }, - { - "l": "0.4", - "x": 1.1116, - "y": 6.7367 - }, - { - "l": "0.4", - "x": 1.1307, - "y": 6.7736 - }, - { - "l": "0.4", - "x": 1.1499, - "y": 6.8104 - }, - { - "l": "0.4", - "x": 1.1691, - "y": 6.8471 - }, - { - "l": "0.4", - "x": 1.1882, - "y": 6.8837 - }, - { - "l": "0.4", - "x": 1.2074, - "y": 6.9202 - }, - { - "l": "0.4", - "x": 1.2266, - "y": 6.9566 - }, - { - "l": "0.4", - "x": 1.2457, - "y": 6.993 - }, - { - "l": "0.4", - "x": 1.2649, - "y": 7.0292 - }, - { - "l": "0.4", - "x": 1.2841, - "y": 7.0653 - }, - { - "l": "0.4", - "x": 1.3032, - "y": 7.1014 - }, - { - "l": "0.4", - "x": 1.3224, - "y": 7.1374 - }, - { - "l": "0.4", - "x": 1.3415, - "y": 7.1733 - }, - { - "l": "0.4", - "x": 1.3607, - "y": 7.2092 - }, - { - "l": "0.4", - "x": 1.3799, - "y": 7.2451 - }, - { - "l": "0.4", - "x": 1.399, - "y": 7.2809 - }, - { - "l": "0.4", - "x": 1.4182, - "y": 7.3166 - }, - { - "l": "0.4", - "x": 1.4374, - "y": 7.3522 - }, - { - "l": "0.4", - "x": 1.4565, - "y": 7.3878 - }, - { - "l": "0.4", - "x": 1.4757, - "y": 7.4234 - }, - { - "l": "0.4", - "x": 1.4949, - "y": 7.4588 - }, - { - "l": "0.4", - "x": 1.514, - "y": 7.4942 - }, - { - "l": "0.4", - "x": 1.5332, - "y": 7.5294 - }, - { - "l": "0.4", - "x": 1.5524, - "y": 7.5646 - }, - { - "l": "0.4", - "x": 1.5715, - "y": 7.5997 - }, - { - "l": "0.4", - "x": 1.5907, - "y": 7.6347 - }, - { - "l": "0.4", - "x": 1.6099, - "y": 7.6697 - }, - { - "l": "0.4", - "x": 1.629, - "y": 7.7047 - }, - { - "l": "0.4", - "x": 1.6482, - "y": 7.7396 - }, - { - "l": "0.4", - "x": 1.6674, - "y": 7.7744 - }, - { - "l": "0.4", - "x": 1.6865, - "y": 7.8092 - }, - { - "l": "0.4", - "x": 1.7057, - "y": 7.8439 - }, - { - "l": "0.4", - "x": 1.7248, - "y": 7.8785 - }, - { - "l": "0.4", - "x": 1.744, - "y": 7.9132 - }, - { - "l": "0.4", - "x": 1.7632, - "y": 7.9478 - }, - { - "l": "0.4", - "x": 1.7823, - "y": 7.9824 - }, - { - "l": "0.4", - "x": 1.8015, - "y": 8.0169 - }, - { - "l": "0.4", - "x": 1.8207, - "y": 8.0515 - }, - { - "l": "0.4", - "x": 1.8398, - "y": 8.086 - }, - { - "l": "0.4", - "x": 1.859, - "y": 8.1204 - }, - { - "l": "0.4", - "x": 1.8782, - "y": 8.1548 - }, - { - "l": "0.4", - "x": 1.8973, - "y": 8.1892 - }, - { - "l": "0.4", - "x": 1.9165, - "y": 8.2236 - }, - { - "l": "0.4", - "x": 1.9357, - "y": 8.258 - }, - { - "l": "0.4", - "x": 1.9548, - "y": 8.2924 - }, - { - "l": "0.4", - "x": 1.974, - "y": 8.3268 - }, - { - "l": "0.4", - "x": 1.9932, - "y": 8.3612 - }, - { - "l": "0.4", - "x": 2.0, - "y": 8.3735 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 0.0383, - "y": 2.653 - }, - { - "l": "2.0", - "x": 0.0575, - "y": 2.8711 - }, - { - "l": "2.0", - "x": 0.0767, - "y": 3.088 - }, - { - "l": "2.0", - "x": 0.0958, - "y": 3.2935 - }, - { - "l": "2.0", - "x": 0.115, - "y": 3.4854 - }, - { - "l": "2.0", - "x": 0.1342, - "y": 3.6643 - }, - { - "l": "2.0", - "x": 0.1533, - "y": 3.8311 - }, - { - "l": "2.0", - "x": 0.1725, - "y": 3.9875 - }, - { - "l": "2.0", - "x": 0.1916, - "y": 4.1349 - }, - { - "l": "2.0", - "x": 0.2108, - "y": 4.274 - }, - { - "l": "2.0", - "x": 0.23, - "y": 4.4056 - }, - { - "l": "2.0", - "x": 0.2491, - "y": 4.5306 - }, - { - "l": "2.0", - "x": 0.2683, - "y": 4.649 - }, - { - "l": "2.0", - "x": 0.2875, - "y": 4.7622 - }, - { - "l": "2.0", - "x": 0.3066, - "y": 4.8705 - }, - { - "l": "2.0", - "x": 0.3258, - "y": 4.974 - }, - { - "l": "2.0", - "x": 0.345, - "y": 5.0726 - }, - { - "l": "2.0", - "x": 0.3641, - "y": 5.1667 - }, - { - "l": "2.0", - "x": 0.3833, - "y": 5.2566 - }, - { - "l": "2.0", - "x": 0.4025, - "y": 5.3425 - }, - { - "l": "2.0", - "x": 0.4216, - "y": 5.4249 - }, - { - "l": "2.0", - "x": 0.4408, - "y": 5.504 - }, - { - "l": "2.0", - "x": 0.46, - "y": 5.5799 - }, - { - "l": "2.0", - "x": 0.4791, - "y": 5.6529 - }, - { - "l": "2.0", - "x": 0.4983, - "y": 5.7232 - }, - { - "l": "2.0", - "x": 0.5175, - "y": 5.7913 - }, - { - "l": "2.0", - "x": 0.5366, - "y": 5.857 - }, - { - "l": "2.0", - "x": 0.5558, - "y": 5.9205 - }, - { - "l": "2.0", - "x": 0.5749, - "y": 5.9821 - }, - { - "l": "2.0", - "x": 0.5941, - "y": 6.0418 - }, - { - "l": "2.0", - "x": 0.6133, - "y": 6.0999 - }, - { - "l": "2.0", - "x": 0.6324, - "y": 6.1564 - }, - { - "l": "2.0", - "x": 0.6516, - "y": 6.2113 - }, - { - "l": "2.0", - "x": 0.6708, - "y": 6.2648 - }, - { - "l": "2.0", - "x": 0.6899, - "y": 6.317 - }, - { - "l": "2.0", - "x": 0.7091, - "y": 6.368 - }, - { - "l": "2.0", - "x": 0.7283, - "y": 6.4178 - }, - { - "l": "2.0", - "x": 0.7474, - "y": 6.4665 - }, - { - "l": "2.0", - "x": 0.7666, - "y": 6.5142 - }, - { - "l": "2.0", - "x": 0.7858, - "y": 6.5611 - }, - { - "l": "2.0", - "x": 0.8049, - "y": 6.6071 - }, - { - "l": "2.0", - "x": 0.8241, - "y": 6.6523 - }, - { - "l": "2.0", - "x": 0.8433, - "y": 6.6968 - }, - { - "l": "2.0", - "x": 0.8624, - "y": 6.7408 - }, - { - "l": "2.0", - "x": 0.8816, - "y": 6.7842 - }, - { - "l": "2.0", - "x": 0.9008, - "y": 6.827 - }, - { - "l": "2.0", - "x": 0.9199, - "y": 6.8694 - }, - { - "l": "2.0", - "x": 0.9391, - "y": 6.9114 - }, - { - "l": "2.0", - "x": 0.9582, - "y": 6.9531 - }, - { - "l": "2.0", - "x": 0.9774, - "y": 6.9944 - }, - { - "l": "2.0", - "x": 0.9966, - "y": 7.0353 - }, - { - "l": "2.0", - "x": 1.0157, - "y": 7.0761 - }, - { - "l": "2.0", - "x": 1.0349, - "y": 7.1165 - }, - { - "l": "2.0", - "x": 1.0541, - "y": 7.1568 - }, - { - "l": "2.0", - "x": 1.0732, - "y": 7.1968 - }, - { - "l": "2.0", - "x": 1.0924, - "y": 7.2367 - }, - { - "l": "2.0", - "x": 1.1116, - "y": 7.2764 - }, - { - "l": "2.0", - "x": 1.1307, - "y": 7.3159 - }, - { - "l": "2.0", - "x": 1.1499, - "y": 7.3553 - }, - { - "l": "2.0", - "x": 1.1691, - "y": 7.3946 - }, - { - "l": "2.0", - "x": 1.1882, - "y": 7.4338 - }, - { - "l": "2.0", - "x": 1.2074, - "y": 7.4729 - }, - { - "l": "2.0", - "x": 1.2266, - "y": 7.5119 - }, - { - "l": "2.0", - "x": 1.2457, - "y": 7.5509 - }, - { - "l": "2.0", - "x": 1.2649, - "y": 7.5897 - }, - { - "l": "2.0", - "x": 1.2841, - "y": 7.6284 - }, - { - "l": "2.0", - "x": 1.3032, - "y": 7.667 - }, - { - "l": "2.0", - "x": 1.3224, - "y": 7.7056 - }, - { - "l": "2.0", - "x": 1.3415, - "y": 7.7441 - }, - { - "l": "2.0", - "x": 1.3607, - "y": 7.7826 - }, - { - "l": "2.0", - "x": 1.3799, - "y": 7.821 - }, - { - "l": "2.0", - "x": 1.399, - "y": 7.8593 - }, - { - "l": "2.0", - "x": 1.4182, - "y": 7.8976 - }, - { - "l": "2.0", - "x": 1.4374, - "y": 7.9358 - }, - { - "l": "2.0", - "x": 1.4565, - "y": 7.974 - }, - { - "l": "2.0", - "x": 1.4757, - "y": 8.0121 - }, - { - "l": "2.0", - "x": 1.4949, - "y": 8.0501 - }, - { - "l": "2.0", - "x": 1.514, - "y": 8.0881 - }, - { - "l": "2.0", - "x": 1.5332, - "y": 8.1259 - }, - { - "l": "2.0", - "x": 1.5524, - "y": 8.1637 - }, - { - "l": "2.0", - "x": 1.5715, - "y": 8.2014 - }, - { - "l": "2.0", - "x": 1.5907, - "y": 8.2391 - }, - { - "l": "2.0", - "x": 1.6099, - "y": 8.2767 - }, - { - "l": "2.0", - "x": 1.629, - "y": 8.3142 - }, - { - "l": "2.0", - "x": 1.6482, - "y": 8.3518 - }, - { - "l": "2.0", - "x": 1.6674, - "y": 8.3892 - }, - { - "l": "2.0", - "x": 1.6865, - "y": 8.4266 - }, - { - "l": "2.0", - "x": 1.7057, - "y": 8.464 - }, - { - "l": "2.0", - "x": 1.7248, - "y": 8.5013 - }, - { - "l": "2.0", - "x": 1.744, - "y": 8.5387 - }, - { - "l": "2.0", - "x": 1.7632, - "y": 8.576 - }, - { - "l": "2.0", - "x": 1.7823, - "y": 8.6133 - }, - { - "l": "2.0", - "x": 1.8015, - "y": 8.6505 - }, - { - "l": "2.0", - "x": 1.8207, - "y": 8.6878 - }, - { - "l": "2.0", - "x": 1.8398, - "y": 8.725 - }, - { - "l": "2.0", - "x": 1.859, - "y": 8.7622 - }, - { - "l": "2.0", - "x": 1.8782, - "y": 8.7994 - }, - { - "l": "2.0", - "x": 1.8973, - "y": 8.8366 - }, - { - "l": "2.0", - "x": 1.9165, - "y": 8.8738 - }, - { - "l": "2.0", - "x": 1.9357, - "y": 8.911 - }, - { - "l": "2.0", - "x": 1.9548, - "y": 8.9482 - }, - { - "l": "2.0", - "x": 1.974, - "y": 8.9854 - }, - { - "l": "2.0", - "x": 1.9932, - "y": 9.0226 - }, - { - "l": "2.0", - "x": 2.0, - "y": 9.0359 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 0.0383, - "y": 2.9354 - }, - { - "l": "9.0", - "x": 0.0575, - "y": 3.168 - }, - { - "l": "9.0", - "x": 0.0767, - "y": 3.3991 - }, - { - "l": "9.0", - "x": 0.0958, - "y": 3.6178 - }, - { - "l": "9.0", - "x": 0.115, - "y": 3.8218 - }, - { - "l": "9.0", - "x": 0.1342, - "y": 4.0119 - }, - { - "l": "9.0", - "x": 0.1533, - "y": 4.1891 - }, - { - "l": "9.0", - "x": 0.1725, - "y": 4.3551 - }, - { - "l": "9.0", - "x": 0.1916, - "y": 4.5117 - }, - { - "l": "9.0", - "x": 0.2108, - "y": 4.6594 - }, - { - "l": "9.0", - "x": 0.23, - "y": 4.7992 - }, - { - "l": "9.0", - "x": 0.2491, - "y": 4.932 - }, - { - "l": "9.0", - "x": 0.2683, - "y": 5.0576 - }, - { - "l": "9.0", - "x": 0.2875, - "y": 5.1779 - }, - { - "l": "9.0", - "x": 0.3066, - "y": 5.2931 - }, - { - "l": "9.0", - "x": 0.3258, - "y": 5.4031 - }, - { - "l": "9.0", - "x": 0.345, - "y": 5.508 - }, - { - "l": "9.0", - "x": 0.3641, - "y": 5.6081 - }, - { - "l": "9.0", - "x": 0.3833, - "y": 5.7037 - }, - { - "l": "9.0", - "x": 0.4025, - "y": 5.7951 - }, - { - "l": "9.0", - "x": 0.4216, - "y": 5.8828 - }, - { - "l": "9.0", - "x": 0.4408, - "y": 5.9671 - }, - { - "l": "9.0", - "x": 0.46, - "y": 6.048 - }, - { - "l": "9.0", - "x": 0.4791, - "y": 6.1258 - }, - { - "l": "9.0", - "x": 0.4983, - "y": 6.2008 - }, - { - "l": "9.0", - "x": 0.5175, - "y": 6.2734 - }, - { - "l": "9.0", - "x": 0.5366, - "y": 6.3436 - }, - { - "l": "9.0", - "x": 0.5558, - "y": 6.4116 - }, - { - "l": "9.0", - "x": 0.5749, - "y": 6.4774 - }, - { - "l": "9.0", - "x": 0.5941, - "y": 6.5414 - }, - { - "l": "9.0", - "x": 0.6133, - "y": 6.6037 - }, - { - "l": "9.0", - "x": 0.6324, - "y": 6.6643 - }, - { - "l": "9.0", - "x": 0.6516, - "y": 6.7232 - }, - { - "l": "9.0", - "x": 0.6708, - "y": 6.7806 - }, - { - "l": "9.0", - "x": 0.6899, - "y": 6.8367 - }, - { - "l": "9.0", - "x": 0.7091, - "y": 6.8915 - }, - { - "l": "9.0", - "x": 0.7283, - "y": 6.945 - }, - { - "l": "9.0", - "x": 0.7474, - "y": 6.9974 - }, - { - "l": "9.0", - "x": 0.7666, - "y": 7.0488 - }, - { - "l": "9.0", - "x": 0.7858, - "y": 7.0993 - }, - { - "l": "9.0", - "x": 0.8049, - "y": 7.1488 - }, - { - "l": "9.0", - "x": 0.8241, - "y": 7.1975 - }, - { - "l": "9.0", - "x": 0.8433, - "y": 7.2455 - }, - { - "l": "9.0", - "x": 0.8624, - "y": 7.2929 - }, - { - "l": "9.0", - "x": 0.8816, - "y": 7.3396 - }, - { - "l": "9.0", - "x": 0.9008, - "y": 7.3858 - }, - { - "l": "9.0", - "x": 0.9199, - "y": 7.4314 - }, - { - "l": "9.0", - "x": 0.9391, - "y": 7.4767 - }, - { - "l": "9.0", - "x": 0.9582, - "y": 7.5216 - }, - { - "l": "9.0", - "x": 0.9774, - "y": 7.566 - }, - { - "l": "9.0", - "x": 0.9966, - "y": 7.6102 - }, - { - "l": "9.0", - "x": 1.0157, - "y": 7.654 - }, - { - "l": "9.0", - "x": 1.0349, - "y": 7.6976 - }, - { - "l": "9.0", - "x": 1.0541, - "y": 7.741 - }, - { - "l": "9.0", - "x": 1.0732, - "y": 7.7841 - }, - { - "l": "9.0", - "x": 1.0924, - "y": 7.827 - }, - { - "l": "9.0", - "x": 1.1116, - "y": 7.8697 - }, - { - "l": "9.0", - "x": 1.1307, - "y": 7.9122 - }, - { - "l": "9.0", - "x": 1.1499, - "y": 7.9546 - }, - { - "l": "9.0", - "x": 1.1691, - "y": 7.9969 - }, - { - "l": "9.0", - "x": 1.1882, - "y": 8.0391 - }, - { - "l": "9.0", - "x": 1.2074, - "y": 8.0811 - }, - { - "l": "9.0", - "x": 1.2266, - "y": 8.123 - }, - { - "l": "9.0", - "x": 1.2457, - "y": 8.1649 - }, - { - "l": "9.0", - "x": 1.2649, - "y": 8.2066 - }, - { - "l": "9.0", - "x": 1.2841, - "y": 8.2482 - }, - { - "l": "9.0", - "x": 1.3032, - "y": 8.2898 - }, - { - "l": "9.0", - "x": 1.3224, - "y": 8.3313 - }, - { - "l": "9.0", - "x": 1.3415, - "y": 8.3727 - }, - { - "l": "9.0", - "x": 1.3607, - "y": 8.4141 - }, - { - "l": "9.0", - "x": 1.3799, - "y": 8.4554 - }, - { - "l": "9.0", - "x": 1.399, - "y": 8.4966 - }, - { - "l": "9.0", - "x": 1.4182, - "y": 8.5378 - }, - { - "l": "9.0", - "x": 1.4374, - "y": 8.5789 - }, - { - "l": "9.0", - "x": 1.4565, - "y": 8.62 - }, - { - "l": "9.0", - "x": 1.4757, - "y": 8.661 - }, - { - "l": "9.0", - "x": 1.4949, - "y": 8.7019 - }, - { - "l": "9.0", - "x": 1.514, - "y": 8.7428 - }, - { - "l": "9.0", - "x": 1.5332, - "y": 8.7835 - }, - { - "l": "9.0", - "x": 1.5524, - "y": 8.8242 - }, - { - "l": "9.0", - "x": 1.5715, - "y": 8.8649 - }, - { - "l": "9.0", - "x": 1.5907, - "y": 8.9055 - }, - { - "l": "9.0", - "x": 1.6099, - "y": 8.946 - }, - { - "l": "9.0", - "x": 1.629, - "y": 8.9866 - }, - { - "l": "9.0", - "x": 1.6482, - "y": 9.027 - }, - { - "l": "9.0", - "x": 1.6674, - "y": 9.0675 - }, - { - "l": "9.0", - "x": 1.6865, - "y": 9.1079 - }, - { - "l": "9.0", - "x": 1.7057, - "y": 9.1482 - }, - { - "l": "9.0", - "x": 1.7248, - "y": 9.1886 - }, - { - "l": "9.0", - "x": 1.744, - "y": 9.2289 - }, - { - "l": "9.0", - "x": 1.7632, - "y": 9.2692 - }, - { - "l": "9.0", - "x": 1.7823, - "y": 9.3096 - }, - { - "l": "9.0", - "x": 1.8015, - "y": 9.3499 - }, - { - "l": "9.0", - "x": 1.8207, - "y": 9.3902 - }, - { - "l": "9.0", - "x": 1.8398, - "y": 9.4305 - }, - { - "l": "9.0", - "x": 1.859, - "y": 9.4709 - }, - { - "l": "9.0", - "x": 1.8782, - "y": 9.5112 - }, - { - "l": "9.0", - "x": 1.8973, - "y": 9.5515 - }, - { - "l": "9.0", - "x": 1.9165, - "y": 9.5918 - }, - { - "l": "9.0", - "x": 1.9357, - "y": 9.6322 - }, - { - "l": "9.0", - "x": 1.9548, - "y": 9.6725 - }, - { - "l": "9.0", - "x": 1.974, - "y": 9.7129 - }, - { - "l": "9.0", - "x": 1.9932, - "y": 9.7532 - }, - { - "l": "9.0", - "x": 2.0, - "y": 9.7677 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 0.0383, - "y": 3.2404 - }, - { - "l": "25.0", - "x": 0.0575, - "y": 3.4889 - }, - { - "l": "25.0", - "x": 0.0767, - "y": 3.7355 - }, - { - "l": "25.0", - "x": 0.0958, - "y": 3.9686 - }, - { - "l": "25.0", - "x": 0.115, - "y": 4.1858 - }, - { - "l": "25.0", - "x": 0.1342, - "y": 4.3881 - }, - { - "l": "25.0", - "x": 0.1533, - "y": 4.5766 - }, - { - "l": "25.0", - "x": 0.1725, - "y": 4.7533 - }, - { - "l": "25.0", - "x": 0.1916, - "y": 4.9198 - }, - { - "l": "25.0", - "x": 0.2108, - "y": 5.077 - }, - { - "l": "25.0", - "x": 0.23, - "y": 5.2258 - }, - { - "l": "25.0", - "x": 0.2491, - "y": 5.3673 - }, - { - "l": "25.0", - "x": 0.2683, - "y": 5.501 - }, - { - "l": "25.0", - "x": 0.2875, - "y": 5.6292 - }, - { - "l": "25.0", - "x": 0.3066, - "y": 5.752 - }, - { - "l": "25.0", - "x": 0.3258, - "y": 5.8694 - }, - { - "l": "25.0", - "x": 0.345, - "y": 5.9812 - }, - { - "l": "25.0", - "x": 0.3641, - "y": 6.0879 - }, - { - "l": "25.0", - "x": 0.3833, - "y": 6.19 - }, - { - "l": "25.0", - "x": 0.4025, - "y": 6.2877 - }, - { - "l": "25.0", - "x": 0.4216, - "y": 6.3813 - }, - { - "l": "25.0", - "x": 0.4408, - "y": 6.4713 - }, - { - "l": "25.0", - "x": 0.46, - "y": 6.5579 - }, - { - "l": "25.0", - "x": 0.4791, - "y": 6.6412 - }, - { - "l": "25.0", - "x": 0.4983, - "y": 6.7215 - }, - { - "l": "25.0", - "x": 0.5175, - "y": 6.7993 - }, - { - "l": "25.0", - "x": 0.5366, - "y": 6.8746 - }, - { - "l": "25.0", - "x": 0.5558, - "y": 6.9476 - }, - { - "l": "25.0", - "x": 0.5749, - "y": 7.0184 - }, - { - "l": "25.0", - "x": 0.5941, - "y": 7.0872 - }, - { - "l": "25.0", - "x": 0.6133, - "y": 7.1542 - }, - { - "l": "25.0", - "x": 0.6324, - "y": 7.2195 - }, - { - "l": "25.0", - "x": 0.6516, - "y": 7.283 - }, - { - "l": "25.0", - "x": 0.6708, - "y": 7.345 - }, - { - "l": "25.0", - "x": 0.6899, - "y": 7.4055 - }, - { - "l": "25.0", - "x": 0.7091, - "y": 7.4647 - }, - { - "l": "25.0", - "x": 0.7283, - "y": 7.5225 - }, - { - "l": "25.0", - "x": 0.7474, - "y": 7.5792 - }, - { - "l": "25.0", - "x": 0.7666, - "y": 7.6348 - }, - { - "l": "25.0", - "x": 0.7858, - "y": 7.6893 - }, - { - "l": "25.0", - "x": 0.8049, - "y": 7.7429 - }, - { - "l": "25.0", - "x": 0.8241, - "y": 7.7956 - }, - { - "l": "25.0", - "x": 0.8433, - "y": 7.8476 - }, - { - "l": "25.0", - "x": 0.8624, - "y": 7.8989 - }, - { - "l": "25.0", - "x": 0.8816, - "y": 7.9495 - }, - { - "l": "25.0", - "x": 0.9008, - "y": 7.9995 - }, - { - "l": "25.0", - "x": 0.9199, - "y": 8.0489 - }, - { - "l": "25.0", - "x": 0.9391, - "y": 8.0979 - }, - { - "l": "25.0", - "x": 0.9582, - "y": 8.1465 - }, - { - "l": "25.0", - "x": 0.9774, - "y": 8.1947 - }, - { - "l": "25.0", - "x": 0.9966, - "y": 8.2424 - }, - { - "l": "25.0", - "x": 1.0157, - "y": 8.2899 - }, - { - "l": "25.0", - "x": 1.0349, - "y": 8.337 - }, - { - "l": "25.0", - "x": 1.0541, - "y": 8.3839 - }, - { - "l": "25.0", - "x": 1.0732, - "y": 8.4305 - }, - { - "l": "25.0", - "x": 1.0924, - "y": 8.4769 - }, - { - "l": "25.0", - "x": 1.1116, - "y": 8.5231 - }, - { - "l": "25.0", - "x": 1.1307, - "y": 8.5691 - }, - { - "l": "25.0", - "x": 1.1499, - "y": 8.6149 - }, - { - "l": "25.0", - "x": 1.1691, - "y": 8.6606 - }, - { - "l": "25.0", - "x": 1.1882, - "y": 8.7061 - }, - { - "l": "25.0", - "x": 1.2074, - "y": 8.7515 - }, - { - "l": "25.0", - "x": 1.2266, - "y": 8.7968 - }, - { - "l": "25.0", - "x": 1.2457, - "y": 8.8419 - }, - { - "l": "25.0", - "x": 1.2649, - "y": 8.887 - }, - { - "l": "25.0", - "x": 1.2841, - "y": 8.9319 - }, - { - "l": "25.0", - "x": 1.3032, - "y": 8.9768 - }, - { - "l": "25.0", - "x": 1.3224, - "y": 9.0216 - }, - { - "l": "25.0", - "x": 1.3415, - "y": 9.0663 - }, - { - "l": "25.0", - "x": 1.3607, - "y": 9.111 - }, - { - "l": "25.0", - "x": 1.3799, - "y": 9.1556 - }, - { - "l": "25.0", - "x": 1.399, - "y": 9.2001 - }, - { - "l": "25.0", - "x": 1.4182, - "y": 9.2446 - }, - { - "l": "25.0", - "x": 1.4374, - "y": 9.289 - }, - { - "l": "25.0", - "x": 1.4565, - "y": 9.3334 - }, - { - "l": "25.0", - "x": 1.4757, - "y": 9.3776 - }, - { - "l": "25.0", - "x": 1.4949, - "y": 9.4218 - }, - { - "l": "25.0", - "x": 1.514, - "y": 9.466 - }, - { - "l": "25.0", - "x": 1.5332, - "y": 9.5101 - }, - { - "l": "25.0", - "x": 1.5524, - "y": 9.5541 - }, - { - "l": "25.0", - "x": 1.5715, - "y": 9.598 - }, - { - "l": "25.0", - "x": 1.5907, - "y": 9.642 - }, - { - "l": "25.0", - "x": 1.6099, - "y": 9.6858 - }, - { - "l": "25.0", - "x": 1.629, - "y": 9.7297 - }, - { - "l": "25.0", - "x": 1.6482, - "y": 9.7735 - }, - { - "l": "25.0", - "x": 1.6674, - "y": 9.8173 - }, - { - "l": "25.0", - "x": 1.6865, - "y": 9.8611 - }, - { - "l": "25.0", - "x": 1.7057, - "y": 9.9048 - }, - { - "l": "25.0", - "x": 1.7248, - "y": 9.9486 - }, - { - "l": "25.0", - "x": 1.744, - "y": 9.9923 - }, - { - "l": "25.0", - "x": 1.7632, - "y": 10.0361 - }, - { - "l": "25.0", - "x": 1.7823, - "y": 10.0798 - }, - { - "l": "25.0", - "x": 1.8015, - "y": 10.1236 - }, - { - "l": "25.0", - "x": 1.8207, - "y": 10.1674 - }, - { - "l": "25.0", - "x": 1.8398, - "y": 10.2112 - }, - { - "l": "25.0", - "x": 1.859, - "y": 10.255 - }, - { - "l": "25.0", - "x": 1.8782, - "y": 10.2988 - }, - { - "l": "25.0", - "x": 1.8973, - "y": 10.3427 - }, - { - "l": "25.0", - "x": 1.9165, - "y": 10.3865 - }, - { - "l": "25.0", - "x": 1.9357, - "y": 10.4305 - }, - { - "l": "25.0", - "x": 1.9548, - "y": 10.4744 - }, - { - "l": "25.0", - "x": 1.974, - "y": 10.5184 - }, - { - "l": "25.0", - "x": 1.9932, - "y": 10.5623 - }, - { - "l": "25.0", - "x": 2.0, - "y": 10.578 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 0.0383, - "y": 3.5693 - }, - { - "l": "50.0", - "x": 0.0575, - "y": 3.8352 - }, - { - "l": "50.0", - "x": 0.0767, - "y": 4.0987 - }, - { - "l": "50.0", - "x": 0.0958, - "y": 4.3476 - }, - { - "l": "50.0", - "x": 0.115, - "y": 4.5793 - }, - { - "l": "50.0", - "x": 0.1342, - "y": 4.795 - }, - { - "l": "50.0", - "x": 0.1533, - "y": 4.9959 - }, - { - "l": "50.0", - "x": 0.1725, - "y": 5.1842 - }, - { - "l": "50.0", - "x": 0.1916, - "y": 5.3618 - }, - { - "l": "50.0", - "x": 0.2108, - "y": 5.5295 - }, - { - "l": "50.0", - "x": 0.23, - "y": 5.6883 - }, - { - "l": "50.0", - "x": 0.2491, - "y": 5.8393 - }, - { - "l": "50.0", - "x": 0.2683, - "y": 5.9821 - }, - { - "l": "50.0", - "x": 0.2875, - "y": 6.119 - }, - { - "l": "50.0", - "x": 0.3066, - "y": 6.2502 - }, - { - "l": "50.0", - "x": 0.3258, - "y": 6.3759 - }, - { - "l": "50.0", - "x": 0.345, - "y": 6.4956 - }, - { - "l": "50.0", - "x": 0.3641, - "y": 6.6098 - }, - { - "l": "50.0", - "x": 0.3833, - "y": 6.719 - }, - { - "l": "50.0", - "x": 0.4025, - "y": 6.8237 - }, - { - "l": "50.0", - "x": 0.4216, - "y": 6.9241 - }, - { - "l": "50.0", - "x": 0.4408, - "y": 7.0207 - }, - { - "l": "50.0", - "x": 0.46, - "y": 7.1136 - }, - { - "l": "50.0", - "x": 0.4791, - "y": 7.2031 - }, - { - "l": "50.0", - "x": 0.4983, - "y": 7.2894 - }, - { - "l": "50.0", - "x": 0.5175, - "y": 7.3732 - }, - { - "l": "50.0", - "x": 0.5366, - "y": 7.4544 - }, - { - "l": "50.0", - "x": 0.5558, - "y": 7.5331 - }, - { - "l": "50.0", - "x": 0.5749, - "y": 7.6095 - }, - { - "l": "50.0", - "x": 0.5941, - "y": 7.6838 - }, - { - "l": "50.0", - "x": 0.6133, - "y": 7.7563 - }, - { - "l": "50.0", - "x": 0.6324, - "y": 7.8269 - }, - { - "l": "50.0", - "x": 0.6516, - "y": 7.8958 - }, - { - "l": "50.0", - "x": 0.6708, - "y": 7.963 - }, - { - "l": "50.0", - "x": 0.6899, - "y": 8.0286 - }, - { - "l": "50.0", - "x": 0.7091, - "y": 8.0928 - }, - { - "l": "50.0", - "x": 0.7283, - "y": 8.1557 - }, - { - "l": "50.0", - "x": 0.7474, - "y": 8.2172 - }, - { - "l": "50.0", - "x": 0.7666, - "y": 8.2777 - }, - { - "l": "50.0", - "x": 0.7858, - "y": 8.337 - }, - { - "l": "50.0", - "x": 0.8049, - "y": 8.3953 - }, - { - "l": "50.0", - "x": 0.8241, - "y": 8.4527 - }, - { - "l": "50.0", - "x": 0.8433, - "y": 8.5092 - }, - { - "l": "50.0", - "x": 0.8624, - "y": 8.565 - }, - { - "l": "50.0", - "x": 0.8816, - "y": 8.6201 - }, - { - "l": "50.0", - "x": 0.9008, - "y": 8.6745 - }, - { - "l": "50.0", - "x": 0.9199, - "y": 8.7283 - }, - { - "l": "50.0", - "x": 0.9391, - "y": 8.7817 - }, - { - "l": "50.0", - "x": 0.9582, - "y": 8.8345 - }, - { - "l": "50.0", - "x": 0.9774, - "y": 8.8869 - }, - { - "l": "50.0", - "x": 0.9966, - "y": 8.9389 - }, - { - "l": "50.0", - "x": 1.0157, - "y": 8.9905 - }, - { - "l": "50.0", - "x": 1.0349, - "y": 9.0417 - }, - { - "l": "50.0", - "x": 1.0541, - "y": 9.0927 - }, - { - "l": "50.0", - "x": 1.0732, - "y": 9.1433 - }, - { - "l": "50.0", - "x": 1.0924, - "y": 9.1937 - }, - { - "l": "50.0", - "x": 1.1116, - "y": 9.2439 - }, - { - "l": "50.0", - "x": 1.1307, - "y": 9.2939 - }, - { - "l": "50.0", - "x": 1.1499, - "y": 9.3436 - }, - { - "l": "50.0", - "x": 1.1691, - "y": 9.3932 - }, - { - "l": "50.0", - "x": 1.1882, - "y": 9.4426 - }, - { - "l": "50.0", - "x": 1.2074, - "y": 9.4918 - }, - { - "l": "50.0", - "x": 1.2266, - "y": 9.5409 - }, - { - "l": "50.0", - "x": 1.2457, - "y": 9.5899 - }, - { - "l": "50.0", - "x": 1.2649, - "y": 9.6387 - }, - { - "l": "50.0", - "x": 1.2841, - "y": 9.6875 - }, - { - "l": "50.0", - "x": 1.3032, - "y": 9.7361 - }, - { - "l": "50.0", - "x": 1.3224, - "y": 9.7847 - }, - { - "l": "50.0", - "x": 1.3415, - "y": 9.8332 - }, - { - "l": "50.0", - "x": 1.3607, - "y": 9.8816 - }, - { - "l": "50.0", - "x": 1.3799, - "y": 9.93 - }, - { - "l": "50.0", - "x": 1.399, - "y": 9.9783 - }, - { - "l": "50.0", - "x": 1.4182, - "y": 10.0265 - }, - { - "l": "50.0", - "x": 1.4374, - "y": 10.0746 - }, - { - "l": "50.0", - "x": 1.4565, - "y": 10.1227 - }, - { - "l": "50.0", - "x": 1.4757, - "y": 10.1707 - }, - { - "l": "50.0", - "x": 1.4949, - "y": 10.2187 - }, - { - "l": "50.0", - "x": 1.514, - "y": 10.2666 - }, - { - "l": "50.0", - "x": 1.5332, - "y": 10.3144 - }, - { - "l": "50.0", - "x": 1.5524, - "y": 10.3622 - }, - { - "l": "50.0", - "x": 1.5715, - "y": 10.4099 - }, - { - "l": "50.0", - "x": 1.5907, - "y": 10.4576 - }, - { - "l": "50.0", - "x": 1.6099, - "y": 10.5053 - }, - { - "l": "50.0", - "x": 1.629, - "y": 10.5529 - }, - { - "l": "50.0", - "x": 1.6482, - "y": 10.6005 - }, - { - "l": "50.0", - "x": 1.6674, - "y": 10.6481 - }, - { - "l": "50.0", - "x": 1.6865, - "y": 10.6957 - }, - { - "l": "50.0", - "x": 1.7057, - "y": 10.7433 - }, - { - "l": "50.0", - "x": 1.7248, - "y": 10.7909 - }, - { - "l": "50.0", - "x": 1.744, - "y": 10.8385 - }, - { - "l": "50.0", - "x": 1.7632, - "y": 10.8862 - }, - { - "l": "50.0", - "x": 1.7823, - "y": 10.9338 - }, - { - "l": "50.0", - "x": 1.8015, - "y": 10.9815 - }, - { - "l": "50.0", - "x": 1.8207, - "y": 11.0293 - }, - { - "l": "50.0", - "x": 1.8398, - "y": 11.077 - }, - { - "l": "50.0", - "x": 1.859, - "y": 11.1248 - }, - { - "l": "50.0", - "x": 1.8782, - "y": 11.1726 - }, - { - "l": "50.0", - "x": 1.8973, - "y": 11.2205 - }, - { - "l": "50.0", - "x": 1.9165, - "y": 11.2684 - }, - { - "l": "50.0", - "x": 1.9357, - "y": 11.3164 - }, - { - "l": "50.0", - "x": 1.9548, - "y": 11.3644 - }, - { - "l": "50.0", - "x": 1.974, - "y": 11.4124 - }, - { - "l": "50.0", - "x": 1.9932, - "y": 11.4604 - }, - { - "l": "50.0", - "x": 2.0, - "y": 11.4775 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 0.0383, - "y": 3.9233 - }, - { - "l": "75.0", - "x": 0.0575, - "y": 4.2084 - }, - { - "l": "75.0", - "x": 0.0767, - "y": 4.4905 - }, - { - "l": "75.0", - "x": 0.0958, - "y": 4.7566 - }, - { - "l": "75.0", - "x": 0.115, - "y": 5.0042 - }, - { - "l": "75.0", - "x": 0.1342, - "y": 5.2346 - }, - { - "l": "75.0", - "x": 0.1533, - "y": 5.4492 - }, - { - "l": "75.0", - "x": 0.1725, - "y": 5.6503 - }, - { - "l": "75.0", - "x": 0.1916, - "y": 5.8401 - }, - { - "l": "75.0", - "x": 0.2108, - "y": 6.0195 - }, - { - "l": "75.0", - "x": 0.23, - "y": 6.1894 - }, - { - "l": "75.0", - "x": 0.2491, - "y": 6.351 - }, - { - "l": "75.0", - "x": 0.2683, - "y": 6.5038 - }, - { - "l": "75.0", - "x": 0.2875, - "y": 6.6506 - }, - { - "l": "75.0", - "x": 0.3066, - "y": 6.7913 - }, - { - "l": "75.0", - "x": 0.3258, - "y": 6.9261 - }, - { - "l": "75.0", - "x": 0.345, - "y": 7.0547 - }, - { - "l": "75.0", - "x": 0.3641, - "y": 7.1773 - }, - { - "l": "75.0", - "x": 0.3833, - "y": 7.2947 - }, - { - "l": "75.0", - "x": 0.4025, - "y": 7.4073 - }, - { - "l": "75.0", - "x": 0.4216, - "y": 7.5154 - }, - { - "l": "75.0", - "x": 0.4408, - "y": 7.6194 - }, - { - "l": "75.0", - "x": 0.46, - "y": 7.7195 - }, - { - "l": "75.0", - "x": 0.4791, - "y": 7.8161 - }, - { - "l": "75.0", - "x": 0.4983, - "y": 7.9093 - }, - { - "l": "75.0", - "x": 0.5175, - "y": 7.9999 - }, - { - "l": "75.0", - "x": 0.5366, - "y": 8.0877 - }, - { - "l": "75.0", - "x": 0.5558, - "y": 8.173 - }, - { - "l": "75.0", - "x": 0.5749, - "y": 8.2558 - }, - { - "l": "75.0", - "x": 0.5941, - "y": 8.3366 - }, - { - "l": "75.0", - "x": 0.6133, - "y": 8.4154 - }, - { - "l": "75.0", - "x": 0.6324, - "y": 8.4922 - }, - { - "l": "75.0", - "x": 0.6516, - "y": 8.5671 - }, - { - "l": "75.0", - "x": 0.6708, - "y": 8.6404 - }, - { - "l": "75.0", - "x": 0.6899, - "y": 8.712 - }, - { - "l": "75.0", - "x": 0.7091, - "y": 8.782 - }, - { - "l": "75.0", - "x": 0.7283, - "y": 8.8506 - }, - { - "l": "75.0", - "x": 0.7474, - "y": 8.9179 - }, - { - "l": "75.0", - "x": 0.7666, - "y": 8.9839 - }, - { - "l": "75.0", - "x": 0.7858, - "y": 9.0487 - }, - { - "l": "75.0", - "x": 0.8049, - "y": 9.1125 - }, - { - "l": "75.0", - "x": 0.8241, - "y": 9.1753 - }, - { - "l": "75.0", - "x": 0.8433, - "y": 9.2371 - }, - { - "l": "75.0", - "x": 0.8624, - "y": 9.2982 - }, - { - "l": "75.0", - "x": 0.8816, - "y": 9.3584 - }, - { - "l": "75.0", - "x": 0.9008, - "y": 9.418 - }, - { - "l": "75.0", - "x": 0.9199, - "y": 9.4769 - }, - { - "l": "75.0", - "x": 0.9391, - "y": 9.5353 - }, - { - "l": "75.0", - "x": 0.9582, - "y": 9.5931 - }, - { - "l": "75.0", - "x": 0.9774, - "y": 9.6504 - }, - { - "l": "75.0", - "x": 0.9966, - "y": 9.7072 - }, - { - "l": "75.0", - "x": 1.0157, - "y": 9.7637 - }, - { - "l": "75.0", - "x": 1.0349, - "y": 9.8197 - }, - { - "l": "75.0", - "x": 1.0541, - "y": 9.8753 - }, - { - "l": "75.0", - "x": 1.0732, - "y": 9.9307 - }, - { - "l": "75.0", - "x": 1.0924, - "y": 9.9857 - }, - { - "l": "75.0", - "x": 1.1116, - "y": 10.0405 - }, - { - "l": "75.0", - "x": 1.1307, - "y": 10.095 - }, - { - "l": "75.0", - "x": 1.1499, - "y": 10.1493 - }, - { - "l": "75.0", - "x": 1.1691, - "y": 10.2034 - }, - { - "l": "75.0", - "x": 1.1882, - "y": 10.2573 - }, - { - "l": "75.0", - "x": 1.2074, - "y": 10.3109 - }, - { - "l": "75.0", - "x": 1.2266, - "y": 10.3644 - }, - { - "l": "75.0", - "x": 1.2457, - "y": 10.4178 - }, - { - "l": "75.0", - "x": 1.2649, - "y": 10.471 - }, - { - "l": "75.0", - "x": 1.2841, - "y": 10.5241 - }, - { - "l": "75.0", - "x": 1.3032, - "y": 10.5771 - }, - { - "l": "75.0", - "x": 1.3224, - "y": 10.63 - }, - { - "l": "75.0", - "x": 1.3415, - "y": 10.6828 - }, - { - "l": "75.0", - "x": 1.3607, - "y": 10.7355 - }, - { - "l": "75.0", - "x": 1.3799, - "y": 10.7882 - }, - { - "l": "75.0", - "x": 1.399, - "y": 10.8408 - }, - { - "l": "75.0", - "x": 1.4182, - "y": 10.8933 - }, - { - "l": "75.0", - "x": 1.4374, - "y": 10.9457 - }, - { - "l": "75.0", - "x": 1.4565, - "y": 10.998 - }, - { - "l": "75.0", - "x": 1.4757, - "y": 11.0503 - }, - { - "l": "75.0", - "x": 1.4949, - "y": 11.1025 - }, - { - "l": "75.0", - "x": 1.514, - "y": 11.1547 - }, - { - "l": "75.0", - "x": 1.5332, - "y": 11.2068 - }, - { - "l": "75.0", - "x": 1.5524, - "y": 11.2589 - }, - { - "l": "75.0", - "x": 1.5715, - "y": 11.311 - }, - { - "l": "75.0", - "x": 1.5907, - "y": 11.363 - }, - { - "l": "75.0", - "x": 1.6099, - "y": 11.4149 - }, - { - "l": "75.0", - "x": 1.629, - "y": 11.4669 - }, - { - "l": "75.0", - "x": 1.6482, - "y": 11.5188 - }, - { - "l": "75.0", - "x": 1.6674, - "y": 11.5708 - }, - { - "l": "75.0", - "x": 1.6865, - "y": 11.6227 - }, - { - "l": "75.0", - "x": 1.7057, - "y": 11.6747 - }, - { - "l": "75.0", - "x": 1.7248, - "y": 11.7267 - }, - { - "l": "75.0", - "x": 1.744, - "y": 11.7788 - }, - { - "l": "75.0", - "x": 1.7632, - "y": 11.8308 - }, - { - "l": "75.0", - "x": 1.7823, - "y": 11.883 - }, - { - "l": "75.0", - "x": 1.8015, - "y": 11.9351 - }, - { - "l": "75.0", - "x": 1.8207, - "y": 11.9873 - }, - { - "l": "75.0", - "x": 1.8398, - "y": 12.0396 - }, - { - "l": "75.0", - "x": 1.859, - "y": 12.0919 - }, - { - "l": "75.0", - "x": 1.8782, - "y": 12.1443 - }, - { - "l": "75.0", - "x": 1.8973, - "y": 12.1967 - }, - { - "l": "75.0", - "x": 1.9165, - "y": 12.2492 - }, - { - "l": "75.0", - "x": 1.9357, - "y": 12.3018 - }, - { - "l": "75.0", - "x": 1.9548, - "y": 12.3545 - }, - { - "l": "75.0", - "x": 1.974, - "y": 12.4071 - }, - { - "l": "75.0", - "x": 1.9932, - "y": 12.4597 - }, - { - "l": "75.0", - "x": 2.0, - "y": 12.4785 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 0.0383, - "y": 4.3037 - }, - { - "l": "91.0", - "x": 0.0575, - "y": 4.61 - }, - { - "l": "91.0", - "x": 0.0767, - "y": 4.9124 - }, - { - "l": "91.0", - "x": 0.0958, - "y": 5.1975 - }, - { - "l": "91.0", - "x": 0.115, - "y": 5.4626 - }, - { - "l": "91.0", - "x": 0.1342, - "y": 5.7092 - }, - { - "l": "91.0", - "x": 0.1533, - "y": 5.9388 - }, - { - "l": "91.0", - "x": 0.1725, - "y": 6.1542 - }, - { - "l": "91.0", - "x": 0.1916, - "y": 6.3576 - }, - { - "l": "91.0", - "x": 0.2108, - "y": 6.5498 - }, - { - "l": "91.0", - "x": 0.23, - "y": 6.732 - }, - { - "l": "91.0", - "x": 0.2491, - "y": 6.9056 - }, - { - "l": "91.0", - "x": 0.2683, - "y": 7.0696 - }, - { - "l": "91.0", - "x": 0.2875, - "y": 7.2273 - }, - { - "l": "91.0", - "x": 0.3066, - "y": 7.3787 - }, - { - "l": "91.0", - "x": 0.3258, - "y": 7.5239 - }, - { - "l": "91.0", - "x": 0.345, - "y": 7.6624 - }, - { - "l": "91.0", - "x": 0.3641, - "y": 7.7946 - }, - { - "l": "91.0", - "x": 0.3833, - "y": 7.9213 - }, - { - "l": "91.0", - "x": 0.4025, - "y": 8.0428 - }, - { - "l": "91.0", - "x": 0.4216, - "y": 8.1596 - }, - { - "l": "91.0", - "x": 0.4408, - "y": 8.2721 - }, - { - "l": "91.0", - "x": 0.46, - "y": 8.3804 - }, - { - "l": "91.0", - "x": 0.4791, - "y": 8.4851 - }, - { - "l": "91.0", - "x": 0.4983, - "y": 8.5862 - }, - { - "l": "91.0", - "x": 0.5175, - "y": 8.6846 - }, - { - "l": "91.0", - "x": 0.5366, - "y": 8.7801 - }, - { - "l": "91.0", - "x": 0.5558, - "y": 8.8729 - }, - { - "l": "91.0", - "x": 0.5749, - "y": 8.9632 - }, - { - "l": "91.0", - "x": 0.5941, - "y": 9.0513 - }, - { - "l": "91.0", - "x": 0.6133, - "y": 9.1374 - }, - { - "l": "91.0", - "x": 0.6324, - "y": 9.2214 - }, - { - "l": "91.0", - "x": 0.6516, - "y": 9.3034 - }, - { - "l": "91.0", - "x": 0.6708, - "y": 9.3836 - }, - { - "l": "91.0", - "x": 0.6899, - "y": 9.4621 - }, - { - "l": "91.0", - "x": 0.7091, - "y": 9.5389 - }, - { - "l": "91.0", - "x": 0.7283, - "y": 9.6142 - }, - { - "l": "91.0", - "x": 0.7474, - "y": 9.6881 - }, - { - "l": "91.0", - "x": 0.7666, - "y": 9.7606 - }, - { - "l": "91.0", - "x": 0.7858, - "y": 9.8319 - }, - { - "l": "91.0", - "x": 0.8049, - "y": 9.902 - }, - { - "l": "91.0", - "x": 0.8241, - "y": 9.9711 - }, - { - "l": "91.0", - "x": 0.8433, - "y": 10.0391 - }, - { - "l": "91.0", - "x": 0.8624, - "y": 10.1063 - }, - { - "l": "91.0", - "x": 0.8816, - "y": 10.1726 - }, - { - "l": "91.0", - "x": 0.9008, - "y": 10.2382 - }, - { - "l": "91.0", - "x": 0.9199, - "y": 10.303 - }, - { - "l": "91.0", - "x": 0.9391, - "y": 10.3672 - }, - { - "l": "91.0", - "x": 0.9582, - "y": 10.4308 - }, - { - "l": "91.0", - "x": 0.9774, - "y": 10.4939 - }, - { - "l": "91.0", - "x": 0.9966, - "y": 10.5564 - }, - { - "l": "91.0", - "x": 1.0157, - "y": 10.6184 - }, - { - "l": "91.0", - "x": 1.0349, - "y": 10.68 - }, - { - "l": "91.0", - "x": 1.0541, - "y": 10.7411 - }, - { - "l": "91.0", - "x": 1.0732, - "y": 10.8019 - }, - { - "l": "91.0", - "x": 1.0924, - "y": 10.8623 - }, - { - "l": "91.0", - "x": 1.1116, - "y": 10.9225 - }, - { - "l": "91.0", - "x": 1.1307, - "y": 10.9823 - }, - { - "l": "91.0", - "x": 1.1499, - "y": 11.0419 - }, - { - "l": "91.0", - "x": 1.1691, - "y": 11.1012 - }, - { - "l": "91.0", - "x": 1.1882, - "y": 11.1602 - }, - { - "l": "91.0", - "x": 1.2074, - "y": 11.219 - }, - { - "l": "91.0", - "x": 1.2266, - "y": 11.2775 - }, - { - "l": "91.0", - "x": 1.2457, - "y": 11.3359 - }, - { - "l": "91.0", - "x": 1.2649, - "y": 11.3942 - }, - { - "l": "91.0", - "x": 1.2841, - "y": 11.4523 - }, - { - "l": "91.0", - "x": 1.3032, - "y": 11.5103 - }, - { - "l": "91.0", - "x": 1.3224, - "y": 11.5682 - }, - { - "l": "91.0", - "x": 1.3415, - "y": 11.626 - }, - { - "l": "91.0", - "x": 1.3607, - "y": 11.6837 - }, - { - "l": "91.0", - "x": 1.3799, - "y": 11.7414 - }, - { - "l": "91.0", - "x": 1.399, - "y": 11.7989 - }, - { - "l": "91.0", - "x": 1.4182, - "y": 11.8563 - }, - { - "l": "91.0", - "x": 1.4374, - "y": 11.9136 - }, - { - "l": "91.0", - "x": 1.4565, - "y": 11.9709 - }, - { - "l": "91.0", - "x": 1.4757, - "y": 12.0281 - }, - { - "l": "91.0", - "x": 1.4949, - "y": 12.0852 - }, - { - "l": "91.0", - "x": 1.514, - "y": 12.1423 - }, - { - "l": "91.0", - "x": 1.5332, - "y": 12.1994 - }, - { - "l": "91.0", - "x": 1.5524, - "y": 12.2564 - }, - { - "l": "91.0", - "x": 1.5715, - "y": 12.3134 - }, - { - "l": "91.0", - "x": 1.5907, - "y": 12.3703 - }, - { - "l": "91.0", - "x": 1.6099, - "y": 12.4272 - }, - { - "l": "91.0", - "x": 1.629, - "y": 12.4841 - }, - { - "l": "91.0", - "x": 1.6482, - "y": 12.541 - }, - { - "l": "91.0", - "x": 1.6674, - "y": 12.598 - }, - { - "l": "91.0", - "x": 1.6865, - "y": 12.6549 - }, - { - "l": "91.0", - "x": 1.7057, - "y": 12.712 - }, - { - "l": "91.0", - "x": 1.7248, - "y": 12.769 - }, - { - "l": "91.0", - "x": 1.744, - "y": 12.8261 - }, - { - "l": "91.0", - "x": 1.7632, - "y": 12.8833 - }, - { - "l": "91.0", - "x": 1.7823, - "y": 12.9405 - }, - { - "l": "91.0", - "x": 1.8015, - "y": 12.9978 - }, - { - "l": "91.0", - "x": 1.8207, - "y": 13.0551 - }, - { - "l": "91.0", - "x": 1.8398, - "y": 13.1125 - }, - { - "l": "91.0", - "x": 1.859, - "y": 13.1701 - }, - { - "l": "91.0", - "x": 1.8782, - "y": 13.2277 - }, - { - "l": "91.0", - "x": 1.8973, - "y": 13.2853 - }, - { - "l": "91.0", - "x": 1.9165, - "y": 13.3431 - }, - { - "l": "91.0", - "x": 1.9357, - "y": 13.401 - }, - { - "l": "91.0", - "x": 1.9548, - "y": 13.4589 - }, - { - "l": "91.0", - "x": 1.974, - "y": 13.5168 - }, - { - "l": "91.0", - "x": 1.9932, - "y": 13.5748 - }, - { - "l": "91.0", - "x": 2.0, - "y": 13.5955 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 0.0383, - "y": 4.7118 - }, - { - "l": "98.0", - "x": 0.0575, - "y": 5.0415 - }, - { - "l": "98.0", - "x": 0.0767, - "y": 5.3665 - }, - { - "l": "98.0", - "x": 0.0958, - "y": 5.6724 - }, - { - "l": "98.0", - "x": 0.115, - "y": 5.9566 - }, - { - "l": "98.0", - "x": 0.1342, - "y": 6.2211 - }, - { - "l": "98.0", - "x": 0.1533, - "y": 6.4674 - }, - { - "l": "98.0", - "x": 0.1725, - "y": 6.6986 - }, - { - "l": "98.0", - "x": 0.1916, - "y": 6.917 - }, - { - "l": "98.0", - "x": 0.2108, - "y": 7.1236 - }, - { - "l": "98.0", - "x": 0.23, - "y": 7.3196 - }, - { - "l": "98.0", - "x": 0.2491, - "y": 7.5065 - }, - { - "l": "98.0", - "x": 0.2683, - "y": 7.6831 - }, - { - "l": "98.0", - "x": 0.2875, - "y": 7.8531 - }, - { - "l": "98.0", - "x": 0.3066, - "y": 8.0165 - }, - { - "l": "98.0", - "x": 0.3258, - "y": 8.1734 - }, - { - "l": "98.0", - "x": 0.345, - "y": 8.3231 - }, - { - "l": "98.0", - "x": 0.3641, - "y": 8.4661 - }, - { - "l": "98.0", - "x": 0.3833, - "y": 8.6033 - }, - { - "l": "98.0", - "x": 0.4025, - "y": 8.7351 - }, - { - "l": "98.0", - "x": 0.4216, - "y": 8.8618 - }, - { - "l": "98.0", - "x": 0.4408, - "y": 8.9839 - }, - { - "l": "98.0", - "x": 0.46, - "y": 9.1017 - }, - { - "l": "98.0", - "x": 0.4791, - "y": 9.2156 - }, - { - "l": "98.0", - "x": 0.4983, - "y": 9.3258 - }, - { - "l": "98.0", - "x": 0.5175, - "y": 9.4332 - }, - { - "l": "98.0", - "x": 0.5366, - "y": 9.5375 - }, - { - "l": "98.0", - "x": 0.5558, - "y": 9.639 - }, - { - "l": "98.0", - "x": 0.5749, - "y": 9.7379 - }, - { - "l": "98.0", - "x": 0.5941, - "y": 9.8345 - }, - { - "l": "98.0", - "x": 0.6133, - "y": 9.929 - }, - { - "l": "98.0", - "x": 0.6324, - "y": 10.0213 - }, - { - "l": "98.0", - "x": 0.6516, - "y": 10.1115 - }, - { - "l": "98.0", - "x": 0.6708, - "y": 10.1999 - }, - { - "l": "98.0", - "x": 0.6899, - "y": 10.2864 - }, - { - "l": "98.0", - "x": 0.7091, - "y": 10.3711 - }, - { - "l": "98.0", - "x": 0.7283, - "y": 10.4542 - }, - { - "l": "98.0", - "x": 0.7474, - "y": 10.5358 - }, - { - "l": "98.0", - "x": 0.7666, - "y": 10.616 - }, - { - "l": "98.0", - "x": 0.7858, - "y": 10.6948 - }, - { - "l": "98.0", - "x": 0.8049, - "y": 10.7723 - }, - { - "l": "98.0", - "x": 0.8241, - "y": 10.8487 - }, - { - "l": "98.0", - "x": 0.8433, - "y": 10.924 - }, - { - "l": "98.0", - "x": 0.8624, - "y": 10.9983 - }, - { - "l": "98.0", - "x": 0.8816, - "y": 11.0717 - }, - { - "l": "98.0", - "x": 0.9008, - "y": 11.1443 - }, - { - "l": "98.0", - "x": 0.9199, - "y": 11.216 - }, - { - "l": "98.0", - "x": 0.9391, - "y": 11.2871 - }, - { - "l": "98.0", - "x": 0.9582, - "y": 11.3575 - }, - { - "l": "98.0", - "x": 0.9774, - "y": 11.4273 - }, - { - "l": "98.0", - "x": 0.9966, - "y": 11.4964 - }, - { - "l": "98.0", - "x": 1.0157, - "y": 11.565 - }, - { - "l": "98.0", - "x": 1.0349, - "y": 11.633 - }, - { - "l": "98.0", - "x": 1.0541, - "y": 11.7005 - }, - { - "l": "98.0", - "x": 1.0732, - "y": 11.7676 - }, - { - "l": "98.0", - "x": 1.0924, - "y": 11.8344 - }, - { - "l": "98.0", - "x": 1.1116, - "y": 11.9008 - }, - { - "l": "98.0", - "x": 1.1307, - "y": 11.9668 - }, - { - "l": "98.0", - "x": 1.1499, - "y": 12.0325 - }, - { - "l": "98.0", - "x": 1.1691, - "y": 12.0979 - }, - { - "l": "98.0", - "x": 1.1882, - "y": 12.1629 - }, - { - "l": "98.0", - "x": 1.2074, - "y": 12.2277 - }, - { - "l": "98.0", - "x": 1.2266, - "y": 12.2922 - }, - { - "l": "98.0", - "x": 1.2457, - "y": 12.3564 - }, - { - "l": "98.0", - "x": 1.2649, - "y": 12.4205 - }, - { - "l": "98.0", - "x": 1.2841, - "y": 12.4845 - }, - { - "l": "98.0", - "x": 1.3032, - "y": 12.5483 - }, - { - "l": "98.0", - "x": 1.3224, - "y": 12.612 - }, - { - "l": "98.0", - "x": 1.3415, - "y": 12.6756 - }, - { - "l": "98.0", - "x": 1.3607, - "y": 12.7391 - }, - { - "l": "98.0", - "x": 1.3799, - "y": 12.8024 - }, - { - "l": "98.0", - "x": 1.399, - "y": 12.8657 - }, - { - "l": "98.0", - "x": 1.4182, - "y": 12.9288 - }, - { - "l": "98.0", - "x": 1.4374, - "y": 12.9918 - }, - { - "l": "98.0", - "x": 1.4565, - "y": 13.0547 - }, - { - "l": "98.0", - "x": 1.4757, - "y": 13.1176 - }, - { - "l": "98.0", - "x": 1.4949, - "y": 13.1804 - }, - { - "l": "98.0", - "x": 1.514, - "y": 13.2432 - }, - { - "l": "98.0", - "x": 1.5332, - "y": 13.3059 - }, - { - "l": "98.0", - "x": 1.5524, - "y": 13.3686 - }, - { - "l": "98.0", - "x": 1.5715, - "y": 13.4313 - }, - { - "l": "98.0", - "x": 1.5907, - "y": 13.494 - }, - { - "l": "98.0", - "x": 1.6099, - "y": 13.5566 - }, - { - "l": "98.0", - "x": 1.629, - "y": 13.6192 - }, - { - "l": "98.0", - "x": 1.6482, - "y": 13.6818 - }, - { - "l": "98.0", - "x": 1.6674, - "y": 13.7444 - }, - { - "l": "98.0", - "x": 1.6865, - "y": 13.8072 - }, - { - "l": "98.0", - "x": 1.7057, - "y": 13.87 - }, - { - "l": "98.0", - "x": 1.7248, - "y": 13.9329 - }, - { - "l": "98.0", - "x": 1.744, - "y": 13.9958 - }, - { - "l": "98.0", - "x": 1.7632, - "y": 14.0588 - }, - { - "l": "98.0", - "x": 1.7823, - "y": 14.1219 - }, - { - "l": "98.0", - "x": 1.8015, - "y": 14.1851 - }, - { - "l": "98.0", - "x": 1.8207, - "y": 14.2483 - }, - { - "l": "98.0", - "x": 1.8398, - "y": 14.3117 - }, - { - "l": "98.0", - "x": 1.859, - "y": 14.3752 - }, - { - "l": "98.0", - "x": 1.8782, - "y": 14.4388 - }, - { - "l": "98.0", - "x": 1.8973, - "y": 14.5025 - }, - { - "l": "98.0", - "x": 1.9165, - "y": 14.5663 - }, - { - "l": "98.0", - "x": 1.9357, - "y": 14.6303 - }, - { - "l": "98.0", - "x": 1.9548, - "y": 14.6943 - }, - { - "l": "98.0", - "x": 1.974, - "y": 14.7584 - }, - { - "l": "98.0", - "x": 1.9932, - "y": 14.8224 - }, - { - "l": "98.0", - "x": 2.0, - "y": 14.8453 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 0.0383, - "y": 5.1491 - }, - { - "l": "99.6", - "x": 0.0575, - "y": 5.5047 - }, - { - "l": "99.6", - "x": 0.0767, - "y": 5.8544 - }, - { - "l": "99.6", - "x": 0.0958, - "y": 6.1832 - }, - { - "l": "99.6", - "x": 0.115, - "y": 6.4887 - }, - { - "l": "99.6", - "x": 0.1342, - "y": 6.7728 - }, - { - "l": "99.6", - "x": 0.1533, - "y": 7.0377 - }, - { - "l": "99.6", - "x": 0.1725, - "y": 7.2863 - }, - { - "l": "99.6", - "x": 0.1916, - "y": 7.5214 - }, - { - "l": "99.6", - "x": 0.2108, - "y": 7.7441 - }, - { - "l": "99.6", - "x": 0.23, - "y": 7.9555 - }, - { - "l": "99.6", - "x": 0.2491, - "y": 8.1573 - }, - { - "l": "99.6", - "x": 0.2683, - "y": 8.348 - }, - { - "l": "99.6", - "x": 0.2875, - "y": 8.5319 - }, - { - "l": "99.6", - "x": 0.3066, - "y": 8.7089 - }, - { - "l": "99.6", - "x": 0.3258, - "y": 8.8791 - }, - { - "l": "99.6", - "x": 0.345, - "y": 9.0415 - }, - { - "l": "99.6", - "x": 0.3641, - "y": 9.1968 - }, - { - "l": "99.6", - "x": 0.3833, - "y": 9.3459 - }, - { - "l": "99.6", - "x": 0.4025, - "y": 9.4893 - }, - { - "l": "99.6", - "x": 0.4216, - "y": 9.6273 - }, - { - "l": "99.6", - "x": 0.4408, - "y": 9.7605 - }, - { - "l": "99.6", - "x": 0.46, - "y": 9.8892 - }, - { - "l": "99.6", - "x": 0.4791, - "y": 10.0136 - }, - { - "l": "99.6", - "x": 0.4983, - "y": 10.1343 - }, - { - "l": "99.6", - "x": 0.5175, - "y": 10.252 - }, - { - "l": "99.6", - "x": 0.5366, - "y": 10.3666 - }, - { - "l": "99.6", - "x": 0.5558, - "y": 10.4781 - }, - { - "l": "99.6", - "x": 0.5749, - "y": 10.587 - }, - { - "l": "99.6", - "x": 0.5941, - "y": 10.6935 - }, - { - "l": "99.6", - "x": 0.6133, - "y": 10.7977 - }, - { - "l": "99.6", - "x": 0.6324, - "y": 10.8997 - }, - { - "l": "99.6", - "x": 0.6516, - "y": 10.9995 - }, - { - "l": "99.6", - "x": 0.6708, - "y": 11.0973 - }, - { - "l": "99.6", - "x": 0.6899, - "y": 11.1931 - }, - { - "l": "99.6", - "x": 0.7091, - "y": 11.2871 - }, - { - "l": "99.6", - "x": 0.7283, - "y": 11.3794 - }, - { - "l": "99.6", - "x": 0.7474, - "y": 11.47 - }, - { - "l": "99.6", - "x": 0.7666, - "y": 11.559 - }, - { - "l": "99.6", - "x": 0.7858, - "y": 11.6466 - }, - { - "l": "99.6", - "x": 0.8049, - "y": 11.7329 - }, - { - "l": "99.6", - "x": 0.8241, - "y": 11.8178 - }, - { - "l": "99.6", - "x": 0.8433, - "y": 11.9017 - }, - { - "l": "99.6", - "x": 0.8624, - "y": 11.9844 - }, - { - "l": "99.6", - "x": 0.8816, - "y": 12.0661 - }, - { - "l": "99.6", - "x": 0.9008, - "y": 12.1469 - }, - { - "l": "99.6", - "x": 0.9199, - "y": 12.2268 - }, - { - "l": "99.6", - "x": 0.9391, - "y": 12.3059 - }, - { - "l": "99.6", - "x": 0.9582, - "y": 12.3843 - }, - { - "l": "99.6", - "x": 0.9774, - "y": 12.4619 - }, - { - "l": "99.6", - "x": 0.9966, - "y": 12.5389 - }, - { - "l": "99.6", - "x": 1.0157, - "y": 12.6151 - }, - { - "l": "99.6", - "x": 1.0349, - "y": 12.6907 - }, - { - "l": "99.6", - "x": 1.0541, - "y": 12.7658 - }, - { - "l": "99.6", - "x": 1.0732, - "y": 12.8403 - }, - { - "l": "99.6", - "x": 1.0924, - "y": 12.9144 - }, - { - "l": "99.6", - "x": 1.1116, - "y": 12.9881 - }, - { - "l": "99.6", - "x": 1.1307, - "y": 13.0615 - }, - { - "l": "99.6", - "x": 1.1499, - "y": 13.1344 - }, - { - "l": "99.6", - "x": 1.1691, - "y": 13.2069 - }, - { - "l": "99.6", - "x": 1.1882, - "y": 13.2789 - }, - { - "l": "99.6", - "x": 1.2074, - "y": 13.3506 - }, - { - "l": "99.6", - "x": 1.2266, - "y": 13.422 - }, - { - "l": "99.6", - "x": 1.2457, - "y": 13.4931 - }, - { - "l": "99.6", - "x": 1.2649, - "y": 13.5641 - }, - { - "l": "99.6", - "x": 1.2841, - "y": 13.6349 - }, - { - "l": "99.6", - "x": 1.3032, - "y": 13.7055 - }, - { - "l": "99.6", - "x": 1.3224, - "y": 13.7759 - }, - { - "l": "99.6", - "x": 1.3415, - "y": 13.8462 - }, - { - "l": "99.6", - "x": 1.3607, - "y": 13.9164 - }, - { - "l": "99.6", - "x": 1.3799, - "y": 13.9864 - }, - { - "l": "99.6", - "x": 1.399, - "y": 14.0563 - }, - { - "l": "99.6", - "x": 1.4182, - "y": 14.126 - }, - { - "l": "99.6", - "x": 1.4374, - "y": 14.1957 - }, - { - "l": "99.6", - "x": 1.4565, - "y": 14.2652 - }, - { - "l": "99.6", - "x": 1.4757, - "y": 14.3346 - }, - { - "l": "99.6", - "x": 1.4949, - "y": 14.404 - }, - { - "l": "99.6", - "x": 1.514, - "y": 14.4734 - }, - { - "l": "99.6", - "x": 1.5332, - "y": 14.5427 - }, - { - "l": "99.6", - "x": 1.5524, - "y": 14.612 - }, - { - "l": "99.6", - "x": 1.5715, - "y": 14.6813 - }, - { - "l": "99.6", - "x": 1.5907, - "y": 14.7505 - }, - { - "l": "99.6", - "x": 1.6099, - "y": 14.8197 - }, - { - "l": "99.6", - "x": 1.629, - "y": 14.889 - }, - { - "l": "99.6", - "x": 1.6482, - "y": 14.9582 - }, - { - "l": "99.6", - "x": 1.6674, - "y": 15.0275 - }, - { - "l": "99.6", - "x": 1.6865, - "y": 15.0969 - }, - { - "l": "99.6", - "x": 1.7057, - "y": 15.1664 - }, - { - "l": "99.6", - "x": 1.7248, - "y": 15.236 - }, - { - "l": "99.6", - "x": 1.744, - "y": 15.3057 - }, - { - "l": "99.6", - "x": 1.7632, - "y": 15.3755 - }, - { - "l": "99.6", - "x": 1.7823, - "y": 15.4454 - }, - { - "l": "99.6", - "x": 1.8015, - "y": 15.5154 - }, - { - "l": "99.6", - "x": 1.8207, - "y": 15.5855 - }, - { - "l": "99.6", - "x": 1.8398, - "y": 15.6557 - }, - { - "l": "99.6", - "x": 1.859, - "y": 15.7261 - }, - { - "l": "99.6", - "x": 1.8782, - "y": 15.7967 - }, - { - "l": "99.6", - "x": 1.8973, - "y": 15.8674 - }, - { - "l": "99.6", - "x": 1.9165, - "y": 15.9382 - }, - { - "l": "99.6", - "x": 1.9357, - "y": 16.0092 - }, - { - "l": "99.6", - "x": 1.9548, - "y": 16.0803 - }, - { - "l": "99.6", - "x": 1.974, - "y": 16.1514 - }, - { - "l": "99.6", - "x": 1.9932, - "y": 16.2225 - }, - { - "l": "99.6", - "x": 2.0, - "y": 16.2479 - } - ] - } - ], - "ofc": null, - "bmi": null - } - } - }, - { - "uk_who_child": { - "male": null, - "female": { - "height": null, - "weight": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 2.0, - "y": 8.3735 - }, - { - "l": "0.4", - "x": 2.0192, - "y": 8.4077 - }, - { - "l": "0.4", - "x": 2.1025, - "y": 8.5564 - }, - { - "l": "0.4", - "x": 2.1858, - "y": 8.7034 - }, - { - "l": "0.4", - "x": 2.2692, - "y": 8.8481 - }, - { - "l": "0.4", - "x": 2.3525, - "y": 8.99 - }, - { - "l": "0.4", - "x": 2.4358, - "y": 9.1282 - }, - { - "l": "0.4", - "x": 2.5192, - "y": 9.2632 - }, - { - "l": "0.4", - "x": 2.6025, - "y": 9.3946 - }, - { - "l": "0.4", - "x": 2.6858, - "y": 9.5231 - }, - { - "l": "0.4", - "x": 2.7692, - "y": 9.6492 - }, - { - "l": "0.4", - "x": 2.8525, - "y": 9.7733 - }, - { - "l": "0.4", - "x": 2.9358, - "y": 9.8957 - }, - { - "l": "0.4", - "x": 3.0192, - "y": 10.0169 - }, - { - "l": "0.4", - "x": 3.1025, - "y": 10.1364 - }, - { - "l": "0.4", - "x": 3.1858, - "y": 10.2546 - }, - { - "l": "0.4", - "x": 3.2692, - "y": 10.371 - }, - { - "l": "0.4", - "x": 3.3525, - "y": 10.4861 - }, - { - "l": "0.4", - "x": 3.4358, - "y": 10.5997 - }, - { - "l": "0.4", - "x": 3.5192, - "y": 10.7115 - }, - { - "l": "0.4", - "x": 3.6025, - "y": 10.822 - }, - { - "l": "0.4", - "x": 3.6858, - "y": 10.9313 - }, - { - "l": "0.4", - "x": 3.7692, - "y": 11.0396 - }, - { - "l": "0.4", - "x": 3.8525, - "y": 11.147 - }, - { - "l": "0.4", - "x": 3.9358, - "y": 11.254 - }, - { - "l": "0.4", - "x": 4.0, - "y": 11.336 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 2.0, - "y": 9.0359 - }, - { - "l": "2.0", - "x": 2.0192, - "y": 9.073 - }, - { - "l": "2.0", - "x": 2.1025, - "y": 9.234 - }, - { - "l": "2.0", - "x": 2.1858, - "y": 9.3936 - }, - { - "l": "2.0", - "x": 2.2692, - "y": 9.551 - }, - { - "l": "2.0", - "x": 2.3525, - "y": 9.7055 - }, - { - "l": "2.0", - "x": 2.4358, - "y": 9.8565 - }, - { - "l": "2.0", - "x": 2.5192, - "y": 10.0042 - }, - { - "l": "2.0", - "x": 2.6025, - "y": 10.1485 - }, - { - "l": "2.0", - "x": 2.6858, - "y": 10.2898 - }, - { - "l": "2.0", - "x": 2.7692, - "y": 10.4288 - }, - { - "l": "2.0", - "x": 2.8525, - "y": 10.566 - }, - { - "l": "2.0", - "x": 2.9358, - "y": 10.7017 - }, - { - "l": "2.0", - "x": 3.0192, - "y": 10.8363 - }, - { - "l": "2.0", - "x": 3.1025, - "y": 10.9695 - }, - { - "l": "2.0", - "x": 3.1858, - "y": 11.1015 - }, - { - "l": "2.0", - "x": 3.2692, - "y": 11.2319 - }, - { - "l": "2.0", - "x": 3.3525, - "y": 11.3611 - }, - { - "l": "2.0", - "x": 3.4358, - "y": 11.4889 - }, - { - "l": "2.0", - "x": 3.5192, - "y": 11.6151 - }, - { - "l": "2.0", - "x": 3.6025, - "y": 11.74 - }, - { - "l": "2.0", - "x": 3.6858, - "y": 11.8637 - }, - { - "l": "2.0", - "x": 3.7692, - "y": 11.9865 - }, - { - "l": "2.0", - "x": 3.8525, - "y": 12.1084 - }, - { - "l": "2.0", - "x": 3.9358, - "y": 12.2298 - }, - { - "l": "2.0", - "x": 4.0, - "y": 12.3229 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 2.0, - "y": 9.7677 - }, - { - "l": "9.0", - "x": 2.0192, - "y": 9.8079 - }, - { - "l": "9.0", - "x": 2.1025, - "y": 9.983 - }, - { - "l": "9.0", - "x": 2.1858, - "y": 10.1568 - }, - { - "l": "9.0", - "x": 2.2692, - "y": 10.3284 - }, - { - "l": "9.0", - "x": 2.3525, - "y": 10.4973 - }, - { - "l": "9.0", - "x": 2.4358, - "y": 10.6628 - }, - { - "l": "9.0", - "x": 2.5192, - "y": 10.8249 - }, - { - "l": "9.0", - "x": 2.6025, - "y": 10.9837 - }, - { - "l": "9.0", - "x": 2.6858, - "y": 11.1397 - }, - { - "l": "9.0", - "x": 2.7692, - "y": 11.2935 - }, - { - "l": "9.0", - "x": 2.8525, - "y": 11.4457 - }, - { - "l": "9.0", - "x": 2.9358, - "y": 11.5966 - }, - { - "l": "9.0", - "x": 3.0192, - "y": 11.7466 - }, - { - "l": "9.0", - "x": 3.1025, - "y": 11.8955 - }, - { - "l": "9.0", - "x": 3.1858, - "y": 12.0435 - }, - { - "l": "9.0", - "x": 3.2692, - "y": 12.1901 - }, - { - "l": "9.0", - "x": 3.3525, - "y": 12.3357 - }, - { - "l": "9.0", - "x": 3.4358, - "y": 12.48 - }, - { - "l": "9.0", - "x": 3.5192, - "y": 12.6228 - }, - { - "l": "9.0", - "x": 3.6025, - "y": 12.7645 - }, - { - "l": "9.0", - "x": 3.6858, - "y": 12.9051 - }, - { - "l": "9.0", - "x": 3.7692, - "y": 13.0448 - }, - { - "l": "9.0", - "x": 3.8525, - "y": 13.1836 - }, - { - "l": "9.0", - "x": 3.9358, - "y": 13.3219 - }, - { - "l": "9.0", - "x": 4.0, - "y": 13.4281 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 2.0, - "y": 10.578 - }, - { - "l": "25.0", - "x": 2.0192, - "y": 10.6219 - }, - { - "l": "25.0", - "x": 2.1025, - "y": 10.8128 - }, - { - "l": "25.0", - "x": 2.1858, - "y": 11.0026 - }, - { - "l": "25.0", - "x": 2.2692, - "y": 11.1905 - }, - { - "l": "25.0", - "x": 2.3525, - "y": 11.3756 - }, - { - "l": "25.0", - "x": 2.4358, - "y": 11.5576 - }, - { - "l": "25.0", - "x": 2.5192, - "y": 11.7362 - }, - { - "l": "25.0", - "x": 2.6025, - "y": 11.9116 - }, - { - "l": "25.0", - "x": 2.6858, - "y": 12.0843 - }, - { - "l": "25.0", - "x": 2.7692, - "y": 12.2551 - }, - { - "l": "25.0", - "x": 2.8525, - "y": 12.4244 - }, - { - "l": "25.0", - "x": 2.9358, - "y": 12.5929 - }, - { - "l": "25.0", - "x": 3.0192, - "y": 12.7607 - }, - { - "l": "25.0", - "x": 3.1025, - "y": 12.9277 - }, - { - "l": "25.0", - "x": 3.1858, - "y": 13.0942 - }, - { - "l": "25.0", - "x": 3.2692, - "y": 13.2596 - }, - { - "l": "25.0", - "x": 3.3525, - "y": 13.4242 - }, - { - "l": "25.0", - "x": 3.4358, - "y": 13.5878 - }, - { - "l": "25.0", - "x": 3.5192, - "y": 13.7501 - }, - { - "l": "25.0", - "x": 3.6025, - "y": 13.9115 - }, - { - "l": "25.0", - "x": 3.6858, - "y": 14.0718 - }, - { - "l": "25.0", - "x": 3.7692, - "y": 14.2312 - }, - { - "l": "25.0", - "x": 3.8525, - "y": 14.39 - }, - { - "l": "25.0", - "x": 3.9358, - "y": 14.5482 - }, - { - "l": "25.0", - "x": 4.0, - "y": 14.6697 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 2.0, - "y": 11.4775 - }, - { - "l": "50.0", - "x": 2.0192, - "y": 11.5255 - }, - { - "l": "50.0", - "x": 2.1025, - "y": 11.7344 - }, - { - "l": "50.0", - "x": 2.1858, - "y": 11.9424 - }, - { - "l": "50.0", - "x": 2.2692, - "y": 12.1487 - }, - { - "l": "50.0", - "x": 2.3525, - "y": 12.3525 - }, - { - "l": "50.0", - "x": 2.4358, - "y": 12.5532 - }, - { - "l": "50.0", - "x": 2.5192, - "y": 12.7506 - }, - { - "l": "50.0", - "x": 2.6025, - "y": 12.9451 - }, - { - "l": "50.0", - "x": 2.6858, - "y": 13.137 - }, - { - "l": "50.0", - "x": 2.7692, - "y": 13.3274 - }, - { - "l": "50.0", - "x": 2.8525, - "y": 13.5165 - }, - { - "l": "50.0", - "x": 2.9358, - "y": 13.7052 - }, - { - "l": "50.0", - "x": 3.0192, - "y": 13.8936 - }, - { - "l": "50.0", - "x": 3.1025, - "y": 14.0818 - }, - { - "l": "50.0", - "x": 3.1858, - "y": 14.2697 - }, - { - "l": "50.0", - "x": 3.2692, - "y": 14.4571 - }, - { - "l": "50.0", - "x": 3.3525, - "y": 14.6439 - }, - { - "l": "50.0", - "x": 3.4358, - "y": 14.83 - }, - { - "l": "50.0", - "x": 3.5192, - "y": 15.0152 - }, - { - "l": "50.0", - "x": 3.6025, - "y": 15.1996 - }, - { - "l": "50.0", - "x": 3.6858, - "y": 15.3831 - }, - { - "l": "50.0", - "x": 3.7692, - "y": 15.566 - }, - { - "l": "50.0", - "x": 3.8525, - "y": 15.7483 - }, - { - "l": "50.0", - "x": 3.9358, - "y": 15.9299 - }, - { - "l": "50.0", - "x": 4.0, - "y": 16.0697 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 2.0, - "y": 12.4785 - }, - { - "l": "75.0", - "x": 2.0192, - "y": 12.5313 - }, - { - "l": "75.0", - "x": 2.1025, - "y": 12.7606 - }, - { - "l": "75.0", - "x": 2.1858, - "y": 12.9894 - }, - { - "l": "75.0", - "x": 2.2692, - "y": 13.2168 - }, - { - "l": "75.0", - "x": 2.3525, - "y": 13.4418 - }, - { - "l": "75.0", - "x": 2.4358, - "y": 13.664 - }, - { - "l": "75.0", - "x": 2.5192, - "y": 13.8832 - }, - { - "l": "75.0", - "x": 2.6025, - "y": 14.0995 - }, - { - "l": "75.0", - "x": 2.6858, - "y": 14.3136 - }, - { - "l": "75.0", - "x": 2.7692, - "y": 14.5266 - }, - { - "l": "75.0", - "x": 2.8525, - "y": 14.7387 - }, - { - "l": "75.0", - "x": 2.9358, - "y": 14.9508 - }, - { - "l": "75.0", - "x": 3.0192, - "y": 15.1632 - }, - { - "l": "75.0", - "x": 3.1025, - "y": 15.376 - }, - { - "l": "75.0", - "x": 3.1858, - "y": 15.5889 - }, - { - "l": "75.0", - "x": 3.2692, - "y": 15.8021 - }, - { - "l": "75.0", - "x": 3.3525, - "y": 16.015 - }, - { - "l": "75.0", - "x": 3.4358, - "y": 16.2276 - }, - { - "l": "75.0", - "x": 3.5192, - "y": 16.4398 - }, - { - "l": "75.0", - "x": 3.6025, - "y": 16.6514 - }, - { - "l": "75.0", - "x": 3.6858, - "y": 16.8624 - }, - { - "l": "75.0", - "x": 3.7692, - "y": 17.0729 - }, - { - "l": "75.0", - "x": 3.8525, - "y": 17.2831 - }, - { - "l": "75.0", - "x": 3.9358, - "y": 17.4927 - }, - { - "l": "75.0", - "x": 4.0, - "y": 17.6541 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 2.0, - "y": 13.5955 - }, - { - "l": "91.0", - "x": 2.0192, - "y": 13.6536 - }, - { - "l": "91.0", - "x": 2.1025, - "y": 13.9064 - }, - { - "l": "91.0", - "x": 2.1858, - "y": 14.1591 - }, - { - "l": "91.0", - "x": 2.2692, - "y": 14.4107 - }, - { - "l": "91.0", - "x": 2.3525, - "y": 14.6602 - }, - { - "l": "91.0", - "x": 2.4358, - "y": 14.9071 - }, - { - "l": "91.0", - "x": 2.5192, - "y": 15.1512 - }, - { - "l": "91.0", - "x": 2.6025, - "y": 15.3929 - }, - { - "l": "91.0", - "x": 2.6858, - "y": 15.6327 - }, - { - "l": "91.0", - "x": 2.7692, - "y": 15.8719 - }, - { - "l": "91.0", - "x": 2.8525, - "y": 16.1108 - }, - { - "l": "91.0", - "x": 2.9358, - "y": 16.3502 - }, - { - "l": "91.0", - "x": 3.0192, - "y": 16.5906 - }, - { - "l": "91.0", - "x": 3.1025, - "y": 16.8322 - }, - { - "l": "91.0", - "x": 3.1858, - "y": 17.0746 - }, - { - "l": "91.0", - "x": 3.2692, - "y": 17.3179 - }, - { - "l": "91.0", - "x": 3.3525, - "y": 17.5616 - }, - { - "l": "91.0", - "x": 3.4358, - "y": 17.8055 - }, - { - "l": "91.0", - "x": 3.5192, - "y": 18.0496 - }, - { - "l": "91.0", - "x": 3.6025, - "y": 18.2935 - }, - { - "l": "91.0", - "x": 3.6858, - "y": 18.5371 - }, - { - "l": "91.0", - "x": 3.7692, - "y": 18.7806 - }, - { - "l": "91.0", - "x": 3.8525, - "y": 19.0241 - }, - { - "l": "91.0", - "x": 3.9358, - "y": 19.267 - }, - { - "l": "91.0", - "x": 4.0, - "y": 19.4542 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 2.0, - "y": 14.8453 - }, - { - "l": "98.0", - "x": 2.0192, - "y": 14.9096 - }, - { - "l": "98.0", - "x": 2.1025, - "y": 15.1895 - }, - { - "l": "98.0", - "x": 2.1858, - "y": 15.4697 - }, - { - "l": "98.0", - "x": 2.2692, - "y": 15.7491 - }, - { - "l": "98.0", - "x": 2.3525, - "y": 16.0268 - }, - { - "l": "98.0", - "x": 2.4358, - "y": 16.3025 - }, - { - "l": "98.0", - "x": 2.5192, - "y": 16.5755 - }, - { - "l": "98.0", - "x": 2.6025, - "y": 16.8465 - }, - { - "l": "98.0", - "x": 2.6858, - "y": 17.1164 - }, - { - "l": "98.0", - "x": 2.7692, - "y": 17.3861 - }, - { - "l": "98.0", - "x": 2.8525, - "y": 17.6562 - }, - { - "l": "98.0", - "x": 2.9358, - "y": 17.9276 - }, - { - "l": "98.0", - "x": 3.0192, - "y": 18.2009 - }, - { - "l": "98.0", - "x": 3.1025, - "y": 18.4765 - }, - { - "l": "98.0", - "x": 3.1858, - "y": 18.7535 - }, - { - "l": "98.0", - "x": 3.2692, - "y": 19.0326 - }, - { - "l": "98.0", - "x": 3.3525, - "y": 19.3127 - }, - { - "l": "98.0", - "x": 3.4358, - "y": 19.5938 - }, - { - "l": "98.0", - "x": 3.5192, - "y": 19.8758 - }, - { - "l": "98.0", - "x": 3.6025, - "y": 20.1582 - }, - { - "l": "98.0", - "x": 3.6858, - "y": 20.4408 - }, - { - "l": "98.0", - "x": 3.7692, - "y": 20.7237 - }, - { - "l": "98.0", - "x": 3.8525, - "y": 21.0071 - }, - { - "l": "98.0", - "x": 3.9358, - "y": 21.29 - }, - { - "l": "98.0", - "x": 4.0, - "y": 21.5083 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 2.0, - "y": 16.2479 - }, - { - "l": "99.6", - "x": 2.0192, - "y": 16.3194 - }, - { - "l": "99.6", - "x": 2.1025, - "y": 16.6305 - }, - { - "l": "99.6", - "x": 2.1858, - "y": 16.9425 - }, - { - "l": "99.6", - "x": 2.2692, - "y": 17.2543 - }, - { - "l": "99.6", - "x": 2.3525, - "y": 17.5647 - }, - { - "l": "99.6", - "x": 2.4358, - "y": 17.8738 - }, - { - "l": "99.6", - "x": 2.5192, - "y": 18.1805 - }, - { - "l": "99.6", - "x": 2.6025, - "y": 18.4858 - }, - { - "l": "99.6", - "x": 2.6858, - "y": 18.7907 - }, - { - "l": "99.6", - "x": 2.7692, - "y": 19.0963 - }, - { - "l": "99.6", - "x": 2.8525, - "y": 19.403 - }, - { - "l": "99.6", - "x": 2.9358, - "y": 19.7121 - }, - { - "l": "99.6", - "x": 3.0192, - "y": 20.0242 - }, - { - "l": "99.6", - "x": 3.1025, - "y": 20.3399 - }, - { - "l": "99.6", - "x": 3.1858, - "y": 20.658 - }, - { - "l": "99.6", - "x": 3.2692, - "y": 20.9796 - }, - { - "l": "99.6", - "x": 3.3525, - "y": 21.3031 - }, - { - "l": "99.6", - "x": 3.4358, - "y": 21.6285 - }, - { - "l": "99.6", - "x": 3.5192, - "y": 21.9559 - }, - { - "l": "99.6", - "x": 3.6025, - "y": 22.2844 - }, - { - "l": "99.6", - "x": 3.6858, - "y": 22.6139 - }, - { - "l": "99.6", - "x": 3.7692, - "y": 22.9442 - }, - { - "l": "99.6", - "x": 3.8525, - "y": 23.2757 - }, - { - "l": "99.6", - "x": 3.9358, - "y": 23.6068 - }, - { - "l": "99.6", - "x": 4.0, - "y": 23.8628 - } - ] - } - ], - "ofc": null, - "bmi": null - } - } - }, - { - "uk90_child": { - "male": null, - "female": { - "height": null, - "weight": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 4.0, - "y": 11.9254 - }, - { - "l": "0.4", - "x": 4.0833, - "y": 12.0338 - }, - { - "l": "0.4", - "x": 4.1667, - "y": 12.1432 - }, - { - "l": "0.4", - "x": 4.25, - "y": 12.2518 - }, - { - "l": "0.4", - "x": 4.3333, - "y": 12.3619 - }, - { - "l": "0.4", - "x": 4.4167, - "y": 12.4727 - }, - { - "l": "0.4", - "x": 4.5, - "y": 12.5844 - }, - { - "l": "0.4", - "x": 4.5833, - "y": 12.6963 - }, - { - "l": "0.4", - "x": 4.6667, - "y": 12.8092 - }, - { - "l": "0.4", - "x": 4.75, - "y": 12.9219 - }, - { - "l": "0.4", - "x": 4.8333, - "y": 13.0346 - }, - { - "l": "0.4", - "x": 4.9167, - "y": 13.1477 - }, - { - "l": "0.4", - "x": 5.0, - "y": 13.26 - }, - { - "l": "0.4", - "x": 5.0833, - "y": 13.3729 - }, - { - "l": "0.4", - "x": 5.1667, - "y": 13.4844 - }, - { - "l": "0.4", - "x": 5.25, - "y": 13.5952 - }, - { - "l": "0.4", - "x": 5.3333, - "y": 13.7079 - }, - { - "l": "0.4", - "x": 5.4167, - "y": 13.8188 - }, - { - "l": "0.4", - "x": 5.5, - "y": 13.931 - }, - { - "l": "0.4", - "x": 5.5833, - "y": 14.0431 - }, - { - "l": "0.4", - "x": 5.6667, - "y": 14.1559 - }, - { - "l": "0.4", - "x": 5.75, - "y": 14.2701 - }, - { - "l": "0.4", - "x": 5.8333, - "y": 14.3851 - }, - { - "l": "0.4", - "x": 5.9167, - "y": 14.5004 - }, - { - "l": "0.4", - "x": 6.0, - "y": 14.617 - }, - { - "l": "0.4", - "x": 6.0833, - "y": 14.7341 - }, - { - "l": "0.4", - "x": 6.1667, - "y": 14.8527 - }, - { - "l": "0.4", - "x": 6.25, - "y": 14.972 - }, - { - "l": "0.4", - "x": 6.3333, - "y": 15.0919 - }, - { - "l": "0.4", - "x": 6.4167, - "y": 15.2131 - }, - { - "l": "0.4", - "x": 6.5, - "y": 15.337 - }, - { - "l": "0.4", - "x": 6.5833, - "y": 15.4615 - }, - { - "l": "0.4", - "x": 6.6667, - "y": 15.5893 - }, - { - "l": "0.4", - "x": 6.75, - "y": 15.7182 - }, - { - "l": "0.4", - "x": 6.8333, - "y": 15.8503 - }, - { - "l": "0.4", - "x": 6.9167, - "y": 15.9844 - }, - { - "l": "0.4", - "x": 7.0, - "y": 16.1213 - }, - { - "l": "0.4", - "x": 7.0833, - "y": 16.2597 - }, - { - "l": "0.4", - "x": 7.1667, - "y": 16.3992 - }, - { - "l": "0.4", - "x": 7.25, - "y": 16.5398 - }, - { - "l": "0.4", - "x": 7.3333, - "y": 16.6819 - }, - { - "l": "0.4", - "x": 7.4167, - "y": 16.8241 - }, - { - "l": "0.4", - "x": 7.5, - "y": 16.9668 - }, - { - "l": "0.4", - "x": 7.5833, - "y": 17.1088 - }, - { - "l": "0.4", - "x": 7.6667, - "y": 17.2515 - }, - { - "l": "0.4", - "x": 7.75, - "y": 17.3952 - }, - { - "l": "0.4", - "x": 7.8333, - "y": 17.5374 - }, - { - "l": "0.4", - "x": 7.9167, - "y": 17.6794 - }, - { - "l": "0.4", - "x": 8.0, - "y": 17.8223 - }, - { - "l": "0.4", - "x": 8.0833, - "y": 17.9628 - }, - { - "l": "0.4", - "x": 8.1667, - "y": 18.1045 - }, - { - "l": "0.4", - "x": 8.25, - "y": 18.2438 - }, - { - "l": "0.4", - "x": 8.3333, - "y": 18.3838 - }, - { - "l": "0.4", - "x": 8.4167, - "y": 18.5226 - }, - { - "l": "0.4", - "x": 8.5, - "y": 18.6614 - }, - { - "l": "0.4", - "x": 8.5833, - "y": 18.8004 - }, - { - "l": "0.4", - "x": 8.6667, - "y": 18.9399 - }, - { - "l": "0.4", - "x": 8.75, - "y": 19.0801 - }, - { - "l": "0.4", - "x": 8.8333, - "y": 19.222 - }, - { - "l": "0.4", - "x": 8.9167, - "y": 19.3658 - }, - { - "l": "0.4", - "x": 9.0, - "y": 19.5123 - }, - { - "l": "0.4", - "x": 9.0833, - "y": 19.66 - }, - { - "l": "0.4", - "x": 9.1667, - "y": 19.8103 - }, - { - "l": "0.4", - "x": 9.25, - "y": 19.9626 - }, - { - "l": "0.4", - "x": 9.3333, - "y": 20.1155 - }, - { - "l": "0.4", - "x": 9.4167, - "y": 20.2699 - }, - { - "l": "0.4", - "x": 9.5, - "y": 20.4253 - }, - { - "l": "0.4", - "x": 9.5833, - "y": 20.5793 - }, - { - "l": "0.4", - "x": 9.6667, - "y": 20.7355 - }, - { - "l": "0.4", - "x": 9.75, - "y": 20.8902 - }, - { - "l": "0.4", - "x": 9.8333, - "y": 21.0439 - }, - { - "l": "0.4", - "x": 9.9167, - "y": 21.1977 - }, - { - "l": "0.4", - "x": 10.0, - "y": 21.3491 - }, - { - "l": "0.4", - "x": 10.0833, - "y": 21.5 - }, - { - "l": "0.4", - "x": 10.1667, - "y": 21.6489 - }, - { - "l": "0.4", - "x": 10.25, - "y": 21.7988 - }, - { - "l": "0.4", - "x": 10.3333, - "y": 21.9474 - }, - { - "l": "0.4", - "x": 10.4167, - "y": 22.096 - }, - { - "l": "0.4", - "x": 10.5, - "y": 22.2438 - }, - { - "l": "0.4", - "x": 10.5833, - "y": 22.3929 - }, - { - "l": "0.4", - "x": 10.6667, - "y": 22.5437 - }, - { - "l": "0.4", - "x": 10.75, - "y": 22.6955 - }, - { - "l": "0.4", - "x": 10.8333, - "y": 22.8482 - }, - { - "l": "0.4", - "x": 10.9167, - "y": 23.0024 - }, - { - "l": "0.4", - "x": 11.0, - "y": 23.1614 - }, - { - "l": "0.4", - "x": 11.0833, - "y": 23.3244 - }, - { - "l": "0.4", - "x": 11.1667, - "y": 23.4906 - }, - { - "l": "0.4", - "x": 11.25, - "y": 23.6636 - }, - { - "l": "0.4", - "x": 11.3333, - "y": 23.8423 - }, - { - "l": "0.4", - "x": 11.4167, - "y": 24.0261 - }, - { - "l": "0.4", - "x": 11.5, - "y": 24.22 - }, - { - "l": "0.4", - "x": 11.5833, - "y": 24.4224 - }, - { - "l": "0.4", - "x": 11.6667, - "y": 24.631 - }, - { - "l": "0.4", - "x": 11.75, - "y": 24.851 - }, - { - "l": "0.4", - "x": 11.8333, - "y": 25.0781 - }, - { - "l": "0.4", - "x": 11.9167, - "y": 25.3166 - }, - { - "l": "0.4", - "x": 12.0, - "y": 25.5626 - }, - { - "l": "0.4", - "x": 12.0833, - "y": 25.8203 - }, - { - "l": "0.4", - "x": 12.1667, - "y": 26.0875 - }, - { - "l": "0.4", - "x": 12.25, - "y": 26.3655 - }, - { - "l": "0.4", - "x": 12.3333, - "y": 26.6528 - }, - { - "l": "0.4", - "x": 12.4167, - "y": 26.9506 - }, - { - "l": "0.4", - "x": 12.5, - "y": 27.2579 - }, - { - "l": "0.4", - "x": 12.5833, - "y": 27.5733 - }, - { - "l": "0.4", - "x": 12.6667, - "y": 27.894 - }, - { - "l": "0.4", - "x": 12.75, - "y": 28.2251 - }, - { - "l": "0.4", - "x": 12.8333, - "y": 28.5592 - }, - { - "l": "0.4", - "x": 12.9167, - "y": 28.9 - }, - { - "l": "0.4", - "x": 13.0, - "y": 29.2427 - }, - { - "l": "0.4", - "x": 13.0833, - "y": 29.5918 - }, - { - "l": "0.4", - "x": 13.1667, - "y": 29.9384 - }, - { - "l": "0.4", - "x": 13.25, - "y": 30.2885 - }, - { - "l": "0.4", - "x": 13.3333, - "y": 30.6353 - }, - { - "l": "0.4", - "x": 13.4167, - "y": 30.9823 - }, - { - "l": "0.4", - "x": 13.5, - "y": 31.3277 - }, - { - "l": "0.4", - "x": 13.5833, - "y": 31.6745 - }, - { - "l": "0.4", - "x": 13.6667, - "y": 32.0139 - }, - { - "l": "0.4", - "x": 13.75, - "y": 32.3543 - }, - { - "l": "0.4", - "x": 13.8333, - "y": 32.6947 - }, - { - "l": "0.4", - "x": 13.9167, - "y": 33.0269 - }, - { - "l": "0.4", - "x": 14.0, - "y": 33.3608 - }, - { - "l": "0.4", - "x": 14.0833, - "y": 33.6836 - }, - { - "l": "0.4", - "x": 14.1667, - "y": 34.0093 - }, - { - "l": "0.4", - "x": 14.25, - "y": 34.323 - }, - { - "l": "0.4", - "x": 14.3333, - "y": 34.6289 - }, - { - "l": "0.4", - "x": 14.4167, - "y": 34.9303 - }, - { - "l": "0.4", - "x": 14.5, - "y": 35.221 - }, - { - "l": "0.4", - "x": 14.5833, - "y": 35.5064 - }, - { - "l": "0.4", - "x": 14.6667, - "y": 35.7818 - }, - { - "l": "0.4", - "x": 14.75, - "y": 36.0473 - }, - { - "l": "0.4", - "x": 14.8333, - "y": 36.304 - }, - { - "l": "0.4", - "x": 14.9167, - "y": 36.5495 - }, - { - "l": "0.4", - "x": 15.0, - "y": 36.7852 - }, - { - "l": "0.4", - "x": 15.0833, - "y": 37.0116 - }, - { - "l": "0.4", - "x": 15.1667, - "y": 37.2314 - }, - { - "l": "0.4", - "x": 15.25, - "y": 37.4402 - }, - { - "l": "0.4", - "x": 15.3333, - "y": 37.6426 - }, - { - "l": "0.4", - "x": 15.4167, - "y": 37.8353 - }, - { - "l": "0.4", - "x": 15.5, - "y": 38.0191 - }, - { - "l": "0.4", - "x": 15.5833, - "y": 38.197 - }, - { - "l": "0.4", - "x": 15.6667, - "y": 38.3641 - }, - { - "l": "0.4", - "x": 15.75, - "y": 38.5274 - }, - { - "l": "0.4", - "x": 15.8333, - "y": 38.6811 - }, - { - "l": "0.4", - "x": 15.9167, - "y": 38.8299 - }, - { - "l": "0.4", - "x": 16.0, - "y": 38.9715 - }, - { - "l": "0.4", - "x": 16.0833, - "y": 39.1078 - }, - { - "l": "0.4", - "x": 16.1667, - "y": 39.2356 - }, - { - "l": "0.4", - "x": 16.25, - "y": 39.3581 - }, - { - "l": "0.4", - "x": 16.3333, - "y": 39.4753 - }, - { - "l": "0.4", - "x": 16.4167, - "y": 39.587 - }, - { - "l": "0.4", - "x": 16.5, - "y": 39.6912 - }, - { - "l": "0.4", - "x": 16.5833, - "y": 39.7907 - }, - { - "l": "0.4", - "x": 16.6667, - "y": 39.8853 - }, - { - "l": "0.4", - "x": 16.75, - "y": 39.9758 - }, - { - "l": "0.4", - "x": 16.8333, - "y": 40.0616 - }, - { - "l": "0.4", - "x": 16.9167, - "y": 40.1418 - }, - { - "l": "0.4", - "x": 17.0, - "y": 40.2173 - }, - { - "l": "0.4", - "x": 17.0833, - "y": 40.2897 - }, - { - "l": "0.4", - "x": 17.1667, - "y": 40.3584 - }, - { - "l": "0.4", - "x": 17.25, - "y": 40.4218 - }, - { - "l": "0.4", - "x": 17.3333, - "y": 40.4845 - }, - { - "l": "0.4", - "x": 17.4167, - "y": 40.542 - }, - { - "l": "0.4", - "x": 17.5, - "y": 40.5972 - }, - { - "l": "0.4", - "x": 17.5833, - "y": 40.6498 - }, - { - "l": "0.4", - "x": 17.6667, - "y": 40.6995 - }, - { - "l": "0.4", - "x": 17.75, - "y": 40.7439 - }, - { - "l": "0.4", - "x": 17.8333, - "y": 40.7897 - }, - { - "l": "0.4", - "x": 17.9167, - "y": 40.8307 - }, - { - "l": "0.4", - "x": 18.0, - "y": 40.8695 - }, - { - "l": "0.4", - "x": 18.0833, - "y": 40.9073 - }, - { - "l": "0.4", - "x": 18.1667, - "y": 40.9421 - }, - { - "l": "0.4", - "x": 18.25, - "y": 40.9761 - }, - { - "l": "0.4", - "x": 18.3333, - "y": 41.0092 - }, - { - "l": "0.4", - "x": 18.4167, - "y": 41.0402 - }, - { - "l": "0.4", - "x": 18.5, - "y": 41.0673 - }, - { - "l": "0.4", - "x": 18.5833, - "y": 41.0961 - }, - { - "l": "0.4", - "x": 18.6667, - "y": 41.122 - }, - { - "l": "0.4", - "x": 18.75, - "y": 41.1485 - }, - { - "l": "0.4", - "x": 18.8333, - "y": 41.1709 - }, - { - "l": "0.4", - "x": 18.9167, - "y": 41.193 - }, - { - "l": "0.4", - "x": 19.0, - "y": 41.2134 - }, - { - "l": "0.4", - "x": 19.0833, - "y": 41.2354 - }, - { - "l": "0.4", - "x": 19.1667, - "y": 41.2541 - }, - { - "l": "0.4", - "x": 19.25, - "y": 41.2719 - }, - { - "l": "0.4", - "x": 19.3333, - "y": 41.2866 - }, - { - "l": "0.4", - "x": 19.4167, - "y": 41.3013 - }, - { - "l": "0.4", - "x": 19.5, - "y": 41.3164 - }, - { - "l": "0.4", - "x": 19.5833, - "y": 41.3298 - }, - { - "l": "0.4", - "x": 19.6667, - "y": 41.3424 - }, - { - "l": "0.4", - "x": 19.75, - "y": 41.3529 - }, - { - "l": "0.4", - "x": 19.8333, - "y": 41.3641 - }, - { - "l": "0.4", - "x": 19.9167, - "y": 41.3724 - }, - { - "l": "0.4", - "x": 20.0, - "y": 41.3829 - }, - { - "l": "0.4", - "x": 20.0, - "y": 41.3829 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 4.0, - "y": 12.8175 - }, - { - "l": "2.0", - "x": 4.0833, - "y": 12.9367 - }, - { - "l": "2.0", - "x": 4.1667, - "y": 13.0571 - }, - { - "l": "2.0", - "x": 4.25, - "y": 13.177 - }, - { - "l": "2.0", - "x": 4.3333, - "y": 13.2983 - }, - { - "l": "2.0", - "x": 4.4167, - "y": 13.4205 - }, - { - "l": "2.0", - "x": 4.5, - "y": 13.5435 - }, - { - "l": "2.0", - "x": 4.5833, - "y": 13.6673 - }, - { - "l": "2.0", - "x": 4.6667, - "y": 13.7918 - }, - { - "l": "2.0", - "x": 4.75, - "y": 13.9164 - }, - { - "l": "2.0", - "x": 4.8333, - "y": 14.0411 - }, - { - "l": "2.0", - "x": 4.9167, - "y": 14.1659 - }, - { - "l": "2.0", - "x": 5.0, - "y": 14.2901 - }, - { - "l": "2.0", - "x": 5.0833, - "y": 14.4149 - }, - { - "l": "2.0", - "x": 5.1667, - "y": 14.5383 - }, - { - "l": "2.0", - "x": 5.25, - "y": 14.6612 - }, - { - "l": "2.0", - "x": 5.3333, - "y": 14.7857 - }, - { - "l": "2.0", - "x": 5.4167, - "y": 14.9088 - }, - { - "l": "2.0", - "x": 5.5, - "y": 15.0329 - }, - { - "l": "2.0", - "x": 5.5833, - "y": 15.1572 - }, - { - "l": "2.0", - "x": 5.6667, - "y": 15.2821 - }, - { - "l": "2.0", - "x": 5.75, - "y": 15.4087 - }, - { - "l": "2.0", - "x": 5.8333, - "y": 15.5358 - }, - { - "l": "2.0", - "x": 5.9167, - "y": 15.6636 - }, - { - "l": "2.0", - "x": 6.0, - "y": 15.7928 - }, - { - "l": "2.0", - "x": 6.0833, - "y": 15.9229 - }, - { - "l": "2.0", - "x": 6.1667, - "y": 16.0544 - }, - { - "l": "2.0", - "x": 6.25, - "y": 16.1868 - }, - { - "l": "2.0", - "x": 6.3333, - "y": 16.3199 - }, - { - "l": "2.0", - "x": 6.4167, - "y": 16.4549 - }, - { - "l": "2.0", - "x": 6.5, - "y": 16.5924 - }, - { - "l": "2.0", - "x": 6.5833, - "y": 16.7313 - }, - { - "l": "2.0", - "x": 6.6667, - "y": 16.8734 - }, - { - "l": "2.0", - "x": 6.75, - "y": 17.0173 - }, - { - "l": "2.0", - "x": 6.8333, - "y": 17.1647 - }, - { - "l": "2.0", - "x": 6.9167, - "y": 17.3144 - }, - { - "l": "2.0", - "x": 7.0, - "y": 17.4673 - }, - { - "l": "2.0", - "x": 7.0833, - "y": 17.622 - }, - { - "l": "2.0", - "x": 7.1667, - "y": 17.7783 - }, - { - "l": "2.0", - "x": 7.25, - "y": 17.9359 - }, - { - "l": "2.0", - "x": 7.3333, - "y": 18.0951 - }, - { - "l": "2.0", - "x": 7.4167, - "y": 18.2544 - }, - { - "l": "2.0", - "x": 7.5, - "y": 18.4142 - }, - { - "l": "2.0", - "x": 7.5833, - "y": 18.5736 - }, - { - "l": "2.0", - "x": 7.6667, - "y": 18.7337 - }, - { - "l": "2.0", - "x": 7.75, - "y": 18.8949 - }, - { - "l": "2.0", - "x": 7.8333, - "y": 19.0548 - }, - { - "l": "2.0", - "x": 7.9167, - "y": 19.2147 - }, - { - "l": "2.0", - "x": 8.0, - "y": 19.3752 - }, - { - "l": "2.0", - "x": 8.0833, - "y": 19.5338 - }, - { - "l": "2.0", - "x": 8.1667, - "y": 19.693 - }, - { - "l": "2.0", - "x": 8.25, - "y": 19.8506 - }, - { - "l": "2.0", - "x": 8.3333, - "y": 20.0085 - }, - { - "l": "2.0", - "x": 8.4167, - "y": 20.1658 - }, - { - "l": "2.0", - "x": 8.5, - "y": 20.3229 - }, - { - "l": "2.0", - "x": 8.5833, - "y": 20.4805 - }, - { - "l": "2.0", - "x": 8.6667, - "y": 20.6393 - }, - { - "l": "2.0", - "x": 8.75, - "y": 20.7988 - }, - { - "l": "2.0", - "x": 8.8333, - "y": 20.9608 - }, - { - "l": "2.0", - "x": 8.9167, - "y": 21.125 - }, - { - "l": "2.0", - "x": 9.0, - "y": 21.2923 - }, - { - "l": "2.0", - "x": 9.0833, - "y": 21.4615 - }, - { - "l": "2.0", - "x": 9.1667, - "y": 21.6335 - }, - { - "l": "2.0", - "x": 9.25, - "y": 21.808 - }, - { - "l": "2.0", - "x": 9.3333, - "y": 21.9838 - }, - { - "l": "2.0", - "x": 9.4167, - "y": 22.1613 - }, - { - "l": "2.0", - "x": 9.5, - "y": 22.3402 - }, - { - "l": "2.0", - "x": 9.5833, - "y": 22.5187 - }, - { - "l": "2.0", - "x": 9.6667, - "y": 22.6994 - }, - { - "l": "2.0", - "x": 9.75, - "y": 22.8794 - }, - { - "l": "2.0", - "x": 9.8333, - "y": 23.0592 - }, - { - "l": "2.0", - "x": 9.9167, - "y": 23.2394 - }, - { - "l": "2.0", - "x": 10.0, - "y": 23.4182 - }, - { - "l": "2.0", - "x": 10.0833, - "y": 23.5966 - }, - { - "l": "2.0", - "x": 10.1667, - "y": 23.774 - }, - { - "l": "2.0", - "x": 10.25, - "y": 23.9526 - }, - { - "l": "2.0", - "x": 10.3333, - "y": 24.1301 - }, - { - "l": "2.0", - "x": 10.4167, - "y": 24.3087 - }, - { - "l": "2.0", - "x": 10.5, - "y": 24.4871 - }, - { - "l": "2.0", - "x": 10.5833, - "y": 24.6672 - }, - { - "l": "2.0", - "x": 10.6667, - "y": 24.8492 - }, - { - "l": "2.0", - "x": 10.75, - "y": 25.0332 - }, - { - "l": "2.0", - "x": 10.8333, - "y": 25.2181 - }, - { - "l": "2.0", - "x": 10.9167, - "y": 25.4055 - }, - { - "l": "2.0", - "x": 11.0, - "y": 25.5979 - }, - { - "l": "2.0", - "x": 11.0833, - "y": 25.7946 - }, - { - "l": "2.0", - "x": 11.1667, - "y": 25.9952 - }, - { - "l": "2.0", - "x": 11.25, - "y": 26.2028 - }, - { - "l": "2.0", - "x": 11.3333, - "y": 26.417 - }, - { - "l": "2.0", - "x": 11.4167, - "y": 26.6362 - }, - { - "l": "2.0", - "x": 11.5, - "y": 26.8656 - }, - { - "l": "2.0", - "x": 11.5833, - "y": 27.1033 - }, - { - "l": "2.0", - "x": 11.6667, - "y": 27.3481 - }, - { - "l": "2.0", - "x": 11.75, - "y": 27.6034 - }, - { - "l": "2.0", - "x": 11.8333, - "y": 27.8664 - }, - { - "l": "2.0", - "x": 11.9167, - "y": 28.1401 - }, - { - "l": "2.0", - "x": 12.0, - "y": 28.4219 - }, - { - "l": "2.0", - "x": 12.0833, - "y": 28.7147 - }, - { - "l": "2.0", - "x": 12.1667, - "y": 29.0168 - }, - { - "l": "2.0", - "x": 12.25, - "y": 29.3288 - }, - { - "l": "2.0", - "x": 12.3333, - "y": 29.6501 - }, - { - "l": "2.0", - "x": 12.4167, - "y": 29.9806 - }, - { - "l": "2.0", - "x": 12.5, - "y": 30.3196 - }, - { - "l": "2.0", - "x": 12.5833, - "y": 30.6657 - }, - { - "l": "2.0", - "x": 12.6667, - "y": 31.0167 - }, - { - "l": "2.0", - "x": 12.75, - "y": 31.3759 - }, - { - "l": "2.0", - "x": 12.8333, - "y": 31.7379 - }, - { - "l": "2.0", - "x": 12.9167, - "y": 32.1043 - }, - { - "l": "2.0", - "x": 13.0, - "y": 32.4725 - }, - { - "l": "2.0", - "x": 13.0833, - "y": 32.8447 - }, - { - "l": "2.0", - "x": 13.1667, - "y": 33.214 - }, - { - "l": "2.0", - "x": 13.25, - "y": 33.5845 - }, - { - "l": "2.0", - "x": 13.3333, - "y": 33.9501 - }, - { - "l": "2.0", - "x": 13.4167, - "y": 34.3142 - }, - { - "l": "2.0", - "x": 13.5, - "y": 34.675 - }, - { - "l": "2.0", - "x": 13.5833, - "y": 35.0353 - }, - { - "l": "2.0", - "x": 13.6667, - "y": 35.3874 - }, - { - "l": "2.0", - "x": 13.75, - "y": 35.7376 - }, - { - "l": "2.0", - "x": 13.8333, - "y": 36.086 - }, - { - "l": "2.0", - "x": 13.9167, - "y": 36.4252 - }, - { - "l": "2.0", - "x": 14.0, - "y": 36.7635 - }, - { - "l": "2.0", - "x": 14.0833, - "y": 37.0909 - }, - { - "l": "2.0", - "x": 14.1667, - "y": 37.4188 - }, - { - "l": "2.0", - "x": 14.25, - "y": 37.7339 - }, - { - "l": "2.0", - "x": 14.3333, - "y": 38.0408 - }, - { - "l": "2.0", - "x": 14.4167, - "y": 38.3419 - }, - { - "l": "2.0", - "x": 14.5, - "y": 38.6319 - }, - { - "l": "2.0", - "x": 14.5833, - "y": 38.9153 - }, - { - "l": "2.0", - "x": 14.6667, - "y": 39.1893 - }, - { - "l": "2.0", - "x": 14.75, - "y": 39.4524 - }, - { - "l": "2.0", - "x": 14.8333, - "y": 39.7065 - }, - { - "l": "2.0", - "x": 14.9167, - "y": 39.9501 - }, - { - "l": "2.0", - "x": 15.0, - "y": 40.1831 - }, - { - "l": "2.0", - "x": 15.0833, - "y": 40.4075 - }, - { - "l": "2.0", - "x": 15.1667, - "y": 40.6245 - }, - { - "l": "2.0", - "x": 15.25, - "y": 40.8315 - }, - { - "l": "2.0", - "x": 15.3333, - "y": 41.0313 - }, - { - "l": "2.0", - "x": 15.4167, - "y": 41.2222 - }, - { - "l": "2.0", - "x": 15.5, - "y": 41.4046 - }, - { - "l": "2.0", - "x": 15.5833, - "y": 41.5808 - }, - { - "l": "2.0", - "x": 15.6667, - "y": 41.7474 - }, - { - "l": "2.0", - "x": 15.75, - "y": 41.9092 - }, - { - "l": "2.0", - "x": 15.8333, - "y": 42.0622 - }, - { - "l": "2.0", - "x": 15.9167, - "y": 42.2102 - }, - { - "l": "2.0", - "x": 16.0, - "y": 42.351 - }, - { - "l": "2.0", - "x": 16.0833, - "y": 42.4865 - }, - { - "l": "2.0", - "x": 16.1667, - "y": 42.6142 - }, - { - "l": "2.0", - "x": 16.25, - "y": 42.7365 - }, - { - "l": "2.0", - "x": 16.3333, - "y": 42.8533 - }, - { - "l": "2.0", - "x": 16.4167, - "y": 42.9645 - }, - { - "l": "2.0", - "x": 16.5, - "y": 43.069 - }, - { - "l": "2.0", - "x": 16.5833, - "y": 43.1686 - }, - { - "l": "2.0", - "x": 16.6667, - "y": 43.2631 - }, - { - "l": "2.0", - "x": 16.75, - "y": 43.3535 - }, - { - "l": "2.0", - "x": 16.8333, - "y": 43.4391 - }, - { - "l": "2.0", - "x": 16.9167, - "y": 43.5195 - }, - { - "l": "2.0", - "x": 17.0, - "y": 43.5953 - }, - { - "l": "2.0", - "x": 17.0833, - "y": 43.668 - }, - { - "l": "2.0", - "x": 17.1667, - "y": 43.7366 - }, - { - "l": "2.0", - "x": 17.25, - "y": 43.8006 - }, - { - "l": "2.0", - "x": 17.3333, - "y": 43.8629 - }, - { - "l": "2.0", - "x": 17.4167, - "y": 43.9209 - }, - { - "l": "2.0", - "x": 17.5, - "y": 43.9762 - }, - { - "l": "2.0", - "x": 17.5833, - "y": 44.029 - }, - { - "l": "2.0", - "x": 17.6667, - "y": 44.0786 - }, - { - "l": "2.0", - "x": 17.75, - "y": 44.1238 - }, - { - "l": "2.0", - "x": 17.8333, - "y": 44.1694 - }, - { - "l": "2.0", - "x": 17.9167, - "y": 44.2107 - }, - { - "l": "2.0", - "x": 18.0, - "y": 44.2499 - }, - { - "l": "2.0", - "x": 18.0833, - "y": 44.2879 - }, - { - "l": "2.0", - "x": 18.1667, - "y": 44.323 - }, - { - "l": "2.0", - "x": 18.25, - "y": 44.357 - }, - { - "l": "2.0", - "x": 18.3333, - "y": 44.3901 - }, - { - "l": "2.0", - "x": 18.4167, - "y": 44.4211 - }, - { - "l": "2.0", - "x": 18.5, - "y": 44.4488 - }, - { - "l": "2.0", - "x": 18.5833, - "y": 44.4774 - }, - { - "l": "2.0", - "x": 18.6667, - "y": 44.5038 - }, - { - "l": "2.0", - "x": 18.75, - "y": 44.5299 - }, - { - "l": "2.0", - "x": 18.8333, - "y": 44.5527 - }, - { - "l": "2.0", - "x": 18.9167, - "y": 44.5751 - }, - { - "l": "2.0", - "x": 19.0, - "y": 44.5958 - }, - { - "l": "2.0", - "x": 19.0833, - "y": 44.6172 - }, - { - "l": "2.0", - "x": 19.1667, - "y": 44.6361 - }, - { - "l": "2.0", - "x": 19.25, - "y": 44.6539 - }, - { - "l": "2.0", - "x": 19.3333, - "y": 44.6695 - }, - { - "l": "2.0", - "x": 19.4167, - "y": 44.6841 - }, - { - "l": "2.0", - "x": 19.5, - "y": 44.6991 - }, - { - "l": "2.0", - "x": 19.5833, - "y": 44.7124 - }, - { - "l": "2.0", - "x": 19.6667, - "y": 44.7249 - }, - { - "l": "2.0", - "x": 19.75, - "y": 44.7359 - }, - { - "l": "2.0", - "x": 19.8333, - "y": 44.7468 - }, - { - "l": "2.0", - "x": 19.9167, - "y": 44.7555 - }, - { - "l": "2.0", - "x": 20.0, - "y": 44.7657 - }, - { - "l": "2.0", - "x": 20.0, - "y": 44.7657 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 4.0, - "y": 13.8148 - }, - { - "l": "9.0", - "x": 4.0833, - "y": 13.9472 - }, - { - "l": "9.0", - "x": 4.1667, - "y": 14.0809 - }, - { - "l": "9.0", - "x": 4.25, - "y": 14.2143 - }, - { - "l": "9.0", - "x": 4.3333, - "y": 14.3492 - }, - { - "l": "9.0", - "x": 4.4167, - "y": 14.4852 - }, - { - "l": "9.0", - "x": 4.5, - "y": 14.6221 - }, - { - "l": "9.0", - "x": 4.5833, - "y": 14.7602 - }, - { - "l": "9.0", - "x": 4.6667, - "y": 14.8988 - }, - { - "l": "9.0", - "x": 4.75, - "y": 15.0379 - }, - { - "l": "9.0", - "x": 4.8333, - "y": 15.1771 - }, - { - "l": "9.0", - "x": 4.9167, - "y": 15.3163 - }, - { - "l": "9.0", - "x": 5.0, - "y": 15.4551 - }, - { - "l": "9.0", - "x": 5.0833, - "y": 15.5945 - }, - { - "l": "9.0", - "x": 5.1667, - "y": 15.7326 - }, - { - "l": "9.0", - "x": 5.25, - "y": 15.8703 - }, - { - "l": "9.0", - "x": 5.3333, - "y": 16.0094 - }, - { - "l": "9.0", - "x": 5.4167, - "y": 16.1474 - }, - { - "l": "9.0", - "x": 5.5, - "y": 16.2861 - }, - { - "l": "9.0", - "x": 5.5833, - "y": 16.4253 - }, - { - "l": "9.0", - "x": 5.6667, - "y": 16.5653 - }, - { - "l": "9.0", - "x": 5.75, - "y": 16.707 - }, - { - "l": "9.0", - "x": 5.8333, - "y": 16.8491 - }, - { - "l": "9.0", - "x": 5.9167, - "y": 16.9924 - }, - { - "l": "9.0", - "x": 6.0, - "y": 17.137 - }, - { - "l": "9.0", - "x": 6.0833, - "y": 17.2833 - }, - { - "l": "9.0", - "x": 6.1667, - "y": 17.4308 - }, - { - "l": "9.0", - "x": 6.25, - "y": 17.5794 - }, - { - "l": "9.0", - "x": 6.3333, - "y": 17.729 - }, - { - "l": "9.0", - "x": 6.4167, - "y": 17.8809 - }, - { - "l": "9.0", - "x": 6.5, - "y": 18.0355 - }, - { - "l": "9.0", - "x": 6.5833, - "y": 18.192 - }, - { - "l": "9.0", - "x": 6.6667, - "y": 18.352 - }, - { - "l": "9.0", - "x": 6.75, - "y": 18.5144 - }, - { - "l": "9.0", - "x": 6.8333, - "y": 18.6809 - }, - { - "l": "9.0", - "x": 6.9167, - "y": 18.8501 - }, - { - "l": "9.0", - "x": 7.0, - "y": 19.0231 - }, - { - "l": "9.0", - "x": 7.0833, - "y": 19.1981 - }, - { - "l": "9.0", - "x": 7.1667, - "y": 19.3753 - }, - { - "l": "9.0", - "x": 7.25, - "y": 19.5539 - }, - { - "l": "9.0", - "x": 7.3333, - "y": 19.7343 - }, - { - "l": "9.0", - "x": 7.4167, - "y": 19.9149 - }, - { - "l": "9.0", - "x": 7.5, - "y": 20.0961 - }, - { - "l": "9.0", - "x": 7.5833, - "y": 20.2771 - }, - { - "l": "9.0", - "x": 7.6667, - "y": 20.4589 - }, - { - "l": "9.0", - "x": 7.75, - "y": 20.6418 - }, - { - "l": "9.0", - "x": 7.8333, - "y": 20.8237 - }, - { - "l": "9.0", - "x": 7.9167, - "y": 21.0056 - }, - { - "l": "9.0", - "x": 8.0, - "y": 21.188 - }, - { - "l": "9.0", - "x": 8.0833, - "y": 21.3688 - }, - { - "l": "9.0", - "x": 8.1667, - "y": 21.5499 - }, - { - "l": "9.0", - "x": 8.25, - "y": 21.73 - }, - { - "l": "9.0", - "x": 8.3333, - "y": 21.9101 - }, - { - "l": "9.0", - "x": 8.4167, - "y": 22.0901 - }, - { - "l": "9.0", - "x": 8.5, - "y": 22.2699 - }, - { - "l": "9.0", - "x": 8.5833, - "y": 22.4504 - }, - { - "l": "9.0", - "x": 8.6667, - "y": 22.6326 - }, - { - "l": "9.0", - "x": 8.75, - "y": 22.816 - }, - { - "l": "9.0", - "x": 8.8333, - "y": 23.0026 - }, - { - "l": "9.0", - "x": 8.9167, - "y": 23.1917 - }, - { - "l": "9.0", - "x": 9.0, - "y": 23.3844 - }, - { - "l": "9.0", - "x": 9.0833, - "y": 23.5798 - }, - { - "l": "9.0", - "x": 9.1667, - "y": 23.7783 - }, - { - "l": "9.0", - "x": 9.25, - "y": 23.9798 - }, - { - "l": "9.0", - "x": 9.3333, - "y": 24.1834 - }, - { - "l": "9.0", - "x": 9.4167, - "y": 24.3888 - }, - { - "l": "9.0", - "x": 9.5, - "y": 24.596 - }, - { - "l": "9.0", - "x": 9.5833, - "y": 24.8042 - }, - { - "l": "9.0", - "x": 9.6667, - "y": 25.0144 - }, - { - "l": "9.0", - "x": 9.75, - "y": 25.2248 - }, - { - "l": "9.0", - "x": 9.8333, - "y": 25.4358 - }, - { - "l": "9.0", - "x": 9.9167, - "y": 25.6478 - }, - { - "l": "9.0", - "x": 10.0, - "y": 25.8592 - }, - { - "l": "9.0", - "x": 10.0833, - "y": 26.0706 - }, - { - "l": "9.0", - "x": 10.1667, - "y": 26.2818 - }, - { - "l": "9.0", - "x": 10.25, - "y": 26.4948 - }, - { - "l": "9.0", - "x": 10.3333, - "y": 26.7067 - }, - { - "l": "9.0", - "x": 10.4167, - "y": 26.9207 - }, - { - "l": "9.0", - "x": 10.5, - "y": 27.1352 - }, - { - "l": "9.0", - "x": 10.5833, - "y": 27.3518 - }, - { - "l": "9.0", - "x": 10.6667, - "y": 27.5705 - }, - { - "l": "9.0", - "x": 10.75, - "y": 27.792 - }, - { - "l": "9.0", - "x": 10.8333, - "y": 28.0144 - }, - { - "l": "9.0", - "x": 10.9167, - "y": 28.2402 - }, - { - "l": "9.0", - "x": 11.0, - "y": 28.4712 - }, - { - "l": "9.0", - "x": 11.0833, - "y": 28.7063 - }, - { - "l": "9.0", - "x": 11.1667, - "y": 28.9461 - }, - { - "l": "9.0", - "x": 11.25, - "y": 29.1928 - }, - { - "l": "9.0", - "x": 11.3333, - "y": 29.4466 - }, - { - "l": "9.0", - "x": 11.4167, - "y": 29.7051 - }, - { - "l": "9.0", - "x": 11.5, - "y": 29.9735 - }, - { - "l": "9.0", - "x": 11.5833, - "y": 30.2498 - }, - { - "l": "9.0", - "x": 11.6667, - "y": 30.5334 - }, - { - "l": "9.0", - "x": 11.75, - "y": 30.8264 - }, - { - "l": "9.0", - "x": 11.8333, - "y": 31.1274 - }, - { - "l": "9.0", - "x": 11.9167, - "y": 31.438 - }, - { - "l": "9.0", - "x": 12.0, - "y": 31.7569 - }, - { - "l": "9.0", - "x": 12.0833, - "y": 32.0857 - }, - { - "l": "9.0", - "x": 12.1667, - "y": 32.4232 - }, - { - "l": "9.0", - "x": 12.25, - "y": 32.7698 - }, - { - "l": "9.0", - "x": 12.3333, - "y": 33.1249 - }, - { - "l": "9.0", - "x": 12.4167, - "y": 33.4881 - }, - { - "l": "9.0", - "x": 12.5, - "y": 33.8583 - }, - { - "l": "9.0", - "x": 12.5833, - "y": 34.2346 - }, - { - "l": "9.0", - "x": 12.6667, - "y": 34.6149 - }, - { - "l": "9.0", - "x": 12.75, - "y": 35.0014 - }, - { - "l": "9.0", - "x": 12.8333, - "y": 35.3902 - }, - { - "l": "9.0", - "x": 12.9167, - "y": 35.7813 - }, - { - "l": "9.0", - "x": 13.0, - "y": 36.1737 - }, - { - "l": "9.0", - "x": 13.0833, - "y": 36.568 - }, - { - "l": "9.0", - "x": 13.1667, - "y": 36.9591 - }, - { - "l": "9.0", - "x": 13.25, - "y": 37.349 - }, - { - "l": "9.0", - "x": 13.3333, - "y": 37.7324 - }, - { - "l": "9.0", - "x": 13.4167, - "y": 38.1127 - }, - { - "l": "9.0", - "x": 13.5, - "y": 38.4878 - }, - { - "l": "9.0", - "x": 13.5833, - "y": 38.8606 - }, - { - "l": "9.0", - "x": 13.6667, - "y": 39.2243 - }, - { - "l": "9.0", - "x": 13.75, - "y": 39.5832 - }, - { - "l": "9.0", - "x": 13.8333, - "y": 39.9384 - }, - { - "l": "9.0", - "x": 13.9167, - "y": 40.2834 - }, - { - "l": "9.0", - "x": 14.0, - "y": 40.625 - }, - { - "l": "9.0", - "x": 14.0833, - "y": 40.9558 - }, - { - "l": "9.0", - "x": 14.1667, - "y": 41.2847 - }, - { - "l": "9.0", - "x": 14.25, - "y": 41.6002 - }, - { - "l": "9.0", - "x": 14.3333, - "y": 41.907 - }, - { - "l": "9.0", - "x": 14.4167, - "y": 42.2068 - }, - { - "l": "9.0", - "x": 14.5, - "y": 42.495 - }, - { - "l": "9.0", - "x": 14.5833, - "y": 42.7756 - }, - { - "l": "9.0", - "x": 14.6667, - "y": 43.0473 - }, - { - "l": "9.0", - "x": 14.75, - "y": 43.3073 - }, - { - "l": "9.0", - "x": 14.8333, - "y": 43.5582 - }, - { - "l": "9.0", - "x": 14.9167, - "y": 43.7991 - }, - { - "l": "9.0", - "x": 15.0, - "y": 44.029 - }, - { - "l": "9.0", - "x": 15.0833, - "y": 44.2511 - }, - { - "l": "9.0", - "x": 15.1667, - "y": 44.465 - }, - { - "l": "9.0", - "x": 15.25, - "y": 44.67 - }, - { - "l": "9.0", - "x": 15.3333, - "y": 44.8671 - }, - { - "l": "9.0", - "x": 15.4167, - "y": 45.0564 - }, - { - "l": "9.0", - "x": 15.5, - "y": 45.2375 - }, - { - "l": "9.0", - "x": 15.5833, - "y": 45.4123 - }, - { - "l": "9.0", - "x": 15.6667, - "y": 45.5787 - }, - { - "l": "9.0", - "x": 15.75, - "y": 45.7393 - }, - { - "l": "9.0", - "x": 15.8333, - "y": 45.892 - }, - { - "l": "9.0", - "x": 15.9167, - "y": 46.0397 - }, - { - "l": "9.0", - "x": 16.0, - "y": 46.1803 - }, - { - "l": "9.0", - "x": 16.0833, - "y": 46.3155 - }, - { - "l": "9.0", - "x": 16.1667, - "y": 46.4436 - }, - { - "l": "9.0", - "x": 16.25, - "y": 46.5663 - }, - { - "l": "9.0", - "x": 16.3333, - "y": 46.6832 - }, - { - "l": "9.0", - "x": 16.4167, - "y": 46.7945 - }, - { - "l": "9.0", - "x": 16.5, - "y": 46.8998 - }, - { - "l": "9.0", - "x": 16.5833, - "y": 47.0 - }, - { - "l": "9.0", - "x": 16.6667, - "y": 47.095 - }, - { - "l": "9.0", - "x": 16.75, - "y": 47.1859 - }, - { - "l": "9.0", - "x": 16.8333, - "y": 47.2718 - }, - { - "l": "9.0", - "x": 16.9167, - "y": 47.353 - }, - { - "l": "9.0", - "x": 17.0, - "y": 47.4295 - }, - { - "l": "9.0", - "x": 17.0833, - "y": 47.5031 - }, - { - "l": "9.0", - "x": 17.1667, - "y": 47.5721 - }, - { - "l": "9.0", - "x": 17.25, - "y": 47.6372 - }, - { - "l": "9.0", - "x": 17.3333, - "y": 47.6997 - }, - { - "l": "9.0", - "x": 17.4167, - "y": 47.7584 - }, - { - "l": "9.0", - "x": 17.5, - "y": 47.8143 - }, - { - "l": "9.0", - "x": 17.5833, - "y": 47.8678 - }, - { - "l": "9.0", - "x": 17.6667, - "y": 47.9177 - }, - { - "l": "9.0", - "x": 17.75, - "y": 47.9638 - }, - { - "l": "9.0", - "x": 17.8333, - "y": 48.0097 - }, - { - "l": "9.0", - "x": 17.9167, - "y": 48.0517 - }, - { - "l": "9.0", - "x": 18.0, - "y": 48.0917 - }, - { - "l": "9.0", - "x": 18.0833, - "y": 48.1301 - }, - { - "l": "9.0", - "x": 18.1667, - "y": 48.1657 - }, - { - "l": "9.0", - "x": 18.25, - "y": 48.2001 - }, - { - "l": "9.0", - "x": 18.3333, - "y": 48.2334 - }, - { - "l": "9.0", - "x": 18.4167, - "y": 48.2646 - }, - { - "l": "9.0", - "x": 18.5, - "y": 48.2932 - }, - { - "l": "9.0", - "x": 18.5833, - "y": 48.3218 - }, - { - "l": "9.0", - "x": 18.6667, - "y": 48.349 - }, - { - "l": "9.0", - "x": 18.75, - "y": 48.3749 - }, - { - "l": "9.0", - "x": 18.8333, - "y": 48.3984 - }, - { - "l": "9.0", - "x": 18.9167, - "y": 48.4211 - }, - { - "l": "9.0", - "x": 19.0, - "y": 48.4423 - }, - { - "l": "9.0", - "x": 19.0833, - "y": 48.4634 - }, - { - "l": "9.0", - "x": 19.1667, - "y": 48.4825 - }, - { - "l": "9.0", - "x": 19.25, - "y": 48.5006 - }, - { - "l": "9.0", - "x": 19.3333, - "y": 48.517 - }, - { - "l": "9.0", - "x": 19.4167, - "y": 48.5319 - }, - { - "l": "9.0", - "x": 19.5, - "y": 48.5468 - }, - { - "l": "9.0", - "x": 19.5833, - "y": 48.5602 - }, - { - "l": "9.0", - "x": 19.6667, - "y": 48.5726 - }, - { - "l": "9.0", - "x": 19.75, - "y": 48.5841 - }, - { - "l": "9.0", - "x": 19.8333, - "y": 48.5949 - }, - { - "l": "9.0", - "x": 19.9167, - "y": 48.6041 - }, - { - "l": "9.0", - "x": 20.0, - "y": 48.6141 - }, - { - "l": "9.0", - "x": 20.0, - "y": 48.6141 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 4.0, - "y": 14.9346 - }, - { - "l": "25.0", - "x": 4.0833, - "y": 15.083 - }, - { - "l": "25.0", - "x": 4.1667, - "y": 15.2329 - }, - { - "l": "25.0", - "x": 4.25, - "y": 15.3828 - }, - { - "l": "25.0", - "x": 4.3333, - "y": 15.5344 - }, - { - "l": "25.0", - "x": 4.4167, - "y": 15.6873 - }, - { - "l": "25.0", - "x": 4.5, - "y": 15.8412 - }, - { - "l": "25.0", - "x": 4.5833, - "y": 15.9967 - }, - { - "l": "25.0", - "x": 4.6667, - "y": 16.1528 - }, - { - "l": "25.0", - "x": 4.75, - "y": 16.3098 - }, - { - "l": "25.0", - "x": 4.8333, - "y": 16.4667 - }, - { - "l": "25.0", - "x": 4.9167, - "y": 16.624 - }, - { - "l": "25.0", - "x": 5.0, - "y": 16.7807 - }, - { - "l": "25.0", - "x": 5.0833, - "y": 16.9382 - }, - { - "l": "25.0", - "x": 5.1667, - "y": 17.0944 - }, - { - "l": "25.0", - "x": 5.25, - "y": 17.2504 - }, - { - "l": "25.0", - "x": 5.3333, - "y": 17.4076 - }, - { - "l": "25.0", - "x": 5.4167, - "y": 17.5641 - }, - { - "l": "25.0", - "x": 5.5, - "y": 17.7211 - }, - { - "l": "25.0", - "x": 5.5833, - "y": 17.8789 - }, - { - "l": "25.0", - "x": 5.6667, - "y": 18.0376 - }, - { - "l": "25.0", - "x": 5.75, - "y": 18.1982 - }, - { - "l": "25.0", - "x": 5.8333, - "y": 18.3592 - }, - { - "l": "25.0", - "x": 5.9167, - "y": 18.5218 - }, - { - "l": "25.0", - "x": 6.0, - "y": 18.6859 - }, - { - "l": "25.0", - "x": 6.0833, - "y": 18.8523 - }, - { - "l": "25.0", - "x": 6.1667, - "y": 19.0199 - }, - { - "l": "25.0", - "x": 6.25, - "y": 19.1888 - }, - { - "l": "25.0", - "x": 6.3333, - "y": 19.3591 - }, - { - "l": "25.0", - "x": 6.4167, - "y": 19.5324 - }, - { - "l": "25.0", - "x": 6.5, - "y": 19.7084 - }, - { - "l": "25.0", - "x": 6.5833, - "y": 19.8872 - }, - { - "l": "25.0", - "x": 6.6667, - "y": 20.0698 - }, - { - "l": "25.0", - "x": 6.75, - "y": 20.2557 - }, - { - "l": "25.0", - "x": 6.8333, - "y": 20.4462 - }, - { - "l": "25.0", - "x": 6.9167, - "y": 20.6401 - }, - { - "l": "25.0", - "x": 7.0, - "y": 20.8384 - }, - { - "l": "25.0", - "x": 7.0833, - "y": 21.0392 - }, - { - "l": "25.0", - "x": 7.1667, - "y": 21.2428 - }, - { - "l": "25.0", - "x": 7.25, - "y": 21.4479 - }, - { - "l": "25.0", - "x": 7.3333, - "y": 21.6553 - }, - { - "l": "25.0", - "x": 7.4167, - "y": 21.8629 - }, - { - "l": "25.0", - "x": 7.5, - "y": 22.0712 - }, - { - "l": "25.0", - "x": 7.5833, - "y": 22.2796 - }, - { - "l": "25.0", - "x": 7.6667, - "y": 22.4887 - }, - { - "l": "25.0", - "x": 7.75, - "y": 22.6992 - }, - { - "l": "25.0", - "x": 7.8333, - "y": 22.9087 - }, - { - "l": "25.0", - "x": 7.9167, - "y": 23.1183 - }, - { - "l": "25.0", - "x": 8.0, - "y": 23.3284 - }, - { - "l": "25.0", - "x": 8.0833, - "y": 23.5371 - }, - { - "l": "25.0", - "x": 8.1667, - "y": 23.7459 - }, - { - "l": "25.0", - "x": 8.25, - "y": 23.9541 - }, - { - "l": "25.0", - "x": 8.3333, - "y": 24.1621 - }, - { - "l": "25.0", - "x": 8.4167, - "y": 24.3705 - }, - { - "l": "25.0", - "x": 8.5, - "y": 24.5787 - }, - { - "l": "25.0", - "x": 8.5833, - "y": 24.7879 - }, - { - "l": "25.0", - "x": 8.6667, - "y": 24.9995 - }, - { - "l": "25.0", - "x": 8.75, - "y": 25.2127 - }, - { - "l": "25.0", - "x": 8.8333, - "y": 25.4298 - }, - { - "l": "25.0", - "x": 8.9167, - "y": 25.6499 - }, - { - "l": "25.0", - "x": 9.0, - "y": 25.8741 - }, - { - "l": "25.0", - "x": 9.0833, - "y": 26.1017 - }, - { - "l": "25.0", - "x": 9.1667, - "y": 26.3329 - }, - { - "l": "25.0", - "x": 9.25, - "y": 26.5678 - }, - { - "l": "25.0", - "x": 9.3333, - "y": 26.8054 - }, - { - "l": "25.0", - "x": 9.4167, - "y": 27.0452 - }, - { - "l": "25.0", - "x": 9.5, - "y": 27.2872 - }, - { - "l": "25.0", - "x": 9.5833, - "y": 27.5314 - }, - { - "l": "25.0", - "x": 9.6667, - "y": 27.7776 - }, - { - "l": "25.0", - "x": 9.75, - "y": 28.0249 - }, - { - "l": "25.0", - "x": 9.8333, - "y": 28.2738 - }, - { - "l": "25.0", - "x": 9.9167, - "y": 28.5242 - }, - { - "l": "25.0", - "x": 10.0, - "y": 28.7749 - }, - { - "l": "25.0", - "x": 10.0833, - "y": 29.026 - }, - { - "l": "25.0", - "x": 10.1667, - "y": 29.2779 - }, - { - "l": "25.0", - "x": 10.25, - "y": 29.532 - }, - { - "l": "25.0", - "x": 10.3333, - "y": 29.785 - }, - { - "l": "25.0", - "x": 10.4167, - "y": 30.0412 - }, - { - "l": "25.0", - "x": 10.5, - "y": 30.2985 - }, - { - "l": "25.0", - "x": 10.5833, - "y": 30.558 - }, - { - "l": "25.0", - "x": 10.6667, - "y": 30.8198 - }, - { - "l": "25.0", - "x": 10.75, - "y": 31.0852 - }, - { - "l": "25.0", - "x": 10.8333, - "y": 31.3512 - }, - { - "l": "25.0", - "x": 10.9167, - "y": 31.6211 - }, - { - "l": "25.0", - "x": 11.0, - "y": 31.8962 - }, - { - "l": "25.0", - "x": 11.0833, - "y": 32.1751 - }, - { - "l": "25.0", - "x": 11.1667, - "y": 32.4592 - }, - { - "l": "25.0", - "x": 11.25, - "y": 32.7494 - }, - { - "l": "25.0", - "x": 11.3333, - "y": 33.0468 - }, - { - "l": "25.0", - "x": 11.4167, - "y": 33.3481 - }, - { - "l": "25.0", - "x": 11.5, - "y": 33.6586 - }, - { - "l": "25.0", - "x": 11.5833, - "y": 33.9759 - }, - { - "l": "25.0", - "x": 11.6667, - "y": 34.3002 - }, - { - "l": "25.0", - "x": 11.75, - "y": 34.6322 - }, - { - "l": "25.0", - "x": 11.8333, - "y": 34.9718 - }, - { - "l": "25.0", - "x": 11.9167, - "y": 35.3196 - }, - { - "l": "25.0", - "x": 12.0, - "y": 35.6752 - }, - { - "l": "25.0", - "x": 12.0833, - "y": 36.0393 - }, - { - "l": "25.0", - "x": 12.1667, - "y": 36.4111 - }, - { - "l": "25.0", - "x": 12.25, - "y": 36.7906 - }, - { - "l": "25.0", - "x": 12.3333, - "y": 37.1778 - }, - { - "l": "25.0", - "x": 12.4167, - "y": 37.5714 - }, - { - "l": "25.0", - "x": 12.5, - "y": 37.9707 - }, - { - "l": "25.0", - "x": 12.5833, - "y": 38.3747 - }, - { - "l": "25.0", - "x": 12.6667, - "y": 38.7818 - }, - { - "l": "25.0", - "x": 12.75, - "y": 39.1929 - }, - { - "l": "25.0", - "x": 12.8333, - "y": 39.6058 - }, - { - "l": "25.0", - "x": 12.9167, - "y": 40.0191 - }, - { - "l": "25.0", - "x": 13.0, - "y": 40.4331 - }, - { - "l": "25.0", - "x": 13.0833, - "y": 40.8471 - }, - { - "l": "25.0", - "x": 13.1667, - "y": 41.2576 - }, - { - "l": "25.0", - "x": 13.25, - "y": 41.6649 - }, - { - "l": "25.0", - "x": 13.3333, - "y": 42.0644 - }, - { - "l": "25.0", - "x": 13.4167, - "y": 42.4589 - }, - { - "l": "25.0", - "x": 13.5, - "y": 42.8468 - }, - { - "l": "25.0", - "x": 13.5833, - "y": 43.2304 - }, - { - "l": "25.0", - "x": 13.6667, - "y": 43.6038 - }, - { - "l": "25.0", - "x": 13.75, - "y": 43.9699 - }, - { - "l": "25.0", - "x": 13.8333, - "y": 44.3304 - }, - { - "l": "25.0", - "x": 13.9167, - "y": 44.6796 - }, - { - "l": "25.0", - "x": 14.0, - "y": 45.0232 - }, - { - "l": "25.0", - "x": 14.0833, - "y": 45.3559 - }, - { - "l": "25.0", - "x": 14.1667, - "y": 45.6845 - }, - { - "l": "25.0", - "x": 14.25, - "y": 45.9991 - }, - { - "l": "25.0", - "x": 14.3333, - "y": 46.3045 - }, - { - "l": "25.0", - "x": 14.4167, - "y": 46.602 - }, - { - "l": "25.0", - "x": 14.5, - "y": 46.8875 - }, - { - "l": "25.0", - "x": 14.5833, - "y": 47.1646 - }, - { - "l": "25.0", - "x": 14.6667, - "y": 47.433 - }, - { - "l": "25.0", - "x": 14.75, - "y": 47.6894 - }, - { - "l": "25.0", - "x": 14.8333, - "y": 47.9367 - }, - { - "l": "25.0", - "x": 14.9167, - "y": 48.1743 - }, - { - "l": "25.0", - "x": 15.0, - "y": 48.4011 - }, - { - "l": "25.0", - "x": 15.0833, - "y": 48.6207 - }, - { - "l": "25.0", - "x": 15.1667, - "y": 48.8316 - }, - { - "l": "25.0", - "x": 15.25, - "y": 49.0346 - }, - { - "l": "25.0", - "x": 15.3333, - "y": 49.2295 - }, - { - "l": "25.0", - "x": 15.4167, - "y": 49.4175 - }, - { - "l": "25.0", - "x": 15.5, - "y": 49.5979 - }, - { - "l": "25.0", - "x": 15.5833, - "y": 49.772 - }, - { - "l": "25.0", - "x": 15.6667, - "y": 49.9387 - }, - { - "l": "25.0", - "x": 15.75, - "y": 50.0991 - }, - { - "l": "25.0", - "x": 15.8333, - "y": 50.2523 - }, - { - "l": "25.0", - "x": 15.9167, - "y": 50.4006 - }, - { - "l": "25.0", - "x": 16.0, - "y": 50.5419 - }, - { - "l": "25.0", - "x": 16.0833, - "y": 50.6779 - }, - { - "l": "25.0", - "x": 16.1667, - "y": 50.8072 - }, - { - "l": "25.0", - "x": 16.25, - "y": 50.9312 - }, - { - "l": "25.0", - "x": 16.3333, - "y": 51.0492 - }, - { - "l": "25.0", - "x": 16.4167, - "y": 51.1616 - }, - { - "l": "25.0", - "x": 16.5, - "y": 51.2687 - }, - { - "l": "25.0", - "x": 16.5833, - "y": 51.3704 - }, - { - "l": "25.0", - "x": 16.6667, - "y": 51.4667 - }, - { - "l": "25.0", - "x": 16.75, - "y": 51.5591 - }, - { - "l": "25.0", - "x": 16.8333, - "y": 51.6464 - }, - { - "l": "25.0", - "x": 16.9167, - "y": 51.7291 - }, - { - "l": "25.0", - "x": 17.0, - "y": 51.8074 - }, - { - "l": "25.0", - "x": 17.0833, - "y": 51.8826 - }, - { - "l": "25.0", - "x": 17.1667, - "y": 51.9528 - }, - { - "l": "25.0", - "x": 17.25, - "y": 52.0198 - }, - { - "l": "25.0", - "x": 17.3333, - "y": 52.0832 - }, - { - "l": "25.0", - "x": 17.4167, - "y": 52.1434 - }, - { - "l": "25.0", - "x": 17.5, - "y": 52.2005 - }, - { - "l": "25.0", - "x": 17.5833, - "y": 52.2553 - }, - { - "l": "25.0", - "x": 17.6667, - "y": 52.3062 - }, - { - "l": "25.0", - "x": 17.75, - "y": 52.3539 - }, - { - "l": "25.0", - "x": 17.8333, - "y": 52.4006 - }, - { - "l": "25.0", - "x": 17.9167, - "y": 52.4439 - }, - { - "l": "25.0", - "x": 18.0, - "y": 52.485 - }, - { - "l": "25.0", - "x": 18.0833, - "y": 52.5243 - }, - { - "l": "25.0", - "x": 18.1667, - "y": 52.5611 - }, - { - "l": "25.0", - "x": 18.25, - "y": 52.5961 - }, - { - "l": "25.0", - "x": 18.3333, - "y": 52.6301 - }, - { - "l": "25.0", - "x": 18.4167, - "y": 52.6621 - }, - { - "l": "25.0", - "x": 18.5, - "y": 52.6918 - }, - { - "l": "25.0", - "x": 18.5833, - "y": 52.7209 - }, - { - "l": "25.0", - "x": 18.6667, - "y": 52.7491 - }, - { - "l": "25.0", - "x": 18.75, - "y": 52.7752 - }, - { - "l": "25.0", - "x": 18.8333, - "y": 52.7997 - }, - { - "l": "25.0", - "x": 18.9167, - "y": 52.823 - }, - { - "l": "25.0", - "x": 19.0, - "y": 52.8448 - }, - { - "l": "25.0", - "x": 19.0833, - "y": 52.8661 - }, - { - "l": "25.0", - "x": 19.1667, - "y": 52.8858 - }, - { - "l": "25.0", - "x": 19.25, - "y": 52.9043 - }, - { - "l": "25.0", - "x": 19.3333, - "y": 52.9216 - }, - { - "l": "25.0", - "x": 19.4167, - "y": 52.9369 - }, - { - "l": "25.0", - "x": 19.5, - "y": 52.952 - }, - { - "l": "25.0", - "x": 19.5833, - "y": 52.9657 - }, - { - "l": "25.0", - "x": 19.6667, - "y": 52.9784 - }, - { - "l": "25.0", - "x": 19.75, - "y": 52.9903 - }, - { - "l": "25.0", - "x": 19.8333, - "y": 53.0011 - }, - { - "l": "25.0", - "x": 19.9167, - "y": 53.0109 - }, - { - "l": "25.0", - "x": 20.0, - "y": 53.0209 - }, - { - "l": "25.0", - "x": 20.0, - "y": 53.0209 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 4.0, - "y": 16.198 - }, - { - "l": "50.0", - "x": 4.0833, - "y": 16.3661 - }, - { - "l": "50.0", - "x": 4.1667, - "y": 16.5359 - }, - { - "l": "50.0", - "x": 4.25, - "y": 16.706 - }, - { - "l": "50.0", - "x": 4.3333, - "y": 16.8781 - }, - { - "l": "50.0", - "x": 4.4167, - "y": 17.0519 - }, - { - "l": "50.0", - "x": 4.5, - "y": 17.227 - }, - { - "l": "50.0", - "x": 4.5833, - "y": 17.4041 - }, - { - "l": "50.0", - "x": 4.6667, - "y": 17.5819 - }, - { - "l": "50.0", - "x": 4.75, - "y": 17.761 - }, - { - "l": "50.0", - "x": 4.8333, - "y": 17.9401 - }, - { - "l": "50.0", - "x": 4.9167, - "y": 18.1198 - }, - { - "l": "50.0", - "x": 5.0, - "y": 18.299 - }, - { - "l": "50.0", - "x": 5.0833, - "y": 18.4791 - }, - { - "l": "50.0", - "x": 5.1667, - "y": 18.6581 - }, - { - "l": "50.0", - "x": 5.25, - "y": 18.837 - }, - { - "l": "50.0", - "x": 5.3333, - "y": 19.017 - }, - { - "l": "50.0", - "x": 5.4167, - "y": 19.1967 - }, - { - "l": "50.0", - "x": 5.5, - "y": 19.377 - }, - { - "l": "50.0", - "x": 5.5833, - "y": 19.5581 - }, - { - "l": "50.0", - "x": 5.6667, - "y": 19.7404 - }, - { - "l": "50.0", - "x": 5.75, - "y": 19.925 - }, - { - "l": "50.0", - "x": 5.8333, - "y": 20.11 - }, - { - "l": "50.0", - "x": 5.9167, - "y": 20.2972 - }, - { - "l": "50.0", - "x": 6.0, - "y": 20.486 - }, - { - "l": "50.0", - "x": 6.0833, - "y": 20.6778 - }, - { - "l": "50.0", - "x": 6.1667, - "y": 20.871 - }, - { - "l": "50.0", - "x": 6.25, - "y": 21.066 - }, - { - "l": "50.0", - "x": 6.3333, - "y": 21.2629 - }, - { - "l": "50.0", - "x": 6.4167, - "y": 21.4633 - }, - { - "l": "50.0", - "x": 6.5, - "y": 21.667 - }, - { - "l": "50.0", - "x": 6.5833, - "y": 21.8742 - }, - { - "l": "50.0", - "x": 6.6667, - "y": 22.086 - }, - { - "l": "50.0", - "x": 6.75, - "y": 22.302 - }, - { - "l": "50.0", - "x": 6.8333, - "y": 22.5234 - }, - { - "l": "50.0", - "x": 6.9167, - "y": 22.749 - }, - { - "l": "50.0", - "x": 7.0, - "y": 22.98 - }, - { - "l": "50.0", - "x": 7.0833, - "y": 23.2141 - }, - { - "l": "50.0", - "x": 7.1667, - "y": 23.4517 - }, - { - "l": "50.0", - "x": 7.25, - "y": 23.691 - }, - { - "l": "50.0", - "x": 7.3333, - "y": 23.933 - }, - { - "l": "50.0", - "x": 7.4167, - "y": 24.1756 - }, - { - "l": "50.0", - "x": 7.5, - "y": 24.419 - }, - { - "l": "50.0", - "x": 7.5833, - "y": 24.6625 - }, - { - "l": "50.0", - "x": 7.6667, - "y": 24.907 - }, - { - "l": "50.0", - "x": 7.75, - "y": 25.153 - }, - { - "l": "50.0", - "x": 7.8333, - "y": 25.398 - }, - { - "l": "50.0", - "x": 7.9167, - "y": 25.6434 - }, - { - "l": "50.0", - "x": 8.0, - "y": 25.889 - }, - { - "l": "50.0", - "x": 8.0833, - "y": 26.1335 - }, - { - "l": "50.0", - "x": 8.1667, - "y": 26.378 - }, - { - "l": "50.0", - "x": 8.25, - "y": 26.622 - }, - { - "l": "50.0", - "x": 8.3333, - "y": 26.8659 - }, - { - "l": "50.0", - "x": 8.4167, - "y": 27.1105 - }, - { - "l": "50.0", - "x": 8.5, - "y": 27.355 - }, - { - "l": "50.0", - "x": 8.5833, - "y": 27.6011 - }, - { - "l": "50.0", - "x": 8.6667, - "y": 27.85 - }, - { - "l": "50.0", - "x": 8.75, - "y": 28.101 - }, - { - "l": "50.0", - "x": 8.8333, - "y": 28.3567 - }, - { - "l": "50.0", - "x": 8.9167, - "y": 28.6159 - }, - { - "l": "50.0", - "x": 9.0, - "y": 28.88 - }, - { - "l": "50.0", - "x": 9.0833, - "y": 29.1481 - }, - { - "l": "50.0", - "x": 9.1667, - "y": 29.4203 - }, - { - "l": "50.0", - "x": 9.25, - "y": 29.697 - }, - { - "l": "50.0", - "x": 9.3333, - "y": 29.9771 - }, - { - "l": "50.0", - "x": 9.4167, - "y": 30.2597 - }, - { - "l": "50.0", - "x": 9.5, - "y": 30.545 - }, - { - "l": "50.0", - "x": 9.5833, - "y": 30.8335 - }, - { - "l": "50.0", - "x": 9.6667, - "y": 31.1243 - }, - { - "l": "50.0", - "x": 9.75, - "y": 31.417 - }, - { - "l": "50.0", - "x": 9.8333, - "y": 31.7122 - }, - { - "l": "50.0", - "x": 9.9167, - "y": 32.0096 - }, - { - "l": "50.0", - "x": 10.0, - "y": 32.308 - }, - { - "l": "50.0", - "x": 10.0833, - "y": 32.6075 - }, - { - "l": "50.0", - "x": 10.1667, - "y": 32.9083 - }, - { - "l": "50.0", - "x": 10.25, - "y": 33.212 - }, - { - "l": "50.0", - "x": 10.3333, - "y": 33.5147 - }, - { - "l": "50.0", - "x": 10.4167, - "y": 33.8213 - }, - { - "l": "50.0", - "x": 10.5, - "y": 34.129 - }, - { - "l": "50.0", - "x": 10.5833, - "y": 34.4393 - }, - { - "l": "50.0", - "x": 10.6667, - "y": 34.7518 - }, - { - "l": "50.0", - "x": 10.75, - "y": 35.068 - }, - { - "l": "50.0", - "x": 10.8333, - "y": 35.3845 - }, - { - "l": "50.0", - "x": 10.9167, - "y": 35.7048 - }, - { - "l": "50.0", - "x": 11.0, - "y": 36.03 - }, - { - "l": "50.0", - "x": 11.0833, - "y": 36.3582 - }, - { - "l": "50.0", - "x": 11.1667, - "y": 36.6911 - }, - { - "l": "50.0", - "x": 11.25, - "y": 37.029 - }, - { - "l": "50.0", - "x": 11.3333, - "y": 37.3731 - }, - { - "l": "50.0", - "x": 11.4167, - "y": 37.7197 - }, - { - "l": "50.0", - "x": 11.5, - "y": 38.074 - }, - { - "l": "50.0", - "x": 11.5833, - "y": 38.4331 - }, - { - "l": "50.0", - "x": 11.6667, - "y": 38.7977 - }, - { - "l": "50.0", - "x": 11.75, - "y": 39.168 - }, - { - "l": "50.0", - "x": 11.8333, - "y": 39.5443 - }, - { - "l": "50.0", - "x": 11.9167, - "y": 39.9272 - }, - { - "l": "50.0", - "x": 12.0, - "y": 40.316 - }, - { - "l": "50.0", - "x": 12.0833, - "y": 40.7118 - }, - { - "l": "50.0", - "x": 12.1667, - "y": 41.1136 - }, - { - "l": "50.0", - "x": 12.25, - "y": 41.5218 - }, - { - "l": "50.0", - "x": 12.3333, - "y": 41.9359 - }, - { - "l": "50.0", - "x": 12.4167, - "y": 42.3549 - }, - { - "l": "50.0", - "x": 12.5, - "y": 42.7779 - }, - { - "l": "50.0", - "x": 12.5833, - "y": 43.2045 - }, - { - "l": "50.0", - "x": 12.6667, - "y": 43.6328 - }, - { - "l": "50.0", - "x": 12.75, - "y": 44.0635 - }, - { - "l": "50.0", - "x": 12.8333, - "y": 44.4952 - }, - { - "l": "50.0", - "x": 12.9167, - "y": 44.9259 - }, - { - "l": "50.0", - "x": 13.0, - "y": 45.3568 - }, - { - "l": "50.0", - "x": 13.0833, - "y": 45.7863 - }, - { - "l": "50.0", - "x": 13.1667, - "y": 46.2121 - }, - { - "l": "50.0", - "x": 13.25, - "y": 46.6333 - }, - { - "l": "50.0", - "x": 13.3333, - "y": 47.0457 - }, - { - "l": "50.0", - "x": 13.4167, - "y": 47.4516 - }, - { - "l": "50.0", - "x": 13.5, - "y": 47.8494 - }, - { - "l": "50.0", - "x": 13.5833, - "y": 48.2413 - }, - { - "l": "50.0", - "x": 13.6667, - "y": 48.6218 - }, - { - "l": "50.0", - "x": 13.75, - "y": 48.993 - }, - { - "l": "50.0", - "x": 13.8333, - "y": 49.3568 - }, - { - "l": "50.0", - "x": 13.9167, - "y": 49.7081 - }, - { - "l": "50.0", - "x": 14.0, - "y": 50.052 - }, - { - "l": "50.0", - "x": 14.0833, - "y": 50.3846 - }, - { - "l": "50.0", - "x": 14.1667, - "y": 50.7117 - }, - { - "l": "50.0", - "x": 14.25, - "y": 51.024 - }, - { - "l": "50.0", - "x": 14.3333, - "y": 51.3267 - }, - { - "l": "50.0", - "x": 14.4167, - "y": 51.621 - }, - { - "l": "50.0", - "x": 14.5, - "y": 51.903 - }, - { - "l": "50.0", - "x": 14.5833, - "y": 52.176 - }, - { - "l": "50.0", - "x": 14.6667, - "y": 52.4404 - }, - { - "l": "50.0", - "x": 14.75, - "y": 52.693 - }, - { - "l": "50.0", - "x": 14.8333, - "y": 52.9367 - }, - { - "l": "50.0", - "x": 14.9167, - "y": 53.1707 - }, - { - "l": "50.0", - "x": 15.0, - "y": 53.3947 - }, - { - "l": "50.0", - "x": 15.0833, - "y": 53.6118 - }, - { - "l": "50.0", - "x": 15.1667, - "y": 53.8203 - }, - { - "l": "50.0", - "x": 15.25, - "y": 54.022 - }, - { - "l": "50.0", - "x": 15.3333, - "y": 54.2157 - }, - { - "l": "50.0", - "x": 15.4167, - "y": 54.4033 - }, - { - "l": "50.0", - "x": 15.5, - "y": 54.5842 - }, - { - "l": "50.0", - "x": 15.5833, - "y": 54.7587 - }, - { - "l": "50.0", - "x": 15.6667, - "y": 54.9271 - }, - { - "l": "50.0", - "x": 15.75, - "y": 55.0889 - }, - { - "l": "50.0", - "x": 15.8333, - "y": 55.244 - }, - { - "l": "50.0", - "x": 15.9167, - "y": 55.3943 - }, - { - "l": "50.0", - "x": 16.0, - "y": 55.538 - }, - { - "l": "50.0", - "x": 16.0833, - "y": 55.6765 - }, - { - "l": "50.0", - "x": 16.1667, - "y": 55.8086 - }, - { - "l": "50.0", - "x": 16.25, - "y": 55.9355 - }, - { - "l": "50.0", - "x": 16.3333, - "y": 56.0561 - }, - { - "l": "50.0", - "x": 16.4167, - "y": 56.1713 - }, - { - "l": "50.0", - "x": 16.5, - "y": 56.2816 - }, - { - "l": "50.0", - "x": 16.5833, - "y": 56.3863 - }, - { - "l": "50.0", - "x": 16.6667, - "y": 56.4854 - }, - { - "l": "50.0", - "x": 16.75, - "y": 56.581 - }, - { - "l": "50.0", - "x": 16.8333, - "y": 56.6713 - }, - { - "l": "50.0", - "x": 16.9167, - "y": 56.7567 - }, - { - "l": "50.0", - "x": 17.0, - "y": 56.838 - }, - { - "l": "50.0", - "x": 17.0833, - "y": 56.9163 - }, - { - "l": "50.0", - "x": 17.1667, - "y": 56.9892 - }, - { - "l": "50.0", - "x": 17.25, - "y": 57.059 - }, - { - "l": "50.0", - "x": 17.3333, - "y": 57.1247 - }, - { - "l": "50.0", - "x": 17.4167, - "y": 57.1875 - }, - { - "l": "50.0", - "x": 17.5, - "y": 57.2469 - }, - { - "l": "50.0", - "x": 17.5833, - "y": 57.3041 - }, - { - "l": "50.0", - "x": 17.6667, - "y": 57.357 - }, - { - "l": "50.0", - "x": 17.75, - "y": 57.407 - }, - { - "l": "50.0", - "x": 17.8333, - "y": 57.4557 - }, - { - "l": "50.0", - "x": 17.9167, - "y": 57.5008 - }, - { - "l": "50.0", - "x": 18.0, - "y": 57.544 - }, - { - "l": "50.0", - "x": 18.0833, - "y": 57.5847 - }, - { - "l": "50.0", - "x": 18.1667, - "y": 57.6235 - }, - { - "l": "50.0", - "x": 18.25, - "y": 57.66 - }, - { - "l": "50.0", - "x": 18.3333, - "y": 57.6953 - }, - { - "l": "50.0", - "x": 18.4167, - "y": 57.7288 - }, - { - "l": "50.0", - "x": 18.5, - "y": 57.76 - }, - { - "l": "50.0", - "x": 18.5833, - "y": 57.7904 - }, - { - "l": "50.0", - "x": 18.6667, - "y": 57.8199 - }, - { - "l": "50.0", - "x": 18.75, - "y": 57.847 - }, - { - "l": "50.0", - "x": 18.8333, - "y": 57.8728 - }, - { - "l": "50.0", - "x": 18.9167, - "y": 57.897 - }, - { - "l": "50.0", - "x": 19.0, - "y": 57.92 - }, - { - "l": "50.0", - "x": 19.0833, - "y": 57.9421 - }, - { - "l": "50.0", - "x": 19.1667, - "y": 57.9627 - }, - { - "l": "50.0", - "x": 19.25, - "y": 57.982 - }, - { - "l": "50.0", - "x": 19.3333, - "y": 58.0002 - }, - { - "l": "50.0", - "x": 19.4167, - "y": 58.0164 - }, - { - "l": "50.0", - "x": 19.5, - "y": 58.032 - }, - { - "l": "50.0", - "x": 19.5833, - "y": 58.0464 - }, - { - "l": "50.0", - "x": 19.6667, - "y": 58.0597 - }, - { - "l": "50.0", - "x": 19.75, - "y": 58.072 - }, - { - "l": "50.0", - "x": 19.8333, - "y": 58.0833 - }, - { - "l": "50.0", - "x": 19.9167, - "y": 58.0936 - }, - { - "l": "50.0", - "x": 20.0, - "y": 58.104 - }, - { - "l": "50.0", - "x": 20.0, - "y": 58.104 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 4.0, - "y": 17.6308 - }, - { - "l": "75.0", - "x": 4.0833, - "y": 17.8232 - }, - { - "l": "75.0", - "x": 4.1667, - "y": 18.0177 - }, - { - "l": "75.0", - "x": 4.25, - "y": 18.2128 - }, - { - "l": "75.0", - "x": 4.3333, - "y": 18.4105 - }, - { - "l": "75.0", - "x": 4.4167, - "y": 18.6105 - }, - { - "l": "75.0", - "x": 4.5, - "y": 18.812 - }, - { - "l": "75.0", - "x": 4.5833, - "y": 19.0161 - }, - { - "l": "75.0", - "x": 4.6667, - "y": 19.2212 - }, - { - "l": "75.0", - "x": 4.75, - "y": 19.4281 - }, - { - "l": "75.0", - "x": 4.8333, - "y": 19.635 - }, - { - "l": "75.0", - "x": 4.9167, - "y": 19.8433 - }, - { - "l": "75.0", - "x": 5.0, - "y": 20.0508 - }, - { - "l": "75.0", - "x": 5.0833, - "y": 20.2596 - }, - { - "l": "75.0", - "x": 5.1667, - "y": 20.4676 - }, - { - "l": "75.0", - "x": 5.25, - "y": 20.6755 - }, - { - "l": "75.0", - "x": 5.3333, - "y": 20.8846 - }, - { - "l": "75.0", - "x": 5.4167, - "y": 21.0939 - }, - { - "l": "75.0", - "x": 5.5, - "y": 21.304 - }, - { - "l": "75.0", - "x": 5.5833, - "y": 21.515 - }, - { - "l": "75.0", - "x": 5.6667, - "y": 21.7276 - }, - { - "l": "75.0", - "x": 5.75, - "y": 21.9429 - }, - { - "l": "75.0", - "x": 5.8333, - "y": 22.1591 - }, - { - "l": "75.0", - "x": 5.9167, - "y": 22.3779 - }, - { - "l": "75.0", - "x": 6.0, - "y": 22.5987 - }, - { - "l": "75.0", - "x": 6.0833, - "y": 22.8232 - }, - { - "l": "75.0", - "x": 6.1667, - "y": 23.0496 - }, - { - "l": "75.0", - "x": 6.25, - "y": 23.2785 - }, - { - "l": "75.0", - "x": 6.3333, - "y": 23.5101 - }, - { - "l": "75.0", - "x": 6.4167, - "y": 23.7457 - }, - { - "l": "75.0", - "x": 6.5, - "y": 23.9856 - }, - { - "l": "75.0", - "x": 6.5833, - "y": 24.2298 - }, - { - "l": "75.0", - "x": 6.6667, - "y": 24.48 - }, - { - "l": "75.0", - "x": 6.75, - "y": 24.7354 - }, - { - "l": "75.0", - "x": 6.8333, - "y": 24.9973 - }, - { - "l": "75.0", - "x": 6.9167, - "y": 25.2645 - }, - { - "l": "75.0", - "x": 7.0, - "y": 25.5386 - }, - { - "l": "75.0", - "x": 7.0833, - "y": 25.8166 - }, - { - "l": "75.0", - "x": 7.1667, - "y": 26.0988 - }, - { - "l": "75.0", - "x": 7.25, - "y": 26.3831 - }, - { - "l": "75.0", - "x": 7.3333, - "y": 26.6708 - }, - { - "l": "75.0", - "x": 7.4167, - "y": 26.9596 - }, - { - "l": "75.0", - "x": 7.5, - "y": 27.2495 - }, - { - "l": "75.0", - "x": 7.5833, - "y": 27.5393 - }, - { - "l": "75.0", - "x": 7.6667, - "y": 27.8304 - }, - { - "l": "75.0", - "x": 7.75, - "y": 28.1234 - }, - { - "l": "75.0", - "x": 7.8333, - "y": 28.4151 - }, - { - "l": "75.0", - "x": 7.9167, - "y": 28.7076 - }, - { - "l": "75.0", - "x": 8.0, - "y": 29.0 - }, - { - "l": "75.0", - "x": 8.0833, - "y": 29.2914 - }, - { - "l": "75.0", - "x": 8.1667, - "y": 29.5831 - }, - { - "l": "75.0", - "x": 8.25, - "y": 29.8738 - }, - { - "l": "75.0", - "x": 8.3333, - "y": 30.1649 - }, - { - "l": "75.0", - "x": 8.4167, - "y": 30.4568 - }, - { - "l": "75.0", - "x": 8.5, - "y": 30.7488 - }, - { - "l": "75.0", - "x": 8.5833, - "y": 31.0432 - }, - { - "l": "75.0", - "x": 8.6667, - "y": 31.3406 - }, - { - "l": "75.0", - "x": 8.75, - "y": 31.6408 - }, - { - "l": "75.0", - "x": 8.8333, - "y": 31.9463 - }, - { - "l": "75.0", - "x": 8.9167, - "y": 32.256 - }, - { - "l": "75.0", - "x": 9.0, - "y": 32.5716 - }, - { - "l": "75.0", - "x": 9.0833, - "y": 32.8915 - }, - { - "l": "75.0", - "x": 9.1667, - "y": 33.2162 - }, - { - "l": "75.0", - "x": 9.25, - "y": 33.5465 - }, - { - "l": "75.0", - "x": 9.3333, - "y": 33.8805 - }, - { - "l": "75.0", - "x": 9.4167, - "y": 34.2174 - }, - { - "l": "75.0", - "x": 9.5, - "y": 34.5576 - }, - { - "l": "75.0", - "x": 9.5833, - "y": 34.9013 - }, - { - "l": "75.0", - "x": 9.6667, - "y": 35.2482 - }, - { - "l": "75.0", - "x": 9.75, - "y": 35.5975 - }, - { - "l": "75.0", - "x": 9.8333, - "y": 35.9499 - }, - { - "l": "75.0", - "x": 9.9167, - "y": 36.3054 - }, - { - "l": "75.0", - "x": 10.0, - "y": 36.6623 - }, - { - "l": "75.0", - "x": 10.0833, - "y": 37.0211 - }, - { - "l": "75.0", - "x": 10.1667, - "y": 37.3814 - }, - { - "l": "75.0", - "x": 10.25, - "y": 37.7452 - }, - { - "l": "75.0", - "x": 10.3333, - "y": 38.108 - }, - { - "l": "75.0", - "x": 10.4167, - "y": 38.4749 - }, - { - "l": "75.0", - "x": 10.5, - "y": 38.8422 - }, - { - "l": "75.0", - "x": 10.5833, - "y": 39.2121 - }, - { - "l": "75.0", - "x": 10.6667, - "y": 39.584 - }, - { - "l": "75.0", - "x": 10.75, - "y": 39.9588 - }, - { - "l": "75.0", - "x": 10.8333, - "y": 40.333 - }, - { - "l": "75.0", - "x": 10.9167, - "y": 40.7099 - }, - { - "l": "75.0", - "x": 11.0, - "y": 41.0907 - }, - { - "l": "75.0", - "x": 11.0833, - "y": 41.4731 - }, - { - "l": "75.0", - "x": 11.1667, - "y": 41.8585 - }, - { - "l": "75.0", - "x": 11.25, - "y": 42.2466 - }, - { - "l": "75.0", - "x": 11.3333, - "y": 42.6383 - }, - { - "l": "75.0", - "x": 11.4167, - "y": 43.0302 - }, - { - "l": "75.0", - "x": 11.5, - "y": 43.427 - }, - { - "l": "75.0", - "x": 11.5833, - "y": 43.8255 - }, - { - "l": "75.0", - "x": 11.6667, - "y": 44.2263 - }, - { - "l": "75.0", - "x": 11.75, - "y": 44.6302 - }, - { - "l": "75.0", - "x": 11.8333, - "y": 45.0368 - }, - { - "l": "75.0", - "x": 11.9167, - "y": 45.4481 - }, - { - "l": "75.0", - "x": 12.0, - "y": 45.8618 - }, - { - "l": "75.0", - "x": 12.0833, - "y": 46.2808 - }, - { - "l": "75.0", - "x": 12.1667, - "y": 46.7032 - }, - { - "l": "75.0", - "x": 12.25, - "y": 47.1308 - }, - { - "l": "75.0", - "x": 12.3333, - "y": 47.5619 - }, - { - "l": "75.0", - "x": 12.4167, - "y": 47.9963 - }, - { - "l": "75.0", - "x": 12.5, - "y": 48.4333 - }, - { - "l": "75.0", - "x": 12.5833, - "y": 48.8731 - }, - { - "l": "75.0", - "x": 12.6667, - "y": 49.3128 - }, - { - "l": "75.0", - "x": 12.75, - "y": 49.7541 - }, - { - "l": "75.0", - "x": 12.8333, - "y": 50.1955 - }, - { - "l": "75.0", - "x": 12.9167, - "y": 50.6358 - }, - { - "l": "75.0", - "x": 13.0, - "y": 51.0756 - }, - { - "l": "75.0", - "x": 13.0833, - "y": 51.5137 - }, - { - "l": "75.0", - "x": 13.1667, - "y": 51.948 - }, - { - "l": "75.0", - "x": 13.25, - "y": 52.3775 - }, - { - "l": "75.0", - "x": 13.3333, - "y": 52.7979 - }, - { - "l": "75.0", - "x": 13.4167, - "y": 53.2106 - }, - { - "l": "75.0", - "x": 13.5, - "y": 53.6143 - }, - { - "l": "75.0", - "x": 13.5833, - "y": 54.0107 - }, - { - "l": "75.0", - "x": 13.6667, - "y": 54.3945 - }, - { - "l": "75.0", - "x": 13.75, - "y": 54.7679 - }, - { - "l": "75.0", - "x": 13.8333, - "y": 55.1323 - }, - { - "l": "75.0", - "x": 13.9167, - "y": 55.483 - }, - { - "l": "75.0", - "x": 14.0, - "y": 55.8255 - }, - { - "l": "75.0", - "x": 14.0833, - "y": 56.1556 - }, - { - "l": "75.0", - "x": 14.1667, - "y": 56.4798 - }, - { - "l": "75.0", - "x": 14.25, - "y": 56.7885 - }, - { - "l": "75.0", - "x": 14.3333, - "y": 57.0871 - }, - { - "l": "75.0", - "x": 14.4167, - "y": 57.3775 - }, - { - "l": "75.0", - "x": 14.5, - "y": 57.6554 - }, - { - "l": "75.0", - "x": 14.5833, - "y": 57.9243 - }, - { - "l": "75.0", - "x": 14.6667, - "y": 58.1843 - }, - { - "l": "75.0", - "x": 14.75, - "y": 58.4335 - }, - { - "l": "75.0", - "x": 14.8333, - "y": 58.6741 - }, - { - "l": "75.0", - "x": 14.9167, - "y": 58.9046 - }, - { - "l": "75.0", - "x": 15.0, - "y": 59.1269 - }, - { - "l": "75.0", - "x": 15.0833, - "y": 59.3422 - }, - { - "l": "75.0", - "x": 15.1667, - "y": 59.5497 - }, - { - "l": "75.0", - "x": 15.25, - "y": 59.7513 - }, - { - "l": "75.0", - "x": 15.3333, - "y": 59.9458 - }, - { - "l": "75.0", - "x": 15.4167, - "y": 60.1348 - }, - { - "l": "75.0", - "x": 15.5, - "y": 60.3184 - }, - { - "l": "75.0", - "x": 15.5833, - "y": 60.4955 - }, - { - "l": "75.0", - "x": 15.6667, - "y": 60.6676 - }, - { - "l": "75.0", - "x": 15.75, - "y": 60.8335 - }, - { - "l": "75.0", - "x": 15.8333, - "y": 60.9929 - }, - { - "l": "75.0", - "x": 15.9167, - "y": 61.1477 - }, - { - "l": "75.0", - "x": 16.0, - "y": 61.2965 - }, - { - "l": "75.0", - "x": 16.0833, - "y": 61.4403 - }, - { - "l": "75.0", - "x": 16.1667, - "y": 61.5776 - }, - { - "l": "75.0", - "x": 16.25, - "y": 61.7099 - }, - { - "l": "75.0", - "x": 16.3333, - "y": 61.8357 - }, - { - "l": "75.0", - "x": 16.4167, - "y": 61.9563 - }, - { - "l": "75.0", - "x": 16.5, - "y": 62.0721 - }, - { - "l": "75.0", - "x": 16.5833, - "y": 62.1821 - }, - { - "l": "75.0", - "x": 16.6667, - "y": 62.2864 - }, - { - "l": "75.0", - "x": 16.75, - "y": 62.3876 - }, - { - "l": "75.0", - "x": 16.8333, - "y": 62.4835 - }, - { - "l": "75.0", - "x": 16.9167, - "y": 62.5736 - }, - { - "l": "75.0", - "x": 17.0, - "y": 62.66 - }, - { - "l": "75.0", - "x": 17.0833, - "y": 62.7436 - }, - { - "l": "75.0", - "x": 17.1667, - "y": 62.8212 - }, - { - "l": "75.0", - "x": 17.25, - "y": 62.8955 - }, - { - "l": "75.0", - "x": 17.3333, - "y": 62.9656 - }, - { - "l": "75.0", - "x": 17.4167, - "y": 63.0326 - }, - { - "l": "75.0", - "x": 17.5, - "y": 63.0959 - }, - { - "l": "75.0", - "x": 17.5833, - "y": 63.1572 - }, - { - "l": "75.0", - "x": 17.6667, - "y": 63.2137 - }, - { - "l": "75.0", - "x": 17.75, - "y": 63.2672 - }, - { - "l": "75.0", - "x": 17.8333, - "y": 63.3196 - }, - { - "l": "75.0", - "x": 17.9167, - "y": 63.3676 - }, - { - "l": "75.0", - "x": 18.0, - "y": 63.4141 - }, - { - "l": "75.0", - "x": 18.0833, - "y": 63.4573 - }, - { - "l": "75.0", - "x": 18.1667, - "y": 63.4993 - }, - { - "l": "75.0", - "x": 18.25, - "y": 63.5384 - }, - { - "l": "75.0", - "x": 18.3333, - "y": 63.5761 - }, - { - "l": "75.0", - "x": 18.4167, - "y": 63.6123 - }, - { - "l": "75.0", - "x": 18.5, - "y": 63.6456 - }, - { - "l": "75.0", - "x": 18.5833, - "y": 63.6784 - }, - { - "l": "75.0", - "x": 18.6667, - "y": 63.7098 - }, - { - "l": "75.0", - "x": 18.75, - "y": 63.7389 - }, - { - "l": "75.0", - "x": 18.8333, - "y": 63.7668 - }, - { - "l": "75.0", - "x": 18.9167, - "y": 63.7924 - }, - { - "l": "75.0", - "x": 19.0, - "y": 63.8171 - }, - { - "l": "75.0", - "x": 19.0833, - "y": 63.8412 - }, - { - "l": "75.0", - "x": 19.1667, - "y": 63.8633 - }, - { - "l": "75.0", - "x": 19.25, - "y": 63.884 - }, - { - "l": "75.0", - "x": 19.3333, - "y": 63.9031 - }, - { - "l": "75.0", - "x": 19.4167, - "y": 63.9208 - }, - { - "l": "75.0", - "x": 19.5, - "y": 63.9374 - }, - { - "l": "75.0", - "x": 19.5833, - "y": 63.9531 - }, - { - "l": "75.0", - "x": 19.6667, - "y": 63.9676 - }, - { - "l": "75.0", - "x": 19.75, - "y": 63.9803 - }, - { - "l": "75.0", - "x": 19.8333, - "y": 63.9926 - }, - { - "l": "75.0", - "x": 19.9167, - "y": 64.0035 - }, - { - "l": "75.0", - "x": 20.0, - "y": 64.0148 - }, - { - "l": "75.0", - "x": 20.0, - "y": 64.0148 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 4.0, - "y": 19.2649 - }, - { - "l": "91.0", - "x": 4.0833, - "y": 19.4877 - }, - { - "l": "91.0", - "x": 4.1667, - "y": 19.7132 - }, - { - "l": "91.0", - "x": 4.25, - "y": 19.9395 - }, - { - "l": "91.0", - "x": 4.3333, - "y": 20.1694 - }, - { - "l": "91.0", - "x": 4.4167, - "y": 20.4023 - }, - { - "l": "91.0", - "x": 4.5, - "y": 20.6374 - }, - { - "l": "91.0", - "x": 4.5833, - "y": 20.8755 - }, - { - "l": "91.0", - "x": 4.6667, - "y": 21.1154 - }, - { - "l": "91.0", - "x": 4.75, - "y": 21.3575 - }, - { - "l": "91.0", - "x": 4.8333, - "y": 21.5999 - }, - { - "l": "91.0", - "x": 4.9167, - "y": 21.8448 - }, - { - "l": "91.0", - "x": 5.0, - "y": 22.0887 - }, - { - "l": "91.0", - "x": 5.0833, - "y": 22.3344 - }, - { - "l": "91.0", - "x": 5.1667, - "y": 22.5798 - }, - { - "l": "91.0", - "x": 5.25, - "y": 22.8249 - }, - { - "l": "91.0", - "x": 5.3333, - "y": 23.0718 - }, - { - "l": "91.0", - "x": 5.4167, - "y": 23.3193 - }, - { - "l": "91.0", - "x": 5.5, - "y": 23.5683 - }, - { - "l": "91.0", - "x": 5.5833, - "y": 23.8182 - }, - { - "l": "91.0", - "x": 5.6667, - "y": 24.0701 - }, - { - "l": "91.0", - "x": 5.75, - "y": 24.3256 - }, - { - "l": "91.0", - "x": 5.8333, - "y": 24.5828 - }, - { - "l": "91.0", - "x": 5.9167, - "y": 24.8432 - }, - { - "l": "91.0", - "x": 6.0, - "y": 25.106 - }, - { - "l": "91.0", - "x": 6.0833, - "y": 25.3733 - }, - { - "l": "91.0", - "x": 6.1667, - "y": 25.6437 - }, - { - "l": "91.0", - "x": 6.25, - "y": 25.9175 - }, - { - "l": "91.0", - "x": 6.3333, - "y": 26.1953 - }, - { - "l": "91.0", - "x": 6.4167, - "y": 26.4775 - }, - { - "l": "91.0", - "x": 6.5, - "y": 26.7657 - }, - { - "l": "91.0", - "x": 6.5833, - "y": 27.0593 - }, - { - "l": "91.0", - "x": 6.6667, - "y": 27.361 - }, - { - "l": "91.0", - "x": 6.75, - "y": 27.6691 - }, - { - "l": "91.0", - "x": 6.8333, - "y": 27.9853 - }, - { - "l": "91.0", - "x": 6.9167, - "y": 28.3086 - }, - { - "l": "91.0", - "x": 7.0, - "y": 28.6406 - }, - { - "l": "91.0", - "x": 7.0833, - "y": 28.978 - }, - { - "l": "91.0", - "x": 7.1667, - "y": 29.3202 - }, - { - "l": "91.0", - "x": 7.25, - "y": 29.6652 - }, - { - "l": "91.0", - "x": 7.3333, - "y": 30.0147 - }, - { - "l": "91.0", - "x": 7.4167, - "y": 30.3661 - }, - { - "l": "91.0", - "x": 7.5, - "y": 30.7192 - }, - { - "l": "91.0", - "x": 7.5833, - "y": 31.0717 - }, - { - "l": "91.0", - "x": 7.6667, - "y": 31.426 - }, - { - "l": "91.0", - "x": 7.75, - "y": 31.7829 - }, - { - "l": "91.0", - "x": 7.8333, - "y": 32.1376 - }, - { - "l": "91.0", - "x": 7.9167, - "y": 32.4938 - }, - { - "l": "91.0", - "x": 8.0, - "y": 32.8497 - }, - { - "l": "91.0", - "x": 8.0833, - "y": 33.2043 - }, - { - "l": "91.0", - "x": 8.1667, - "y": 33.5602 - }, - { - "l": "91.0", - "x": 8.25, - "y": 33.9133 - }, - { - "l": "91.0", - "x": 8.3333, - "y": 34.2683 - }, - { - "l": "91.0", - "x": 8.4167, - "y": 34.6239 - }, - { - "l": "91.0", - "x": 8.5, - "y": 34.9798 - }, - { - "l": "91.0", - "x": 8.5833, - "y": 35.3392 - }, - { - "l": "91.0", - "x": 8.6667, - "y": 35.7012 - }, - { - "l": "91.0", - "x": 8.75, - "y": 36.0675 - }, - { - "l": "91.0", - "x": 8.8333, - "y": 36.4388 - }, - { - "l": "91.0", - "x": 8.9167, - "y": 36.8154 - }, - { - "l": "91.0", - "x": 9.0, - "y": 37.1992 - }, - { - "l": "91.0", - "x": 9.0833, - "y": 37.5871 - }, - { - "l": "91.0", - "x": 9.1667, - "y": 37.9805 - }, - { - "l": "91.0", - "x": 9.25, - "y": 38.3811 - }, - { - "l": "91.0", - "x": 9.3333, - "y": 38.7849 - }, - { - "l": "91.0", - "x": 9.4167, - "y": 39.1921 - }, - { - "l": "91.0", - "x": 9.5, - "y": 39.6035 - }, - { - "l": "91.0", - "x": 9.5833, - "y": 40.017 - }, - { - "l": "91.0", - "x": 9.6667, - "y": 40.4356 - }, - { - "l": "91.0", - "x": 9.75, - "y": 40.8566 - }, - { - "l": "91.0", - "x": 9.8333, - "y": 41.2807 - }, - { - "l": "91.0", - "x": 9.9167, - "y": 41.7089 - }, - { - "l": "91.0", - "x": 10.0, - "y": 42.1382 - }, - { - "l": "91.0", - "x": 10.0833, - "y": 42.5703 - }, - { - "l": "91.0", - "x": 10.1667, - "y": 43.003 - }, - { - "l": "91.0", - "x": 10.25, - "y": 43.4402 - }, - { - "l": "91.0", - "x": 10.3333, - "y": 43.8759 - }, - { - "l": "91.0", - "x": 10.4167, - "y": 44.3148 - }, - { - "l": "91.0", - "x": 10.5, - "y": 44.7518 - }, - { - "l": "91.0", - "x": 10.5833, - "y": 45.1911 - }, - { - "l": "91.0", - "x": 10.6667, - "y": 45.6316 - }, - { - "l": "91.0", - "x": 10.75, - "y": 46.0725 - }, - { - "l": "91.0", - "x": 10.8333, - "y": 46.5112 - }, - { - "l": "91.0", - "x": 10.9167, - "y": 46.9495 - }, - { - "l": "91.0", - "x": 11.0, - "y": 47.39 - }, - { - "l": "91.0", - "x": 11.0833, - "y": 47.8292 - }, - { - "l": "91.0", - "x": 11.1667, - "y": 48.2675 - }, - { - "l": "91.0", - "x": 11.25, - "y": 48.7047 - }, - { - "l": "91.0", - "x": 11.3333, - "y": 49.1404 - }, - { - "l": "91.0", - "x": 11.4167, - "y": 49.5723 - }, - { - "l": "91.0", - "x": 11.5, - "y": 50.0047 - }, - { - "l": "91.0", - "x": 11.5833, - "y": 50.4339 - }, - { - "l": "91.0", - "x": 11.6667, - "y": 50.8593 - }, - { - "l": "91.0", - "x": 11.75, - "y": 51.2851 - }, - { - "l": "91.0", - "x": 11.8333, - "y": 51.7077 - }, - { - "l": "91.0", - "x": 11.9167, - "y": 52.133 - }, - { - "l": "91.0", - "x": 12.0, - "y": 52.5548 - }, - { - "l": "91.0", - "x": 12.0833, - "y": 52.9805 - }, - { - "l": "91.0", - "x": 12.1667, - "y": 53.406 - }, - { - "l": "91.0", - "x": 12.25, - "y": 53.8359 - }, - { - "l": "91.0", - "x": 12.3333, - "y": 54.2661 - }, - { - "l": "91.0", - "x": 12.4167, - "y": 54.6986 - }, - { - "l": "91.0", - "x": 12.5, - "y": 55.1328 - }, - { - "l": "91.0", - "x": 12.5833, - "y": 55.5699 - }, - { - "l": "91.0", - "x": 12.6667, - "y": 56.0045 - }, - { - "l": "91.0", - "x": 12.75, - "y": 56.442 - }, - { - "l": "91.0", - "x": 12.8333, - "y": 56.8784 - }, - { - "l": "91.0", - "x": 12.9167, - "y": 57.3157 - }, - { - "l": "91.0", - "x": 13.0, - "y": 57.7516 - }, - { - "l": "91.0", - "x": 13.0833, - "y": 58.1877 - }, - { - "l": "91.0", - "x": 13.1667, - "y": 58.6201 - }, - { - "l": "91.0", - "x": 13.25, - "y": 59.0493 - }, - { - "l": "91.0", - "x": 13.3333, - "y": 59.4702 - }, - { - "l": "91.0", - "x": 13.4167, - "y": 59.883 - }, - { - "l": "91.0", - "x": 13.5, - "y": 60.2866 - }, - { - "l": "91.0", - "x": 13.5833, - "y": 60.6822 - }, - { - "l": "91.0", - "x": 13.6667, - "y": 61.0637 - }, - { - "l": "91.0", - "x": 13.75, - "y": 61.4354 - }, - { - "l": "91.0", - "x": 13.8333, - "y": 61.7972 - }, - { - "l": "91.0", - "x": 13.9167, - "y": 62.1437 - }, - { - "l": "91.0", - "x": 14.0, - "y": 62.4829 - }, - { - "l": "91.0", - "x": 14.0833, - "y": 62.8077 - }, - { - "l": "91.0", - "x": 14.1667, - "y": 63.1276 - }, - { - "l": "91.0", - "x": 14.25, - "y": 63.4314 - }, - { - "l": "91.0", - "x": 14.3333, - "y": 63.7248 - }, - { - "l": "91.0", - "x": 14.4167, - "y": 64.011 - }, - { - "l": "91.0", - "x": 14.5, - "y": 64.2846 - }, - { - "l": "91.0", - "x": 14.5833, - "y": 64.5503 - }, - { - "l": "91.0", - "x": 14.6667, - "y": 64.8058 - }, - { - "l": "91.0", - "x": 14.75, - "y": 65.0529 - }, - { - "l": "91.0", - "x": 14.8333, - "y": 65.292 - }, - { - "l": "91.0", - "x": 14.9167, - "y": 65.5198 - }, - { - "l": "91.0", - "x": 15.0, - "y": 65.7426 - }, - { - "l": "91.0", - "x": 15.0833, - "y": 65.9578 - }, - { - "l": "91.0", - "x": 15.1667, - "y": 66.1672 - }, - { - "l": "91.0", - "x": 15.25, - "y": 66.371 - }, - { - "l": "91.0", - "x": 15.3333, - "y": 66.5699 - }, - { - "l": "91.0", - "x": 15.4167, - "y": 66.7633 - }, - { - "l": "91.0", - "x": 15.5, - "y": 66.953 - }, - { - "l": "91.0", - "x": 15.5833, - "y": 67.1365 - }, - { - "l": "91.0", - "x": 15.6667, - "y": 67.3157 - }, - { - "l": "91.0", - "x": 15.75, - "y": 67.49 - }, - { - "l": "91.0", - "x": 15.8333, - "y": 67.6574 - }, - { - "l": "91.0", - "x": 15.9167, - "y": 67.8208 - }, - { - "l": "91.0", - "x": 16.0, - "y": 67.9789 - }, - { - "l": "91.0", - "x": 16.0833, - "y": 68.1324 - }, - { - "l": "91.0", - "x": 16.1667, - "y": 68.2786 - }, - { - "l": "91.0", - "x": 16.25, - "y": 68.4203 - }, - { - "l": "91.0", - "x": 16.3333, - "y": 68.5553 - }, - { - "l": "91.0", - "x": 16.4167, - "y": 68.6856 - }, - { - "l": "91.0", - "x": 16.5, - "y": 68.8104 - }, - { - "l": "91.0", - "x": 16.5833, - "y": 68.9293 - }, - { - "l": "91.0", - "x": 16.6667, - "y": 69.0423 - }, - { - "l": "91.0", - "x": 16.75, - "y": 69.1531 - }, - { - "l": "91.0", - "x": 16.8333, - "y": 69.2583 - }, - { - "l": "91.0", - "x": 16.9167, - "y": 69.3561 - }, - { - "l": "91.0", - "x": 17.0, - "y": 69.451 - }, - { - "l": "91.0", - "x": 17.0833, - "y": 69.5431 - }, - { - "l": "91.0", - "x": 17.1667, - "y": 69.6287 - }, - { - "l": "91.0", - "x": 17.25, - "y": 69.71 - }, - { - "l": "91.0", - "x": 17.3333, - "y": 69.7878 - }, - { - "l": "91.0", - "x": 17.4167, - "y": 69.8616 - }, - { - "l": "91.0", - "x": 17.5, - "y": 69.9312 - }, - { - "l": "91.0", - "x": 17.5833, - "y": 69.9992 - }, - { - "l": "91.0", - "x": 17.6667, - "y": 70.0619 - }, - { - "l": "91.0", - "x": 17.75, - "y": 70.1207 - }, - { - "l": "91.0", - "x": 17.8333, - "y": 70.1793 - }, - { - "l": "91.0", - "x": 17.9167, - "y": 70.2321 - }, - { - "l": "91.0", - "x": 18.0, - "y": 70.2836 - }, - { - "l": "91.0", - "x": 18.0833, - "y": 70.3309 - }, - { - "l": "91.0", - "x": 18.1667, - "y": 70.3781 - }, - { - "l": "91.0", - "x": 18.25, - "y": 70.4214 - }, - { - "l": "91.0", - "x": 18.3333, - "y": 70.4632 - }, - { - "l": "91.0", - "x": 18.4167, - "y": 70.5039 - }, - { - "l": "91.0", - "x": 18.5, - "y": 70.5403 - }, - { - "l": "91.0", - "x": 18.5833, - "y": 70.5772 - }, - { - "l": "91.0", - "x": 18.6667, - "y": 70.6115 - }, - { - "l": "91.0", - "x": 18.75, - "y": 70.6443 - }, - { - "l": "91.0", - "x": 18.8333, - "y": 70.6752 - }, - { - "l": "91.0", - "x": 18.9167, - "y": 70.703 - }, - { - "l": "91.0", - "x": 19.0, - "y": 70.7305 - }, - { - "l": "91.0", - "x": 19.0833, - "y": 70.7583 - }, - { - "l": "91.0", - "x": 19.1667, - "y": 70.7828 - }, - { - "l": "91.0", - "x": 19.25, - "y": 70.8057 - }, - { - "l": "91.0", - "x": 19.3333, - "y": 70.8258 - }, - { - "l": "91.0", - "x": 19.4167, - "y": 70.846 - }, - { - "l": "91.0", - "x": 19.5, - "y": 70.8644 - }, - { - "l": "91.0", - "x": 19.5833, - "y": 70.8824 - }, - { - "l": "91.0", - "x": 19.6667, - "y": 70.899 - }, - { - "l": "91.0", - "x": 19.75, - "y": 70.9119 - }, - { - "l": "91.0", - "x": 19.8333, - "y": 70.9261 - }, - { - "l": "91.0", - "x": 19.9167, - "y": 70.9376 - }, - { - "l": "91.0", - "x": 20.0, - "y": 70.9507 - }, - { - "l": "91.0", - "x": 20.0, - "y": 70.9507 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 4.0, - "y": 21.1401 - }, - { - "l": "98.0", - "x": 4.0833, - "y": 21.4013 - }, - { - "l": "98.0", - "x": 4.1667, - "y": 21.6658 - }, - { - "l": "98.0", - "x": 4.25, - "y": 21.9316 - }, - { - "l": "98.0", - "x": 4.3333, - "y": 22.2026 - }, - { - "l": "98.0", - "x": 4.4167, - "y": 22.4776 - }, - { - "l": "98.0", - "x": 4.5, - "y": 22.7556 - }, - { - "l": "98.0", - "x": 4.5833, - "y": 23.0371 - }, - { - "l": "98.0", - "x": 4.6667, - "y": 23.3219 - }, - { - "l": "98.0", - "x": 4.75, - "y": 23.6093 - }, - { - "l": "98.0", - "x": 4.8333, - "y": 23.8975 - }, - { - "l": "98.0", - "x": 4.9167, - "y": 24.1901 - }, - { - "l": "98.0", - "x": 5.0, - "y": 24.4813 - }, - { - "l": "98.0", - "x": 5.0833, - "y": 24.775 - }, - { - "l": "98.0", - "x": 5.1667, - "y": 25.0693 - }, - { - "l": "98.0", - "x": 5.25, - "y": 25.3632 - }, - { - "l": "98.0", - "x": 5.3333, - "y": 25.6598 - }, - { - "l": "98.0", - "x": 5.4167, - "y": 25.9575 - }, - { - "l": "98.0", - "x": 5.5, - "y": 26.2581 - }, - { - "l": "98.0", - "x": 5.5833, - "y": 26.5593 - }, - { - "l": "98.0", - "x": 5.6667, - "y": 26.8636 - }, - { - "l": "98.0", - "x": 5.75, - "y": 27.1725 - }, - { - "l": "98.0", - "x": 5.8333, - "y": 27.4848 - }, - { - "l": "98.0", - "x": 5.9167, - "y": 27.8009 - }, - { - "l": "98.0", - "x": 6.0, - "y": 28.1201 - }, - { - "l": "98.0", - "x": 6.0833, - "y": 28.4448 - }, - { - "l": "98.0", - "x": 6.1667, - "y": 28.7746 - }, - { - "l": "98.0", - "x": 6.25, - "y": 29.1093 - }, - { - "l": "98.0", - "x": 6.3333, - "y": 29.4498 - }, - { - "l": "98.0", - "x": 6.4167, - "y": 29.7953 - }, - { - "l": "98.0", - "x": 6.5, - "y": 30.1496 - }, - { - "l": "98.0", - "x": 6.5833, - "y": 30.5105 - }, - { - "l": "98.0", - "x": 6.6667, - "y": 30.8832 - }, - { - "l": "98.0", - "x": 6.75, - "y": 31.2635 - }, - { - "l": "98.0", - "x": 6.8333, - "y": 31.6544 - }, - { - "l": "98.0", - "x": 6.9167, - "y": 32.055 - }, - { - "l": "98.0", - "x": 7.0, - "y": 32.4673 - }, - { - "l": "98.0", - "x": 7.0833, - "y": 32.8873 - }, - { - "l": "98.0", - "x": 7.1667, - "y": 33.3126 - }, - { - "l": "98.0", - "x": 7.25, - "y": 33.7418 - }, - { - "l": "98.0", - "x": 7.3333, - "y": 34.1774 - }, - { - "l": "98.0", - "x": 7.4167, - "y": 34.6163 - }, - { - "l": "98.0", - "x": 7.5, - "y": 35.0581 - }, - { - "l": "98.0", - "x": 7.5833, - "y": 35.4981 - }, - { - "l": "98.0", - "x": 7.6667, - "y": 35.9409 - }, - { - "l": "98.0", - "x": 7.75, - "y": 36.3874 - }, - { - "l": "98.0", - "x": 7.8333, - "y": 36.83 - }, - { - "l": "98.0", - "x": 7.9167, - "y": 37.2754 - }, - { - "l": "98.0", - "x": 8.0, - "y": 37.7203 - }, - { - "l": "98.0", - "x": 8.0833, - "y": 38.1628 - }, - { - "l": "98.0", - "x": 8.1667, - "y": 38.6093 - }, - { - "l": "98.0", - "x": 8.25, - "y": 39.0488 - }, - { - "l": "98.0", - "x": 8.3333, - "y": 39.4932 - }, - { - "l": "98.0", - "x": 8.4167, - "y": 39.9373 - }, - { - "l": "98.0", - "x": 8.5, - "y": 40.3821 - }, - { - "l": "98.0", - "x": 8.5833, - "y": 40.8321 - }, - { - "l": "98.0", - "x": 8.6667, - "y": 41.2835 - }, - { - "l": "98.0", - "x": 8.75, - "y": 41.7408 - }, - { - "l": "98.0", - "x": 8.8333, - "y": 42.2021 - }, - { - "l": "98.0", - "x": 8.9167, - "y": 42.6702 - }, - { - "l": "98.0", - "x": 9.0, - "y": 43.1472 - }, - { - "l": "98.0", - "x": 9.0833, - "y": 43.6268 - }, - { - "l": "98.0", - "x": 9.1667, - "y": 44.1128 - }, - { - "l": "98.0", - "x": 9.25, - "y": 44.6083 - }, - { - "l": "98.0", - "x": 9.3333, - "y": 45.105 - }, - { - "l": "98.0", - "x": 9.4167, - "y": 45.6056 - }, - { - "l": "98.0", - "x": 9.5, - "y": 46.1117 - }, - { - "l": "98.0", - "x": 9.5833, - "y": 46.6151 - }, - { - "l": "98.0", - "x": 9.6667, - "y": 47.1276 - }, - { - "l": "98.0", - "x": 9.75, - "y": 47.6409 - }, - { - "l": "98.0", - "x": 9.8333, - "y": 48.1557 - }, - { - "l": "98.0", - "x": 9.9167, - "y": 48.6761 - }, - { - "l": "98.0", - "x": 10.0, - "y": 49.1955 - }, - { - "l": "98.0", - "x": 10.0833, - "y": 49.7188 - }, - { - "l": "98.0", - "x": 10.1667, - "y": 50.24 - }, - { - "l": "98.0", - "x": 10.25, - "y": 50.7663 - }, - { - "l": "98.0", - "x": 10.3333, - "y": 51.2903 - }, - { - "l": "98.0", - "x": 10.4167, - "y": 51.8144 - }, - { - "l": "98.0", - "x": 10.5, - "y": 52.3311 - }, - { - "l": "98.0", - "x": 10.5833, - "y": 52.8494 - }, - { - "l": "98.0", - "x": 10.6667, - "y": 53.367 - }, - { - "l": "98.0", - "x": 10.75, - "y": 53.8794 - }, - { - "l": "98.0", - "x": 10.8333, - "y": 54.3866 - }, - { - "l": "98.0", - "x": 10.9167, - "y": 54.8868 - }, - { - "l": "98.0", - "x": 11.0, - "y": 55.3858 - }, - { - "l": "98.0", - "x": 11.0833, - "y": 55.8791 - }, - { - "l": "98.0", - "x": 11.1667, - "y": 56.3635 - }, - { - "l": "98.0", - "x": 11.25, - "y": 56.8407 - }, - { - "l": "98.0", - "x": 11.3333, - "y": 57.3068 - }, - { - "l": "98.0", - "x": 11.4167, - "y": 57.7631 - }, - { - "l": "98.0", - "x": 11.5, - "y": 58.2132 - }, - { - "l": "98.0", - "x": 11.5833, - "y": 58.6526 - }, - { - "l": "98.0", - "x": 11.6667, - "y": 59.0782 - }, - { - "l": "98.0", - "x": 11.75, - "y": 59.5014 - }, - { - "l": "98.0", - "x": 11.8333, - "y": 59.9115 - }, - { - "l": "98.0", - "x": 11.9167, - "y": 60.3234 - }, - { - "l": "98.0", - "x": 12.0, - "y": 60.7221 - }, - { - "l": "98.0", - "x": 12.0833, - "y": 61.1245 - }, - { - "l": "98.0", - "x": 12.1667, - "y": 61.522 - }, - { - "l": "98.0", - "x": 12.25, - "y": 61.9247 - }, - { - "l": "98.0", - "x": 12.3333, - "y": 62.3236 - }, - { - "l": "98.0", - "x": 12.4167, - "y": 62.7251 - }, - { - "l": "98.0", - "x": 12.5, - "y": 63.1291 - }, - { - "l": "98.0", - "x": 12.5833, - "y": 63.5374 - }, - { - "l": "98.0", - "x": 12.6667, - "y": 63.9409 - }, - { - "l": "98.0", - "x": 12.75, - "y": 64.3515 - }, - { - "l": "98.0", - "x": 12.8333, - "y": 64.7602 - }, - { - "l": "98.0", - "x": 12.9167, - "y": 65.1749 - }, - { - "l": "98.0", - "x": 13.0, - "y": 65.5878 - }, - { - "l": "98.0", - "x": 13.0833, - "y": 66.0056 - }, - { - "l": "98.0", - "x": 13.1667, - "y": 66.4203 - }, - { - "l": "98.0", - "x": 13.25, - "y": 66.8365 - }, - { - "l": "98.0", - "x": 13.3333, - "y": 67.2468 - }, - { - "l": "98.0", - "x": 13.4167, - "y": 67.6498 - }, - { - "l": "98.0", - "x": 13.5, - "y": 68.0448 - }, - { - "l": "98.0", - "x": 13.5833, - "y": 68.432 - }, - { - "l": "98.0", - "x": 13.6667, - "y": 68.8037 - }, - { - "l": "98.0", - "x": 13.75, - "y": 69.1686 - }, - { - "l": "98.0", - "x": 13.8333, - "y": 69.5234 - }, - { - "l": "98.0", - "x": 13.9167, - "y": 69.8614 - }, - { - "l": "98.0", - "x": 14.0, - "y": 70.1951 - }, - { - "l": "98.0", - "x": 14.0833, - "y": 70.5112 - }, - { - "l": "98.0", - "x": 14.1667, - "y": 70.8257 - }, - { - "l": "98.0", - "x": 14.25, - "y": 71.1237 - }, - { - "l": "98.0", - "x": 14.3333, - "y": 71.4111 - }, - { - "l": "98.0", - "x": 14.4167, - "y": 71.6936 - }, - { - "l": "98.0", - "x": 14.5, - "y": 71.9636 - }, - { - "l": "98.0", - "x": 14.5833, - "y": 72.2283 - }, - { - "l": "98.0", - "x": 14.6667, - "y": 72.4802 - }, - { - "l": "98.0", - "x": 14.75, - "y": 72.728 - }, - { - "l": "98.0", - "x": 14.8333, - "y": 72.9687 - }, - { - "l": "98.0", - "x": 14.9167, - "y": 73.1957 - }, - { - "l": "98.0", - "x": 15.0, - "y": 73.4232 - }, - { - "l": "98.0", - "x": 15.0833, - "y": 73.6413 - }, - { - "l": "98.0", - "x": 15.1667, - "y": 73.8572 - }, - { - "l": "98.0", - "x": 15.25, - "y": 74.0674 - }, - { - "l": "98.0", - "x": 15.3333, - "y": 74.2764 - }, - { - "l": "98.0", - "x": 15.4167, - "y": 74.4793 - }, - { - "l": "98.0", - "x": 15.5, - "y": 74.6809 - }, - { - "l": "98.0", - "x": 15.5833, - "y": 74.8767 - }, - { - "l": "98.0", - "x": 15.6667, - "y": 75.0684 - }, - { - "l": "98.0", - "x": 15.75, - "y": 75.2579 - }, - { - "l": "98.0", - "x": 15.8333, - "y": 75.4394 - }, - { - "l": "98.0", - "x": 15.9167, - "y": 75.6174 - }, - { - "l": "98.0", - "x": 16.0, - "y": 75.7914 - }, - { - "l": "98.0", - "x": 16.0833, - "y": 75.9616 - }, - { - "l": "98.0", - "x": 16.1667, - "y": 76.1226 - }, - { - "l": "98.0", - "x": 16.25, - "y": 76.2798 - }, - { - "l": "98.0", - "x": 16.3333, - "y": 76.4301 - }, - { - "l": "98.0", - "x": 16.4167, - "y": 76.5764 - }, - { - "l": "98.0", - "x": 16.5, - "y": 76.7157 - }, - { - "l": "98.0", - "x": 16.5833, - "y": 76.8491 - }, - { - "l": "98.0", - "x": 16.6667, - "y": 76.9765 - }, - { - "l": "98.0", - "x": 16.75, - "y": 77.1027 - }, - { - "l": "98.0", - "x": 16.8333, - "y": 77.2235 - }, - { - "l": "98.0", - "x": 16.9167, - "y": 77.3337 - }, - { - "l": "98.0", - "x": 17.0, - "y": 77.4418 - }, - { - "l": "98.0", - "x": 17.0833, - "y": 77.5477 - }, - { - "l": "98.0", - "x": 17.1667, - "y": 77.6462 - }, - { - "l": "98.0", - "x": 17.25, - "y": 77.7384 - }, - { - "l": "98.0", - "x": 17.3333, - "y": 77.829 - }, - { - "l": "98.0", - "x": 17.4167, - "y": 77.9134 - }, - { - "l": "98.0", - "x": 17.5, - "y": 77.9932 - }, - { - "l": "98.0", - "x": 17.5833, - "y": 78.0719 - }, - { - "l": "98.0", - "x": 17.6667, - "y": 78.1447 - }, - { - "l": "98.0", - "x": 17.75, - "y": 78.2115 - }, - { - "l": "98.0", - "x": 17.8333, - "y": 78.2804 - }, - { - "l": "98.0", - "x": 17.9167, - "y": 78.3405 - }, - { - "l": "98.0", - "x": 18.0, - "y": 78.3998 - }, - { - "l": "98.0", - "x": 18.0833, - "y": 78.4538 - }, - { - "l": "98.0", - "x": 18.1667, - "y": 78.509 - }, - { - "l": "98.0", - "x": 18.25, - "y": 78.5592 - }, - { - "l": "98.0", - "x": 18.3333, - "y": 78.6078 - }, - { - "l": "98.0", - "x": 18.4167, - "y": 78.6558 - }, - { - "l": "98.0", - "x": 18.5, - "y": 78.6967 - }, - { - "l": "98.0", - "x": 18.5833, - "y": 78.7404 - }, - { - "l": "98.0", - "x": 18.6667, - "y": 78.779 - }, - { - "l": "98.0", - "x": 18.75, - "y": 78.8182 - }, - { - "l": "98.0", - "x": 18.8333, - "y": 78.8536 - }, - { - "l": "98.0", - "x": 18.9167, - "y": 78.8849 - }, - { - "l": "98.0", - "x": 19.0, - "y": 78.9165 - }, - { - "l": "98.0", - "x": 19.0833, - "y": 78.9508 - }, - { - "l": "98.0", - "x": 19.1667, - "y": 78.9791 - }, - { - "l": "98.0", - "x": 19.25, - "y": 79.0057 - }, - { - "l": "98.0", - "x": 19.3333, - "y": 79.0267 - }, - { - "l": "98.0", - "x": 19.4167, - "y": 79.0509 - }, - { - "l": "98.0", - "x": 19.5, - "y": 79.0723 - }, - { - "l": "98.0", - "x": 19.5833, - "y": 79.0941 - }, - { - "l": "98.0", - "x": 19.6667, - "y": 79.1143 - }, - { - "l": "98.0", - "x": 19.75, - "y": 79.1273 - }, - { - "l": "98.0", - "x": 19.8333, - "y": 79.1448 - }, - { - "l": "98.0", - "x": 19.9167, - "y": 79.1569 - }, - { - "l": "98.0", - "x": 20.0, - "y": 79.1732 - }, - { - "l": "98.0", - "x": 20.0, - "y": 79.1732 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 4.0, - "y": 23.3066 - }, - { - "l": "99.6", - "x": 4.0833, - "y": 23.6166 - }, - { - "l": "99.6", - "x": 4.1667, - "y": 23.9312 - }, - { - "l": "99.6", - "x": 4.25, - "y": 24.2474 - }, - { - "l": "99.6", - "x": 4.3333, - "y": 24.5712 - }, - { - "l": "99.6", - "x": 4.4167, - "y": 24.9006 - }, - { - "l": "99.6", - "x": 4.5, - "y": 25.2343 - }, - { - "l": "99.6", - "x": 4.5833, - "y": 25.5721 - }, - { - "l": "99.6", - "x": 4.6667, - "y": 25.9155 - }, - { - "l": "99.6", - "x": 4.75, - "y": 26.262 - }, - { - "l": "99.6", - "x": 4.8333, - "y": 26.6102 - }, - { - "l": "99.6", - "x": 4.9167, - "y": 26.9659 - }, - { - "l": "99.6", - "x": 5.0, - "y": 27.3195 - }, - { - "l": "99.6", - "x": 5.0833, - "y": 27.677 - }, - { - "l": "99.6", - "x": 5.1667, - "y": 28.0364 - }, - { - "l": "99.6", - "x": 5.25, - "y": 28.3949 - }, - { - "l": "99.6", - "x": 5.3333, - "y": 28.7584 - }, - { - "l": "99.6", - "x": 5.4167, - "y": 29.1233 - }, - { - "l": "99.6", - "x": 5.5, - "y": 29.4937 - }, - { - "l": "99.6", - "x": 5.5833, - "y": 29.8642 - }, - { - "l": "99.6", - "x": 5.6667, - "y": 30.2393 - }, - { - "l": "99.6", - "x": 5.75, - "y": 30.6207 - }, - { - "l": "99.6", - "x": 5.8333, - "y": 31.0088 - }, - { - "l": "99.6", - "x": 5.9167, - "y": 31.4011 - }, - { - "l": "99.6", - "x": 6.0, - "y": 31.7979 - }, - { - "l": "99.6", - "x": 6.0833, - "y": 32.2012 - }, - { - "l": "99.6", - "x": 6.1667, - "y": 32.6132 - }, - { - "l": "99.6", - "x": 6.25, - "y": 33.0326 - }, - { - "l": "99.6", - "x": 6.3333, - "y": 33.4609 - }, - { - "l": "99.6", - "x": 6.4167, - "y": 33.8942 - }, - { - "l": "99.6", - "x": 6.5, - "y": 34.3417 - }, - { - "l": "99.6", - "x": 6.5833, - "y": 34.7968 - }, - { - "l": "99.6", - "x": 6.6667, - "y": 35.2702 - }, - { - "l": "99.6", - "x": 6.75, - "y": 35.7527 - }, - { - "l": "99.6", - "x": 6.8333, - "y": 36.2495 - }, - { - "l": "99.6", - "x": 6.9167, - "y": 36.7603 - }, - { - "l": "99.6", - "x": 7.0, - "y": 37.2875 - }, - { - "l": "99.6", - "x": 7.0833, - "y": 37.826 - }, - { - "l": "99.6", - "x": 7.1667, - "y": 38.3702 - }, - { - "l": "99.6", - "x": 7.25, - "y": 38.9206 - }, - { - "l": "99.6", - "x": 7.3333, - "y": 39.4804 - }, - { - "l": "99.6", - "x": 7.4167, - "y": 40.0463 - }, - { - "l": "99.6", - "x": 7.5, - "y": 40.6172 - }, - { - "l": "99.6", - "x": 7.5833, - "y": 41.184 - }, - { - "l": "99.6", - "x": 7.6667, - "y": 41.7556 - }, - { - "l": "99.6", - "x": 7.75, - "y": 42.333 - }, - { - "l": "99.6", - "x": 7.8333, - "y": 42.9032 - }, - { - "l": "99.6", - "x": 7.9167, - "y": 43.4786 - }, - { - "l": "99.6", - "x": 8.0, - "y": 44.0535 - }, - { - "l": "99.6", - "x": 8.0833, - "y": 44.6235 - }, - { - "l": "99.6", - "x": 8.1667, - "y": 45.2032 - }, - { - "l": "99.6", - "x": 8.25, - "y": 45.7671 - }, - { - "l": "99.6", - "x": 8.3333, - "y": 46.3424 - }, - { - "l": "99.6", - "x": 8.4167, - "y": 46.9146 - }, - { - "l": "99.6", - "x": 8.5, - "y": 47.4883 - }, - { - "l": "99.6", - "x": 8.5833, - "y": 48.0704 - }, - { - "l": "99.6", - "x": 8.6667, - "y": 48.6501 - }, - { - "l": "99.6", - "x": 8.75, - "y": 49.2388 - }, - { - "l": "99.6", - "x": 8.8333, - "y": 49.8278 - }, - { - "l": "99.6", - "x": 8.9167, - "y": 50.4259 - }, - { - "l": "99.6", - "x": 9.0, - "y": 51.0356 - }, - { - "l": "99.6", - "x": 9.0833, - "y": 51.6435 - }, - { - "l": "99.6", - "x": 9.1667, - "y": 52.259 - }, - { - "l": "99.6", - "x": 9.25, - "y": 52.8873 - }, - { - "l": "99.6", - "x": 9.3333, - "y": 53.5117 - }, - { - "l": "99.6", - "x": 9.4167, - "y": 54.1404 - }, - { - "l": "99.6", - "x": 9.5, - "y": 54.7762 - }, - { - "l": "99.6", - "x": 9.5833, - "y": 55.3978 - }, - { - "l": "99.6", - "x": 9.6667, - "y": 56.0362 - }, - { - "l": "99.6", - "x": 9.75, - "y": 56.6706 - }, - { - "l": "99.6", - "x": 9.8333, - "y": 57.3017 - }, - { - "l": "99.6", - "x": 9.9167, - "y": 57.9403 - }, - { - "l": "99.6", - "x": 10.0, - "y": 58.5722 - }, - { - "l": "99.6", - "x": 10.0833, - "y": 59.2092 - }, - { - "l": "99.6", - "x": 10.1667, - "y": 59.837 - }, - { - "l": "99.6", - "x": 10.25, - "y": 60.4705 - }, - { - "l": "99.6", - "x": 10.3333, - "y": 61.1001 - }, - { - "l": "99.6", - "x": 10.4167, - "y": 61.7219 - }, - { - "l": "99.6", - "x": 10.5, - "y": 62.3251 - }, - { - "l": "99.6", - "x": 10.5833, - "y": 62.9278 - }, - { - "l": "99.6", - "x": 10.6667, - "y": 63.5265 - }, - { - "l": "99.6", - "x": 10.75, - "y": 64.1082 - }, - { - "l": "99.6", - "x": 10.8333, - "y": 64.6797 - }, - { - "l": "99.6", - "x": 10.9167, - "y": 65.2313 - }, - { - "l": "99.6", - "x": 11.0, - "y": 65.7758 - }, - { - "l": "99.6", - "x": 11.0833, - "y": 66.3073 - }, - { - "l": "99.6", - "x": 11.1667, - "y": 66.8153 - }, - { - "l": "99.6", - "x": 11.25, - "y": 67.3065 - }, - { - "l": "99.6", - "x": 11.3333, - "y": 67.7696 - }, - { - "l": "99.6", - "x": 11.4167, - "y": 68.2143 - }, - { - "l": "99.6", - "x": 11.5, - "y": 68.6427 - }, - { - "l": "99.6", - "x": 11.5833, - "y": 69.0497 - }, - { - "l": "99.6", - "x": 11.6667, - "y": 69.4266 - }, - { - "l": "99.6", - "x": 11.75, - "y": 69.7999 - }, - { - "l": "99.6", - "x": 11.8333, - "y": 70.1448 - }, - { - "l": "99.6", - "x": 11.9167, - "y": 70.4929 - }, - { - "l": "99.6", - "x": 12.0, - "y": 70.8132 - }, - { - "l": "99.6", - "x": 12.0833, - "y": 71.1398 - }, - { - "l": "99.6", - "x": 12.1667, - "y": 71.4562 - }, - { - "l": "99.6", - "x": 12.25, - "y": 71.7819 - }, - { - "l": "99.6", - "x": 12.3333, - "y": 72.0993 - }, - { - "l": "99.6", - "x": 12.4167, - "y": 72.4226 - }, - { - "l": "99.6", - "x": 12.5, - "y": 72.7519 - }, - { - "l": "99.6", - "x": 12.5833, - "y": 73.0906 - }, - { - "l": "99.6", - "x": 12.6667, - "y": 73.422 - }, - { - "l": "99.6", - "x": 12.75, - "y": 73.7703 - }, - { - "l": "99.6", - "x": 12.8333, - "y": 74.1162 - }, - { - "l": "99.6", - "x": 12.9167, - "y": 74.4788 - }, - { - "l": "99.6", - "x": 13.0, - "y": 74.8395 - }, - { - "l": "99.6", - "x": 13.0833, - "y": 75.215 - }, - { - "l": "99.6", - "x": 13.1667, - "y": 75.5886 - }, - { - "l": "99.6", - "x": 13.25, - "y": 75.9732 - }, - { - "l": "99.6", - "x": 13.3333, - "y": 76.3567 - }, - { - "l": "99.6", - "x": 13.4167, - "y": 76.7359 - }, - { - "l": "99.6", - "x": 13.5, - "y": 77.1102 - }, - { - "l": "99.6", - "x": 13.5833, - "y": 77.4786 - }, - { - "l": "99.6", - "x": 13.6667, - "y": 77.83 - }, - { - "l": "99.6", - "x": 13.75, - "y": 78.1811 - }, - { - "l": "99.6", - "x": 13.8333, - "y": 78.5235 - }, - { - "l": "99.6", - "x": 13.9167, - "y": 78.8474 - }, - { - "l": "99.6", - "x": 14.0, - "y": 79.1736 - }, - { - "l": "99.6", - "x": 14.0833, - "y": 79.477 - }, - { - "l": "99.6", - "x": 14.1667, - "y": 79.7857 - }, - { - "l": "99.6", - "x": 14.25, - "y": 80.0776 - }, - { - "l": "99.6", - "x": 14.3333, - "y": 80.3586 - }, - { - "l": "99.6", - "x": 14.4167, - "y": 80.6394 - }, - { - "l": "99.6", - "x": 14.5, - "y": 80.9079 - }, - { - "l": "99.6", - "x": 14.5833, - "y": 81.1756 - }, - { - "l": "99.6", - "x": 14.6667, - "y": 81.4265 - }, - { - "l": "99.6", - "x": 14.75, - "y": 81.6801 - }, - { - "l": "99.6", - "x": 14.8333, - "y": 81.9279 - }, - { - "l": "99.6", - "x": 14.9167, - "y": 82.158 - }, - { - "l": "99.6", - "x": 15.0, - "y": 82.3971 - }, - { - "l": "99.6", - "x": 15.0833, - "y": 82.6235 - }, - { - "l": "99.6", - "x": 15.1667, - "y": 82.8536 - }, - { - "l": "99.6", - "x": 15.25, - "y": 83.0769 - }, - { - "l": "99.6", - "x": 15.3333, - "y": 83.3053 - }, - { - "l": "99.6", - "x": 15.4167, - "y": 83.5258 - }, - { - "l": "99.6", - "x": 15.5, - "y": 83.7484 - }, - { - "l": "99.6", - "x": 15.5833, - "y": 83.9657 - }, - { - "l": "99.6", - "x": 15.6667, - "y": 84.1783 - }, - { - "l": "99.6", - "x": 15.75, - "y": 84.3938 - }, - { - "l": "99.6", - "x": 15.8333, - "y": 84.5985 - }, - { - "l": "99.6", - "x": 15.9167, - "y": 84.8009 - }, - { - "l": "99.6", - "x": 16.0, - "y": 85.0011 - }, - { - "l": "99.6", - "x": 16.0833, - "y": 85.1985 - }, - { - "l": "99.6", - "x": 16.1667, - "y": 85.3833 - }, - { - "l": "99.6", - "x": 16.25, - "y": 85.5654 - }, - { - "l": "99.6", - "x": 16.3333, - "y": 85.7406 - }, - { - "l": "99.6", - "x": 16.4167, - "y": 85.913 - }, - { - "l": "99.6", - "x": 16.5, - "y": 86.0751 - }, - { - "l": "99.6", - "x": 16.5833, - "y": 86.2314 - }, - { - "l": "99.6", - "x": 16.6667, - "y": 86.3819 - }, - { - "l": "99.6", - "x": 16.75, - "y": 86.5328 - }, - { - "l": "99.6", - "x": 16.8333, - "y": 86.6784 - }, - { - "l": "99.6", - "x": 16.9167, - "y": 86.8081 - }, - { - "l": "99.6", - "x": 17.0, - "y": 86.9372 - }, - { - "l": "99.6", - "x": 17.0833, - "y": 87.0647 - }, - { - "l": "99.6", - "x": 17.1667, - "y": 87.184 - }, - { - "l": "99.6", - "x": 17.25, - "y": 87.2929 - }, - { - "l": "99.6", - "x": 17.3333, - "y": 87.4041 - }, - { - "l": "99.6", - "x": 17.4167, - "y": 87.5052 - }, - { - "l": "99.6", - "x": 17.5, - "y": 87.6012 - }, - { - "l": "99.6", - "x": 17.5833, - "y": 87.6967 - }, - { - "l": "99.6", - "x": 17.6667, - "y": 87.7857 - }, - { - "l": "99.6", - "x": 17.75, - "y": 87.8646 - }, - { - "l": "99.6", - "x": 17.8333, - "y": 87.9502 - }, - { - "l": "99.6", - "x": 17.9167, - "y": 88.0216 - }, - { - "l": "99.6", - "x": 18.0, - "y": 88.0931 - }, - { - "l": "99.6", - "x": 18.0833, - "y": 88.1578 - }, - { - "l": "99.6", - "x": 18.1667, - "y": 88.2255 - }, - { - "l": "99.6", - "x": 18.25, - "y": 88.2868 - }, - { - "l": "99.6", - "x": 18.3333, - "y": 88.3462 - }, - { - "l": "99.6", - "x": 18.4167, - "y": 88.4059 - }, - { - "l": "99.6", - "x": 18.5, - "y": 88.4534 - }, - { - "l": "99.6", - "x": 18.5833, - "y": 88.5084 - }, - { - "l": "99.6", - "x": 18.6667, - "y": 88.5532 - }, - { - "l": "99.6", - "x": 18.75, - "y": 88.6031 - }, - { - "l": "99.6", - "x": 18.8333, - "y": 88.6454 - }, - { - "l": "99.6", - "x": 18.9167, - "y": 88.6821 - }, - { - "l": "99.6", - "x": 19.0, - "y": 88.72 - }, - { - "l": "99.6", - "x": 19.0833, - "y": 88.7654 - }, - { - "l": "99.6", - "x": 19.1667, - "y": 88.7996 - }, - { - "l": "99.6", - "x": 19.25, - "y": 88.8319 - }, - { - "l": "99.6", - "x": 19.3333, - "y": 88.8537 - }, - { - "l": "99.6", - "x": 19.4167, - "y": 88.8843 - }, - { - "l": "99.6", - "x": 19.5, - "y": 88.9109 - }, - { - "l": "99.6", - "x": 19.5833, - "y": 88.9387 - }, - { - "l": "99.6", - "x": 19.6667, - "y": 88.9649 - }, - { - "l": "99.6", - "x": 19.75, - "y": 88.9776 - }, - { - "l": "99.6", - "x": 19.8333, - "y": 89.0007 - }, - { - "l": "99.6", - "x": 19.9167, - "y": 89.0134 - }, - { - "l": "99.6", - "x": 20.0, - "y": 89.0351 - }, - { - "l": "99.6", - "x": 20.0, - "y": 89.0351 - } - ] - } - ], - "ofc": null, - "bmi": null - } - } - } - ] -}; - -var ukwhoOFCMaleCentileData = { - "centile_data": [ - { - "uk90_preterm": { - "male": { - "height": null, - "weight": null, - "ofc": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": -0.3258, - "y": 19.0565 - }, - { - "l": "0.4", - "x": -0.3066, - "y": 19.8478 - }, - { - "l": "0.4", - "x": -0.2875, - "y": 20.6324 - }, - { - "l": "0.4", - "x": -0.2683, - "y": 21.4143 - }, - { - "l": "0.4", - "x": -0.2491, - "y": 22.1978 - }, - { - "l": "0.4", - "x": -0.23, - "y": 22.9731 - }, - { - "l": "0.4", - "x": -0.2108, - "y": 23.7296 - }, - { - "l": "0.4", - "x": -0.1916, - "y": 24.486 - }, - { - "l": "0.4", - "x": -0.1725, - "y": 25.2575 - }, - { - "l": "0.4", - "x": -0.1533, - "y": 26.0429 - }, - { - "l": "0.4", - "x": -0.1342, - "y": 26.8326 - }, - { - "l": "0.4", - "x": -0.115, - "y": 27.6138 - }, - { - "l": "0.4", - "x": -0.0958, - "y": 28.3792 - }, - { - "l": "0.4", - "x": -0.0767, - "y": 29.1247 - }, - { - "l": "0.4", - "x": -0.0575, - "y": 29.8471 - }, - { - "l": "0.4", - "x": -0.0383, - "y": 30.5382 - }, - { - "l": "0.4", - "x": -0.0192, - "y": 31.19 - }, - { - "l": "0.4", - "x": -0.0, - "y": 31.8126 - }, - { - "l": "0.4", - "x": 0.0192, - "y": 32.4181 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 33.015 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 33.015 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": -0.3258, - "y": 19.7005 - }, - { - "l": "2.0", - "x": -0.3066, - "y": 20.552 - }, - { - "l": "2.0", - "x": -0.2875, - "y": 21.399 - }, - { - "l": "2.0", - "x": -0.2683, - "y": 22.2442 - }, - { - "l": "2.0", - "x": -0.2491, - "y": 23.088 - }, - { - "l": "2.0", - "x": -0.23, - "y": 23.9138 - }, - { - "l": "2.0", - "x": -0.2108, - "y": 24.7066 - }, - { - "l": "2.0", - "x": -0.1916, - "y": 25.4845 - }, - { - "l": "2.0", - "x": -0.1725, - "y": 26.2641 - }, - { - "l": "2.0", - "x": -0.1533, - "y": 27.0449 - }, - { - "l": "2.0", - "x": -0.1342, - "y": 27.8198 - }, - { - "l": "2.0", - "x": -0.115, - "y": 28.5788 - }, - { - "l": "2.0", - "x": -0.0958, - "y": 29.3167 - }, - { - "l": "2.0", - "x": -0.0767, - "y": 30.0313 - }, - { - "l": "2.0", - "x": -0.0575, - "y": 30.7208 - }, - { - "l": "2.0", - "x": -0.0383, - "y": 31.3784 - }, - { - "l": "2.0", - "x": -0.0192, - "y": 31.997 - }, - { - "l": "2.0", - "x": -0.0, - "y": 32.5871 - }, - { - "l": "2.0", - "x": 0.0192, - "y": 33.1602 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 33.7243 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 33.7243 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": -0.3258, - "y": 20.3446 - }, - { - "l": "9.0", - "x": -0.3066, - "y": 21.2562 - }, - { - "l": "9.0", - "x": -0.2875, - "y": 22.1656 - }, - { - "l": "9.0", - "x": -0.2683, - "y": 23.0741 - }, - { - "l": "9.0", - "x": -0.2491, - "y": 23.9781 - }, - { - "l": "9.0", - "x": -0.23, - "y": 24.8546 - }, - { - "l": "9.0", - "x": -0.2108, - "y": 25.6836 - }, - { - "l": "9.0", - "x": -0.1916, - "y": 26.4831 - }, - { - "l": "9.0", - "x": -0.1725, - "y": 27.2707 - }, - { - "l": "9.0", - "x": -0.1533, - "y": 28.0469 - }, - { - "l": "9.0", - "x": -0.1342, - "y": 28.807 - }, - { - "l": "9.0", - "x": -0.115, - "y": 29.5438 - }, - { - "l": "9.0", - "x": -0.0958, - "y": 30.2542 - }, - { - "l": "9.0", - "x": -0.0767, - "y": 30.9379 - }, - { - "l": "9.0", - "x": -0.0575, - "y": 31.5946 - }, - { - "l": "9.0", - "x": -0.0383, - "y": 32.2186 - }, - { - "l": "9.0", - "x": -0.0192, - "y": 32.8041 - }, - { - "l": "9.0", - "x": -0.0, - "y": 33.3617 - }, - { - "l": "9.0", - "x": 0.0192, - "y": 33.9024 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 34.4336 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 34.4336 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": -0.3258, - "y": 20.9886 - }, - { - "l": "25.0", - "x": -0.3066, - "y": 21.9604 - }, - { - "l": "25.0", - "x": -0.2875, - "y": 22.9322 - }, - { - "l": "25.0", - "x": -0.2683, - "y": 23.904 - }, - { - "l": "25.0", - "x": -0.2491, - "y": 24.8682 - }, - { - "l": "25.0", - "x": -0.23, - "y": 25.7953 - }, - { - "l": "25.0", - "x": -0.2108, - "y": 26.6605 - }, - { - "l": "25.0", - "x": -0.1916, - "y": 27.4816 - }, - { - "l": "25.0", - "x": -0.1725, - "y": 28.2773 - }, - { - "l": "25.0", - "x": -0.1533, - "y": 29.0489 - }, - { - "l": "25.0", - "x": -0.1342, - "y": 29.7942 - }, - { - "l": "25.0", - "x": -0.115, - "y": 30.5087 - }, - { - "l": "25.0", - "x": -0.0958, - "y": 31.1917 - }, - { - "l": "25.0", - "x": -0.0767, - "y": 31.8445 - }, - { - "l": "25.0", - "x": -0.0575, - "y": 32.4684 - }, - { - "l": "25.0", - "x": -0.0383, - "y": 33.0589 - }, - { - "l": "25.0", - "x": -0.0192, - "y": 33.6112 - }, - { - "l": "25.0", - "x": -0.0, - "y": 34.1362 - }, - { - "l": "25.0", - "x": 0.0192, - "y": 34.6445 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 35.1428 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 35.1428 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": -0.3258, - "y": 21.6327 - }, - { - "l": "50.0", - "x": -0.3066, - "y": 22.6647 - }, - { - "l": "50.0", - "x": -0.2875, - "y": 23.6988 - }, - { - "l": "50.0", - "x": -0.2683, - "y": 24.7339 - }, - { - "l": "50.0", - "x": -0.2491, - "y": 25.7583 - }, - { - "l": "50.0", - "x": -0.23, - "y": 26.736 - }, - { - "l": "50.0", - "x": -0.2108, - "y": 27.6375 - }, - { - "l": "50.0", - "x": -0.1916, - "y": 28.4801 - }, - { - "l": "50.0", - "x": -0.1725, - "y": 29.2838 - }, - { - "l": "50.0", - "x": -0.1533, - "y": 30.0509 - }, - { - "l": "50.0", - "x": -0.1342, - "y": 30.7814 - }, - { - "l": "50.0", - "x": -0.115, - "y": 31.4737 - }, - { - "l": "50.0", - "x": -0.0958, - "y": 32.1292 - }, - { - "l": "50.0", - "x": -0.0767, - "y": 32.7512 - }, - { - "l": "50.0", - "x": -0.0575, - "y": 33.3421 - }, - { - "l": "50.0", - "x": -0.0383, - "y": 33.8991 - }, - { - "l": "50.0", - "x": -0.0192, - "y": 34.4182 - }, - { - "l": "50.0", - "x": -0.0, - "y": 34.9107 - }, - { - "l": "50.0", - "x": 0.0192, - "y": 35.3867 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 35.8521 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 35.8521 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": -0.3258, - "y": 22.2767 - }, - { - "l": "75.0", - "x": -0.3066, - "y": 23.3689 - }, - { - "l": "75.0", - "x": -0.2875, - "y": 24.4654 - }, - { - "l": "75.0", - "x": -0.2683, - "y": 25.5638 - }, - { - "l": "75.0", - "x": -0.2491, - "y": 26.6484 - }, - { - "l": "75.0", - "x": -0.23, - "y": 27.6767 - }, - { - "l": "75.0", - "x": -0.2108, - "y": 28.6145 - }, - { - "l": "75.0", - "x": -0.1916, - "y": 29.4787 - }, - { - "l": "75.0", - "x": -0.1725, - "y": 30.2904 - }, - { - "l": "75.0", - "x": -0.1533, - "y": 31.0529 - }, - { - "l": "75.0", - "x": -0.1342, - "y": 31.7687 - }, - { - "l": "75.0", - "x": -0.115, - "y": 32.4387 - }, - { - "l": "75.0", - "x": -0.0958, - "y": 33.0667 - }, - { - "l": "75.0", - "x": -0.0767, - "y": 33.6578 - }, - { - "l": "75.0", - "x": -0.0575, - "y": 34.2159 - }, - { - "l": "75.0", - "x": -0.0383, - "y": 34.7393 - }, - { - "l": "75.0", - "x": -0.0192, - "y": 35.2253 - }, - { - "l": "75.0", - "x": -0.0, - "y": 35.6852 - }, - { - "l": "75.0", - "x": 0.0192, - "y": 36.1288 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 36.5614 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 36.5614 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": -0.3258, - "y": 22.9208 - }, - { - "l": "91.0", - "x": -0.3066, - "y": 24.0731 - }, - { - "l": "91.0", - "x": -0.2875, - "y": 25.2319 - }, - { - "l": "91.0", - "x": -0.2683, - "y": 26.3937 - }, - { - "l": "91.0", - "x": -0.2491, - "y": 27.5385 - }, - { - "l": "91.0", - "x": -0.23, - "y": 28.6175 - }, - { - "l": "91.0", - "x": -0.2108, - "y": 29.5914 - }, - { - "l": "91.0", - "x": -0.1916, - "y": 30.4772 - }, - { - "l": "91.0", - "x": -0.1725, - "y": 31.297 - }, - { - "l": "91.0", - "x": -0.1533, - "y": 32.0549 - }, - { - "l": "91.0", - "x": -0.1342, - "y": 32.7559 - }, - { - "l": "91.0", - "x": -0.115, - "y": 33.4037 - }, - { - "l": "91.0", - "x": -0.0958, - "y": 34.0042 - }, - { - "l": "91.0", - "x": -0.0767, - "y": 34.5644 - }, - { - "l": "91.0", - "x": -0.0575, - "y": 35.0897 - }, - { - "l": "91.0", - "x": -0.0383, - "y": 35.5795 - }, - { - "l": "91.0", - "x": -0.0192, - "y": 36.0324 - }, - { - "l": "91.0", - "x": -0.0, - "y": 36.4598 - }, - { - "l": "91.0", - "x": 0.0192, - "y": 36.871 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 37.2706 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 37.2706 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": -0.3258, - "y": 23.5648 - }, - { - "l": "98.0", - "x": -0.3066, - "y": 24.7773 - }, - { - "l": "98.0", - "x": -0.2875, - "y": 25.9985 - }, - { - "l": "98.0", - "x": -0.2683, - "y": 27.2236 - }, - { - "l": "98.0", - "x": -0.2491, - "y": 28.4286 - }, - { - "l": "98.0", - "x": -0.23, - "y": 29.5582 - }, - { - "l": "98.0", - "x": -0.2108, - "y": 30.5684 - }, - { - "l": "98.0", - "x": -0.1916, - "y": 31.4757 - }, - { - "l": "98.0", - "x": -0.1725, - "y": 32.3036 - }, - { - "l": "98.0", - "x": -0.1533, - "y": 33.0569 - }, - { - "l": "98.0", - "x": -0.1342, - "y": 33.7431 - }, - { - "l": "98.0", - "x": -0.115, - "y": 34.3686 - }, - { - "l": "98.0", - "x": -0.0958, - "y": 34.9418 - }, - { - "l": "98.0", - "x": -0.0767, - "y": 35.471 - }, - { - "l": "98.0", - "x": -0.0575, - "y": 35.9635 - }, - { - "l": "98.0", - "x": -0.0383, - "y": 36.4198 - }, - { - "l": "98.0", - "x": -0.0192, - "y": 36.8394 - }, - { - "l": "98.0", - "x": -0.0, - "y": 37.2343 - }, - { - "l": "98.0", - "x": 0.0192, - "y": 37.6132 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 37.9799 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 37.9799 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": -0.3258, - "y": 24.2088 - }, - { - "l": "99.6", - "x": -0.3066, - "y": 25.4815 - }, - { - "l": "99.6", - "x": -0.2875, - "y": 26.7651 - }, - { - "l": "99.6", - "x": -0.2683, - "y": 28.0535 - }, - { - "l": "99.6", - "x": -0.2491, - "y": 29.3188 - }, - { - "l": "99.6", - "x": -0.23, - "y": 30.4989 - }, - { - "l": "99.6", - "x": -0.2108, - "y": 31.5453 - }, - { - "l": "99.6", - "x": -0.1916, - "y": 32.4743 - }, - { - "l": "99.6", - "x": -0.1725, - "y": 33.3102 - }, - { - "l": "99.6", - "x": -0.1533, - "y": 34.0589 - }, - { - "l": "99.6", - "x": -0.1342, - "y": 34.7303 - }, - { - "l": "99.6", - "x": -0.115, - "y": 35.3336 - }, - { - "l": "99.6", - "x": -0.0958, - "y": 35.8793 - }, - { - "l": "99.6", - "x": -0.0767, - "y": 36.3777 - }, - { - "l": "99.6", - "x": -0.0575, - "y": 36.8372 - }, - { - "l": "99.6", - "x": -0.0383, - "y": 37.26 - }, - { - "l": "99.6", - "x": -0.0192, - "y": 37.6465 - }, - { - "l": "99.6", - "x": -0.0, - "y": 38.0088 - }, - { - "l": "99.6", - "x": 0.0192, - "y": 38.3553 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 38.6891 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 38.6891 - } - ] - } - ], - "bmi": null - }, - "female": null - } - }, - { - "uk_who_infant": { - "male": { - "height": null, - "weight": null, - "ofc": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 0.0383, - "y": 32.749 - }, - { - "l": "0.4", - "x": 0.0575, - "y": 33.408 - }, - { - "l": "0.4", - "x": 0.0767, - "y": 33.9788 - }, - { - "l": "0.4", - "x": 0.0958, - "y": 34.4856 - }, - { - "l": "0.4", - "x": 0.115, - "y": 34.943 - }, - { - "l": "0.4", - "x": 0.1342, - "y": 35.3617 - }, - { - "l": "0.4", - "x": 0.1533, - "y": 35.7481 - }, - { - "l": "0.4", - "x": 0.1725, - "y": 36.1083 - }, - { - "l": "0.4", - "x": 0.1916, - "y": 36.446 - }, - { - "l": "0.4", - "x": 0.2108, - "y": 36.7642 - }, - { - "l": "0.4", - "x": 0.23, - "y": 37.0647 - }, - { - "l": "0.4", - "x": 0.2491, - "y": 37.3493 - }, - { - "l": "0.4", - "x": 0.2683, - "y": 37.6098 - }, - { - "l": "0.4", - "x": 0.2875, - "y": 37.8653 - }, - { - "l": "0.4", - "x": 0.3066, - "y": 38.1144 - }, - { - "l": "0.4", - "x": 0.3258, - "y": 38.3555 - }, - { - "l": "0.4", - "x": 0.345, - "y": 38.5828 - }, - { - "l": "0.4", - "x": 0.3641, - "y": 38.7973 - }, - { - "l": "0.4", - "x": 0.3833, - "y": 39.0023 - }, - { - "l": "0.4", - "x": 0.4025, - "y": 39.1983 - }, - { - "l": "0.4", - "x": 0.4216, - "y": 39.3859 - }, - { - "l": "0.4", - "x": 0.4408, - "y": 39.5659 - }, - { - "l": "0.4", - "x": 0.46, - "y": 39.7383 - }, - { - "l": "0.4", - "x": 0.4791, - "y": 39.9035 - }, - { - "l": "0.4", - "x": 0.4983, - "y": 40.0618 - }, - { - "l": "0.4", - "x": 0.5175, - "y": 40.2139 - }, - { - "l": "0.4", - "x": 0.5366, - "y": 40.3599 - }, - { - "l": "0.4", - "x": 0.5558, - "y": 40.5001 - }, - { - "l": "0.4", - "x": 0.5749, - "y": 40.6346 - }, - { - "l": "0.4", - "x": 0.5941, - "y": 40.7639 - }, - { - "l": "0.4", - "x": 0.6133, - "y": 40.8882 - }, - { - "l": "0.4", - "x": 0.6324, - "y": 41.0077 - }, - { - "l": "0.4", - "x": 0.6516, - "y": 41.1226 - }, - { - "l": "0.4", - "x": 0.6708, - "y": 41.2332 - }, - { - "l": "0.4", - "x": 0.6899, - "y": 41.3398 - }, - { - "l": "0.4", - "x": 0.7091, - "y": 41.4425 - }, - { - "l": "0.4", - "x": 0.7283, - "y": 41.5414 - }, - { - "l": "0.4", - "x": 0.7474, - "y": 41.6369 - }, - { - "l": "0.4", - "x": 0.7666, - "y": 41.7292 - }, - { - "l": "0.4", - "x": 0.7858, - "y": 41.8184 - }, - { - "l": "0.4", - "x": 0.8049, - "y": 41.9045 - }, - { - "l": "0.4", - "x": 0.8241, - "y": 41.9878 - }, - { - "l": "0.4", - "x": 0.8433, - "y": 42.0684 - }, - { - "l": "0.4", - "x": 0.8624, - "y": 42.1464 - }, - { - "l": "0.4", - "x": 0.8816, - "y": 42.222 - }, - { - "l": "0.4", - "x": 0.9008, - "y": 42.2952 - }, - { - "l": "0.4", - "x": 0.9199, - "y": 42.366 - }, - { - "l": "0.4", - "x": 0.9391, - "y": 42.4348 - }, - { - "l": "0.4", - "x": 0.9582, - "y": 42.5014 - }, - { - "l": "0.4", - "x": 0.9774, - "y": 42.5661 - }, - { - "l": "0.4", - "x": 0.9966, - "y": 42.629 - }, - { - "l": "0.4", - "x": 1.0157, - "y": 42.6902 - }, - { - "l": "0.4", - "x": 1.0349, - "y": 42.7498 - }, - { - "l": "0.4", - "x": 1.0541, - "y": 42.8077 - }, - { - "l": "0.4", - "x": 1.0732, - "y": 42.864 - }, - { - "l": "0.4", - "x": 1.0924, - "y": 42.9187 - }, - { - "l": "0.4", - "x": 1.1116, - "y": 42.9718 - }, - { - "l": "0.4", - "x": 1.1307, - "y": 43.0236 - }, - { - "l": "0.4", - "x": 1.1499, - "y": 43.0741 - }, - { - "l": "0.4", - "x": 1.1691, - "y": 43.1234 - }, - { - "l": "0.4", - "x": 1.1882, - "y": 43.172 - }, - { - "l": "0.4", - "x": 1.2074, - "y": 43.2194 - }, - { - "l": "0.4", - "x": 1.2266, - "y": 43.2658 - }, - { - "l": "0.4", - "x": 1.2457, - "y": 43.3112 - }, - { - "l": "0.4", - "x": 1.2649, - "y": 43.3553 - }, - { - "l": "0.4", - "x": 1.2841, - "y": 43.3983 - }, - { - "l": "0.4", - "x": 1.3032, - "y": 43.4405 - }, - { - "l": "0.4", - "x": 1.3224, - "y": 43.4818 - }, - { - "l": "0.4", - "x": 1.3415, - "y": 43.5225 - }, - { - "l": "0.4", - "x": 1.3607, - "y": 43.5627 - }, - { - "l": "0.4", - "x": 1.3799, - "y": 43.6021 - }, - { - "l": "0.4", - "x": 1.399, - "y": 43.6409 - }, - { - "l": "0.4", - "x": 1.4182, - "y": 43.679 - }, - { - "l": "0.4", - "x": 1.4374, - "y": 43.7163 - }, - { - "l": "0.4", - "x": 1.4565, - "y": 43.753 - }, - { - "l": "0.4", - "x": 1.4757, - "y": 43.7891 - }, - { - "l": "0.4", - "x": 1.4949, - "y": 43.8246 - }, - { - "l": "0.4", - "x": 1.514, - "y": 43.8597 - }, - { - "l": "0.4", - "x": 1.5332, - "y": 43.8943 - }, - { - "l": "0.4", - "x": 1.5524, - "y": 43.9284 - }, - { - "l": "0.4", - "x": 1.5715, - "y": 43.962 - }, - { - "l": "0.4", - "x": 1.5907, - "y": 43.9953 - }, - { - "l": "0.4", - "x": 1.6099, - "y": 44.0282 - }, - { - "l": "0.4", - "x": 1.629, - "y": 44.0607 - }, - { - "l": "0.4", - "x": 1.6482, - "y": 44.0928 - }, - { - "l": "0.4", - "x": 1.6674, - "y": 44.1244 - }, - { - "l": "0.4", - "x": 1.6865, - "y": 44.1555 - }, - { - "l": "0.4", - "x": 1.7057, - "y": 44.1862 - }, - { - "l": "0.4", - "x": 1.7248, - "y": 44.2165 - }, - { - "l": "0.4", - "x": 1.744, - "y": 44.2466 - }, - { - "l": "0.4", - "x": 1.7632, - "y": 44.2765 - }, - { - "l": "0.4", - "x": 1.7823, - "y": 44.3063 - }, - { - "l": "0.4", - "x": 1.8015, - "y": 44.3357 - }, - { - "l": "0.4", - "x": 1.8207, - "y": 44.3648 - }, - { - "l": "0.4", - "x": 1.8398, - "y": 44.3936 - }, - { - "l": "0.4", - "x": 1.859, - "y": 44.4219 - }, - { - "l": "0.4", - "x": 1.8782, - "y": 44.4499 - }, - { - "l": "0.4", - "x": 1.8973, - "y": 44.4777 - }, - { - "l": "0.4", - "x": 1.9165, - "y": 44.5051 - }, - { - "l": "0.4", - "x": 1.9357, - "y": 44.5318 - }, - { - "l": "0.4", - "x": 1.9548, - "y": 44.5586 - }, - { - "l": "0.4", - "x": 1.974, - "y": 44.5854 - }, - { - "l": "0.4", - "x": 1.9932, - "y": 44.6121 - }, - { - "l": "0.4", - "x": 2.0, - "y": 44.6217 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 0.0383, - "y": 33.5279 - }, - { - "l": "2.0", - "x": 0.0575, - "y": 34.1864 - }, - { - "l": "2.0", - "x": 0.0767, - "y": 34.7572 - }, - { - "l": "2.0", - "x": 0.0958, - "y": 35.2645 - }, - { - "l": "2.0", - "x": 0.115, - "y": 35.7224 - }, - { - "l": "2.0", - "x": 0.1342, - "y": 36.1419 - }, - { - "l": "2.0", - "x": 0.1533, - "y": 36.5292 - }, - { - "l": "2.0", - "x": 0.1725, - "y": 36.8904 - }, - { - "l": "2.0", - "x": 0.1916, - "y": 37.2295 - }, - { - "l": "2.0", - "x": 0.2108, - "y": 37.549 - }, - { - "l": "2.0", - "x": 0.23, - "y": 37.8509 - }, - { - "l": "2.0", - "x": 0.2491, - "y": 38.1372 - }, - { - "l": "2.0", - "x": 0.2683, - "y": 38.402 - }, - { - "l": "2.0", - "x": 0.2875, - "y": 38.66 - }, - { - "l": "2.0", - "x": 0.3066, - "y": 38.9102 - }, - { - "l": "2.0", - "x": 0.3258, - "y": 39.1515 - }, - { - "l": "2.0", - "x": 0.345, - "y": 39.38 - }, - { - "l": "2.0", - "x": 0.3641, - "y": 39.5966 - }, - { - "l": "2.0", - "x": 0.3833, - "y": 39.8036 - }, - { - "l": "2.0", - "x": 0.4025, - "y": 40.0016 - }, - { - "l": "2.0", - "x": 0.4216, - "y": 40.1913 - }, - { - "l": "2.0", - "x": 0.4408, - "y": 40.3734 - }, - { - "l": "2.0", - "x": 0.46, - "y": 40.5478 - }, - { - "l": "2.0", - "x": 0.4791, - "y": 40.715 - }, - { - "l": "2.0", - "x": 0.4983, - "y": 40.8754 - }, - { - "l": "2.0", - "x": 0.5175, - "y": 41.0295 - }, - { - "l": "2.0", - "x": 0.5366, - "y": 41.1774 - }, - { - "l": "2.0", - "x": 0.5558, - "y": 41.3195 - }, - { - "l": "2.0", - "x": 0.5749, - "y": 41.4559 - }, - { - "l": "2.0", - "x": 0.5941, - "y": 41.5871 - }, - { - "l": "2.0", - "x": 0.6133, - "y": 41.7132 - }, - { - "l": "2.0", - "x": 0.6324, - "y": 41.8345 - }, - { - "l": "2.0", - "x": 0.6516, - "y": 41.9512 - }, - { - "l": "2.0", - "x": 0.6708, - "y": 42.0636 - }, - { - "l": "2.0", - "x": 0.6899, - "y": 42.172 - }, - { - "l": "2.0", - "x": 0.7091, - "y": 42.2764 - }, - { - "l": "2.0", - "x": 0.7283, - "y": 42.3771 - }, - { - "l": "2.0", - "x": 0.7474, - "y": 42.4743 - }, - { - "l": "2.0", - "x": 0.7666, - "y": 42.5682 - }, - { - "l": "2.0", - "x": 0.7858, - "y": 42.659 - }, - { - "l": "2.0", - "x": 0.8049, - "y": 42.7468 - }, - { - "l": "2.0", - "x": 0.8241, - "y": 42.8316 - }, - { - "l": "2.0", - "x": 0.8433, - "y": 42.9137 - }, - { - "l": "2.0", - "x": 0.8624, - "y": 42.9932 - }, - { - "l": "2.0", - "x": 0.8816, - "y": 43.0702 - }, - { - "l": "2.0", - "x": 0.9008, - "y": 43.1448 - }, - { - "l": "2.0", - "x": 0.9199, - "y": 43.2171 - }, - { - "l": "2.0", - "x": 0.9391, - "y": 43.2872 - }, - { - "l": "2.0", - "x": 0.9582, - "y": 43.3552 - }, - { - "l": "2.0", - "x": 0.9774, - "y": 43.4212 - }, - { - "l": "2.0", - "x": 0.9966, - "y": 43.4853 - }, - { - "l": "2.0", - "x": 1.0157, - "y": 43.5477 - }, - { - "l": "2.0", - "x": 1.0349, - "y": 43.6085 - }, - { - "l": "2.0", - "x": 1.0541, - "y": 43.6676 - }, - { - "l": "2.0", - "x": 1.0732, - "y": 43.725 - }, - { - "l": "2.0", - "x": 1.0924, - "y": 43.7809 - }, - { - "l": "2.0", - "x": 1.1116, - "y": 43.8352 - }, - { - "l": "2.0", - "x": 1.1307, - "y": 43.8882 - }, - { - "l": "2.0", - "x": 1.1499, - "y": 43.9398 - }, - { - "l": "2.0", - "x": 1.1691, - "y": 43.9903 - }, - { - "l": "2.0", - "x": 1.1882, - "y": 44.0399 - }, - { - "l": "2.0", - "x": 1.2074, - "y": 44.0884 - }, - { - "l": "2.0", - "x": 1.2266, - "y": 44.1358 - }, - { - "l": "2.0", - "x": 1.2457, - "y": 44.1822 - }, - { - "l": "2.0", - "x": 1.2649, - "y": 44.2273 - }, - { - "l": "2.0", - "x": 1.2841, - "y": 44.2715 - }, - { - "l": "2.0", - "x": 1.3032, - "y": 44.3147 - }, - { - "l": "2.0", - "x": 1.3224, - "y": 44.3571 - }, - { - "l": "2.0", - "x": 1.3415, - "y": 44.3989 - }, - { - "l": "2.0", - "x": 1.3607, - "y": 44.44 - }, - { - "l": "2.0", - "x": 1.3799, - "y": 44.4804 - }, - { - "l": "2.0", - "x": 1.399, - "y": 44.5201 - }, - { - "l": "2.0", - "x": 1.4182, - "y": 44.5591 - }, - { - "l": "2.0", - "x": 1.4374, - "y": 44.5974 - }, - { - "l": "2.0", - "x": 1.4565, - "y": 44.6351 - }, - { - "l": "2.0", - "x": 1.4757, - "y": 44.6721 - }, - { - "l": "2.0", - "x": 1.4949, - "y": 44.7086 - }, - { - "l": "2.0", - "x": 1.514, - "y": 44.7446 - }, - { - "l": "2.0", - "x": 1.5332, - "y": 44.7801 - }, - { - "l": "2.0", - "x": 1.5524, - "y": 44.8152 - }, - { - "l": "2.0", - "x": 1.5715, - "y": 44.8498 - }, - { - "l": "2.0", - "x": 1.5907, - "y": 44.8839 - }, - { - "l": "2.0", - "x": 1.6099, - "y": 44.9177 - }, - { - "l": "2.0", - "x": 1.629, - "y": 44.9511 - }, - { - "l": "2.0", - "x": 1.6482, - "y": 44.984 - }, - { - "l": "2.0", - "x": 1.6674, - "y": 45.0166 - }, - { - "l": "2.0", - "x": 1.6865, - "y": 45.0486 - }, - { - "l": "2.0", - "x": 1.7057, - "y": 45.0802 - }, - { - "l": "2.0", - "x": 1.7248, - "y": 45.1115 - }, - { - "l": "2.0", - "x": 1.744, - "y": 45.1425 - }, - { - "l": "2.0", - "x": 1.7632, - "y": 45.1733 - }, - { - "l": "2.0", - "x": 1.7823, - "y": 45.2039 - }, - { - "l": "2.0", - "x": 1.8015, - "y": 45.2342 - }, - { - "l": "2.0", - "x": 1.8207, - "y": 45.2641 - }, - { - "l": "2.0", - "x": 1.8398, - "y": 45.2937 - }, - { - "l": "2.0", - "x": 1.859, - "y": 45.323 - }, - { - "l": "2.0", - "x": 1.8782, - "y": 45.3519 - }, - { - "l": "2.0", - "x": 1.8973, - "y": 45.3805 - }, - { - "l": "2.0", - "x": 1.9165, - "y": 45.4088 - }, - { - "l": "2.0", - "x": 1.9357, - "y": 45.4364 - }, - { - "l": "2.0", - "x": 1.9548, - "y": 45.464 - }, - { - "l": "2.0", - "x": 1.974, - "y": 45.4917 - }, - { - "l": "2.0", - "x": 1.9932, - "y": 45.5193 - }, - { - "l": "2.0", - "x": 2.0, - "y": 45.5292 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 0.0383, - "y": 34.3069 - }, - { - "l": "9.0", - "x": 0.0575, - "y": 34.9648 - }, - { - "l": "9.0", - "x": 0.0767, - "y": 35.5357 - }, - { - "l": "9.0", - "x": 0.0958, - "y": 36.0433 - }, - { - "l": "9.0", - "x": 0.115, - "y": 36.5019 - }, - { - "l": "9.0", - "x": 0.1342, - "y": 36.9221 - }, - { - "l": "9.0", - "x": 0.1533, - "y": 37.3102 - }, - { - "l": "9.0", - "x": 0.1725, - "y": 37.6726 - }, - { - "l": "9.0", - "x": 0.1916, - "y": 38.0129 - }, - { - "l": "9.0", - "x": 0.2108, - "y": 38.3338 - }, - { - "l": "9.0", - "x": 0.23, - "y": 38.6371 - }, - { - "l": "9.0", - "x": 0.2491, - "y": 38.925 - }, - { - "l": "9.0", - "x": 0.2683, - "y": 39.1943 - }, - { - "l": "9.0", - "x": 0.2875, - "y": 39.4548 - }, - { - "l": "9.0", - "x": 0.3066, - "y": 39.706 - }, - { - "l": "9.0", - "x": 0.3258, - "y": 39.9475 - }, - { - "l": "9.0", - "x": 0.345, - "y": 40.1772 - }, - { - "l": "9.0", - "x": 0.3641, - "y": 40.3958 - }, - { - "l": "9.0", - "x": 0.3833, - "y": 40.6049 - }, - { - "l": "9.0", - "x": 0.4025, - "y": 40.805 - }, - { - "l": "9.0", - "x": 0.4216, - "y": 40.9967 - }, - { - "l": "9.0", - "x": 0.4408, - "y": 41.1808 - }, - { - "l": "9.0", - "x": 0.46, - "y": 41.3573 - }, - { - "l": "9.0", - "x": 0.4791, - "y": 41.5266 - }, - { - "l": "9.0", - "x": 0.4983, - "y": 41.6889 - }, - { - "l": "9.0", - "x": 0.5175, - "y": 41.845 - }, - { - "l": "9.0", - "x": 0.5366, - "y": 41.9949 - }, - { - "l": "9.0", - "x": 0.5558, - "y": 42.1389 - }, - { - "l": "9.0", - "x": 0.5749, - "y": 42.2772 - }, - { - "l": "9.0", - "x": 0.5941, - "y": 42.4102 - }, - { - "l": "9.0", - "x": 0.6133, - "y": 42.5382 - }, - { - "l": "9.0", - "x": 0.6324, - "y": 42.6614 - }, - { - "l": "9.0", - "x": 0.6516, - "y": 42.7799 - }, - { - "l": "9.0", - "x": 0.6708, - "y": 42.8941 - }, - { - "l": "9.0", - "x": 0.6899, - "y": 43.0042 - }, - { - "l": "9.0", - "x": 0.7091, - "y": 43.1104 - }, - { - "l": "9.0", - "x": 0.7283, - "y": 43.2128 - }, - { - "l": "9.0", - "x": 0.7474, - "y": 43.3116 - }, - { - "l": "9.0", - "x": 0.7666, - "y": 43.4072 - }, - { - "l": "9.0", - "x": 0.7858, - "y": 43.4997 - }, - { - "l": "9.0", - "x": 0.8049, - "y": 43.589 - }, - { - "l": "9.0", - "x": 0.8241, - "y": 43.6754 - }, - { - "l": "9.0", - "x": 0.8433, - "y": 43.759 - }, - { - "l": "9.0", - "x": 0.8624, - "y": 43.84 - }, - { - "l": "9.0", - "x": 0.8816, - "y": 43.9184 - }, - { - "l": "9.0", - "x": 0.9008, - "y": 43.9944 - }, - { - "l": "9.0", - "x": 0.9199, - "y": 44.0681 - }, - { - "l": "9.0", - "x": 0.9391, - "y": 44.1395 - }, - { - "l": "9.0", - "x": 0.9582, - "y": 44.2089 - }, - { - "l": "9.0", - "x": 0.9774, - "y": 44.2762 - }, - { - "l": "9.0", - "x": 0.9966, - "y": 44.3416 - }, - { - "l": "9.0", - "x": 1.0157, - "y": 44.4052 - }, - { - "l": "9.0", - "x": 1.0349, - "y": 44.4672 - }, - { - "l": "9.0", - "x": 1.0541, - "y": 44.5274 - }, - { - "l": "9.0", - "x": 1.0732, - "y": 44.586 - }, - { - "l": "9.0", - "x": 1.0924, - "y": 44.6431 - }, - { - "l": "9.0", - "x": 1.1116, - "y": 44.6986 - }, - { - "l": "9.0", - "x": 1.1307, - "y": 44.7528 - }, - { - "l": "9.0", - "x": 1.1499, - "y": 44.8056 - }, - { - "l": "9.0", - "x": 1.1691, - "y": 44.8572 - }, - { - "l": "9.0", - "x": 1.1882, - "y": 44.9079 - }, - { - "l": "9.0", - "x": 1.2074, - "y": 44.9574 - }, - { - "l": "9.0", - "x": 1.2266, - "y": 45.0058 - }, - { - "l": "9.0", - "x": 1.2457, - "y": 45.0531 - }, - { - "l": "9.0", - "x": 1.2649, - "y": 45.0994 - }, - { - "l": "9.0", - "x": 1.2841, - "y": 45.1446 - }, - { - "l": "9.0", - "x": 1.3032, - "y": 45.189 - }, - { - "l": "9.0", - "x": 1.3224, - "y": 45.2324 - }, - { - "l": "9.0", - "x": 1.3415, - "y": 45.2752 - }, - { - "l": "9.0", - "x": 1.3607, - "y": 45.3173 - }, - { - "l": "9.0", - "x": 1.3799, - "y": 45.3587 - }, - { - "l": "9.0", - "x": 1.399, - "y": 45.3993 - }, - { - "l": "9.0", - "x": 1.4182, - "y": 45.4393 - }, - { - "l": "9.0", - "x": 1.4374, - "y": 45.4785 - }, - { - "l": "9.0", - "x": 1.4565, - "y": 45.5172 - }, - { - "l": "9.0", - "x": 1.4757, - "y": 45.5552 - }, - { - "l": "9.0", - "x": 1.4949, - "y": 45.5926 - }, - { - "l": "9.0", - "x": 1.514, - "y": 45.6296 - }, - { - "l": "9.0", - "x": 1.5332, - "y": 45.666 - }, - { - "l": "9.0", - "x": 1.5524, - "y": 45.702 - }, - { - "l": "9.0", - "x": 1.5715, - "y": 45.7375 - }, - { - "l": "9.0", - "x": 1.5907, - "y": 45.7726 - }, - { - "l": "9.0", - "x": 1.6099, - "y": 45.8072 - }, - { - "l": "9.0", - "x": 1.629, - "y": 45.8415 - }, - { - "l": "9.0", - "x": 1.6482, - "y": 45.8753 - }, - { - "l": "9.0", - "x": 1.6674, - "y": 45.9088 - }, - { - "l": "9.0", - "x": 1.6865, - "y": 45.9417 - }, - { - "l": "9.0", - "x": 1.7057, - "y": 45.9743 - }, - { - "l": "9.0", - "x": 1.7248, - "y": 46.0066 - }, - { - "l": "9.0", - "x": 1.744, - "y": 46.0385 - }, - { - "l": "9.0", - "x": 1.7632, - "y": 46.0701 - }, - { - "l": "9.0", - "x": 1.7823, - "y": 46.1015 - }, - { - "l": "9.0", - "x": 1.8015, - "y": 46.1326 - }, - { - "l": "9.0", - "x": 1.8207, - "y": 46.1634 - }, - { - "l": "9.0", - "x": 1.8398, - "y": 46.1939 - }, - { - "l": "9.0", - "x": 1.859, - "y": 46.224 - }, - { - "l": "9.0", - "x": 1.8782, - "y": 46.2538 - }, - { - "l": "9.0", - "x": 1.8973, - "y": 46.2833 - }, - { - "l": "9.0", - "x": 1.9165, - "y": 46.3124 - }, - { - "l": "9.0", - "x": 1.9357, - "y": 46.3409 - }, - { - "l": "9.0", - "x": 1.9548, - "y": 46.3694 - }, - { - "l": "9.0", - "x": 1.974, - "y": 46.3979 - }, - { - "l": "9.0", - "x": 1.9932, - "y": 46.4264 - }, - { - "l": "9.0", - "x": 2.0, - "y": 46.4366 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 0.0383, - "y": 35.0859 - }, - { - "l": "25.0", - "x": 0.0575, - "y": 35.7432 - }, - { - "l": "25.0", - "x": 0.0767, - "y": 36.3141 - }, - { - "l": "25.0", - "x": 0.0958, - "y": 36.8222 - }, - { - "l": "25.0", - "x": 0.115, - "y": 37.2814 - }, - { - "l": "25.0", - "x": 0.1342, - "y": 37.7022 - }, - { - "l": "25.0", - "x": 0.1533, - "y": 38.0913 - }, - { - "l": "25.0", - "x": 0.1725, - "y": 38.4547 - }, - { - "l": "25.0", - "x": 0.1916, - "y": 38.7963 - }, - { - "l": "25.0", - "x": 0.2108, - "y": 39.1185 - }, - { - "l": "25.0", - "x": 0.23, - "y": 39.4234 - }, - { - "l": "25.0", - "x": 0.2491, - "y": 39.7129 - }, - { - "l": "25.0", - "x": 0.2683, - "y": 39.9866 - }, - { - "l": "25.0", - "x": 0.2875, - "y": 40.2495 - }, - { - "l": "25.0", - "x": 0.3066, - "y": 40.5017 - }, - { - "l": "25.0", - "x": 0.3258, - "y": 40.7435 - }, - { - "l": "25.0", - "x": 0.345, - "y": 40.9744 - }, - { - "l": "25.0", - "x": 0.3641, - "y": 41.195 - }, - { - "l": "25.0", - "x": 0.3833, - "y": 41.4061 - }, - { - "l": "25.0", - "x": 0.4025, - "y": 41.6083 - }, - { - "l": "25.0", - "x": 0.4216, - "y": 41.8022 - }, - { - "l": "25.0", - "x": 0.4408, - "y": 41.9883 - }, - { - "l": "25.0", - "x": 0.46, - "y": 42.1669 - }, - { - "l": "25.0", - "x": 0.4791, - "y": 42.3381 - }, - { - "l": "25.0", - "x": 0.4983, - "y": 42.5025 - }, - { - "l": "25.0", - "x": 0.5175, - "y": 42.6606 - }, - { - "l": "25.0", - "x": 0.5366, - "y": 42.8124 - }, - { - "l": "25.0", - "x": 0.5558, - "y": 42.9583 - }, - { - "l": "25.0", - "x": 0.5749, - "y": 43.0985 - }, - { - "l": "25.0", - "x": 0.5941, - "y": 43.2334 - }, - { - "l": "25.0", - "x": 0.6133, - "y": 43.3633 - }, - { - "l": "25.0", - "x": 0.6324, - "y": 43.4882 - }, - { - "l": "25.0", - "x": 0.6516, - "y": 43.6085 - }, - { - "l": "25.0", - "x": 0.6708, - "y": 43.7245 - }, - { - "l": "25.0", - "x": 0.6899, - "y": 43.8364 - }, - { - "l": "25.0", - "x": 0.7091, - "y": 43.9443 - }, - { - "l": "25.0", - "x": 0.7283, - "y": 44.0485 - }, - { - "l": "25.0", - "x": 0.7474, - "y": 44.149 - }, - { - "l": "25.0", - "x": 0.7666, - "y": 44.2463 - }, - { - "l": "25.0", - "x": 0.7858, - "y": 44.3403 - }, - { - "l": "25.0", - "x": 0.8049, - "y": 44.4312 - }, - { - "l": "25.0", - "x": 0.8241, - "y": 44.5192 - }, - { - "l": "25.0", - "x": 0.8433, - "y": 44.6043 - }, - { - "l": "25.0", - "x": 0.8624, - "y": 44.6868 - }, - { - "l": "25.0", - "x": 0.8816, - "y": 44.7667 - }, - { - "l": "25.0", - "x": 0.9008, - "y": 44.8441 - }, - { - "l": "25.0", - "x": 0.9199, - "y": 44.9191 - }, - { - "l": "25.0", - "x": 0.9391, - "y": 44.9919 - }, - { - "l": "25.0", - "x": 0.9582, - "y": 45.0626 - }, - { - "l": "25.0", - "x": 0.9774, - "y": 45.1312 - }, - { - "l": "25.0", - "x": 0.9966, - "y": 45.1979 - }, - { - "l": "25.0", - "x": 1.0157, - "y": 45.2627 - }, - { - "l": "25.0", - "x": 1.0349, - "y": 45.3258 - }, - { - "l": "25.0", - "x": 1.0541, - "y": 45.3873 - }, - { - "l": "25.0", - "x": 1.0732, - "y": 45.447 - }, - { - "l": "25.0", - "x": 1.0924, - "y": 45.5053 - }, - { - "l": "25.0", - "x": 1.1116, - "y": 45.562 - }, - { - "l": "25.0", - "x": 1.1307, - "y": 45.6174 - }, - { - "l": "25.0", - "x": 1.1499, - "y": 45.6714 - }, - { - "l": "25.0", - "x": 1.1691, - "y": 45.7242 - }, - { - "l": "25.0", - "x": 1.1882, - "y": 45.7758 - }, - { - "l": "25.0", - "x": 1.2074, - "y": 45.8264 - }, - { - "l": "25.0", - "x": 1.2266, - "y": 45.8758 - }, - { - "l": "25.0", - "x": 1.2457, - "y": 45.9241 - }, - { - "l": "25.0", - "x": 1.2649, - "y": 45.9714 - }, - { - "l": "25.0", - "x": 1.2841, - "y": 46.0178 - }, - { - "l": "25.0", - "x": 1.3032, - "y": 46.0632 - }, - { - "l": "25.0", - "x": 1.3224, - "y": 46.1078 - }, - { - "l": "25.0", - "x": 1.3415, - "y": 46.1516 - }, - { - "l": "25.0", - "x": 1.3607, - "y": 46.1946 - }, - { - "l": "25.0", - "x": 1.3799, - "y": 46.2369 - }, - { - "l": "25.0", - "x": 1.399, - "y": 46.2785 - }, - { - "l": "25.0", - "x": 1.4182, - "y": 46.3194 - }, - { - "l": "25.0", - "x": 1.4374, - "y": 46.3596 - }, - { - "l": "25.0", - "x": 1.4565, - "y": 46.3992 - }, - { - "l": "25.0", - "x": 1.4757, - "y": 46.4382 - }, - { - "l": "25.0", - "x": 1.4949, - "y": 46.4766 - }, - { - "l": "25.0", - "x": 1.514, - "y": 46.5145 - }, - { - "l": "25.0", - "x": 1.5332, - "y": 46.5519 - }, - { - "l": "25.0", - "x": 1.5524, - "y": 46.5888 - }, - { - "l": "25.0", - "x": 1.5715, - "y": 46.6252 - }, - { - "l": "25.0", - "x": 1.5907, - "y": 46.6612 - }, - { - "l": "25.0", - "x": 1.6099, - "y": 46.6968 - }, - { - "l": "25.0", - "x": 1.629, - "y": 46.7319 - }, - { - "l": "25.0", - "x": 1.6482, - "y": 46.7666 - }, - { - "l": "25.0", - "x": 1.6674, - "y": 46.801 - }, - { - "l": "25.0", - "x": 1.6865, - "y": 46.8349 - }, - { - "l": "25.0", - "x": 1.7057, - "y": 46.8684 - }, - { - "l": "25.0", - "x": 1.7248, - "y": 46.9016 - }, - { - "l": "25.0", - "x": 1.744, - "y": 46.9344 - }, - { - "l": "25.0", - "x": 1.7632, - "y": 46.9669 - }, - { - "l": "25.0", - "x": 1.7823, - "y": 46.9992 - }, - { - "l": "25.0", - "x": 1.8015, - "y": 47.0311 - }, - { - "l": "25.0", - "x": 1.8207, - "y": 47.0627 - }, - { - "l": "25.0", - "x": 1.8398, - "y": 47.094 - }, - { - "l": "25.0", - "x": 1.859, - "y": 47.125 - }, - { - "l": "25.0", - "x": 1.8782, - "y": 47.1557 - }, - { - "l": "25.0", - "x": 1.8973, - "y": 47.1861 - }, - { - "l": "25.0", - "x": 1.9165, - "y": 47.2161 - }, - { - "l": "25.0", - "x": 1.9357, - "y": 47.2455 - }, - { - "l": "25.0", - "x": 1.9548, - "y": 47.2749 - }, - { - "l": "25.0", - "x": 1.974, - "y": 47.3042 - }, - { - "l": "25.0", - "x": 1.9932, - "y": 47.3336 - }, - { - "l": "25.0", - "x": 2.0, - "y": 47.3441 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 0.0383, - "y": 35.8649 - }, - { - "l": "50.0", - "x": 0.0575, - "y": 36.5216 - }, - { - "l": "50.0", - "x": 0.0767, - "y": 37.0926 - }, - { - "l": "50.0", - "x": 0.0958, - "y": 37.601 - }, - { - "l": "50.0", - "x": 0.115, - "y": 38.0609 - }, - { - "l": "50.0", - "x": 0.1342, - "y": 38.4824 - }, - { - "l": "50.0", - "x": 0.1533, - "y": 38.8724 - }, - { - "l": "50.0", - "x": 0.1725, - "y": 39.2368 - }, - { - "l": "50.0", - "x": 0.1916, - "y": 39.5797 - }, - { - "l": "50.0", - "x": 0.2108, - "y": 39.9033 - }, - { - "l": "50.0", - "x": 0.23, - "y": 40.2096 - }, - { - "l": "50.0", - "x": 0.2491, - "y": 40.5008 - }, - { - "l": "50.0", - "x": 0.2683, - "y": 40.7789 - }, - { - "l": "50.0", - "x": 0.2875, - "y": 41.0442 - }, - { - "l": "50.0", - "x": 0.3066, - "y": 41.2975 - }, - { - "l": "50.0", - "x": 0.3258, - "y": 41.5395 - }, - { - "l": "50.0", - "x": 0.345, - "y": 41.7716 - }, - { - "l": "50.0", - "x": 0.3641, - "y": 41.9942 - }, - { - "l": "50.0", - "x": 0.3833, - "y": 42.2074 - }, - { - "l": "50.0", - "x": 0.4025, - "y": 42.4117 - }, - { - "l": "50.0", - "x": 0.4216, - "y": 42.6076 - }, - { - "l": "50.0", - "x": 0.4408, - "y": 42.7958 - }, - { - "l": "50.0", - "x": 0.46, - "y": 42.9764 - }, - { - "l": "50.0", - "x": 0.4791, - "y": 43.1497 - }, - { - "l": "50.0", - "x": 0.4983, - "y": 43.3161 - }, - { - "l": "50.0", - "x": 0.5175, - "y": 43.4761 - }, - { - "l": "50.0", - "x": 0.5366, - "y": 43.6299 - }, - { - "l": "50.0", - "x": 0.5558, - "y": 43.7777 - }, - { - "l": "50.0", - "x": 0.5749, - "y": 43.9198 - }, - { - "l": "50.0", - "x": 0.5941, - "y": 44.0566 - }, - { - "l": "50.0", - "x": 0.6133, - "y": 44.1883 - }, - { - "l": "50.0", - "x": 0.6324, - "y": 44.3151 - }, - { - "l": "50.0", - "x": 0.6516, - "y": 44.4372 - }, - { - "l": "50.0", - "x": 0.6708, - "y": 44.5549 - }, - { - "l": "50.0", - "x": 0.6899, - "y": 44.6686 - }, - { - "l": "50.0", - "x": 0.7091, - "y": 44.7783 - }, - { - "l": "50.0", - "x": 0.7283, - "y": 44.8841 - }, - { - "l": "50.0", - "x": 0.7474, - "y": 44.9864 - }, - { - "l": "50.0", - "x": 0.7666, - "y": 45.0853 - }, - { - "l": "50.0", - "x": 0.7858, - "y": 45.181 - }, - { - "l": "50.0", - "x": 0.8049, - "y": 45.2735 - }, - { - "l": "50.0", - "x": 0.8241, - "y": 45.363 - }, - { - "l": "50.0", - "x": 0.8433, - "y": 45.4496 - }, - { - "l": "50.0", - "x": 0.8624, - "y": 45.5336 - }, - { - "l": "50.0", - "x": 0.8816, - "y": 45.6149 - }, - { - "l": "50.0", - "x": 0.9008, - "y": 45.6937 - }, - { - "l": "50.0", - "x": 0.9199, - "y": 45.7701 - }, - { - "l": "50.0", - "x": 0.9391, - "y": 45.8443 - }, - { - "l": "50.0", - "x": 0.9582, - "y": 45.9163 - }, - { - "l": "50.0", - "x": 0.9774, - "y": 45.9862 - }, - { - "l": "50.0", - "x": 0.9966, - "y": 46.0542 - }, - { - "l": "50.0", - "x": 1.0157, - "y": 46.1203 - }, - { - "l": "50.0", - "x": 1.0349, - "y": 46.1845 - }, - { - "l": "50.0", - "x": 1.0541, - "y": 46.2471 - }, - { - "l": "50.0", - "x": 1.0732, - "y": 46.308 - }, - { - "l": "50.0", - "x": 1.0924, - "y": 46.3674 - }, - { - "l": "50.0", - "x": 1.1116, - "y": 46.4254 - }, - { - "l": "50.0", - "x": 1.1307, - "y": 46.482 - }, - { - "l": "50.0", - "x": 1.1499, - "y": 46.5372 - }, - { - "l": "50.0", - "x": 1.1691, - "y": 46.5911 - }, - { - "l": "50.0", - "x": 1.1882, - "y": 46.6438 - }, - { - "l": "50.0", - "x": 1.2074, - "y": 46.6953 - }, - { - "l": "50.0", - "x": 1.2266, - "y": 46.7458 - }, - { - "l": "50.0", - "x": 1.2457, - "y": 46.7951 - }, - { - "l": "50.0", - "x": 1.2649, - "y": 46.8435 - }, - { - "l": "50.0", - "x": 1.2841, - "y": 46.8909 - }, - { - "l": "50.0", - "x": 1.3032, - "y": 46.9375 - }, - { - "l": "50.0", - "x": 1.3224, - "y": 46.9831 - }, - { - "l": "50.0", - "x": 1.3415, - "y": 47.0279 - }, - { - "l": "50.0", - "x": 1.3607, - "y": 47.0719 - }, - { - "l": "50.0", - "x": 1.3799, - "y": 47.1152 - }, - { - "l": "50.0", - "x": 1.399, - "y": 47.1577 - }, - { - "l": "50.0", - "x": 1.4182, - "y": 47.1995 - }, - { - "l": "50.0", - "x": 1.4374, - "y": 47.2407 - }, - { - "l": "50.0", - "x": 1.4565, - "y": 47.2813 - }, - { - "l": "50.0", - "x": 1.4757, - "y": 47.3213 - }, - { - "l": "50.0", - "x": 1.4949, - "y": 47.3606 - }, - { - "l": "50.0", - "x": 1.514, - "y": 47.3995 - }, - { - "l": "50.0", - "x": 1.5332, - "y": 47.4378 - }, - { - "l": "50.0", - "x": 1.5524, - "y": 47.4756 - }, - { - "l": "50.0", - "x": 1.5715, - "y": 47.5129 - }, - { - "l": "50.0", - "x": 1.5907, - "y": 47.5498 - }, - { - "l": "50.0", - "x": 1.6099, - "y": 47.5863 - }, - { - "l": "50.0", - "x": 1.629, - "y": 47.6223 - }, - { - "l": "50.0", - "x": 1.6482, - "y": 47.6579 - }, - { - "l": "50.0", - "x": 1.6674, - "y": 47.6932 - }, - { - "l": "50.0", - "x": 1.6865, - "y": 47.728 - }, - { - "l": "50.0", - "x": 1.7057, - "y": 47.7625 - }, - { - "l": "50.0", - "x": 1.7248, - "y": 47.7966 - }, - { - "l": "50.0", - "x": 1.744, - "y": 47.8303 - }, - { - "l": "50.0", - "x": 1.7632, - "y": 47.8637 - }, - { - "l": "50.0", - "x": 1.7823, - "y": 47.8968 - }, - { - "l": "50.0", - "x": 1.8015, - "y": 47.9296 - }, - { - "l": "50.0", - "x": 1.8207, - "y": 47.962 - }, - { - "l": "50.0", - "x": 1.8398, - "y": 47.9942 - }, - { - "l": "50.0", - "x": 1.859, - "y": 48.026 - }, - { - "l": "50.0", - "x": 1.8782, - "y": 48.0576 - }, - { - "l": "50.0", - "x": 1.8973, - "y": 48.0889 - }, - { - "l": "50.0", - "x": 1.9165, - "y": 48.1198 - }, - { - "l": "50.0", - "x": 1.9357, - "y": 48.15 - }, - { - "l": "50.0", - "x": 1.9548, - "y": 48.1803 - }, - { - "l": "50.0", - "x": 1.974, - "y": 48.2105 - }, - { - "l": "50.0", - "x": 1.9932, - "y": 48.2407 - }, - { - "l": "50.0", - "x": 2.0, - "y": 48.2515 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 0.0383, - "y": 36.6439 - }, - { - "l": "75.0", - "x": 0.0575, - "y": 37.3 - }, - { - "l": "75.0", - "x": 0.0767, - "y": 37.8711 - }, - { - "l": "75.0", - "x": 0.0958, - "y": 38.3798 - }, - { - "l": "75.0", - "x": 0.115, - "y": 38.8404 - }, - { - "l": "75.0", - "x": 0.1342, - "y": 39.2626 - }, - { - "l": "75.0", - "x": 0.1533, - "y": 39.6535 - }, - { - "l": "75.0", - "x": 0.1725, - "y": 40.0189 - }, - { - "l": "75.0", - "x": 0.1916, - "y": 40.3631 - }, - { - "l": "75.0", - "x": 0.2108, - "y": 40.6881 - }, - { - "l": "75.0", - "x": 0.23, - "y": 40.9958 - }, - { - "l": "75.0", - "x": 0.2491, - "y": 41.2887 - }, - { - "l": "75.0", - "x": 0.2683, - "y": 41.5712 - }, - { - "l": "75.0", - "x": 0.2875, - "y": 41.839 - }, - { - "l": "75.0", - "x": 0.3066, - "y": 42.0933 - }, - { - "l": "75.0", - "x": 0.3258, - "y": 42.3355 - }, - { - "l": "75.0", - "x": 0.345, - "y": 42.5688 - }, - { - "l": "75.0", - "x": 0.3641, - "y": 42.7935 - }, - { - "l": "75.0", - "x": 0.3833, - "y": 43.0087 - }, - { - "l": "75.0", - "x": 0.4025, - "y": 43.2151 - }, - { - "l": "75.0", - "x": 0.4216, - "y": 43.4131 - }, - { - "l": "75.0", - "x": 0.4408, - "y": 43.6033 - }, - { - "l": "75.0", - "x": 0.46, - "y": 43.7859 - }, - { - "l": "75.0", - "x": 0.4791, - "y": 43.9612 - }, - { - "l": "75.0", - "x": 0.4983, - "y": 44.1296 - }, - { - "l": "75.0", - "x": 0.5175, - "y": 44.2917 - }, - { - "l": "75.0", - "x": 0.5366, - "y": 44.4474 - }, - { - "l": "75.0", - "x": 0.5558, - "y": 44.5971 - }, - { - "l": "75.0", - "x": 0.5749, - "y": 44.7412 - }, - { - "l": "75.0", - "x": 0.5941, - "y": 44.8798 - }, - { - "l": "75.0", - "x": 0.6133, - "y": 45.0133 - }, - { - "l": "75.0", - "x": 0.6324, - "y": 45.1419 - }, - { - "l": "75.0", - "x": 0.6516, - "y": 45.2658 - }, - { - "l": "75.0", - "x": 0.6708, - "y": 45.3853 - }, - { - "l": "75.0", - "x": 0.6899, - "y": 45.5008 - }, - { - "l": "75.0", - "x": 0.7091, - "y": 45.6122 - }, - { - "l": "75.0", - "x": 0.7283, - "y": 45.7198 - }, - { - "l": "75.0", - "x": 0.7474, - "y": 45.8237 - }, - { - "l": "75.0", - "x": 0.7666, - "y": 45.9243 - }, - { - "l": "75.0", - "x": 0.7858, - "y": 46.0216 - }, - { - "l": "75.0", - "x": 0.8049, - "y": 46.1157 - }, - { - "l": "75.0", - "x": 0.8241, - "y": 46.2068 - }, - { - "l": "75.0", - "x": 0.8433, - "y": 46.295 - }, - { - "l": "75.0", - "x": 0.8624, - "y": 46.3804 - }, - { - "l": "75.0", - "x": 0.8816, - "y": 46.4631 - }, - { - "l": "75.0", - "x": 0.9008, - "y": 46.5433 - }, - { - "l": "75.0", - "x": 0.9199, - "y": 46.6211 - }, - { - "l": "75.0", - "x": 0.9391, - "y": 46.6967 - }, - { - "l": "75.0", - "x": 0.9582, - "y": 46.77 - }, - { - "l": "75.0", - "x": 0.9774, - "y": 46.8413 - }, - { - "l": "75.0", - "x": 0.9966, - "y": 46.9105 - }, - { - "l": "75.0", - "x": 1.0157, - "y": 46.9778 - }, - { - "l": "75.0", - "x": 1.0349, - "y": 47.0432 - }, - { - "l": "75.0", - "x": 1.0541, - "y": 47.107 - }, - { - "l": "75.0", - "x": 1.0732, - "y": 47.169 - }, - { - "l": "75.0", - "x": 1.0924, - "y": 47.2296 - }, - { - "l": "75.0", - "x": 1.1116, - "y": 47.2888 - }, - { - "l": "75.0", - "x": 1.1307, - "y": 47.3465 - }, - { - "l": "75.0", - "x": 1.1499, - "y": 47.4029 - }, - { - "l": "75.0", - "x": 1.1691, - "y": 47.458 - }, - { - "l": "75.0", - "x": 1.1882, - "y": 47.5117 - }, - { - "l": "75.0", - "x": 1.2074, - "y": 47.5643 - }, - { - "l": "75.0", - "x": 1.2266, - "y": 47.6157 - }, - { - "l": "75.0", - "x": 1.2457, - "y": 47.6661 - }, - { - "l": "75.0", - "x": 1.2649, - "y": 47.7156 - }, - { - "l": "75.0", - "x": 1.2841, - "y": 47.7641 - }, - { - "l": "75.0", - "x": 1.3032, - "y": 47.8117 - }, - { - "l": "75.0", - "x": 1.3224, - "y": 47.8584 - }, - { - "l": "75.0", - "x": 1.3415, - "y": 47.9043 - }, - { - "l": "75.0", - "x": 1.3607, - "y": 47.9492 - }, - { - "l": "75.0", - "x": 1.3799, - "y": 47.9934 - }, - { - "l": "75.0", - "x": 1.399, - "y": 48.0369 - }, - { - "l": "75.0", - "x": 1.4182, - "y": 48.0797 - }, - { - "l": "75.0", - "x": 1.4374, - "y": 48.1218 - }, - { - "l": "75.0", - "x": 1.4565, - "y": 48.1634 - }, - { - "l": "75.0", - "x": 1.4757, - "y": 48.2043 - }, - { - "l": "75.0", - "x": 1.4949, - "y": 48.2446 - }, - { - "l": "75.0", - "x": 1.514, - "y": 48.2844 - }, - { - "l": "75.0", - "x": 1.5332, - "y": 48.3237 - }, - { - "l": "75.0", - "x": 1.5524, - "y": 48.3624 - }, - { - "l": "75.0", - "x": 1.5715, - "y": 48.4007 - }, - { - "l": "75.0", - "x": 1.5907, - "y": 48.4384 - }, - { - "l": "75.0", - "x": 1.6099, - "y": 48.4758 - }, - { - "l": "75.0", - "x": 1.629, - "y": 48.5127 - }, - { - "l": "75.0", - "x": 1.6482, - "y": 48.5492 - }, - { - "l": "75.0", - "x": 1.6674, - "y": 48.5853 - }, - { - "l": "75.0", - "x": 1.6865, - "y": 48.6211 - }, - { - "l": "75.0", - "x": 1.7057, - "y": 48.6565 - }, - { - "l": "75.0", - "x": 1.7248, - "y": 48.6916 - }, - { - "l": "75.0", - "x": 1.744, - "y": 48.7263 - }, - { - "l": "75.0", - "x": 1.7632, - "y": 48.7605 - }, - { - "l": "75.0", - "x": 1.7823, - "y": 48.7945 - }, - { - "l": "75.0", - "x": 1.8015, - "y": 48.8281 - }, - { - "l": "75.0", - "x": 1.8207, - "y": 48.8613 - }, - { - "l": "75.0", - "x": 1.8398, - "y": 48.8943 - }, - { - "l": "75.0", - "x": 1.859, - "y": 48.9271 - }, - { - "l": "75.0", - "x": 1.8782, - "y": 48.9595 - }, - { - "l": "75.0", - "x": 1.8973, - "y": 48.9916 - }, - { - "l": "75.0", - "x": 1.9165, - "y": 49.0235 - }, - { - "l": "75.0", - "x": 1.9357, - "y": 49.0546 - }, - { - "l": "75.0", - "x": 1.9548, - "y": 49.0857 - }, - { - "l": "75.0", - "x": 1.974, - "y": 49.1168 - }, - { - "l": "75.0", - "x": 1.9932, - "y": 49.1478 - }, - { - "l": "75.0", - "x": 2.0, - "y": 49.1589 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 0.0383, - "y": 37.4229 - }, - { - "l": "91.0", - "x": 0.0575, - "y": 38.0784 - }, - { - "l": "91.0", - "x": 0.0767, - "y": 38.6495 - }, - { - "l": "91.0", - "x": 0.0958, - "y": 39.1587 - }, - { - "l": "91.0", - "x": 0.115, - "y": 39.6199 - }, - { - "l": "91.0", - "x": 0.1342, - "y": 40.0427 - }, - { - "l": "91.0", - "x": 0.1533, - "y": 40.4346 - }, - { - "l": "91.0", - "x": 0.1725, - "y": 40.801 - }, - { - "l": "91.0", - "x": 0.1916, - "y": 41.1465 - }, - { - "l": "91.0", - "x": 0.2108, - "y": 41.4728 - }, - { - "l": "91.0", - "x": 0.23, - "y": 41.7821 - }, - { - "l": "91.0", - "x": 0.2491, - "y": 42.0766 - }, - { - "l": "91.0", - "x": 0.2683, - "y": 42.3635 - }, - { - "l": "91.0", - "x": 0.2875, - "y": 42.6337 - }, - { - "l": "91.0", - "x": 0.3066, - "y": 42.889 - }, - { - "l": "91.0", - "x": 0.3258, - "y": 43.1315 - }, - { - "l": "91.0", - "x": 0.345, - "y": 43.366 - }, - { - "l": "91.0", - "x": 0.3641, - "y": 43.5927 - }, - { - "l": "91.0", - "x": 0.3833, - "y": 43.81 - }, - { - "l": "91.0", - "x": 0.4025, - "y": 44.0184 - }, - { - "l": "91.0", - "x": 0.4216, - "y": 44.2185 - }, - { - "l": "91.0", - "x": 0.4408, - "y": 44.4108 - }, - { - "l": "91.0", - "x": 0.46, - "y": 44.5954 - }, - { - "l": "91.0", - "x": 0.4791, - "y": 44.7728 - }, - { - "l": "91.0", - "x": 0.4983, - "y": 44.9432 - }, - { - "l": "91.0", - "x": 0.5175, - "y": 45.1072 - }, - { - "l": "91.0", - "x": 0.5366, - "y": 45.2649 - }, - { - "l": "91.0", - "x": 0.5558, - "y": 45.4166 - }, - { - "l": "91.0", - "x": 0.5749, - "y": 45.5625 - }, - { - "l": "91.0", - "x": 0.5941, - "y": 45.703 - }, - { - "l": "91.0", - "x": 0.6133, - "y": 45.8383 - }, - { - "l": "91.0", - "x": 0.6324, - "y": 45.9688 - }, - { - "l": "91.0", - "x": 0.6516, - "y": 46.0945 - }, - { - "l": "91.0", - "x": 0.6708, - "y": 46.2157 - }, - { - "l": "91.0", - "x": 0.6899, - "y": 46.333 - }, - { - "l": "91.0", - "x": 0.7091, - "y": 46.4462 - }, - { - "l": "91.0", - "x": 0.7283, - "y": 46.5555 - }, - { - "l": "91.0", - "x": 0.7474, - "y": 46.6611 - }, - { - "l": "91.0", - "x": 0.7666, - "y": 46.7634 - }, - { - "l": "91.0", - "x": 0.7858, - "y": 46.8623 - }, - { - "l": "91.0", - "x": 0.8049, - "y": 46.958 - }, - { - "l": "91.0", - "x": 0.8241, - "y": 47.0506 - }, - { - "l": "91.0", - "x": 0.8433, - "y": 47.1403 - }, - { - "l": "91.0", - "x": 0.8624, - "y": 47.2272 - }, - { - "l": "91.0", - "x": 0.8816, - "y": 47.3113 - }, - { - "l": "91.0", - "x": 0.9008, - "y": 47.393 - }, - { - "l": "91.0", - "x": 0.9199, - "y": 47.4721 - }, - { - "l": "91.0", - "x": 0.9391, - "y": 47.5491 - }, - { - "l": "91.0", - "x": 0.9582, - "y": 47.6237 - }, - { - "l": "91.0", - "x": 0.9774, - "y": 47.6963 - }, - { - "l": "91.0", - "x": 0.9966, - "y": 47.7668 - }, - { - "l": "91.0", - "x": 1.0157, - "y": 47.8353 - }, - { - "l": "91.0", - "x": 1.0349, - "y": 47.9019 - }, - { - "l": "91.0", - "x": 1.0541, - "y": 47.9668 - }, - { - "l": "91.0", - "x": 1.0732, - "y": 48.03 - }, - { - "l": "91.0", - "x": 1.0924, - "y": 48.0918 - }, - { - "l": "91.0", - "x": 1.1116, - "y": 48.1522 - }, - { - "l": "91.0", - "x": 1.1307, - "y": 48.2111 - }, - { - "l": "91.0", - "x": 1.1499, - "y": 48.2687 - }, - { - "l": "91.0", - "x": 1.1691, - "y": 48.3249 - }, - { - "l": "91.0", - "x": 1.1882, - "y": 48.3797 - }, - { - "l": "91.0", - "x": 1.2074, - "y": 48.4333 - }, - { - "l": "91.0", - "x": 1.2266, - "y": 48.4857 - }, - { - "l": "91.0", - "x": 1.2457, - "y": 48.5371 - }, - { - "l": "91.0", - "x": 1.2649, - "y": 48.5876 - }, - { - "l": "91.0", - "x": 1.2841, - "y": 48.6373 - }, - { - "l": "91.0", - "x": 1.3032, - "y": 48.686 - }, - { - "l": "91.0", - "x": 1.3224, - "y": 48.7338 - }, - { - "l": "91.0", - "x": 1.3415, - "y": 48.7806 - }, - { - "l": "91.0", - "x": 1.3607, - "y": 48.8266 - }, - { - "l": "91.0", - "x": 1.3799, - "y": 48.8717 - }, - { - "l": "91.0", - "x": 1.399, - "y": 48.9161 - }, - { - "l": "91.0", - "x": 1.4182, - "y": 48.9598 - }, - { - "l": "91.0", - "x": 1.4374, - "y": 49.0029 - }, - { - "l": "91.0", - "x": 1.4565, - "y": 49.0454 - }, - { - "l": "91.0", - "x": 1.4757, - "y": 49.0873 - }, - { - "l": "91.0", - "x": 1.4949, - "y": 49.1287 - }, - { - "l": "91.0", - "x": 1.514, - "y": 49.1694 - }, - { - "l": "91.0", - "x": 1.5332, - "y": 49.2096 - }, - { - "l": "91.0", - "x": 1.5524, - "y": 49.2492 - }, - { - "l": "91.0", - "x": 1.5715, - "y": 49.2884 - }, - { - "l": "91.0", - "x": 1.5907, - "y": 49.3271 - }, - { - "l": "91.0", - "x": 1.6099, - "y": 49.3653 - }, - { - "l": "91.0", - "x": 1.629, - "y": 49.4031 - }, - { - "l": "91.0", - "x": 1.6482, - "y": 49.4405 - }, - { - "l": "91.0", - "x": 1.6674, - "y": 49.4775 - }, - { - "l": "91.0", - "x": 1.6865, - "y": 49.5143 - }, - { - "l": "91.0", - "x": 1.7057, - "y": 49.5506 - }, - { - "l": "91.0", - "x": 1.7248, - "y": 49.5866 - }, - { - "l": "91.0", - "x": 1.744, - "y": 49.6222 - }, - { - "l": "91.0", - "x": 1.7632, - "y": 49.6573 - }, - { - "l": "91.0", - "x": 1.7823, - "y": 49.6921 - }, - { - "l": "91.0", - "x": 1.8015, - "y": 49.7265 - }, - { - "l": "91.0", - "x": 1.8207, - "y": 49.7606 - }, - { - "l": "91.0", - "x": 1.8398, - "y": 49.7945 - }, - { - "l": "91.0", - "x": 1.859, - "y": 49.8281 - }, - { - "l": "91.0", - "x": 1.8782, - "y": 49.8614 - }, - { - "l": "91.0", - "x": 1.8973, - "y": 49.8944 - }, - { - "l": "91.0", - "x": 1.9165, - "y": 49.9272 - }, - { - "l": "91.0", - "x": 1.9357, - "y": 49.9592 - }, - { - "l": "91.0", - "x": 1.9548, - "y": 49.9911 - }, - { - "l": "91.0", - "x": 1.974, - "y": 50.023 - }, - { - "l": "91.0", - "x": 1.9932, - "y": 50.055 - }, - { - "l": "91.0", - "x": 2.0, - "y": 50.0664 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 0.0383, - "y": 38.2019 - }, - { - "l": "98.0", - "x": 0.0575, - "y": 38.8568 - }, - { - "l": "98.0", - "x": 0.0767, - "y": 39.428 - }, - { - "l": "98.0", - "x": 0.0958, - "y": 39.9375 - }, - { - "l": "98.0", - "x": 0.115, - "y": 40.3994 - }, - { - "l": "98.0", - "x": 0.1342, - "y": 40.8229 - }, - { - "l": "98.0", - "x": 0.1533, - "y": 41.2156 - }, - { - "l": "98.0", - "x": 0.1725, - "y": 41.5832 - }, - { - "l": "98.0", - "x": 0.1916, - "y": 41.9299 - }, - { - "l": "98.0", - "x": 0.2108, - "y": 42.2576 - }, - { - "l": "98.0", - "x": 0.23, - "y": 42.5683 - }, - { - "l": "98.0", - "x": 0.2491, - "y": 42.8644 - }, - { - "l": "98.0", - "x": 0.2683, - "y": 43.1558 - }, - { - "l": "98.0", - "x": 0.2875, - "y": 43.4284 - }, - { - "l": "98.0", - "x": 0.3066, - "y": 43.6848 - }, - { - "l": "98.0", - "x": 0.3258, - "y": 43.9275 - }, - { - "l": "98.0", - "x": 0.345, - "y": 44.1632 - }, - { - "l": "98.0", - "x": 0.3641, - "y": 44.3919 - }, - { - "l": "98.0", - "x": 0.3833, - "y": 44.6113 - }, - { - "l": "98.0", - "x": 0.4025, - "y": 44.8218 - }, - { - "l": "98.0", - "x": 0.4216, - "y": 45.0239 - }, - { - "l": "98.0", - "x": 0.4408, - "y": 45.2183 - }, - { - "l": "98.0", - "x": 0.46, - "y": 45.405 - }, - { - "l": "98.0", - "x": 0.4791, - "y": 45.5844 - }, - { - "l": "98.0", - "x": 0.4983, - "y": 45.7568 - }, - { - "l": "98.0", - "x": 0.5175, - "y": 45.9227 - }, - { - "l": "98.0", - "x": 0.5366, - "y": 46.0824 - }, - { - "l": "98.0", - "x": 0.5558, - "y": 46.236 - }, - { - "l": "98.0", - "x": 0.5749, - "y": 46.3838 - }, - { - "l": "98.0", - "x": 0.5941, - "y": 46.5262 - }, - { - "l": "98.0", - "x": 0.6133, - "y": 46.6634 - }, - { - "l": "98.0", - "x": 0.6324, - "y": 46.7956 - }, - { - "l": "98.0", - "x": 0.6516, - "y": 46.9231 - }, - { - "l": "98.0", - "x": 0.6708, - "y": 47.0462 - }, - { - "l": "98.0", - "x": 0.6899, - "y": 47.1652 - }, - { - "l": "98.0", - "x": 0.7091, - "y": 47.2801 - }, - { - "l": "98.0", - "x": 0.7283, - "y": 47.3911 - }, - { - "l": "98.0", - "x": 0.7474, - "y": 47.4985 - }, - { - "l": "98.0", - "x": 0.7666, - "y": 47.6024 - }, - { - "l": "98.0", - "x": 0.7858, - "y": 47.7029 - }, - { - "l": "98.0", - "x": 0.8049, - "y": 47.8002 - }, - { - "l": "98.0", - "x": 0.8241, - "y": 47.8944 - }, - { - "l": "98.0", - "x": 0.8433, - "y": 47.9856 - }, - { - "l": "98.0", - "x": 0.8624, - "y": 48.0739 - }, - { - "l": "98.0", - "x": 0.8816, - "y": 48.1596 - }, - { - "l": "98.0", - "x": 0.9008, - "y": 48.2426 - }, - { - "l": "98.0", - "x": 0.9199, - "y": 48.3232 - }, - { - "l": "98.0", - "x": 0.9391, - "y": 48.4014 - }, - { - "l": "98.0", - "x": 0.9582, - "y": 48.4775 - }, - { - "l": "98.0", - "x": 0.9774, - "y": 48.5513 - }, - { - "l": "98.0", - "x": 0.9966, - "y": 48.6231 - }, - { - "l": "98.0", - "x": 1.0157, - "y": 48.6928 - }, - { - "l": "98.0", - "x": 1.0349, - "y": 48.7606 - }, - { - "l": "98.0", - "x": 1.0541, - "y": 48.8266 - }, - { - "l": "98.0", - "x": 1.0732, - "y": 48.891 - }, - { - "l": "98.0", - "x": 1.0924, - "y": 48.954 - }, - { - "l": "98.0", - "x": 1.1116, - "y": 49.0156 - }, - { - "l": "98.0", - "x": 1.1307, - "y": 49.0757 - }, - { - "l": "98.0", - "x": 1.1499, - "y": 49.1345 - }, - { - "l": "98.0", - "x": 1.1691, - "y": 49.1918 - }, - { - "l": "98.0", - "x": 1.1882, - "y": 49.2477 - }, - { - "l": "98.0", - "x": 1.2074, - "y": 49.3023 - }, - { - "l": "98.0", - "x": 1.2266, - "y": 49.3557 - }, - { - "l": "98.0", - "x": 1.2457, - "y": 49.4081 - }, - { - "l": "98.0", - "x": 1.2649, - "y": 49.4597 - }, - { - "l": "98.0", - "x": 1.2841, - "y": 49.5104 - }, - { - "l": "98.0", - "x": 1.3032, - "y": 49.5602 - }, - { - "l": "98.0", - "x": 1.3224, - "y": 49.6091 - }, - { - "l": "98.0", - "x": 1.3415, - "y": 49.657 - }, - { - "l": "98.0", - "x": 1.3607, - "y": 49.7039 - }, - { - "l": "98.0", - "x": 1.3799, - "y": 49.75 - }, - { - "l": "98.0", - "x": 1.399, - "y": 49.7953 - }, - { - "l": "98.0", - "x": 1.4182, - "y": 49.8399 - }, - { - "l": "98.0", - "x": 1.4374, - "y": 49.884 - }, - { - "l": "98.0", - "x": 1.4565, - "y": 49.9275 - }, - { - "l": "98.0", - "x": 1.4757, - "y": 49.9704 - }, - { - "l": "98.0", - "x": 1.4949, - "y": 50.0127 - }, - { - "l": "98.0", - "x": 1.514, - "y": 50.0543 - }, - { - "l": "98.0", - "x": 1.5332, - "y": 50.0954 - }, - { - "l": "98.0", - "x": 1.5524, - "y": 50.136 - }, - { - "l": "98.0", - "x": 1.5715, - "y": 50.1761 - }, - { - "l": "98.0", - "x": 1.5907, - "y": 50.2157 - }, - { - "l": "98.0", - "x": 1.6099, - "y": 50.2548 - }, - { - "l": "98.0", - "x": 1.629, - "y": 50.2935 - }, - { - "l": "98.0", - "x": 1.6482, - "y": 50.3318 - }, - { - "l": "98.0", - "x": 1.6674, - "y": 50.3697 - }, - { - "l": "98.0", - "x": 1.6865, - "y": 50.4074 - }, - { - "l": "98.0", - "x": 1.7057, - "y": 50.4447 - }, - { - "l": "98.0", - "x": 1.7248, - "y": 50.4816 - }, - { - "l": "98.0", - "x": 1.744, - "y": 50.5181 - }, - { - "l": "98.0", - "x": 1.7632, - "y": 50.5541 - }, - { - "l": "98.0", - "x": 1.7823, - "y": 50.5897 - }, - { - "l": "98.0", - "x": 1.8015, - "y": 50.625 - }, - { - "l": "98.0", - "x": 1.8207, - "y": 50.6599 - }, - { - "l": "98.0", - "x": 1.8398, - "y": 50.6946 - }, - { - "l": "98.0", - "x": 1.859, - "y": 50.7291 - }, - { - "l": "98.0", - "x": 1.8782, - "y": 50.7633 - }, - { - "l": "98.0", - "x": 1.8973, - "y": 50.7972 - }, - { - "l": "98.0", - "x": 1.9165, - "y": 50.8309 - }, - { - "l": "98.0", - "x": 1.9357, - "y": 50.8637 - }, - { - "l": "98.0", - "x": 1.9548, - "y": 50.8965 - }, - { - "l": "98.0", - "x": 1.974, - "y": 50.9293 - }, - { - "l": "98.0", - "x": 1.9932, - "y": 50.9621 - }, - { - "l": "98.0", - "x": 2.0, - "y": 50.9738 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 0.0383, - "y": 38.9808 - }, - { - "l": "99.6", - "x": 0.0575, - "y": 39.6352 - }, - { - "l": "99.6", - "x": 0.0767, - "y": 40.2064 - }, - { - "l": "99.6", - "x": 0.0958, - "y": 40.7164 - }, - { - "l": "99.6", - "x": 0.115, - "y": 41.1788 - }, - { - "l": "99.6", - "x": 0.1342, - "y": 41.6031 - }, - { - "l": "99.6", - "x": 0.1533, - "y": 41.9967 - }, - { - "l": "99.6", - "x": 0.1725, - "y": 42.3653 - }, - { - "l": "99.6", - "x": 0.1916, - "y": 42.7134 - }, - { - "l": "99.6", - "x": 0.2108, - "y": 43.0424 - }, - { - "l": "99.6", - "x": 0.23, - "y": 43.3545 - }, - { - "l": "99.6", - "x": 0.2491, - "y": 43.6523 - }, - { - "l": "99.6", - "x": 0.2683, - "y": 43.9481 - }, - { - "l": "99.6", - "x": 0.2875, - "y": 44.2232 - }, - { - "l": "99.6", - "x": 0.3066, - "y": 44.4806 - }, - { - "l": "99.6", - "x": 0.3258, - "y": 44.7235 - }, - { - "l": "99.6", - "x": 0.345, - "y": 44.9604 - }, - { - "l": "99.6", - "x": 0.3641, - "y": 45.1911 - }, - { - "l": "99.6", - "x": 0.3833, - "y": 45.4125 - }, - { - "l": "99.6", - "x": 0.4025, - "y": 45.6251 - }, - { - "l": "99.6", - "x": 0.4216, - "y": 45.8294 - }, - { - "l": "99.6", - "x": 0.4408, - "y": 46.0258 - }, - { - "l": "99.6", - "x": 0.46, - "y": 46.2145 - }, - { - "l": "99.6", - "x": 0.4791, - "y": 46.3959 - }, - { - "l": "99.6", - "x": 0.4983, - "y": 46.5703 - }, - { - "l": "99.6", - "x": 0.5175, - "y": 46.7383 - }, - { - "l": "99.6", - "x": 0.5366, - "y": 46.8999 - }, - { - "l": "99.6", - "x": 0.5558, - "y": 47.0554 - }, - { - "l": "99.6", - "x": 0.5749, - "y": 47.2051 - }, - { - "l": "99.6", - "x": 0.5941, - "y": 47.3494 - }, - { - "l": "99.6", - "x": 0.6133, - "y": 47.4884 - }, - { - "l": "99.6", - "x": 0.6324, - "y": 47.6224 - }, - { - "l": "99.6", - "x": 0.6516, - "y": 47.7517 - }, - { - "l": "99.6", - "x": 0.6708, - "y": 47.8766 - }, - { - "l": "99.6", - "x": 0.6899, - "y": 47.9974 - }, - { - "l": "99.6", - "x": 0.7091, - "y": 48.114 - }, - { - "l": "99.6", - "x": 0.7283, - "y": 48.2268 - }, - { - "l": "99.6", - "x": 0.7474, - "y": 48.3359 - }, - { - "l": "99.6", - "x": 0.7666, - "y": 48.4414 - }, - { - "l": "99.6", - "x": 0.7858, - "y": 48.5436 - }, - { - "l": "99.6", - "x": 0.8049, - "y": 48.6425 - }, - { - "l": "99.6", - "x": 0.8241, - "y": 48.7382 - }, - { - "l": "99.6", - "x": 0.8433, - "y": 48.8309 - }, - { - "l": "99.6", - "x": 0.8624, - "y": 48.9207 - }, - { - "l": "99.6", - "x": 0.8816, - "y": 49.0078 - }, - { - "l": "99.6", - "x": 0.9008, - "y": 49.0922 - }, - { - "l": "99.6", - "x": 0.9199, - "y": 49.1742 - }, - { - "l": "99.6", - "x": 0.9391, - "y": 49.2538 - }, - { - "l": "99.6", - "x": 0.9582, - "y": 49.3312 - }, - { - "l": "99.6", - "x": 0.9774, - "y": 49.4063 - }, - { - "l": "99.6", - "x": 0.9966, - "y": 49.4794 - }, - { - "l": "99.6", - "x": 1.0157, - "y": 49.5503 - }, - { - "l": "99.6", - "x": 1.0349, - "y": 49.6193 - }, - { - "l": "99.6", - "x": 1.0541, - "y": 49.6865 - }, - { - "l": "99.6", - "x": 1.0732, - "y": 49.752 - }, - { - "l": "99.6", - "x": 1.0924, - "y": 49.8162 - }, - { - "l": "99.6", - "x": 1.1116, - "y": 49.879 - }, - { - "l": "99.6", - "x": 1.1307, - "y": 49.9403 - }, - { - "l": "99.6", - "x": 1.1499, - "y": 50.0002 - }, - { - "l": "99.6", - "x": 1.1691, - "y": 50.0587 - }, - { - "l": "99.6", - "x": 1.1882, - "y": 50.1156 - }, - { - "l": "99.6", - "x": 1.2074, - "y": 50.1712 - }, - { - "l": "99.6", - "x": 1.2266, - "y": 50.2257 - }, - { - "l": "99.6", - "x": 1.2457, - "y": 50.2791 - }, - { - "l": "99.6", - "x": 1.2649, - "y": 50.3318 - }, - { - "l": "99.6", - "x": 1.2841, - "y": 50.3836 - }, - { - "l": "99.6", - "x": 1.3032, - "y": 50.4345 - }, - { - "l": "99.6", - "x": 1.3224, - "y": 50.4844 - }, - { - "l": "99.6", - "x": 1.3415, - "y": 50.5333 - }, - { - "l": "99.6", - "x": 1.3607, - "y": 50.5812 - }, - { - "l": "99.6", - "x": 1.3799, - "y": 50.6282 - }, - { - "l": "99.6", - "x": 1.399, - "y": 50.6745 - }, - { - "l": "99.6", - "x": 1.4182, - "y": 50.7201 - }, - { - "l": "99.6", - "x": 1.4374, - "y": 50.7651 - }, - { - "l": "99.6", - "x": 1.4565, - "y": 50.8096 - }, - { - "l": "99.6", - "x": 1.4757, - "y": 50.8534 - }, - { - "l": "99.6", - "x": 1.4949, - "y": 50.8967 - }, - { - "l": "99.6", - "x": 1.514, - "y": 50.9393 - }, - { - "l": "99.6", - "x": 1.5332, - "y": 50.9813 - }, - { - "l": "99.6", - "x": 1.5524, - "y": 51.0228 - }, - { - "l": "99.6", - "x": 1.5715, - "y": 51.0638 - }, - { - "l": "99.6", - "x": 1.5907, - "y": 51.1043 - }, - { - "l": "99.6", - "x": 1.6099, - "y": 51.1443 - }, - { - "l": "99.6", - "x": 1.629, - "y": 51.1839 - }, - { - "l": "99.6", - "x": 1.6482, - "y": 51.2231 - }, - { - "l": "99.6", - "x": 1.6674, - "y": 51.2619 - }, - { - "l": "99.6", - "x": 1.6865, - "y": 51.3005 - }, - { - "l": "99.6", - "x": 1.7057, - "y": 51.3388 - }, - { - "l": "99.6", - "x": 1.7248, - "y": 51.3766 - }, - { - "l": "99.6", - "x": 1.744, - "y": 51.4141 - }, - { - "l": "99.6", - "x": 1.7632, - "y": 51.451 - }, - { - "l": "99.6", - "x": 1.7823, - "y": 51.4874 - }, - { - "l": "99.6", - "x": 1.8015, - "y": 51.5235 - }, - { - "l": "99.6", - "x": 1.8207, - "y": 51.5592 - }, - { - "l": "99.6", - "x": 1.8398, - "y": 51.5947 - }, - { - "l": "99.6", - "x": 1.859, - "y": 51.6301 - }, - { - "l": "99.6", - "x": 1.8782, - "y": 51.6652 - }, - { - "l": "99.6", - "x": 1.8973, - "y": 51.7 - }, - { - "l": "99.6", - "x": 1.9165, - "y": 51.7346 - }, - { - "l": "99.6", - "x": 1.9357, - "y": 51.7683 - }, - { - "l": "99.6", - "x": 1.9548, - "y": 51.8019 - }, - { - "l": "99.6", - "x": 1.974, - "y": 51.8356 - }, - { - "l": "99.6", - "x": 1.9932, - "y": 51.8693 - }, - { - "l": "99.6", - "x": 2.0, - "y": 51.8813 - } - ] - } - ], - "bmi": null - }, - "female": null - } - }, - { - "uk_who_child": { - "male": { - "height": null, - "weight": null, - "ofc": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 2.0, - "y": 44.6217 - }, - { - "l": "0.4", - "x": 2.0192, - "y": 44.6474 - }, - { - "l": "0.4", - "x": 2.1025, - "y": 44.758 - }, - { - "l": "0.4", - "x": 2.1858, - "y": 44.8627 - }, - { - "l": "0.4", - "x": 2.2692, - "y": 44.964 - }, - { - "l": "0.4", - "x": 2.3525, - "y": 45.0607 - }, - { - "l": "0.4", - "x": 2.4358, - "y": 45.1528 - }, - { - "l": "0.4", - "x": 2.5192, - "y": 45.2398 - }, - { - "l": "0.4", - "x": 2.6025, - "y": 45.3239 - }, - { - "l": "0.4", - "x": 2.6858, - "y": 45.404 - }, - { - "l": "0.4", - "x": 2.7692, - "y": 45.4804 - }, - { - "l": "0.4", - "x": 2.8525, - "y": 45.5532 - }, - { - "l": "0.4", - "x": 2.9358, - "y": 45.6229 - }, - { - "l": "0.4", - "x": 3.0192, - "y": 45.6895 - }, - { - "l": "0.4", - "x": 3.1025, - "y": 45.7536 - }, - { - "l": "0.4", - "x": 3.1858, - "y": 45.8158 - }, - { - "l": "0.4", - "x": 3.2692, - "y": 45.8743 - }, - { - "l": "0.4", - "x": 3.3525, - "y": 45.9311 - }, - { - "l": "0.4", - "x": 3.4358, - "y": 45.9864 - }, - { - "l": "0.4", - "x": 3.5192, - "y": 46.039 - }, - { - "l": "0.4", - "x": 3.6025, - "y": 46.0908 - }, - { - "l": "0.4", - "x": 3.6858, - "y": 46.1404 - }, - { - "l": "0.4", - "x": 3.7692, - "y": 46.1874 - }, - { - "l": "0.4", - "x": 3.8525, - "y": 46.234 - }, - { - "l": "0.4", - "x": 3.9358, - "y": 46.2788 - }, - { - "l": "0.4", - "x": 4.0, - "y": 46.3124 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 2.0, - "y": 45.5292 - }, - { - "l": "2.0", - "x": 2.0192, - "y": 45.5556 - }, - { - "l": "2.0", - "x": 2.1025, - "y": 45.67 - }, - { - "l": "2.0", - "x": 2.1858, - "y": 45.7785 - }, - { - "l": "2.0", - "x": 2.2692, - "y": 45.8832 - }, - { - "l": "2.0", - "x": 2.3525, - "y": 45.9834 - }, - { - "l": "2.0", - "x": 2.4358, - "y": 46.0788 - }, - { - "l": "2.0", - "x": 2.5192, - "y": 46.1693 - }, - { - "l": "2.0", - "x": 2.6025, - "y": 46.2565 - }, - { - "l": "2.0", - "x": 2.6858, - "y": 46.3397 - }, - { - "l": "2.0", - "x": 2.7692, - "y": 46.4191 - }, - { - "l": "2.0", - "x": 2.8525, - "y": 46.4949 - }, - { - "l": "2.0", - "x": 2.9358, - "y": 46.5674 - }, - { - "l": "2.0", - "x": 3.0192, - "y": 46.6368 - }, - { - "l": "2.0", - "x": 3.1025, - "y": 46.7036 - }, - { - "l": "2.0", - "x": 3.1858, - "y": 46.7683 - }, - { - "l": "2.0", - "x": 3.2692, - "y": 46.8295 - }, - { - "l": "2.0", - "x": 3.3525, - "y": 46.8887 - }, - { - "l": "2.0", - "x": 3.4358, - "y": 46.9464 - }, - { - "l": "2.0", - "x": 3.5192, - "y": 47.0014 - }, - { - "l": "2.0", - "x": 3.6025, - "y": 47.0554 - }, - { - "l": "2.0", - "x": 3.6858, - "y": 47.1071 - }, - { - "l": "2.0", - "x": 3.7692, - "y": 47.1566 - }, - { - "l": "2.0", - "x": 3.8525, - "y": 47.2052 - }, - { - "l": "2.0", - "x": 3.9358, - "y": 47.252 - }, - { - "l": "2.0", - "x": 4.0, - "y": 47.2872 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 2.0, - "y": 46.4366 - }, - { - "l": "9.0", - "x": 2.0192, - "y": 46.4639 - }, - { - "l": "9.0", - "x": 2.1025, - "y": 46.582 - }, - { - "l": "9.0", - "x": 2.1858, - "y": 46.6944 - }, - { - "l": "9.0", - "x": 2.2692, - "y": 46.8025 - }, - { - "l": "9.0", - "x": 2.3525, - "y": 46.906 - }, - { - "l": "9.0", - "x": 2.4358, - "y": 47.0049 - }, - { - "l": "9.0", - "x": 2.5192, - "y": 47.0989 - }, - { - "l": "9.0", - "x": 2.6025, - "y": 47.1892 - }, - { - "l": "9.0", - "x": 2.6858, - "y": 47.2754 - }, - { - "l": "9.0", - "x": 2.7692, - "y": 47.3578 - }, - { - "l": "9.0", - "x": 2.8525, - "y": 47.4365 - }, - { - "l": "9.0", - "x": 2.9358, - "y": 47.5119 - }, - { - "l": "9.0", - "x": 3.0192, - "y": 47.5842 - }, - { - "l": "9.0", - "x": 3.1025, - "y": 47.6536 - }, - { - "l": "9.0", - "x": 3.1858, - "y": 47.7207 - }, - { - "l": "9.0", - "x": 3.2692, - "y": 47.7846 - }, - { - "l": "9.0", - "x": 3.3525, - "y": 47.8464 - }, - { - "l": "9.0", - "x": 3.4358, - "y": 47.9063 - }, - { - "l": "9.0", - "x": 3.5192, - "y": 47.9638 - }, - { - "l": "9.0", - "x": 3.6025, - "y": 48.02 - }, - { - "l": "9.0", - "x": 3.6858, - "y": 48.0739 - }, - { - "l": "9.0", - "x": 3.7692, - "y": 48.1257 - }, - { - "l": "9.0", - "x": 3.8525, - "y": 48.1764 - }, - { - "l": "9.0", - "x": 3.9358, - "y": 48.2252 - }, - { - "l": "9.0", - "x": 4.0, - "y": 48.262 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 2.0, - "y": 47.3441 - }, - { - "l": "25.0", - "x": 2.0192, - "y": 47.3722 - }, - { - "l": "25.0", - "x": 2.1025, - "y": 47.494 - }, - { - "l": "25.0", - "x": 2.1858, - "y": 47.6102 - }, - { - "l": "25.0", - "x": 2.2692, - "y": 47.7218 - }, - { - "l": "25.0", - "x": 2.3525, - "y": 47.8287 - }, - { - "l": "25.0", - "x": 2.4358, - "y": 47.9309 - }, - { - "l": "25.0", - "x": 2.5192, - "y": 48.0284 - }, - { - "l": "25.0", - "x": 2.6025, - "y": 48.1219 - }, - { - "l": "25.0", - "x": 2.6858, - "y": 48.2112 - }, - { - "l": "25.0", - "x": 2.7692, - "y": 48.2965 - }, - { - "l": "25.0", - "x": 2.8525, - "y": 48.3782 - }, - { - "l": "25.0", - "x": 2.9358, - "y": 48.4564 - }, - { - "l": "25.0", - "x": 3.0192, - "y": 48.5315 - }, - { - "l": "25.0", - "x": 3.1025, - "y": 48.6036 - }, - { - "l": "25.0", - "x": 3.1858, - "y": 48.6731 - }, - { - "l": "25.0", - "x": 3.2692, - "y": 48.7397 - }, - { - "l": "25.0", - "x": 3.3525, - "y": 48.804 - }, - { - "l": "25.0", - "x": 3.4358, - "y": 48.8663 - }, - { - "l": "25.0", - "x": 3.5192, - "y": 48.9263 - }, - { - "l": "25.0", - "x": 3.6025, - "y": 48.9845 - }, - { - "l": "25.0", - "x": 3.6858, - "y": 49.0407 - }, - { - "l": "25.0", - "x": 3.7692, - "y": 49.0949 - }, - { - "l": "25.0", - "x": 3.8525, - "y": 49.1476 - }, - { - "l": "25.0", - "x": 3.9358, - "y": 49.1985 - }, - { - "l": "25.0", - "x": 4.0, - "y": 49.2367 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 2.0, - "y": 48.2515 - }, - { - "l": "50.0", - "x": 2.0192, - "y": 48.2805 - }, - { - "l": "50.0", - "x": 2.1025, - "y": 48.406 - }, - { - "l": "50.0", - "x": 2.1858, - "y": 48.5261 - }, - { - "l": "50.0", - "x": 2.2692, - "y": 48.6411 - }, - { - "l": "50.0", - "x": 2.3525, - "y": 48.7513 - }, - { - "l": "50.0", - "x": 2.4358, - "y": 48.857 - }, - { - "l": "50.0", - "x": 2.5192, - "y": 48.9579 - }, - { - "l": "50.0", - "x": 2.6025, - "y": 49.0545 - }, - { - "l": "50.0", - "x": 2.6858, - "y": 49.1469 - }, - { - "l": "50.0", - "x": 2.7692, - "y": 49.2353 - }, - { - "l": "50.0", - "x": 2.8525, - "y": 49.3198 - }, - { - "l": "50.0", - "x": 2.9358, - "y": 49.401 - }, - { - "l": "50.0", - "x": 3.0192, - "y": 49.4788 - }, - { - "l": "50.0", - "x": 3.1025, - "y": 49.5536 - }, - { - "l": "50.0", - "x": 3.1858, - "y": 49.6256 - }, - { - "l": "50.0", - "x": 3.2692, - "y": 49.6948 - }, - { - "l": "50.0", - "x": 3.3525, - "y": 49.7617 - }, - { - "l": "50.0", - "x": 3.4358, - "y": 49.8263 - }, - { - "l": "50.0", - "x": 3.5192, - "y": 49.8887 - }, - { - "l": "50.0", - "x": 3.6025, - "y": 49.9491 - }, - { - "l": "50.0", - "x": 3.6858, - "y": 50.0075 - }, - { - "l": "50.0", - "x": 3.7692, - "y": 50.0641 - }, - { - "l": "50.0", - "x": 3.8525, - "y": 50.1188 - }, - { - "l": "50.0", - "x": 3.9358, - "y": 50.1717 - }, - { - "l": "50.0", - "x": 4.0, - "y": 50.2115 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 2.0, - "y": 49.1589 - }, - { - "l": "75.0", - "x": 2.0192, - "y": 49.1888 - }, - { - "l": "75.0", - "x": 2.1025, - "y": 49.318 - }, - { - "l": "75.0", - "x": 2.1858, - "y": 49.4419 - }, - { - "l": "75.0", - "x": 2.2692, - "y": 49.5604 - }, - { - "l": "75.0", - "x": 2.3525, - "y": 49.674 - }, - { - "l": "75.0", - "x": 2.4358, - "y": 49.783 - }, - { - "l": "75.0", - "x": 2.5192, - "y": 49.8875 - }, - { - "l": "75.0", - "x": 2.6025, - "y": 49.9872 - }, - { - "l": "75.0", - "x": 2.6858, - "y": 50.0826 - }, - { - "l": "75.0", - "x": 2.7692, - "y": 50.174 - }, - { - "l": "75.0", - "x": 2.8525, - "y": 50.2615 - }, - { - "l": "75.0", - "x": 2.9358, - "y": 50.3455 - }, - { - "l": "75.0", - "x": 3.0192, - "y": 50.4262 - }, - { - "l": "75.0", - "x": 3.1025, - "y": 50.5037 - }, - { - "l": "75.0", - "x": 3.1858, - "y": 50.578 - }, - { - "l": "75.0", - "x": 3.2692, - "y": 50.6499 - }, - { - "l": "75.0", - "x": 3.3525, - "y": 50.7193 - }, - { - "l": "75.0", - "x": 3.4358, - "y": 50.7862 - }, - { - "l": "75.0", - "x": 3.5192, - "y": 50.8511 - }, - { - "l": "75.0", - "x": 3.6025, - "y": 50.9137 - }, - { - "l": "75.0", - "x": 3.6858, - "y": 50.9742 - }, - { - "l": "75.0", - "x": 3.7692, - "y": 51.0332 - }, - { - "l": "75.0", - "x": 3.8525, - "y": 51.09 - }, - { - "l": "75.0", - "x": 3.9358, - "y": 51.1449 - }, - { - "l": "75.0", - "x": 4.0, - "y": 51.1863 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 2.0, - "y": 50.0664 - }, - { - "l": "91.0", - "x": 2.0192, - "y": 50.0971 - }, - { - "l": "91.0", - "x": 2.1025, - "y": 50.23 - }, - { - "l": "91.0", - "x": 2.1858, - "y": 50.3577 - }, - { - "l": "91.0", - "x": 2.2692, - "y": 50.4797 - }, - { - "l": "91.0", - "x": 2.3525, - "y": 50.5967 - }, - { - "l": "91.0", - "x": 2.4358, - "y": 50.7091 - }, - { - "l": "91.0", - "x": 2.5192, - "y": 50.817 - }, - { - "l": "91.0", - "x": 2.6025, - "y": 50.9199 - }, - { - "l": "91.0", - "x": 2.6858, - "y": 51.0183 - }, - { - "l": "91.0", - "x": 2.7692, - "y": 51.1127 - }, - { - "l": "91.0", - "x": 2.8525, - "y": 51.2031 - }, - { - "l": "91.0", - "x": 2.9358, - "y": 51.29 - }, - { - "l": "91.0", - "x": 3.0192, - "y": 51.3735 - }, - { - "l": "91.0", - "x": 3.1025, - "y": 51.4537 - }, - { - "l": "91.0", - "x": 3.1858, - "y": 51.5305 - }, - { - "l": "91.0", - "x": 3.2692, - "y": 51.605 - }, - { - "l": "91.0", - "x": 3.3525, - "y": 51.677 - }, - { - "l": "91.0", - "x": 3.4358, - "y": 51.7462 - }, - { - "l": "91.0", - "x": 3.5192, - "y": 51.8136 - }, - { - "l": "91.0", - "x": 3.6025, - "y": 51.8782 - }, - { - "l": "91.0", - "x": 3.6858, - "y": 51.941 - }, - { - "l": "91.0", - "x": 3.7692, - "y": 52.0024 - }, - { - "l": "91.0", - "x": 3.8525, - "y": 52.0612 - }, - { - "l": "91.0", - "x": 3.9358, - "y": 52.1181 - }, - { - "l": "91.0", - "x": 4.0, - "y": 52.161 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 2.0, - "y": 50.9738 - }, - { - "l": "98.0", - "x": 2.0192, - "y": 51.0054 - }, - { - "l": "98.0", - "x": 2.1025, - "y": 51.1421 - }, - { - "l": "98.0", - "x": 2.1858, - "y": 51.2736 - }, - { - "l": "98.0", - "x": 2.2692, - "y": 51.399 - }, - { - "l": "98.0", - "x": 2.3525, - "y": 51.5193 - }, - { - "l": "98.0", - "x": 2.4358, - "y": 51.6351 - }, - { - "l": "98.0", - "x": 2.5192, - "y": 51.7465 - }, - { - "l": "98.0", - "x": 2.6025, - "y": 51.8525 - }, - { - "l": "98.0", - "x": 2.6858, - "y": 51.9541 - }, - { - "l": "98.0", - "x": 2.7692, - "y": 52.0514 - }, - { - "l": "98.0", - "x": 2.8525, - "y": 52.1448 - }, - { - "l": "98.0", - "x": 2.9358, - "y": 52.2345 - }, - { - "l": "98.0", - "x": 3.0192, - "y": 52.3209 - }, - { - "l": "98.0", - "x": 3.1025, - "y": 52.4037 - }, - { - "l": "98.0", - "x": 3.1858, - "y": 52.4829 - }, - { - "l": "98.0", - "x": 3.2692, - "y": 52.5602 - }, - { - "l": "98.0", - "x": 3.3525, - "y": 52.6346 - }, - { - "l": "98.0", - "x": 3.4358, - "y": 52.7061 - }, - { - "l": "98.0", - "x": 3.5192, - "y": 52.776 - }, - { - "l": "98.0", - "x": 3.6025, - "y": 52.8428 - }, - { - "l": "98.0", - "x": 3.6858, - "y": 52.9078 - }, - { - "l": "98.0", - "x": 3.7692, - "y": 52.9715 - }, - { - "l": "98.0", - "x": 3.8525, - "y": 53.0324 - }, - { - "l": "98.0", - "x": 3.9358, - "y": 53.0914 - }, - { - "l": "98.0", - "x": 4.0, - "y": 53.1358 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 2.0, - "y": 51.8813 - }, - { - "l": "99.6", - "x": 2.0192, - "y": 51.9137 - }, - { - "l": "99.6", - "x": 2.1025, - "y": 52.0541 - }, - { - "l": "99.6", - "x": 2.1858, - "y": 52.1894 - }, - { - "l": "99.6", - "x": 2.2692, - "y": 52.3183 - }, - { - "l": "99.6", - "x": 2.3525, - "y": 52.442 - }, - { - "l": "99.6", - "x": 2.4358, - "y": 52.5611 - }, - { - "l": "99.6", - "x": 2.5192, - "y": 52.6761 - }, - { - "l": "99.6", - "x": 2.6025, - "y": 52.7852 - }, - { - "l": "99.6", - "x": 2.6858, - "y": 52.8898 - }, - { - "l": "99.6", - "x": 2.7692, - "y": 52.9902 - }, - { - "l": "99.6", - "x": 2.8525, - "y": 53.0865 - }, - { - "l": "99.6", - "x": 2.9358, - "y": 53.179 - }, - { - "l": "99.6", - "x": 3.0192, - "y": 53.2682 - }, - { - "l": "99.6", - "x": 3.1025, - "y": 53.3537 - }, - { - "l": "99.6", - "x": 3.1858, - "y": 53.4353 - }, - { - "l": "99.6", - "x": 3.2692, - "y": 53.5153 - }, - { - "l": "99.6", - "x": 3.3525, - "y": 53.5923 - }, - { - "l": "99.6", - "x": 3.4358, - "y": 53.6661 - }, - { - "l": "99.6", - "x": 3.5192, - "y": 53.7384 - }, - { - "l": "99.6", - "x": 3.6025, - "y": 53.8074 - }, - { - "l": "99.6", - "x": 3.6858, - "y": 53.8746 - }, - { - "l": "99.6", - "x": 3.7692, - "y": 53.9407 - }, - { - "l": "99.6", - "x": 3.8525, - "y": 54.0036 - }, - { - "l": "99.6", - "x": 3.9358, - "y": 54.0646 - }, - { - "l": "99.6", - "x": 4.0, - "y": 54.1106 - } - ] - } - ], - "bmi": null - }, - "female": null - } - }, - { - "uk90_child": { - "male": { - "height": null, - "weight": null, - "ofc": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 4.0, - "y": 48.3037 - }, - { - "l": "0.4", - "x": 4.0833, - "y": 48.3454 - }, - { - "l": "0.4", - "x": 4.1667, - "y": 48.3837 - }, - { - "l": "0.4", - "x": 4.25, - "y": 48.4216 - }, - { - "l": "0.4", - "x": 4.3333, - "y": 48.4581 - }, - { - "l": "0.4", - "x": 4.4167, - "y": 48.495 - }, - { - "l": "0.4", - "x": 4.5, - "y": 48.5301 - }, - { - "l": "0.4", - "x": 4.5833, - "y": 48.5651 - }, - { - "l": "0.4", - "x": 4.6667, - "y": 48.5998 - }, - { - "l": "0.4", - "x": 4.75, - "y": 48.632 - }, - { - "l": "0.4", - "x": 4.8333, - "y": 48.6657 - }, - { - "l": "0.4", - "x": 4.9167, - "y": 48.6994 - }, - { - "l": "0.4", - "x": 5.0, - "y": 48.7312 - }, - { - "l": "0.4", - "x": 5.0833, - "y": 48.763 - }, - { - "l": "0.4", - "x": 5.1667, - "y": 48.793 - }, - { - "l": "0.4", - "x": 5.25, - "y": 48.8229 - }, - { - "l": "0.4", - "x": 5.3333, - "y": 48.8519 - }, - { - "l": "0.4", - "x": 5.4167, - "y": 48.8823 - }, - { - "l": "0.4", - "x": 5.5, - "y": 48.9104 - }, - { - "l": "0.4", - "x": 5.5833, - "y": 48.9399 - }, - { - "l": "0.4", - "x": 5.6667, - "y": 48.9685 - }, - { - "l": "0.4", - "x": 5.75, - "y": 48.9971 - }, - { - "l": "0.4", - "x": 5.8333, - "y": 49.0247 - }, - { - "l": "0.4", - "x": 5.9167, - "y": 49.0509 - }, - { - "l": "0.4", - "x": 6.0, - "y": 49.079 - }, - { - "l": "0.4", - "x": 6.0833, - "y": 49.1057 - }, - { - "l": "0.4", - "x": 6.1667, - "y": 49.1324 - }, - { - "l": "0.4", - "x": 6.25, - "y": 49.1591 - }, - { - "l": "0.4", - "x": 6.3333, - "y": 49.184 - }, - { - "l": "0.4", - "x": 6.4167, - "y": 49.2112 - }, - { - "l": "0.4", - "x": 6.5, - "y": 49.2369 - }, - { - "l": "0.4", - "x": 6.5833, - "y": 49.2641 - }, - { - "l": "0.4", - "x": 6.6667, - "y": 49.288 - }, - { - "l": "0.4", - "x": 6.75, - "y": 49.3143 - }, - { - "l": "0.4", - "x": 6.8333, - "y": 49.3405 - }, - { - "l": "0.4", - "x": 6.9167, - "y": 49.3644 - }, - { - "l": "0.4", - "x": 7.0, - "y": 49.3898 - }, - { - "l": "0.4", - "x": 7.0833, - "y": 49.4151 - }, - { - "l": "0.4", - "x": 7.1667, - "y": 49.4395 - }, - { - "l": "0.4", - "x": 7.25, - "y": 49.4634 - }, - { - "l": "0.4", - "x": 7.3333, - "y": 49.4887 - }, - { - "l": "0.4", - "x": 7.4167, - "y": 49.5122 - }, - { - "l": "0.4", - "x": 7.5, - "y": 49.5366 - }, - { - "l": "0.4", - "x": 7.5833, - "y": 49.561 - }, - { - "l": "0.4", - "x": 7.6667, - "y": 49.5854 - }, - { - "l": "0.4", - "x": 7.75, - "y": 49.6088 - }, - { - "l": "0.4", - "x": 7.8333, - "y": 49.6323 - }, - { - "l": "0.4", - "x": 7.9167, - "y": 49.6558 - }, - { - "l": "0.4", - "x": 8.0, - "y": 49.6783 - }, - { - "l": "0.4", - "x": 8.0833, - "y": 49.7008 - }, - { - "l": "0.4", - "x": 8.1667, - "y": 49.7243 - }, - { - "l": "0.4", - "x": 8.25, - "y": 49.7468 - }, - { - "l": "0.4", - "x": 8.3333, - "y": 49.7694 - }, - { - "l": "0.4", - "x": 8.4167, - "y": 49.7919 - }, - { - "l": "0.4", - "x": 8.5, - "y": 49.8144 - }, - { - "l": "0.4", - "x": 8.5833, - "y": 49.837 - }, - { - "l": "0.4", - "x": 8.6667, - "y": 49.8595 - }, - { - "l": "0.4", - "x": 8.75, - "y": 49.8811 - }, - { - "l": "0.4", - "x": 8.8333, - "y": 49.9027 - }, - { - "l": "0.4", - "x": 8.9167, - "y": 49.9267 - }, - { - "l": "0.4", - "x": 9.0, - "y": 49.9492 - }, - { - "l": "0.4", - "x": 9.0833, - "y": 49.9708 - }, - { - "l": "0.4", - "x": 9.1667, - "y": 49.9934 - }, - { - "l": "0.4", - "x": 9.25, - "y": 50.015 - }, - { - "l": "0.4", - "x": 9.3333, - "y": 50.0366 - }, - { - "l": "0.4", - "x": 9.4167, - "y": 50.0591 - }, - { - "l": "0.4", - "x": 9.5, - "y": 50.0807 - }, - { - "l": "0.4", - "x": 9.5833, - "y": 50.1037 - }, - { - "l": "0.4", - "x": 9.6667, - "y": 50.1253 - }, - { - "l": "0.4", - "x": 9.75, - "y": 50.1478 - }, - { - "l": "0.4", - "x": 9.8333, - "y": 50.1694 - }, - { - "l": "0.4", - "x": 9.9167, - "y": 50.1919 - }, - { - "l": "0.4", - "x": 10.0, - "y": 50.2135 - }, - { - "l": "0.4", - "x": 10.0833, - "y": 50.2366 - }, - { - "l": "0.4", - "x": 10.1667, - "y": 50.2591 - }, - { - "l": "0.4", - "x": 10.25, - "y": 50.2807 - }, - { - "l": "0.4", - "x": 10.3333, - "y": 50.3032 - }, - { - "l": "0.4", - "x": 10.4167, - "y": 50.3257 - }, - { - "l": "0.4", - "x": 10.5, - "y": 50.3472 - }, - { - "l": "0.4", - "x": 10.5833, - "y": 50.3712 - }, - { - "l": "0.4", - "x": 10.6667, - "y": 50.3937 - }, - { - "l": "0.4", - "x": 10.75, - "y": 50.4162 - }, - { - "l": "0.4", - "x": 10.8333, - "y": 50.4396 - }, - { - "l": "0.4", - "x": 10.9167, - "y": 50.4636 - }, - { - "l": "0.4", - "x": 11.0, - "y": 50.487 - }, - { - "l": "0.4", - "x": 11.0833, - "y": 50.5104 - }, - { - "l": "0.4", - "x": 11.1667, - "y": 50.5329 - }, - { - "l": "0.4", - "x": 11.25, - "y": 50.5587 - }, - { - "l": "0.4", - "x": 11.3333, - "y": 50.583 - }, - { - "l": "0.4", - "x": 11.4167, - "y": 50.6065 - }, - { - "l": "0.4", - "x": 11.5, - "y": 50.6299 - }, - { - "l": "0.4", - "x": 11.5833, - "y": 50.6557 - }, - { - "l": "0.4", - "x": 11.6667, - "y": 50.68 - }, - { - "l": "0.4", - "x": 11.75, - "y": 50.7043 - }, - { - "l": "0.4", - "x": 11.8333, - "y": 50.7296 - }, - { - "l": "0.4", - "x": 11.9167, - "y": 50.7563 - }, - { - "l": "0.4", - "x": 12.0, - "y": 50.7806 - }, - { - "l": "0.4", - "x": 12.0833, - "y": 50.8058 - }, - { - "l": "0.4", - "x": 12.1667, - "y": 50.8326 - }, - { - "l": "0.4", - "x": 12.25, - "y": 50.8587 - }, - { - "l": "0.4", - "x": 12.3333, - "y": 50.884 - }, - { - "l": "0.4", - "x": 12.4167, - "y": 50.9107 - }, - { - "l": "0.4", - "x": 12.5, - "y": 50.9368 - }, - { - "l": "0.4", - "x": 12.5833, - "y": 50.963 - }, - { - "l": "0.4", - "x": 12.6667, - "y": 50.9906 - }, - { - "l": "0.4", - "x": 12.75, - "y": 51.0168 - }, - { - "l": "0.4", - "x": 12.8333, - "y": 51.0429 - }, - { - "l": "0.4", - "x": 12.9167, - "y": 51.0715 - }, - { - "l": "0.4", - "x": 13.0, - "y": 51.0985 - }, - { - "l": "0.4", - "x": 13.0833, - "y": 51.1262 - }, - { - "l": "0.4", - "x": 13.1667, - "y": 51.1542 - }, - { - "l": "0.4", - "x": 13.25, - "y": 51.1803 - }, - { - "l": "0.4", - "x": 13.3333, - "y": 51.2098 - }, - { - "l": "0.4", - "x": 13.4167, - "y": 51.2368 - }, - { - "l": "0.4", - "x": 13.5, - "y": 51.2654 - }, - { - "l": "0.4", - "x": 13.5833, - "y": 51.2925 - }, - { - "l": "0.4", - "x": 13.6667, - "y": 51.3195 - }, - { - "l": "0.4", - "x": 13.75, - "y": 51.349 - }, - { - "l": "0.4", - "x": 13.8333, - "y": 51.376 - }, - { - "l": "0.4", - "x": 13.9167, - "y": 51.4055 - }, - { - "l": "0.4", - "x": 14.0, - "y": 51.4326 - }, - { - "l": "0.4", - "x": 14.0833, - "y": 51.4611 - }, - { - "l": "0.4", - "x": 14.1667, - "y": 51.4891 - }, - { - "l": "0.4", - "x": 14.25, - "y": 51.5185 - }, - { - "l": "0.4", - "x": 14.3333, - "y": 51.5447 - }, - { - "l": "0.4", - "x": 14.4167, - "y": 51.5732 - }, - { - "l": "0.4", - "x": 14.5, - "y": 51.6012 - }, - { - "l": "0.4", - "x": 14.5833, - "y": 51.6297 - }, - { - "l": "0.4", - "x": 14.6667, - "y": 51.6568 - }, - { - "l": "0.4", - "x": 14.75, - "y": 51.6853 - }, - { - "l": "0.4", - "x": 14.8333, - "y": 51.7123 - }, - { - "l": "0.4", - "x": 14.9167, - "y": 51.7409 - }, - { - "l": "0.4", - "x": 15.0, - "y": 51.7679 - }, - { - "l": "0.4", - "x": 15.0833, - "y": 51.7955 - }, - { - "l": "0.4", - "x": 15.1667, - "y": 51.8226 - }, - { - "l": "0.4", - "x": 15.25, - "y": 51.8511 - }, - { - "l": "0.4", - "x": 15.3333, - "y": 51.8772 - }, - { - "l": "0.4", - "x": 15.4167, - "y": 51.9049 - }, - { - "l": "0.4", - "x": 15.5, - "y": 51.931 - }, - { - "l": "0.4", - "x": 15.5833, - "y": 51.9586 - }, - { - "l": "0.4", - "x": 15.6667, - "y": 51.9862 - }, - { - "l": "0.4", - "x": 15.75, - "y": 52.0114 - }, - { - "l": "0.4", - "x": 15.8333, - "y": 52.039 - }, - { - "l": "0.4", - "x": 15.9167, - "y": 52.0642 - }, - { - "l": "0.4", - "x": 16.0, - "y": 52.0909 - }, - { - "l": "0.4", - "x": 16.0833, - "y": 52.117 - }, - { - "l": "0.4", - "x": 16.1667, - "y": 52.1437 - }, - { - "l": "0.4", - "x": 16.25, - "y": 52.1689 - }, - { - "l": "0.4", - "x": 16.3333, - "y": 52.1946 - }, - { - "l": "0.4", - "x": 16.4167, - "y": 52.2213 - }, - { - "l": "0.4", - "x": 16.5, - "y": 52.2456 - }, - { - "l": "0.4", - "x": 16.5833, - "y": 52.2714 - }, - { - "l": "0.4", - "x": 16.6667, - "y": 52.298 - }, - { - "l": "0.4", - "x": 16.75, - "y": 52.3223 - }, - { - "l": "0.4", - "x": 16.8333, - "y": 52.3472 - }, - { - "l": "0.4", - "x": 16.9167, - "y": 52.3714 - }, - { - "l": "0.4", - "x": 17.0, - "y": 52.3972 - }, - { - "l": "0.4", - "x": 17.0833, - "y": 52.4229 - }, - { - "l": "0.4", - "x": 17.1667, - "y": 52.4463 - }, - { - "l": "0.4", - "x": 17.25, - "y": 52.4711 - }, - { - "l": "0.4", - "x": 17.3333, - "y": 52.4945 - }, - { - "l": "0.4", - "x": 17.4167, - "y": 52.5193 - }, - { - "l": "0.4", - "x": 17.5, - "y": 52.5441 - }, - { - "l": "0.4", - "x": 17.5833, - "y": 52.5666 - }, - { - "l": "0.4", - "x": 17.6667, - "y": 52.5914 - }, - { - "l": "0.4", - "x": 17.75, - "y": 52.6153 - }, - { - "l": "0.4", - "x": 17.8333, - "y": 52.6386 - }, - { - "l": "0.4", - "x": 17.9167, - "y": 52.6626 - }, - { - "l": "0.4", - "x": 18.0, - "y": 52.6929 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 4.0, - "y": 49.2816 - }, - { - "l": "2.0", - "x": 4.0833, - "y": 49.3255 - }, - { - "l": "2.0", - "x": 4.1667, - "y": 49.3665 - }, - { - "l": "2.0", - "x": 4.25, - "y": 49.4067 - }, - { - "l": "2.0", - "x": 4.3333, - "y": 49.4458 - }, - { - "l": "2.0", - "x": 4.4167, - "y": 49.485 - }, - { - "l": "2.0", - "x": 4.5, - "y": 49.5223 - }, - { - "l": "2.0", - "x": 4.5833, - "y": 49.5596 - }, - { - "l": "2.0", - "x": 4.6667, - "y": 49.5961 - }, - { - "l": "2.0", - "x": 4.75, - "y": 49.6305 - }, - { - "l": "2.0", - "x": 4.8333, - "y": 49.666 - }, - { - "l": "2.0", - "x": 4.9167, - "y": 49.7015 - }, - { - "l": "2.0", - "x": 5.0, - "y": 49.7351 - }, - { - "l": "2.0", - "x": 5.0833, - "y": 49.7688 - }, - { - "l": "2.0", - "x": 5.1667, - "y": 49.8005 - }, - { - "l": "2.0", - "x": 5.25, - "y": 49.8322 - }, - { - "l": "2.0", - "x": 5.3333, - "y": 49.8629 - }, - { - "l": "2.0", - "x": 5.4167, - "y": 49.8948 - }, - { - "l": "2.0", - "x": 5.5, - "y": 49.9246 - }, - { - "l": "2.0", - "x": 5.5833, - "y": 49.9554 - }, - { - "l": "2.0", - "x": 5.6667, - "y": 49.9854 - }, - { - "l": "2.0", - "x": 5.75, - "y": 50.0153 - }, - { - "l": "2.0", - "x": 5.8333, - "y": 50.0443 - }, - { - "l": "2.0", - "x": 5.9167, - "y": 50.0722 - }, - { - "l": "2.0", - "x": 6.0, - "y": 50.1013 - }, - { - "l": "2.0", - "x": 6.0833, - "y": 50.1293 - }, - { - "l": "2.0", - "x": 6.1667, - "y": 50.1573 - }, - { - "l": "2.0", - "x": 6.25, - "y": 50.1853 - }, - { - "l": "2.0", - "x": 6.3333, - "y": 50.2115 - }, - { - "l": "2.0", - "x": 6.4167, - "y": 50.2396 - }, - { - "l": "2.0", - "x": 6.5, - "y": 50.2667 - }, - { - "l": "2.0", - "x": 6.5833, - "y": 50.2948 - }, - { - "l": "2.0", - "x": 6.6667, - "y": 50.32 - }, - { - "l": "2.0", - "x": 6.75, - "y": 50.3472 - }, - { - "l": "2.0", - "x": 6.8333, - "y": 50.3744 - }, - { - "l": "2.0", - "x": 6.9167, - "y": 50.3996 - }, - { - "l": "2.0", - "x": 7.0, - "y": 50.4258 - }, - { - "l": "2.0", - "x": 7.0833, - "y": 50.4521 - }, - { - "l": "2.0", - "x": 7.1667, - "y": 50.4774 - }, - { - "l": "2.0", - "x": 7.25, - "y": 50.5025 - }, - { - "l": "2.0", - "x": 7.3333, - "y": 50.5288 - }, - { - "l": "2.0", - "x": 7.4167, - "y": 50.5531 - }, - { - "l": "2.0", - "x": 7.5, - "y": 50.5784 - }, - { - "l": "2.0", - "x": 7.5833, - "y": 50.6037 - }, - { - "l": "2.0", - "x": 7.6667, - "y": 50.629 - }, - { - "l": "2.0", - "x": 7.75, - "y": 50.6534 - }, - { - "l": "2.0", - "x": 7.8333, - "y": 50.6777 - }, - { - "l": "2.0", - "x": 7.9167, - "y": 50.7021 - }, - { - "l": "2.0", - "x": 8.0, - "y": 50.7255 - }, - { - "l": "2.0", - "x": 8.0833, - "y": 50.7489 - }, - { - "l": "2.0", - "x": 8.1667, - "y": 50.7732 - }, - { - "l": "2.0", - "x": 8.25, - "y": 50.7966 - }, - { - "l": "2.0", - "x": 8.3333, - "y": 50.82 - }, - { - "l": "2.0", - "x": 8.4167, - "y": 50.8434 - }, - { - "l": "2.0", - "x": 8.5, - "y": 50.8668 - }, - { - "l": "2.0", - "x": 8.5833, - "y": 50.8902 - }, - { - "l": "2.0", - "x": 8.6667, - "y": 50.9136 - }, - { - "l": "2.0", - "x": 8.75, - "y": 50.9361 - }, - { - "l": "2.0", - "x": 8.8333, - "y": 50.9585 - }, - { - "l": "2.0", - "x": 8.9167, - "y": 50.983 - }, - { - "l": "2.0", - "x": 9.0, - "y": 51.0064 - }, - { - "l": "2.0", - "x": 9.0833, - "y": 51.0289 - }, - { - "l": "2.0", - "x": 9.1667, - "y": 51.0523 - }, - { - "l": "2.0", - "x": 9.25, - "y": 51.0747 - }, - { - "l": "2.0", - "x": 9.3333, - "y": 51.0972 - }, - { - "l": "2.0", - "x": 9.4167, - "y": 51.1206 - }, - { - "l": "2.0", - "x": 9.5, - "y": 51.143 - }, - { - "l": "2.0", - "x": 9.5833, - "y": 51.1665 - }, - { - "l": "2.0", - "x": 9.6667, - "y": 51.189 - }, - { - "l": "2.0", - "x": 9.75, - "y": 51.2124 - }, - { - "l": "2.0", - "x": 9.8333, - "y": 51.2348 - }, - { - "l": "2.0", - "x": 9.9167, - "y": 51.2582 - }, - { - "l": "2.0", - "x": 10.0, - "y": 51.2806 - }, - { - "l": "2.0", - "x": 10.0833, - "y": 51.3042 - }, - { - "l": "2.0", - "x": 10.1667, - "y": 51.3276 - }, - { - "l": "2.0", - "x": 10.25, - "y": 51.35 - }, - { - "l": "2.0", - "x": 10.3333, - "y": 51.3734 - }, - { - "l": "2.0", - "x": 10.4167, - "y": 51.3967 - }, - { - "l": "2.0", - "x": 10.5, - "y": 51.4192 - }, - { - "l": "2.0", - "x": 10.5833, - "y": 51.4437 - }, - { - "l": "2.0", - "x": 10.6667, - "y": 51.467 - }, - { - "l": "2.0", - "x": 10.75, - "y": 51.4904 - }, - { - "l": "2.0", - "x": 10.8333, - "y": 51.5147 - }, - { - "l": "2.0", - "x": 10.9167, - "y": 51.5392 - }, - { - "l": "2.0", - "x": 11.0, - "y": 51.5635 - }, - { - "l": "2.0", - "x": 11.0833, - "y": 51.5878 - }, - { - "l": "2.0", - "x": 11.1667, - "y": 51.6112 - }, - { - "l": "2.0", - "x": 11.25, - "y": 51.6375 - }, - { - "l": "2.0", - "x": 11.3333, - "y": 51.6628 - }, - { - "l": "2.0", - "x": 11.4167, - "y": 51.6871 - }, - { - "l": "2.0", - "x": 11.5, - "y": 51.7114 - }, - { - "l": "2.0", - "x": 11.5833, - "y": 51.7377 - }, - { - "l": "2.0", - "x": 11.6667, - "y": 51.763 - }, - { - "l": "2.0", - "x": 11.75, - "y": 51.7882 - }, - { - "l": "2.0", - "x": 11.8333, - "y": 51.8144 - }, - { - "l": "2.0", - "x": 11.9167, - "y": 51.8417 - }, - { - "l": "2.0", - "x": 12.0, - "y": 51.867 - }, - { - "l": "2.0", - "x": 12.0833, - "y": 51.8931 - }, - { - "l": "2.0", - "x": 12.1667, - "y": 51.9204 - }, - { - "l": "2.0", - "x": 12.25, - "y": 51.9475 - }, - { - "l": "2.0", - "x": 12.3333, - "y": 51.9737 - }, - { - "l": "2.0", - "x": 12.4167, - "y": 52.001 - }, - { - "l": "2.0", - "x": 12.5, - "y": 52.0281 - }, - { - "l": "2.0", - "x": 12.5833, - "y": 52.0552 - }, - { - "l": "2.0", - "x": 12.6667, - "y": 52.0835 - }, - { - "l": "2.0", - "x": 12.75, - "y": 52.1106 - }, - { - "l": "2.0", - "x": 12.8333, - "y": 52.1377 - }, - { - "l": "2.0", - "x": 12.9167, - "y": 52.1669 - }, - { - "l": "2.0", - "x": 13.0, - "y": 52.1949 - }, - { - "l": "2.0", - "x": 13.0833, - "y": 52.2231 - }, - { - "l": "2.0", - "x": 13.1667, - "y": 52.2521 - }, - { - "l": "2.0", - "x": 13.25, - "y": 52.2792 - }, - { - "l": "2.0", - "x": 13.3333, - "y": 52.3093 - }, - { - "l": "2.0", - "x": 13.4167, - "y": 52.3374 - }, - { - "l": "2.0", - "x": 13.5, - "y": 52.3665 - }, - { - "l": "2.0", - "x": 13.5833, - "y": 52.3946 - }, - { - "l": "2.0", - "x": 13.6667, - "y": 52.4226 - }, - { - "l": "2.0", - "x": 13.75, - "y": 52.4527 - }, - { - "l": "2.0", - "x": 13.8333, - "y": 52.4808 - }, - { - "l": "2.0", - "x": 13.9167, - "y": 52.5109 - }, - { - "l": "2.0", - "x": 14.0, - "y": 52.5389 - }, - { - "l": "2.0", - "x": 14.0833, - "y": 52.5681 - }, - { - "l": "2.0", - "x": 14.1667, - "y": 52.5971 - }, - { - "l": "2.0", - "x": 14.25, - "y": 52.6272 - }, - { - "l": "2.0", - "x": 14.3333, - "y": 52.6543 - }, - { - "l": "2.0", - "x": 14.4167, - "y": 52.6834 - }, - { - "l": "2.0", - "x": 14.5, - "y": 52.7124 - }, - { - "l": "2.0", - "x": 14.5833, - "y": 52.7415 - }, - { - "l": "2.0", - "x": 14.6667, - "y": 52.7696 - }, - { - "l": "2.0", - "x": 14.75, - "y": 52.7987 - }, - { - "l": "2.0", - "x": 14.8333, - "y": 52.8268 - }, - { - "l": "2.0", - "x": 14.9167, - "y": 52.8559 - }, - { - "l": "2.0", - "x": 15.0, - "y": 52.8839 - }, - { - "l": "2.0", - "x": 15.0833, - "y": 52.9122 - }, - { - "l": "2.0", - "x": 15.1667, - "y": 52.9402 - }, - { - "l": "2.0", - "x": 15.25, - "y": 52.9693 - }, - { - "l": "2.0", - "x": 15.3333, - "y": 52.9964 - }, - { - "l": "2.0", - "x": 15.4167, - "y": 53.0246 - }, - { - "l": "2.0", - "x": 15.5, - "y": 53.0517 - }, - { - "l": "2.0", - "x": 15.5833, - "y": 53.0799 - }, - { - "l": "2.0", - "x": 15.6667, - "y": 53.1081 - }, - { - "l": "2.0", - "x": 15.75, - "y": 53.1343 - }, - { - "l": "2.0", - "x": 15.8333, - "y": 53.1625 - }, - { - "l": "2.0", - "x": 15.9167, - "y": 53.1886 - }, - { - "l": "2.0", - "x": 16.0, - "y": 53.2159 - }, - { - "l": "2.0", - "x": 16.0833, - "y": 53.243 - }, - { - "l": "2.0", - "x": 16.1667, - "y": 53.2703 - }, - { - "l": "2.0", - "x": 16.25, - "y": 53.2964 - }, - { - "l": "2.0", - "x": 16.3333, - "y": 53.3227 - }, - { - "l": "2.0", - "x": 16.4167, - "y": 53.35 - }, - { - "l": "2.0", - "x": 16.5, - "y": 53.3752 - }, - { - "l": "2.0", - "x": 16.5833, - "y": 53.4015 - }, - { - "l": "2.0", - "x": 16.6667, - "y": 53.4288 - }, - { - "l": "2.0", - "x": 16.75, - "y": 53.454 - }, - { - "l": "2.0", - "x": 16.8333, - "y": 53.4794 - }, - { - "l": "2.0", - "x": 16.9167, - "y": 53.5046 - }, - { - "l": "2.0", - "x": 17.0, - "y": 53.5309 - }, - { - "l": "2.0", - "x": 17.0833, - "y": 53.5572 - }, - { - "l": "2.0", - "x": 17.1667, - "y": 53.5815 - }, - { - "l": "2.0", - "x": 17.25, - "y": 53.6068 - }, - { - "l": "2.0", - "x": 17.3333, - "y": 53.6311 - }, - { - "l": "2.0", - "x": 17.4167, - "y": 53.6565 - }, - { - "l": "2.0", - "x": 17.5, - "y": 53.6819 - }, - { - "l": "2.0", - "x": 17.5833, - "y": 53.7052 - }, - { - "l": "2.0", - "x": 17.6667, - "y": 53.7305 - }, - { - "l": "2.0", - "x": 17.75, - "y": 53.755 - }, - { - "l": "2.0", - "x": 17.8333, - "y": 53.7792 - }, - { - "l": "2.0", - "x": 17.9167, - "y": 53.8037 - }, - { - "l": "2.0", - "x": 18.0, - "y": 53.8347 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 4.0, - "y": 50.2594 - }, - { - "l": "9.0", - "x": 4.0833, - "y": 50.3057 - }, - { - "l": "9.0", - "x": 4.1667, - "y": 50.3494 - }, - { - "l": "9.0", - "x": 4.25, - "y": 50.3918 - }, - { - "l": "9.0", - "x": 4.3333, - "y": 50.4335 - }, - { - "l": "9.0", - "x": 4.4167, - "y": 50.475 - }, - { - "l": "9.0", - "x": 4.5, - "y": 50.5145 - }, - { - "l": "9.0", - "x": 4.5833, - "y": 50.5541 - }, - { - "l": "9.0", - "x": 4.6667, - "y": 50.5924 - }, - { - "l": "9.0", - "x": 4.75, - "y": 50.629 - }, - { - "l": "9.0", - "x": 4.8333, - "y": 50.6664 - }, - { - "l": "9.0", - "x": 4.9167, - "y": 50.7037 - }, - { - "l": "9.0", - "x": 5.0, - "y": 50.7391 - }, - { - "l": "9.0", - "x": 5.0833, - "y": 50.7745 - }, - { - "l": "9.0", - "x": 5.1667, - "y": 50.808 - }, - { - "l": "9.0", - "x": 5.25, - "y": 50.8415 - }, - { - "l": "9.0", - "x": 5.3333, - "y": 50.874 - }, - { - "l": "9.0", - "x": 5.4167, - "y": 50.9072 - }, - { - "l": "9.0", - "x": 5.5, - "y": 50.9387 - }, - { - "l": "9.0", - "x": 5.5833, - "y": 50.971 - }, - { - "l": "9.0", - "x": 5.6667, - "y": 51.0022 - }, - { - "l": "9.0", - "x": 5.75, - "y": 51.0335 - }, - { - "l": "9.0", - "x": 5.8333, - "y": 51.0638 - }, - { - "l": "9.0", - "x": 5.9167, - "y": 51.0935 - }, - { - "l": "9.0", - "x": 6.0, - "y": 51.1235 - }, - { - "l": "9.0", - "x": 6.0833, - "y": 51.1529 - }, - { - "l": "9.0", - "x": 6.1667, - "y": 51.1822 - }, - { - "l": "9.0", - "x": 6.25, - "y": 51.2116 - }, - { - "l": "9.0", - "x": 6.3333, - "y": 51.239 - }, - { - "l": "9.0", - "x": 6.4167, - "y": 51.2681 - }, - { - "l": "9.0", - "x": 6.5, - "y": 51.2965 - }, - { - "l": "9.0", - "x": 6.5833, - "y": 51.3255 - }, - { - "l": "9.0", - "x": 6.6667, - "y": 51.352 - }, - { - "l": "9.0", - "x": 6.75, - "y": 51.3801 - }, - { - "l": "9.0", - "x": 6.8333, - "y": 51.4083 - }, - { - "l": "9.0", - "x": 6.9167, - "y": 51.4347 - }, - { - "l": "9.0", - "x": 7.0, - "y": 51.4619 - }, - { - "l": "9.0", - "x": 7.0833, - "y": 51.489 - }, - { - "l": "9.0", - "x": 7.1667, - "y": 51.5152 - }, - { - "l": "9.0", - "x": 7.25, - "y": 51.5417 - }, - { - "l": "9.0", - "x": 7.3333, - "y": 51.5688 - }, - { - "l": "9.0", - "x": 7.4167, - "y": 51.5941 - }, - { - "l": "9.0", - "x": 7.5, - "y": 51.6203 - }, - { - "l": "9.0", - "x": 7.5833, - "y": 51.6465 - }, - { - "l": "9.0", - "x": 7.6667, - "y": 51.6727 - }, - { - "l": "9.0", - "x": 7.75, - "y": 51.6979 - }, - { - "l": "9.0", - "x": 7.8333, - "y": 51.7231 - }, - { - "l": "9.0", - "x": 7.9167, - "y": 51.7484 - }, - { - "l": "9.0", - "x": 8.0, - "y": 51.7727 - }, - { - "l": "9.0", - "x": 8.0833, - "y": 51.7969 - }, - { - "l": "9.0", - "x": 8.1667, - "y": 51.8222 - }, - { - "l": "9.0", - "x": 8.25, - "y": 51.8464 - }, - { - "l": "9.0", - "x": 8.3333, - "y": 51.8707 - }, - { - "l": "9.0", - "x": 8.4167, - "y": 51.895 - }, - { - "l": "9.0", - "x": 8.5, - "y": 51.9192 - }, - { - "l": "9.0", - "x": 8.5833, - "y": 51.9435 - }, - { - "l": "9.0", - "x": 8.6667, - "y": 51.9678 - }, - { - "l": "9.0", - "x": 8.75, - "y": 51.9911 - }, - { - "l": "9.0", - "x": 8.8333, - "y": 52.0144 - }, - { - "l": "9.0", - "x": 8.9167, - "y": 52.0393 - }, - { - "l": "9.0", - "x": 9.0, - "y": 52.0636 - }, - { - "l": "9.0", - "x": 9.0833, - "y": 52.0869 - }, - { - "l": "9.0", - "x": 9.1667, - "y": 52.1112 - }, - { - "l": "9.0", - "x": 9.25, - "y": 52.1345 - }, - { - "l": "9.0", - "x": 9.3333, - "y": 52.1578 - }, - { - "l": "9.0", - "x": 9.4167, - "y": 52.182 - }, - { - "l": "9.0", - "x": 9.5, - "y": 52.2053 - }, - { - "l": "9.0", - "x": 9.5833, - "y": 52.2294 - }, - { - "l": "9.0", - "x": 9.6667, - "y": 52.2527 - }, - { - "l": "9.0", - "x": 9.75, - "y": 52.2769 - }, - { - "l": "9.0", - "x": 9.8333, - "y": 52.3002 - }, - { - "l": "9.0", - "x": 9.9167, - "y": 52.3245 - }, - { - "l": "9.0", - "x": 10.0, - "y": 52.3478 - }, - { - "l": "9.0", - "x": 10.0833, - "y": 52.3718 - }, - { - "l": "9.0", - "x": 10.1667, - "y": 52.396 - }, - { - "l": "9.0", - "x": 10.25, - "y": 52.4193 - }, - { - "l": "9.0", - "x": 10.3333, - "y": 52.4436 - }, - { - "l": "9.0", - "x": 10.4167, - "y": 52.4678 - }, - { - "l": "9.0", - "x": 10.5, - "y": 52.4911 - }, - { - "l": "9.0", - "x": 10.5833, - "y": 52.5161 - }, - { - "l": "9.0", - "x": 10.6667, - "y": 52.5404 - }, - { - "l": "9.0", - "x": 10.75, - "y": 52.5646 - }, - { - "l": "9.0", - "x": 10.8333, - "y": 52.5898 - }, - { - "l": "9.0", - "x": 10.9167, - "y": 52.6148 - }, - { - "l": "9.0", - "x": 11.0, - "y": 52.64 - }, - { - "l": "9.0", - "x": 11.0833, - "y": 52.6652 - }, - { - "l": "9.0", - "x": 11.1667, - "y": 52.6895 - }, - { - "l": "9.0", - "x": 11.25, - "y": 52.7164 - }, - { - "l": "9.0", - "x": 11.3333, - "y": 52.7425 - }, - { - "l": "9.0", - "x": 11.4167, - "y": 52.7677 - }, - { - "l": "9.0", - "x": 11.5, - "y": 52.7929 - }, - { - "l": "9.0", - "x": 11.5833, - "y": 52.8198 - }, - { - "l": "9.0", - "x": 11.6667, - "y": 52.846 - }, - { - "l": "9.0", - "x": 11.75, - "y": 52.8722 - }, - { - "l": "9.0", - "x": 11.8333, - "y": 52.8993 - }, - { - "l": "9.0", - "x": 11.9167, - "y": 52.9271 - }, - { - "l": "9.0", - "x": 12.0, - "y": 52.9533 - }, - { - "l": "9.0", - "x": 12.0833, - "y": 52.9804 - }, - { - "l": "9.0", - "x": 12.1667, - "y": 53.0083 - }, - { - "l": "9.0", - "x": 12.25, - "y": 53.0364 - }, - { - "l": "9.0", - "x": 12.3333, - "y": 53.0635 - }, - { - "l": "9.0", - "x": 12.4167, - "y": 53.0913 - }, - { - "l": "9.0", - "x": 12.5, - "y": 53.1194 - }, - { - "l": "9.0", - "x": 12.5833, - "y": 53.1475 - }, - { - "l": "9.0", - "x": 12.6667, - "y": 53.1763 - }, - { - "l": "9.0", - "x": 12.75, - "y": 53.2044 - }, - { - "l": "9.0", - "x": 12.8333, - "y": 53.2325 - }, - { - "l": "9.0", - "x": 12.9167, - "y": 53.2622 - }, - { - "l": "9.0", - "x": 13.0, - "y": 53.2913 - }, - { - "l": "9.0", - "x": 13.0833, - "y": 53.3201 - }, - { - "l": "9.0", - "x": 13.1667, - "y": 53.3501 - }, - { - "l": "9.0", - "x": 13.25, - "y": 53.3782 - }, - { - "l": "9.0", - "x": 13.3333, - "y": 53.4089 - }, - { - "l": "9.0", - "x": 13.4167, - "y": 53.4379 - }, - { - "l": "9.0", - "x": 13.5, - "y": 53.4677 - }, - { - "l": "9.0", - "x": 13.5833, - "y": 53.4967 - }, - { - "l": "9.0", - "x": 13.6667, - "y": 53.5258 - }, - { - "l": "9.0", - "x": 13.75, - "y": 53.5565 - }, - { - "l": "9.0", - "x": 13.8333, - "y": 53.5855 - }, - { - "l": "9.0", - "x": 13.9167, - "y": 53.6163 - }, - { - "l": "9.0", - "x": 14.0, - "y": 53.6453 - }, - { - "l": "9.0", - "x": 14.0833, - "y": 53.6751 - }, - { - "l": "9.0", - "x": 14.1667, - "y": 53.705 - }, - { - "l": "9.0", - "x": 14.25, - "y": 53.7358 - }, - { - "l": "9.0", - "x": 14.3333, - "y": 53.7638 - }, - { - "l": "9.0", - "x": 14.4167, - "y": 53.7936 - }, - { - "l": "9.0", - "x": 14.5, - "y": 53.8236 - }, - { - "l": "9.0", - "x": 14.5833, - "y": 53.8534 - }, - { - "l": "9.0", - "x": 14.6667, - "y": 53.8824 - }, - { - "l": "9.0", - "x": 14.75, - "y": 53.9122 - }, - { - "l": "9.0", - "x": 14.8333, - "y": 53.9412 - }, - { - "l": "9.0", - "x": 14.9167, - "y": 53.9709 - }, - { - "l": "9.0", - "x": 15.0, - "y": 54.0 - }, - { - "l": "9.0", - "x": 15.0833, - "y": 54.0288 - }, - { - "l": "9.0", - "x": 15.1667, - "y": 54.0578 - }, - { - "l": "9.0", - "x": 15.25, - "y": 54.0876 - }, - { - "l": "9.0", - "x": 15.3333, - "y": 54.1156 - }, - { - "l": "9.0", - "x": 15.4167, - "y": 54.1444 - }, - { - "l": "9.0", - "x": 15.5, - "y": 54.1725 - }, - { - "l": "9.0", - "x": 15.5833, - "y": 54.2013 - }, - { - "l": "9.0", - "x": 15.6667, - "y": 54.2301 - }, - { - "l": "9.0", - "x": 15.75, - "y": 54.2572 - }, - { - "l": "9.0", - "x": 15.8333, - "y": 54.286 - }, - { - "l": "9.0", - "x": 15.9167, - "y": 54.3131 - }, - { - "l": "9.0", - "x": 16.0, - "y": 54.3409 - }, - { - "l": "9.0", - "x": 16.0833, - "y": 54.369 - }, - { - "l": "9.0", - "x": 16.1667, - "y": 54.3968 - }, - { - "l": "9.0", - "x": 16.25, - "y": 54.4239 - }, - { - "l": "9.0", - "x": 16.3333, - "y": 54.4508 - }, - { - "l": "9.0", - "x": 16.4167, - "y": 54.4787 - }, - { - "l": "9.0", - "x": 16.5, - "y": 54.5048 - }, - { - "l": "9.0", - "x": 16.5833, - "y": 54.5317 - }, - { - "l": "9.0", - "x": 16.6667, - "y": 54.5595 - }, - { - "l": "9.0", - "x": 16.75, - "y": 54.5857 - }, - { - "l": "9.0", - "x": 16.8333, - "y": 54.6116 - }, - { - "l": "9.0", - "x": 16.9167, - "y": 54.6377 - }, - { - "l": "9.0", - "x": 17.0, - "y": 54.6646 - }, - { - "l": "9.0", - "x": 17.0833, - "y": 54.6915 - }, - { - "l": "9.0", - "x": 17.1667, - "y": 54.7166 - }, - { - "l": "9.0", - "x": 17.25, - "y": 54.7426 - }, - { - "l": "9.0", - "x": 17.3333, - "y": 54.7677 - }, - { - "l": "9.0", - "x": 17.4167, - "y": 54.7936 - }, - { - "l": "9.0", - "x": 17.5, - "y": 54.8196 - }, - { - "l": "9.0", - "x": 17.5833, - "y": 54.8438 - }, - { - "l": "9.0", - "x": 17.6667, - "y": 54.8697 - }, - { - "l": "9.0", - "x": 17.75, - "y": 54.8947 - }, - { - "l": "9.0", - "x": 17.8333, - "y": 54.9198 - }, - { - "l": "9.0", - "x": 17.9167, - "y": 54.9448 - }, - { - "l": "9.0", - "x": 18.0, - "y": 54.9765 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 4.0, - "y": 51.2372 - }, - { - "l": "25.0", - "x": 4.0833, - "y": 51.2858 - }, - { - "l": "25.0", - "x": 4.1667, - "y": 51.3322 - }, - { - "l": "25.0", - "x": 4.25, - "y": 51.3769 - }, - { - "l": "25.0", - "x": 4.3333, - "y": 51.4213 - }, - { - "l": "25.0", - "x": 4.4167, - "y": 51.465 - }, - { - "l": "25.0", - "x": 4.5, - "y": 51.5068 - }, - { - "l": "25.0", - "x": 4.5833, - "y": 51.5485 - }, - { - "l": "25.0", - "x": 4.6667, - "y": 51.5887 - }, - { - "l": "25.0", - "x": 4.75, - "y": 51.6275 - }, - { - "l": "25.0", - "x": 4.8333, - "y": 51.6667 - }, - { - "l": "25.0", - "x": 4.9167, - "y": 51.7058 - }, - { - "l": "25.0", - "x": 5.0, - "y": 51.743 - }, - { - "l": "25.0", - "x": 5.0833, - "y": 51.7803 - }, - { - "l": "25.0", - "x": 5.1667, - "y": 51.8155 - }, - { - "l": "25.0", - "x": 5.25, - "y": 51.8507 - }, - { - "l": "25.0", - "x": 5.3333, - "y": 51.885 - }, - { - "l": "25.0", - "x": 5.4167, - "y": 51.9196 - }, - { - "l": "25.0", - "x": 5.5, - "y": 51.9529 - }, - { - "l": "25.0", - "x": 5.5833, - "y": 51.9865 - }, - { - "l": "25.0", - "x": 5.6667, - "y": 52.0191 - }, - { - "l": "25.0", - "x": 5.75, - "y": 52.0518 - }, - { - "l": "25.0", - "x": 5.8333, - "y": 52.0834 - }, - { - "l": "25.0", - "x": 5.9167, - "y": 52.1147 - }, - { - "l": "25.0", - "x": 6.0, - "y": 52.1458 - }, - { - "l": "25.0", - "x": 6.0833, - "y": 52.1764 - }, - { - "l": "25.0", - "x": 6.1667, - "y": 52.2071 - }, - { - "l": "25.0", - "x": 6.25, - "y": 52.2378 - }, - { - "l": "25.0", - "x": 6.3333, - "y": 52.2665 - }, - { - "l": "25.0", - "x": 6.4167, - "y": 52.2965 - }, - { - "l": "25.0", - "x": 6.5, - "y": 52.3262 - }, - { - "l": "25.0", - "x": 6.5833, - "y": 52.3563 - }, - { - "l": "25.0", - "x": 6.6667, - "y": 52.384 - }, - { - "l": "25.0", - "x": 6.75, - "y": 52.4131 - }, - { - "l": "25.0", - "x": 6.8333, - "y": 52.4421 - }, - { - "l": "25.0", - "x": 6.9167, - "y": 52.4699 - }, - { - "l": "25.0", - "x": 7.0, - "y": 52.4979 - }, - { - "l": "25.0", - "x": 7.0833, - "y": 52.526 - }, - { - "l": "25.0", - "x": 7.1667, - "y": 52.5531 - }, - { - "l": "25.0", - "x": 7.25, - "y": 52.5808 - }, - { - "l": "25.0", - "x": 7.3333, - "y": 52.6089 - }, - { - "l": "25.0", - "x": 7.4167, - "y": 52.635 - }, - { - "l": "25.0", - "x": 7.5, - "y": 52.6621 - }, - { - "l": "25.0", - "x": 7.5833, - "y": 52.6892 - }, - { - "l": "25.0", - "x": 7.6667, - "y": 52.7163 - }, - { - "l": "25.0", - "x": 7.75, - "y": 52.7425 - }, - { - "l": "25.0", - "x": 7.8333, - "y": 52.7686 - }, - { - "l": "25.0", - "x": 7.9167, - "y": 52.7947 - }, - { - "l": "25.0", - "x": 8.0, - "y": 52.8198 - }, - { - "l": "25.0", - "x": 8.0833, - "y": 52.845 - }, - { - "l": "25.0", - "x": 8.1667, - "y": 52.8711 - }, - { - "l": "25.0", - "x": 8.25, - "y": 52.8962 - }, - { - "l": "25.0", - "x": 8.3333, - "y": 52.9213 - }, - { - "l": "25.0", - "x": 8.4167, - "y": 52.9465 - }, - { - "l": "25.0", - "x": 8.5, - "y": 52.9716 - }, - { - "l": "25.0", - "x": 8.5833, - "y": 52.9967 - }, - { - "l": "25.0", - "x": 8.6667, - "y": 53.0219 - }, - { - "l": "25.0", - "x": 8.75, - "y": 53.046 - }, - { - "l": "25.0", - "x": 8.8333, - "y": 53.0702 - }, - { - "l": "25.0", - "x": 8.9167, - "y": 53.0957 - }, - { - "l": "25.0", - "x": 9.0, - "y": 53.1208 - }, - { - "l": "25.0", - "x": 9.0833, - "y": 53.145 - }, - { - "l": "25.0", - "x": 9.1667, - "y": 53.1701 - }, - { - "l": "25.0", - "x": 9.25, - "y": 53.1942 - }, - { - "l": "25.0", - "x": 9.3333, - "y": 53.2184 - }, - { - "l": "25.0", - "x": 9.4167, - "y": 53.2435 - }, - { - "l": "25.0", - "x": 9.5, - "y": 53.2677 - }, - { - "l": "25.0", - "x": 9.5833, - "y": 53.2922 - }, - { - "l": "25.0", - "x": 9.6667, - "y": 53.3163 - }, - { - "l": "25.0", - "x": 9.75, - "y": 53.3415 - }, - { - "l": "25.0", - "x": 9.8333, - "y": 53.3656 - }, - { - "l": "25.0", - "x": 9.9167, - "y": 53.3907 - }, - { - "l": "25.0", - "x": 10.0, - "y": 53.4149 - }, - { - "l": "25.0", - "x": 10.0833, - "y": 53.4394 - }, - { - "l": "25.0", - "x": 10.1667, - "y": 53.4645 - }, - { - "l": "25.0", - "x": 10.25, - "y": 53.4887 - }, - { - "l": "25.0", - "x": 10.3333, - "y": 53.5138 - }, - { - "l": "25.0", - "x": 10.4167, - "y": 53.5389 - }, - { - "l": "25.0", - "x": 10.5, - "y": 53.5631 - }, - { - "l": "25.0", - "x": 10.5833, - "y": 53.5886 - }, - { - "l": "25.0", - "x": 10.6667, - "y": 53.6137 - }, - { - "l": "25.0", - "x": 10.75, - "y": 53.6388 - }, - { - "l": "25.0", - "x": 10.8333, - "y": 53.6649 - }, - { - "l": "25.0", - "x": 10.9167, - "y": 53.6904 - }, - { - "l": "25.0", - "x": 11.0, - "y": 53.7165 - }, - { - "l": "25.0", - "x": 11.0833, - "y": 53.7426 - }, - { - "l": "25.0", - "x": 11.1667, - "y": 53.7677 - }, - { - "l": "25.0", - "x": 11.25, - "y": 53.7952 - }, - { - "l": "25.0", - "x": 11.3333, - "y": 53.8223 - }, - { - "l": "25.0", - "x": 11.4167, - "y": 53.8484 - }, - { - "l": "25.0", - "x": 11.5, - "y": 53.8745 - }, - { - "l": "25.0", - "x": 11.5833, - "y": 53.9019 - }, - { - "l": "25.0", - "x": 11.6667, - "y": 53.929 - }, - { - "l": "25.0", - "x": 11.75, - "y": 53.9561 - }, - { - "l": "25.0", - "x": 11.8333, - "y": 53.9841 - }, - { - "l": "25.0", - "x": 11.9167, - "y": 54.0126 - }, - { - "l": "25.0", - "x": 12.0, - "y": 54.0397 - }, - { - "l": "25.0", - "x": 12.0833, - "y": 54.0677 - }, - { - "l": "25.0", - "x": 12.1667, - "y": 54.0961 - }, - { - "l": "25.0", - "x": 12.25, - "y": 54.1252 - }, - { - "l": "25.0", - "x": 12.3333, - "y": 54.1532 - }, - { - "l": "25.0", - "x": 12.4167, - "y": 54.1817 - }, - { - "l": "25.0", - "x": 12.5, - "y": 54.2107 - }, - { - "l": "25.0", - "x": 12.5833, - "y": 54.2397 - }, - { - "l": "25.0", - "x": 12.6667, - "y": 54.2692 - }, - { - "l": "25.0", - "x": 12.75, - "y": 54.2982 - }, - { - "l": "25.0", - "x": 12.8333, - "y": 54.3272 - }, - { - "l": "25.0", - "x": 12.9167, - "y": 54.3576 - }, - { - "l": "25.0", - "x": 13.0, - "y": 54.3876 - }, - { - "l": "25.0", - "x": 13.0833, - "y": 54.417 - }, - { - "l": "25.0", - "x": 13.1667, - "y": 54.448 - }, - { - "l": "25.0", - "x": 13.25, - "y": 54.4771 - }, - { - "l": "25.0", - "x": 13.3333, - "y": 54.5084 - }, - { - "l": "25.0", - "x": 13.4167, - "y": 54.5385 - }, - { - "l": "25.0", - "x": 13.5, - "y": 54.5688 - }, - { - "l": "25.0", - "x": 13.5833, - "y": 54.5989 - }, - { - "l": "25.0", - "x": 13.6667, - "y": 54.6289 - }, - { - "l": "25.0", - "x": 13.75, - "y": 54.6602 - }, - { - "l": "25.0", - "x": 13.8333, - "y": 54.6903 - }, - { - "l": "25.0", - "x": 13.9167, - "y": 54.7216 - }, - { - "l": "25.0", - "x": 14.0, - "y": 54.7516 - }, - { - "l": "25.0", - "x": 14.0833, - "y": 54.782 - }, - { - "l": "25.0", - "x": 14.1667, - "y": 54.813 - }, - { - "l": "25.0", - "x": 14.25, - "y": 54.8444 - }, - { - "l": "25.0", - "x": 14.3333, - "y": 54.8734 - }, - { - "l": "25.0", - "x": 14.4167, - "y": 54.9038 - }, - { - "l": "25.0", - "x": 14.5, - "y": 54.9348 - }, - { - "l": "25.0", - "x": 14.5833, - "y": 54.9652 - }, - { - "l": "25.0", - "x": 14.6667, - "y": 54.9952 - }, - { - "l": "25.0", - "x": 14.75, - "y": 55.0256 - }, - { - "l": "25.0", - "x": 14.8333, - "y": 55.0556 - }, - { - "l": "25.0", - "x": 14.9167, - "y": 55.086 - }, - { - "l": "25.0", - "x": 15.0, - "y": 55.116 - }, - { - "l": "25.0", - "x": 15.0833, - "y": 55.1454 - }, - { - "l": "25.0", - "x": 15.1667, - "y": 55.1754 - }, - { - "l": "25.0", - "x": 15.25, - "y": 55.2058 - }, - { - "l": "25.0", - "x": 15.3333, - "y": 55.2348 - }, - { - "l": "25.0", - "x": 15.4167, - "y": 55.2642 - }, - { - "l": "25.0", - "x": 15.5, - "y": 55.2932 - }, - { - "l": "25.0", - "x": 15.5833, - "y": 55.3226 - }, - { - "l": "25.0", - "x": 15.6667, - "y": 55.352 - }, - { - "l": "25.0", - "x": 15.75, - "y": 55.3801 - }, - { - "l": "25.0", - "x": 15.8333, - "y": 55.4095 - }, - { - "l": "25.0", - "x": 15.9167, - "y": 55.4375 - }, - { - "l": "25.0", - "x": 16.0, - "y": 55.466 - }, - { - "l": "25.0", - "x": 16.0833, - "y": 55.495 - }, - { - "l": "25.0", - "x": 16.1667, - "y": 55.5234 - }, - { - "l": "25.0", - "x": 16.25, - "y": 55.5515 - }, - { - "l": "25.0", - "x": 16.3333, - "y": 55.5789 - }, - { - "l": "25.0", - "x": 16.4167, - "y": 55.6073 - }, - { - "l": "25.0", - "x": 16.5, - "y": 55.6344 - }, - { - "l": "25.0", - "x": 16.5833, - "y": 55.6618 - }, - { - "l": "25.0", - "x": 16.6667, - "y": 55.6903 - }, - { - "l": "25.0", - "x": 16.75, - "y": 55.7173 - }, - { - "l": "25.0", - "x": 16.8333, - "y": 55.7438 - }, - { - "l": "25.0", - "x": 16.9167, - "y": 55.7709 - }, - { - "l": "25.0", - "x": 17.0, - "y": 55.7983 - }, - { - "l": "25.0", - "x": 17.0833, - "y": 55.8257 - }, - { - "l": "25.0", - "x": 17.1667, - "y": 55.8518 - }, - { - "l": "25.0", - "x": 17.25, - "y": 55.8783 - }, - { - "l": "25.0", - "x": 17.3333, - "y": 55.9044 - }, - { - "l": "25.0", - "x": 17.4167, - "y": 55.9308 - }, - { - "l": "25.0", - "x": 17.5, - "y": 55.9573 - }, - { - "l": "25.0", - "x": 17.5833, - "y": 55.9824 - }, - { - "l": "25.0", - "x": 17.6667, - "y": 56.0088 - }, - { - "l": "25.0", - "x": 17.75, - "y": 56.0343 - }, - { - "l": "25.0", - "x": 17.8333, - "y": 56.0604 - }, - { - "l": "25.0", - "x": 17.9167, - "y": 56.0859 - }, - { - "l": "25.0", - "x": 18.0, - "y": 56.1182 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 4.0, - "y": 52.215 - }, - { - "l": "50.0", - "x": 4.0833, - "y": 52.266 - }, - { - "l": "50.0", - "x": 4.1667, - "y": 52.315 - }, - { - "l": "50.0", - "x": 4.25, - "y": 52.362 - }, - { - "l": "50.0", - "x": 4.3333, - "y": 52.409 - }, - { - "l": "50.0", - "x": 4.4167, - "y": 52.455 - }, - { - "l": "50.0", - "x": 4.5, - "y": 52.499 - }, - { - "l": "50.0", - "x": 4.5833, - "y": 52.543 - }, - { - "l": "50.0", - "x": 4.6667, - "y": 52.585 - }, - { - "l": "50.0", - "x": 4.75, - "y": 52.626 - }, - { - "l": "50.0", - "x": 4.8333, - "y": 52.667 - }, - { - "l": "50.0", - "x": 4.9167, - "y": 52.708 - }, - { - "l": "50.0", - "x": 5.0, - "y": 52.747 - }, - { - "l": "50.0", - "x": 5.0833, - "y": 52.786 - }, - { - "l": "50.0", - "x": 5.1667, - "y": 52.823 - }, - { - "l": "50.0", - "x": 5.25, - "y": 52.86 - }, - { - "l": "50.0", - "x": 5.3333, - "y": 52.896 - }, - { - "l": "50.0", - "x": 5.4167, - "y": 52.932 - }, - { - "l": "50.0", - "x": 5.5, - "y": 52.967 - }, - { - "l": "50.0", - "x": 5.5833, - "y": 53.002 - }, - { - "l": "50.0", - "x": 5.6667, - "y": 53.036 - }, - { - "l": "50.0", - "x": 5.75, - "y": 53.07 - }, - { - "l": "50.0", - "x": 5.8333, - "y": 53.103 - }, - { - "l": "50.0", - "x": 5.9167, - "y": 53.136 - }, - { - "l": "50.0", - "x": 6.0, - "y": 53.168 - }, - { - "l": "50.0", - "x": 6.0833, - "y": 53.2 - }, - { - "l": "50.0", - "x": 6.1667, - "y": 53.232 - }, - { - "l": "50.0", - "x": 6.25, - "y": 53.264 - }, - { - "l": "50.0", - "x": 6.3333, - "y": 53.294 - }, - { - "l": "50.0", - "x": 6.4167, - "y": 53.325 - }, - { - "l": "50.0", - "x": 6.5, - "y": 53.356 - }, - { - "l": "50.0", - "x": 6.5833, - "y": 53.387 - }, - { - "l": "50.0", - "x": 6.6667, - "y": 53.416 - }, - { - "l": "50.0", - "x": 6.75, - "y": 53.446 - }, - { - "l": "50.0", - "x": 6.8333, - "y": 53.476 - }, - { - "l": "50.0", - "x": 6.9167, - "y": 53.505 - }, - { - "l": "50.0", - "x": 7.0, - "y": 53.534 - }, - { - "l": "50.0", - "x": 7.0833, - "y": 53.563 - }, - { - "l": "50.0", - "x": 7.1667, - "y": 53.591 - }, - { - "l": "50.0", - "x": 7.25, - "y": 53.62 - }, - { - "l": "50.0", - "x": 7.3333, - "y": 53.649 - }, - { - "l": "50.0", - "x": 7.4167, - "y": 53.676 - }, - { - "l": "50.0", - "x": 7.5, - "y": 53.704 - }, - { - "l": "50.0", - "x": 7.5833, - "y": 53.732 - }, - { - "l": "50.0", - "x": 7.6667, - "y": 53.76 - }, - { - "l": "50.0", - "x": 7.75, - "y": 53.787 - }, - { - "l": "50.0", - "x": 7.8333, - "y": 53.814 - }, - { - "l": "50.0", - "x": 7.9167, - "y": 53.841 - }, - { - "l": "50.0", - "x": 8.0, - "y": 53.867 - }, - { - "l": "50.0", - "x": 8.0833, - "y": 53.893 - }, - { - "l": "50.0", - "x": 8.1667, - "y": 53.92 - }, - { - "l": "50.0", - "x": 8.25, - "y": 53.946 - }, - { - "l": "50.0", - "x": 8.3333, - "y": 53.972 - }, - { - "l": "50.0", - "x": 8.4167, - "y": 53.998 - }, - { - "l": "50.0", - "x": 8.5, - "y": 54.024 - }, - { - "l": "50.0", - "x": 8.5833, - "y": 54.05 - }, - { - "l": "50.0", - "x": 8.6667, - "y": 54.076 - }, - { - "l": "50.0", - "x": 8.75, - "y": 54.101 - }, - { - "l": "50.0", - "x": 8.8333, - "y": 54.126 - }, - { - "l": "50.0", - "x": 8.9167, - "y": 54.152 - }, - { - "l": "50.0", - "x": 9.0, - "y": 54.178 - }, - { - "l": "50.0", - "x": 9.0833, - "y": 54.203 - }, - { - "l": "50.0", - "x": 9.1667, - "y": 54.229 - }, - { - "l": "50.0", - "x": 9.25, - "y": 54.254 - }, - { - "l": "50.0", - "x": 9.3333, - "y": 54.279 - }, - { - "l": "50.0", - "x": 9.4167, - "y": 54.305 - }, - { - "l": "50.0", - "x": 9.5, - "y": 54.33 - }, - { - "l": "50.0", - "x": 9.5833, - "y": 54.355 - }, - { - "l": "50.0", - "x": 9.6667, - "y": 54.38 - }, - { - "l": "50.0", - "x": 9.75, - "y": 54.406 - }, - { - "l": "50.0", - "x": 9.8333, - "y": 54.431 - }, - { - "l": "50.0", - "x": 9.9167, - "y": 54.457 - }, - { - "l": "50.0", - "x": 10.0, - "y": 54.482 - }, - { - "l": "50.0", - "x": 10.0833, - "y": 54.507 - }, - { - "l": "50.0", - "x": 10.1667, - "y": 54.533 - }, - { - "l": "50.0", - "x": 10.25, - "y": 54.558 - }, - { - "l": "50.0", - "x": 10.3333, - "y": 54.584 - }, - { - "l": "50.0", - "x": 10.4167, - "y": 54.61 - }, - { - "l": "50.0", - "x": 10.5, - "y": 54.635 - }, - { - "l": "50.0", - "x": 10.5833, - "y": 54.661 - }, - { - "l": "50.0", - "x": 10.6667, - "y": 54.687 - }, - { - "l": "50.0", - "x": 10.75, - "y": 54.713 - }, - { - "l": "50.0", - "x": 10.8333, - "y": 54.74 - }, - { - "l": "50.0", - "x": 10.9167, - "y": 54.766 - }, - { - "l": "50.0", - "x": 11.0, - "y": 54.793 - }, - { - "l": "50.0", - "x": 11.0833, - "y": 54.82 - }, - { - "l": "50.0", - "x": 11.1667, - "y": 54.846 - }, - { - "l": "50.0", - "x": 11.25, - "y": 54.874 - }, - { - "l": "50.0", - "x": 11.3333, - "y": 54.902 - }, - { - "l": "50.0", - "x": 11.4167, - "y": 54.929 - }, - { - "l": "50.0", - "x": 11.5, - "y": 54.956 - }, - { - "l": "50.0", - "x": 11.5833, - "y": 54.984 - }, - { - "l": "50.0", - "x": 11.6667, - "y": 55.012 - }, - { - "l": "50.0", - "x": 11.75, - "y": 55.04 - }, - { - "l": "50.0", - "x": 11.8333, - "y": 55.069 - }, - { - "l": "50.0", - "x": 11.9167, - "y": 55.098 - }, - { - "l": "50.0", - "x": 12.0, - "y": 55.126 - }, - { - "l": "50.0", - "x": 12.0833, - "y": 55.155 - }, - { - "l": "50.0", - "x": 12.1667, - "y": 55.184 - }, - { - "l": "50.0", - "x": 12.25, - "y": 55.214 - }, - { - "l": "50.0", - "x": 12.3333, - "y": 55.243 - }, - { - "l": "50.0", - "x": 12.4167, - "y": 55.272 - }, - { - "l": "50.0", - "x": 12.5, - "y": 55.302 - }, - { - "l": "50.0", - "x": 12.5833, - "y": 55.332 - }, - { - "l": "50.0", - "x": 12.6667, - "y": 55.362 - }, - { - "l": "50.0", - "x": 12.75, - "y": 55.392 - }, - { - "l": "50.0", - "x": 12.8333, - "y": 55.422 - }, - { - "l": "50.0", - "x": 12.9167, - "y": 55.453 - }, - { - "l": "50.0", - "x": 13.0, - "y": 55.484 - }, - { - "l": "50.0", - "x": 13.0833, - "y": 55.514 - }, - { - "l": "50.0", - "x": 13.1667, - "y": 55.546 - }, - { - "l": "50.0", - "x": 13.25, - "y": 55.576 - }, - { - "l": "50.0", - "x": 13.3333, - "y": 55.608 - }, - { - "l": "50.0", - "x": 13.4167, - "y": 55.639 - }, - { - "l": "50.0", - "x": 13.5, - "y": 55.67 - }, - { - "l": "50.0", - "x": 13.5833, - "y": 55.701 - }, - { - "l": "50.0", - "x": 13.6667, - "y": 55.732 - }, - { - "l": "50.0", - "x": 13.75, - "y": 55.764 - }, - { - "l": "50.0", - "x": 13.8333, - "y": 55.795 - }, - { - "l": "50.0", - "x": 13.9167, - "y": 55.827 - }, - { - "l": "50.0", - "x": 14.0, - "y": 55.858 - }, - { - "l": "50.0", - "x": 14.0833, - "y": 55.889 - }, - { - "l": "50.0", - "x": 14.1667, - "y": 55.921 - }, - { - "l": "50.0", - "x": 14.25, - "y": 55.953 - }, - { - "l": "50.0", - "x": 14.3333, - "y": 55.983 - }, - { - "l": "50.0", - "x": 14.4167, - "y": 56.014 - }, - { - "l": "50.0", - "x": 14.5, - "y": 56.046 - }, - { - "l": "50.0", - "x": 14.5833, - "y": 56.077 - }, - { - "l": "50.0", - "x": 14.6667, - "y": 56.108 - }, - { - "l": "50.0", - "x": 14.75, - "y": 56.139 - }, - { - "l": "50.0", - "x": 14.8333, - "y": 56.17 - }, - { - "l": "50.0", - "x": 14.9167, - "y": 56.201 - }, - { - "l": "50.0", - "x": 15.0, - "y": 56.232 - }, - { - "l": "50.0", - "x": 15.0833, - "y": 56.262 - }, - { - "l": "50.0", - "x": 15.1667, - "y": 56.293 - }, - { - "l": "50.0", - "x": 15.25, - "y": 56.324 - }, - { - "l": "50.0", - "x": 15.3333, - "y": 56.354 - }, - { - "l": "50.0", - "x": 15.4167, - "y": 56.384 - }, - { - "l": "50.0", - "x": 15.5, - "y": 56.414 - }, - { - "l": "50.0", - "x": 15.5833, - "y": 56.444 - }, - { - "l": "50.0", - "x": 15.6667, - "y": 56.474 - }, - { - "l": "50.0", - "x": 15.75, - "y": 56.503 - }, - { - "l": "50.0", - "x": 15.8333, - "y": 56.533 - }, - { - "l": "50.0", - "x": 15.9167, - "y": 56.562 - }, - { - "l": "50.0", - "x": 16.0, - "y": 56.591 - }, - { - "l": "50.0", - "x": 16.0833, - "y": 56.621 - }, - { - "l": "50.0", - "x": 16.1667, - "y": 56.65 - }, - { - "l": "50.0", - "x": 16.25, - "y": 56.679 - }, - { - "l": "50.0", - "x": 16.3333, - "y": 56.707 - }, - { - "l": "50.0", - "x": 16.4167, - "y": 56.736 - }, - { - "l": "50.0", - "x": 16.5, - "y": 56.764 - }, - { - "l": "50.0", - "x": 16.5833, - "y": 56.792 - }, - { - "l": "50.0", - "x": 16.6667, - "y": 56.821 - }, - { - "l": "50.0", - "x": 16.75, - "y": 56.849 - }, - { - "l": "50.0", - "x": 16.8333, - "y": 56.876 - }, - { - "l": "50.0", - "x": 16.9167, - "y": 56.904 - }, - { - "l": "50.0", - "x": 17.0, - "y": 56.932 - }, - { - "l": "50.0", - "x": 17.0833, - "y": 56.96 - }, - { - "l": "50.0", - "x": 17.1667, - "y": 56.987 - }, - { - "l": "50.0", - "x": 17.25, - "y": 57.014 - }, - { - "l": "50.0", - "x": 17.3333, - "y": 57.041 - }, - { - "l": "50.0", - "x": 17.4167, - "y": 57.068 - }, - { - "l": "50.0", - "x": 17.5, - "y": 57.095 - }, - { - "l": "50.0", - "x": 17.5833, - "y": 57.121 - }, - { - "l": "50.0", - "x": 17.6667, - "y": 57.148 - }, - { - "l": "50.0", - "x": 17.75, - "y": 57.174 - }, - { - "l": "50.0", - "x": 17.8333, - "y": 57.201 - }, - { - "l": "50.0", - "x": 17.9167, - "y": 57.227 - }, - { - "l": "50.0", - "x": 18.0, - "y": 57.26 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 4.0, - "y": 53.1928 - }, - { - "l": "75.0", - "x": 4.0833, - "y": 53.2462 - }, - { - "l": "75.0", - "x": 4.1667, - "y": 53.2978 - }, - { - "l": "75.0", - "x": 4.25, - "y": 53.3471 - }, - { - "l": "75.0", - "x": 4.3333, - "y": 53.3967 - }, - { - "l": "75.0", - "x": 4.4167, - "y": 53.445 - }, - { - "l": "75.0", - "x": 4.5, - "y": 53.4912 - }, - { - "l": "75.0", - "x": 4.5833, - "y": 53.5375 - }, - { - "l": "75.0", - "x": 4.6667, - "y": 53.5813 - }, - { - "l": "75.0", - "x": 4.75, - "y": 53.6245 - }, - { - "l": "75.0", - "x": 4.8333, - "y": 53.6673 - }, - { - "l": "75.0", - "x": 4.9167, - "y": 53.7102 - }, - { - "l": "75.0", - "x": 5.0, - "y": 53.751 - }, - { - "l": "75.0", - "x": 5.0833, - "y": 53.7917 - }, - { - "l": "75.0", - "x": 5.1667, - "y": 53.8305 - }, - { - "l": "75.0", - "x": 5.25, - "y": 53.8693 - }, - { - "l": "75.0", - "x": 5.3333, - "y": 53.907 - }, - { - "l": "75.0", - "x": 5.4167, - "y": 53.9444 - }, - { - "l": "75.0", - "x": 5.5, - "y": 53.9811 - }, - { - "l": "75.0", - "x": 5.5833, - "y": 54.0175 - }, - { - "l": "75.0", - "x": 5.6667, - "y": 54.0529 - }, - { - "l": "75.0", - "x": 5.75, - "y": 54.0882 - }, - { - "l": "75.0", - "x": 5.8333, - "y": 54.1226 - }, - { - "l": "75.0", - "x": 5.9167, - "y": 54.1573 - }, - { - "l": "75.0", - "x": 6.0, - "y": 54.1902 - }, - { - "l": "75.0", - "x": 6.0833, - "y": 54.2236 - }, - { - "l": "75.0", - "x": 6.1667, - "y": 54.2569 - }, - { - "l": "75.0", - "x": 6.25, - "y": 54.2902 - }, - { - "l": "75.0", - "x": 6.3333, - "y": 54.3215 - }, - { - "l": "75.0", - "x": 6.4167, - "y": 54.3535 - }, - { - "l": "75.0", - "x": 6.5, - "y": 54.3858 - }, - { - "l": "75.0", - "x": 6.5833, - "y": 54.4177 - }, - { - "l": "75.0", - "x": 6.6667, - "y": 54.448 - }, - { - "l": "75.0", - "x": 6.75, - "y": 54.4789 - }, - { - "l": "75.0", - "x": 6.8333, - "y": 54.5099 - }, - { - "l": "75.0", - "x": 6.9167, - "y": 54.5401 - }, - { - "l": "75.0", - "x": 7.0, - "y": 54.5701 - }, - { - "l": "75.0", - "x": 7.0833, - "y": 54.6 - }, - { - "l": "75.0", - "x": 7.1667, - "y": 54.6289 - }, - { - "l": "75.0", - "x": 7.25, - "y": 54.6592 - }, - { - "l": "75.0", - "x": 7.3333, - "y": 54.6891 - }, - { - "l": "75.0", - "x": 7.4167, - "y": 54.717 - }, - { - "l": "75.0", - "x": 7.5, - "y": 54.7459 - }, - { - "l": "75.0", - "x": 7.5833, - "y": 54.7748 - }, - { - "l": "75.0", - "x": 7.6667, - "y": 54.8037 - }, - { - "l": "75.0", - "x": 7.75, - "y": 54.8315 - }, - { - "l": "75.0", - "x": 7.8333, - "y": 54.8594 - }, - { - "l": "75.0", - "x": 7.9167, - "y": 54.8873 - }, - { - "l": "75.0", - "x": 8.0, - "y": 54.9142 - }, - { - "l": "75.0", - "x": 8.0833, - "y": 54.941 - }, - { - "l": "75.0", - "x": 8.1667, - "y": 54.9689 - }, - { - "l": "75.0", - "x": 8.25, - "y": 54.9958 - }, - { - "l": "75.0", - "x": 8.3333, - "y": 55.0227 - }, - { - "l": "75.0", - "x": 8.4167, - "y": 55.0495 - }, - { - "l": "75.0", - "x": 8.5, - "y": 55.0764 - }, - { - "l": "75.0", - "x": 8.5833, - "y": 55.1033 - }, - { - "l": "75.0", - "x": 8.6667, - "y": 55.1301 - }, - { - "l": "75.0", - "x": 8.75, - "y": 55.156 - }, - { - "l": "75.0", - "x": 8.8333, - "y": 55.1818 - }, - { - "l": "75.0", - "x": 8.9167, - "y": 55.2083 - }, - { - "l": "75.0", - "x": 9.0, - "y": 55.2352 - }, - { - "l": "75.0", - "x": 9.0833, - "y": 55.261 - }, - { - "l": "75.0", - "x": 9.1667, - "y": 55.2879 - }, - { - "l": "75.0", - "x": 9.25, - "y": 55.3138 - }, - { - "l": "75.0", - "x": 9.3333, - "y": 55.3396 - }, - { - "l": "75.0", - "x": 9.4167, - "y": 55.3665 - }, - { - "l": "75.0", - "x": 9.5, - "y": 55.3923 - }, - { - "l": "75.0", - "x": 9.5833, - "y": 55.4178 - }, - { - "l": "75.0", - "x": 9.6667, - "y": 55.4437 - }, - { - "l": "75.0", - "x": 9.75, - "y": 55.4705 - }, - { - "l": "75.0", - "x": 9.8333, - "y": 55.4964 - }, - { - "l": "75.0", - "x": 9.9167, - "y": 55.5233 - }, - { - "l": "75.0", - "x": 10.0, - "y": 55.5491 - }, - { - "l": "75.0", - "x": 10.0833, - "y": 55.5746 - }, - { - "l": "75.0", - "x": 10.1667, - "y": 55.6015 - }, - { - "l": "75.0", - "x": 10.25, - "y": 55.6273 - }, - { - "l": "75.0", - "x": 10.3333, - "y": 55.6542 - }, - { - "l": "75.0", - "x": 10.4167, - "y": 55.6811 - }, - { - "l": "75.0", - "x": 10.5, - "y": 55.7069 - }, - { - "l": "75.0", - "x": 10.5833, - "y": 55.7334 - }, - { - "l": "75.0", - "x": 10.6667, - "y": 55.7603 - }, - { - "l": "75.0", - "x": 10.75, - "y": 55.7872 - }, - { - "l": "75.0", - "x": 10.8333, - "y": 55.8151 - }, - { - "l": "75.0", - "x": 10.9167, - "y": 55.8416 - }, - { - "l": "75.0", - "x": 11.0, - "y": 55.8695 - }, - { - "l": "75.0", - "x": 11.0833, - "y": 55.8974 - }, - { - "l": "75.0", - "x": 11.1667, - "y": 55.9243 - }, - { - "l": "75.0", - "x": 11.25, - "y": 55.9528 - }, - { - "l": "75.0", - "x": 11.3333, - "y": 55.9817 - }, - { - "l": "75.0", - "x": 11.4167, - "y": 56.0096 - }, - { - "l": "75.0", - "x": 11.5, - "y": 56.0375 - }, - { - "l": "75.0", - "x": 11.5833, - "y": 56.0661 - }, - { - "l": "75.0", - "x": 11.6667, - "y": 56.095 - }, - { - "l": "75.0", - "x": 11.75, - "y": 56.1239 - }, - { - "l": "75.0", - "x": 11.8333, - "y": 56.1539 - }, - { - "l": "75.0", - "x": 11.9167, - "y": 56.1834 - }, - { - "l": "75.0", - "x": 12.0, - "y": 56.2123 - }, - { - "l": "75.0", - "x": 12.0833, - "y": 56.2423 - }, - { - "l": "75.0", - "x": 12.1667, - "y": 56.2719 - }, - { - "l": "75.0", - "x": 12.25, - "y": 56.3028 - }, - { - "l": "75.0", - "x": 12.3333, - "y": 56.3328 - }, - { - "l": "75.0", - "x": 12.4167, - "y": 56.3623 - }, - { - "l": "75.0", - "x": 12.5, - "y": 56.3933 - }, - { - "l": "75.0", - "x": 12.5833, - "y": 56.4243 - }, - { - "l": "75.0", - "x": 12.6667, - "y": 56.4548 - }, - { - "l": "75.0", - "x": 12.75, - "y": 56.4858 - }, - { - "l": "75.0", - "x": 12.8333, - "y": 56.5168 - }, - { - "l": "75.0", - "x": 12.9167, - "y": 56.5484 - }, - { - "l": "75.0", - "x": 13.0, - "y": 56.5804 - }, - { - "l": "75.0", - "x": 13.0833, - "y": 56.611 - }, - { - "l": "75.0", - "x": 13.1667, - "y": 56.644 - }, - { - "l": "75.0", - "x": 13.25, - "y": 56.6749 - }, - { - "l": "75.0", - "x": 13.3333, - "y": 56.7076 - }, - { - "l": "75.0", - "x": 13.4167, - "y": 56.7395 - }, - { - "l": "75.0", - "x": 13.5, - "y": 56.7712 - }, - { - "l": "75.0", - "x": 13.5833, - "y": 56.8031 - }, - { - "l": "75.0", - "x": 13.6667, - "y": 56.8351 - }, - { - "l": "75.0", - "x": 13.75, - "y": 56.8678 - }, - { - "l": "75.0", - "x": 13.8333, - "y": 56.8997 - }, - { - "l": "75.0", - "x": 13.9167, - "y": 56.9324 - }, - { - "l": "75.0", - "x": 14.0, - "y": 56.9644 - }, - { - "l": "75.0", - "x": 14.0833, - "y": 56.996 - }, - { - "l": "75.0", - "x": 14.1667, - "y": 57.029 - }, - { - "l": "75.0", - "x": 14.25, - "y": 57.0616 - }, - { - "l": "75.0", - "x": 14.3333, - "y": 57.0926 - }, - { - "l": "75.0", - "x": 14.4167, - "y": 57.1242 - }, - { - "l": "75.0", - "x": 14.5, - "y": 57.1572 - }, - { - "l": "75.0", - "x": 14.5833, - "y": 57.1888 - }, - { - "l": "75.0", - "x": 14.6667, - "y": 57.2208 - }, - { - "l": "75.0", - "x": 14.75, - "y": 57.2524 - }, - { - "l": "75.0", - "x": 14.8333, - "y": 57.2844 - }, - { - "l": "75.0", - "x": 14.9167, - "y": 57.316 - }, - { - "l": "75.0", - "x": 15.0, - "y": 57.348 - }, - { - "l": "75.0", - "x": 15.0833, - "y": 57.3786 - }, - { - "l": "75.0", - "x": 15.1667, - "y": 57.4106 - }, - { - "l": "75.0", - "x": 15.25, - "y": 57.4422 - }, - { - "l": "75.0", - "x": 15.3333, - "y": 57.4732 - }, - { - "l": "75.0", - "x": 15.4167, - "y": 57.5038 - }, - { - "l": "75.0", - "x": 15.5, - "y": 57.5348 - }, - { - "l": "75.0", - "x": 15.5833, - "y": 57.5654 - }, - { - "l": "75.0", - "x": 15.6667, - "y": 57.596 - }, - { - "l": "75.0", - "x": 15.75, - "y": 57.6259 - }, - { - "l": "75.0", - "x": 15.8333, - "y": 57.6565 - }, - { - "l": "75.0", - "x": 15.9167, - "y": 57.6865 - }, - { - "l": "75.0", - "x": 16.0, - "y": 57.716 - }, - { - "l": "75.0", - "x": 16.0833, - "y": 57.747 - }, - { - "l": "75.0", - "x": 16.1667, - "y": 57.7766 - }, - { - "l": "75.0", - "x": 16.25, - "y": 57.8065 - }, - { - "l": "75.0", - "x": 16.3333, - "y": 57.8351 - }, - { - "l": "75.0", - "x": 16.4167, - "y": 57.8647 - }, - { - "l": "75.0", - "x": 16.5, - "y": 57.8936 - }, - { - "l": "75.0", - "x": 16.5833, - "y": 57.9222 - }, - { - "l": "75.0", - "x": 16.6667, - "y": 57.9517 - }, - { - "l": "75.0", - "x": 16.75, - "y": 57.9807 - }, - { - "l": "75.0", - "x": 16.8333, - "y": 58.0082 - }, - { - "l": "75.0", - "x": 16.9167, - "y": 58.0371 - }, - { - "l": "75.0", - "x": 17.0, - "y": 58.0657 - }, - { - "l": "75.0", - "x": 17.0833, - "y": 58.0943 - }, - { - "l": "75.0", - "x": 17.1667, - "y": 58.1222 - }, - { - "l": "75.0", - "x": 17.25, - "y": 58.1497 - }, - { - "l": "75.0", - "x": 17.3333, - "y": 58.1776 - }, - { - "l": "75.0", - "x": 17.4167, - "y": 58.2052 - }, - { - "l": "75.0", - "x": 17.5, - "y": 58.2327 - }, - { - "l": "75.0", - "x": 17.5833, - "y": 58.2596 - }, - { - "l": "75.0", - "x": 17.6667, - "y": 58.2872 - }, - { - "l": "75.0", - "x": 17.75, - "y": 58.3137 - }, - { - "l": "75.0", - "x": 17.8333, - "y": 58.3416 - }, - { - "l": "75.0", - "x": 17.9167, - "y": 58.3681 - }, - { - "l": "75.0", - "x": 18.0, - "y": 58.4018 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 4.0, - "y": 54.1706 - }, - { - "l": "91.0", - "x": 4.0833, - "y": 54.2263 - }, - { - "l": "91.0", - "x": 4.1667, - "y": 54.2806 - }, - { - "l": "91.0", - "x": 4.25, - "y": 54.3322 - }, - { - "l": "91.0", - "x": 4.3333, - "y": 54.3845 - }, - { - "l": "91.0", - "x": 4.4167, - "y": 54.435 - }, - { - "l": "91.0", - "x": 4.5, - "y": 54.4835 - }, - { - "l": "91.0", - "x": 4.5833, - "y": 54.5319 - }, - { - "l": "91.0", - "x": 4.6667, - "y": 54.5776 - }, - { - "l": "91.0", - "x": 4.75, - "y": 54.623 - }, - { - "l": "91.0", - "x": 4.8333, - "y": 54.6676 - }, - { - "l": "91.0", - "x": 4.9167, - "y": 54.7123 - }, - { - "l": "91.0", - "x": 5.0, - "y": 54.7549 - }, - { - "l": "91.0", - "x": 5.0833, - "y": 54.7975 - }, - { - "l": "91.0", - "x": 5.1667, - "y": 54.838 - }, - { - "l": "91.0", - "x": 5.25, - "y": 54.8785 - }, - { - "l": "91.0", - "x": 5.3333, - "y": 54.918 - }, - { - "l": "91.0", - "x": 5.4167, - "y": 54.9568 - }, - { - "l": "91.0", - "x": 5.5, - "y": 54.9953 - }, - { - "l": "91.0", - "x": 5.5833, - "y": 55.033 - }, - { - "l": "91.0", - "x": 5.6667, - "y": 55.0698 - }, - { - "l": "91.0", - "x": 5.75, - "y": 55.1065 - }, - { - "l": "91.0", - "x": 5.8333, - "y": 55.1422 - }, - { - "l": "91.0", - "x": 5.9167, - "y": 55.1785 - }, - { - "l": "91.0", - "x": 6.0, - "y": 55.2125 - }, - { - "l": "91.0", - "x": 6.0833, - "y": 55.2471 - }, - { - "l": "91.0", - "x": 6.1667, - "y": 55.2818 - }, - { - "l": "91.0", - "x": 6.25, - "y": 55.3164 - }, - { - "l": "91.0", - "x": 6.3333, - "y": 55.349 - }, - { - "l": "91.0", - "x": 6.4167, - "y": 55.3819 - }, - { - "l": "91.0", - "x": 6.5, - "y": 55.4155 - }, - { - "l": "91.0", - "x": 6.5833, - "y": 55.4485 - }, - { - "l": "91.0", - "x": 6.6667, - "y": 55.48 - }, - { - "l": "91.0", - "x": 6.75, - "y": 55.5119 - }, - { - "l": "91.0", - "x": 6.8333, - "y": 55.5437 - }, - { - "l": "91.0", - "x": 6.9167, - "y": 55.5753 - }, - { - "l": "91.0", - "x": 7.0, - "y": 55.6061 - }, - { - "l": "91.0", - "x": 7.0833, - "y": 55.637 - }, - { - "l": "91.0", - "x": 7.1667, - "y": 55.6668 - }, - { - "l": "91.0", - "x": 7.25, - "y": 55.6983 - }, - { - "l": "91.0", - "x": 7.3333, - "y": 55.7292 - }, - { - "l": "91.0", - "x": 7.4167, - "y": 55.7579 - }, - { - "l": "91.0", - "x": 7.5, - "y": 55.7877 - }, - { - "l": "91.0", - "x": 7.5833, - "y": 55.8175 - }, - { - "l": "91.0", - "x": 7.6667, - "y": 55.8473 - }, - { - "l": "91.0", - "x": 7.75, - "y": 55.8761 - }, - { - "l": "91.0", - "x": 7.8333, - "y": 55.9049 - }, - { - "l": "91.0", - "x": 7.9167, - "y": 55.9336 - }, - { - "l": "91.0", - "x": 8.0, - "y": 55.9613 - }, - { - "l": "91.0", - "x": 8.0833, - "y": 55.9891 - }, - { - "l": "91.0", - "x": 8.1667, - "y": 56.0178 - }, - { - "l": "91.0", - "x": 8.25, - "y": 56.0456 - }, - { - "l": "91.0", - "x": 8.3333, - "y": 56.0733 - }, - { - "l": "91.0", - "x": 8.4167, - "y": 56.101 - }, - { - "l": "91.0", - "x": 8.5, - "y": 56.1288 - }, - { - "l": "91.0", - "x": 8.5833, - "y": 56.1565 - }, - { - "l": "91.0", - "x": 8.6667, - "y": 56.1842 - }, - { - "l": "91.0", - "x": 8.75, - "y": 56.2109 - }, - { - "l": "91.0", - "x": 8.8333, - "y": 56.2376 - }, - { - "l": "91.0", - "x": 8.9167, - "y": 56.2647 - }, - { - "l": "91.0", - "x": 9.0, - "y": 56.2924 - }, - { - "l": "91.0", - "x": 9.0833, - "y": 56.3191 - }, - { - "l": "91.0", - "x": 9.1667, - "y": 56.3468 - }, - { - "l": "91.0", - "x": 9.25, - "y": 56.3735 - }, - { - "l": "91.0", - "x": 9.3333, - "y": 56.4002 - }, - { - "l": "91.0", - "x": 9.4167, - "y": 56.428 - }, - { - "l": "91.0", - "x": 9.5, - "y": 56.4547 - }, - { - "l": "91.0", - "x": 9.5833, - "y": 56.4806 - }, - { - "l": "91.0", - "x": 9.6667, - "y": 56.5073 - }, - { - "l": "91.0", - "x": 9.75, - "y": 56.5351 - }, - { - "l": "91.0", - "x": 9.8333, - "y": 56.5618 - }, - { - "l": "91.0", - "x": 9.9167, - "y": 56.5895 - }, - { - "l": "91.0", - "x": 10.0, - "y": 56.6162 - }, - { - "l": "91.0", - "x": 10.0833, - "y": 56.6422 - }, - { - "l": "91.0", - "x": 10.1667, - "y": 56.67 - }, - { - "l": "91.0", - "x": 10.25, - "y": 56.6967 - }, - { - "l": "91.0", - "x": 10.3333, - "y": 56.7244 - }, - { - "l": "91.0", - "x": 10.4167, - "y": 56.7522 - }, - { - "l": "91.0", - "x": 10.5, - "y": 56.7789 - }, - { - "l": "91.0", - "x": 10.5833, - "y": 56.8059 - }, - { - "l": "91.0", - "x": 10.6667, - "y": 56.8336 - }, - { - "l": "91.0", - "x": 10.75, - "y": 56.8614 - }, - { - "l": "91.0", - "x": 10.8333, - "y": 56.8902 - }, - { - "l": "91.0", - "x": 10.9167, - "y": 56.9172 - }, - { - "l": "91.0", - "x": 11.0, - "y": 56.946 - }, - { - "l": "91.0", - "x": 11.0833, - "y": 56.9748 - }, - { - "l": "91.0", - "x": 11.1667, - "y": 57.0025 - }, - { - "l": "91.0", - "x": 11.25, - "y": 57.0316 - }, - { - "l": "91.0", - "x": 11.3333, - "y": 57.0615 - }, - { - "l": "91.0", - "x": 11.4167, - "y": 57.0903 - }, - { - "l": "91.0", - "x": 11.5, - "y": 57.1191 - }, - { - "l": "91.0", - "x": 11.5833, - "y": 57.1482 - }, - { - "l": "91.0", - "x": 11.6667, - "y": 57.178 - }, - { - "l": "91.0", - "x": 11.75, - "y": 57.2078 - }, - { - "l": "91.0", - "x": 11.8333, - "y": 57.2387 - }, - { - "l": "91.0", - "x": 11.9167, - "y": 57.2689 - }, - { - "l": "91.0", - "x": 12.0, - "y": 57.2987 - }, - { - "l": "91.0", - "x": 12.0833, - "y": 57.3296 - }, - { - "l": "91.0", - "x": 12.1667, - "y": 57.3597 - }, - { - "l": "91.0", - "x": 12.25, - "y": 57.3916 - }, - { - "l": "91.0", - "x": 12.3333, - "y": 57.4225 - }, - { - "l": "91.0", - "x": 12.4167, - "y": 57.4527 - }, - { - "l": "91.0", - "x": 12.5, - "y": 57.4846 - }, - { - "l": "91.0", - "x": 12.5833, - "y": 57.5165 - }, - { - "l": "91.0", - "x": 12.6667, - "y": 57.5477 - }, - { - "l": "91.0", - "x": 12.75, - "y": 57.5796 - }, - { - "l": "91.0", - "x": 12.8333, - "y": 57.6115 - }, - { - "l": "91.0", - "x": 12.9167, - "y": 57.6438 - }, - { - "l": "91.0", - "x": 13.0, - "y": 57.6767 - }, - { - "l": "91.0", - "x": 13.0833, - "y": 57.7079 - }, - { - "l": "91.0", - "x": 13.1667, - "y": 57.7419 - }, - { - "l": "91.0", - "x": 13.25, - "y": 57.7738 - }, - { - "l": "91.0", - "x": 13.3333, - "y": 57.8071 - }, - { - "l": "91.0", - "x": 13.4167, - "y": 57.8401 - }, - { - "l": "91.0", - "x": 13.5, - "y": 57.8723 - }, - { - "l": "91.0", - "x": 13.5833, - "y": 57.9053 - }, - { - "l": "91.0", - "x": 13.6667, - "y": 57.9382 - }, - { - "l": "91.0", - "x": 13.75, - "y": 57.9715 - }, - { - "l": "91.0", - "x": 13.8333, - "y": 58.0045 - }, - { - "l": "91.0", - "x": 13.9167, - "y": 58.0377 - }, - { - "l": "91.0", - "x": 14.0, - "y": 58.0707 - }, - { - "l": "91.0", - "x": 14.0833, - "y": 58.1029 - }, - { - "l": "91.0", - "x": 14.1667, - "y": 58.137 - }, - { - "l": "91.0", - "x": 14.25, - "y": 58.1702 - }, - { - "l": "91.0", - "x": 14.3333, - "y": 58.2022 - }, - { - "l": "91.0", - "x": 14.4167, - "y": 58.2344 - }, - { - "l": "91.0", - "x": 14.5, - "y": 58.2684 - }, - { - "l": "91.0", - "x": 14.5833, - "y": 58.3006 - }, - { - "l": "91.0", - "x": 14.6667, - "y": 58.3336 - }, - { - "l": "91.0", - "x": 14.75, - "y": 58.3658 - }, - { - "l": "91.0", - "x": 14.8333, - "y": 58.3988 - }, - { - "l": "91.0", - "x": 14.9167, - "y": 58.4311 - }, - { - "l": "91.0", - "x": 15.0, - "y": 58.464 - }, - { - "l": "91.0", - "x": 15.0833, - "y": 58.4952 - }, - { - "l": "91.0", - "x": 15.1667, - "y": 58.5282 - }, - { - "l": "91.0", - "x": 15.25, - "y": 58.5604 - }, - { - "l": "91.0", - "x": 15.3333, - "y": 58.5924 - }, - { - "l": "91.0", - "x": 15.4167, - "y": 58.6236 - }, - { - "l": "91.0", - "x": 15.5, - "y": 58.6555 - }, - { - "l": "91.0", - "x": 15.5833, - "y": 58.6867 - }, - { - "l": "91.0", - "x": 15.6667, - "y": 58.7179 - }, - { - "l": "91.0", - "x": 15.75, - "y": 58.7488 - }, - { - "l": "91.0", - "x": 15.8333, - "y": 58.78 - }, - { - "l": "91.0", - "x": 15.9167, - "y": 58.8109 - }, - { - "l": "91.0", - "x": 16.0, - "y": 58.8411 - }, - { - "l": "91.0", - "x": 16.0833, - "y": 58.873 - }, - { - "l": "91.0", - "x": 16.1667, - "y": 58.9032 - }, - { - "l": "91.0", - "x": 16.25, - "y": 58.9341 - }, - { - "l": "91.0", - "x": 16.3333, - "y": 58.9632 - }, - { - "l": "91.0", - "x": 16.4167, - "y": 58.9933 - }, - { - "l": "91.0", - "x": 16.5, - "y": 59.0232 - }, - { - "l": "91.0", - "x": 16.5833, - "y": 59.0523 - }, - { - "l": "91.0", - "x": 16.6667, - "y": 59.0825 - }, - { - "l": "91.0", - "x": 16.75, - "y": 59.1123 - }, - { - "l": "91.0", - "x": 16.8333, - "y": 59.1404 - }, - { - "l": "91.0", - "x": 16.9167, - "y": 59.1703 - }, - { - "l": "91.0", - "x": 17.0, - "y": 59.1994 - }, - { - "l": "91.0", - "x": 17.0833, - "y": 59.2285 - }, - { - "l": "91.0", - "x": 17.1667, - "y": 59.2574 - }, - { - "l": "91.0", - "x": 17.25, - "y": 59.2854 - }, - { - "l": "91.0", - "x": 17.3333, - "y": 59.3143 - }, - { - "l": "91.0", - "x": 17.4167, - "y": 59.3424 - }, - { - "l": "91.0", - "x": 17.5, - "y": 59.3704 - }, - { - "l": "91.0", - "x": 17.5833, - "y": 59.3982 - }, - { - "l": "91.0", - "x": 17.6667, - "y": 59.4263 - }, - { - "l": "91.0", - "x": 17.75, - "y": 59.4533 - }, - { - "l": "91.0", - "x": 17.8333, - "y": 59.4822 - }, - { - "l": "91.0", - "x": 17.9167, - "y": 59.5092 - }, - { - "l": "91.0", - "x": 18.0, - "y": 59.5435 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 4.0, - "y": 55.1484 - }, - { - "l": "98.0", - "x": 4.0833, - "y": 55.2065 - }, - { - "l": "98.0", - "x": 4.1667, - "y": 55.2635 - }, - { - "l": "98.0", - "x": 4.25, - "y": 55.3173 - }, - { - "l": "98.0", - "x": 4.3333, - "y": 55.3722 - }, - { - "l": "98.0", - "x": 4.4167, - "y": 55.425 - }, - { - "l": "98.0", - "x": 4.5, - "y": 55.4757 - }, - { - "l": "98.0", - "x": 4.5833, - "y": 55.5264 - }, - { - "l": "98.0", - "x": 4.6667, - "y": 55.5739 - }, - { - "l": "98.0", - "x": 4.75, - "y": 55.6215 - }, - { - "l": "98.0", - "x": 4.8333, - "y": 55.668 - }, - { - "l": "98.0", - "x": 4.9167, - "y": 55.7145 - }, - { - "l": "98.0", - "x": 5.0, - "y": 55.7589 - }, - { - "l": "98.0", - "x": 5.0833, - "y": 55.8032 - }, - { - "l": "98.0", - "x": 5.1667, - "y": 55.8455 - }, - { - "l": "98.0", - "x": 5.25, - "y": 55.8878 - }, - { - "l": "98.0", - "x": 5.3333, - "y": 55.9291 - }, - { - "l": "98.0", - "x": 5.4167, - "y": 55.9692 - }, - { - "l": "98.0", - "x": 5.5, - "y": 56.0094 - }, - { - "l": "98.0", - "x": 5.5833, - "y": 56.0486 - }, - { - "l": "98.0", - "x": 5.6667, - "y": 56.0866 - }, - { - "l": "98.0", - "x": 5.75, - "y": 56.1247 - }, - { - "l": "98.0", - "x": 5.8333, - "y": 56.1617 - }, - { - "l": "98.0", - "x": 5.9167, - "y": 56.1998 - }, - { - "l": "98.0", - "x": 6.0, - "y": 56.2347 - }, - { - "l": "98.0", - "x": 6.0833, - "y": 56.2707 - }, - { - "l": "98.0", - "x": 6.1667, - "y": 56.3067 - }, - { - "l": "98.0", - "x": 6.25, - "y": 56.3427 - }, - { - "l": "98.0", - "x": 6.3333, - "y": 56.3765 - }, - { - "l": "98.0", - "x": 6.4167, - "y": 56.4104 - }, - { - "l": "98.0", - "x": 6.5, - "y": 56.4453 - }, - { - "l": "98.0", - "x": 6.5833, - "y": 56.4792 - }, - { - "l": "98.0", - "x": 6.6667, - "y": 56.512 - }, - { - "l": "98.0", - "x": 6.75, - "y": 56.5448 - }, - { - "l": "98.0", - "x": 6.8333, - "y": 56.5776 - }, - { - "l": "98.0", - "x": 6.9167, - "y": 56.6104 - }, - { - "l": "98.0", - "x": 7.0, - "y": 56.6422 - }, - { - "l": "98.0", - "x": 7.0833, - "y": 56.6739 - }, - { - "l": "98.0", - "x": 7.1667, - "y": 56.7046 - }, - { - "l": "98.0", - "x": 7.25, - "y": 56.7375 - }, - { - "l": "98.0", - "x": 7.3333, - "y": 56.7692 - }, - { - "l": "98.0", - "x": 7.4167, - "y": 56.7989 - }, - { - "l": "98.0", - "x": 7.5, - "y": 56.8296 - }, - { - "l": "98.0", - "x": 7.5833, - "y": 56.8603 - }, - { - "l": "98.0", - "x": 7.6667, - "y": 56.891 - }, - { - "l": "98.0", - "x": 7.75, - "y": 56.9206 - }, - { - "l": "98.0", - "x": 7.8333, - "y": 56.9503 - }, - { - "l": "98.0", - "x": 7.9167, - "y": 56.9799 - }, - { - "l": "98.0", - "x": 8.0, - "y": 57.0085 - }, - { - "l": "98.0", - "x": 8.0833, - "y": 57.0371 - }, - { - "l": "98.0", - "x": 8.1667, - "y": 57.0668 - }, - { - "l": "98.0", - "x": 8.25, - "y": 57.0954 - }, - { - "l": "98.0", - "x": 8.3333, - "y": 57.124 - }, - { - "l": "98.0", - "x": 8.4167, - "y": 57.1526 - }, - { - "l": "98.0", - "x": 8.5, - "y": 57.1812 - }, - { - "l": "98.0", - "x": 8.5833, - "y": 57.2098 - }, - { - "l": "98.0", - "x": 8.6667, - "y": 57.2384 - }, - { - "l": "98.0", - "x": 8.75, - "y": 57.2659 - }, - { - "l": "98.0", - "x": 8.8333, - "y": 57.2935 - }, - { - "l": "98.0", - "x": 8.9167, - "y": 57.321 - }, - { - "l": "98.0", - "x": 9.0, - "y": 57.3496 - }, - { - "l": "98.0", - "x": 9.0833, - "y": 57.3771 - }, - { - "l": "98.0", - "x": 9.1667, - "y": 57.4057 - }, - { - "l": "98.0", - "x": 9.25, - "y": 57.4333 - }, - { - "l": "98.0", - "x": 9.3333, - "y": 57.4608 - }, - { - "l": "98.0", - "x": 9.4167, - "y": 57.4894 - }, - { - "l": "98.0", - "x": 9.5, - "y": 57.517 - }, - { - "l": "98.0", - "x": 9.5833, - "y": 57.5435 - }, - { - "l": "98.0", - "x": 9.6667, - "y": 57.571 - }, - { - "l": "98.0", - "x": 9.75, - "y": 57.5996 - }, - { - "l": "98.0", - "x": 9.8333, - "y": 57.6272 - }, - { - "l": "98.0", - "x": 9.9167, - "y": 57.6558 - }, - { - "l": "98.0", - "x": 10.0, - "y": 57.6834 - }, - { - "l": "98.0", - "x": 10.0833, - "y": 57.7098 - }, - { - "l": "98.0", - "x": 10.1667, - "y": 57.7384 - }, - { - "l": "98.0", - "x": 10.25, - "y": 57.766 - }, - { - "l": "98.0", - "x": 10.3333, - "y": 57.7946 - }, - { - "l": "98.0", - "x": 10.4167, - "y": 57.8233 - }, - { - "l": "98.0", - "x": 10.5, - "y": 57.8508 - }, - { - "l": "98.0", - "x": 10.5833, - "y": 57.8783 - }, - { - "l": "98.0", - "x": 10.6667, - "y": 57.907 - }, - { - "l": "98.0", - "x": 10.75, - "y": 57.9356 - }, - { - "l": "98.0", - "x": 10.8333, - "y": 57.9653 - }, - { - "l": "98.0", - "x": 10.9167, - "y": 57.9928 - }, - { - "l": "98.0", - "x": 11.0, - "y": 58.0225 - }, - { - "l": "98.0", - "x": 11.0833, - "y": 58.0522 - }, - { - "l": "98.0", - "x": 11.1667, - "y": 58.0808 - }, - { - "l": "98.0", - "x": 11.25, - "y": 58.1105 - }, - { - "l": "98.0", - "x": 11.3333, - "y": 58.1412 - }, - { - "l": "98.0", - "x": 11.4167, - "y": 58.1709 - }, - { - "l": "98.0", - "x": 11.5, - "y": 58.2006 - }, - { - "l": "98.0", - "x": 11.5833, - "y": 58.2303 - }, - { - "l": "98.0", - "x": 11.6667, - "y": 58.261 - }, - { - "l": "98.0", - "x": 11.75, - "y": 58.2918 - }, - { - "l": "98.0", - "x": 11.8333, - "y": 58.3236 - }, - { - "l": "98.0", - "x": 11.9167, - "y": 58.3543 - }, - { - "l": "98.0", - "x": 12.0, - "y": 58.385 - }, - { - "l": "98.0", - "x": 12.0833, - "y": 58.4169 - }, - { - "l": "98.0", - "x": 12.1667, - "y": 58.4476 - }, - { - "l": "98.0", - "x": 12.25, - "y": 58.4805 - }, - { - "l": "98.0", - "x": 12.3333, - "y": 58.5123 - }, - { - "l": "98.0", - "x": 12.4167, - "y": 58.543 - }, - { - "l": "98.0", - "x": 12.5, - "y": 58.5759 - }, - { - "l": "98.0", - "x": 12.5833, - "y": 58.6088 - }, - { - "l": "98.0", - "x": 12.6667, - "y": 58.6405 - }, - { - "l": "98.0", - "x": 12.75, - "y": 58.6734 - }, - { - "l": "98.0", - "x": 12.8333, - "y": 58.7063 - }, - { - "l": "98.0", - "x": 12.9167, - "y": 58.7391 - }, - { - "l": "98.0", - "x": 13.0, - "y": 58.7731 - }, - { - "l": "98.0", - "x": 13.0833, - "y": 58.8049 - }, - { - "l": "98.0", - "x": 13.1667, - "y": 58.8399 - }, - { - "l": "98.0", - "x": 13.25, - "y": 58.8728 - }, - { - "l": "98.0", - "x": 13.3333, - "y": 58.9067 - }, - { - "l": "98.0", - "x": 13.4167, - "y": 58.9406 - }, - { - "l": "98.0", - "x": 13.5, - "y": 58.9735 - }, - { - "l": "98.0", - "x": 13.5833, - "y": 59.0074 - }, - { - "l": "98.0", - "x": 13.6667, - "y": 59.0414 - }, - { - "l": "98.0", - "x": 13.75, - "y": 59.0753 - }, - { - "l": "98.0", - "x": 13.8333, - "y": 59.1092 - }, - { - "l": "98.0", - "x": 13.9167, - "y": 59.1431 - }, - { - "l": "98.0", - "x": 14.0, - "y": 59.1771 - }, - { - "l": "98.0", - "x": 14.0833, - "y": 59.2099 - }, - { - "l": "98.0", - "x": 14.1667, - "y": 59.2449 - }, - { - "l": "98.0", - "x": 14.25, - "y": 59.2788 - }, - { - "l": "98.0", - "x": 14.3333, - "y": 59.3117 - }, - { - "l": "98.0", - "x": 14.4167, - "y": 59.3446 - }, - { - "l": "98.0", - "x": 14.5, - "y": 59.3796 - }, - { - "l": "98.0", - "x": 14.5833, - "y": 59.4125 - }, - { - "l": "98.0", - "x": 14.6667, - "y": 59.4464 - }, - { - "l": "98.0", - "x": 14.75, - "y": 59.4793 - }, - { - "l": "98.0", - "x": 14.8333, - "y": 59.5132 - }, - { - "l": "98.0", - "x": 14.9167, - "y": 59.5461 - }, - { - "l": "98.0", - "x": 15.0, - "y": 59.5801 - }, - { - "l": "98.0", - "x": 15.0833, - "y": 59.6118 - }, - { - "l": "98.0", - "x": 15.1667, - "y": 59.6458 - }, - { - "l": "98.0", - "x": 15.25, - "y": 59.6787 - }, - { - "l": "98.0", - "x": 15.3333, - "y": 59.7116 - }, - { - "l": "98.0", - "x": 15.4167, - "y": 59.7434 - }, - { - "l": "98.0", - "x": 15.5, - "y": 59.7763 - }, - { - "l": "98.0", - "x": 15.5833, - "y": 59.8081 - }, - { - "l": "98.0", - "x": 15.6667, - "y": 59.8399 - }, - { - "l": "98.0", - "x": 15.75, - "y": 59.8717 - }, - { - "l": "98.0", - "x": 15.8333, - "y": 59.9035 - }, - { - "l": "98.0", - "x": 15.9167, - "y": 59.9354 - }, - { - "l": "98.0", - "x": 16.0, - "y": 59.9661 - }, - { - "l": "98.0", - "x": 16.0833, - "y": 59.999 - }, - { - "l": "98.0", - "x": 16.1667, - "y": 60.0297 - }, - { - "l": "98.0", - "x": 16.25, - "y": 60.0616 - }, - { - "l": "98.0", - "x": 16.3333, - "y": 60.0913 - }, - { - "l": "98.0", - "x": 16.4167, - "y": 60.122 - }, - { - "l": "98.0", - "x": 16.5, - "y": 60.1528 - }, - { - "l": "98.0", - "x": 16.5833, - "y": 60.1825 - }, - { - "l": "98.0", - "x": 16.6667, - "y": 60.2132 - }, - { - "l": "98.0", - "x": 16.75, - "y": 60.244 - }, - { - "l": "98.0", - "x": 16.8333, - "y": 60.2726 - }, - { - "l": "98.0", - "x": 16.9167, - "y": 60.3034 - }, - { - "l": "98.0", - "x": 17.0, - "y": 60.3331 - }, - { - "l": "98.0", - "x": 17.0833, - "y": 60.3628 - }, - { - "l": "98.0", - "x": 17.1667, - "y": 60.3925 - }, - { - "l": "98.0", - "x": 17.25, - "y": 60.4212 - }, - { - "l": "98.0", - "x": 17.3333, - "y": 60.4509 - }, - { - "l": "98.0", - "x": 17.4167, - "y": 60.4795 - }, - { - "l": "98.0", - "x": 17.5, - "y": 60.5081 - }, - { - "l": "98.0", - "x": 17.5833, - "y": 60.5368 - }, - { - "l": "98.0", - "x": 17.6667, - "y": 60.5655 - }, - { - "l": "98.0", - "x": 17.75, - "y": 60.593 - }, - { - "l": "98.0", - "x": 17.8333, - "y": 60.6228 - }, - { - "l": "98.0", - "x": 17.9167, - "y": 60.6503 - }, - { - "l": "98.0", - "x": 18.0, - "y": 60.6853 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 4.0, - "y": 56.1263 - }, - { - "l": "99.6", - "x": 4.0833, - "y": 56.1866 - }, - { - "l": "99.6", - "x": 4.1667, - "y": 56.2463 - }, - { - "l": "99.6", - "x": 4.25, - "y": 56.3024 - }, - { - "l": "99.6", - "x": 4.3333, - "y": 56.3599 - }, - { - "l": "99.6", - "x": 4.4167, - "y": 56.415 - }, - { - "l": "99.6", - "x": 4.5, - "y": 56.4679 - }, - { - "l": "99.6", - "x": 4.5833, - "y": 56.5209 - }, - { - "l": "99.6", - "x": 4.6667, - "y": 56.5702 - }, - { - "l": "99.6", - "x": 4.75, - "y": 56.62 - }, - { - "l": "99.6", - "x": 4.8333, - "y": 56.6683 - }, - { - "l": "99.6", - "x": 4.9167, - "y": 56.7166 - }, - { - "l": "99.6", - "x": 5.0, - "y": 56.7628 - }, - { - "l": "99.6", - "x": 5.0833, - "y": 56.809 - }, - { - "l": "99.6", - "x": 5.1667, - "y": 56.853 - }, - { - "l": "99.6", - "x": 5.25, - "y": 56.8971 - }, - { - "l": "99.6", - "x": 5.3333, - "y": 56.9401 - }, - { - "l": "99.6", - "x": 5.4167, - "y": 56.9817 - }, - { - "l": "99.6", - "x": 5.5, - "y": 57.0236 - }, - { - "l": "99.6", - "x": 5.5833, - "y": 57.0641 - }, - { - "l": "99.6", - "x": 5.6667, - "y": 57.1035 - }, - { - "l": "99.6", - "x": 5.75, - "y": 57.1429 - }, - { - "l": "99.6", - "x": 5.8333, - "y": 57.1813 - }, - { - "l": "99.6", - "x": 5.9167, - "y": 57.2211 - }, - { - "l": "99.6", - "x": 6.0, - "y": 57.257 - }, - { - "l": "99.6", - "x": 6.0833, - "y": 57.2943 - }, - { - "l": "99.6", - "x": 6.1667, - "y": 57.3316 - }, - { - "l": "99.6", - "x": 6.25, - "y": 57.3689 - }, - { - "l": "99.6", - "x": 6.3333, - "y": 57.404 - }, - { - "l": "99.6", - "x": 6.4167, - "y": 57.4388 - }, - { - "l": "99.6", - "x": 6.5, - "y": 57.4751 - }, - { - "l": "99.6", - "x": 6.5833, - "y": 57.5099 - }, - { - "l": "99.6", - "x": 6.6667, - "y": 57.544 - }, - { - "l": "99.6", - "x": 6.75, - "y": 57.5777 - }, - { - "l": "99.6", - "x": 6.8333, - "y": 57.6115 - }, - { - "l": "99.6", - "x": 6.9167, - "y": 57.6456 - }, - { - "l": "99.6", - "x": 7.0, - "y": 57.6782 - }, - { - "l": "99.6", - "x": 7.0833, - "y": 57.7109 - }, - { - "l": "99.6", - "x": 7.1667, - "y": 57.7425 - }, - { - "l": "99.6", - "x": 7.25, - "y": 57.7766 - }, - { - "l": "99.6", - "x": 7.3333, - "y": 57.8093 - }, - { - "l": "99.6", - "x": 7.4167, - "y": 57.8398 - }, - { - "l": "99.6", - "x": 7.5, - "y": 57.8714 - }, - { - "l": "99.6", - "x": 7.5833, - "y": 57.903 - }, - { - "l": "99.6", - "x": 7.6667, - "y": 57.9346 - }, - { - "l": "99.6", - "x": 7.75, - "y": 57.9652 - }, - { - "l": "99.6", - "x": 7.8333, - "y": 57.9957 - }, - { - "l": "99.6", - "x": 7.9167, - "y": 58.0262 - }, - { - "l": "99.6", - "x": 8.0, - "y": 58.0557 - }, - { - "l": "99.6", - "x": 8.0833, - "y": 58.0852 - }, - { - "l": "99.6", - "x": 8.1667, - "y": 58.1157 - }, - { - "l": "99.6", - "x": 8.25, - "y": 58.1452 - }, - { - "l": "99.6", - "x": 8.3333, - "y": 58.1746 - }, - { - "l": "99.6", - "x": 8.4167, - "y": 58.2041 - }, - { - "l": "99.6", - "x": 8.5, - "y": 58.2336 - }, - { - "l": "99.6", - "x": 8.5833, - "y": 58.263 - }, - { - "l": "99.6", - "x": 8.6667, - "y": 58.2925 - }, - { - "l": "99.6", - "x": 8.75, - "y": 58.3209 - }, - { - "l": "99.6", - "x": 8.8333, - "y": 58.3493 - }, - { - "l": "99.6", - "x": 8.9167, - "y": 58.3773 - }, - { - "l": "99.6", - "x": 9.0, - "y": 58.4068 - }, - { - "l": "99.6", - "x": 9.0833, - "y": 58.4352 - }, - { - "l": "99.6", - "x": 9.1667, - "y": 58.4646 - }, - { - "l": "99.6", - "x": 9.25, - "y": 58.493 - }, - { - "l": "99.6", - "x": 9.3333, - "y": 58.5214 - }, - { - "l": "99.6", - "x": 9.4167, - "y": 58.5509 - }, - { - "l": "99.6", - "x": 9.5, - "y": 58.5793 - }, - { - "l": "99.6", - "x": 9.5833, - "y": 58.6063 - }, - { - "l": "99.6", - "x": 9.6667, - "y": 58.6347 - }, - { - "l": "99.6", - "x": 9.75, - "y": 58.6642 - }, - { - "l": "99.6", - "x": 9.8333, - "y": 58.6926 - }, - { - "l": "99.6", - "x": 9.9167, - "y": 58.7221 - }, - { - "l": "99.6", - "x": 10.0, - "y": 58.7505 - }, - { - "l": "99.6", - "x": 10.0833, - "y": 58.7774 - }, - { - "l": "99.6", - "x": 10.1667, - "y": 58.8069 - }, - { - "l": "99.6", - "x": 10.25, - "y": 58.8353 - }, - { - "l": "99.6", - "x": 10.3333, - "y": 58.8648 - }, - { - "l": "99.6", - "x": 10.4167, - "y": 58.8943 - }, - { - "l": "99.6", - "x": 10.5, - "y": 58.9228 - }, - { - "l": "99.6", - "x": 10.5833, - "y": 58.9508 - }, - { - "l": "99.6", - "x": 10.6667, - "y": 58.9803 - }, - { - "l": "99.6", - "x": 10.75, - "y": 59.0098 - }, - { - "l": "99.6", - "x": 10.8333, - "y": 59.0404 - }, - { - "l": "99.6", - "x": 10.9167, - "y": 59.0684 - }, - { - "l": "99.6", - "x": 11.0, - "y": 59.099 - }, - { - "l": "99.6", - "x": 11.0833, - "y": 59.1296 - }, - { - "l": "99.6", - "x": 11.1667, - "y": 59.1591 - }, - { - "l": "99.6", - "x": 11.25, - "y": 59.1893 - }, - { - "l": "99.6", - "x": 11.3333, - "y": 59.221 - }, - { - "l": "99.6", - "x": 11.4167, - "y": 59.2515 - }, - { - "l": "99.6", - "x": 11.5, - "y": 59.2821 - }, - { - "l": "99.6", - "x": 11.5833, - "y": 59.3123 - }, - { - "l": "99.6", - "x": 11.6667, - "y": 59.344 - }, - { - "l": "99.6", - "x": 11.75, - "y": 59.3757 - }, - { - "l": "99.6", - "x": 11.8333, - "y": 59.4084 - }, - { - "l": "99.6", - "x": 11.9167, - "y": 59.4397 - }, - { - "l": "99.6", - "x": 12.0, - "y": 59.4714 - }, - { - "l": "99.6", - "x": 12.0833, - "y": 59.5042 - }, - { - "l": "99.6", - "x": 12.1667, - "y": 59.5354 - }, - { - "l": "99.6", - "x": 12.25, - "y": 59.5693 - }, - { - "l": "99.6", - "x": 12.3333, - "y": 59.602 - }, - { - "l": "99.6", - "x": 12.4167, - "y": 59.6333 - }, - { - "l": "99.6", - "x": 12.5, - "y": 59.6672 - }, - { - "l": "99.6", - "x": 12.5833, - "y": 59.701 - }, - { - "l": "99.6", - "x": 12.6667, - "y": 59.7334 - }, - { - "l": "99.6", - "x": 12.75, - "y": 59.7672 - }, - { - "l": "99.6", - "x": 12.8333, - "y": 59.8011 - }, - { - "l": "99.6", - "x": 12.9167, - "y": 59.8345 - }, - { - "l": "99.6", - "x": 13.0, - "y": 59.8695 - }, - { - "l": "99.6", - "x": 13.0833, - "y": 59.9018 - }, - { - "l": "99.6", - "x": 13.1667, - "y": 59.9378 - }, - { - "l": "99.6", - "x": 13.25, - "y": 59.9717 - }, - { - "l": "99.6", - "x": 13.3333, - "y": 60.0062 - }, - { - "l": "99.6", - "x": 13.4167, - "y": 60.0412 - }, - { - "l": "99.6", - "x": 13.5, - "y": 60.0746 - }, - { - "l": "99.6", - "x": 13.5833, - "y": 60.1095 - }, - { - "l": "99.6", - "x": 13.6667, - "y": 60.1445 - }, - { - "l": "99.6", - "x": 13.75, - "y": 60.179 - }, - { - "l": "99.6", - "x": 13.8333, - "y": 60.214 - }, - { - "l": "99.6", - "x": 13.9167, - "y": 60.2485 - }, - { - "l": "99.6", - "x": 14.0, - "y": 60.2834 - }, - { - "l": "99.6", - "x": 14.0833, - "y": 60.3169 - }, - { - "l": "99.6", - "x": 14.1667, - "y": 60.3529 - }, - { - "l": "99.6", - "x": 14.25, - "y": 60.3875 - }, - { - "l": "99.6", - "x": 14.3333, - "y": 60.4213 - }, - { - "l": "99.6", - "x": 14.4167, - "y": 60.4548 - }, - { - "l": "99.6", - "x": 14.5, - "y": 60.4908 - }, - { - "l": "99.6", - "x": 14.5833, - "y": 60.5243 - }, - { - "l": "99.6", - "x": 14.6667, - "y": 60.5592 - }, - { - "l": "99.6", - "x": 14.75, - "y": 60.5927 - }, - { - "l": "99.6", - "x": 14.8333, - "y": 60.6277 - }, - { - "l": "99.6", - "x": 14.9167, - "y": 60.6611 - }, - { - "l": "99.6", - "x": 15.0, - "y": 60.6961 - }, - { - "l": "99.6", - "x": 15.0833, - "y": 60.7285 - }, - { - "l": "99.6", - "x": 15.1667, - "y": 60.7634 - }, - { - "l": "99.6", - "x": 15.25, - "y": 60.7969 - }, - { - "l": "99.6", - "x": 15.3333, - "y": 60.8308 - }, - { - "l": "99.6", - "x": 15.4167, - "y": 60.8631 - }, - { - "l": "99.6", - "x": 15.5, - "y": 60.897 - }, - { - "l": "99.6", - "x": 15.5833, - "y": 60.9294 - }, - { - "l": "99.6", - "x": 15.6667, - "y": 60.9618 - }, - { - "l": "99.6", - "x": 15.75, - "y": 60.9946 - }, - { - "l": "99.6", - "x": 15.8333, - "y": 61.027 - }, - { - "l": "99.6", - "x": 15.9167, - "y": 61.0598 - }, - { - "l": "99.6", - "x": 16.0, - "y": 61.0911 - }, - { - "l": "99.6", - "x": 16.0833, - "y": 61.125 - }, - { - "l": "99.6", - "x": 16.1667, - "y": 61.1563 - }, - { - "l": "99.6", - "x": 16.25, - "y": 61.1891 - }, - { - "l": "99.6", - "x": 16.3333, - "y": 61.2194 - }, - { - "l": "99.6", - "x": 16.4167, - "y": 61.2507 - }, - { - "l": "99.6", - "x": 16.5, - "y": 61.2824 - }, - { - "l": "99.6", - "x": 16.5833, - "y": 61.3126 - }, - { - "l": "99.6", - "x": 16.6667, - "y": 61.344 - }, - { - "l": "99.6", - "x": 16.75, - "y": 61.3757 - }, - { - "l": "99.6", - "x": 16.8333, - "y": 61.4048 - }, - { - "l": "99.6", - "x": 16.9167, - "y": 61.4366 - }, - { - "l": "99.6", - "x": 17.0, - "y": 61.4668 - }, - { - "l": "99.6", - "x": 17.0833, - "y": 61.4971 - }, - { - "l": "99.6", - "x": 17.1667, - "y": 61.5277 - }, - { - "l": "99.6", - "x": 17.25, - "y": 61.5569 - }, - { - "l": "99.6", - "x": 17.3333, - "y": 61.5875 - }, - { - "l": "99.6", - "x": 17.4167, - "y": 61.6167 - }, - { - "l": "99.6", - "x": 17.5, - "y": 61.6459 - }, - { - "l": "99.6", - "x": 17.5833, - "y": 61.6754 - }, - { - "l": "99.6", - "x": 17.6667, - "y": 61.7046 - }, - { - "l": "99.6", - "x": 17.75, - "y": 61.7327 - }, - { - "l": "99.6", - "x": 17.8333, - "y": 61.7634 - }, - { - "l": "99.6", - "x": 17.9167, - "y": 61.7914 - }, - { - "l": "99.6", - "x": 18.0, - "y": 61.8271 - } - ] - } - ], - "bmi": null - }, - "female": null - } - } - ] -}; - -var ukwhoOFCFemaleCentileData = { - "centile_data": [ - { - "uk90_preterm": { - "male": null, - "female": { - "height": null, - "weight": null, - "ofc": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": -0.3258, - "y": 17.3711 - }, - { - "l": "0.4", - "x": -0.3066, - "y": 18.3362 - }, - { - "l": "0.4", - "x": -0.2875, - "y": 19.3106 - }, - { - "l": "0.4", - "x": -0.2683, - "y": 20.2912 - }, - { - "l": "0.4", - "x": -0.2491, - "y": 21.2683 - }, - { - "l": "0.4", - "x": -0.23, - "y": 22.221 - }, - { - "l": "0.4", - "x": -0.2108, - "y": 23.1501 - }, - { - "l": "0.4", - "x": -0.1916, - "y": 24.0665 - }, - { - "l": "0.4", - "x": -0.1725, - "y": 24.9773 - }, - { - "l": "0.4", - "x": -0.1533, - "y": 25.876 - }, - { - "l": "0.4", - "x": -0.1342, - "y": 26.747 - }, - { - "l": "0.4", - "x": -0.115, - "y": 27.5782 - }, - { - "l": "0.4", - "x": -0.0958, - "y": 28.3565 - }, - { - "l": "0.4", - "x": -0.0767, - "y": 29.073 - }, - { - "l": "0.4", - "x": -0.0575, - "y": 29.7252 - }, - { - "l": "0.4", - "x": -0.0383, - "y": 30.3152 - }, - { - "l": "0.4", - "x": -0.0192, - "y": 30.8539 - }, - { - "l": "0.4", - "x": -0.0, - "y": 31.3492 - }, - { - "l": "0.4", - "x": 0.0192, - "y": 31.8214 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 32.2843 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 32.2843 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": -0.3258, - "y": 18.3037 - }, - { - "l": "2.0", - "x": -0.3066, - "y": 19.2941 - }, - { - "l": "2.0", - "x": -0.2875, - "y": 20.2913 - }, - { - "l": "2.0", - "x": -0.2683, - "y": 21.291 - }, - { - "l": "2.0", - "x": -0.2491, - "y": 22.2826 - }, - { - "l": "2.0", - "x": -0.23, - "y": 23.2447 - }, - { - "l": "2.0", - "x": -0.2108, - "y": 24.1768 - }, - { - "l": "2.0", - "x": -0.1916, - "y": 25.0881 - }, - { - "l": "2.0", - "x": -0.1725, - "y": 25.9853 - }, - { - "l": "2.0", - "x": -0.1533, - "y": 26.8613 - }, - { - "l": "2.0", - "x": -0.1342, - "y": 27.7022 - }, - { - "l": "2.0", - "x": -0.115, - "y": 28.4984 - }, - { - "l": "2.0", - "x": -0.0958, - "y": 29.2387 - }, - { - "l": "2.0", - "x": -0.0767, - "y": 29.9161 - }, - { - "l": "2.0", - "x": -0.0575, - "y": 30.5294 - }, - { - "l": "2.0", - "x": -0.0383, - "y": 31.0817 - }, - { - "l": "2.0", - "x": -0.0192, - "y": 31.5841 - }, - { - "l": "2.0", - "x": -0.0, - "y": 32.0445 - }, - { - "l": "2.0", - "x": 0.0192, - "y": 32.4823 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 32.9109 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 32.9109 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": -0.3258, - "y": 19.2363 - }, - { - "l": "9.0", - "x": -0.3066, - "y": 20.2521 - }, - { - "l": "9.0", - "x": -0.2875, - "y": 21.272 - }, - { - "l": "9.0", - "x": -0.2683, - "y": 22.2907 - }, - { - "l": "9.0", - "x": -0.2491, - "y": 23.297 - }, - { - "l": "9.0", - "x": -0.23, - "y": 24.2685 - }, - { - "l": "9.0", - "x": -0.2108, - "y": 25.2035 - }, - { - "l": "9.0", - "x": -0.1916, - "y": 26.1097 - }, - { - "l": "9.0", - "x": -0.1725, - "y": 26.9933 - }, - { - "l": "9.0", - "x": -0.1533, - "y": 27.8466 - }, - { - "l": "9.0", - "x": -0.1342, - "y": 28.6575 - }, - { - "l": "9.0", - "x": -0.115, - "y": 29.4186 - }, - { - "l": "9.0", - "x": -0.0958, - "y": 30.1209 - }, - { - "l": "9.0", - "x": -0.0767, - "y": 30.7592 - }, - { - "l": "9.0", - "x": -0.0575, - "y": 31.3336 - }, - { - "l": "9.0", - "x": -0.0383, - "y": 31.8482 - }, - { - "l": "9.0", - "x": -0.0192, - "y": 32.3143 - }, - { - "l": "9.0", - "x": -0.0, - "y": 32.7398 - }, - { - "l": "9.0", - "x": 0.0192, - "y": 33.1433 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 33.5375 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 33.5375 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": -0.3258, - "y": 20.1689 - }, - { - "l": "25.0", - "x": -0.3066, - "y": 21.2101 - }, - { - "l": "25.0", - "x": -0.2875, - "y": 22.2526 - }, - { - "l": "25.0", - "x": -0.2683, - "y": 23.2904 - }, - { - "l": "25.0", - "x": -0.2491, - "y": 24.3113 - }, - { - "l": "25.0", - "x": -0.23, - "y": 25.2923 - }, - { - "l": "25.0", - "x": -0.2108, - "y": 26.2302 - }, - { - "l": "25.0", - "x": -0.1916, - "y": 27.1313 - }, - { - "l": "25.0", - "x": -0.1725, - "y": 28.0013 - }, - { - "l": "25.0", - "x": -0.1533, - "y": 28.8318 - }, - { - "l": "25.0", - "x": -0.1342, - "y": 29.6128 - }, - { - "l": "25.0", - "x": -0.115, - "y": 30.3388 - }, - { - "l": "25.0", - "x": -0.0958, - "y": 31.0031 - }, - { - "l": "25.0", - "x": -0.0767, - "y": 31.6023 - }, - { - "l": "25.0", - "x": -0.0575, - "y": 32.1378 - }, - { - "l": "25.0", - "x": -0.0383, - "y": 32.6147 - }, - { - "l": "25.0", - "x": -0.0192, - "y": 33.0444 - }, - { - "l": "25.0", - "x": -0.0, - "y": 33.4351 - }, - { - "l": "25.0", - "x": 0.0192, - "y": 33.8042 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 34.164 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 34.164 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": -0.3258, - "y": 21.1016 - }, - { - "l": "50.0", - "x": -0.3066, - "y": 22.1681 - }, - { - "l": "50.0", - "x": -0.2875, - "y": 23.2333 - }, - { - "l": "50.0", - "x": -0.2683, - "y": 24.2901 - }, - { - "l": "50.0", - "x": -0.2491, - "y": 25.3256 - }, - { - "l": "50.0", - "x": -0.23, - "y": 26.316 - }, - { - "l": "50.0", - "x": -0.2108, - "y": 27.2569 - }, - { - "l": "50.0", - "x": -0.1916, - "y": 28.1529 - }, - { - "l": "50.0", - "x": -0.1725, - "y": 29.0092 - }, - { - "l": "50.0", - "x": -0.1533, - "y": 29.8171 - }, - { - "l": "50.0", - "x": -0.1342, - "y": 30.5681 - }, - { - "l": "50.0", - "x": -0.115, - "y": 31.259 - }, - { - "l": "50.0", - "x": -0.0958, - "y": 31.8853 - }, - { - "l": "50.0", - "x": -0.0767, - "y": 32.4453 - }, - { - "l": "50.0", - "x": -0.0575, - "y": 32.9421 - }, - { - "l": "50.0", - "x": -0.0383, - "y": 33.3812 - }, - { - "l": "50.0", - "x": -0.0192, - "y": 33.7746 - }, - { - "l": "50.0", - "x": -0.0, - "y": 34.1304 - }, - { - "l": "50.0", - "x": 0.0192, - "y": 34.4652 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 34.7906 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 34.7906 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": -0.3258, - "y": 22.0342 - }, - { - "l": "75.0", - "x": -0.3066, - "y": 23.1261 - }, - { - "l": "75.0", - "x": -0.2875, - "y": 24.214 - }, - { - "l": "75.0", - "x": -0.2683, - "y": 25.2899 - }, - { - "l": "75.0", - "x": -0.2491, - "y": 26.34 - }, - { - "l": "75.0", - "x": -0.23, - "y": 27.3398 - }, - { - "l": "75.0", - "x": -0.2108, - "y": 28.2835 - }, - { - "l": "75.0", - "x": -0.1916, - "y": 29.1744 - }, - { - "l": "75.0", - "x": -0.1725, - "y": 30.0172 - }, - { - "l": "75.0", - "x": -0.1533, - "y": 30.8024 - }, - { - "l": "75.0", - "x": -0.1342, - "y": 31.5233 - }, - { - "l": "75.0", - "x": -0.115, - "y": 32.1793 - }, - { - "l": "75.0", - "x": -0.0958, - "y": 32.7675 - }, - { - "l": "75.0", - "x": -0.0767, - "y": 33.2884 - }, - { - "l": "75.0", - "x": -0.0575, - "y": 33.7463 - }, - { - "l": "75.0", - "x": -0.0383, - "y": 34.1477 - }, - { - "l": "75.0", - "x": -0.0192, - "y": 34.5048 - }, - { - "l": "75.0", - "x": -0.0, - "y": 34.8257 - }, - { - "l": "75.0", - "x": 0.0192, - "y": 35.1262 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 35.4171 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 35.4171 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": -0.3258, - "y": 22.9668 - }, - { - "l": "91.0", - "x": -0.3066, - "y": 24.0841 - }, - { - "l": "91.0", - "x": -0.2875, - "y": 25.1946 - }, - { - "l": "91.0", - "x": -0.2683, - "y": 26.2896 - }, - { - "l": "91.0", - "x": -0.2491, - "y": 27.3543 - }, - { - "l": "91.0", - "x": -0.23, - "y": 28.3635 - }, - { - "l": "91.0", - "x": -0.2108, - "y": 29.3102 - }, - { - "l": "91.0", - "x": -0.1916, - "y": 30.196 - }, - { - "l": "91.0", - "x": -0.1725, - "y": 31.0252 - }, - { - "l": "91.0", - "x": -0.1533, - "y": 31.7877 - }, - { - "l": "91.0", - "x": -0.1342, - "y": 32.4786 - }, - { - "l": "91.0", - "x": -0.115, - "y": 33.0995 - }, - { - "l": "91.0", - "x": -0.0958, - "y": 33.6498 - }, - { - "l": "91.0", - "x": -0.0767, - "y": 34.1315 - }, - { - "l": "91.0", - "x": -0.0575, - "y": 34.5505 - }, - { - "l": "91.0", - "x": -0.0383, - "y": 34.9142 - }, - { - "l": "91.0", - "x": -0.0192, - "y": 35.235 - }, - { - "l": "91.0", - "x": -0.0, - "y": 35.521 - }, - { - "l": "91.0", - "x": 0.0192, - "y": 35.7871 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 36.0437 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 36.0437 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": -0.3258, - "y": 23.8994 - }, - { - "l": "98.0", - "x": -0.3066, - "y": 25.042 - }, - { - "l": "98.0", - "x": -0.2875, - "y": 26.1753 - }, - { - "l": "98.0", - "x": -0.2683, - "y": 27.2893 - }, - { - "l": "98.0", - "x": -0.2491, - "y": 28.3686 - }, - { - "l": "98.0", - "x": -0.23, - "y": 29.3873 - }, - { - "l": "98.0", - "x": -0.2108, - "y": 30.3369 - }, - { - "l": "98.0", - "x": -0.1916, - "y": 31.2176 - }, - { - "l": "98.0", - "x": -0.1725, - "y": 32.0332 - }, - { - "l": "98.0", - "x": -0.1533, - "y": 32.7729 - }, - { - "l": "98.0", - "x": -0.1342, - "y": 33.4339 - }, - { - "l": "98.0", - "x": -0.115, - "y": 34.0197 - }, - { - "l": "98.0", - "x": -0.0958, - "y": 34.532 - }, - { - "l": "98.0", - "x": -0.0767, - "y": 34.9746 - }, - { - "l": "98.0", - "x": -0.0575, - "y": 35.3547 - }, - { - "l": "98.0", - "x": -0.0383, - "y": 35.6808 - }, - { - "l": "98.0", - "x": -0.0192, - "y": 35.9652 - }, - { - "l": "98.0", - "x": -0.0, - "y": 36.2163 - }, - { - "l": "98.0", - "x": 0.0192, - "y": 36.4481 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 36.6702 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 36.6702 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": -0.3258, - "y": 24.8321 - }, - { - "l": "99.6", - "x": -0.3066, - "y": 26.0 - }, - { - "l": "99.6", - "x": -0.2875, - "y": 27.1559 - }, - { - "l": "99.6", - "x": -0.2683, - "y": 28.289 - }, - { - "l": "99.6", - "x": -0.2491, - "y": 29.383 - }, - { - "l": "99.6", - "x": -0.23, - "y": 30.4111 - }, - { - "l": "99.6", - "x": -0.2108, - "y": 31.3636 - }, - { - "l": "99.6", - "x": -0.1916, - "y": 32.2392 - }, - { - "l": "99.6", - "x": -0.1725, - "y": 33.0411 - }, - { - "l": "99.6", - "x": -0.1533, - "y": 33.7582 - }, - { - "l": "99.6", - "x": -0.1342, - "y": 34.3892 - }, - { - "l": "99.6", - "x": -0.115, - "y": 34.9399 - }, - { - "l": "99.6", - "x": -0.0958, - "y": 35.4142 - }, - { - "l": "99.6", - "x": -0.0767, - "y": 35.8176 - }, - { - "l": "99.6", - "x": -0.0575, - "y": 36.1589 - }, - { - "l": "99.6", - "x": -0.0383, - "y": 36.4473 - }, - { - "l": "99.6", - "x": -0.0192, - "y": 36.6954 - }, - { - "l": "99.6", - "x": -0.0, - "y": 36.9116 - }, - { - "l": "99.6", - "x": 0.0192, - "y": 37.109 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 37.2968 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 37.2968 - } - ] - } - ], - "bmi": null - } - } - }, - { - "uk_who_infant": { - "male": null, - "female": { - "height": null, - "weight": null, - "ofc": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 0.0383, - "y": 32.1732 - }, - { - "l": "0.4", - "x": 0.0575, - "y": 32.7548 - }, - { - "l": "0.4", - "x": 0.0767, - "y": 33.2575 - }, - { - "l": "0.4", - "x": 0.0958, - "y": 33.7009 - }, - { - "l": "0.4", - "x": 0.115, - "y": 34.0996 - }, - { - "l": "0.4", - "x": 0.1342, - "y": 34.463 - }, - { - "l": "0.4", - "x": 0.1533, - "y": 34.8 - }, - { - "l": "0.4", - "x": 0.1725, - "y": 35.1137 - }, - { - "l": "0.4", - "x": 0.1916, - "y": 35.411 - }, - { - "l": "0.4", - "x": 0.2108, - "y": 35.6909 - }, - { - "l": "0.4", - "x": 0.23, - "y": 35.9573 - }, - { - "l": "0.4", - "x": 0.2491, - "y": 36.2118 - }, - { - "l": "0.4", - "x": 0.2683, - "y": 36.4507 - }, - { - "l": "0.4", - "x": 0.2875, - "y": 36.6826 - }, - { - "l": "0.4", - "x": 0.3066, - "y": 36.907 - }, - { - "l": "0.4", - "x": 0.3258, - "y": 37.1236 - }, - { - "l": "0.4", - "x": 0.345, - "y": 37.3302 - }, - { - "l": "0.4", - "x": 0.3641, - "y": 37.5276 - }, - { - "l": "0.4", - "x": 0.3833, - "y": 37.7171 - }, - { - "l": "0.4", - "x": 0.4025, - "y": 37.8991 - }, - { - "l": "0.4", - "x": 0.4216, - "y": 38.0743 - }, - { - "l": "0.4", - "x": 0.4408, - "y": 38.2431 - }, - { - "l": "0.4", - "x": 0.46, - "y": 38.4056 - }, - { - "l": "0.4", - "x": 0.4791, - "y": 38.562 - }, - { - "l": "0.4", - "x": 0.4983, - "y": 38.7125 - }, - { - "l": "0.4", - "x": 0.5175, - "y": 38.8575 - }, - { - "l": "0.4", - "x": 0.5366, - "y": 38.9972 - }, - { - "l": "0.4", - "x": 0.5558, - "y": 39.1318 - }, - { - "l": "0.4", - "x": 0.5749, - "y": 39.2617 - }, - { - "l": "0.4", - "x": 0.5941, - "y": 39.3872 - }, - { - "l": "0.4", - "x": 0.6133, - "y": 39.5085 - }, - { - "l": "0.4", - "x": 0.6324, - "y": 39.6256 - }, - { - "l": "0.4", - "x": 0.6516, - "y": 39.7387 - }, - { - "l": "0.4", - "x": 0.6708, - "y": 39.848 - }, - { - "l": "0.4", - "x": 0.6899, - "y": 39.9534 - }, - { - "l": "0.4", - "x": 0.7091, - "y": 40.0553 - }, - { - "l": "0.4", - "x": 0.7283, - "y": 40.1538 - }, - { - "l": "0.4", - "x": 0.7474, - "y": 40.2491 - }, - { - "l": "0.4", - "x": 0.7666, - "y": 40.3415 - }, - { - "l": "0.4", - "x": 0.7858, - "y": 40.4309 - }, - { - "l": "0.4", - "x": 0.8049, - "y": 40.5177 - }, - { - "l": "0.4", - "x": 0.8241, - "y": 40.6018 - }, - { - "l": "0.4", - "x": 0.8433, - "y": 40.6835 - }, - { - "l": "0.4", - "x": 0.8624, - "y": 40.763 - }, - { - "l": "0.4", - "x": 0.8816, - "y": 40.8403 - }, - { - "l": "0.4", - "x": 0.9008, - "y": 40.9153 - }, - { - "l": "0.4", - "x": 0.9199, - "y": 40.9883 - }, - { - "l": "0.4", - "x": 0.9391, - "y": 41.0592 - }, - { - "l": "0.4", - "x": 0.9582, - "y": 41.1282 - }, - { - "l": "0.4", - "x": 0.9774, - "y": 41.1955 - }, - { - "l": "0.4", - "x": 0.9966, - "y": 41.2609 - }, - { - "l": "0.4", - "x": 1.0157, - "y": 41.3249 - }, - { - "l": "0.4", - "x": 1.0349, - "y": 41.3873 - }, - { - "l": "0.4", - "x": 1.0541, - "y": 41.4482 - }, - { - "l": "0.4", - "x": 1.0732, - "y": 41.5076 - }, - { - "l": "0.4", - "x": 1.0924, - "y": 41.5656 - }, - { - "l": "0.4", - "x": 1.1116, - "y": 41.6222 - }, - { - "l": "0.4", - "x": 1.1307, - "y": 41.6775 - }, - { - "l": "0.4", - "x": 1.1499, - "y": 41.7315 - }, - { - "l": "0.4", - "x": 1.1691, - "y": 41.7844 - }, - { - "l": "0.4", - "x": 1.1882, - "y": 41.836 - }, - { - "l": "0.4", - "x": 1.2074, - "y": 41.8865 - }, - { - "l": "0.4", - "x": 1.2266, - "y": 41.9361 - }, - { - "l": "0.4", - "x": 1.2457, - "y": 41.9847 - }, - { - "l": "0.4", - "x": 1.2649, - "y": 42.0326 - }, - { - "l": "0.4", - "x": 1.2841, - "y": 42.0797 - }, - { - "l": "0.4", - "x": 1.3032, - "y": 42.1259 - }, - { - "l": "0.4", - "x": 1.3224, - "y": 42.1714 - }, - { - "l": "0.4", - "x": 1.3415, - "y": 42.216 - }, - { - "l": "0.4", - "x": 1.3607, - "y": 42.2598 - }, - { - "l": "0.4", - "x": 1.3799, - "y": 42.3028 - }, - { - "l": "0.4", - "x": 1.399, - "y": 42.3452 - }, - { - "l": "0.4", - "x": 1.4182, - "y": 42.387 - }, - { - "l": "0.4", - "x": 1.4374, - "y": 42.4282 - }, - { - "l": "0.4", - "x": 1.4565, - "y": 42.4689 - }, - { - "l": "0.4", - "x": 1.4757, - "y": 42.509 - }, - { - "l": "0.4", - "x": 1.4949, - "y": 42.5485 - }, - { - "l": "0.4", - "x": 1.514, - "y": 42.5875 - }, - { - "l": "0.4", - "x": 1.5332, - "y": 42.6259 - }, - { - "l": "0.4", - "x": 1.5524, - "y": 42.6639 - }, - { - "l": "0.4", - "x": 1.5715, - "y": 42.7014 - }, - { - "l": "0.4", - "x": 1.5907, - "y": 42.7385 - }, - { - "l": "0.4", - "x": 1.6099, - "y": 42.7753 - }, - { - "l": "0.4", - "x": 1.629, - "y": 42.8117 - }, - { - "l": "0.4", - "x": 1.6482, - "y": 42.8478 - }, - { - "l": "0.4", - "x": 1.6674, - "y": 42.8835 - }, - { - "l": "0.4", - "x": 1.6865, - "y": 42.919 - }, - { - "l": "0.4", - "x": 1.7057, - "y": 42.9541 - }, - { - "l": "0.4", - "x": 1.7248, - "y": 42.9889 - }, - { - "l": "0.4", - "x": 1.744, - "y": 43.0235 - }, - { - "l": "0.4", - "x": 1.7632, - "y": 43.0578 - }, - { - "l": "0.4", - "x": 1.7823, - "y": 43.0919 - }, - { - "l": "0.4", - "x": 1.8015, - "y": 43.1257 - }, - { - "l": "0.4", - "x": 1.8207, - "y": 43.1592 - }, - { - "l": "0.4", - "x": 1.8398, - "y": 43.1925 - }, - { - "l": "0.4", - "x": 1.859, - "y": 43.2256 - }, - { - "l": "0.4", - "x": 1.8782, - "y": 43.2584 - }, - { - "l": "0.4", - "x": 1.8973, - "y": 43.291 - }, - { - "l": "0.4", - "x": 1.9165, - "y": 43.3234 - }, - { - "l": "0.4", - "x": 1.9357, - "y": 43.3551 - }, - { - "l": "0.4", - "x": 1.9548, - "y": 43.3869 - }, - { - "l": "0.4", - "x": 1.974, - "y": 43.4186 - }, - { - "l": "0.4", - "x": 1.9932, - "y": 43.4504 - }, - { - "l": "0.4", - "x": 2.0, - "y": 43.4617 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 0.0383, - "y": 32.9367 - }, - { - "l": "2.0", - "x": 0.0575, - "y": 33.5268 - }, - { - "l": "2.0", - "x": 0.0767, - "y": 34.0371 - }, - { - "l": "2.0", - "x": 0.0958, - "y": 34.4875 - }, - { - "l": "2.0", - "x": 0.115, - "y": 34.8925 - }, - { - "l": "2.0", - "x": 0.1342, - "y": 35.2618 - }, - { - "l": "2.0", - "x": 0.1533, - "y": 35.6042 - }, - { - "l": "2.0", - "x": 0.1725, - "y": 35.9232 - }, - { - "l": "2.0", - "x": 0.1916, - "y": 36.2251 - }, - { - "l": "2.0", - "x": 0.2108, - "y": 36.5097 - }, - { - "l": "2.0", - "x": 0.23, - "y": 36.7805 - }, - { - "l": "2.0", - "x": 0.2491, - "y": 37.0391 - }, - { - "l": "2.0", - "x": 0.2683, - "y": 37.283 - }, - { - "l": "2.0", - "x": 0.2875, - "y": 37.519 - }, - { - "l": "2.0", - "x": 0.3066, - "y": 37.7468 - }, - { - "l": "2.0", - "x": 0.3258, - "y": 37.9663 - }, - { - "l": "2.0", - "x": 0.345, - "y": 38.1761 - }, - { - "l": "2.0", - "x": 0.3641, - "y": 38.3767 - }, - { - "l": "2.0", - "x": 0.3833, - "y": 38.5693 - }, - { - "l": "2.0", - "x": 0.4025, - "y": 38.7544 - }, - { - "l": "2.0", - "x": 0.4216, - "y": 38.9324 - }, - { - "l": "2.0", - "x": 0.4408, - "y": 39.1039 - }, - { - "l": "2.0", - "x": 0.46, - "y": 39.269 - }, - { - "l": "2.0", - "x": 0.4791, - "y": 39.4278 - }, - { - "l": "2.0", - "x": 0.4983, - "y": 39.5807 - }, - { - "l": "2.0", - "x": 0.5175, - "y": 39.7281 - }, - { - "l": "2.0", - "x": 0.5366, - "y": 39.87 - }, - { - "l": "2.0", - "x": 0.5558, - "y": 40.0068 - }, - { - "l": "2.0", - "x": 0.5749, - "y": 40.1388 - }, - { - "l": "2.0", - "x": 0.5941, - "y": 40.2662 - }, - { - "l": "2.0", - "x": 0.6133, - "y": 40.3894 - }, - { - "l": "2.0", - "x": 0.6324, - "y": 40.5082 - }, - { - "l": "2.0", - "x": 0.6516, - "y": 40.623 - }, - { - "l": "2.0", - "x": 0.6708, - "y": 40.7339 - }, - { - "l": "2.0", - "x": 0.6899, - "y": 40.8409 - }, - { - "l": "2.0", - "x": 0.7091, - "y": 40.9443 - }, - { - "l": "2.0", - "x": 0.7283, - "y": 41.0443 - }, - { - "l": "2.0", - "x": 0.7474, - "y": 41.141 - }, - { - "l": "2.0", - "x": 0.7666, - "y": 41.2347 - }, - { - "l": "2.0", - "x": 0.7858, - "y": 41.3255 - }, - { - "l": "2.0", - "x": 0.8049, - "y": 41.4135 - }, - { - "l": "2.0", - "x": 0.8241, - "y": 41.4988 - }, - { - "l": "2.0", - "x": 0.8433, - "y": 41.5817 - }, - { - "l": "2.0", - "x": 0.8624, - "y": 41.6623 - }, - { - "l": "2.0", - "x": 0.8816, - "y": 41.7406 - }, - { - "l": "2.0", - "x": 0.9008, - "y": 41.8166 - }, - { - "l": "2.0", - "x": 0.9199, - "y": 41.8905 - }, - { - "l": "2.0", - "x": 0.9391, - "y": 41.9624 - }, - { - "l": "2.0", - "x": 0.9582, - "y": 42.0324 - }, - { - "l": "2.0", - "x": 0.9774, - "y": 42.1005 - }, - { - "l": "2.0", - "x": 0.9966, - "y": 42.1668 - }, - { - "l": "2.0", - "x": 1.0157, - "y": 42.2315 - }, - { - "l": "2.0", - "x": 1.0349, - "y": 42.2947 - }, - { - "l": "2.0", - "x": 1.0541, - "y": 42.3563 - }, - { - "l": "2.0", - "x": 1.0732, - "y": 42.4164 - }, - { - "l": "2.0", - "x": 1.0924, - "y": 42.4751 - }, - { - "l": "2.0", - "x": 1.1116, - "y": 42.5324 - }, - { - "l": "2.0", - "x": 1.1307, - "y": 42.5884 - }, - { - "l": "2.0", - "x": 1.1499, - "y": 42.6431 - }, - { - "l": "2.0", - "x": 1.1691, - "y": 42.6966 - }, - { - "l": "2.0", - "x": 1.1882, - "y": 42.7489 - }, - { - "l": "2.0", - "x": 1.2074, - "y": 42.8001 - }, - { - "l": "2.0", - "x": 1.2266, - "y": 42.8503 - }, - { - "l": "2.0", - "x": 1.2457, - "y": 42.8995 - }, - { - "l": "2.0", - "x": 1.2649, - "y": 42.9479 - }, - { - "l": "2.0", - "x": 1.2841, - "y": 42.9955 - }, - { - "l": "2.0", - "x": 1.3032, - "y": 43.0422 - }, - { - "l": "2.0", - "x": 1.3224, - "y": 43.0881 - }, - { - "l": "2.0", - "x": 1.3415, - "y": 43.1332 - }, - { - "l": "2.0", - "x": 1.3607, - "y": 43.1775 - }, - { - "l": "2.0", - "x": 1.3799, - "y": 43.221 - }, - { - "l": "2.0", - "x": 1.399, - "y": 43.2638 - }, - { - "l": "2.0", - "x": 1.4182, - "y": 43.306 - }, - { - "l": "2.0", - "x": 1.4374, - "y": 43.3477 - }, - { - "l": "2.0", - "x": 1.4565, - "y": 43.3888 - }, - { - "l": "2.0", - "x": 1.4757, - "y": 43.4293 - }, - { - "l": "2.0", - "x": 1.4949, - "y": 43.4693 - }, - { - "l": "2.0", - "x": 1.514, - "y": 43.5087 - }, - { - "l": "2.0", - "x": 1.5332, - "y": 43.5475 - }, - { - "l": "2.0", - "x": 1.5524, - "y": 43.5859 - }, - { - "l": "2.0", - "x": 1.5715, - "y": 43.6238 - }, - { - "l": "2.0", - "x": 1.5907, - "y": 43.6614 - }, - { - "l": "2.0", - "x": 1.6099, - "y": 43.6986 - }, - { - "l": "2.0", - "x": 1.629, - "y": 43.7354 - }, - { - "l": "2.0", - "x": 1.6482, - "y": 43.7719 - }, - { - "l": "2.0", - "x": 1.6674, - "y": 43.808 - }, - { - "l": "2.0", - "x": 1.6865, - "y": 43.8438 - }, - { - "l": "2.0", - "x": 1.7057, - "y": 43.8793 - }, - { - "l": "2.0", - "x": 1.7248, - "y": 43.9145 - }, - { - "l": "2.0", - "x": 1.744, - "y": 43.9494 - }, - { - "l": "2.0", - "x": 1.7632, - "y": 43.9841 - }, - { - "l": "2.0", - "x": 1.7823, - "y": 44.0185 - }, - { - "l": "2.0", - "x": 1.8015, - "y": 44.0526 - }, - { - "l": "2.0", - "x": 1.8207, - "y": 44.0865 - }, - { - "l": "2.0", - "x": 1.8398, - "y": 44.1202 - }, - { - "l": "2.0", - "x": 1.859, - "y": 44.1535 - }, - { - "l": "2.0", - "x": 1.8782, - "y": 44.1867 - }, - { - "l": "2.0", - "x": 1.8973, - "y": 44.2196 - }, - { - "l": "2.0", - "x": 1.9165, - "y": 44.2522 - }, - { - "l": "2.0", - "x": 1.9357, - "y": 44.2843 - }, - { - "l": "2.0", - "x": 1.9548, - "y": 44.3163 - }, - { - "l": "2.0", - "x": 1.974, - "y": 44.3484 - }, - { - "l": "2.0", - "x": 1.9932, - "y": 44.3804 - }, - { - "l": "2.0", - "x": 2.0, - "y": 44.3918 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 0.0383, - "y": 33.7002 - }, - { - "l": "9.0", - "x": 0.0575, - "y": 34.2989 - }, - { - "l": "9.0", - "x": 0.0767, - "y": 34.8168 - }, - { - "l": "9.0", - "x": 0.0958, - "y": 35.2741 - }, - { - "l": "9.0", - "x": 0.115, - "y": 35.6853 - }, - { - "l": "9.0", - "x": 0.1342, - "y": 36.0607 - }, - { - "l": "9.0", - "x": 0.1533, - "y": 36.4083 - }, - { - "l": "9.0", - "x": 0.1725, - "y": 36.7327 - }, - { - "l": "9.0", - "x": 0.1916, - "y": 37.0391 - }, - { - "l": "9.0", - "x": 0.2108, - "y": 37.3285 - }, - { - "l": "9.0", - "x": 0.23, - "y": 37.6037 - }, - { - "l": "9.0", - "x": 0.2491, - "y": 37.8664 - }, - { - "l": "9.0", - "x": 0.2683, - "y": 38.1154 - }, - { - "l": "9.0", - "x": 0.2875, - "y": 38.3554 - }, - { - "l": "9.0", - "x": 0.3066, - "y": 38.5867 - }, - { - "l": "9.0", - "x": 0.3258, - "y": 38.8091 - }, - { - "l": "9.0", - "x": 0.345, - "y": 39.022 - }, - { - "l": "9.0", - "x": 0.3641, - "y": 39.2258 - }, - { - "l": "9.0", - "x": 0.3833, - "y": 39.4216 - }, - { - "l": "9.0", - "x": 0.4025, - "y": 39.6096 - }, - { - "l": "9.0", - "x": 0.4216, - "y": 39.7905 - }, - { - "l": "9.0", - "x": 0.4408, - "y": 39.9647 - }, - { - "l": "9.0", - "x": 0.46, - "y": 40.1324 - }, - { - "l": "9.0", - "x": 0.4791, - "y": 40.2937 - }, - { - "l": "9.0", - "x": 0.4983, - "y": 40.449 - }, - { - "l": "9.0", - "x": 0.5175, - "y": 40.5987 - }, - { - "l": "9.0", - "x": 0.5366, - "y": 40.7429 - }, - { - "l": "9.0", - "x": 0.5558, - "y": 40.8819 - }, - { - "l": "9.0", - "x": 0.5749, - "y": 41.0159 - }, - { - "l": "9.0", - "x": 0.5941, - "y": 41.1453 - }, - { - "l": "9.0", - "x": 0.6133, - "y": 41.2703 - }, - { - "l": "9.0", - "x": 0.6324, - "y": 41.3909 - }, - { - "l": "9.0", - "x": 0.6516, - "y": 41.5073 - }, - { - "l": "9.0", - "x": 0.6708, - "y": 41.6198 - }, - { - "l": "9.0", - "x": 0.6899, - "y": 41.7284 - }, - { - "l": "9.0", - "x": 0.7091, - "y": 41.8333 - }, - { - "l": "9.0", - "x": 0.7283, - "y": 41.9348 - }, - { - "l": "9.0", - "x": 0.7474, - "y": 42.0329 - }, - { - "l": "9.0", - "x": 0.7666, - "y": 42.128 - }, - { - "l": "9.0", - "x": 0.7858, - "y": 42.2201 - }, - { - "l": "9.0", - "x": 0.8049, - "y": 42.3094 - }, - { - "l": "9.0", - "x": 0.8241, - "y": 42.3959 - }, - { - "l": "9.0", - "x": 0.8433, - "y": 42.4799 - }, - { - "l": "9.0", - "x": 0.8624, - "y": 42.5616 - }, - { - "l": "9.0", - "x": 0.8816, - "y": 42.6409 - }, - { - "l": "9.0", - "x": 0.9008, - "y": 42.7179 - }, - { - "l": "9.0", - "x": 0.9199, - "y": 42.7928 - }, - { - "l": "9.0", - "x": 0.9391, - "y": 42.8656 - }, - { - "l": "9.0", - "x": 0.9582, - "y": 42.9365 - }, - { - "l": "9.0", - "x": 0.9774, - "y": 43.0055 - }, - { - "l": "9.0", - "x": 0.9966, - "y": 43.0727 - }, - { - "l": "9.0", - "x": 1.0157, - "y": 43.1382 - }, - { - "l": "9.0", - "x": 1.0349, - "y": 43.2021 - }, - { - "l": "9.0", - "x": 1.0541, - "y": 43.2645 - }, - { - "l": "9.0", - "x": 1.0732, - "y": 43.3253 - }, - { - "l": "9.0", - "x": 1.0924, - "y": 43.3847 - }, - { - "l": "9.0", - "x": 1.1116, - "y": 43.4427 - }, - { - "l": "9.0", - "x": 1.1307, - "y": 43.4993 - }, - { - "l": "9.0", - "x": 1.1499, - "y": 43.5547 - }, - { - "l": "9.0", - "x": 1.1691, - "y": 43.6089 - }, - { - "l": "9.0", - "x": 1.1882, - "y": 43.6618 - }, - { - "l": "9.0", - "x": 1.2074, - "y": 43.7137 - }, - { - "l": "9.0", - "x": 1.2266, - "y": 43.7645 - }, - { - "l": "9.0", - "x": 1.2457, - "y": 43.8143 - }, - { - "l": "9.0", - "x": 1.2649, - "y": 43.8632 - }, - { - "l": "9.0", - "x": 1.2841, - "y": 43.9113 - }, - { - "l": "9.0", - "x": 1.3032, - "y": 43.9585 - }, - { - "l": "9.0", - "x": 1.3224, - "y": 44.0049 - }, - { - "l": "9.0", - "x": 1.3415, - "y": 44.0504 - }, - { - "l": "9.0", - "x": 1.3607, - "y": 44.0952 - }, - { - "l": "9.0", - "x": 1.3799, - "y": 44.1392 - }, - { - "l": "9.0", - "x": 1.399, - "y": 44.1825 - }, - { - "l": "9.0", - "x": 1.4182, - "y": 44.2251 - }, - { - "l": "9.0", - "x": 1.4374, - "y": 44.2672 - }, - { - "l": "9.0", - "x": 1.4565, - "y": 44.3087 - }, - { - "l": "9.0", - "x": 1.4757, - "y": 44.3496 - }, - { - "l": "9.0", - "x": 1.4949, - "y": 44.39 - }, - { - "l": "9.0", - "x": 1.514, - "y": 44.4298 - }, - { - "l": "9.0", - "x": 1.5332, - "y": 44.4691 - }, - { - "l": "9.0", - "x": 1.5524, - "y": 44.5079 - }, - { - "l": "9.0", - "x": 1.5715, - "y": 44.5463 - }, - { - "l": "9.0", - "x": 1.5907, - "y": 44.5843 - }, - { - "l": "9.0", - "x": 1.6099, - "y": 44.6219 - }, - { - "l": "9.0", - "x": 1.629, - "y": 44.6591 - }, - { - "l": "9.0", - "x": 1.6482, - "y": 44.696 - }, - { - "l": "9.0", - "x": 1.6674, - "y": 44.7325 - }, - { - "l": "9.0", - "x": 1.6865, - "y": 44.7687 - }, - { - "l": "9.0", - "x": 1.7057, - "y": 44.8045 - }, - { - "l": "9.0", - "x": 1.7248, - "y": 44.8401 - }, - { - "l": "9.0", - "x": 1.744, - "y": 44.8753 - }, - { - "l": "9.0", - "x": 1.7632, - "y": 44.9104 - }, - { - "l": "9.0", - "x": 1.7823, - "y": 44.9451 - }, - { - "l": "9.0", - "x": 1.8015, - "y": 44.9796 - }, - { - "l": "9.0", - "x": 1.8207, - "y": 45.0138 - }, - { - "l": "9.0", - "x": 1.8398, - "y": 45.0478 - }, - { - "l": "9.0", - "x": 1.859, - "y": 45.0815 - }, - { - "l": "9.0", - "x": 1.8782, - "y": 45.1149 - }, - { - "l": "9.0", - "x": 1.8973, - "y": 45.1481 - }, - { - "l": "9.0", - "x": 1.9165, - "y": 45.1811 - }, - { - "l": "9.0", - "x": 1.9357, - "y": 45.2134 - }, - { - "l": "9.0", - "x": 1.9548, - "y": 45.2457 - }, - { - "l": "9.0", - "x": 1.974, - "y": 45.2781 - }, - { - "l": "9.0", - "x": 1.9932, - "y": 45.3104 - }, - { - "l": "9.0", - "x": 2.0, - "y": 45.322 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 0.0383, - "y": 34.4637 - }, - { - "l": "25.0", - "x": 0.0575, - "y": 35.0709 - }, - { - "l": "25.0", - "x": 0.0767, - "y": 35.5964 - }, - { - "l": "25.0", - "x": 0.0958, - "y": 36.0606 - }, - { - "l": "25.0", - "x": 0.115, - "y": 36.4782 - }, - { - "l": "25.0", - "x": 0.1342, - "y": 36.8595 - }, - { - "l": "25.0", - "x": 0.1533, - "y": 37.2125 - }, - { - "l": "25.0", - "x": 0.1725, - "y": 37.5421 - }, - { - "l": "25.0", - "x": 0.1916, - "y": 37.8532 - }, - { - "l": "25.0", - "x": 0.2108, - "y": 38.1473 - }, - { - "l": "25.0", - "x": 0.23, - "y": 38.4269 - }, - { - "l": "25.0", - "x": 0.2491, - "y": 38.6937 - }, - { - "l": "25.0", - "x": 0.2683, - "y": 38.9477 - }, - { - "l": "25.0", - "x": 0.2875, - "y": 39.1919 - }, - { - "l": "25.0", - "x": 0.3066, - "y": 39.4265 - }, - { - "l": "25.0", - "x": 0.3258, - "y": 39.6518 - }, - { - "l": "25.0", - "x": 0.345, - "y": 39.8678 - }, - { - "l": "25.0", - "x": 0.3641, - "y": 40.075 - }, - { - "l": "25.0", - "x": 0.3833, - "y": 40.2738 - }, - { - "l": "25.0", - "x": 0.4025, - "y": 40.4649 - }, - { - "l": "25.0", - "x": 0.4216, - "y": 40.6486 - }, - { - "l": "25.0", - "x": 0.4408, - "y": 40.8255 - }, - { - "l": "25.0", - "x": 0.46, - "y": 40.9958 - }, - { - "l": "25.0", - "x": 0.4791, - "y": 41.1596 - }, - { - "l": "25.0", - "x": 0.4983, - "y": 41.3172 - }, - { - "l": "25.0", - "x": 0.5175, - "y": 41.4693 - }, - { - "l": "25.0", - "x": 0.5366, - "y": 41.6158 - }, - { - "l": "25.0", - "x": 0.5558, - "y": 41.7569 - }, - { - "l": "25.0", - "x": 0.5749, - "y": 41.893 - }, - { - "l": "25.0", - "x": 0.5941, - "y": 42.0244 - }, - { - "l": "25.0", - "x": 0.6133, - "y": 42.1511 - }, - { - "l": "25.0", - "x": 0.6324, - "y": 42.2735 - }, - { - "l": "25.0", - "x": 0.6516, - "y": 42.3916 - }, - { - "l": "25.0", - "x": 0.6708, - "y": 42.5057 - }, - { - "l": "25.0", - "x": 0.6899, - "y": 42.6158 - }, - { - "l": "25.0", - "x": 0.7091, - "y": 42.7223 - }, - { - "l": "25.0", - "x": 0.7283, - "y": 42.8253 - }, - { - "l": "25.0", - "x": 0.7474, - "y": 42.9248 - }, - { - "l": "25.0", - "x": 0.7666, - "y": 43.0213 - }, - { - "l": "25.0", - "x": 0.7858, - "y": 43.1147 - }, - { - "l": "25.0", - "x": 0.8049, - "y": 43.2052 - }, - { - "l": "25.0", - "x": 0.8241, - "y": 43.2929 - }, - { - "l": "25.0", - "x": 0.8433, - "y": 43.3781 - }, - { - "l": "25.0", - "x": 0.8624, - "y": 43.4608 - }, - { - "l": "25.0", - "x": 0.8816, - "y": 43.5412 - }, - { - "l": "25.0", - "x": 0.9008, - "y": 43.6192 - }, - { - "l": "25.0", - "x": 0.9199, - "y": 43.695 - }, - { - "l": "25.0", - "x": 0.9391, - "y": 43.7688 - }, - { - "l": "25.0", - "x": 0.9582, - "y": 43.8406 - }, - { - "l": "25.0", - "x": 0.9774, - "y": 43.9105 - }, - { - "l": "25.0", - "x": 0.9966, - "y": 43.9785 - }, - { - "l": "25.0", - "x": 1.0157, - "y": 44.0449 - }, - { - "l": "25.0", - "x": 1.0349, - "y": 44.1095 - }, - { - "l": "25.0", - "x": 1.0541, - "y": 44.1726 - }, - { - "l": "25.0", - "x": 1.0732, - "y": 44.2342 - }, - { - "l": "25.0", - "x": 1.0924, - "y": 44.2942 - }, - { - "l": "25.0", - "x": 1.1116, - "y": 44.3529 - }, - { - "l": "25.0", - "x": 1.1307, - "y": 44.4103 - }, - { - "l": "25.0", - "x": 1.1499, - "y": 44.4663 - }, - { - "l": "25.0", - "x": 1.1691, - "y": 44.5211 - }, - { - "l": "25.0", - "x": 1.1882, - "y": 44.5747 - }, - { - "l": "25.0", - "x": 1.2074, - "y": 44.6272 - }, - { - "l": "25.0", - "x": 1.2266, - "y": 44.6787 - }, - { - "l": "25.0", - "x": 1.2457, - "y": 44.7291 - }, - { - "l": "25.0", - "x": 1.2649, - "y": 44.7785 - }, - { - "l": "25.0", - "x": 1.2841, - "y": 44.8271 - }, - { - "l": "25.0", - "x": 1.3032, - "y": 44.8748 - }, - { - "l": "25.0", - "x": 1.3224, - "y": 44.9216 - }, - { - "l": "25.0", - "x": 1.3415, - "y": 44.9676 - }, - { - "l": "25.0", - "x": 1.3607, - "y": 45.0128 - }, - { - "l": "25.0", - "x": 1.3799, - "y": 45.0573 - }, - { - "l": "25.0", - "x": 1.399, - "y": 45.1011 - }, - { - "l": "25.0", - "x": 1.4182, - "y": 45.1442 - }, - { - "l": "25.0", - "x": 1.4374, - "y": 45.1867 - }, - { - "l": "25.0", - "x": 1.4565, - "y": 45.2286 - }, - { - "l": "25.0", - "x": 1.4757, - "y": 45.27 - }, - { - "l": "25.0", - "x": 1.4949, - "y": 45.3107 - }, - { - "l": "25.0", - "x": 1.514, - "y": 45.351 - }, - { - "l": "25.0", - "x": 1.5332, - "y": 45.3907 - }, - { - "l": "25.0", - "x": 1.5524, - "y": 45.43 - }, - { - "l": "25.0", - "x": 1.5715, - "y": 45.4688 - }, - { - "l": "25.0", - "x": 1.5907, - "y": 45.5072 - }, - { - "l": "25.0", - "x": 1.6099, - "y": 45.5452 - }, - { - "l": "25.0", - "x": 1.629, - "y": 45.5828 - }, - { - "l": "25.0", - "x": 1.6482, - "y": 45.6201 - }, - { - "l": "25.0", - "x": 1.6674, - "y": 45.657 - }, - { - "l": "25.0", - "x": 1.6865, - "y": 45.6935 - }, - { - "l": "25.0", - "x": 1.7057, - "y": 45.7297 - }, - { - "l": "25.0", - "x": 1.7248, - "y": 45.7657 - }, - { - "l": "25.0", - "x": 1.744, - "y": 45.8013 - }, - { - "l": "25.0", - "x": 1.7632, - "y": 45.8366 - }, - { - "l": "25.0", - "x": 1.7823, - "y": 45.8717 - }, - { - "l": "25.0", - "x": 1.8015, - "y": 45.9066 - }, - { - "l": "25.0", - "x": 1.8207, - "y": 45.9411 - }, - { - "l": "25.0", - "x": 1.8398, - "y": 45.9754 - }, - { - "l": "25.0", - "x": 1.859, - "y": 46.0094 - }, - { - "l": "25.0", - "x": 1.8782, - "y": 46.0432 - }, - { - "l": "25.0", - "x": 1.8973, - "y": 46.0767 - }, - { - "l": "25.0", - "x": 1.9165, - "y": 46.1099 - }, - { - "l": "25.0", - "x": 1.9357, - "y": 46.1426 - }, - { - "l": "25.0", - "x": 1.9548, - "y": 46.1752 - }, - { - "l": "25.0", - "x": 1.974, - "y": 46.2078 - }, - { - "l": "25.0", - "x": 1.9932, - "y": 46.2404 - }, - { - "l": "25.0", - "x": 2.0, - "y": 46.2521 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 0.0383, - "y": 35.2272 - }, - { - "l": "50.0", - "x": 0.0575, - "y": 35.843 - }, - { - "l": "50.0", - "x": 0.0767, - "y": 36.3761 - }, - { - "l": "50.0", - "x": 0.0958, - "y": 36.8472 - }, - { - "l": "50.0", - "x": 0.115, - "y": 37.2711 - }, - { - "l": "50.0", - "x": 0.1342, - "y": 37.6584 - }, - { - "l": "50.0", - "x": 0.1533, - "y": 38.0167 - }, - { - "l": "50.0", - "x": 0.1725, - "y": 38.3516 - }, - { - "l": "50.0", - "x": 0.1916, - "y": 38.6673 - }, - { - "l": "50.0", - "x": 0.2108, - "y": 38.9661 - }, - { - "l": "50.0", - "x": 0.23, - "y": 39.2501 - }, - { - "l": "50.0", - "x": 0.2491, - "y": 39.521 - }, - { - "l": "50.0", - "x": 0.2683, - "y": 39.78 - }, - { - "l": "50.0", - "x": 0.2875, - "y": 40.0283 - }, - { - "l": "50.0", - "x": 0.3066, - "y": 40.2663 - }, - { - "l": "50.0", - "x": 0.3258, - "y": 40.4946 - }, - { - "l": "50.0", - "x": 0.345, - "y": 40.7137 - }, - { - "l": "50.0", - "x": 0.3641, - "y": 40.9241 - }, - { - "l": "50.0", - "x": 0.3833, - "y": 41.1261 - }, - { - "l": "50.0", - "x": 0.4025, - "y": 41.3201 - }, - { - "l": "50.0", - "x": 0.4216, - "y": 41.5067 - }, - { - "l": "50.0", - "x": 0.4408, - "y": 41.6863 - }, - { - "l": "50.0", - "x": 0.46, - "y": 41.8591 - }, - { - "l": "50.0", - "x": 0.4791, - "y": 42.0254 - }, - { - "l": "50.0", - "x": 0.4983, - "y": 42.1855 - }, - { - "l": "50.0", - "x": 0.5175, - "y": 42.3399 - }, - { - "l": "50.0", - "x": 0.5366, - "y": 42.4886 - }, - { - "l": "50.0", - "x": 0.5558, - "y": 42.632 - }, - { - "l": "50.0", - "x": 0.5749, - "y": 42.7701 - }, - { - "l": "50.0", - "x": 0.5941, - "y": 42.9034 - }, - { - "l": "50.0", - "x": 0.6133, - "y": 43.032 - }, - { - "l": "50.0", - "x": 0.6324, - "y": 43.1561 - }, - { - "l": "50.0", - "x": 0.6516, - "y": 43.2759 - }, - { - "l": "50.0", - "x": 0.6708, - "y": 43.3916 - }, - { - "l": "50.0", - "x": 0.6899, - "y": 43.5033 - }, - { - "l": "50.0", - "x": 0.7091, - "y": 43.6113 - }, - { - "l": "50.0", - "x": 0.7283, - "y": 43.7157 - }, - { - "l": "50.0", - "x": 0.7474, - "y": 43.8167 - }, - { - "l": "50.0", - "x": 0.7666, - "y": 43.9145 - }, - { - "l": "50.0", - "x": 0.7858, - "y": 44.0093 - }, - { - "l": "50.0", - "x": 0.8049, - "y": 44.101 - }, - { - "l": "50.0", - "x": 0.8241, - "y": 44.19 - }, - { - "l": "50.0", - "x": 0.8433, - "y": 44.2763 - }, - { - "l": "50.0", - "x": 0.8624, - "y": 44.3601 - }, - { - "l": "50.0", - "x": 0.8816, - "y": 44.4415 - }, - { - "l": "50.0", - "x": 0.9008, - "y": 44.5205 - }, - { - "l": "50.0", - "x": 0.9199, - "y": 44.5973 - }, - { - "l": "50.0", - "x": 0.9391, - "y": 44.672 - }, - { - "l": "50.0", - "x": 0.9582, - "y": 44.7447 - }, - { - "l": "50.0", - "x": 0.9774, - "y": 44.8155 - }, - { - "l": "50.0", - "x": 0.9966, - "y": 44.8844 - }, - { - "l": "50.0", - "x": 1.0157, - "y": 44.9515 - }, - { - "l": "50.0", - "x": 1.0349, - "y": 45.017 - }, - { - "l": "50.0", - "x": 1.0541, - "y": 45.0808 - }, - { - "l": "50.0", - "x": 1.0732, - "y": 45.143 - }, - { - "l": "50.0", - "x": 1.0924, - "y": 45.2038 - }, - { - "l": "50.0", - "x": 1.1116, - "y": 45.2632 - }, - { - "l": "50.0", - "x": 1.1307, - "y": 45.3212 - }, - { - "l": "50.0", - "x": 1.1499, - "y": 45.3779 - }, - { - "l": "50.0", - "x": 1.1691, - "y": 45.4334 - }, - { - "l": "50.0", - "x": 1.1882, - "y": 45.4877 - }, - { - "l": "50.0", - "x": 1.2074, - "y": 45.5408 - }, - { - "l": "50.0", - "x": 1.2266, - "y": 45.5929 - }, - { - "l": "50.0", - "x": 1.2457, - "y": 45.6439 - }, - { - "l": "50.0", - "x": 1.2649, - "y": 45.6939 - }, - { - "l": "50.0", - "x": 1.2841, - "y": 45.7429 - }, - { - "l": "50.0", - "x": 1.3032, - "y": 45.7911 - }, - { - "l": "50.0", - "x": 1.3224, - "y": 45.8384 - }, - { - "l": "50.0", - "x": 1.3415, - "y": 45.8848 - }, - { - "l": "50.0", - "x": 1.3607, - "y": 45.9305 - }, - { - "l": "50.0", - "x": 1.3799, - "y": 45.9755 - }, - { - "l": "50.0", - "x": 1.399, - "y": 46.0197 - }, - { - "l": "50.0", - "x": 1.4182, - "y": 46.0633 - }, - { - "l": "50.0", - "x": 1.4374, - "y": 46.1062 - }, - { - "l": "50.0", - "x": 1.4565, - "y": 46.1485 - }, - { - "l": "50.0", - "x": 1.4757, - "y": 46.1903 - }, - { - "l": "50.0", - "x": 1.4949, - "y": 46.2315 - }, - { - "l": "50.0", - "x": 1.514, - "y": 46.2721 - }, - { - "l": "50.0", - "x": 1.5332, - "y": 46.3123 - }, - { - "l": "50.0", - "x": 1.5524, - "y": 46.352 - }, - { - "l": "50.0", - "x": 1.5715, - "y": 46.3912 - }, - { - "l": "50.0", - "x": 1.5907, - "y": 46.4301 - }, - { - "l": "50.0", - "x": 1.6099, - "y": 46.4685 - }, - { - "l": "50.0", - "x": 1.629, - "y": 46.5065 - }, - { - "l": "50.0", - "x": 1.6482, - "y": 46.5441 - }, - { - "l": "50.0", - "x": 1.6674, - "y": 46.5814 - }, - { - "l": "50.0", - "x": 1.6865, - "y": 46.6184 - }, - { - "l": "50.0", - "x": 1.7057, - "y": 46.655 - }, - { - "l": "50.0", - "x": 1.7248, - "y": 46.6912 - }, - { - "l": "50.0", - "x": 1.744, - "y": 46.7272 - }, - { - "l": "50.0", - "x": 1.7632, - "y": 46.7629 - }, - { - "l": "50.0", - "x": 1.7823, - "y": 46.7984 - }, - { - "l": "50.0", - "x": 1.8015, - "y": 46.8335 - }, - { - "l": "50.0", - "x": 1.8207, - "y": 46.8684 - }, - { - "l": "50.0", - "x": 1.8398, - "y": 46.903 - }, - { - "l": "50.0", - "x": 1.859, - "y": 46.9373 - }, - { - "l": "50.0", - "x": 1.8782, - "y": 46.9714 - }, - { - "l": "50.0", - "x": 1.8973, - "y": 47.0052 - }, - { - "l": "50.0", - "x": 1.9165, - "y": 47.0388 - }, - { - "l": "50.0", - "x": 1.9357, - "y": 47.0717 - }, - { - "l": "50.0", - "x": 1.9548, - "y": 47.1046 - }, - { - "l": "50.0", - "x": 1.974, - "y": 47.1375 - }, - { - "l": "50.0", - "x": 1.9932, - "y": 47.1704 - }, - { - "l": "50.0", - "x": 2.0, - "y": 47.1822 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 0.0383, - "y": 35.9907 - }, - { - "l": "75.0", - "x": 0.0575, - "y": 36.6151 - }, - { - "l": "75.0", - "x": 0.0767, - "y": 37.1558 - }, - { - "l": "75.0", - "x": 0.0958, - "y": 37.6338 - }, - { - "l": "75.0", - "x": 0.115, - "y": 38.064 - }, - { - "l": "75.0", - "x": 0.1342, - "y": 38.4573 - }, - { - "l": "75.0", - "x": 0.1533, - "y": 38.8209 - }, - { - "l": "75.0", - "x": 0.1725, - "y": 39.1611 - }, - { - "l": "75.0", - "x": 0.1916, - "y": 39.4814 - }, - { - "l": "75.0", - "x": 0.2108, - "y": 39.7849 - }, - { - "l": "75.0", - "x": 0.23, - "y": 40.0733 - }, - { - "l": "75.0", - "x": 0.2491, - "y": 40.3483 - }, - { - "l": "75.0", - "x": 0.2683, - "y": 40.6124 - }, - { - "l": "75.0", - "x": 0.2875, - "y": 40.8647 - }, - { - "l": "75.0", - "x": 0.3066, - "y": 41.1062 - }, - { - "l": "75.0", - "x": 0.3258, - "y": 41.3374 - }, - { - "l": "75.0", - "x": 0.345, - "y": 41.5596 - }, - { - "l": "75.0", - "x": 0.3641, - "y": 41.7732 - }, - { - "l": "75.0", - "x": 0.3833, - "y": 41.9783 - }, - { - "l": "75.0", - "x": 0.4025, - "y": 42.1754 - }, - { - "l": "75.0", - "x": 0.4216, - "y": 42.3648 - }, - { - "l": "75.0", - "x": 0.4408, - "y": 42.5471 - }, - { - "l": "75.0", - "x": 0.46, - "y": 42.7225 - }, - { - "l": "75.0", - "x": 0.4791, - "y": 42.8913 - }, - { - "l": "75.0", - "x": 0.4983, - "y": 43.0538 - }, - { - "l": "75.0", - "x": 0.5175, - "y": 43.2105 - }, - { - "l": "75.0", - "x": 0.5366, - "y": 43.3615 - }, - { - "l": "75.0", - "x": 0.5558, - "y": 43.507 - }, - { - "l": "75.0", - "x": 0.5749, - "y": 43.6472 - }, - { - "l": "75.0", - "x": 0.5941, - "y": 43.7825 - }, - { - "l": "75.0", - "x": 0.6133, - "y": 43.9129 - }, - { - "l": "75.0", - "x": 0.6324, - "y": 44.0388 - }, - { - "l": "75.0", - "x": 0.6516, - "y": 44.1602 - }, - { - "l": "75.0", - "x": 0.6708, - "y": 44.2775 - }, - { - "l": "75.0", - "x": 0.6899, - "y": 44.3908 - }, - { - "l": "75.0", - "x": 0.7091, - "y": 44.5003 - }, - { - "l": "75.0", - "x": 0.7283, - "y": 44.6062 - }, - { - "l": "75.0", - "x": 0.7474, - "y": 44.7086 - }, - { - "l": "75.0", - "x": 0.7666, - "y": 44.8078 - }, - { - "l": "75.0", - "x": 0.7858, - "y": 44.9039 - }, - { - "l": "75.0", - "x": 0.8049, - "y": 44.9969 - }, - { - "l": "75.0", - "x": 0.8241, - "y": 45.087 - }, - { - "l": "75.0", - "x": 0.8433, - "y": 45.1745 - }, - { - "l": "75.0", - "x": 0.8624, - "y": 45.2594 - }, - { - "l": "75.0", - "x": 0.8816, - "y": 45.3418 - }, - { - "l": "75.0", - "x": 0.9008, - "y": 45.4218 - }, - { - "l": "75.0", - "x": 0.9199, - "y": 45.4995 - }, - { - "l": "75.0", - "x": 0.9391, - "y": 45.5752 - }, - { - "l": "75.0", - "x": 0.9582, - "y": 45.6489 - }, - { - "l": "75.0", - "x": 0.9774, - "y": 45.7205 - }, - { - "l": "75.0", - "x": 0.9966, - "y": 45.7903 - }, - { - "l": "75.0", - "x": 1.0157, - "y": 45.8582 - }, - { - "l": "75.0", - "x": 1.0349, - "y": 45.9244 - }, - { - "l": "75.0", - "x": 1.0541, - "y": 45.9889 - }, - { - "l": "75.0", - "x": 1.0732, - "y": 46.0519 - }, - { - "l": "75.0", - "x": 1.0924, - "y": 46.1134 - }, - { - "l": "75.0", - "x": 1.1116, - "y": 46.1734 - }, - { - "l": "75.0", - "x": 1.1307, - "y": 46.2321 - }, - { - "l": "75.0", - "x": 1.1499, - "y": 46.2895 - }, - { - "l": "75.0", - "x": 1.1691, - "y": 46.3456 - }, - { - "l": "75.0", - "x": 1.1882, - "y": 46.4006 - }, - { - "l": "75.0", - "x": 1.2074, - "y": 46.4544 - }, - { - "l": "75.0", - "x": 1.2266, - "y": 46.5071 - }, - { - "l": "75.0", - "x": 1.2457, - "y": 46.5587 - }, - { - "l": "75.0", - "x": 1.2649, - "y": 46.6092 - }, - { - "l": "75.0", - "x": 1.2841, - "y": 46.6587 - }, - { - "l": "75.0", - "x": 1.3032, - "y": 46.7074 - }, - { - "l": "75.0", - "x": 1.3224, - "y": 46.7551 - }, - { - "l": "75.0", - "x": 1.3415, - "y": 46.802 - }, - { - "l": "75.0", - "x": 1.3607, - "y": 46.8482 - }, - { - "l": "75.0", - "x": 1.3799, - "y": 46.8936 - }, - { - "l": "75.0", - "x": 1.399, - "y": 46.9383 - }, - { - "l": "75.0", - "x": 1.4182, - "y": 46.9824 - }, - { - "l": "75.0", - "x": 1.4374, - "y": 47.0257 - }, - { - "l": "75.0", - "x": 1.4565, - "y": 47.0685 - }, - { - "l": "75.0", - "x": 1.4757, - "y": 47.1106 - }, - { - "l": "75.0", - "x": 1.4949, - "y": 47.1522 - }, - { - "l": "75.0", - "x": 1.514, - "y": 47.1933 - }, - { - "l": "75.0", - "x": 1.5332, - "y": 47.2339 - }, - { - "l": "75.0", - "x": 1.5524, - "y": 47.274 - }, - { - "l": "75.0", - "x": 1.5715, - "y": 47.3137 - }, - { - "l": "75.0", - "x": 1.5907, - "y": 47.353 - }, - { - "l": "75.0", - "x": 1.6099, - "y": 47.3918 - }, - { - "l": "75.0", - "x": 1.629, - "y": 47.4302 - }, - { - "l": "75.0", - "x": 1.6482, - "y": 47.4682 - }, - { - "l": "75.0", - "x": 1.6674, - "y": 47.5059 - }, - { - "l": "75.0", - "x": 1.6865, - "y": 47.5432 - }, - { - "l": "75.0", - "x": 1.7057, - "y": 47.5802 - }, - { - "l": "75.0", - "x": 1.7248, - "y": 47.6168 - }, - { - "l": "75.0", - "x": 1.744, - "y": 47.6532 - }, - { - "l": "75.0", - "x": 1.7632, - "y": 47.6892 - }, - { - "l": "75.0", - "x": 1.7823, - "y": 47.725 - }, - { - "l": "75.0", - "x": 1.8015, - "y": 47.7605 - }, - { - "l": "75.0", - "x": 1.8207, - "y": 47.7957 - }, - { - "l": "75.0", - "x": 1.8398, - "y": 47.8306 - }, - { - "l": "75.0", - "x": 1.859, - "y": 47.8653 - }, - { - "l": "75.0", - "x": 1.8782, - "y": 47.8997 - }, - { - "l": "75.0", - "x": 1.8973, - "y": 47.9338 - }, - { - "l": "75.0", - "x": 1.9165, - "y": 47.9677 - }, - { - "l": "75.0", - "x": 1.9357, - "y": 48.0009 - }, - { - "l": "75.0", - "x": 1.9548, - "y": 48.0341 - }, - { - "l": "75.0", - "x": 1.974, - "y": 48.0673 - }, - { - "l": "75.0", - "x": 1.9932, - "y": 48.1005 - }, - { - "l": "75.0", - "x": 2.0, - "y": 48.1123 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 0.0383, - "y": 36.7542 - }, - { - "l": "91.0", - "x": 0.0575, - "y": 37.3871 - }, - { - "l": "91.0", - "x": 0.0767, - "y": 37.9354 - }, - { - "l": "91.0", - "x": 0.0958, - "y": 38.4203 - }, - { - "l": "91.0", - "x": 0.115, - "y": 38.8569 - }, - { - "l": "91.0", - "x": 0.1342, - "y": 39.2561 - }, - { - "l": "91.0", - "x": 0.1533, - "y": 39.6251 - }, - { - "l": "91.0", - "x": 0.1725, - "y": 39.9705 - }, - { - "l": "91.0", - "x": 0.1916, - "y": 40.2955 - }, - { - "l": "91.0", - "x": 0.2108, - "y": 40.6037 - }, - { - "l": "91.0", - "x": 0.23, - "y": 40.8965 - }, - { - "l": "91.0", - "x": 0.2491, - "y": 41.1756 - }, - { - "l": "91.0", - "x": 0.2683, - "y": 41.4447 - }, - { - "l": "91.0", - "x": 0.2875, - "y": 41.7012 - }, - { - "l": "91.0", - "x": 0.3066, - "y": 41.946 - }, - { - "l": "91.0", - "x": 0.3258, - "y": 42.1801 - }, - { - "l": "91.0", - "x": 0.345, - "y": 42.4055 - }, - { - "l": "91.0", - "x": 0.3641, - "y": 42.6224 - }, - { - "l": "91.0", - "x": 0.3833, - "y": 42.8306 - }, - { - "l": "91.0", - "x": 0.4025, - "y": 43.0306 - }, - { - "l": "91.0", - "x": 0.4216, - "y": 43.2229 - }, - { - "l": "91.0", - "x": 0.4408, - "y": 43.4079 - }, - { - "l": "91.0", - "x": 0.46, - "y": 43.5859 - }, - { - "l": "91.0", - "x": 0.4791, - "y": 43.7572 - }, - { - "l": "91.0", - "x": 0.4983, - "y": 43.922 - }, - { - "l": "91.0", - "x": 0.5175, - "y": 44.0811 - }, - { - "l": "91.0", - "x": 0.5366, - "y": 44.2344 - }, - { - "l": "91.0", - "x": 0.5558, - "y": 44.382 - }, - { - "l": "91.0", - "x": 0.5749, - "y": 44.5244 - }, - { - "l": "91.0", - "x": 0.5941, - "y": 44.6615 - }, - { - "l": "91.0", - "x": 0.6133, - "y": 44.7938 - }, - { - "l": "91.0", - "x": 0.6324, - "y": 44.9214 - }, - { - "l": "91.0", - "x": 0.6516, - "y": 45.0445 - }, - { - "l": "91.0", - "x": 0.6708, - "y": 45.1634 - }, - { - "l": "91.0", - "x": 0.6899, - "y": 45.2783 - }, - { - "l": "91.0", - "x": 0.7091, - "y": 45.3893 - }, - { - "l": "91.0", - "x": 0.7283, - "y": 45.4967 - }, - { - "l": "91.0", - "x": 0.7474, - "y": 45.6005 - }, - { - "l": "91.0", - "x": 0.7666, - "y": 45.7011 - }, - { - "l": "91.0", - "x": 0.7858, - "y": 45.7984 - }, - { - "l": "91.0", - "x": 0.8049, - "y": 45.8927 - }, - { - "l": "91.0", - "x": 0.8241, - "y": 45.9841 - }, - { - "l": "91.0", - "x": 0.8433, - "y": 46.0727 - }, - { - "l": "91.0", - "x": 0.8624, - "y": 46.1586 - }, - { - "l": "91.0", - "x": 0.8816, - "y": 46.2421 - }, - { - "l": "91.0", - "x": 0.9008, - "y": 46.3231 - }, - { - "l": "91.0", - "x": 0.9199, - "y": 46.4018 - }, - { - "l": "91.0", - "x": 0.9391, - "y": 46.4784 - }, - { - "l": "91.0", - "x": 0.9582, - "y": 46.553 - }, - { - "l": "91.0", - "x": 0.9774, - "y": 46.6255 - }, - { - "l": "91.0", - "x": 0.9966, - "y": 46.6961 - }, - { - "l": "91.0", - "x": 1.0157, - "y": 46.7648 - }, - { - "l": "91.0", - "x": 1.0349, - "y": 46.8318 - }, - { - "l": "91.0", - "x": 1.0541, - "y": 46.8971 - }, - { - "l": "91.0", - "x": 1.0732, - "y": 46.9607 - }, - { - "l": "91.0", - "x": 1.0924, - "y": 47.0229 - }, - { - "l": "91.0", - "x": 1.1116, - "y": 47.0837 - }, - { - "l": "91.0", - "x": 1.1307, - "y": 47.143 - }, - { - "l": "91.0", - "x": 1.1499, - "y": 47.2011 - }, - { - "l": "91.0", - "x": 1.1691, - "y": 47.2579 - }, - { - "l": "91.0", - "x": 1.1882, - "y": 47.3135 - }, - { - "l": "91.0", - "x": 1.2074, - "y": 47.3679 - }, - { - "l": "91.0", - "x": 1.2266, - "y": 47.4213 - }, - { - "l": "91.0", - "x": 1.2457, - "y": 47.4735 - }, - { - "l": "91.0", - "x": 1.2649, - "y": 47.5245 - }, - { - "l": "91.0", - "x": 1.2841, - "y": 47.5746 - }, - { - "l": "91.0", - "x": 1.3032, - "y": 47.6236 - }, - { - "l": "91.0", - "x": 1.3224, - "y": 47.6718 - }, - { - "l": "91.0", - "x": 1.3415, - "y": 47.7192 - }, - { - "l": "91.0", - "x": 1.3607, - "y": 47.7659 - }, - { - "l": "91.0", - "x": 1.3799, - "y": 47.8118 - }, - { - "l": "91.0", - "x": 1.399, - "y": 47.857 - }, - { - "l": "91.0", - "x": 1.4182, - "y": 47.9014 - }, - { - "l": "91.0", - "x": 1.4374, - "y": 47.9452 - }, - { - "l": "91.0", - "x": 1.4565, - "y": 47.9884 - }, - { - "l": "91.0", - "x": 1.4757, - "y": 48.0309 - }, - { - "l": "91.0", - "x": 1.4949, - "y": 48.0729 - }, - { - "l": "91.0", - "x": 1.514, - "y": 48.1144 - }, - { - "l": "91.0", - "x": 1.5332, - "y": 48.1555 - }, - { - "l": "91.0", - "x": 1.5524, - "y": 48.1961 - }, - { - "l": "91.0", - "x": 1.5715, - "y": 48.2362 - }, - { - "l": "91.0", - "x": 1.5907, - "y": 48.2758 - }, - { - "l": "91.0", - "x": 1.6099, - "y": 48.3151 - }, - { - "l": "91.0", - "x": 1.629, - "y": 48.3539 - }, - { - "l": "91.0", - "x": 1.6482, - "y": 48.3923 - }, - { - "l": "91.0", - "x": 1.6674, - "y": 48.4304 - }, - { - "l": "91.0", - "x": 1.6865, - "y": 48.4681 - }, - { - "l": "91.0", - "x": 1.7057, - "y": 48.5054 - }, - { - "l": "91.0", - "x": 1.7248, - "y": 48.5424 - }, - { - "l": "91.0", - "x": 1.744, - "y": 48.5791 - }, - { - "l": "91.0", - "x": 1.7632, - "y": 48.6155 - }, - { - "l": "91.0", - "x": 1.7823, - "y": 48.6516 - }, - { - "l": "91.0", - "x": 1.8015, - "y": 48.6874 - }, - { - "l": "91.0", - "x": 1.8207, - "y": 48.723 - }, - { - "l": "91.0", - "x": 1.8398, - "y": 48.7583 - }, - { - "l": "91.0", - "x": 1.859, - "y": 48.7932 - }, - { - "l": "91.0", - "x": 1.8782, - "y": 48.8279 - }, - { - "l": "91.0", - "x": 1.8973, - "y": 48.8624 - }, - { - "l": "91.0", - "x": 1.9165, - "y": 48.8965 - }, - { - "l": "91.0", - "x": 1.9357, - "y": 48.93 - }, - { - "l": "91.0", - "x": 1.9548, - "y": 48.9635 - }, - { - "l": "91.0", - "x": 1.974, - "y": 48.997 - }, - { - "l": "91.0", - "x": 1.9932, - "y": 49.0305 - }, - { - "l": "91.0", - "x": 2.0, - "y": 49.0424 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 0.0383, - "y": 37.5177 - }, - { - "l": "98.0", - "x": 0.0575, - "y": 38.1592 - }, - { - "l": "98.0", - "x": 0.0767, - "y": 38.7151 - }, - { - "l": "98.0", - "x": 0.0958, - "y": 39.2069 - }, - { - "l": "98.0", - "x": 0.115, - "y": 39.6497 - }, - { - "l": "98.0", - "x": 0.1342, - "y": 40.055 - }, - { - "l": "98.0", - "x": 0.1533, - "y": 40.4292 - }, - { - "l": "98.0", - "x": 0.1725, - "y": 40.78 - }, - { - "l": "98.0", - "x": 0.1916, - "y": 41.1095 - }, - { - "l": "98.0", - "x": 0.2108, - "y": 41.4225 - }, - { - "l": "98.0", - "x": 0.23, - "y": 41.7197 - }, - { - "l": "98.0", - "x": 0.2491, - "y": 42.0029 - }, - { - "l": "98.0", - "x": 0.2683, - "y": 42.277 - }, - { - "l": "98.0", - "x": 0.2875, - "y": 42.5376 - }, - { - "l": "98.0", - "x": 0.3066, - "y": 42.7858 - }, - { - "l": "98.0", - "x": 0.3258, - "y": 43.0229 - }, - { - "l": "98.0", - "x": 0.345, - "y": 43.2513 - }, - { - "l": "98.0", - "x": 0.3641, - "y": 43.4715 - }, - { - "l": "98.0", - "x": 0.3833, - "y": 43.6829 - }, - { - "l": "98.0", - "x": 0.4025, - "y": 43.8858 - }, - { - "l": "98.0", - "x": 0.4216, - "y": 44.0809 - }, - { - "l": "98.0", - "x": 0.4408, - "y": 44.2687 - }, - { - "l": "98.0", - "x": 0.46, - "y": 44.4493 - }, - { - "l": "98.0", - "x": 0.4791, - "y": 44.623 - }, - { - "l": "98.0", - "x": 0.4983, - "y": 44.7903 - }, - { - "l": "98.0", - "x": 0.5175, - "y": 44.9517 - }, - { - "l": "98.0", - "x": 0.5366, - "y": 45.1072 - }, - { - "l": "98.0", - "x": 0.5558, - "y": 45.2571 - }, - { - "l": "98.0", - "x": 0.5749, - "y": 45.4015 - }, - { - "l": "98.0", - "x": 0.5941, - "y": 45.5406 - }, - { - "l": "98.0", - "x": 0.6133, - "y": 45.6747 - }, - { - "l": "98.0", - "x": 0.6324, - "y": 45.804 - }, - { - "l": "98.0", - "x": 0.6516, - "y": 45.9288 - }, - { - "l": "98.0", - "x": 0.6708, - "y": 46.0493 - }, - { - "l": "98.0", - "x": 0.6899, - "y": 46.1658 - }, - { - "l": "98.0", - "x": 0.7091, - "y": 46.2784 - }, - { - "l": "98.0", - "x": 0.7283, - "y": 46.3872 - }, - { - "l": "98.0", - "x": 0.7474, - "y": 46.4924 - }, - { - "l": "98.0", - "x": 0.7666, - "y": 46.5944 - }, - { - "l": "98.0", - "x": 0.7858, - "y": 46.693 - }, - { - "l": "98.0", - "x": 0.8049, - "y": 46.7886 - }, - { - "l": "98.0", - "x": 0.8241, - "y": 46.8811 - }, - { - "l": "98.0", - "x": 0.8433, - "y": 46.9709 - }, - { - "l": "98.0", - "x": 0.8624, - "y": 47.0579 - }, - { - "l": "98.0", - "x": 0.8816, - "y": 47.1424 - }, - { - "l": "98.0", - "x": 0.9008, - "y": 47.2244 - }, - { - "l": "98.0", - "x": 0.9199, - "y": 47.3041 - }, - { - "l": "98.0", - "x": 0.9391, - "y": 47.3817 - }, - { - "l": "98.0", - "x": 0.9582, - "y": 47.4571 - }, - { - "l": "98.0", - "x": 0.9774, - "y": 47.5305 - }, - { - "l": "98.0", - "x": 0.9966, - "y": 47.602 - }, - { - "l": "98.0", - "x": 1.0157, - "y": 47.6715 - }, - { - "l": "98.0", - "x": 1.0349, - "y": 47.7392 - }, - { - "l": "98.0", - "x": 1.0541, - "y": 47.8052 - }, - { - "l": "98.0", - "x": 1.0732, - "y": 47.8696 - }, - { - "l": "98.0", - "x": 1.0924, - "y": 47.9325 - }, - { - "l": "98.0", - "x": 1.1116, - "y": 47.9939 - }, - { - "l": "98.0", - "x": 1.1307, - "y": 48.054 - }, - { - "l": "98.0", - "x": 1.1499, - "y": 48.1127 - }, - { - "l": "98.0", - "x": 1.1691, - "y": 48.1701 - }, - { - "l": "98.0", - "x": 1.1882, - "y": 48.2264 - }, - { - "l": "98.0", - "x": 1.2074, - "y": 48.2815 - }, - { - "l": "98.0", - "x": 1.2266, - "y": 48.3354 - }, - { - "l": "98.0", - "x": 1.2457, - "y": 48.3883 - }, - { - "l": "98.0", - "x": 1.2649, - "y": 48.4399 - }, - { - "l": "98.0", - "x": 1.2841, - "y": 48.4904 - }, - { - "l": "98.0", - "x": 1.3032, - "y": 48.5399 - }, - { - "l": "98.0", - "x": 1.3224, - "y": 48.5886 - }, - { - "l": "98.0", - "x": 1.3415, - "y": 48.6364 - }, - { - "l": "98.0", - "x": 1.3607, - "y": 48.6836 - }, - { - "l": "98.0", - "x": 1.3799, - "y": 48.7299 - }, - { - "l": "98.0", - "x": 1.399, - "y": 48.7756 - }, - { - "l": "98.0", - "x": 1.4182, - "y": 48.8205 - }, - { - "l": "98.0", - "x": 1.4374, - "y": 48.8647 - }, - { - "l": "98.0", - "x": 1.4565, - "y": 48.9083 - }, - { - "l": "98.0", - "x": 1.4757, - "y": 48.9512 - }, - { - "l": "98.0", - "x": 1.4949, - "y": 48.9937 - }, - { - "l": "98.0", - "x": 1.514, - "y": 49.0356 - }, - { - "l": "98.0", - "x": 1.5332, - "y": 49.0771 - }, - { - "l": "98.0", - "x": 1.5524, - "y": 49.1181 - }, - { - "l": "98.0", - "x": 1.5715, - "y": 49.1587 - }, - { - "l": "98.0", - "x": 1.5907, - "y": 49.1987 - }, - { - "l": "98.0", - "x": 1.6099, - "y": 49.2384 - }, - { - "l": "98.0", - "x": 1.629, - "y": 49.2776 - }, - { - "l": "98.0", - "x": 1.6482, - "y": 49.3164 - }, - { - "l": "98.0", - "x": 1.6674, - "y": 49.3548 - }, - { - "l": "98.0", - "x": 1.6865, - "y": 49.3929 - }, - { - "l": "98.0", - "x": 1.7057, - "y": 49.4306 - }, - { - "l": "98.0", - "x": 1.7248, - "y": 49.468 - }, - { - "l": "98.0", - "x": 1.744, - "y": 49.505 - }, - { - "l": "98.0", - "x": 1.7632, - "y": 49.5418 - }, - { - "l": "98.0", - "x": 1.7823, - "y": 49.5782 - }, - { - "l": "98.0", - "x": 1.8015, - "y": 49.6144 - }, - { - "l": "98.0", - "x": 1.8207, - "y": 49.6503 - }, - { - "l": "98.0", - "x": 1.8398, - "y": 49.6859 - }, - { - "l": "98.0", - "x": 1.859, - "y": 49.7212 - }, - { - "l": "98.0", - "x": 1.8782, - "y": 49.7562 - }, - { - "l": "98.0", - "x": 1.8973, - "y": 49.7909 - }, - { - "l": "98.0", - "x": 1.9165, - "y": 49.8254 - }, - { - "l": "98.0", - "x": 1.9357, - "y": 49.8592 - }, - { - "l": "98.0", - "x": 1.9548, - "y": 49.8929 - }, - { - "l": "98.0", - "x": 1.974, - "y": 49.9267 - }, - { - "l": "98.0", - "x": 1.9932, - "y": 49.9605 - }, - { - "l": "98.0", - "x": 2.0, - "y": 49.9726 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 0.0383, - "y": 38.2812 - }, - { - "l": "99.6", - "x": 0.0575, - "y": 38.9312 - }, - { - "l": "99.6", - "x": 0.0767, - "y": 39.4947 - }, - { - "l": "99.6", - "x": 0.0958, - "y": 39.9935 - }, - { - "l": "99.6", - "x": 0.115, - "y": 40.4426 - }, - { - "l": "99.6", - "x": 0.1342, - "y": 40.8538 - }, - { - "l": "99.6", - "x": 0.1533, - "y": 41.2334 - }, - { - "l": "99.6", - "x": 0.1725, - "y": 41.5895 - }, - { - "l": "99.6", - "x": 0.1916, - "y": 41.9236 - }, - { - "l": "99.6", - "x": 0.2108, - "y": 42.2413 - }, - { - "l": "99.6", - "x": 0.23, - "y": 42.5429 - }, - { - "l": "99.6", - "x": 0.2491, - "y": 42.8302 - }, - { - "l": "99.6", - "x": 0.2683, - "y": 43.1094 - }, - { - "l": "99.6", - "x": 0.2875, - "y": 43.374 - }, - { - "l": "99.6", - "x": 0.3066, - "y": 43.6257 - }, - { - "l": "99.6", - "x": 0.3258, - "y": 43.8656 - }, - { - "l": "99.6", - "x": 0.345, - "y": 44.0972 - }, - { - "l": "99.6", - "x": 0.3641, - "y": 44.3206 - }, - { - "l": "99.6", - "x": 0.3833, - "y": 44.5351 - }, - { - "l": "99.6", - "x": 0.4025, - "y": 44.7411 - }, - { - "l": "99.6", - "x": 0.4216, - "y": 44.939 - }, - { - "l": "99.6", - "x": 0.4408, - "y": 45.1295 - }, - { - "l": "99.6", - "x": 0.46, - "y": 45.3127 - }, - { - "l": "99.6", - "x": 0.4791, - "y": 45.4889 - }, - { - "l": "99.6", - "x": 0.4983, - "y": 45.6585 - }, - { - "l": "99.6", - "x": 0.5175, - "y": 45.8223 - }, - { - "l": "99.6", - "x": 0.5366, - "y": 45.9801 - }, - { - "l": "99.6", - "x": 0.5558, - "y": 46.1321 - }, - { - "l": "99.6", - "x": 0.5749, - "y": 46.2786 - }, - { - "l": "99.6", - "x": 0.5941, - "y": 46.4197 - }, - { - "l": "99.6", - "x": 0.6133, - "y": 46.5556 - }, - { - "l": "99.6", - "x": 0.6324, - "y": 46.6867 - }, - { - "l": "99.6", - "x": 0.6516, - "y": 46.8131 - }, - { - "l": "99.6", - "x": 0.6708, - "y": 46.9352 - }, - { - "l": "99.6", - "x": 0.6899, - "y": 47.0533 - }, - { - "l": "99.6", - "x": 0.7091, - "y": 47.1674 - }, - { - "l": "99.6", - "x": 0.7283, - "y": 47.2777 - }, - { - "l": "99.6", - "x": 0.7474, - "y": 47.3843 - }, - { - "l": "99.6", - "x": 0.7666, - "y": 47.4876 - }, - { - "l": "99.6", - "x": 0.7858, - "y": 47.5876 - }, - { - "l": "99.6", - "x": 0.8049, - "y": 47.6844 - }, - { - "l": "99.6", - "x": 0.8241, - "y": 47.7782 - }, - { - "l": "99.6", - "x": 0.8433, - "y": 47.8691 - }, - { - "l": "99.6", - "x": 0.8624, - "y": 47.9572 - }, - { - "l": "99.6", - "x": 0.8816, - "y": 48.0427 - }, - { - "l": "99.6", - "x": 0.9008, - "y": 48.1257 - }, - { - "l": "99.6", - "x": 0.9199, - "y": 48.2063 - }, - { - "l": "99.6", - "x": 0.9391, - "y": 48.2849 - }, - { - "l": "99.6", - "x": 0.9582, - "y": 48.3612 - }, - { - "l": "99.6", - "x": 0.9774, - "y": 48.4355 - }, - { - "l": "99.6", - "x": 0.9966, - "y": 48.5078 - }, - { - "l": "99.6", - "x": 1.0157, - "y": 48.5782 - }, - { - "l": "99.6", - "x": 1.0349, - "y": 48.6466 - }, - { - "l": "99.6", - "x": 1.0541, - "y": 48.7134 - }, - { - "l": "99.6", - "x": 1.0732, - "y": 48.7785 - }, - { - "l": "99.6", - "x": 1.0924, - "y": 48.842 - }, - { - "l": "99.6", - "x": 1.1116, - "y": 48.9042 - }, - { - "l": "99.6", - "x": 1.1307, - "y": 48.9649 - }, - { - "l": "99.6", - "x": 1.1499, - "y": 49.0243 - }, - { - "l": "99.6", - "x": 1.1691, - "y": 49.0824 - }, - { - "l": "99.6", - "x": 1.1882, - "y": 49.1393 - }, - { - "l": "99.6", - "x": 1.2074, - "y": 49.1951 - }, - { - "l": "99.6", - "x": 1.2266, - "y": 49.2496 - }, - { - "l": "99.6", - "x": 1.2457, - "y": 49.303 - }, - { - "l": "99.6", - "x": 1.2649, - "y": 49.3552 - }, - { - "l": "99.6", - "x": 1.2841, - "y": 49.4062 - }, - { - "l": "99.6", - "x": 1.3032, - "y": 49.4562 - }, - { - "l": "99.6", - "x": 1.3224, - "y": 49.5053 - }, - { - "l": "99.6", - "x": 1.3415, - "y": 49.5536 - }, - { - "l": "99.6", - "x": 1.3607, - "y": 49.6013 - }, - { - "l": "99.6", - "x": 1.3799, - "y": 49.6481 - }, - { - "l": "99.6", - "x": 1.399, - "y": 49.6942 - }, - { - "l": "99.6", - "x": 1.4182, - "y": 49.7396 - }, - { - "l": "99.6", - "x": 1.4374, - "y": 49.7842 - }, - { - "l": "99.6", - "x": 1.4565, - "y": 49.8282 - }, - { - "l": "99.6", - "x": 1.4757, - "y": 49.8716 - }, - { - "l": "99.6", - "x": 1.4949, - "y": 49.9144 - }, - { - "l": "99.6", - "x": 1.514, - "y": 49.9568 - }, - { - "l": "99.6", - "x": 1.5332, - "y": 49.9987 - }, - { - "l": "99.6", - "x": 1.5524, - "y": 50.0401 - }, - { - "l": "99.6", - "x": 1.5715, - "y": 50.0811 - }, - { - "l": "99.6", - "x": 1.5907, - "y": 50.1216 - }, - { - "l": "99.6", - "x": 1.6099, - "y": 50.1617 - }, - { - "l": "99.6", - "x": 1.629, - "y": 50.2013 - }, - { - "l": "99.6", - "x": 1.6482, - "y": 50.2405 - }, - { - "l": "99.6", - "x": 1.6674, - "y": 50.2793 - }, - { - "l": "99.6", - "x": 1.6865, - "y": 50.3178 - }, - { - "l": "99.6", - "x": 1.7057, - "y": 50.3558 - }, - { - "l": "99.6", - "x": 1.7248, - "y": 50.3936 - }, - { - "l": "99.6", - "x": 1.744, - "y": 50.431 - }, - { - "l": "99.6", - "x": 1.7632, - "y": 50.4681 - }, - { - "l": "99.6", - "x": 1.7823, - "y": 50.5049 - }, - { - "l": "99.6", - "x": 1.8015, - "y": 50.5414 - }, - { - "l": "99.6", - "x": 1.8207, - "y": 50.5776 - }, - { - "l": "99.6", - "x": 1.8398, - "y": 50.6135 - }, - { - "l": "99.6", - "x": 1.859, - "y": 50.6491 - }, - { - "l": "99.6", - "x": 1.8782, - "y": 50.6844 - }, - { - "l": "99.6", - "x": 1.8973, - "y": 50.7195 - }, - { - "l": "99.6", - "x": 1.9165, - "y": 50.7543 - }, - { - "l": "99.6", - "x": 1.9357, - "y": 50.7883 - }, - { - "l": "99.6", - "x": 1.9548, - "y": 50.8224 - }, - { - "l": "99.6", - "x": 1.974, - "y": 50.8564 - }, - { - "l": "99.6", - "x": 1.9932, - "y": 50.8905 - }, - { - "l": "99.6", - "x": 2.0, - "y": 50.9027 - } - ] - } - ], - "bmi": null - } - } - }, - { - "uk_who_child": { - "male": null, - "female": { - "height": null, - "weight": null, - "ofc": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 2.0, - "y": 43.4617 - }, - { - "l": "0.4", - "x": 2.0192, - "y": 43.4922 - }, - { - "l": "0.4", - "x": 2.1025, - "y": 43.6239 - }, - { - "l": "0.4", - "x": 2.1858, - "y": 43.7506 - }, - { - "l": "0.4", - "x": 2.2692, - "y": 43.8726 - }, - { - "l": "0.4", - "x": 2.3525, - "y": 43.9897 - }, - { - "l": "0.4", - "x": 2.4358, - "y": 44.1018 - }, - { - "l": "0.4", - "x": 2.5192, - "y": 44.2092 - }, - { - "l": "0.4", - "x": 2.6025, - "y": 44.3116 - }, - { - "l": "0.4", - "x": 2.6858, - "y": 44.409 - }, - { - "l": "0.4", - "x": 2.7692, - "y": 44.5029 - }, - { - "l": "0.4", - "x": 2.8525, - "y": 44.5924 - }, - { - "l": "0.4", - "x": 2.9358, - "y": 44.6792 - }, - { - "l": "0.4", - "x": 3.0192, - "y": 44.7616 - }, - { - "l": "0.4", - "x": 3.1025, - "y": 44.8411 - }, - { - "l": "0.4", - "x": 3.1858, - "y": 44.9178 - }, - { - "l": "0.4", - "x": 3.2692, - "y": 44.9919 - }, - { - "l": "0.4", - "x": 3.3525, - "y": 45.0634 - }, - { - "l": "0.4", - "x": 3.4358, - "y": 45.1326 - }, - { - "l": "0.4", - "x": 3.5192, - "y": 45.1995 - }, - { - "l": "0.4", - "x": 3.6025, - "y": 45.2643 - }, - { - "l": "0.4", - "x": 3.6858, - "y": 45.3268 - }, - { - "l": "0.4", - "x": 3.7692, - "y": 45.3868 - }, - { - "l": "0.4", - "x": 3.8525, - "y": 45.4462 - }, - { - "l": "0.4", - "x": 3.9358, - "y": 45.5035 - }, - { - "l": "0.4", - "x": 4.0, - "y": 45.546 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 2.0, - "y": 44.3918 - }, - { - "l": "2.0", - "x": 2.0192, - "y": 44.4226 - }, - { - "l": "2.0", - "x": 2.1025, - "y": 44.5558 - }, - { - "l": "2.0", - "x": 2.1858, - "y": 44.6838 - }, - { - "l": "2.0", - "x": 2.2692, - "y": 44.807 - }, - { - "l": "2.0", - "x": 2.3525, - "y": 44.9253 - }, - { - "l": "2.0", - "x": 2.4358, - "y": 45.0384 - }, - { - "l": "2.0", - "x": 2.5192, - "y": 45.1467 - }, - { - "l": "2.0", - "x": 2.6025, - "y": 45.25 - }, - { - "l": "2.0", - "x": 2.6858, - "y": 45.3482 - }, - { - "l": "2.0", - "x": 2.7692, - "y": 45.4429 - }, - { - "l": "2.0", - "x": 2.8525, - "y": 45.5331 - }, - { - "l": "2.0", - "x": 2.9358, - "y": 45.6204 - }, - { - "l": "2.0", - "x": 3.0192, - "y": 45.7035 - }, - { - "l": "2.0", - "x": 3.1025, - "y": 45.7836 - }, - { - "l": "2.0", - "x": 3.1858, - "y": 45.8609 - }, - { - "l": "2.0", - "x": 3.2692, - "y": 45.9354 - }, - { - "l": "2.0", - "x": 3.3525, - "y": 46.0074 - }, - { - "l": "2.0", - "x": 3.4358, - "y": 46.077 - }, - { - "l": "2.0", - "x": 3.5192, - "y": 46.1442 - }, - { - "l": "2.0", - "x": 3.6025, - "y": 46.2093 - }, - { - "l": "2.0", - "x": 3.6858, - "y": 46.2722 - }, - { - "l": "2.0", - "x": 3.7692, - "y": 46.3326 - }, - { - "l": "2.0", - "x": 3.8525, - "y": 46.3922 - }, - { - "l": "2.0", - "x": 3.9358, - "y": 46.4497 - }, - { - "l": "2.0", - "x": 4.0, - "y": 46.4925 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 2.0, - "y": 45.322 - }, - { - "l": "9.0", - "x": 2.0192, - "y": 45.3531 - }, - { - "l": "9.0", - "x": 2.1025, - "y": 45.4877 - }, - { - "l": "9.0", - "x": 2.1858, - "y": 45.617 - }, - { - "l": "9.0", - "x": 2.2692, - "y": 45.7415 - }, - { - "l": "9.0", - "x": 2.3525, - "y": 45.8608 - }, - { - "l": "9.0", - "x": 2.4358, - "y": 45.975 - }, - { - "l": "9.0", - "x": 2.5192, - "y": 46.0841 - }, - { - "l": "9.0", - "x": 2.6025, - "y": 46.1883 - }, - { - "l": "9.0", - "x": 2.6858, - "y": 46.2875 - }, - { - "l": "9.0", - "x": 2.7692, - "y": 46.3828 - }, - { - "l": "9.0", - "x": 2.8525, - "y": 46.4738 - }, - { - "l": "9.0", - "x": 2.9358, - "y": 46.5616 - }, - { - "l": "9.0", - "x": 3.0192, - "y": 46.6454 - }, - { - "l": "9.0", - "x": 3.1025, - "y": 46.7262 - }, - { - "l": "9.0", - "x": 3.1858, - "y": 46.804 - }, - { - "l": "9.0", - "x": 3.2692, - "y": 46.879 - }, - { - "l": "9.0", - "x": 3.3525, - "y": 46.9514 - }, - { - "l": "9.0", - "x": 3.4358, - "y": 47.0214 - }, - { - "l": "9.0", - "x": 3.5192, - "y": 47.0889 - }, - { - "l": "9.0", - "x": 3.6025, - "y": 47.1544 - }, - { - "l": "9.0", - "x": 3.6858, - "y": 47.2175 - }, - { - "l": "9.0", - "x": 3.7692, - "y": 47.2784 - }, - { - "l": "9.0", - "x": 3.8525, - "y": 47.3381 - }, - { - "l": "9.0", - "x": 3.9358, - "y": 47.3958 - }, - { - "l": "9.0", - "x": 4.0, - "y": 47.4391 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 2.0, - "y": 46.2521 - }, - { - "l": "25.0", - "x": 2.0192, - "y": 46.2835 - }, - { - "l": "25.0", - "x": 2.1025, - "y": 46.4196 - }, - { - "l": "25.0", - "x": 2.1858, - "y": 46.5503 - }, - { - "l": "25.0", - "x": 2.2692, - "y": 46.676 - }, - { - "l": "25.0", - "x": 2.3525, - "y": 46.7964 - }, - { - "l": "25.0", - "x": 2.4358, - "y": 46.9116 - }, - { - "l": "25.0", - "x": 2.5192, - "y": 47.0216 - }, - { - "l": "25.0", - "x": 2.6025, - "y": 47.1266 - }, - { - "l": "25.0", - "x": 2.6858, - "y": 47.2268 - }, - { - "l": "25.0", - "x": 2.7692, - "y": 47.3227 - }, - { - "l": "25.0", - "x": 2.8525, - "y": 47.4145 - }, - { - "l": "25.0", - "x": 2.9358, - "y": 47.5028 - }, - { - "l": "25.0", - "x": 3.0192, - "y": 47.5873 - }, - { - "l": "25.0", - "x": 3.1025, - "y": 47.6687 - }, - { - "l": "25.0", - "x": 3.1858, - "y": 47.747 - }, - { - "l": "25.0", - "x": 3.2692, - "y": 47.8226 - }, - { - "l": "25.0", - "x": 3.3525, - "y": 47.8954 - }, - { - "l": "25.0", - "x": 3.4358, - "y": 47.9657 - }, - { - "l": "25.0", - "x": 3.5192, - "y": 48.0337 - }, - { - "l": "25.0", - "x": 3.6025, - "y": 48.0994 - }, - { - "l": "25.0", - "x": 3.6858, - "y": 48.1629 - }, - { - "l": "25.0", - "x": 3.7692, - "y": 48.2242 - }, - { - "l": "25.0", - "x": 3.8525, - "y": 48.2841 - }, - { - "l": "25.0", - "x": 3.9358, - "y": 48.342 - }, - { - "l": "25.0", - "x": 4.0, - "y": 48.3856 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 2.0, - "y": 47.1822 - }, - { - "l": "50.0", - "x": 2.0192, - "y": 47.214 - }, - { - "l": "50.0", - "x": 2.1025, - "y": 47.3515 - }, - { - "l": "50.0", - "x": 2.1858, - "y": 47.4835 - }, - { - "l": "50.0", - "x": 2.2692, - "y": 47.6104 - }, - { - "l": "50.0", - "x": 2.3525, - "y": 47.732 - }, - { - "l": "50.0", - "x": 2.4358, - "y": 47.8481 - }, - { - "l": "50.0", - "x": 2.5192, - "y": 47.959 - }, - { - "l": "50.0", - "x": 2.6025, - "y": 48.0649 - }, - { - "l": "50.0", - "x": 2.6858, - "y": 48.166 - }, - { - "l": "50.0", - "x": 2.7692, - "y": 48.2627 - }, - { - "l": "50.0", - "x": 2.8525, - "y": 48.3552 - }, - { - "l": "50.0", - "x": 2.9358, - "y": 48.444 - }, - { - "l": "50.0", - "x": 3.0192, - "y": 48.5292 - }, - { - "l": "50.0", - "x": 3.1025, - "y": 48.6112 - }, - { - "l": "50.0", - "x": 3.1858, - "y": 48.6901 - }, - { - "l": "50.0", - "x": 3.2692, - "y": 48.7661 - }, - { - "l": "50.0", - "x": 3.3525, - "y": 48.8394 - }, - { - "l": "50.0", - "x": 3.4358, - "y": 48.9101 - }, - { - "l": "50.0", - "x": 3.5192, - "y": 48.9784 - }, - { - "l": "50.0", - "x": 3.6025, - "y": 49.0444 - }, - { - "l": "50.0", - "x": 3.6858, - "y": 49.1082 - }, - { - "l": "50.0", - "x": 3.7692, - "y": 49.1701 - }, - { - "l": "50.0", - "x": 3.8525, - "y": 49.2301 - }, - { - "l": "50.0", - "x": 3.9358, - "y": 49.2882 - }, - { - "l": "50.0", - "x": 4.0, - "y": 49.3321 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 2.0, - "y": 48.1123 - }, - { - "l": "75.0", - "x": 2.0192, - "y": 48.1444 - }, - { - "l": "75.0", - "x": 2.1025, - "y": 48.2834 - }, - { - "l": "75.0", - "x": 2.1858, - "y": 48.4168 - }, - { - "l": "75.0", - "x": 2.2692, - "y": 48.5449 - }, - { - "l": "75.0", - "x": 2.3525, - "y": 48.6675 - }, - { - "l": "75.0", - "x": 2.4358, - "y": 48.7847 - }, - { - "l": "75.0", - "x": 2.5192, - "y": 48.8965 - }, - { - "l": "75.0", - "x": 2.6025, - "y": 49.0032 - }, - { - "l": "75.0", - "x": 2.6858, - "y": 49.1053 - }, - { - "l": "75.0", - "x": 2.7692, - "y": 49.2026 - }, - { - "l": "75.0", - "x": 2.8525, - "y": 49.2959 - }, - { - "l": "75.0", - "x": 2.9358, - "y": 49.3852 - }, - { - "l": "75.0", - "x": 3.0192, - "y": 49.4711 - }, - { - "l": "75.0", - "x": 3.1025, - "y": 49.5537 - }, - { - "l": "75.0", - "x": 3.1858, - "y": 49.6332 - }, - { - "l": "75.0", - "x": 3.2692, - "y": 49.7097 - }, - { - "l": "75.0", - "x": 3.3525, - "y": 49.7834 - }, - { - "l": "75.0", - "x": 3.4358, - "y": 49.8545 - }, - { - "l": "75.0", - "x": 3.5192, - "y": 49.9231 - }, - { - "l": "75.0", - "x": 3.6025, - "y": 49.9894 - }, - { - "l": "75.0", - "x": 3.6858, - "y": 50.0535 - }, - { - "l": "75.0", - "x": 3.7692, - "y": 50.1159 - }, - { - "l": "75.0", - "x": 3.8525, - "y": 50.176 - }, - { - "l": "75.0", - "x": 3.9358, - "y": 50.2344 - }, - { - "l": "75.0", - "x": 4.0, - "y": 50.2786 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 2.0, - "y": 49.0424 - }, - { - "l": "91.0", - "x": 2.0192, - "y": 49.0749 - }, - { - "l": "91.0", - "x": 2.1025, - "y": 49.2153 - }, - { - "l": "91.0", - "x": 2.1858, - "y": 49.35 - }, - { - "l": "91.0", - "x": 2.2692, - "y": 49.4793 - }, - { - "l": "91.0", - "x": 2.3525, - "y": 49.6031 - }, - { - "l": "91.0", - "x": 2.4358, - "y": 49.7213 - }, - { - "l": "91.0", - "x": 2.5192, - "y": 49.834 - }, - { - "l": "91.0", - "x": 2.6025, - "y": 49.9416 - }, - { - "l": "91.0", - "x": 2.6858, - "y": 50.0446 - }, - { - "l": "91.0", - "x": 2.7692, - "y": 50.1425 - }, - { - "l": "91.0", - "x": 2.8525, - "y": 50.2366 - }, - { - "l": "91.0", - "x": 2.9358, - "y": 50.3264 - }, - { - "l": "91.0", - "x": 3.0192, - "y": 50.413 - }, - { - "l": "91.0", - "x": 3.1025, - "y": 50.4962 - }, - { - "l": "91.0", - "x": 3.1858, - "y": 50.5762 - }, - { - "l": "91.0", - "x": 3.2692, - "y": 50.6533 - }, - { - "l": "91.0", - "x": 3.3525, - "y": 50.7274 - }, - { - "l": "91.0", - "x": 3.4358, - "y": 50.7989 - }, - { - "l": "91.0", - "x": 3.5192, - "y": 50.8679 - }, - { - "l": "91.0", - "x": 3.6025, - "y": 50.9344 - }, - { - "l": "91.0", - "x": 3.6858, - "y": 50.9989 - }, - { - "l": "91.0", - "x": 3.7692, - "y": 51.0617 - }, - { - "l": "91.0", - "x": 3.8525, - "y": 51.122 - }, - { - "l": "91.0", - "x": 3.9358, - "y": 51.1806 - }, - { - "l": "91.0", - "x": 4.0, - "y": 51.2251 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 2.0, - "y": 49.9726 - }, - { - "l": "98.0", - "x": 2.0192, - "y": 50.0053 - }, - { - "l": "98.0", - "x": 2.1025, - "y": 50.1472 - }, - { - "l": "98.0", - "x": 2.1858, - "y": 50.2832 - }, - { - "l": "98.0", - "x": 2.2692, - "y": 50.4138 - }, - { - "l": "98.0", - "x": 2.3525, - "y": 50.5387 - }, - { - "l": "98.0", - "x": 2.4358, - "y": 50.6579 - }, - { - "l": "98.0", - "x": 2.5192, - "y": 50.7714 - }, - { - "l": "98.0", - "x": 2.6025, - "y": 50.8799 - }, - { - "l": "98.0", - "x": 2.6858, - "y": 50.9838 - }, - { - "l": "98.0", - "x": 2.7692, - "y": 51.0824 - }, - { - "l": "98.0", - "x": 2.8525, - "y": 51.1773 - }, - { - "l": "98.0", - "x": 2.9358, - "y": 51.2676 - }, - { - "l": "98.0", - "x": 3.0192, - "y": 51.3549 - }, - { - "l": "98.0", - "x": 3.1025, - "y": 51.4387 - }, - { - "l": "98.0", - "x": 3.1858, - "y": 51.5193 - }, - { - "l": "98.0", - "x": 3.2692, - "y": 51.5968 - }, - { - "l": "98.0", - "x": 3.3525, - "y": 51.6714 - }, - { - "l": "98.0", - "x": 3.4358, - "y": 51.7433 - }, - { - "l": "98.0", - "x": 3.5192, - "y": 51.8126 - }, - { - "l": "98.0", - "x": 3.6025, - "y": 51.8794 - }, - { - "l": "98.0", - "x": 3.6858, - "y": 51.9442 - }, - { - "l": "98.0", - "x": 3.7692, - "y": 52.0075 - }, - { - "l": "98.0", - "x": 3.8525, - "y": 52.0679 - }, - { - "l": "98.0", - "x": 3.9358, - "y": 52.1268 - }, - { - "l": "98.0", - "x": 4.0, - "y": 52.1717 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 2.0, - "y": 50.9027 - }, - { - "l": "99.6", - "x": 2.0192, - "y": 50.9358 - }, - { - "l": "99.6", - "x": 2.1025, - "y": 51.0791 - }, - { - "l": "99.6", - "x": 2.1858, - "y": 51.2165 - }, - { - "l": "99.6", - "x": 2.2692, - "y": 51.3483 - }, - { - "l": "99.6", - "x": 2.3525, - "y": 51.4743 - }, - { - "l": "99.6", - "x": 2.4358, - "y": 51.5944 - }, - { - "l": "99.6", - "x": 2.5192, - "y": 51.7089 - }, - { - "l": "99.6", - "x": 2.6025, - "y": 51.8182 - }, - { - "l": "99.6", - "x": 2.6858, - "y": 51.9231 - }, - { - "l": "99.6", - "x": 2.7692, - "y": 52.0224 - }, - { - "l": "99.6", - "x": 2.8525, - "y": 52.118 - }, - { - "l": "99.6", - "x": 2.9358, - "y": 52.2087 - }, - { - "l": "99.6", - "x": 3.0192, - "y": 52.2968 - }, - { - "l": "99.6", - "x": 3.1025, - "y": 52.3812 - }, - { - "l": "99.6", - "x": 3.1858, - "y": 52.4624 - }, - { - "l": "99.6", - "x": 3.2692, - "y": 52.5404 - }, - { - "l": "99.6", - "x": 3.3525, - "y": 52.6154 - }, - { - "l": "99.6", - "x": 3.4358, - "y": 52.6877 - }, - { - "l": "99.6", - "x": 3.5192, - "y": 52.7573 - }, - { - "l": "99.6", - "x": 3.6025, - "y": 52.8244 - }, - { - "l": "99.6", - "x": 3.6858, - "y": 52.8896 - }, - { - "l": "99.6", - "x": 3.7692, - "y": 52.9533 - }, - { - "l": "99.6", - "x": 3.8525, - "y": 53.0139 - }, - { - "l": "99.6", - "x": 3.9358, - "y": 53.0729 - }, - { - "l": "99.6", - "x": 4.0, - "y": 53.1182 - } - ] - } - ], - "bmi": null - } - } - }, - { - "uk90_child": { - "male": null, - "female": { - "height": null, - "weight": null, - "ofc": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 4.0, - "y": 47.9124 - }, - { - "l": "0.4", - "x": 4.0833, - "y": 47.9652 - }, - { - "l": "0.4", - "x": 4.1667, - "y": 48.0181 - }, - { - "l": "0.4", - "x": 4.25, - "y": 48.0704 - }, - { - "l": "0.4", - "x": 4.3333, - "y": 48.1224 - }, - { - "l": "0.4", - "x": 4.4167, - "y": 48.1724 - }, - { - "l": "0.4", - "x": 4.5, - "y": 48.2216 - }, - { - "l": "0.4", - "x": 4.5833, - "y": 48.2693 - }, - { - "l": "0.4", - "x": 4.6667, - "y": 48.3176 - }, - { - "l": "0.4", - "x": 4.75, - "y": 48.3625 - }, - { - "l": "0.4", - "x": 4.8333, - "y": 48.4075 - }, - { - "l": "0.4", - "x": 4.9167, - "y": 48.4548 - }, - { - "l": "0.4", - "x": 5.0, - "y": 48.4988 - }, - { - "l": "0.4", - "x": 5.0833, - "y": 48.5429 - }, - { - "l": "0.4", - "x": 5.1667, - "y": 48.5846 - }, - { - "l": "0.4", - "x": 5.25, - "y": 48.6268 - }, - { - "l": "0.4", - "x": 5.3333, - "y": 48.6676 - }, - { - "l": "0.4", - "x": 5.4167, - "y": 48.7088 - }, - { - "l": "0.4", - "x": 5.5, - "y": 48.7487 - }, - { - "l": "0.4", - "x": 5.5833, - "y": 48.7886 - }, - { - "l": "0.4", - "x": 5.6667, - "y": 48.8266 - }, - { - "l": "0.4", - "x": 5.75, - "y": 48.8646 - }, - { - "l": "0.4", - "x": 5.8333, - "y": 48.9026 - }, - { - "l": "0.4", - "x": 5.9167, - "y": 48.9406 - }, - { - "l": "0.4", - "x": 6.0, - "y": 48.9776 - }, - { - "l": "0.4", - "x": 6.0833, - "y": 49.0133 - }, - { - "l": "0.4", - "x": 6.1667, - "y": 49.0495 - }, - { - "l": "0.4", - "x": 6.25, - "y": 49.0842 - }, - { - "l": "0.4", - "x": 6.3333, - "y": 49.1189 - }, - { - "l": "0.4", - "x": 6.4167, - "y": 49.1537 - }, - { - "l": "0.4", - "x": 6.5, - "y": 49.1889 - }, - { - "l": "0.4", - "x": 6.5833, - "y": 49.2227 - }, - { - "l": "0.4", - "x": 6.6667, - "y": 49.2555 - }, - { - "l": "0.4", - "x": 6.75, - "y": 49.2879 - }, - { - "l": "0.4", - "x": 6.8333, - "y": 49.3208 - }, - { - "l": "0.4", - "x": 6.9167, - "y": 49.3536 - }, - { - "l": "0.4", - "x": 7.0, - "y": 49.3874 - }, - { - "l": "0.4", - "x": 7.0833, - "y": 49.418 - }, - { - "l": "0.4", - "x": 7.1667, - "y": 49.4508 - }, - { - "l": "0.4", - "x": 7.25, - "y": 49.4813 - }, - { - "l": "0.4", - "x": 7.3333, - "y": 49.5118 - }, - { - "l": "0.4", - "x": 7.4167, - "y": 49.5438 - }, - { - "l": "0.4", - "x": 7.5, - "y": 49.5743 - }, - { - "l": "0.4", - "x": 7.5833, - "y": 49.6038 - }, - { - "l": "0.4", - "x": 7.6667, - "y": 49.6343 - }, - { - "l": "0.4", - "x": 7.75, - "y": 49.6639 - }, - { - "l": "0.4", - "x": 7.8333, - "y": 49.6935 - }, - { - "l": "0.4", - "x": 7.9167, - "y": 49.723 - }, - { - "l": "0.4", - "x": 8.0, - "y": 49.7526 - }, - { - "l": "0.4", - "x": 8.0833, - "y": 49.7822 - }, - { - "l": "0.4", - "x": 8.1667, - "y": 49.8108 - }, - { - "l": "0.4", - "x": 8.25, - "y": 49.8403 - }, - { - "l": "0.4", - "x": 8.3333, - "y": 49.8675 - }, - { - "l": "0.4", - "x": 8.4167, - "y": 49.8952 - }, - { - "l": "0.4", - "x": 8.5, - "y": 49.9238 - }, - { - "l": "0.4", - "x": 8.5833, - "y": 49.9501 - }, - { - "l": "0.4", - "x": 8.6667, - "y": 49.9787 - }, - { - "l": "0.4", - "x": 8.75, - "y": 50.0049 - }, - { - "l": "0.4", - "x": 8.8333, - "y": 50.0326 - }, - { - "l": "0.4", - "x": 8.9167, - "y": 50.0588 - }, - { - "l": "0.4", - "x": 9.0, - "y": 50.0841 - }, - { - "l": "0.4", - "x": 9.0833, - "y": 50.1108 - }, - { - "l": "0.4", - "x": 9.1667, - "y": 50.1371 - }, - { - "l": "0.4", - "x": 9.25, - "y": 50.1614 - }, - { - "l": "0.4", - "x": 9.3333, - "y": 50.1867 - }, - { - "l": "0.4", - "x": 9.4167, - "y": 50.2134 - }, - { - "l": "0.4", - "x": 9.5, - "y": 50.2378 - }, - { - "l": "0.4", - "x": 9.5833, - "y": 50.2621 - }, - { - "l": "0.4", - "x": 9.6667, - "y": 50.2864 - }, - { - "l": "0.4", - "x": 9.75, - "y": 50.3108 - }, - { - "l": "0.4", - "x": 9.8333, - "y": 50.3342 - }, - { - "l": "0.4", - "x": 9.9167, - "y": 50.3585 - }, - { - "l": "0.4", - "x": 10.0, - "y": 50.3819 - }, - { - "l": "0.4", - "x": 10.0833, - "y": 50.4053 - }, - { - "l": "0.4", - "x": 10.1667, - "y": 50.4286 - }, - { - "l": "0.4", - "x": 10.25, - "y": 50.4511 - }, - { - "l": "0.4", - "x": 10.3333, - "y": 50.4735 - }, - { - "l": "0.4", - "x": 10.4167, - "y": 50.496 - }, - { - "l": "0.4", - "x": 10.5, - "y": 50.5184 - }, - { - "l": "0.4", - "x": 10.5833, - "y": 50.5408 - }, - { - "l": "0.4", - "x": 10.6667, - "y": 50.5623 - }, - { - "l": "0.4", - "x": 10.75, - "y": 50.5847 - }, - { - "l": "0.4", - "x": 10.8333, - "y": 50.6053 - }, - { - "l": "0.4", - "x": 10.9167, - "y": 50.6268 - }, - { - "l": "0.4", - "x": 11.0, - "y": 50.6492 - }, - { - "l": "0.4", - "x": 11.0833, - "y": 50.6683 - }, - { - "l": "0.4", - "x": 11.1667, - "y": 50.6888 - }, - { - "l": "0.4", - "x": 11.25, - "y": 50.7093 - }, - { - "l": "0.4", - "x": 11.3333, - "y": 50.7299 - }, - { - "l": "0.4", - "x": 11.4167, - "y": 50.7504 - }, - { - "l": "0.4", - "x": 11.5, - "y": 50.7709 - }, - { - "l": "0.4", - "x": 11.5833, - "y": 50.7914 - }, - { - "l": "0.4", - "x": 11.6667, - "y": 50.8096 - }, - { - "l": "0.4", - "x": 11.75, - "y": 50.8292 - }, - { - "l": "0.4", - "x": 11.8333, - "y": 50.8487 - }, - { - "l": "0.4", - "x": 11.9167, - "y": 50.8683 - }, - { - "l": "0.4", - "x": 12.0, - "y": 50.8879 - }, - { - "l": "0.4", - "x": 12.0833, - "y": 50.9065 - }, - { - "l": "0.4", - "x": 12.1667, - "y": 50.9251 - }, - { - "l": "0.4", - "x": 12.25, - "y": 50.9438 - }, - { - "l": "0.4", - "x": 12.3333, - "y": 50.9624 - }, - { - "l": "0.4", - "x": 12.4167, - "y": 50.9796 - }, - { - "l": "0.4", - "x": 12.5, - "y": 50.9972 - }, - { - "l": "0.4", - "x": 12.5833, - "y": 51.0159 - }, - { - "l": "0.4", - "x": 12.6667, - "y": 51.0335 - }, - { - "l": "0.4", - "x": 12.75, - "y": 51.0512 - }, - { - "l": "0.4", - "x": 12.8333, - "y": 51.0689 - }, - { - "l": "0.4", - "x": 12.9167, - "y": 51.0866 - }, - { - "l": "0.4", - "x": 13.0, - "y": 51.1033 - }, - { - "l": "0.4", - "x": 13.0833, - "y": 51.121 - }, - { - "l": "0.4", - "x": 13.1667, - "y": 51.1377 - }, - { - "l": "0.4", - "x": 13.25, - "y": 51.1544 - }, - { - "l": "0.4", - "x": 13.3333, - "y": 51.1721 - }, - { - "l": "0.4", - "x": 13.4167, - "y": 51.1888 - }, - { - "l": "0.4", - "x": 13.5, - "y": 51.2046 - }, - { - "l": "0.4", - "x": 13.5833, - "y": 51.2213 - }, - { - "l": "0.4", - "x": 13.6667, - "y": 51.238 - }, - { - "l": "0.4", - "x": 13.75, - "y": 51.2538 - }, - { - "l": "0.4", - "x": 13.8333, - "y": 51.2696 - }, - { - "l": "0.4", - "x": 13.9167, - "y": 51.2854 - }, - { - "l": "0.4", - "x": 14.0, - "y": 51.3011 - }, - { - "l": "0.4", - "x": 14.0833, - "y": 51.3193 - }, - { - "l": "0.4", - "x": 14.1667, - "y": 51.3341 - }, - { - "l": "0.4", - "x": 14.25, - "y": 51.3499 - }, - { - "l": "0.4", - "x": 14.3333, - "y": 51.3657 - }, - { - "l": "0.4", - "x": 14.4167, - "y": 51.3805 - }, - { - "l": "0.4", - "x": 14.5, - "y": 51.3963 - }, - { - "l": "0.4", - "x": 14.5833, - "y": 51.4111 - }, - { - "l": "0.4", - "x": 14.6667, - "y": 51.4274 - }, - { - "l": "0.4", - "x": 14.75, - "y": 51.4422 - }, - { - "l": "0.4", - "x": 14.8333, - "y": 51.457 - }, - { - "l": "0.4", - "x": 14.9167, - "y": 51.4718 - }, - { - "l": "0.4", - "x": 15.0, - "y": 51.4881 - }, - { - "l": "0.4", - "x": 15.0833, - "y": 51.502 - }, - { - "l": "0.4", - "x": 15.1667, - "y": 51.5159 - }, - { - "l": "0.4", - "x": 15.25, - "y": 51.5307 - }, - { - "l": "0.4", - "x": 15.3333, - "y": 51.5445 - }, - { - "l": "0.4", - "x": 15.4167, - "y": 51.5599 - }, - { - "l": "0.4", - "x": 15.5, - "y": 51.5738 - }, - { - "l": "0.4", - "x": 15.5833, - "y": 51.5886 - }, - { - "l": "0.4", - "x": 15.6667, - "y": 51.603 - }, - { - "l": "0.4", - "x": 15.75, - "y": 51.6168 - }, - { - "l": "0.4", - "x": 15.8333, - "y": 51.6298 - }, - { - "l": "0.4", - "x": 15.9167, - "y": 51.6451 - }, - { - "l": "0.4", - "x": 16.0, - "y": 51.658 - }, - { - "l": "0.4", - "x": 16.0833, - "y": 51.6719 - }, - { - "l": "0.4", - "x": 16.1667, - "y": 51.6853 - }, - { - "l": "0.4", - "x": 16.25, - "y": 51.6992 - }, - { - "l": "0.4", - "x": 16.3333, - "y": 51.7136 - }, - { - "l": "0.4", - "x": 16.4167, - "y": 51.7256 - }, - { - "l": "0.4", - "x": 16.5, - "y": 51.7394 - }, - { - "l": "0.4", - "x": 16.5833, - "y": 51.7538 - }, - { - "l": "0.4", - "x": 16.6667, - "y": 51.7658 - }, - { - "l": "0.4", - "x": 16.75, - "y": 51.7802 - }, - { - "l": "0.4", - "x": 16.8333, - "y": 51.7931 - }, - { - "l": "0.4", - "x": 16.9167, - "y": 51.8041 - }, - { - "l": "0.4", - "x": 17.0, - "y": 51.8172 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 4.0, - "y": 48.7103 - }, - { - "l": "2.0", - "x": 4.0833, - "y": 48.7629 - }, - { - "l": "2.0", - "x": 4.1667, - "y": 48.8156 - }, - { - "l": "2.0", - "x": 4.25, - "y": 48.8673 - }, - { - "l": "2.0", - "x": 4.3333, - "y": 48.919 - }, - { - "l": "2.0", - "x": 4.4167, - "y": 48.9688 - }, - { - "l": "2.0", - "x": 4.5, - "y": 49.0177 - }, - { - "l": "2.0", - "x": 4.5833, - "y": 49.0655 - }, - { - "l": "2.0", - "x": 4.6667, - "y": 49.1134 - }, - { - "l": "2.0", - "x": 4.75, - "y": 49.1584 - }, - { - "l": "2.0", - "x": 4.8333, - "y": 49.2034 - }, - { - "l": "2.0", - "x": 4.9167, - "y": 49.2503 - }, - { - "l": "2.0", - "x": 5.0, - "y": 49.2944 - }, - { - "l": "2.0", - "x": 5.0833, - "y": 49.3384 - }, - { - "l": "2.0", - "x": 5.1667, - "y": 49.3805 - }, - { - "l": "2.0", - "x": 5.25, - "y": 49.4226 - }, - { - "l": "2.0", - "x": 5.3333, - "y": 49.4637 - }, - { - "l": "2.0", - "x": 5.4167, - "y": 49.5049 - }, - { - "l": "2.0", - "x": 5.5, - "y": 49.545 - }, - { - "l": "2.0", - "x": 5.5833, - "y": 49.5852 - }, - { - "l": "2.0", - "x": 5.6667, - "y": 49.6234 - }, - { - "l": "2.0", - "x": 5.75, - "y": 49.6617 - }, - { - "l": "2.0", - "x": 5.8333, - "y": 49.6999 - }, - { - "l": "2.0", - "x": 5.9167, - "y": 49.7382 - }, - { - "l": "2.0", - "x": 6.0, - "y": 49.7755 - }, - { - "l": "2.0", - "x": 6.0833, - "y": 49.8117 - }, - { - "l": "2.0", - "x": 6.1667, - "y": 49.8481 - }, - { - "l": "2.0", - "x": 6.25, - "y": 49.8834 - }, - { - "l": "2.0", - "x": 6.3333, - "y": 49.9187 - }, - { - "l": "2.0", - "x": 6.4167, - "y": 49.954 - }, - { - "l": "2.0", - "x": 6.5, - "y": 49.9894 - }, - { - "l": "2.0", - "x": 6.5833, - "y": 50.0237 - }, - { - "l": "2.0", - "x": 6.6667, - "y": 50.0571 - }, - { - "l": "2.0", - "x": 6.75, - "y": 50.0904 - }, - { - "l": "2.0", - "x": 6.8333, - "y": 50.1238 - }, - { - "l": "2.0", - "x": 6.9167, - "y": 50.1572 - }, - { - "l": "2.0", - "x": 7.0, - "y": 50.1916 - }, - { - "l": "2.0", - "x": 7.0833, - "y": 50.223 - }, - { - "l": "2.0", - "x": 7.1667, - "y": 50.2564 - }, - { - "l": "2.0", - "x": 7.25, - "y": 50.2877 - }, - { - "l": "2.0", - "x": 7.3333, - "y": 50.3191 - }, - { - "l": "2.0", - "x": 7.4167, - "y": 50.3516 - }, - { - "l": "2.0", - "x": 7.5, - "y": 50.383 - }, - { - "l": "2.0", - "x": 7.5833, - "y": 50.4134 - }, - { - "l": "2.0", - "x": 7.6667, - "y": 50.4448 - }, - { - "l": "2.0", - "x": 7.75, - "y": 50.4752 - }, - { - "l": "2.0", - "x": 7.8333, - "y": 50.5056 - }, - { - "l": "2.0", - "x": 7.9167, - "y": 50.536 - }, - { - "l": "2.0", - "x": 8.0, - "y": 50.5665 - }, - { - "l": "2.0", - "x": 8.0833, - "y": 50.5969 - }, - { - "l": "2.0", - "x": 8.1667, - "y": 50.6263 - }, - { - "l": "2.0", - "x": 8.25, - "y": 50.6568 - }, - { - "l": "2.0", - "x": 8.3333, - "y": 50.6851 - }, - { - "l": "2.0", - "x": 8.4167, - "y": 50.7137 - }, - { - "l": "2.0", - "x": 8.5, - "y": 50.7431 - }, - { - "l": "2.0", - "x": 8.5833, - "y": 50.7706 - }, - { - "l": "2.0", - "x": 8.6667, - "y": 50.8 - }, - { - "l": "2.0", - "x": 8.75, - "y": 50.8274 - }, - { - "l": "2.0", - "x": 8.8333, - "y": 50.8559 - }, - { - "l": "2.0", - "x": 8.9167, - "y": 50.8834 - }, - { - "l": "2.0", - "x": 9.0, - "y": 50.9098 - }, - { - "l": "2.0", - "x": 9.0833, - "y": 50.9374 - }, - { - "l": "2.0", - "x": 9.1667, - "y": 50.9648 - }, - { - "l": "2.0", - "x": 9.25, - "y": 50.9903 - }, - { - "l": "2.0", - "x": 9.3333, - "y": 51.0168 - }, - { - "l": "2.0", - "x": 9.4167, - "y": 51.0443 - }, - { - "l": "2.0", - "x": 9.5, - "y": 51.0698 - }, - { - "l": "2.0", - "x": 9.5833, - "y": 51.0953 - }, - { - "l": "2.0", - "x": 9.6667, - "y": 51.1208 - }, - { - "l": "2.0", - "x": 9.75, - "y": 51.1463 - }, - { - "l": "2.0", - "x": 9.8333, - "y": 51.1709 - }, - { - "l": "2.0", - "x": 9.9167, - "y": 51.1964 - }, - { - "l": "2.0", - "x": 10.0, - "y": 51.2209 - }, - { - "l": "2.0", - "x": 10.0833, - "y": 51.2454 - }, - { - "l": "2.0", - "x": 10.1667, - "y": 51.27 - }, - { - "l": "2.0", - "x": 10.25, - "y": 51.2936 - }, - { - "l": "2.0", - "x": 10.3333, - "y": 51.3171 - }, - { - "l": "2.0", - "x": 10.4167, - "y": 51.3407 - }, - { - "l": "2.0", - "x": 10.5, - "y": 51.3643 - }, - { - "l": "2.0", - "x": 10.5833, - "y": 51.3879 - }, - { - "l": "2.0", - "x": 10.6667, - "y": 51.4105 - }, - { - "l": "2.0", - "x": 10.75, - "y": 51.434 - }, - { - "l": "2.0", - "x": 10.8333, - "y": 51.4557 - }, - { - "l": "2.0", - "x": 10.9167, - "y": 51.4783 - }, - { - "l": "2.0", - "x": 11.0, - "y": 51.5019 - }, - { - "l": "2.0", - "x": 11.0833, - "y": 51.5225 - }, - { - "l": "2.0", - "x": 11.1667, - "y": 51.5441 - }, - { - "l": "2.0", - "x": 11.25, - "y": 51.5658 - }, - { - "l": "2.0", - "x": 11.3333, - "y": 51.5874 - }, - { - "l": "2.0", - "x": 11.4167, - "y": 51.609 - }, - { - "l": "2.0", - "x": 11.5, - "y": 51.6307 - }, - { - "l": "2.0", - "x": 11.5833, - "y": 51.6523 - }, - { - "l": "2.0", - "x": 11.6667, - "y": 51.6719 - }, - { - "l": "2.0", - "x": 11.75, - "y": 51.6926 - }, - { - "l": "2.0", - "x": 11.8333, - "y": 51.7133 - }, - { - "l": "2.0", - "x": 11.9167, - "y": 51.734 - }, - { - "l": "2.0", - "x": 12.0, - "y": 51.7547 - }, - { - "l": "2.0", - "x": 12.0833, - "y": 51.7744 - }, - { - "l": "2.0", - "x": 12.1667, - "y": 51.7941 - }, - { - "l": "2.0", - "x": 12.25, - "y": 51.8138 - }, - { - "l": "2.0", - "x": 12.3333, - "y": 51.8335 - }, - { - "l": "2.0", - "x": 12.4167, - "y": 51.8522 - }, - { - "l": "2.0", - "x": 12.5, - "y": 51.8709 - }, - { - "l": "2.0", - "x": 12.5833, - "y": 51.8906 - }, - { - "l": "2.0", - "x": 12.6667, - "y": 51.9094 - }, - { - "l": "2.0", - "x": 12.75, - "y": 51.9282 - }, - { - "l": "2.0", - "x": 12.8333, - "y": 51.9469 - }, - { - "l": "2.0", - "x": 12.9167, - "y": 51.9657 - }, - { - "l": "2.0", - "x": 13.0, - "y": 51.9835 - }, - { - "l": "2.0", - "x": 13.0833, - "y": 52.0022 - }, - { - "l": "2.0", - "x": 13.1667, - "y": 52.02 - }, - { - "l": "2.0", - "x": 13.25, - "y": 52.0378 - }, - { - "l": "2.0", - "x": 13.3333, - "y": 52.0566 - }, - { - "l": "2.0", - "x": 13.4167, - "y": 52.0744 - }, - { - "l": "2.0", - "x": 13.5, - "y": 52.0912 - }, - { - "l": "2.0", - "x": 13.5833, - "y": 52.109 - }, - { - "l": "2.0", - "x": 13.6667, - "y": 52.1268 - }, - { - "l": "2.0", - "x": 13.75, - "y": 52.1436 - }, - { - "l": "2.0", - "x": 13.8333, - "y": 52.1604 - }, - { - "l": "2.0", - "x": 13.9167, - "y": 52.1773 - }, - { - "l": "2.0", - "x": 14.0, - "y": 52.1941 - }, - { - "l": "2.0", - "x": 14.0833, - "y": 52.213 - }, - { - "l": "2.0", - "x": 14.1667, - "y": 52.2289 - }, - { - "l": "2.0", - "x": 14.25, - "y": 52.2457 - }, - { - "l": "2.0", - "x": 14.3333, - "y": 52.2625 - }, - { - "l": "2.0", - "x": 14.4167, - "y": 52.2784 - }, - { - "l": "2.0", - "x": 14.5, - "y": 52.2952 - }, - { - "l": "2.0", - "x": 14.5833, - "y": 52.3111 - }, - { - "l": "2.0", - "x": 14.6667, - "y": 52.328 - }, - { - "l": "2.0", - "x": 14.75, - "y": 52.3439 - }, - { - "l": "2.0", - "x": 14.8333, - "y": 52.3598 - }, - { - "l": "2.0", - "x": 14.9167, - "y": 52.3756 - }, - { - "l": "2.0", - "x": 15.0, - "y": 52.3926 - }, - { - "l": "2.0", - "x": 15.0833, - "y": 52.4075 - }, - { - "l": "2.0", - "x": 15.1667, - "y": 52.4224 - }, - { - "l": "2.0", - "x": 15.25, - "y": 52.4383 - }, - { - "l": "2.0", - "x": 15.3333, - "y": 52.4532 - }, - { - "l": "2.0", - "x": 15.4167, - "y": 52.4692 - }, - { - "l": "2.0", - "x": 15.5, - "y": 52.4841 - }, - { - "l": "2.0", - "x": 15.5833, - "y": 52.4999 - }, - { - "l": "2.0", - "x": 15.6667, - "y": 52.515 - }, - { - "l": "2.0", - "x": 15.75, - "y": 52.5299 - }, - { - "l": "2.0", - "x": 15.8333, - "y": 52.5438 - }, - { - "l": "2.0", - "x": 15.9167, - "y": 52.5598 - }, - { - "l": "2.0", - "x": 16.0, - "y": 52.5738 - }, - { - "l": "2.0", - "x": 16.0833, - "y": 52.5887 - }, - { - "l": "2.0", - "x": 16.1667, - "y": 52.6027 - }, - { - "l": "2.0", - "x": 16.25, - "y": 52.6176 - }, - { - "l": "2.0", - "x": 16.3333, - "y": 52.6327 - }, - { - "l": "2.0", - "x": 16.4167, - "y": 52.6457 - }, - { - "l": "2.0", - "x": 16.5, - "y": 52.6606 - }, - { - "l": "2.0", - "x": 16.5833, - "y": 52.6756 - }, - { - "l": "2.0", - "x": 16.6667, - "y": 52.6886 - }, - { - "l": "2.0", - "x": 16.75, - "y": 52.7036 - }, - { - "l": "2.0", - "x": 16.8333, - "y": 52.7176 - }, - { - "l": "2.0", - "x": 16.9167, - "y": 52.7296 - }, - { - "l": "2.0", - "x": 17.0, - "y": 52.7429 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 4.0, - "y": 49.5082 - }, - { - "l": "9.0", - "x": 4.0833, - "y": 49.5606 - }, - { - "l": "9.0", - "x": 4.1667, - "y": 49.613 - }, - { - "l": "9.0", - "x": 4.25, - "y": 49.6642 - }, - { - "l": "9.0", - "x": 4.3333, - "y": 49.7157 - }, - { - "l": "9.0", - "x": 4.4167, - "y": 49.7652 - }, - { - "l": "9.0", - "x": 4.5, - "y": 49.8138 - }, - { - "l": "9.0", - "x": 4.5833, - "y": 49.8617 - }, - { - "l": "9.0", - "x": 4.6667, - "y": 49.9093 - }, - { - "l": "9.0", - "x": 4.75, - "y": 49.9543 - }, - { - "l": "9.0", - "x": 4.8333, - "y": 49.9992 - }, - { - "l": "9.0", - "x": 4.9167, - "y": 50.0459 - }, - { - "l": "9.0", - "x": 5.0, - "y": 50.0899 - }, - { - "l": "9.0", - "x": 5.0833, - "y": 50.1339 - }, - { - "l": "9.0", - "x": 5.1667, - "y": 50.1763 - }, - { - "l": "9.0", - "x": 5.25, - "y": 50.2184 - }, - { - "l": "9.0", - "x": 5.3333, - "y": 50.2598 - }, - { - "l": "9.0", - "x": 5.4167, - "y": 50.3009 - }, - { - "l": "9.0", - "x": 5.5, - "y": 50.3414 - }, - { - "l": "9.0", - "x": 5.5833, - "y": 50.3818 - }, - { - "l": "9.0", - "x": 5.6667, - "y": 50.4203 - }, - { - "l": "9.0", - "x": 5.75, - "y": 50.4588 - }, - { - "l": "9.0", - "x": 5.8333, - "y": 50.4973 - }, - { - "l": "9.0", - "x": 5.9167, - "y": 50.5358 - }, - { - "l": "9.0", - "x": 6.0, - "y": 50.5733 - }, - { - "l": "9.0", - "x": 6.0833, - "y": 50.6102 - }, - { - "l": "9.0", - "x": 6.1667, - "y": 50.6467 - }, - { - "l": "9.0", - "x": 6.25, - "y": 50.6826 - }, - { - "l": "9.0", - "x": 6.3333, - "y": 50.7185 - }, - { - "l": "9.0", - "x": 6.4167, - "y": 50.7543 - }, - { - "l": "9.0", - "x": 6.5, - "y": 50.7899 - }, - { - "l": "9.0", - "x": 6.5833, - "y": 50.8248 - }, - { - "l": "9.0", - "x": 6.6667, - "y": 50.8588 - }, - { - "l": "9.0", - "x": 6.75, - "y": 50.893 - }, - { - "l": "9.0", - "x": 6.8333, - "y": 50.9269 - }, - { - "l": "9.0", - "x": 6.9167, - "y": 50.9608 - }, - { - "l": "9.0", - "x": 7.0, - "y": 50.9957 - }, - { - "l": "9.0", - "x": 7.0833, - "y": 51.028 - }, - { - "l": "9.0", - "x": 7.1667, - "y": 51.0619 - }, - { - "l": "9.0", - "x": 7.25, - "y": 51.0942 - }, - { - "l": "9.0", - "x": 7.3333, - "y": 51.1264 - }, - { - "l": "9.0", - "x": 7.4167, - "y": 51.1594 - }, - { - "l": "9.0", - "x": 7.5, - "y": 51.1916 - }, - { - "l": "9.0", - "x": 7.5833, - "y": 51.2229 - }, - { - "l": "9.0", - "x": 7.6667, - "y": 51.2552 - }, - { - "l": "9.0", - "x": 7.75, - "y": 51.2865 - }, - { - "l": "9.0", - "x": 7.8333, - "y": 51.3177 - }, - { - "l": "9.0", - "x": 7.9167, - "y": 51.349 - }, - { - "l": "9.0", - "x": 8.0, - "y": 51.3803 - }, - { - "l": "9.0", - "x": 8.0833, - "y": 51.4116 - }, - { - "l": "9.0", - "x": 8.1667, - "y": 51.4419 - }, - { - "l": "9.0", - "x": 8.25, - "y": 51.4732 - }, - { - "l": "9.0", - "x": 8.3333, - "y": 51.5028 - }, - { - "l": "9.0", - "x": 8.4167, - "y": 51.5321 - }, - { - "l": "9.0", - "x": 8.5, - "y": 51.5624 - }, - { - "l": "9.0", - "x": 8.5833, - "y": 51.591 - }, - { - "l": "9.0", - "x": 8.6667, - "y": 51.6213 - }, - { - "l": "9.0", - "x": 8.75, - "y": 51.65 - }, - { - "l": "9.0", - "x": 8.8333, - "y": 51.6793 - }, - { - "l": "9.0", - "x": 8.9167, - "y": 51.7079 - }, - { - "l": "9.0", - "x": 9.0, - "y": 51.7356 - }, - { - "l": "9.0", - "x": 9.0833, - "y": 51.7639 - }, - { - "l": "9.0", - "x": 9.1667, - "y": 51.7925 - }, - { - "l": "9.0", - "x": 9.25, - "y": 51.8192 - }, - { - "l": "9.0", - "x": 9.3333, - "y": 51.8469 - }, - { - "l": "9.0", - "x": 9.4167, - "y": 51.8752 - }, - { - "l": "9.0", - "x": 9.5, - "y": 51.9019 - }, - { - "l": "9.0", - "x": 9.5833, - "y": 51.9286 - }, - { - "l": "9.0", - "x": 9.6667, - "y": 51.9552 - }, - { - "l": "9.0", - "x": 9.75, - "y": 51.9819 - }, - { - "l": "9.0", - "x": 9.8333, - "y": 52.0076 - }, - { - "l": "9.0", - "x": 9.9167, - "y": 52.0342 - }, - { - "l": "9.0", - "x": 10.0, - "y": 52.0599 - }, - { - "l": "9.0", - "x": 10.0833, - "y": 52.0856 - }, - { - "l": "9.0", - "x": 10.1667, - "y": 52.1113 - }, - { - "l": "9.0", - "x": 10.25, - "y": 52.136 - }, - { - "l": "9.0", - "x": 10.3333, - "y": 52.1608 - }, - { - "l": "9.0", - "x": 10.4167, - "y": 52.1855 - }, - { - "l": "9.0", - "x": 10.5, - "y": 52.2102 - }, - { - "l": "9.0", - "x": 10.5833, - "y": 52.2349 - }, - { - "l": "9.0", - "x": 10.6667, - "y": 52.2587 - }, - { - "l": "9.0", - "x": 10.75, - "y": 52.2834 - }, - { - "l": "9.0", - "x": 10.8333, - "y": 52.3061 - }, - { - "l": "9.0", - "x": 10.9167, - "y": 52.3299 - }, - { - "l": "9.0", - "x": 11.0, - "y": 52.3546 - }, - { - "l": "9.0", - "x": 11.0833, - "y": 52.3766 - }, - { - "l": "9.0", - "x": 11.1667, - "y": 52.3994 - }, - { - "l": "9.0", - "x": 11.25, - "y": 52.4222 - }, - { - "l": "9.0", - "x": 11.3333, - "y": 52.4449 - }, - { - "l": "9.0", - "x": 11.4167, - "y": 52.4677 - }, - { - "l": "9.0", - "x": 11.5, - "y": 52.4905 - }, - { - "l": "9.0", - "x": 11.5833, - "y": 52.5132 - }, - { - "l": "9.0", - "x": 11.6667, - "y": 52.5343 - }, - { - "l": "9.0", - "x": 11.75, - "y": 52.5561 - }, - { - "l": "9.0", - "x": 11.8333, - "y": 52.5779 - }, - { - "l": "9.0", - "x": 11.9167, - "y": 52.5997 - }, - { - "l": "9.0", - "x": 12.0, - "y": 52.6214 - }, - { - "l": "9.0", - "x": 12.0833, - "y": 52.6423 - }, - { - "l": "9.0", - "x": 12.1667, - "y": 52.6631 - }, - { - "l": "9.0", - "x": 12.25, - "y": 52.6839 - }, - { - "l": "9.0", - "x": 12.3333, - "y": 52.7047 - }, - { - "l": "9.0", - "x": 12.4167, - "y": 52.7248 - }, - { - "l": "9.0", - "x": 12.5, - "y": 52.7446 - }, - { - "l": "9.0", - "x": 12.5833, - "y": 52.7654 - }, - { - "l": "9.0", - "x": 12.6667, - "y": 52.7853 - }, - { - "l": "9.0", - "x": 12.75, - "y": 52.8051 - }, - { - "l": "9.0", - "x": 12.8333, - "y": 52.8249 - }, - { - "l": "9.0", - "x": 12.9167, - "y": 52.8448 - }, - { - "l": "9.0", - "x": 13.0, - "y": 52.8637 - }, - { - "l": "9.0", - "x": 13.0833, - "y": 52.8835 - }, - { - "l": "9.0", - "x": 13.1667, - "y": 52.9023 - }, - { - "l": "9.0", - "x": 13.25, - "y": 52.9212 - }, - { - "l": "9.0", - "x": 13.3333, - "y": 52.941 - }, - { - "l": "9.0", - "x": 13.4167, - "y": 52.9599 - }, - { - "l": "9.0", - "x": 13.5, - "y": 52.9778 - }, - { - "l": "9.0", - "x": 13.5833, - "y": 52.9967 - }, - { - "l": "9.0", - "x": 13.6667, - "y": 53.0155 - }, - { - "l": "9.0", - "x": 13.75, - "y": 53.0334 - }, - { - "l": "9.0", - "x": 13.8333, - "y": 53.0513 - }, - { - "l": "9.0", - "x": 13.9167, - "y": 53.0692 - }, - { - "l": "9.0", - "x": 14.0, - "y": 53.0871 - }, - { - "l": "9.0", - "x": 14.0833, - "y": 53.1067 - }, - { - "l": "9.0", - "x": 14.1667, - "y": 53.1236 - }, - { - "l": "9.0", - "x": 14.25, - "y": 53.1415 - }, - { - "l": "9.0", - "x": 14.3333, - "y": 53.1593 - }, - { - "l": "9.0", - "x": 14.4167, - "y": 53.1762 - }, - { - "l": "9.0", - "x": 14.5, - "y": 53.1941 - }, - { - "l": "9.0", - "x": 14.5833, - "y": 53.211 - }, - { - "l": "9.0", - "x": 14.6667, - "y": 53.2287 - }, - { - "l": "9.0", - "x": 14.75, - "y": 53.2456 - }, - { - "l": "9.0", - "x": 14.8333, - "y": 53.2625 - }, - { - "l": "9.0", - "x": 14.9167, - "y": 53.2794 - }, - { - "l": "9.0", - "x": 15.0, - "y": 53.2971 - }, - { - "l": "9.0", - "x": 15.0833, - "y": 53.313 - }, - { - "l": "9.0", - "x": 15.1667, - "y": 53.3289 - }, - { - "l": "9.0", - "x": 15.25, - "y": 53.3458 - }, - { - "l": "9.0", - "x": 15.3333, - "y": 53.3618 - }, - { - "l": "9.0", - "x": 15.4167, - "y": 53.3784 - }, - { - "l": "9.0", - "x": 15.5, - "y": 53.3944 - }, - { - "l": "9.0", - "x": 15.5833, - "y": 53.4113 - }, - { - "l": "9.0", - "x": 15.6667, - "y": 53.427 - }, - { - "l": "9.0", - "x": 15.75, - "y": 53.4429 - }, - { - "l": "9.0", - "x": 15.8333, - "y": 53.4579 - }, - { - "l": "9.0", - "x": 15.9167, - "y": 53.4745 - }, - { - "l": "9.0", - "x": 16.0, - "y": 53.4895 - }, - { - "l": "9.0", - "x": 16.0833, - "y": 53.5054 - }, - { - "l": "9.0", - "x": 16.1667, - "y": 53.5202 - }, - { - "l": "9.0", - "x": 16.25, - "y": 53.5361 - }, - { - "l": "9.0", - "x": 16.3333, - "y": 53.5518 - }, - { - "l": "9.0", - "x": 16.4167, - "y": 53.5658 - }, - { - "l": "9.0", - "x": 16.5, - "y": 53.5817 - }, - { - "l": "9.0", - "x": 16.5833, - "y": 53.5974 - }, - { - "l": "9.0", - "x": 16.6667, - "y": 53.6114 - }, - { - "l": "9.0", - "x": 16.75, - "y": 53.6271 - }, - { - "l": "9.0", - "x": 16.8333, - "y": 53.642 - }, - { - "l": "9.0", - "x": 16.9167, - "y": 53.6551 - }, - { - "l": "9.0", - "x": 17.0, - "y": 53.6686 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 4.0, - "y": 50.3061 - }, - { - "l": "25.0", - "x": 4.0833, - "y": 50.3583 - }, - { - "l": "25.0", - "x": 4.1667, - "y": 50.4105 - }, - { - "l": "25.0", - "x": 4.25, - "y": 50.4611 - }, - { - "l": "25.0", - "x": 4.3333, - "y": 50.5123 - }, - { - "l": "25.0", - "x": 4.4167, - "y": 50.5616 - }, - { - "l": "25.0", - "x": 4.5, - "y": 50.6099 - }, - { - "l": "25.0", - "x": 4.5833, - "y": 50.6578 - }, - { - "l": "25.0", - "x": 4.6667, - "y": 50.7051 - }, - { - "l": "25.0", - "x": 4.75, - "y": 50.7501 - }, - { - "l": "25.0", - "x": 4.8333, - "y": 50.7951 - }, - { - "l": "25.0", - "x": 4.9167, - "y": 50.8414 - }, - { - "l": "25.0", - "x": 5.0, - "y": 50.8855 - }, - { - "l": "25.0", - "x": 5.0833, - "y": 50.9295 - }, - { - "l": "25.0", - "x": 5.1667, - "y": 50.9722 - }, - { - "l": "25.0", - "x": 5.25, - "y": 51.0142 - }, - { - "l": "25.0", - "x": 5.3333, - "y": 51.0559 - }, - { - "l": "25.0", - "x": 5.4167, - "y": 51.097 - }, - { - "l": "25.0", - "x": 5.5, - "y": 51.1377 - }, - { - "l": "25.0", - "x": 5.5833, - "y": 51.1784 - }, - { - "l": "25.0", - "x": 5.6667, - "y": 51.2171 - }, - { - "l": "25.0", - "x": 5.75, - "y": 51.2559 - }, - { - "l": "25.0", - "x": 5.8333, - "y": 51.2946 - }, - { - "l": "25.0", - "x": 5.9167, - "y": 51.3334 - }, - { - "l": "25.0", - "x": 6.0, - "y": 51.3712 - }, - { - "l": "25.0", - "x": 6.0833, - "y": 51.4086 - }, - { - "l": "25.0", - "x": 6.1667, - "y": 51.4454 - }, - { - "l": "25.0", - "x": 6.25, - "y": 51.4818 - }, - { - "l": "25.0", - "x": 6.3333, - "y": 51.5182 - }, - { - "l": "25.0", - "x": 6.4167, - "y": 51.5547 - }, - { - "l": "25.0", - "x": 6.5, - "y": 51.5905 - }, - { - "l": "25.0", - "x": 6.5833, - "y": 51.6259 - }, - { - "l": "25.0", - "x": 6.6667, - "y": 51.6604 - }, - { - "l": "25.0", - "x": 6.75, - "y": 51.6955 - }, - { - "l": "25.0", - "x": 6.8333, - "y": 51.7299 - }, - { - "l": "25.0", - "x": 6.9167, - "y": 51.7644 - }, - { - "l": "25.0", - "x": 7.0, - "y": 51.7999 - }, - { - "l": "25.0", - "x": 7.0833, - "y": 51.833 - }, - { - "l": "25.0", - "x": 7.1667, - "y": 51.8675 - }, - { - "l": "25.0", - "x": 7.25, - "y": 51.9006 - }, - { - "l": "25.0", - "x": 7.3333, - "y": 51.9337 - }, - { - "l": "25.0", - "x": 7.4167, - "y": 51.9672 - }, - { - "l": "25.0", - "x": 7.5, - "y": 52.0003 - }, - { - "l": "25.0", - "x": 7.5833, - "y": 52.0325 - }, - { - "l": "25.0", - "x": 7.6667, - "y": 52.0656 - }, - { - "l": "25.0", - "x": 7.75, - "y": 52.0977 - }, - { - "l": "25.0", - "x": 7.8333, - "y": 52.1299 - }, - { - "l": "25.0", - "x": 7.9167, - "y": 52.162 - }, - { - "l": "25.0", - "x": 8.0, - "y": 52.1942 - }, - { - "l": "25.0", - "x": 8.0833, - "y": 52.2263 - }, - { - "l": "25.0", - "x": 8.1667, - "y": 52.2574 - }, - { - "l": "25.0", - "x": 8.25, - "y": 52.2896 - }, - { - "l": "25.0", - "x": 8.3333, - "y": 52.3204 - }, - { - "l": "25.0", - "x": 8.4167, - "y": 52.3506 - }, - { - "l": "25.0", - "x": 8.5, - "y": 52.3817 - }, - { - "l": "25.0", - "x": 8.5833, - "y": 52.4115 - }, - { - "l": "25.0", - "x": 8.6667, - "y": 52.4427 - }, - { - "l": "25.0", - "x": 8.75, - "y": 52.4725 - }, - { - "l": "25.0", - "x": 8.8333, - "y": 52.5026 - }, - { - "l": "25.0", - "x": 8.9167, - "y": 52.5325 - }, - { - "l": "25.0", - "x": 9.0, - "y": 52.5613 - }, - { - "l": "25.0", - "x": 9.0833, - "y": 52.5905 - }, - { - "l": "25.0", - "x": 9.1667, - "y": 52.6203 - }, - { - "l": "25.0", - "x": 9.25, - "y": 52.6481 - }, - { - "l": "25.0", - "x": 9.3333, - "y": 52.6769 - }, - { - "l": "25.0", - "x": 9.4167, - "y": 52.7061 - }, - { - "l": "25.0", - "x": 9.5, - "y": 52.7339 - }, - { - "l": "25.0", - "x": 9.5833, - "y": 52.7618 - }, - { - "l": "25.0", - "x": 9.6667, - "y": 52.7896 - }, - { - "l": "25.0", - "x": 9.75, - "y": 52.8174 - }, - { - "l": "25.0", - "x": 9.8333, - "y": 52.8443 - }, - { - "l": "25.0", - "x": 9.9167, - "y": 52.8721 - }, - { - "l": "25.0", - "x": 10.0, - "y": 52.899 - }, - { - "l": "25.0", - "x": 10.0833, - "y": 52.9258 - }, - { - "l": "25.0", - "x": 10.1667, - "y": 52.9527 - }, - { - "l": "25.0", - "x": 10.25, - "y": 52.9785 - }, - { - "l": "25.0", - "x": 10.3333, - "y": 53.0044 - }, - { - "l": "25.0", - "x": 10.4167, - "y": 53.0302 - }, - { - "l": "25.0", - "x": 10.5, - "y": 53.0561 - }, - { - "l": "25.0", - "x": 10.5833, - "y": 53.082 - }, - { - "l": "25.0", - "x": 10.6667, - "y": 53.1068 - }, - { - "l": "25.0", - "x": 10.75, - "y": 53.1327 - }, - { - "l": "25.0", - "x": 10.8333, - "y": 53.1566 - }, - { - "l": "25.0", - "x": 10.9167, - "y": 53.1814 - }, - { - "l": "25.0", - "x": 11.0, - "y": 53.2073 - }, - { - "l": "25.0", - "x": 11.0833, - "y": 53.2308 - }, - { - "l": "25.0", - "x": 11.1667, - "y": 53.2547 - }, - { - "l": "25.0", - "x": 11.25, - "y": 53.2786 - }, - { - "l": "25.0", - "x": 11.3333, - "y": 53.3025 - }, - { - "l": "25.0", - "x": 11.4167, - "y": 53.3263 - }, - { - "l": "25.0", - "x": 11.5, - "y": 53.3502 - }, - { - "l": "25.0", - "x": 11.5833, - "y": 53.3741 - }, - { - "l": "25.0", - "x": 11.6667, - "y": 53.3966 - }, - { - "l": "25.0", - "x": 11.75, - "y": 53.4195 - }, - { - "l": "25.0", - "x": 11.8333, - "y": 53.4424 - }, - { - "l": "25.0", - "x": 11.9167, - "y": 53.4653 - }, - { - "l": "25.0", - "x": 12.0, - "y": 53.4882 - }, - { - "l": "25.0", - "x": 12.0833, - "y": 53.5101 - }, - { - "l": "25.0", - "x": 12.1667, - "y": 53.532 - }, - { - "l": "25.0", - "x": 12.25, - "y": 53.5539 - }, - { - "l": "25.0", - "x": 12.3333, - "y": 53.5758 - }, - { - "l": "25.0", - "x": 12.4167, - "y": 53.5974 - }, - { - "l": "25.0", - "x": 12.5, - "y": 53.6183 - }, - { - "l": "25.0", - "x": 12.5833, - "y": 53.6402 - }, - { - "l": "25.0", - "x": 12.6667, - "y": 53.6611 - }, - { - "l": "25.0", - "x": 12.75, - "y": 53.6821 - }, - { - "l": "25.0", - "x": 12.8333, - "y": 53.703 - }, - { - "l": "25.0", - "x": 12.9167, - "y": 53.7239 - }, - { - "l": "25.0", - "x": 13.0, - "y": 53.7438 - }, - { - "l": "25.0", - "x": 13.0833, - "y": 53.7647 - }, - { - "l": "25.0", - "x": 13.1667, - "y": 53.7847 - }, - { - "l": "25.0", - "x": 13.25, - "y": 53.8046 - }, - { - "l": "25.0", - "x": 13.3333, - "y": 53.8255 - }, - { - "l": "25.0", - "x": 13.4167, - "y": 53.8455 - }, - { - "l": "25.0", - "x": 13.5, - "y": 53.8644 - }, - { - "l": "25.0", - "x": 13.5833, - "y": 53.8843 - }, - { - "l": "25.0", - "x": 13.6667, - "y": 53.9043 - }, - { - "l": "25.0", - "x": 13.75, - "y": 53.9232 - }, - { - "l": "25.0", - "x": 13.8333, - "y": 53.9421 - }, - { - "l": "25.0", - "x": 13.9167, - "y": 53.9611 - }, - { - "l": "25.0", - "x": 14.0, - "y": 53.98 - }, - { - "l": "25.0", - "x": 14.0833, - "y": 54.0003 - }, - { - "l": "25.0", - "x": 14.1667, - "y": 54.0183 - }, - { - "l": "25.0", - "x": 14.25, - "y": 54.0372 - }, - { - "l": "25.0", - "x": 14.3333, - "y": 54.0562 - }, - { - "l": "25.0", - "x": 14.4167, - "y": 54.0741 - }, - { - "l": "25.0", - "x": 14.5, - "y": 54.0931 - }, - { - "l": "25.0", - "x": 14.5833, - "y": 54.111 - }, - { - "l": "25.0", - "x": 14.6667, - "y": 54.1293 - }, - { - "l": "25.0", - "x": 14.75, - "y": 54.1473 - }, - { - "l": "25.0", - "x": 14.8333, - "y": 54.1653 - }, - { - "l": "25.0", - "x": 14.9167, - "y": 54.1832 - }, - { - "l": "25.0", - "x": 15.0, - "y": 54.2015 - }, - { - "l": "25.0", - "x": 15.0833, - "y": 54.2185 - }, - { - "l": "25.0", - "x": 15.1667, - "y": 54.2355 - }, - { - "l": "25.0", - "x": 15.25, - "y": 54.2534 - }, - { - "l": "25.0", - "x": 15.3333, - "y": 54.2704 - }, - { - "l": "25.0", - "x": 15.4167, - "y": 54.2877 - }, - { - "l": "25.0", - "x": 15.5, - "y": 54.3047 - }, - { - "l": "25.0", - "x": 15.5833, - "y": 54.3226 - }, - { - "l": "25.0", - "x": 15.6667, - "y": 54.339 - }, - { - "l": "25.0", - "x": 15.75, - "y": 54.356 - }, - { - "l": "25.0", - "x": 15.8333, - "y": 54.3719 - }, - { - "l": "25.0", - "x": 15.9167, - "y": 54.3893 - }, - { - "l": "25.0", - "x": 16.0, - "y": 54.4053 - }, - { - "l": "25.0", - "x": 16.0833, - "y": 54.4222 - }, - { - "l": "25.0", - "x": 16.1667, - "y": 54.4376 - }, - { - "l": "25.0", - "x": 16.25, - "y": 54.4545 - }, - { - "l": "25.0", - "x": 16.3333, - "y": 54.4709 - }, - { - "l": "25.0", - "x": 16.4167, - "y": 54.4859 - }, - { - "l": "25.0", - "x": 16.5, - "y": 54.5029 - }, - { - "l": "25.0", - "x": 16.5833, - "y": 54.5192 - }, - { - "l": "25.0", - "x": 16.6667, - "y": 54.5342 - }, - { - "l": "25.0", - "x": 16.75, - "y": 54.5505 - }, - { - "l": "25.0", - "x": 16.8333, - "y": 54.5665 - }, - { - "l": "25.0", - "x": 16.9167, - "y": 54.5805 - }, - { - "l": "25.0", - "x": 17.0, - "y": 54.5943 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 4.0, - "y": 51.104 - }, - { - "l": "50.0", - "x": 4.0833, - "y": 51.156 - }, - { - "l": "50.0", - "x": 4.1667, - "y": 51.208 - }, - { - "l": "50.0", - "x": 4.25, - "y": 51.258 - }, - { - "l": "50.0", - "x": 4.3333, - "y": 51.309 - }, - { - "l": "50.0", - "x": 4.4167, - "y": 51.358 - }, - { - "l": "50.0", - "x": 4.5, - "y": 51.406 - }, - { - "l": "50.0", - "x": 4.5833, - "y": 51.454 - }, - { - "l": "50.0", - "x": 4.6667, - "y": 51.501 - }, - { - "l": "50.0", - "x": 4.75, - "y": 51.546 - }, - { - "l": "50.0", - "x": 4.8333, - "y": 51.591 - }, - { - "l": "50.0", - "x": 4.9167, - "y": 51.637 - }, - { - "l": "50.0", - "x": 5.0, - "y": 51.681 - }, - { - "l": "50.0", - "x": 5.0833, - "y": 51.725 - }, - { - "l": "50.0", - "x": 5.1667, - "y": 51.768 - }, - { - "l": "50.0", - "x": 5.25, - "y": 51.81 - }, - { - "l": "50.0", - "x": 5.3333, - "y": 51.852 - }, - { - "l": "50.0", - "x": 5.4167, - "y": 51.893 - }, - { - "l": "50.0", - "x": 5.5, - "y": 51.934 - }, - { - "l": "50.0", - "x": 5.5833, - "y": 51.975 - }, - { - "l": "50.0", - "x": 5.6667, - "y": 52.014 - }, - { - "l": "50.0", - "x": 5.75, - "y": 52.053 - }, - { - "l": "50.0", - "x": 5.8333, - "y": 52.092 - }, - { - "l": "50.0", - "x": 5.9167, - "y": 52.131 - }, - { - "l": "50.0", - "x": 6.0, - "y": 52.169 - }, - { - "l": "50.0", - "x": 6.0833, - "y": 52.207 - }, - { - "l": "50.0", - "x": 6.1667, - "y": 52.244 - }, - { - "l": "50.0", - "x": 6.25, - "y": 52.281 - }, - { - "l": "50.0", - "x": 6.3333, - "y": 52.318 - }, - { - "l": "50.0", - "x": 6.4167, - "y": 52.355 - }, - { - "l": "50.0", - "x": 6.5, - "y": 52.391 - }, - { - "l": "50.0", - "x": 6.5833, - "y": 52.427 - }, - { - "l": "50.0", - "x": 6.6667, - "y": 52.462 - }, - { - "l": "50.0", - "x": 6.75, - "y": 52.498 - }, - { - "l": "50.0", - "x": 6.8333, - "y": 52.533 - }, - { - "l": "50.0", - "x": 6.9167, - "y": 52.568 - }, - { - "l": "50.0", - "x": 7.0, - "y": 52.604 - }, - { - "l": "50.0", - "x": 7.0833, - "y": 52.638 - }, - { - "l": "50.0", - "x": 7.1667, - "y": 52.673 - }, - { - "l": "50.0", - "x": 7.25, - "y": 52.707 - }, - { - "l": "50.0", - "x": 7.3333, - "y": 52.741 - }, - { - "l": "50.0", - "x": 7.4167, - "y": 52.775 - }, - { - "l": "50.0", - "x": 7.5, - "y": 52.809 - }, - { - "l": "50.0", - "x": 7.5833, - "y": 52.842 - }, - { - "l": "50.0", - "x": 7.6667, - "y": 52.876 - }, - { - "l": "50.0", - "x": 7.75, - "y": 52.909 - }, - { - "l": "50.0", - "x": 7.8333, - "y": 52.942 - }, - { - "l": "50.0", - "x": 7.9167, - "y": 52.975 - }, - { - "l": "50.0", - "x": 8.0, - "y": 53.008 - }, - { - "l": "50.0", - "x": 8.0833, - "y": 53.041 - }, - { - "l": "50.0", - "x": 8.1667, - "y": 53.073 - }, - { - "l": "50.0", - "x": 8.25, - "y": 53.106 - }, - { - "l": "50.0", - "x": 8.3333, - "y": 53.138 - }, - { - "l": "50.0", - "x": 8.4167, - "y": 53.169 - }, - { - "l": "50.0", - "x": 8.5, - "y": 53.201 - }, - { - "l": "50.0", - "x": 8.5833, - "y": 53.232 - }, - { - "l": "50.0", - "x": 8.6667, - "y": 53.264 - }, - { - "l": "50.0", - "x": 8.75, - "y": 53.295 - }, - { - "l": "50.0", - "x": 8.8333, - "y": 53.326 - }, - { - "l": "50.0", - "x": 8.9167, - "y": 53.357 - }, - { - "l": "50.0", - "x": 9.0, - "y": 53.387 - }, - { - "l": "50.0", - "x": 9.0833, - "y": 53.417 - }, - { - "l": "50.0", - "x": 9.1667, - "y": 53.448 - }, - { - "l": "50.0", - "x": 9.25, - "y": 53.477 - }, - { - "l": "50.0", - "x": 9.3333, - "y": 53.507 - }, - { - "l": "50.0", - "x": 9.4167, - "y": 53.537 - }, - { - "l": "50.0", - "x": 9.5, - "y": 53.566 - }, - { - "l": "50.0", - "x": 9.5833, - "y": 53.595 - }, - { - "l": "50.0", - "x": 9.6667, - "y": 53.624 - }, - { - "l": "50.0", - "x": 9.75, - "y": 53.653 - }, - { - "l": "50.0", - "x": 9.8333, - "y": 53.681 - }, - { - "l": "50.0", - "x": 9.9167, - "y": 53.71 - }, - { - "l": "50.0", - "x": 10.0, - "y": 53.738 - }, - { - "l": "50.0", - "x": 10.0833, - "y": 53.766 - }, - { - "l": "50.0", - "x": 10.1667, - "y": 53.794 - }, - { - "l": "50.0", - "x": 10.25, - "y": 53.821 - }, - { - "l": "50.0", - "x": 10.3333, - "y": 53.848 - }, - { - "l": "50.0", - "x": 10.4167, - "y": 53.875 - }, - { - "l": "50.0", - "x": 10.5, - "y": 53.902 - }, - { - "l": "50.0", - "x": 10.5833, - "y": 53.929 - }, - { - "l": "50.0", - "x": 10.6667, - "y": 53.955 - }, - { - "l": "50.0", - "x": 10.75, - "y": 53.982 - }, - { - "l": "50.0", - "x": 10.8333, - "y": 54.007 - }, - { - "l": "50.0", - "x": 10.9167, - "y": 54.033 - }, - { - "l": "50.0", - "x": 11.0, - "y": 54.06 - }, - { - "l": "50.0", - "x": 11.0833, - "y": 54.085 - }, - { - "l": "50.0", - "x": 11.1667, - "y": 54.11 - }, - { - "l": "50.0", - "x": 11.25, - "y": 54.135 - }, - { - "l": "50.0", - "x": 11.3333, - "y": 54.16 - }, - { - "l": "50.0", - "x": 11.4167, - "y": 54.185 - }, - { - "l": "50.0", - "x": 11.5, - "y": 54.21 - }, - { - "l": "50.0", - "x": 11.5833, - "y": 54.235 - }, - { - "l": "50.0", - "x": 11.6667, - "y": 54.259 - }, - { - "l": "50.0", - "x": 11.75, - "y": 54.283 - }, - { - "l": "50.0", - "x": 11.8333, - "y": 54.307 - }, - { - "l": "50.0", - "x": 11.9167, - "y": 54.331 - }, - { - "l": "50.0", - "x": 12.0, - "y": 54.355 - }, - { - "l": "50.0", - "x": 12.0833, - "y": 54.378 - }, - { - "l": "50.0", - "x": 12.1667, - "y": 54.401 - }, - { - "l": "50.0", - "x": 12.25, - "y": 54.424 - }, - { - "l": "50.0", - "x": 12.3333, - "y": 54.447 - }, - { - "l": "50.0", - "x": 12.4167, - "y": 54.47 - }, - { - "l": "50.0", - "x": 12.5, - "y": 54.492 - }, - { - "l": "50.0", - "x": 12.5833, - "y": 54.515 - }, - { - "l": "50.0", - "x": 12.6667, - "y": 54.537 - }, - { - "l": "50.0", - "x": 12.75, - "y": 54.559 - }, - { - "l": "50.0", - "x": 12.8333, - "y": 54.581 - }, - { - "l": "50.0", - "x": 12.9167, - "y": 54.603 - }, - { - "l": "50.0", - "x": 13.0, - "y": 54.624 - }, - { - "l": "50.0", - "x": 13.0833, - "y": 54.646 - }, - { - "l": "50.0", - "x": 13.1667, - "y": 54.667 - }, - { - "l": "50.0", - "x": 13.25, - "y": 54.688 - }, - { - "l": "50.0", - "x": 13.3333, - "y": 54.71 - }, - { - "l": "50.0", - "x": 13.4167, - "y": 54.731 - }, - { - "l": "50.0", - "x": 13.5, - "y": 54.751 - }, - { - "l": "50.0", - "x": 13.5833, - "y": 54.772 - }, - { - "l": "50.0", - "x": 13.6667, - "y": 54.793 - }, - { - "l": "50.0", - "x": 13.75, - "y": 54.813 - }, - { - "l": "50.0", - "x": 13.8333, - "y": 54.833 - }, - { - "l": "50.0", - "x": 13.9167, - "y": 54.853 - }, - { - "l": "50.0", - "x": 14.0, - "y": 54.873 - }, - { - "l": "50.0", - "x": 14.0833, - "y": 54.894 - }, - { - "l": "50.0", - "x": 14.1667, - "y": 54.913 - }, - { - "l": "50.0", - "x": 14.25, - "y": 54.933 - }, - { - "l": "50.0", - "x": 14.3333, - "y": 54.953 - }, - { - "l": "50.0", - "x": 14.4167, - "y": 54.972 - }, - { - "l": "50.0", - "x": 14.5, - "y": 54.992 - }, - { - "l": "50.0", - "x": 14.5833, - "y": 55.011 - }, - { - "l": "50.0", - "x": 14.6667, - "y": 55.03 - }, - { - "l": "50.0", - "x": 14.75, - "y": 55.049 - }, - { - "l": "50.0", - "x": 14.8333, - "y": 55.068 - }, - { - "l": "50.0", - "x": 14.9167, - "y": 55.087 - }, - { - "l": "50.0", - "x": 15.0, - "y": 55.106 - }, - { - "l": "50.0", - "x": 15.0833, - "y": 55.124 - }, - { - "l": "50.0", - "x": 15.1667, - "y": 55.142 - }, - { - "l": "50.0", - "x": 15.25, - "y": 55.161 - }, - { - "l": "50.0", - "x": 15.3333, - "y": 55.179 - }, - { - "l": "50.0", - "x": 15.4167, - "y": 55.197 - }, - { - "l": "50.0", - "x": 15.5, - "y": 55.215 - }, - { - "l": "50.0", - "x": 15.5833, - "y": 55.234 - }, - { - "l": "50.0", - "x": 15.6667, - "y": 55.251 - }, - { - "l": "50.0", - "x": 15.75, - "y": 55.269 - }, - { - "l": "50.0", - "x": 15.8333, - "y": 55.286 - }, - { - "l": "50.0", - "x": 15.9167, - "y": 55.304 - }, - { - "l": "50.0", - "x": 16.0, - "y": 55.321 - }, - { - "l": "50.0", - "x": 16.0833, - "y": 55.339 - }, - { - "l": "50.0", - "x": 16.1667, - "y": 55.355 - }, - { - "l": "50.0", - "x": 16.25, - "y": 55.373 - }, - { - "l": "50.0", - "x": 16.3333, - "y": 55.39 - }, - { - "l": "50.0", - "x": 16.4167, - "y": 55.406 - }, - { - "l": "50.0", - "x": 16.5, - "y": 55.424 - }, - { - "l": "50.0", - "x": 16.5833, - "y": 55.441 - }, - { - "l": "50.0", - "x": 16.6667, - "y": 55.457 - }, - { - "l": "50.0", - "x": 16.75, - "y": 55.474 - }, - { - "l": "50.0", - "x": 16.8333, - "y": 55.491 - }, - { - "l": "50.0", - "x": 16.9167, - "y": 55.506 - }, - { - "l": "50.0", - "x": 17.0, - "y": 55.52 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 4.0, - "y": 51.9019 - }, - { - "l": "75.0", - "x": 4.0833, - "y": 51.9537 - }, - { - "l": "75.0", - "x": 4.1667, - "y": 52.0055 - }, - { - "l": "75.0", - "x": 4.25, - "y": 52.0549 - }, - { - "l": "75.0", - "x": 4.3333, - "y": 52.1057 - }, - { - "l": "75.0", - "x": 4.4167, - "y": 52.1544 - }, - { - "l": "75.0", - "x": 4.5, - "y": 52.2021 - }, - { - "l": "75.0", - "x": 4.5833, - "y": 52.2502 - }, - { - "l": "75.0", - "x": 4.6667, - "y": 52.2969 - }, - { - "l": "75.0", - "x": 4.75, - "y": 52.3419 - }, - { - "l": "75.0", - "x": 4.8333, - "y": 52.3869 - }, - { - "l": "75.0", - "x": 4.9167, - "y": 52.4326 - }, - { - "l": "75.0", - "x": 5.0, - "y": 52.4765 - }, - { - "l": "75.0", - "x": 5.0833, - "y": 52.5205 - }, - { - "l": "75.0", - "x": 5.1667, - "y": 52.5638 - }, - { - "l": "75.0", - "x": 5.25, - "y": 52.6058 - }, - { - "l": "75.0", - "x": 5.3333, - "y": 52.6481 - }, - { - "l": "75.0", - "x": 5.4167, - "y": 52.689 - }, - { - "l": "75.0", - "x": 5.5, - "y": 52.7303 - }, - { - "l": "75.0", - "x": 5.5833, - "y": 52.7716 - }, - { - "l": "75.0", - "x": 5.6667, - "y": 52.8109 - }, - { - "l": "75.0", - "x": 5.75, - "y": 52.8501 - }, - { - "l": "75.0", - "x": 5.8333, - "y": 52.8894 - }, - { - "l": "75.0", - "x": 5.9167, - "y": 52.9286 - }, - { - "l": "75.0", - "x": 6.0, - "y": 52.9668 - }, - { - "l": "75.0", - "x": 6.0833, - "y": 53.0054 - }, - { - "l": "75.0", - "x": 6.1667, - "y": 53.0426 - }, - { - "l": "75.0", - "x": 6.25, - "y": 53.0802 - }, - { - "l": "75.0", - "x": 6.3333, - "y": 53.1178 - }, - { - "l": "75.0", - "x": 6.4167, - "y": 53.1553 - }, - { - "l": "75.0", - "x": 6.5, - "y": 53.1915 - }, - { - "l": "75.0", - "x": 6.5833, - "y": 53.2281 - }, - { - "l": "75.0", - "x": 6.6667, - "y": 53.2636 - }, - { - "l": "75.0", - "x": 6.75, - "y": 53.3005 - }, - { - "l": "75.0", - "x": 6.8333, - "y": 53.3361 - }, - { - "l": "75.0", - "x": 6.9167, - "y": 53.3716 - }, - { - "l": "75.0", - "x": 7.0, - "y": 53.4081 - }, - { - "l": "75.0", - "x": 7.0833, - "y": 53.443 - }, - { - "l": "75.0", - "x": 7.1667, - "y": 53.4785 - }, - { - "l": "75.0", - "x": 7.25, - "y": 53.5134 - }, - { - "l": "75.0", - "x": 7.3333, - "y": 53.5483 - }, - { - "l": "75.0", - "x": 7.4167, - "y": 53.5828 - }, - { - "l": "75.0", - "x": 7.5, - "y": 53.6177 - }, - { - "l": "75.0", - "x": 7.5833, - "y": 53.6515 - }, - { - "l": "75.0", - "x": 7.6667, - "y": 53.6864 - }, - { - "l": "75.0", - "x": 7.75, - "y": 53.7203 - }, - { - "l": "75.0", - "x": 7.8333, - "y": 53.7541 - }, - { - "l": "75.0", - "x": 7.9167, - "y": 53.788 - }, - { - "l": "75.0", - "x": 8.0, - "y": 53.8218 - }, - { - "l": "75.0", - "x": 8.0833, - "y": 53.8557 - }, - { - "l": "75.0", - "x": 8.1667, - "y": 53.8886 - }, - { - "l": "75.0", - "x": 8.25, - "y": 53.9224 - }, - { - "l": "75.0", - "x": 8.3333, - "y": 53.9556 - }, - { - "l": "75.0", - "x": 8.4167, - "y": 53.9874 - }, - { - "l": "75.0", - "x": 8.5, - "y": 54.0203 - }, - { - "l": "75.0", - "x": 8.5833, - "y": 54.0525 - }, - { - "l": "75.0", - "x": 8.6667, - "y": 54.0853 - }, - { - "l": "75.0", - "x": 8.75, - "y": 54.1175 - }, - { - "l": "75.0", - "x": 8.8333, - "y": 54.1494 - }, - { - "l": "75.0", - "x": 8.9167, - "y": 54.1815 - }, - { - "l": "75.0", - "x": 9.0, - "y": 54.2127 - }, - { - "l": "75.0", - "x": 9.0833, - "y": 54.2435 - }, - { - "l": "75.0", - "x": 9.1667, - "y": 54.2757 - }, - { - "l": "75.0", - "x": 9.25, - "y": 54.3059 - }, - { - "l": "75.0", - "x": 9.3333, - "y": 54.3371 - }, - { - "l": "75.0", - "x": 9.4167, - "y": 54.3679 - }, - { - "l": "75.0", - "x": 9.5, - "y": 54.3981 - }, - { - "l": "75.0", - "x": 9.5833, - "y": 54.4282 - }, - { - "l": "75.0", - "x": 9.6667, - "y": 54.4584 - }, - { - "l": "75.0", - "x": 9.75, - "y": 54.4886 - }, - { - "l": "75.0", - "x": 9.8333, - "y": 54.5177 - }, - { - "l": "75.0", - "x": 9.9167, - "y": 54.5479 - }, - { - "l": "75.0", - "x": 10.0, - "y": 54.577 - }, - { - "l": "75.0", - "x": 10.0833, - "y": 54.6062 - }, - { - "l": "75.0", - "x": 10.1667, - "y": 54.6353 - }, - { - "l": "75.0", - "x": 10.25, - "y": 54.6635 - }, - { - "l": "75.0", - "x": 10.3333, - "y": 54.6916 - }, - { - "l": "75.0", - "x": 10.4167, - "y": 54.7198 - }, - { - "l": "75.0", - "x": 10.5, - "y": 54.7479 - }, - { - "l": "75.0", - "x": 10.5833, - "y": 54.776 - }, - { - "l": "75.0", - "x": 10.6667, - "y": 54.8032 - }, - { - "l": "75.0", - "x": 10.75, - "y": 54.8313 - }, - { - "l": "75.0", - "x": 10.8333, - "y": 54.8574 - }, - { - "l": "75.0", - "x": 10.9167, - "y": 54.8846 - }, - { - "l": "75.0", - "x": 11.0, - "y": 54.9127 - }, - { - "l": "75.0", - "x": 11.0833, - "y": 54.9392 - }, - { - "l": "75.0", - "x": 11.1667, - "y": 54.9653 - }, - { - "l": "75.0", - "x": 11.25, - "y": 54.9914 - }, - { - "l": "75.0", - "x": 11.3333, - "y": 55.0175 - }, - { - "l": "75.0", - "x": 11.4167, - "y": 55.0437 - }, - { - "l": "75.0", - "x": 11.5, - "y": 55.0698 - }, - { - "l": "75.0", - "x": 11.5833, - "y": 55.0959 - }, - { - "l": "75.0", - "x": 11.6667, - "y": 55.1214 - }, - { - "l": "75.0", - "x": 11.75, - "y": 55.1465 - }, - { - "l": "75.0", - "x": 11.8333, - "y": 55.1716 - }, - { - "l": "75.0", - "x": 11.9167, - "y": 55.1967 - }, - { - "l": "75.0", - "x": 12.0, - "y": 55.2218 - }, - { - "l": "75.0", - "x": 12.0833, - "y": 55.2459 - }, - { - "l": "75.0", - "x": 12.1667, - "y": 55.27 - }, - { - "l": "75.0", - "x": 12.25, - "y": 55.2941 - }, - { - "l": "75.0", - "x": 12.3333, - "y": 55.3182 - }, - { - "l": "75.0", - "x": 12.4167, - "y": 55.3426 - }, - { - "l": "75.0", - "x": 12.5, - "y": 55.3657 - }, - { - "l": "75.0", - "x": 12.5833, - "y": 55.3898 - }, - { - "l": "75.0", - "x": 12.6667, - "y": 55.4129 - }, - { - "l": "75.0", - "x": 12.75, - "y": 55.4359 - }, - { - "l": "75.0", - "x": 12.8333, - "y": 55.459 - }, - { - "l": "75.0", - "x": 12.9167, - "y": 55.4821 - }, - { - "l": "75.0", - "x": 13.0, - "y": 55.5042 - }, - { - "l": "75.0", - "x": 13.0833, - "y": 55.5273 - }, - { - "l": "75.0", - "x": 13.1667, - "y": 55.5493 - }, - { - "l": "75.0", - "x": 13.25, - "y": 55.5714 - }, - { - "l": "75.0", - "x": 13.3333, - "y": 55.5945 - }, - { - "l": "75.0", - "x": 13.4167, - "y": 55.6165 - }, - { - "l": "75.0", - "x": 13.5, - "y": 55.6376 - }, - { - "l": "75.0", - "x": 13.5833, - "y": 55.6597 - }, - { - "l": "75.0", - "x": 13.6667, - "y": 55.6817 - }, - { - "l": "75.0", - "x": 13.75, - "y": 55.7028 - }, - { - "l": "75.0", - "x": 13.8333, - "y": 55.7239 - }, - { - "l": "75.0", - "x": 13.9167, - "y": 55.7449 - }, - { - "l": "75.0", - "x": 14.0, - "y": 55.766 - }, - { - "l": "75.0", - "x": 14.0833, - "y": 55.7877 - }, - { - "l": "75.0", - "x": 14.1667, - "y": 55.8077 - }, - { - "l": "75.0", - "x": 14.25, - "y": 55.8288 - }, - { - "l": "75.0", - "x": 14.3333, - "y": 55.8498 - }, - { - "l": "75.0", - "x": 14.4167, - "y": 55.8699 - }, - { - "l": "75.0", - "x": 14.5, - "y": 55.8909 - }, - { - "l": "75.0", - "x": 14.5833, - "y": 55.911 - }, - { - "l": "75.0", - "x": 14.6667, - "y": 55.9307 - }, - { - "l": "75.0", - "x": 14.75, - "y": 55.9507 - }, - { - "l": "75.0", - "x": 14.8333, - "y": 55.9707 - }, - { - "l": "75.0", - "x": 14.9167, - "y": 55.9908 - }, - { - "l": "75.0", - "x": 15.0, - "y": 56.0105 - }, - { - "l": "75.0", - "x": 15.0833, - "y": 56.0295 - }, - { - "l": "75.0", - "x": 15.1667, - "y": 56.0485 - }, - { - "l": "75.0", - "x": 15.25, - "y": 56.0686 - }, - { - "l": "75.0", - "x": 15.3333, - "y": 56.0876 - }, - { - "l": "75.0", - "x": 15.4167, - "y": 56.1063 - }, - { - "l": "75.0", - "x": 15.5, - "y": 56.1253 - }, - { - "l": "75.0", - "x": 15.5833, - "y": 56.1454 - }, - { - "l": "75.0", - "x": 15.6667, - "y": 56.163 - }, - { - "l": "75.0", - "x": 15.75, - "y": 56.182 - }, - { - "l": "75.0", - "x": 15.8333, - "y": 56.2001 - }, - { - "l": "75.0", - "x": 15.9167, - "y": 56.2187 - }, - { - "l": "75.0", - "x": 16.0, - "y": 56.2367 - }, - { - "l": "75.0", - "x": 16.0833, - "y": 56.2558 - }, - { - "l": "75.0", - "x": 16.1667, - "y": 56.2724 - }, - { - "l": "75.0", - "x": 16.25, - "y": 56.2915 - }, - { - "l": "75.0", - "x": 16.3333, - "y": 56.3091 - }, - { - "l": "75.0", - "x": 16.4167, - "y": 56.3261 - }, - { - "l": "75.0", - "x": 16.5, - "y": 56.3451 - }, - { - "l": "75.0", - "x": 16.5833, - "y": 56.3628 - }, - { - "l": "75.0", - "x": 16.6667, - "y": 56.3798 - }, - { - "l": "75.0", - "x": 16.75, - "y": 56.3975 - }, - { - "l": "75.0", - "x": 16.8333, - "y": 56.4155 - }, - { - "l": "75.0", - "x": 16.9167, - "y": 56.4315 - }, - { - "l": "75.0", - "x": 17.0, - "y": 56.4457 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 4.0, - "y": 52.6998 - }, - { - "l": "91.0", - "x": 4.0833, - "y": 52.7514 - }, - { - "l": "91.0", - "x": 4.1667, - "y": 52.803 - }, - { - "l": "91.0", - "x": 4.25, - "y": 52.8518 - }, - { - "l": "91.0", - "x": 4.3333, - "y": 52.9023 - }, - { - "l": "91.0", - "x": 4.4167, - "y": 52.9508 - }, - { - "l": "91.0", - "x": 4.5, - "y": 52.9982 - }, - { - "l": "91.0", - "x": 4.5833, - "y": 53.0463 - }, - { - "l": "91.0", - "x": 4.6667, - "y": 53.0927 - }, - { - "l": "91.0", - "x": 4.75, - "y": 53.1377 - }, - { - "l": "91.0", - "x": 4.8333, - "y": 53.1828 - }, - { - "l": "91.0", - "x": 4.9167, - "y": 53.2281 - }, - { - "l": "91.0", - "x": 5.0, - "y": 53.2721 - }, - { - "l": "91.0", - "x": 5.0833, - "y": 53.3161 - }, - { - "l": "91.0", - "x": 5.1667, - "y": 53.3597 - }, - { - "l": "91.0", - "x": 5.25, - "y": 53.4016 - }, - { - "l": "91.0", - "x": 5.3333, - "y": 53.4442 - }, - { - "l": "91.0", - "x": 5.4167, - "y": 53.4851 - }, - { - "l": "91.0", - "x": 5.5, - "y": 53.5266 - }, - { - "l": "91.0", - "x": 5.5833, - "y": 53.5682 - }, - { - "l": "91.0", - "x": 5.6667, - "y": 53.6077 - }, - { - "l": "91.0", - "x": 5.75, - "y": 53.6472 - }, - { - "l": "91.0", - "x": 5.8333, - "y": 53.6867 - }, - { - "l": "91.0", - "x": 5.9167, - "y": 53.7262 - }, - { - "l": "91.0", - "x": 6.0, - "y": 53.7647 - }, - { - "l": "91.0", - "x": 6.0833, - "y": 53.8038 - }, - { - "l": "91.0", - "x": 6.1667, - "y": 53.8413 - }, - { - "l": "91.0", - "x": 6.25, - "y": 53.8794 - }, - { - "l": "91.0", - "x": 6.3333, - "y": 53.9175 - }, - { - "l": "91.0", - "x": 6.4167, - "y": 53.9557 - }, - { - "l": "91.0", - "x": 6.5, - "y": 53.9921 - }, - { - "l": "91.0", - "x": 6.5833, - "y": 54.0292 - }, - { - "l": "91.0", - "x": 6.6667, - "y": 54.0652 - }, - { - "l": "91.0", - "x": 6.75, - "y": 54.103 - }, - { - "l": "91.0", - "x": 6.8333, - "y": 54.1391 - }, - { - "l": "91.0", - "x": 6.9167, - "y": 54.1752 - }, - { - "l": "91.0", - "x": 7.0, - "y": 54.2123 - }, - { - "l": "91.0", - "x": 7.0833, - "y": 54.248 - }, - { - "l": "91.0", - "x": 7.1667, - "y": 54.2841 - }, - { - "l": "91.0", - "x": 7.25, - "y": 54.3198 - }, - { - "l": "91.0", - "x": 7.3333, - "y": 54.3556 - }, - { - "l": "91.0", - "x": 7.4167, - "y": 54.3906 - }, - { - "l": "91.0", - "x": 7.5, - "y": 54.4264 - }, - { - "l": "91.0", - "x": 7.5833, - "y": 54.4611 - }, - { - "l": "91.0", - "x": 7.6667, - "y": 54.4968 - }, - { - "l": "91.0", - "x": 7.75, - "y": 54.5315 - }, - { - "l": "91.0", - "x": 7.8333, - "y": 54.5663 - }, - { - "l": "91.0", - "x": 7.9167, - "y": 54.601 - }, - { - "l": "91.0", - "x": 8.0, - "y": 54.6357 - }, - { - "l": "91.0", - "x": 8.0833, - "y": 54.6704 - }, - { - "l": "91.0", - "x": 8.1667, - "y": 54.7041 - }, - { - "l": "91.0", - "x": 8.25, - "y": 54.7388 - }, - { - "l": "91.0", - "x": 8.3333, - "y": 54.7732 - }, - { - "l": "91.0", - "x": 8.4167, - "y": 54.8059 - }, - { - "l": "91.0", - "x": 8.5, - "y": 54.8396 - }, - { - "l": "91.0", - "x": 8.5833, - "y": 54.873 - }, - { - "l": "91.0", - "x": 8.6667, - "y": 54.9067 - }, - { - "l": "91.0", - "x": 8.75, - "y": 54.94 - }, - { - "l": "91.0", - "x": 8.8333, - "y": 54.9727 - }, - { - "l": "91.0", - "x": 8.9167, - "y": 55.0061 - }, - { - "l": "91.0", - "x": 9.0, - "y": 55.0384 - }, - { - "l": "91.0", - "x": 9.0833, - "y": 55.0701 - }, - { - "l": "91.0", - "x": 9.1667, - "y": 55.1035 - }, - { - "l": "91.0", - "x": 9.25, - "y": 55.1348 - }, - { - "l": "91.0", - "x": 9.3333, - "y": 55.1671 - }, - { - "l": "91.0", - "x": 9.4167, - "y": 55.1988 - }, - { - "l": "91.0", - "x": 9.5, - "y": 55.2301 - }, - { - "l": "91.0", - "x": 9.5833, - "y": 55.2614 - }, - { - "l": "91.0", - "x": 9.6667, - "y": 55.2928 - }, - { - "l": "91.0", - "x": 9.75, - "y": 55.3241 - }, - { - "l": "91.0", - "x": 9.8333, - "y": 55.3544 - }, - { - "l": "91.0", - "x": 9.9167, - "y": 55.3858 - }, - { - "l": "91.0", - "x": 10.0, - "y": 55.4161 - }, - { - "l": "91.0", - "x": 10.0833, - "y": 55.4464 - }, - { - "l": "91.0", - "x": 10.1667, - "y": 55.4767 - }, - { - "l": "91.0", - "x": 10.25, - "y": 55.506 - }, - { - "l": "91.0", - "x": 10.3333, - "y": 55.5352 - }, - { - "l": "91.0", - "x": 10.4167, - "y": 55.5645 - }, - { - "l": "91.0", - "x": 10.5, - "y": 55.5938 - }, - { - "l": "91.0", - "x": 10.5833, - "y": 55.6231 - }, - { - "l": "91.0", - "x": 10.6667, - "y": 55.6513 - }, - { - "l": "91.0", - "x": 10.75, - "y": 55.6806 - }, - { - "l": "91.0", - "x": 10.8333, - "y": 55.7079 - }, - { - "l": "91.0", - "x": 10.9167, - "y": 55.7361 - }, - { - "l": "91.0", - "x": 11.0, - "y": 55.7654 - }, - { - "l": "91.0", - "x": 11.0833, - "y": 55.7934 - }, - { - "l": "91.0", - "x": 11.1667, - "y": 55.8206 - }, - { - "l": "91.0", - "x": 11.25, - "y": 55.8478 - }, - { - "l": "91.0", - "x": 11.3333, - "y": 55.8751 - }, - { - "l": "91.0", - "x": 11.4167, - "y": 55.9023 - }, - { - "l": "91.0", - "x": 11.5, - "y": 55.9295 - }, - { - "l": "91.0", - "x": 11.5833, - "y": 55.9568 - }, - { - "l": "91.0", - "x": 11.6667, - "y": 55.9837 - }, - { - "l": "91.0", - "x": 11.75, - "y": 56.0099 - }, - { - "l": "91.0", - "x": 11.8333, - "y": 56.0361 - }, - { - "l": "91.0", - "x": 11.9167, - "y": 56.0623 - }, - { - "l": "91.0", - "x": 12.0, - "y": 56.0886 - }, - { - "l": "91.0", - "x": 12.0833, - "y": 56.1137 - }, - { - "l": "91.0", - "x": 12.1667, - "y": 56.1389 - }, - { - "l": "91.0", - "x": 12.25, - "y": 56.1641 - }, - { - "l": "91.0", - "x": 12.3333, - "y": 56.1893 - }, - { - "l": "91.0", - "x": 12.4167, - "y": 56.2152 - }, - { - "l": "91.0", - "x": 12.5, - "y": 56.2394 - }, - { - "l": "91.0", - "x": 12.5833, - "y": 56.2646 - }, - { - "l": "91.0", - "x": 12.6667, - "y": 56.2887 - }, - { - "l": "91.0", - "x": 12.75, - "y": 56.3129 - }, - { - "l": "91.0", - "x": 12.8333, - "y": 56.3371 - }, - { - "l": "91.0", - "x": 12.9167, - "y": 56.3612 - }, - { - "l": "91.0", - "x": 13.0, - "y": 56.3843 - }, - { - "l": "91.0", - "x": 13.0833, - "y": 56.4085 - }, - { - "l": "91.0", - "x": 13.1667, - "y": 56.4317 - }, - { - "l": "91.0", - "x": 13.25, - "y": 56.4548 - }, - { - "l": "91.0", - "x": 13.3333, - "y": 56.479 - }, - { - "l": "91.0", - "x": 13.4167, - "y": 56.5021 - }, - { - "l": "91.0", - "x": 13.5, - "y": 56.5242 - }, - { - "l": "91.0", - "x": 13.5833, - "y": 56.5473 - }, - { - "l": "91.0", - "x": 13.6667, - "y": 56.5705 - }, - { - "l": "91.0", - "x": 13.75, - "y": 56.5926 - }, - { - "l": "91.0", - "x": 13.8333, - "y": 56.6147 - }, - { - "l": "91.0", - "x": 13.9167, - "y": 56.6368 - }, - { - "l": "91.0", - "x": 14.0, - "y": 56.6589 - }, - { - "l": "91.0", - "x": 14.0833, - "y": 56.6813 - }, - { - "l": "91.0", - "x": 14.1667, - "y": 56.7024 - }, - { - "l": "91.0", - "x": 14.25, - "y": 56.7245 - }, - { - "l": "91.0", - "x": 14.3333, - "y": 56.7467 - }, - { - "l": "91.0", - "x": 14.4167, - "y": 56.7678 - }, - { - "l": "91.0", - "x": 14.5, - "y": 56.7899 - }, - { - "l": "91.0", - "x": 14.5833, - "y": 56.811 - }, - { - "l": "91.0", - "x": 14.6667, - "y": 56.8313 - }, - { - "l": "91.0", - "x": 14.75, - "y": 56.8524 - }, - { - "l": "91.0", - "x": 14.8333, - "y": 56.8735 - }, - { - "l": "91.0", - "x": 14.9167, - "y": 56.8946 - }, - { - "l": "91.0", - "x": 15.0, - "y": 56.9149 - }, - { - "l": "91.0", - "x": 15.0833, - "y": 56.935 - }, - { - "l": "91.0", - "x": 15.1667, - "y": 56.9551 - }, - { - "l": "91.0", - "x": 15.25, - "y": 56.9762 - }, - { - "l": "91.0", - "x": 15.3333, - "y": 56.9962 - }, - { - "l": "91.0", - "x": 15.4167, - "y": 57.0156 - }, - { - "l": "91.0", - "x": 15.5, - "y": 57.0356 - }, - { - "l": "91.0", - "x": 15.5833, - "y": 57.0567 - }, - { - "l": "91.0", - "x": 15.6667, - "y": 57.075 - }, - { - "l": "91.0", - "x": 15.75, - "y": 57.0951 - }, - { - "l": "91.0", - "x": 15.8333, - "y": 57.1141 - }, - { - "l": "91.0", - "x": 15.9167, - "y": 57.1335 - }, - { - "l": "91.0", - "x": 16.0, - "y": 57.1525 - }, - { - "l": "91.0", - "x": 16.0833, - "y": 57.1726 - }, - { - "l": "91.0", - "x": 16.1667, - "y": 57.1898 - }, - { - "l": "91.0", - "x": 16.25, - "y": 57.2099 - }, - { - "l": "91.0", - "x": 16.3333, - "y": 57.2282 - }, - { - "l": "91.0", - "x": 16.4167, - "y": 57.2462 - }, - { - "l": "91.0", - "x": 16.5, - "y": 57.2663 - }, - { - "l": "91.0", - "x": 16.5833, - "y": 57.2846 - }, - { - "l": "91.0", - "x": 16.6667, - "y": 57.3026 - }, - { - "l": "91.0", - "x": 16.75, - "y": 57.3209 - }, - { - "l": "91.0", - "x": 16.8333, - "y": 57.34 - }, - { - "l": "91.0", - "x": 16.9167, - "y": 57.3569 - }, - { - "l": "91.0", - "x": 17.0, - "y": 57.3714 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 4.0, - "y": 53.4977 - }, - { - "l": "98.0", - "x": 4.0833, - "y": 53.5491 - }, - { - "l": "98.0", - "x": 4.1667, - "y": 53.6004 - }, - { - "l": "98.0", - "x": 4.25, - "y": 53.6487 - }, - { - "l": "98.0", - "x": 4.3333, - "y": 53.699 - }, - { - "l": "98.0", - "x": 4.4167, - "y": 53.7472 - }, - { - "l": "98.0", - "x": 4.5, - "y": 53.7943 - }, - { - "l": "98.0", - "x": 4.5833, - "y": 53.8425 - }, - { - "l": "98.0", - "x": 4.6667, - "y": 53.8886 - }, - { - "l": "98.0", - "x": 4.75, - "y": 53.9336 - }, - { - "l": "98.0", - "x": 4.8333, - "y": 53.9786 - }, - { - "l": "98.0", - "x": 4.9167, - "y": 54.0237 - }, - { - "l": "98.0", - "x": 5.0, - "y": 54.0676 - }, - { - "l": "98.0", - "x": 5.0833, - "y": 54.1116 - }, - { - "l": "98.0", - "x": 5.1667, - "y": 54.1555 - }, - { - "l": "98.0", - "x": 5.25, - "y": 54.1974 - }, - { - "l": "98.0", - "x": 5.3333, - "y": 54.2403 - }, - { - "l": "98.0", - "x": 5.4167, - "y": 54.2811 - }, - { - "l": "98.0", - "x": 5.5, - "y": 54.323 - }, - { - "l": "98.0", - "x": 5.5833, - "y": 54.3648 - }, - { - "l": "98.0", - "x": 5.6667, - "y": 54.4046 - }, - { - "l": "98.0", - "x": 5.75, - "y": 54.4443 - }, - { - "l": "98.0", - "x": 5.8333, - "y": 54.4841 - }, - { - "l": "98.0", - "x": 5.9167, - "y": 54.5238 - }, - { - "l": "98.0", - "x": 6.0, - "y": 54.5625 - }, - { - "l": "98.0", - "x": 6.0833, - "y": 54.6023 - }, - { - "l": "98.0", - "x": 6.1667, - "y": 54.6399 - }, - { - "l": "98.0", - "x": 6.25, - "y": 54.6786 - }, - { - "l": "98.0", - "x": 6.3333, - "y": 54.7173 - }, - { - "l": "98.0", - "x": 6.4167, - "y": 54.756 - }, - { - "l": "98.0", - "x": 6.5, - "y": 54.7926 - }, - { - "l": "98.0", - "x": 6.5833, - "y": 54.8303 - }, - { - "l": "98.0", - "x": 6.6667, - "y": 54.8669 - }, - { - "l": "98.0", - "x": 6.75, - "y": 54.9056 - }, - { - "l": "98.0", - "x": 6.8333, - "y": 54.9422 - }, - { - "l": "98.0", - "x": 6.9167, - "y": 54.9788 - }, - { - "l": "98.0", - "x": 7.0, - "y": 55.0164 - }, - { - "l": "98.0", - "x": 7.0833, - "y": 55.053 - }, - { - "l": "98.0", - "x": 7.1667, - "y": 55.0896 - }, - { - "l": "98.0", - "x": 7.25, - "y": 55.1263 - }, - { - "l": "98.0", - "x": 7.3333, - "y": 55.1629 - }, - { - "l": "98.0", - "x": 7.4167, - "y": 55.1984 - }, - { - "l": "98.0", - "x": 7.5, - "y": 55.235 - }, - { - "l": "98.0", - "x": 7.5833, - "y": 55.2706 - }, - { - "l": "98.0", - "x": 7.6667, - "y": 55.3072 - }, - { - "l": "98.0", - "x": 7.75, - "y": 55.3428 - }, - { - "l": "98.0", - "x": 7.8333, - "y": 55.3784 - }, - { - "l": "98.0", - "x": 7.9167, - "y": 55.414 - }, - { - "l": "98.0", - "x": 8.0, - "y": 55.4495 - }, - { - "l": "98.0", - "x": 8.0833, - "y": 55.4851 - }, - { - "l": "98.0", - "x": 8.1667, - "y": 55.5197 - }, - { - "l": "98.0", - "x": 8.25, - "y": 55.5552 - }, - { - "l": "98.0", - "x": 8.3333, - "y": 55.5909 - }, - { - "l": "98.0", - "x": 8.4167, - "y": 55.6243 - }, - { - "l": "98.0", - "x": 8.5, - "y": 55.6589 - }, - { - "l": "98.0", - "x": 8.5833, - "y": 55.6934 - }, - { - "l": "98.0", - "x": 8.6667, - "y": 55.728 - }, - { - "l": "98.0", - "x": 8.75, - "y": 55.7626 - }, - { - "l": "98.0", - "x": 8.8333, - "y": 55.7961 - }, - { - "l": "98.0", - "x": 8.9167, - "y": 55.8306 - }, - { - "l": "98.0", - "x": 9.0, - "y": 55.8642 - }, - { - "l": "98.0", - "x": 9.0833, - "y": 55.8966 - }, - { - "l": "98.0", - "x": 9.1667, - "y": 55.9312 - }, - { - "l": "98.0", - "x": 9.25, - "y": 55.9637 - }, - { - "l": "98.0", - "x": 9.3333, - "y": 55.9972 - }, - { - "l": "98.0", - "x": 9.4167, - "y": 56.0297 - }, - { - "l": "98.0", - "x": 9.5, - "y": 56.0622 - }, - { - "l": "98.0", - "x": 9.5833, - "y": 56.0947 - }, - { - "l": "98.0", - "x": 9.6667, - "y": 56.1272 - }, - { - "l": "98.0", - "x": 9.75, - "y": 56.1597 - }, - { - "l": "98.0", - "x": 9.8333, - "y": 56.1911 - }, - { - "l": "98.0", - "x": 9.9167, - "y": 56.2236 - }, - { - "l": "98.0", - "x": 10.0, - "y": 56.2551 - }, - { - "l": "98.0", - "x": 10.0833, - "y": 56.2866 - }, - { - "l": "98.0", - "x": 10.1667, - "y": 56.318 - }, - { - "l": "98.0", - "x": 10.25, - "y": 56.3484 - }, - { - "l": "98.0", - "x": 10.3333, - "y": 56.3789 - }, - { - "l": "98.0", - "x": 10.4167, - "y": 56.4093 - }, - { - "l": "98.0", - "x": 10.5, - "y": 56.4397 - }, - { - "l": "98.0", - "x": 10.5833, - "y": 56.4701 - }, - { - "l": "98.0", - "x": 10.6667, - "y": 56.4995 - }, - { - "l": "98.0", - "x": 10.75, - "y": 56.53 - }, - { - "l": "98.0", - "x": 10.8333, - "y": 56.5583 - }, - { - "l": "98.0", - "x": 10.9167, - "y": 56.5877 - }, - { - "l": "98.0", - "x": 11.0, - "y": 56.6181 - }, - { - "l": "98.0", - "x": 11.0833, - "y": 56.6475 - }, - { - "l": "98.0", - "x": 11.1667, - "y": 56.6759 - }, - { - "l": "98.0", - "x": 11.25, - "y": 56.7042 - }, - { - "l": "98.0", - "x": 11.3333, - "y": 56.7326 - }, - { - "l": "98.0", - "x": 11.4167, - "y": 56.761 - }, - { - "l": "98.0", - "x": 11.5, - "y": 56.7893 - }, - { - "l": "98.0", - "x": 11.5833, - "y": 56.8177 - }, - { - "l": "98.0", - "x": 11.6667, - "y": 56.8461 - }, - { - "l": "98.0", - "x": 11.75, - "y": 56.8734 - }, - { - "l": "98.0", - "x": 11.8333, - "y": 56.9007 - }, - { - "l": "98.0", - "x": 11.9167, - "y": 56.928 - }, - { - "l": "98.0", - "x": 12.0, - "y": 56.9553 - }, - { - "l": "98.0", - "x": 12.0833, - "y": 56.9816 - }, - { - "l": "98.0", - "x": 12.1667, - "y": 57.0079 - }, - { - "l": "98.0", - "x": 12.25, - "y": 57.0342 - }, - { - "l": "98.0", - "x": 12.3333, - "y": 57.0605 - }, - { - "l": "98.0", - "x": 12.4167, - "y": 57.0878 - }, - { - "l": "98.0", - "x": 12.5, - "y": 57.1131 - }, - { - "l": "98.0", - "x": 12.5833, - "y": 57.1394 - }, - { - "l": "98.0", - "x": 12.6667, - "y": 57.1646 - }, - { - "l": "98.0", - "x": 12.75, - "y": 57.1898 - }, - { - "l": "98.0", - "x": 12.8333, - "y": 57.2151 - }, - { - "l": "98.0", - "x": 12.9167, - "y": 57.2403 - }, - { - "l": "98.0", - "x": 13.0, - "y": 57.2645 - }, - { - "l": "98.0", - "x": 13.0833, - "y": 57.2898 - }, - { - "l": "98.0", - "x": 13.1667, - "y": 57.314 - }, - { - "l": "98.0", - "x": 13.25, - "y": 57.3382 - }, - { - "l": "98.0", - "x": 13.3333, - "y": 57.3634 - }, - { - "l": "98.0", - "x": 13.4167, - "y": 57.3876 - }, - { - "l": "98.0", - "x": 13.5, - "y": 57.4108 - }, - { - "l": "98.0", - "x": 13.5833, - "y": 57.435 - }, - { - "l": "98.0", - "x": 13.6667, - "y": 57.4592 - }, - { - "l": "98.0", - "x": 13.75, - "y": 57.4824 - }, - { - "l": "98.0", - "x": 13.8333, - "y": 57.5056 - }, - { - "l": "98.0", - "x": 13.9167, - "y": 57.5287 - }, - { - "l": "98.0", - "x": 14.0, - "y": 57.5519 - }, - { - "l": "98.0", - "x": 14.0833, - "y": 57.575 - }, - { - "l": "98.0", - "x": 14.1667, - "y": 57.5971 - }, - { - "l": "98.0", - "x": 14.25, - "y": 57.6203 - }, - { - "l": "98.0", - "x": 14.3333, - "y": 57.6435 - }, - { - "l": "98.0", - "x": 14.4167, - "y": 57.6656 - }, - { - "l": "98.0", - "x": 14.5, - "y": 57.6888 - }, - { - "l": "98.0", - "x": 14.5833, - "y": 57.7109 - }, - { - "l": "98.0", - "x": 14.6667, - "y": 57.732 - }, - { - "l": "98.0", - "x": 14.75, - "y": 57.7541 - }, - { - "l": "98.0", - "x": 14.8333, - "y": 57.7762 - }, - { - "l": "98.0", - "x": 14.9167, - "y": 57.7984 - }, - { - "l": "98.0", - "x": 15.0, - "y": 57.8194 - }, - { - "l": "98.0", - "x": 15.0833, - "y": 57.8405 - }, - { - "l": "98.0", - "x": 15.1667, - "y": 57.8616 - }, - { - "l": "98.0", - "x": 15.25, - "y": 57.8837 - }, - { - "l": "98.0", - "x": 15.3333, - "y": 57.9048 - }, - { - "l": "98.0", - "x": 15.4167, - "y": 57.9248 - }, - { - "l": "98.0", - "x": 15.5, - "y": 57.9459 - }, - { - "l": "98.0", - "x": 15.5833, - "y": 57.9681 - }, - { - "l": "98.0", - "x": 15.6667, - "y": 57.987 - }, - { - "l": "98.0", - "x": 15.75, - "y": 58.0081 - }, - { - "l": "98.0", - "x": 15.8333, - "y": 58.0282 - }, - { - "l": "98.0", - "x": 15.9167, - "y": 58.0482 - }, - { - "l": "98.0", - "x": 16.0, - "y": 58.0682 - }, - { - "l": "98.0", - "x": 16.0833, - "y": 58.0893 - }, - { - "l": "98.0", - "x": 16.1667, - "y": 58.1073 - }, - { - "l": "98.0", - "x": 16.25, - "y": 58.1284 - }, - { - "l": "98.0", - "x": 16.3333, - "y": 58.1473 - }, - { - "l": "98.0", - "x": 16.4167, - "y": 58.1663 - }, - { - "l": "98.0", - "x": 16.5, - "y": 58.1874 - }, - { - "l": "98.0", - "x": 16.5833, - "y": 58.2064 - }, - { - "l": "98.0", - "x": 16.6667, - "y": 58.2254 - }, - { - "l": "98.0", - "x": 16.75, - "y": 58.2444 - }, - { - "l": "98.0", - "x": 16.8333, - "y": 58.2644 - }, - { - "l": "98.0", - "x": 16.9167, - "y": 58.2824 - }, - { - "l": "98.0", - "x": 17.0, - "y": 58.2971 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 4.0, - "y": 54.2956 - }, - { - "l": "99.6", - "x": 4.0833, - "y": 54.3468 - }, - { - "l": "99.6", - "x": 4.1667, - "y": 54.3979 - }, - { - "l": "99.6", - "x": 4.25, - "y": 54.4456 - }, - { - "l": "99.6", - "x": 4.3333, - "y": 54.4956 - }, - { - "l": "99.6", - "x": 4.4167, - "y": 54.5436 - }, - { - "l": "99.6", - "x": 4.5, - "y": 54.5904 - }, - { - "l": "99.6", - "x": 4.5833, - "y": 54.6387 - }, - { - "l": "99.6", - "x": 4.6667, - "y": 54.6844 - }, - { - "l": "99.6", - "x": 4.75, - "y": 54.7295 - }, - { - "l": "99.6", - "x": 4.8333, - "y": 54.7745 - }, - { - "l": "99.6", - "x": 4.9167, - "y": 54.8192 - }, - { - "l": "99.6", - "x": 5.0, - "y": 54.8632 - }, - { - "l": "99.6", - "x": 5.0833, - "y": 54.9071 - }, - { - "l": "99.6", - "x": 5.1667, - "y": 54.9514 - }, - { - "l": "99.6", - "x": 5.25, - "y": 54.9932 - }, - { - "l": "99.6", - "x": 5.3333, - "y": 55.0364 - }, - { - "l": "99.6", - "x": 5.4167, - "y": 55.0772 - }, - { - "l": "99.6", - "x": 5.5, - "y": 55.1193 - }, - { - "l": "99.6", - "x": 5.5833, - "y": 55.1614 - }, - { - "l": "99.6", - "x": 5.6667, - "y": 55.2014 - }, - { - "l": "99.6", - "x": 5.75, - "y": 55.2414 - }, - { - "l": "99.6", - "x": 5.8333, - "y": 55.2814 - }, - { - "l": "99.6", - "x": 5.9167, - "y": 55.3214 - }, - { - "l": "99.6", - "x": 6.0, - "y": 55.3604 - }, - { - "l": "99.6", - "x": 6.0833, - "y": 55.4007 - }, - { - "l": "99.6", - "x": 6.1667, - "y": 55.4385 - }, - { - "l": "99.6", - "x": 6.25, - "y": 55.4778 - }, - { - "l": "99.6", - "x": 6.3333, - "y": 55.5171 - }, - { - "l": "99.6", - "x": 6.4167, - "y": 55.5563 - }, - { - "l": "99.6", - "x": 6.5, - "y": 55.5931 - }, - { - "l": "99.6", - "x": 6.5833, - "y": 55.6313 - }, - { - "l": "99.6", - "x": 6.6667, - "y": 55.6685 - }, - { - "l": "99.6", - "x": 6.75, - "y": 55.7081 - }, - { - "l": "99.6", - "x": 6.8333, - "y": 55.7452 - }, - { - "l": "99.6", - "x": 6.9167, - "y": 55.7824 - }, - { - "l": "99.6", - "x": 7.0, - "y": 55.8206 - }, - { - "l": "99.6", - "x": 7.0833, - "y": 55.858 - }, - { - "l": "99.6", - "x": 7.1667, - "y": 55.8952 - }, - { - "l": "99.6", - "x": 7.25, - "y": 55.9327 - }, - { - "l": "99.6", - "x": 7.3333, - "y": 55.9702 - }, - { - "l": "99.6", - "x": 7.4167, - "y": 56.0062 - }, - { - "l": "99.6", - "x": 7.5, - "y": 56.0437 - }, - { - "l": "99.6", - "x": 7.5833, - "y": 56.0802 - }, - { - "l": "99.6", - "x": 7.6667, - "y": 56.1177 - }, - { - "l": "99.6", - "x": 7.75, - "y": 56.1541 - }, - { - "l": "99.6", - "x": 7.8333, - "y": 56.1905 - }, - { - "l": "99.6", - "x": 7.9167, - "y": 56.227 - }, - { - "l": "99.6", - "x": 8.0, - "y": 56.2634 - }, - { - "l": "99.6", - "x": 8.0833, - "y": 56.2998 - }, - { - "l": "99.6", - "x": 8.1667, - "y": 56.3352 - }, - { - "l": "99.6", - "x": 8.25, - "y": 56.3717 - }, - { - "l": "99.6", - "x": 8.3333, - "y": 56.4085 - }, - { - "l": "99.6", - "x": 8.4167, - "y": 56.4428 - }, - { - "l": "99.6", - "x": 8.5, - "y": 56.4782 - }, - { - "l": "99.6", - "x": 8.5833, - "y": 56.5139 - }, - { - "l": "99.6", - "x": 8.6667, - "y": 56.5493 - }, - { - "l": "99.6", - "x": 8.75, - "y": 56.5851 - }, - { - "l": "99.6", - "x": 8.8333, - "y": 56.6194 - }, - { - "l": "99.6", - "x": 8.9167, - "y": 56.6552 - }, - { - "l": "99.6", - "x": 9.0, - "y": 56.6899 - }, - { - "l": "99.6", - "x": 9.0833, - "y": 56.7232 - }, - { - "l": "99.6", - "x": 9.1667, - "y": 56.7589 - }, - { - "l": "99.6", - "x": 9.25, - "y": 56.7926 - }, - { - "l": "99.6", - "x": 9.3333, - "y": 56.8273 - }, - { - "l": "99.6", - "x": 9.4167, - "y": 56.8606 - }, - { - "l": "99.6", - "x": 9.5, - "y": 56.8942 - }, - { - "l": "99.6", - "x": 9.5833, - "y": 56.9279 - }, - { - "l": "99.6", - "x": 9.6667, - "y": 56.9616 - }, - { - "l": "99.6", - "x": 9.75, - "y": 56.9952 - }, - { - "l": "99.6", - "x": 9.8333, - "y": 57.0278 - }, - { - "l": "99.6", - "x": 9.9167, - "y": 57.0615 - }, - { - "l": "99.6", - "x": 10.0, - "y": 57.0941 - }, - { - "l": "99.6", - "x": 10.0833, - "y": 57.1267 - }, - { - "l": "99.6", - "x": 10.1667, - "y": 57.1594 - }, - { - "l": "99.6", - "x": 10.25, - "y": 57.1909 - }, - { - "l": "99.6", - "x": 10.3333, - "y": 57.2225 - }, - { - "l": "99.6", - "x": 10.4167, - "y": 57.254 - }, - { - "l": "99.6", - "x": 10.5, - "y": 57.2856 - }, - { - "l": "99.6", - "x": 10.5833, - "y": 57.3172 - }, - { - "l": "99.6", - "x": 10.6667, - "y": 57.3477 - }, - { - "l": "99.6", - "x": 10.75, - "y": 57.3793 - }, - { - "l": "99.6", - "x": 10.8333, - "y": 57.4087 - }, - { - "l": "99.6", - "x": 10.9167, - "y": 57.4392 - }, - { - "l": "99.6", - "x": 11.0, - "y": 57.4708 - }, - { - "l": "99.6", - "x": 11.0833, - "y": 57.5017 - }, - { - "l": "99.6", - "x": 11.1667, - "y": 57.5312 - }, - { - "l": "99.6", - "x": 11.25, - "y": 57.5607 - }, - { - "l": "99.6", - "x": 11.3333, - "y": 57.5901 - }, - { - "l": "99.6", - "x": 11.4167, - "y": 57.6196 - }, - { - "l": "99.6", - "x": 11.5, - "y": 57.6491 - }, - { - "l": "99.6", - "x": 11.5833, - "y": 57.6786 - }, - { - "l": "99.6", - "x": 11.6667, - "y": 57.7084 - }, - { - "l": "99.6", - "x": 11.75, - "y": 57.7368 - }, - { - "l": "99.6", - "x": 11.8333, - "y": 57.7653 - }, - { - "l": "99.6", - "x": 11.9167, - "y": 57.7937 - }, - { - "l": "99.6", - "x": 12.0, - "y": 57.8221 - }, - { - "l": "99.6", - "x": 12.0833, - "y": 57.8495 - }, - { - "l": "99.6", - "x": 12.1667, - "y": 57.8769 - }, - { - "l": "99.6", - "x": 12.25, - "y": 57.9042 - }, - { - "l": "99.6", - "x": 12.3333, - "y": 57.9316 - }, - { - "l": "99.6", - "x": 12.4167, - "y": 57.9604 - }, - { - "l": "99.6", - "x": 12.5, - "y": 57.9868 - }, - { - "l": "99.6", - "x": 12.5833, - "y": 58.0141 - }, - { - "l": "99.6", - "x": 12.6667, - "y": 58.0405 - }, - { - "l": "99.6", - "x": 12.75, - "y": 58.0668 - }, - { - "l": "99.6", - "x": 12.8333, - "y": 58.0931 - }, - { - "l": "99.6", - "x": 12.9167, - "y": 58.1194 - }, - { - "l": "99.6", - "x": 13.0, - "y": 58.1447 - }, - { - "l": "99.6", - "x": 13.0833, - "y": 58.171 - }, - { - "l": "99.6", - "x": 13.1667, - "y": 58.1963 - }, - { - "l": "99.6", - "x": 13.25, - "y": 58.2216 - }, - { - "l": "99.6", - "x": 13.3333, - "y": 58.2479 - }, - { - "l": "99.6", - "x": 13.4167, - "y": 58.2732 - }, - { - "l": "99.6", - "x": 13.5, - "y": 58.2974 - }, - { - "l": "99.6", - "x": 13.5833, - "y": 58.3227 - }, - { - "l": "99.6", - "x": 13.6667, - "y": 58.348 - }, - { - "l": "99.6", - "x": 13.75, - "y": 58.3722 - }, - { - "l": "99.6", - "x": 13.8333, - "y": 58.3964 - }, - { - "l": "99.6", - "x": 13.9167, - "y": 58.4206 - }, - { - "l": "99.6", - "x": 14.0, - "y": 58.4449 - }, - { - "l": "99.6", - "x": 14.0833, - "y": 58.4687 - }, - { - "l": "99.6", - "x": 14.1667, - "y": 58.4919 - }, - { - "l": "99.6", - "x": 14.25, - "y": 58.5161 - }, - { - "l": "99.6", - "x": 14.3333, - "y": 58.5403 - }, - { - "l": "99.6", - "x": 14.4167, - "y": 58.5635 - }, - { - "l": "99.6", - "x": 14.5, - "y": 58.5877 - }, - { - "l": "99.6", - "x": 14.5833, - "y": 58.6109 - }, - { - "l": "99.6", - "x": 14.6667, - "y": 58.6326 - }, - { - "l": "99.6", - "x": 14.75, - "y": 58.6558 - }, - { - "l": "99.6", - "x": 14.8333, - "y": 58.679 - }, - { - "l": "99.6", - "x": 14.9167, - "y": 58.7022 - }, - { - "l": "99.6", - "x": 15.0, - "y": 58.7239 - }, - { - "l": "99.6", - "x": 15.0833, - "y": 58.746 - }, - { - "l": "99.6", - "x": 15.1667, - "y": 58.7681 - }, - { - "l": "99.6", - "x": 15.25, - "y": 58.7913 - }, - { - "l": "99.6", - "x": 15.3333, - "y": 58.8135 - }, - { - "l": "99.6", - "x": 15.4167, - "y": 58.8341 - }, - { - "l": "99.6", - "x": 15.5, - "y": 58.8562 - }, - { - "l": "99.6", - "x": 15.5833, - "y": 58.8794 - }, - { - "l": "99.6", - "x": 15.6667, - "y": 58.899 - }, - { - "l": "99.6", - "x": 15.75, - "y": 58.9212 - }, - { - "l": "99.6", - "x": 15.8333, - "y": 58.9422 - }, - { - "l": "99.6", - "x": 15.9167, - "y": 58.9629 - }, - { - "l": "99.6", - "x": 16.0, - "y": 58.984 - }, - { - "l": "99.6", - "x": 16.0833, - "y": 59.0061 - }, - { - "l": "99.6", - "x": 16.1667, - "y": 59.0247 - }, - { - "l": "99.6", - "x": 16.25, - "y": 59.0468 - }, - { - "l": "99.6", - "x": 16.3333, - "y": 59.0664 - }, - { - "l": "99.6", - "x": 16.4167, - "y": 59.0864 - }, - { - "l": "99.6", - "x": 16.5, - "y": 59.1086 - }, - { - "l": "99.6", - "x": 16.5833, - "y": 59.1282 - }, - { - "l": "99.6", - "x": 16.6667, - "y": 59.1482 - }, - { - "l": "99.6", - "x": 16.75, - "y": 59.1678 - }, - { - "l": "99.6", - "x": 16.8333, - "y": 59.1889 - }, - { - "l": "99.6", - "x": 16.9167, - "y": 59.2079 - }, - { - "l": "99.6", - "x": 17.0, - "y": 59.2228 - } - ] - } - ], - "bmi": null - } - } - } - ] -}; - -var ukwhoBMIMaleCentileData = { - "centile_data": [ - { - "uk90_preterm": { - "male": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -2.67, - "centile": 0.4, - "data": null - }, - { - "sds": -2.0, - "centile": 2.0, - "data": null - }, - { - "sds": -1.33, - "centile": 9.0, - "data": null - }, - { - "sds": -0.67, - "centile": 25.0, - "data": null - }, - { - "sds": 0.0, - "centile": 50.0, - "data": null - }, - { - "sds": 0.67, - "centile": 75.0, - "data": null - }, - { - "sds": 1.33, - "centile": 91.0, - "data": null - }, - { - "sds": 2.0, - "centile": 98.0, - "data": null - }, - { - "sds": 2.67, - "centile": 99.6, - "data": null - } - ] - }, - "female": null - } - }, - { - "uk_who_infant": { - "male": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 0.0383, - "y": 10.4484 - }, - { - "l": "0.4", - "x": 0.0575, - "y": 10.9981 - }, - { - "l": "0.4", - "x": 0.0767, - "y": 11.4952 - }, - { - "l": "0.4", - "x": 0.0958, - "y": 11.9143 - }, - { - "l": "0.4", - "x": 0.115, - "y": 12.2551 - }, - { - "l": "0.4", - "x": 0.1342, - "y": 12.5355 - }, - { - "l": "0.4", - "x": 0.1533, - "y": 12.7692 - }, - { - "l": "0.4", - "x": 0.1725, - "y": 12.9646 - }, - { - "l": "0.4", - "x": 0.1916, - "y": 13.1268 - }, - { - "l": "0.4", - "x": 0.2108, - "y": 13.261 - }, - { - "l": "0.4", - "x": 0.23, - "y": 13.3728 - }, - { - "l": "0.4", - "x": 0.2491, - "y": 13.4672 - }, - { - "l": "0.4", - "x": 0.2683, - "y": 13.5442 - }, - { - "l": "0.4", - "x": 0.2875, - "y": 13.6129 - }, - { - "l": "0.4", - "x": 0.3066, - "y": 13.6739 - }, - { - "l": "0.4", - "x": 0.3258, - "y": 13.7279 - }, - { - "l": "0.4", - "x": 0.345, - "y": 13.7756 - }, - { - "l": "0.4", - "x": 0.3641, - "y": 13.8175 - }, - { - "l": "0.4", - "x": 0.3833, - "y": 13.8539 - }, - { - "l": "0.4", - "x": 0.4025, - "y": 13.8853 - }, - { - "l": "0.4", - "x": 0.4216, - "y": 13.9125 - }, - { - "l": "0.4", - "x": 0.4408, - "y": 13.9361 - }, - { - "l": "0.4", - "x": 0.46, - "y": 13.9559 - }, - { - "l": "0.4", - "x": 0.4791, - "y": 13.9721 - }, - { - "l": "0.4", - "x": 0.4983, - "y": 13.985 - }, - { - "l": "0.4", - "x": 0.5175, - "y": 13.9951 - }, - { - "l": "0.4", - "x": 0.5366, - "y": 14.0022 - }, - { - "l": "0.4", - "x": 0.5558, - "y": 14.0066 - }, - { - "l": "0.4", - "x": 0.5749, - "y": 14.0083 - }, - { - "l": "0.4", - "x": 0.5941, - "y": 14.0074 - }, - { - "l": "0.4", - "x": 0.6133, - "y": 14.0042 - }, - { - "l": "0.4", - "x": 0.6324, - "y": 13.9988 - }, - { - "l": "0.4", - "x": 0.6516, - "y": 13.9915 - }, - { - "l": "0.4", - "x": 0.6708, - "y": 13.9823 - }, - { - "l": "0.4", - "x": 0.6899, - "y": 13.9716 - }, - { - "l": "0.4", - "x": 0.7091, - "y": 13.9593 - }, - { - "l": "0.4", - "x": 0.7283, - "y": 13.9458 - }, - { - "l": "0.4", - "x": 0.7474, - "y": 13.9311 - }, - { - "l": "0.4", - "x": 0.7666, - "y": 13.9156 - }, - { - "l": "0.4", - "x": 0.7858, - "y": 13.8992 - }, - { - "l": "0.4", - "x": 0.8049, - "y": 13.882 - }, - { - "l": "0.4", - "x": 0.8241, - "y": 13.8643 - }, - { - "l": "0.4", - "x": 0.8433, - "y": 13.8461 - }, - { - "l": "0.4", - "x": 0.8624, - "y": 13.8275 - }, - { - "l": "0.4", - "x": 0.8816, - "y": 13.8087 - }, - { - "l": "0.4", - "x": 0.9008, - "y": 13.7895 - }, - { - "l": "0.4", - "x": 0.9199, - "y": 13.7702 - }, - { - "l": "0.4", - "x": 0.9391, - "y": 13.7508 - }, - { - "l": "0.4", - "x": 0.9582, - "y": 13.7313 - }, - { - "l": "0.4", - "x": 0.9774, - "y": 13.7117 - }, - { - "l": "0.4", - "x": 0.9966, - "y": 13.6921 - }, - { - "l": "0.4", - "x": 1.0157, - "y": 13.6725 - }, - { - "l": "0.4", - "x": 1.0349, - "y": 13.653 - }, - { - "l": "0.4", - "x": 1.0541, - "y": 13.6336 - }, - { - "l": "0.4", - "x": 1.0732, - "y": 13.6142 - }, - { - "l": "0.4", - "x": 1.0924, - "y": 13.5949 - }, - { - "l": "0.4", - "x": 1.1116, - "y": 13.5756 - }, - { - "l": "0.4", - "x": 1.1307, - "y": 13.5565 - }, - { - "l": "0.4", - "x": 1.1499, - "y": 13.5376 - }, - { - "l": "0.4", - "x": 1.1691, - "y": 13.5188 - }, - { - "l": "0.4", - "x": 1.1882, - "y": 13.5002 - }, - { - "l": "0.4", - "x": 1.2074, - "y": 13.4818 - }, - { - "l": "0.4", - "x": 1.2266, - "y": 13.4637 - }, - { - "l": "0.4", - "x": 1.2457, - "y": 13.4457 - }, - { - "l": "0.4", - "x": 1.2649, - "y": 13.428 - }, - { - "l": "0.4", - "x": 1.2841, - "y": 13.4106 - }, - { - "l": "0.4", - "x": 1.3032, - "y": 13.3933 - }, - { - "l": "0.4", - "x": 1.3224, - "y": 13.3763 - }, - { - "l": "0.4", - "x": 1.3415, - "y": 13.3596 - }, - { - "l": "0.4", - "x": 1.3607, - "y": 13.3431 - }, - { - "l": "0.4", - "x": 1.3799, - "y": 13.3269 - }, - { - "l": "0.4", - "x": 1.399, - "y": 13.3109 - }, - { - "l": "0.4", - "x": 1.4182, - "y": 13.2952 - }, - { - "l": "0.4", - "x": 1.4374, - "y": 13.2796 - }, - { - "l": "0.4", - "x": 1.4565, - "y": 13.2643 - }, - { - "l": "0.4", - "x": 1.4757, - "y": 13.2493 - }, - { - "l": "0.4", - "x": 1.4949, - "y": 13.2346 - }, - { - "l": "0.4", - "x": 1.514, - "y": 13.2201 - }, - { - "l": "0.4", - "x": 1.5332, - "y": 13.206 - }, - { - "l": "0.4", - "x": 1.5524, - "y": 13.1921 - }, - { - "l": "0.4", - "x": 1.5715, - "y": 13.1786 - }, - { - "l": "0.4", - "x": 1.5907, - "y": 13.1654 - }, - { - "l": "0.4", - "x": 1.6099, - "y": 13.1524 - }, - { - "l": "0.4", - "x": 1.629, - "y": 13.1398 - }, - { - "l": "0.4", - "x": 1.6482, - "y": 13.1275 - }, - { - "l": "0.4", - "x": 1.6674, - "y": 13.1156 - }, - { - "l": "0.4", - "x": 1.6865, - "y": 13.104 - }, - { - "l": "0.4", - "x": 1.7057, - "y": 13.0927 - }, - { - "l": "0.4", - "x": 1.7248, - "y": 13.0818 - }, - { - "l": "0.4", - "x": 1.744, - "y": 13.0711 - }, - { - "l": "0.4", - "x": 1.7632, - "y": 13.0607 - }, - { - "l": "0.4", - "x": 1.7823, - "y": 13.0506 - }, - { - "l": "0.4", - "x": 1.8015, - "y": 13.0408 - }, - { - "l": "0.4", - "x": 1.8207, - "y": 13.0313 - }, - { - "l": "0.4", - "x": 1.8398, - "y": 13.022 - }, - { - "l": "0.4", - "x": 1.859, - "y": 13.013 - }, - { - "l": "0.4", - "x": 1.8782, - "y": 13.0043 - }, - { - "l": "0.4", - "x": 1.8973, - "y": 12.9959 - }, - { - "l": "0.4", - "x": 1.9165, - "y": 12.9877 - }, - { - "l": "0.4", - "x": 1.9357, - "y": 12.9802 - }, - { - "l": "0.4", - "x": 1.9548, - "y": 12.9726 - }, - { - "l": "0.4", - "x": 1.974, - "y": 12.9651 - }, - { - "l": "0.4", - "x": 1.9932, - "y": 12.9575 - }, - { - "l": "0.4", - "x": 2.0, - "y": 12.9548 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 0.0383, - "y": 11.1995 - }, - { - "l": "2.0", - "x": 0.0575, - "y": 11.7541 - }, - { - "l": "2.0", - "x": 0.0767, - "y": 12.26 - }, - { - "l": "2.0", - "x": 0.0958, - "y": 12.6872 - }, - { - "l": "2.0", - "x": 0.115, - "y": 13.0339 - }, - { - "l": "2.0", - "x": 0.1342, - "y": 13.3185 - }, - { - "l": "2.0", - "x": 0.1533, - "y": 13.5551 - }, - { - "l": "2.0", - "x": 0.1725, - "y": 13.7521 - }, - { - "l": "2.0", - "x": 0.1916, - "y": 13.9149 - }, - { - "l": "2.0", - "x": 0.2108, - "y": 14.049 - }, - { - "l": "2.0", - "x": 0.23, - "y": 14.1601 - }, - { - "l": "2.0", - "x": 0.2491, - "y": 14.2533 - }, - { - "l": "2.0", - "x": 0.2683, - "y": 14.3293 - }, - { - "l": "2.0", - "x": 0.2875, - "y": 14.3964 - }, - { - "l": "2.0", - "x": 0.3066, - "y": 14.4554 - }, - { - "l": "2.0", - "x": 0.3258, - "y": 14.5071 - }, - { - "l": "2.0", - "x": 0.345, - "y": 14.5527 - }, - { - "l": "2.0", - "x": 0.3641, - "y": 14.5927 - }, - { - "l": "2.0", - "x": 0.3833, - "y": 14.6272 - }, - { - "l": "2.0", - "x": 0.4025, - "y": 14.6566 - }, - { - "l": "2.0", - "x": 0.4216, - "y": 14.6817 - }, - { - "l": "2.0", - "x": 0.4408, - "y": 14.7032 - }, - { - "l": "2.0", - "x": 0.46, - "y": 14.7209 - }, - { - "l": "2.0", - "x": 0.4791, - "y": 14.735 - }, - { - "l": "2.0", - "x": 0.4983, - "y": 14.7457 - }, - { - "l": "2.0", - "x": 0.5175, - "y": 14.7535 - }, - { - "l": "2.0", - "x": 0.5366, - "y": 14.7583 - }, - { - "l": "2.0", - "x": 0.5558, - "y": 14.7603 - }, - { - "l": "2.0", - "x": 0.5749, - "y": 14.7597 - }, - { - "l": "2.0", - "x": 0.5941, - "y": 14.7564 - }, - { - "l": "2.0", - "x": 0.6133, - "y": 14.7507 - }, - { - "l": "2.0", - "x": 0.6324, - "y": 14.7428 - }, - { - "l": "2.0", - "x": 0.6516, - "y": 14.7329 - }, - { - "l": "2.0", - "x": 0.6708, - "y": 14.7212 - }, - { - "l": "2.0", - "x": 0.6899, - "y": 14.7079 - }, - { - "l": "2.0", - "x": 0.7091, - "y": 14.693 - }, - { - "l": "2.0", - "x": 0.7283, - "y": 14.6769 - }, - { - "l": "2.0", - "x": 0.7474, - "y": 14.6596 - }, - { - "l": "2.0", - "x": 0.7666, - "y": 14.6415 - }, - { - "l": "2.0", - "x": 0.7858, - "y": 14.6225 - }, - { - "l": "2.0", - "x": 0.8049, - "y": 14.6027 - }, - { - "l": "2.0", - "x": 0.8241, - "y": 14.5824 - }, - { - "l": "2.0", - "x": 0.8433, - "y": 14.5617 - }, - { - "l": "2.0", - "x": 0.8624, - "y": 14.5406 - }, - { - "l": "2.0", - "x": 0.8816, - "y": 14.5193 - }, - { - "l": "2.0", - "x": 0.9008, - "y": 14.4977 - }, - { - "l": "2.0", - "x": 0.9199, - "y": 14.4759 - }, - { - "l": "2.0", - "x": 0.9391, - "y": 14.4541 - }, - { - "l": "2.0", - "x": 0.9582, - "y": 14.4322 - }, - { - "l": "2.0", - "x": 0.9774, - "y": 14.4102 - }, - { - "l": "2.0", - "x": 0.9966, - "y": 14.3883 - }, - { - "l": "2.0", - "x": 1.0157, - "y": 14.3665 - }, - { - "l": "2.0", - "x": 1.0349, - "y": 14.3447 - }, - { - "l": "2.0", - "x": 1.0541, - "y": 14.323 - }, - { - "l": "2.0", - "x": 1.0732, - "y": 14.3014 - }, - { - "l": "2.0", - "x": 1.0924, - "y": 14.2799 - }, - { - "l": "2.0", - "x": 1.1116, - "y": 14.2586 - }, - { - "l": "2.0", - "x": 1.1307, - "y": 14.2374 - }, - { - "l": "2.0", - "x": 1.1499, - "y": 14.2163 - }, - { - "l": "2.0", - "x": 1.1691, - "y": 14.1955 - }, - { - "l": "2.0", - "x": 1.1882, - "y": 14.1749 - }, - { - "l": "2.0", - "x": 1.2074, - "y": 14.1546 - }, - { - "l": "2.0", - "x": 1.2266, - "y": 14.1345 - }, - { - "l": "2.0", - "x": 1.2457, - "y": 14.1146 - }, - { - "l": "2.0", - "x": 1.2649, - "y": 14.095 - }, - { - "l": "2.0", - "x": 1.2841, - "y": 14.0757 - }, - { - "l": "2.0", - "x": 1.3032, - "y": 14.0566 - }, - { - "l": "2.0", - "x": 1.3224, - "y": 14.0378 - }, - { - "l": "2.0", - "x": 1.3415, - "y": 14.0193 - }, - { - "l": "2.0", - "x": 1.3607, - "y": 14.0011 - }, - { - "l": "2.0", - "x": 1.3799, - "y": 13.9832 - }, - { - "l": "2.0", - "x": 1.399, - "y": 13.9655 - }, - { - "l": "2.0", - "x": 1.4182, - "y": 13.9481 - }, - { - "l": "2.0", - "x": 1.4374, - "y": 13.9309 - }, - { - "l": "2.0", - "x": 1.4565, - "y": 13.914 - }, - { - "l": "2.0", - "x": 1.4757, - "y": 13.8975 - }, - { - "l": "2.0", - "x": 1.4949, - "y": 13.8812 - }, - { - "l": "2.0", - "x": 1.514, - "y": 13.8652 - }, - { - "l": "2.0", - "x": 1.5332, - "y": 13.8496 - }, - { - "l": "2.0", - "x": 1.5524, - "y": 13.8343 - }, - { - "l": "2.0", - "x": 1.5715, - "y": 13.8193 - }, - { - "l": "2.0", - "x": 1.5907, - "y": 13.8046 - }, - { - "l": "2.0", - "x": 1.6099, - "y": 13.7903 - }, - { - "l": "2.0", - "x": 1.629, - "y": 13.7763 - }, - { - "l": "2.0", - "x": 1.6482, - "y": 13.7627 - }, - { - "l": "2.0", - "x": 1.6674, - "y": 13.7494 - }, - { - "l": "2.0", - "x": 1.6865, - "y": 13.7365 - }, - { - "l": "2.0", - "x": 1.7057, - "y": 13.724 - }, - { - "l": "2.0", - "x": 1.7248, - "y": 13.7118 - }, - { - "l": "2.0", - "x": 1.744, - "y": 13.6999 - }, - { - "l": "2.0", - "x": 1.7632, - "y": 13.6884 - }, - { - "l": "2.0", - "x": 1.7823, - "y": 13.6771 - }, - { - "l": "2.0", - "x": 1.8015, - "y": 13.6662 - }, - { - "l": "2.0", - "x": 1.8207, - "y": 13.6555 - }, - { - "l": "2.0", - "x": 1.8398, - "y": 13.6452 - }, - { - "l": "2.0", - "x": 1.859, - "y": 13.6351 - }, - { - "l": "2.0", - "x": 1.8782, - "y": 13.6254 - }, - { - "l": "2.0", - "x": 1.8973, - "y": 13.6159 - }, - { - "l": "2.0", - "x": 1.9165, - "y": 13.6067 - }, - { - "l": "2.0", - "x": 1.9357, - "y": 13.5982 - }, - { - "l": "2.0", - "x": 1.9548, - "y": 13.5897 - }, - { - "l": "2.0", - "x": 1.974, - "y": 13.5812 - }, - { - "l": "2.0", - "x": 1.9932, - "y": 13.5727 - }, - { - "l": "2.0", - "x": 2.0, - "y": 13.5697 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 0.0383, - "y": 11.9813 - }, - { - "l": "9.0", - "x": 0.0575, - "y": 12.5433 - }, - { - "l": "9.0", - "x": 0.0767, - "y": 13.0603 - }, - { - "l": "9.0", - "x": 0.0958, - "y": 13.4975 - }, - { - "l": "9.0", - "x": 0.115, - "y": 13.8518 - }, - { - "l": "9.0", - "x": 0.1342, - "y": 14.142 - }, - { - "l": "9.0", - "x": 0.1533, - "y": 14.3825 - }, - { - "l": "9.0", - "x": 0.1725, - "y": 14.5823 - }, - { - "l": "9.0", - "x": 0.1916, - "y": 14.7466 - }, - { - "l": "9.0", - "x": 0.2108, - "y": 14.8813 - }, - { - "l": "9.0", - "x": 0.23, - "y": 14.9923 - }, - { - "l": "9.0", - "x": 0.2491, - "y": 15.0848 - }, - { - "l": "9.0", - "x": 0.2683, - "y": 15.1604 - }, - { - "l": "9.0", - "x": 0.2875, - "y": 15.2265 - }, - { - "l": "9.0", - "x": 0.3066, - "y": 15.2839 - }, - { - "l": "9.0", - "x": 0.3258, - "y": 15.3337 - }, - { - "l": "9.0", - "x": 0.345, - "y": 15.3776 - }, - { - "l": "9.0", - "x": 0.3641, - "y": 15.416 - }, - { - "l": "9.0", - "x": 0.3833, - "y": 15.4488 - }, - { - "l": "9.0", - "x": 0.4025, - "y": 15.4765 - }, - { - "l": "9.0", - "x": 0.4216, - "y": 15.4998 - }, - { - "l": "9.0", - "x": 0.4408, - "y": 15.5195 - }, - { - "l": "9.0", - "x": 0.46, - "y": 15.5353 - }, - { - "l": "9.0", - "x": 0.4791, - "y": 15.5474 - }, - { - "l": "9.0", - "x": 0.4983, - "y": 15.5561 - }, - { - "l": "9.0", - "x": 0.5175, - "y": 15.5618 - }, - { - "l": "9.0", - "x": 0.5366, - "y": 15.5645 - }, - { - "l": "9.0", - "x": 0.5558, - "y": 15.5643 - }, - { - "l": "9.0", - "x": 0.5749, - "y": 15.5614 - }, - { - "l": "9.0", - "x": 0.5941, - "y": 15.5558 - }, - { - "l": "9.0", - "x": 0.6133, - "y": 15.5478 - }, - { - "l": "9.0", - "x": 0.6324, - "y": 15.5375 - }, - { - "l": "9.0", - "x": 0.6516, - "y": 15.5251 - }, - { - "l": "9.0", - "x": 0.6708, - "y": 15.5109 - }, - { - "l": "9.0", - "x": 0.6899, - "y": 15.495 - }, - { - "l": "9.0", - "x": 0.7091, - "y": 15.4777 - }, - { - "l": "9.0", - "x": 0.7283, - "y": 15.459 - }, - { - "l": "9.0", - "x": 0.7474, - "y": 15.4391 - }, - { - "l": "9.0", - "x": 0.7666, - "y": 15.4184 - }, - { - "l": "9.0", - "x": 0.7858, - "y": 15.3968 - }, - { - "l": "9.0", - "x": 0.8049, - "y": 15.3745 - }, - { - "l": "9.0", - "x": 0.8241, - "y": 15.3516 - }, - { - "l": "9.0", - "x": 0.8433, - "y": 15.3284 - }, - { - "l": "9.0", - "x": 0.8624, - "y": 15.3048 - }, - { - "l": "9.0", - "x": 0.8816, - "y": 15.2809 - }, - { - "l": "9.0", - "x": 0.9008, - "y": 15.2568 - }, - { - "l": "9.0", - "x": 0.9199, - "y": 15.2326 - }, - { - "l": "9.0", - "x": 0.9391, - "y": 15.2084 - }, - { - "l": "9.0", - "x": 0.9582, - "y": 15.1841 - }, - { - "l": "9.0", - "x": 0.9774, - "y": 15.1598 - }, - { - "l": "9.0", - "x": 0.9966, - "y": 15.1355 - }, - { - "l": "9.0", - "x": 1.0157, - "y": 15.1114 - }, - { - "l": "9.0", - "x": 1.0349, - "y": 15.0873 - }, - { - "l": "9.0", - "x": 1.0541, - "y": 15.0633 - }, - { - "l": "9.0", - "x": 1.0732, - "y": 15.0395 - }, - { - "l": "9.0", - "x": 1.0924, - "y": 15.0158 - }, - { - "l": "9.0", - "x": 1.1116, - "y": 14.9923 - }, - { - "l": "9.0", - "x": 1.1307, - "y": 14.969 - }, - { - "l": "9.0", - "x": 1.1499, - "y": 14.9459 - }, - { - "l": "9.0", - "x": 1.1691, - "y": 14.923 - }, - { - "l": "9.0", - "x": 1.1882, - "y": 14.9004 - }, - { - "l": "9.0", - "x": 1.2074, - "y": 14.878 - }, - { - "l": "9.0", - "x": 1.2266, - "y": 14.8559 - }, - { - "l": "9.0", - "x": 1.2457, - "y": 14.8341 - }, - { - "l": "9.0", - "x": 1.2649, - "y": 14.8126 - }, - { - "l": "9.0", - "x": 1.2841, - "y": 14.7914 - }, - { - "l": "9.0", - "x": 1.3032, - "y": 14.7705 - }, - { - "l": "9.0", - "x": 1.3224, - "y": 14.7498 - }, - { - "l": "9.0", - "x": 1.3415, - "y": 14.7295 - }, - { - "l": "9.0", - "x": 1.3607, - "y": 14.7095 - }, - { - "l": "9.0", - "x": 1.3799, - "y": 14.6898 - }, - { - "l": "9.0", - "x": 1.399, - "y": 14.6705 - }, - { - "l": "9.0", - "x": 1.4182, - "y": 14.6514 - }, - { - "l": "9.0", - "x": 1.4374, - "y": 14.6325 - }, - { - "l": "9.0", - "x": 1.4565, - "y": 14.614 - }, - { - "l": "9.0", - "x": 1.4757, - "y": 14.5958 - }, - { - "l": "9.0", - "x": 1.4949, - "y": 14.578 - }, - { - "l": "9.0", - "x": 1.514, - "y": 14.5605 - }, - { - "l": "9.0", - "x": 1.5332, - "y": 14.5433 - }, - { - "l": "9.0", - "x": 1.5524, - "y": 14.5265 - }, - { - "l": "9.0", - "x": 1.5715, - "y": 14.51 - }, - { - "l": "9.0", - "x": 1.5907, - "y": 14.4939 - }, - { - "l": "9.0", - "x": 1.6099, - "y": 14.4782 - }, - { - "l": "9.0", - "x": 1.629, - "y": 14.4628 - }, - { - "l": "9.0", - "x": 1.6482, - "y": 14.4478 - }, - { - "l": "9.0", - "x": 1.6674, - "y": 14.4332 - }, - { - "l": "9.0", - "x": 1.6865, - "y": 14.419 - }, - { - "l": "9.0", - "x": 1.7057, - "y": 14.4052 - }, - { - "l": "9.0", - "x": 1.7248, - "y": 14.3917 - }, - { - "l": "9.0", - "x": 1.744, - "y": 14.3786 - }, - { - "l": "9.0", - "x": 1.7632, - "y": 14.3658 - }, - { - "l": "9.0", - "x": 1.7823, - "y": 14.3534 - }, - { - "l": "9.0", - "x": 1.8015, - "y": 14.3413 - }, - { - "l": "9.0", - "x": 1.8207, - "y": 14.3295 - }, - { - "l": "9.0", - "x": 1.8398, - "y": 14.3181 - }, - { - "l": "9.0", - "x": 1.859, - "y": 14.3069 - }, - { - "l": "9.0", - "x": 1.8782, - "y": 14.2961 - }, - { - "l": "9.0", - "x": 1.8973, - "y": 14.2856 - }, - { - "l": "9.0", - "x": 1.9165, - "y": 14.2753 - }, - { - "l": "9.0", - "x": 1.9357, - "y": 14.2659 - }, - { - "l": "9.0", - "x": 1.9548, - "y": 14.2564 - }, - { - "l": "9.0", - "x": 1.974, - "y": 14.2469 - }, - { - "l": "9.0", - "x": 1.9932, - "y": 14.2375 - }, - { - "l": "9.0", - "x": 2.0, - "y": 14.2341 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 0.0383, - "y": 12.7939 - }, - { - "l": "25.0", - "x": 0.0575, - "y": 13.3664 - }, - { - "l": "25.0", - "x": 0.0767, - "y": 13.8971 - }, - { - "l": "25.0", - "x": 0.0958, - "y": 14.3465 - }, - { - "l": "25.0", - "x": 0.115, - "y": 14.7102 - }, - { - "l": "25.0", - "x": 0.1342, - "y": 15.0075 - }, - { - "l": "25.0", - "x": 0.1533, - "y": 15.2535 - }, - { - "l": "25.0", - "x": 0.1725, - "y": 15.4571 - }, - { - "l": "25.0", - "x": 0.1916, - "y": 15.624 - }, - { - "l": "25.0", - "x": 0.2108, - "y": 15.7602 - }, - { - "l": "25.0", - "x": 0.23, - "y": 15.872 - }, - { - "l": "25.0", - "x": 0.2491, - "y": 15.9645 - }, - { - "l": "25.0", - "x": 0.2683, - "y": 16.0404 - }, - { - "l": "25.0", - "x": 0.2875, - "y": 16.106 - }, - { - "l": "25.0", - "x": 0.3066, - "y": 16.1623 - }, - { - "l": "25.0", - "x": 0.3258, - "y": 16.2107 - }, - { - "l": "25.0", - "x": 0.345, - "y": 16.2533 - }, - { - "l": "25.0", - "x": 0.3641, - "y": 16.2905 - }, - { - "l": "25.0", - "x": 0.3833, - "y": 16.3221 - }, - { - "l": "25.0", - "x": 0.4025, - "y": 16.3484 - }, - { - "l": "25.0", - "x": 0.4216, - "y": 16.3703 - }, - { - "l": "25.0", - "x": 0.4408, - "y": 16.3885 - }, - { - "l": "25.0", - "x": 0.46, - "y": 16.4028 - }, - { - "l": "25.0", - "x": 0.4791, - "y": 16.4132 - }, - { - "l": "25.0", - "x": 0.4983, - "y": 16.4201 - }, - { - "l": "25.0", - "x": 0.5175, - "y": 16.424 - }, - { - "l": "25.0", - "x": 0.5366, - "y": 16.4248 - }, - { - "l": "25.0", - "x": 0.5558, - "y": 16.4226 - }, - { - "l": "25.0", - "x": 0.5749, - "y": 16.4176 - }, - { - "l": "25.0", - "x": 0.5941, - "y": 16.4099 - }, - { - "l": "25.0", - "x": 0.6133, - "y": 16.3996 - }, - { - "l": "25.0", - "x": 0.6324, - "y": 16.387 - }, - { - "l": "25.0", - "x": 0.6516, - "y": 16.3723 - }, - { - "l": "25.0", - "x": 0.6708, - "y": 16.3558 - }, - { - "l": "25.0", - "x": 0.6899, - "y": 16.3375 - }, - { - "l": "25.0", - "x": 0.7091, - "y": 16.3177 - }, - { - "l": "25.0", - "x": 0.7283, - "y": 16.2965 - }, - { - "l": "25.0", - "x": 0.7474, - "y": 16.2741 - }, - { - "l": "25.0", - "x": 0.7666, - "y": 16.2509 - }, - { - "l": "25.0", - "x": 0.7858, - "y": 16.2268 - }, - { - "l": "25.0", - "x": 0.8049, - "y": 16.202 - }, - { - "l": "25.0", - "x": 0.8241, - "y": 16.1766 - }, - { - "l": "25.0", - "x": 0.8433, - "y": 16.1508 - }, - { - "l": "25.0", - "x": 0.8624, - "y": 16.1247 - }, - { - "l": "25.0", - "x": 0.8816, - "y": 16.0984 - }, - { - "l": "25.0", - "x": 0.9008, - "y": 16.0718 - }, - { - "l": "25.0", - "x": 0.9199, - "y": 16.0452 - }, - { - "l": "25.0", - "x": 0.9391, - "y": 16.0185 - }, - { - "l": "25.0", - "x": 0.9582, - "y": 15.9919 - }, - { - "l": "25.0", - "x": 0.9774, - "y": 15.9653 - }, - { - "l": "25.0", - "x": 0.9966, - "y": 15.9387 - }, - { - "l": "25.0", - "x": 1.0157, - "y": 15.9122 - }, - { - "l": "25.0", - "x": 1.0349, - "y": 15.8858 - }, - { - "l": "25.0", - "x": 1.0541, - "y": 15.8596 - }, - { - "l": "25.0", - "x": 1.0732, - "y": 15.8335 - }, - { - "l": "25.0", - "x": 1.0924, - "y": 15.8076 - }, - { - "l": "25.0", - "x": 1.1116, - "y": 15.782 - }, - { - "l": "25.0", - "x": 1.1307, - "y": 15.7565 - }, - { - "l": "25.0", - "x": 1.1499, - "y": 15.7313 - }, - { - "l": "25.0", - "x": 1.1691, - "y": 15.7064 - }, - { - "l": "25.0", - "x": 1.1882, - "y": 15.6817 - }, - { - "l": "25.0", - "x": 1.2074, - "y": 15.6573 - }, - { - "l": "25.0", - "x": 1.2266, - "y": 15.6333 - }, - { - "l": "25.0", - "x": 1.2457, - "y": 15.6095 - }, - { - "l": "25.0", - "x": 1.2649, - "y": 15.586 - }, - { - "l": "25.0", - "x": 1.2841, - "y": 15.5629 - }, - { - "l": "25.0", - "x": 1.3032, - "y": 15.5401 - }, - { - "l": "25.0", - "x": 1.3224, - "y": 15.5176 - }, - { - "l": "25.0", - "x": 1.3415, - "y": 15.4955 - }, - { - "l": "25.0", - "x": 1.3607, - "y": 15.4737 - }, - { - "l": "25.0", - "x": 1.3799, - "y": 15.4523 - }, - { - "l": "25.0", - "x": 1.399, - "y": 15.4311 - }, - { - "l": "25.0", - "x": 1.4182, - "y": 15.4103 - }, - { - "l": "25.0", - "x": 1.4374, - "y": 15.3898 - }, - { - "l": "25.0", - "x": 1.4565, - "y": 15.3697 - }, - { - "l": "25.0", - "x": 1.4757, - "y": 15.3499 - }, - { - "l": "25.0", - "x": 1.4949, - "y": 15.3305 - }, - { - "l": "25.0", - "x": 1.514, - "y": 15.3114 - }, - { - "l": "25.0", - "x": 1.5332, - "y": 15.2927 - }, - { - "l": "25.0", - "x": 1.5524, - "y": 15.2743 - }, - { - "l": "25.0", - "x": 1.5715, - "y": 15.2564 - }, - { - "l": "25.0", - "x": 1.5907, - "y": 15.2388 - }, - { - "l": "25.0", - "x": 1.6099, - "y": 15.2216 - }, - { - "l": "25.0", - "x": 1.629, - "y": 15.2049 - }, - { - "l": "25.0", - "x": 1.6482, - "y": 15.1885 - }, - { - "l": "25.0", - "x": 1.6674, - "y": 15.1725 - }, - { - "l": "25.0", - "x": 1.6865, - "y": 15.157 - }, - { - "l": "25.0", - "x": 1.7057, - "y": 15.1418 - }, - { - "l": "25.0", - "x": 1.7248, - "y": 15.1271 - }, - { - "l": "25.0", - "x": 1.744, - "y": 15.1127 - }, - { - "l": "25.0", - "x": 1.7632, - "y": 15.0987 - }, - { - "l": "25.0", - "x": 1.7823, - "y": 15.0851 - }, - { - "l": "25.0", - "x": 1.8015, - "y": 15.0719 - }, - { - "l": "25.0", - "x": 1.8207, - "y": 15.0589 - }, - { - "l": "25.0", - "x": 1.8398, - "y": 15.0464 - }, - { - "l": "25.0", - "x": 1.859, - "y": 15.0341 - }, - { - "l": "25.0", - "x": 1.8782, - "y": 15.0222 - }, - { - "l": "25.0", - "x": 1.8973, - "y": 15.0106 - }, - { - "l": "25.0", - "x": 1.9165, - "y": 14.9994 - }, - { - "l": "25.0", - "x": 1.9357, - "y": 14.9889 - }, - { - "l": "25.0", - "x": 1.9548, - "y": 14.9785 - }, - { - "l": "25.0", - "x": 1.974, - "y": 14.968 - }, - { - "l": "25.0", - "x": 1.9932, - "y": 14.9576 - }, - { - "l": "25.0", - "x": 2.0, - "y": 14.9538 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 0.0383, - "y": 13.6377 - }, - { - "l": "50.0", - "x": 0.0575, - "y": 14.2241 - }, - { - "l": "50.0", - "x": 0.0767, - "y": 14.7714 - }, - { - "l": "50.0", - "x": 0.0958, - "y": 15.2355 - }, - { - "l": "50.0", - "x": 0.115, - "y": 15.6107 - }, - { - "l": "50.0", - "x": 0.1342, - "y": 15.9169 - }, - { - "l": "50.0", - "x": 0.1533, - "y": 16.1698 - }, - { - "l": "50.0", - "x": 0.1725, - "y": 16.3787 - }, - { - "l": "50.0", - "x": 0.1916, - "y": 16.5494 - }, - { - "l": "50.0", - "x": 0.2108, - "y": 16.6882 - }, - { - "l": "50.0", - "x": 0.23, - "y": 16.8016 - }, - { - "l": "50.0", - "x": 0.2491, - "y": 16.895 - }, - { - "l": "50.0", - "x": 0.2683, - "y": 16.9721 - }, - { - "l": "50.0", - "x": 0.2875, - "y": 17.0379 - }, - { - "l": "50.0", - "x": 0.3066, - "y": 17.0939 - }, - { - "l": "50.0", - "x": 0.3258, - "y": 17.1413 - }, - { - "l": "50.0", - "x": 0.345, - "y": 17.1832 - }, - { - "l": "50.0", - "x": 0.3641, - "y": 17.2198 - }, - { - "l": "50.0", - "x": 0.3833, - "y": 17.2506 - }, - { - "l": "50.0", - "x": 0.4025, - "y": 17.2761 - }, - { - "l": "50.0", - "x": 0.4216, - "y": 17.297 - }, - { - "l": "50.0", - "x": 0.4408, - "y": 17.3142 - }, - { - "l": "50.0", - "x": 0.46, - "y": 17.3272 - }, - { - "l": "50.0", - "x": 0.4791, - "y": 17.3364 - }, - { - "l": "50.0", - "x": 0.4983, - "y": 17.3419 - }, - { - "l": "50.0", - "x": 0.5175, - "y": 17.3442 - }, - { - "l": "50.0", - "x": 0.5366, - "y": 17.3434 - }, - { - "l": "50.0", - "x": 0.5558, - "y": 17.3395 - }, - { - "l": "50.0", - "x": 0.5749, - "y": 17.3327 - }, - { - "l": "50.0", - "x": 0.5941, - "y": 17.323 - }, - { - "l": "50.0", - "x": 0.6133, - "y": 17.3108 - }, - { - "l": "50.0", - "x": 0.6324, - "y": 17.2961 - }, - { - "l": "50.0", - "x": 0.6516, - "y": 17.2793 - }, - { - "l": "50.0", - "x": 0.6708, - "y": 17.2605 - }, - { - "l": "50.0", - "x": 0.6899, - "y": 17.24 - }, - { - "l": "50.0", - "x": 0.7091, - "y": 17.2179 - }, - { - "l": "50.0", - "x": 0.7283, - "y": 17.1943 - }, - { - "l": "50.0", - "x": 0.7474, - "y": 17.1696 - }, - { - "l": "50.0", - "x": 0.7666, - "y": 17.144 - }, - { - "l": "50.0", - "x": 0.7858, - "y": 17.1175 - }, - { - "l": "50.0", - "x": 0.8049, - "y": 17.0902 - }, - { - "l": "50.0", - "x": 0.8241, - "y": 17.0624 - }, - { - "l": "50.0", - "x": 0.8433, - "y": 17.0342 - }, - { - "l": "50.0", - "x": 0.8624, - "y": 17.0057 - }, - { - "l": "50.0", - "x": 0.8816, - "y": 16.977 - }, - { - "l": "50.0", - "x": 0.9008, - "y": 16.948 - }, - { - "l": "50.0", - "x": 0.9199, - "y": 16.919 - }, - { - "l": "50.0", - "x": 0.9391, - "y": 16.89 - }, - { - "l": "50.0", - "x": 0.9582, - "y": 16.8611 - }, - { - "l": "50.0", - "x": 0.9774, - "y": 16.8321 - }, - { - "l": "50.0", - "x": 0.9966, - "y": 16.8032 - }, - { - "l": "50.0", - "x": 1.0157, - "y": 16.7745 - }, - { - "l": "50.0", - "x": 1.0349, - "y": 16.7459 - }, - { - "l": "50.0", - "x": 1.0541, - "y": 16.7174 - }, - { - "l": "50.0", - "x": 1.0732, - "y": 16.6891 - }, - { - "l": "50.0", - "x": 1.0924, - "y": 16.6611 - }, - { - "l": "50.0", - "x": 1.1116, - "y": 16.6333 - }, - { - "l": "50.0", - "x": 1.1307, - "y": 16.6057 - }, - { - "l": "50.0", - "x": 1.1499, - "y": 16.5784 - }, - { - "l": "50.0", - "x": 1.1691, - "y": 16.5514 - }, - { - "l": "50.0", - "x": 1.1882, - "y": 16.5248 - }, - { - "l": "50.0", - "x": 1.2074, - "y": 16.4984 - }, - { - "l": "50.0", - "x": 1.2266, - "y": 16.4723 - }, - { - "l": "50.0", - "x": 1.2457, - "y": 16.4466 - }, - { - "l": "50.0", - "x": 1.2649, - "y": 16.4212 - }, - { - "l": "50.0", - "x": 1.2841, - "y": 16.3962 - }, - { - "l": "50.0", - "x": 1.3032, - "y": 16.3715 - }, - { - "l": "50.0", - "x": 1.3224, - "y": 16.3472 - }, - { - "l": "50.0", - "x": 1.3415, - "y": 16.3233 - }, - { - "l": "50.0", - "x": 1.3607, - "y": 16.2997 - }, - { - "l": "50.0", - "x": 1.3799, - "y": 16.2765 - }, - { - "l": "50.0", - "x": 1.399, - "y": 16.2536 - }, - { - "l": "50.0", - "x": 1.4182, - "y": 16.2311 - }, - { - "l": "50.0", - "x": 1.4374, - "y": 16.209 - }, - { - "l": "50.0", - "x": 1.4565, - "y": 16.1872 - }, - { - "l": "50.0", - "x": 1.4757, - "y": 16.1658 - }, - { - "l": "50.0", - "x": 1.4949, - "y": 16.1448 - }, - { - "l": "50.0", - "x": 1.514, - "y": 16.1241 - }, - { - "l": "50.0", - "x": 1.5332, - "y": 16.1039 - }, - { - "l": "50.0", - "x": 1.5524, - "y": 16.084 - }, - { - "l": "50.0", - "x": 1.5715, - "y": 16.0646 - }, - { - "l": "50.0", - "x": 1.5907, - "y": 16.0455 - }, - { - "l": "50.0", - "x": 1.6099, - "y": 16.0269 - }, - { - "l": "50.0", - "x": 1.629, - "y": 16.0088 - }, - { - "l": "50.0", - "x": 1.6482, - "y": 15.991 - }, - { - "l": "50.0", - "x": 1.6674, - "y": 15.9737 - }, - { - "l": "50.0", - "x": 1.6865, - "y": 15.9568 - }, - { - "l": "50.0", - "x": 1.7057, - "y": 15.9404 - }, - { - "l": "50.0", - "x": 1.7248, - "y": 15.9243 - }, - { - "l": "50.0", - "x": 1.744, - "y": 15.9087 - }, - { - "l": "50.0", - "x": 1.7632, - "y": 15.8935 - }, - { - "l": "50.0", - "x": 1.7823, - "y": 15.8787 - }, - { - "l": "50.0", - "x": 1.8015, - "y": 15.8643 - }, - { - "l": "50.0", - "x": 1.8207, - "y": 15.8503 - }, - { - "l": "50.0", - "x": 1.8398, - "y": 15.8366 - }, - { - "l": "50.0", - "x": 1.859, - "y": 15.8233 - }, - { - "l": "50.0", - "x": 1.8782, - "y": 15.8103 - }, - { - "l": "50.0", - "x": 1.8973, - "y": 15.7976 - }, - { - "l": "50.0", - "x": 1.9165, - "y": 15.7853 - }, - { - "l": "50.0", - "x": 1.9357, - "y": 15.7739 - }, - { - "l": "50.0", - "x": 1.9548, - "y": 15.7625 - }, - { - "l": "50.0", - "x": 1.974, - "y": 15.7511 - }, - { - "l": "50.0", - "x": 1.9932, - "y": 15.7397 - }, - { - "l": "50.0", - "x": 2.0, - "y": 15.7356 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 0.0383, - "y": 14.5131 - }, - { - "l": "75.0", - "x": 0.0575, - "y": 15.1171 - }, - { - "l": "75.0", - "x": 0.0767, - "y": 15.6842 - }, - { - "l": "75.0", - "x": 0.0958, - "y": 16.1657 - }, - { - "l": "75.0", - "x": 0.115, - "y": 16.5547 - }, - { - "l": "75.0", - "x": 0.1342, - "y": 16.8719 - }, - { - "l": "75.0", - "x": 0.1533, - "y": 17.1335 - }, - { - "l": "75.0", - "x": 0.1725, - "y": 17.3493 - }, - { - "l": "75.0", - "x": 0.1916, - "y": 17.5252 - }, - { - "l": "75.0", - "x": 0.2108, - "y": 17.6678 - }, - { - "l": "75.0", - "x": 0.23, - "y": 17.784 - }, - { - "l": "75.0", - "x": 0.2491, - "y": 17.8793 - }, - { - "l": "75.0", - "x": 0.2683, - "y": 17.9586 - }, - { - "l": "75.0", - "x": 0.2875, - "y": 18.0256 - }, - { - "l": "75.0", - "x": 0.3066, - "y": 18.0819 - }, - { - "l": "75.0", - "x": 0.3258, - "y": 18.1291 - }, - { - "l": "75.0", - "x": 0.345, - "y": 18.171 - }, - { - "l": "75.0", - "x": 0.3641, - "y": 18.2076 - }, - { - "l": "75.0", - "x": 0.3833, - "y": 18.2383 - }, - { - "l": "75.0", - "x": 0.4025, - "y": 18.2636 - }, - { - "l": "75.0", - "x": 0.4216, - "y": 18.2841 - }, - { - "l": "75.0", - "x": 0.4408, - "y": 18.3007 - }, - { - "l": "75.0", - "x": 0.46, - "y": 18.313 - }, - { - "l": "75.0", - "x": 0.4791, - "y": 18.3213 - }, - { - "l": "75.0", - "x": 0.4983, - "y": 18.3259 - }, - { - "l": "75.0", - "x": 0.5175, - "y": 18.3271 - }, - { - "l": "75.0", - "x": 0.5366, - "y": 18.325 - }, - { - "l": "75.0", - "x": 0.5558, - "y": 18.3198 - }, - { - "l": "75.0", - "x": 0.5749, - "y": 18.3115 - }, - { - "l": "75.0", - "x": 0.5941, - "y": 18.3003 - }, - { - "l": "75.0", - "x": 0.6133, - "y": 18.2863 - }, - { - "l": "75.0", - "x": 0.6324, - "y": 18.2699 - }, - { - "l": "75.0", - "x": 0.6516, - "y": 18.2512 - }, - { - "l": "75.0", - "x": 0.6708, - "y": 18.2305 - }, - { - "l": "75.0", - "x": 0.6899, - "y": 18.2079 - }, - { - "l": "75.0", - "x": 0.7091, - "y": 18.1837 - }, - { - "l": "75.0", - "x": 0.7283, - "y": 18.158 - }, - { - "l": "75.0", - "x": 0.7474, - "y": 18.1311 - }, - { - "l": "75.0", - "x": 0.7666, - "y": 18.1032 - }, - { - "l": "75.0", - "x": 0.7858, - "y": 18.0745 - }, - { - "l": "75.0", - "x": 0.8049, - "y": 18.045 - }, - { - "l": "75.0", - "x": 0.8241, - "y": 18.0149 - }, - { - "l": "75.0", - "x": 0.8433, - "y": 17.9844 - }, - { - "l": "75.0", - "x": 0.8624, - "y": 17.9536 - }, - { - "l": "75.0", - "x": 0.8816, - "y": 17.9226 - }, - { - "l": "75.0", - "x": 0.9008, - "y": 17.8914 - }, - { - "l": "75.0", - "x": 0.9199, - "y": 17.8601 - }, - { - "l": "75.0", - "x": 0.9391, - "y": 17.8289 - }, - { - "l": "75.0", - "x": 0.9582, - "y": 17.7977 - }, - { - "l": "75.0", - "x": 0.9774, - "y": 17.7665 - }, - { - "l": "75.0", - "x": 0.9966, - "y": 17.7355 - }, - { - "l": "75.0", - "x": 1.0157, - "y": 17.7045 - }, - { - "l": "75.0", - "x": 1.0349, - "y": 17.6737 - }, - { - "l": "75.0", - "x": 1.0541, - "y": 17.6431 - }, - { - "l": "75.0", - "x": 1.0732, - "y": 17.6126 - }, - { - "l": "75.0", - "x": 1.0924, - "y": 17.5825 - }, - { - "l": "75.0", - "x": 1.1116, - "y": 17.5526 - }, - { - "l": "75.0", - "x": 1.1307, - "y": 17.523 - }, - { - "l": "75.0", - "x": 1.1499, - "y": 17.4938 - }, - { - "l": "75.0", - "x": 1.1691, - "y": 17.4648 - }, - { - "l": "75.0", - "x": 1.1882, - "y": 17.4361 - }, - { - "l": "75.0", - "x": 1.2074, - "y": 17.4078 - }, - { - "l": "75.0", - "x": 1.2266, - "y": 17.3798 - }, - { - "l": "75.0", - "x": 1.2457, - "y": 17.3522 - }, - { - "l": "75.0", - "x": 1.2649, - "y": 17.3249 - }, - { - "l": "75.0", - "x": 1.2841, - "y": 17.298 - }, - { - "l": "75.0", - "x": 1.3032, - "y": 17.2715 - }, - { - "l": "75.0", - "x": 1.3224, - "y": 17.2454 - }, - { - "l": "75.0", - "x": 1.3415, - "y": 17.2197 - }, - { - "l": "75.0", - "x": 1.3607, - "y": 17.1944 - }, - { - "l": "75.0", - "x": 1.3799, - "y": 17.1694 - }, - { - "l": "75.0", - "x": 1.399, - "y": 17.1448 - }, - { - "l": "75.0", - "x": 1.4182, - "y": 17.1207 - }, - { - "l": "75.0", - "x": 1.4374, - "y": 17.0969 - }, - { - "l": "75.0", - "x": 1.4565, - "y": 17.0735 - }, - { - "l": "75.0", - "x": 1.4757, - "y": 17.0506 - }, - { - "l": "75.0", - "x": 1.4949, - "y": 17.028 - }, - { - "l": "75.0", - "x": 1.514, - "y": 17.0058 - }, - { - "l": "75.0", - "x": 1.5332, - "y": 16.9841 - }, - { - "l": "75.0", - "x": 1.5524, - "y": 16.9627 - }, - { - "l": "75.0", - "x": 1.5715, - "y": 16.9418 - }, - { - "l": "75.0", - "x": 1.5907, - "y": 16.9213 - }, - { - "l": "75.0", - "x": 1.6099, - "y": 16.9013 - }, - { - "l": "75.0", - "x": 1.629, - "y": 16.8818 - }, - { - "l": "75.0", - "x": 1.6482, - "y": 16.8627 - }, - { - "l": "75.0", - "x": 1.6674, - "y": 16.844 - }, - { - "l": "75.0", - "x": 1.6865, - "y": 16.8258 - }, - { - "l": "75.0", - "x": 1.7057, - "y": 16.8081 - }, - { - "l": "75.0", - "x": 1.7248, - "y": 16.7908 - }, - { - "l": "75.0", - "x": 1.744, - "y": 16.774 - }, - { - "l": "75.0", - "x": 1.7632, - "y": 16.7576 - }, - { - "l": "75.0", - "x": 1.7823, - "y": 16.7416 - }, - { - "l": "75.0", - "x": 1.8015, - "y": 16.7261 - }, - { - "l": "75.0", - "x": 1.8207, - "y": 16.711 - }, - { - "l": "75.0", - "x": 1.8398, - "y": 16.6962 - }, - { - "l": "75.0", - "x": 1.859, - "y": 16.6818 - }, - { - "l": "75.0", - "x": 1.8782, - "y": 16.6678 - }, - { - "l": "75.0", - "x": 1.8973, - "y": 16.6541 - }, - { - "l": "75.0", - "x": 1.9165, - "y": 16.6408 - }, - { - "l": "75.0", - "x": 1.9357, - "y": 16.6285 - }, - { - "l": "75.0", - "x": 1.9548, - "y": 16.6161 - }, - { - "l": "75.0", - "x": 1.974, - "y": 16.6038 - }, - { - "l": "75.0", - "x": 1.9932, - "y": 16.5914 - }, - { - "l": "75.0", - "x": 2.0, - "y": 16.587 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 0.0383, - "y": 15.4203 - }, - { - "l": "91.0", - "x": 0.0575, - "y": 16.0461 - }, - { - "l": "91.0", - "x": 0.0767, - "y": 16.6364 - }, - { - "l": "91.0", - "x": 0.0958, - "y": 17.1383 - }, - { - "l": "91.0", - "x": 0.115, - "y": 17.5438 - }, - { - "l": "91.0", - "x": 0.1342, - "y": 17.8743 - }, - { - "l": "91.0", - "x": 0.1533, - "y": 18.1467 - }, - { - "l": "91.0", - "x": 0.1725, - "y": 18.3711 - }, - { - "l": "91.0", - "x": 0.1916, - "y": 18.5538 - }, - { - "l": "91.0", - "x": 0.2108, - "y": 18.7018 - }, - { - "l": "91.0", - "x": 0.23, - "y": 18.8221 - }, - { - "l": "91.0", - "x": 0.2491, - "y": 18.9205 - }, - { - "l": "91.0", - "x": 0.2683, - "y": 19.0032 - }, - { - "l": "91.0", - "x": 0.2875, - "y": 19.0723 - }, - { - "l": "91.0", - "x": 0.3066, - "y": 19.13 - }, - { - "l": "91.0", - "x": 0.3258, - "y": 19.1779 - }, - { - "l": "91.0", - "x": 0.345, - "y": 19.2205 - }, - { - "l": "91.0", - "x": 0.3641, - "y": 19.2581 - }, - { - "l": "91.0", - "x": 0.3833, - "y": 19.2894 - }, - { - "l": "91.0", - "x": 0.4025, - "y": 19.3151 - }, - { - "l": "91.0", - "x": 0.4216, - "y": 19.3358 - }, - { - "l": "91.0", - "x": 0.4408, - "y": 19.3526 - }, - { - "l": "91.0", - "x": 0.46, - "y": 19.3648 - }, - { - "l": "91.0", - "x": 0.4791, - "y": 19.3729 - }, - { - "l": "91.0", - "x": 0.4983, - "y": 19.377 - }, - { - "l": "91.0", - "x": 0.5175, - "y": 19.3777 - }, - { - "l": "91.0", - "x": 0.5366, - "y": 19.3749 - }, - { - "l": "91.0", - "x": 0.5558, - "y": 19.3688 - }, - { - "l": "91.0", - "x": 0.5749, - "y": 19.3595 - }, - { - "l": "91.0", - "x": 0.5941, - "y": 19.3471 - }, - { - "l": "91.0", - "x": 0.6133, - "y": 19.3318 - }, - { - "l": "91.0", - "x": 0.6324, - "y": 19.314 - }, - { - "l": "91.0", - "x": 0.6516, - "y": 19.2938 - }, - { - "l": "91.0", - "x": 0.6708, - "y": 19.2714 - }, - { - "l": "91.0", - "x": 0.6899, - "y": 19.2472 - }, - { - "l": "91.0", - "x": 0.7091, - "y": 19.2211 - }, - { - "l": "91.0", - "x": 0.7283, - "y": 19.1936 - }, - { - "l": "91.0", - "x": 0.7474, - "y": 19.1647 - }, - { - "l": "91.0", - "x": 0.7666, - "y": 19.1349 - }, - { - "l": "91.0", - "x": 0.7858, - "y": 19.1042 - }, - { - "l": "91.0", - "x": 0.8049, - "y": 19.0726 - }, - { - "l": "91.0", - "x": 0.8241, - "y": 19.0404 - }, - { - "l": "91.0", - "x": 0.8433, - "y": 19.0079 - }, - { - "l": "91.0", - "x": 0.8624, - "y": 18.975 - }, - { - "l": "91.0", - "x": 0.8816, - "y": 18.9419 - }, - { - "l": "91.0", - "x": 0.9008, - "y": 18.9086 - }, - { - "l": "91.0", - "x": 0.9199, - "y": 18.8752 - }, - { - "l": "91.0", - "x": 0.9391, - "y": 18.8419 - }, - { - "l": "91.0", - "x": 0.9582, - "y": 18.8087 - }, - { - "l": "91.0", - "x": 0.9774, - "y": 18.7755 - }, - { - "l": "91.0", - "x": 0.9966, - "y": 18.7423 - }, - { - "l": "91.0", - "x": 1.0157, - "y": 18.7093 - }, - { - "l": "91.0", - "x": 1.0349, - "y": 18.6764 - }, - { - "l": "91.0", - "x": 1.0541, - "y": 18.6438 - }, - { - "l": "91.0", - "x": 1.0732, - "y": 18.6113 - }, - { - "l": "91.0", - "x": 1.0924, - "y": 18.5792 - }, - { - "l": "91.0", - "x": 1.1116, - "y": 18.5474 - }, - { - "l": "91.0", - "x": 1.1307, - "y": 18.5159 - }, - { - "l": "91.0", - "x": 1.1499, - "y": 18.4847 - }, - { - "l": "91.0", - "x": 1.1691, - "y": 18.4538 - }, - { - "l": "91.0", - "x": 1.1882, - "y": 18.4233 - }, - { - "l": "91.0", - "x": 1.2074, - "y": 18.3931 - }, - { - "l": "91.0", - "x": 1.2266, - "y": 18.3633 - }, - { - "l": "91.0", - "x": 1.2457, - "y": 18.3338 - }, - { - "l": "91.0", - "x": 1.2649, - "y": 18.3048 - }, - { - "l": "91.0", - "x": 1.2841, - "y": 18.2761 - }, - { - "l": "91.0", - "x": 1.3032, - "y": 18.2479 - }, - { - "l": "91.0", - "x": 1.3224, - "y": 18.22 - }, - { - "l": "91.0", - "x": 1.3415, - "y": 18.1926 - }, - { - "l": "91.0", - "x": 1.3607, - "y": 18.1656 - }, - { - "l": "91.0", - "x": 1.3799, - "y": 18.139 - }, - { - "l": "91.0", - "x": 1.399, - "y": 18.1128 - }, - { - "l": "91.0", - "x": 1.4182, - "y": 18.087 - }, - { - "l": "91.0", - "x": 1.4374, - "y": 18.0617 - }, - { - "l": "91.0", - "x": 1.4565, - "y": 18.0368 - }, - { - "l": "91.0", - "x": 1.4757, - "y": 18.0123 - }, - { - "l": "91.0", - "x": 1.4949, - "y": 17.9883 - }, - { - "l": "91.0", - "x": 1.514, - "y": 17.9647 - }, - { - "l": "91.0", - "x": 1.5332, - "y": 17.9414 - }, - { - "l": "91.0", - "x": 1.5524, - "y": 17.9187 - }, - { - "l": "91.0", - "x": 1.5715, - "y": 17.8963 - }, - { - "l": "91.0", - "x": 1.5907, - "y": 17.8745 - }, - { - "l": "91.0", - "x": 1.6099, - "y": 17.8532 - }, - { - "l": "91.0", - "x": 1.629, - "y": 17.8323 - }, - { - "l": "91.0", - "x": 1.6482, - "y": 17.8119 - }, - { - "l": "91.0", - "x": 1.6674, - "y": 17.792 - }, - { - "l": "91.0", - "x": 1.6865, - "y": 17.7725 - }, - { - "l": "91.0", - "x": 1.7057, - "y": 17.7536 - }, - { - "l": "91.0", - "x": 1.7248, - "y": 17.7351 - }, - { - "l": "91.0", - "x": 1.744, - "y": 17.7171 - }, - { - "l": "91.0", - "x": 1.7632, - "y": 17.6995 - }, - { - "l": "91.0", - "x": 1.7823, - "y": 17.6825 - }, - { - "l": "91.0", - "x": 1.8015, - "y": 17.6659 - }, - { - "l": "91.0", - "x": 1.8207, - "y": 17.6498 - }, - { - "l": "91.0", - "x": 1.8398, - "y": 17.634 - }, - { - "l": "91.0", - "x": 1.859, - "y": 17.6186 - }, - { - "l": "91.0", - "x": 1.8782, - "y": 17.6036 - }, - { - "l": "91.0", - "x": 1.8973, - "y": 17.5889 - }, - { - "l": "91.0", - "x": 1.9165, - "y": 17.5747 - }, - { - "l": "91.0", - "x": 1.9357, - "y": 17.5615 - }, - { - "l": "91.0", - "x": 1.9548, - "y": 17.5483 - }, - { - "l": "91.0", - "x": 1.974, - "y": 17.535 - }, - { - "l": "91.0", - "x": 1.9932, - "y": 17.5218 - }, - { - "l": "91.0", - "x": 2.0, - "y": 17.5171 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 0.0383, - "y": 16.3597 - }, - { - "l": "98.0", - "x": 0.0575, - "y": 17.0117 - }, - { - "l": "98.0", - "x": 0.0767, - "y": 17.6291 - }, - { - "l": "98.0", - "x": 0.0958, - "y": 18.1548 - }, - { - "l": "98.0", - "x": 0.115, - "y": 18.5796 - }, - { - "l": "98.0", - "x": 0.1342, - "y": 18.9259 - }, - { - "l": "98.0", - "x": 0.1533, - "y": 19.2114 - }, - { - "l": "98.0", - "x": 0.1725, - "y": 19.4466 - }, - { - "l": "98.0", - "x": 0.1916, - "y": 19.6379 - }, - { - "l": "98.0", - "x": 0.2108, - "y": 19.7929 - }, - { - "l": "98.0", - "x": 0.23, - "y": 19.919 - }, - { - "l": "98.0", - "x": 0.2491, - "y": 20.0219 - }, - { - "l": "98.0", - "x": 0.2683, - "y": 20.1093 - }, - { - "l": "98.0", - "x": 0.2875, - "y": 20.1819 - }, - { - "l": "98.0", - "x": 0.3066, - "y": 20.2419 - }, - { - "l": "98.0", - "x": 0.3258, - "y": 20.2915 - }, - { - "l": "98.0", - "x": 0.345, - "y": 20.336 - }, - { - "l": "98.0", - "x": 0.3641, - "y": 20.3754 - }, - { - "l": "98.0", - "x": 0.3833, - "y": 20.4083 - }, - { - "l": "98.0", - "x": 0.4025, - "y": 20.4353 - }, - { - "l": "98.0", - "x": 0.4216, - "y": 20.4572 - }, - { - "l": "98.0", - "x": 0.4408, - "y": 20.4748 - }, - { - "l": "98.0", - "x": 0.46, - "y": 20.4878 - }, - { - "l": "98.0", - "x": 0.4791, - "y": 20.4963 - }, - { - "l": "98.0", - "x": 0.4983, - "y": 20.5008 - }, - { - "l": "98.0", - "x": 0.5175, - "y": 20.5015 - }, - { - "l": "98.0", - "x": 0.5366, - "y": 20.4986 - }, - { - "l": "98.0", - "x": 0.5558, - "y": 20.4922 - }, - { - "l": "98.0", - "x": 0.5749, - "y": 20.4824 - }, - { - "l": "98.0", - "x": 0.5941, - "y": 20.4694 - }, - { - "l": "98.0", - "x": 0.6133, - "y": 20.4534 - }, - { - "l": "98.0", - "x": 0.6324, - "y": 20.4347 - }, - { - "l": "98.0", - "x": 0.6516, - "y": 20.4134 - }, - { - "l": "98.0", - "x": 0.6708, - "y": 20.3899 - }, - { - "l": "98.0", - "x": 0.6899, - "y": 20.3643 - }, - { - "l": "98.0", - "x": 0.7091, - "y": 20.3369 - }, - { - "l": "98.0", - "x": 0.7283, - "y": 20.3078 - }, - { - "l": "98.0", - "x": 0.7474, - "y": 20.2774 - }, - { - "l": "98.0", - "x": 0.7666, - "y": 20.2459 - }, - { - "l": "98.0", - "x": 0.7858, - "y": 20.2135 - }, - { - "l": "98.0", - "x": 0.8049, - "y": 20.1802 - }, - { - "l": "98.0", - "x": 0.8241, - "y": 20.1463 - }, - { - "l": "98.0", - "x": 0.8433, - "y": 20.1119 - }, - { - "l": "98.0", - "x": 0.8624, - "y": 20.0773 - }, - { - "l": "98.0", - "x": 0.8816, - "y": 20.0423 - }, - { - "l": "98.0", - "x": 0.9008, - "y": 20.0071 - }, - { - "l": "98.0", - "x": 0.9199, - "y": 19.9719 - }, - { - "l": "98.0", - "x": 0.9391, - "y": 19.9368 - }, - { - "l": "98.0", - "x": 0.9582, - "y": 19.9017 - }, - { - "l": "98.0", - "x": 0.9774, - "y": 19.8667 - }, - { - "l": "98.0", - "x": 0.9966, - "y": 19.8317 - }, - { - "l": "98.0", - "x": 1.0157, - "y": 19.7969 - }, - { - "l": "98.0", - "x": 1.0349, - "y": 19.7621 - }, - { - "l": "98.0", - "x": 1.0541, - "y": 19.7276 - }, - { - "l": "98.0", - "x": 1.0732, - "y": 19.6933 - }, - { - "l": "98.0", - "x": 1.0924, - "y": 19.6594 - }, - { - "l": "98.0", - "x": 1.1116, - "y": 19.6258 - }, - { - "l": "98.0", - "x": 1.1307, - "y": 19.5925 - }, - { - "l": "98.0", - "x": 1.1499, - "y": 19.5596 - }, - { - "l": "98.0", - "x": 1.1691, - "y": 19.527 - }, - { - "l": "98.0", - "x": 1.1882, - "y": 19.4947 - }, - { - "l": "98.0", - "x": 1.2074, - "y": 19.4629 - }, - { - "l": "98.0", - "x": 1.2266, - "y": 19.4314 - }, - { - "l": "98.0", - "x": 1.2457, - "y": 19.4002 - }, - { - "l": "98.0", - "x": 1.2649, - "y": 19.3696 - }, - { - "l": "98.0", - "x": 1.2841, - "y": 19.3393 - }, - { - "l": "98.0", - "x": 1.3032, - "y": 19.3094 - }, - { - "l": "98.0", - "x": 1.3224, - "y": 19.28 - }, - { - "l": "98.0", - "x": 1.3415, - "y": 19.251 - }, - { - "l": "98.0", - "x": 1.3607, - "y": 19.2224 - }, - { - "l": "98.0", - "x": 1.3799, - "y": 19.1943 - }, - { - "l": "98.0", - "x": 1.399, - "y": 19.1666 - }, - { - "l": "98.0", - "x": 1.4182, - "y": 19.1393 - }, - { - "l": "98.0", - "x": 1.4374, - "y": 19.1126 - }, - { - "l": "98.0", - "x": 1.4565, - "y": 19.0863 - }, - { - "l": "98.0", - "x": 1.4757, - "y": 19.0604 - }, - { - "l": "98.0", - "x": 1.4949, - "y": 19.035 - }, - { - "l": "98.0", - "x": 1.514, - "y": 19.01 - }, - { - "l": "98.0", - "x": 1.5332, - "y": 18.9855 - }, - { - "l": "98.0", - "x": 1.5524, - "y": 18.9614 - }, - { - "l": "98.0", - "x": 1.5715, - "y": 18.9378 - }, - { - "l": "98.0", - "x": 1.5907, - "y": 18.9147 - }, - { - "l": "98.0", - "x": 1.6099, - "y": 18.8921 - }, - { - "l": "98.0", - "x": 1.629, - "y": 18.87 - }, - { - "l": "98.0", - "x": 1.6482, - "y": 18.8485 - }, - { - "l": "98.0", - "x": 1.6674, - "y": 18.8274 - }, - { - "l": "98.0", - "x": 1.6865, - "y": 18.8068 - }, - { - "l": "98.0", - "x": 1.7057, - "y": 18.7867 - }, - { - "l": "98.0", - "x": 1.7248, - "y": 18.7671 - }, - { - "l": "98.0", - "x": 1.744, - "y": 18.748 - }, - { - "l": "98.0", - "x": 1.7632, - "y": 18.7294 - }, - { - "l": "98.0", - "x": 1.7823, - "y": 18.7114 - }, - { - "l": "98.0", - "x": 1.8015, - "y": 18.6939 - }, - { - "l": "98.0", - "x": 1.8207, - "y": 18.6768 - }, - { - "l": "98.0", - "x": 1.8398, - "y": 18.6601 - }, - { - "l": "98.0", - "x": 1.859, - "y": 18.6438 - }, - { - "l": "98.0", - "x": 1.8782, - "y": 18.6279 - }, - { - "l": "98.0", - "x": 1.8973, - "y": 18.6124 - }, - { - "l": "98.0", - "x": 1.9165, - "y": 18.5973 - }, - { - "l": "98.0", - "x": 1.9357, - "y": 18.5833 - }, - { - "l": "98.0", - "x": 1.9548, - "y": 18.5693 - }, - { - "l": "98.0", - "x": 1.974, - "y": 18.5553 - }, - { - "l": "98.0", - "x": 1.9932, - "y": 18.5413 - }, - { - "l": "98.0", - "x": 2.0, - "y": 18.5363 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 0.0383, - "y": 17.3317 - }, - { - "l": "99.6", - "x": 0.0575, - "y": 18.0145 - }, - { - "l": "99.6", - "x": 0.0767, - "y": 18.6632 - }, - { - "l": "99.6", - "x": 0.0958, - "y": 19.2164 - }, - { - "l": "99.6", - "x": 0.115, - "y": 19.6638 - }, - { - "l": "99.6", - "x": 0.1342, - "y": 20.0288 - }, - { - "l": "99.6", - "x": 0.1533, - "y": 20.3299 - }, - { - "l": "99.6", - "x": 0.1725, - "y": 20.5782 - }, - { - "l": "99.6", - "x": 0.1916, - "y": 20.7803 - }, - { - "l": "99.6", - "x": 0.2108, - "y": 20.9442 - }, - { - "l": "99.6", - "x": 0.23, - "y": 21.0777 - }, - { - "l": "99.6", - "x": 0.2491, - "y": 21.1868 - }, - { - "l": "99.6", - "x": 0.2683, - "y": 21.2806 - }, - { - "l": "99.6", - "x": 0.2875, - "y": 21.3581 - }, - { - "l": "99.6", - "x": 0.3066, - "y": 21.4219 - }, - { - "l": "99.6", - "x": 0.3258, - "y": 21.4744 - }, - { - "l": "99.6", - "x": 0.345, - "y": 21.5219 - }, - { - "l": "99.6", - "x": 0.3641, - "y": 21.5643 - }, - { - "l": "99.6", - "x": 0.3833, - "y": 21.5999 - }, - { - "l": "99.6", - "x": 0.4025, - "y": 21.6293 - }, - { - "l": "99.6", - "x": 0.4216, - "y": 21.6533 - }, - { - "l": "99.6", - "x": 0.4408, - "y": 21.6728 - }, - { - "l": "99.6", - "x": 0.46, - "y": 21.6874 - }, - { - "l": "99.6", - "x": 0.4791, - "y": 21.6974 - }, - { - "l": "99.6", - "x": 0.4983, - "y": 21.7029 - }, - { - "l": "99.6", - "x": 0.5175, - "y": 21.7046 - }, - { - "l": "99.6", - "x": 0.5366, - "y": 21.7024 - }, - { - "l": "99.6", - "x": 0.5558, - "y": 21.6964 - }, - { - "l": "99.6", - "x": 0.5749, - "y": 21.6869 - }, - { - "l": "99.6", - "x": 0.5941, - "y": 21.6739 - }, - { - "l": "99.6", - "x": 0.6133, - "y": 21.6578 - }, - { - "l": "99.6", - "x": 0.6324, - "y": 21.6387 - }, - { - "l": "99.6", - "x": 0.6516, - "y": 21.617 - }, - { - "l": "99.6", - "x": 0.6708, - "y": 21.5929 - }, - { - "l": "99.6", - "x": 0.6899, - "y": 21.5665 - }, - { - "l": "99.6", - "x": 0.7091, - "y": 21.5382 - }, - { - "l": "99.6", - "x": 0.7283, - "y": 21.5082 - }, - { - "l": "99.6", - "x": 0.7474, - "y": 21.4767 - }, - { - "l": "99.6", - "x": 0.7666, - "y": 21.4441 - }, - { - "l": "99.6", - "x": 0.7858, - "y": 21.4104 - }, - { - "l": "99.6", - "x": 0.8049, - "y": 21.3758 - }, - { - "l": "99.6", - "x": 0.8241, - "y": 21.3405 - }, - { - "l": "99.6", - "x": 0.8433, - "y": 21.3047 - }, - { - "l": "99.6", - "x": 0.8624, - "y": 21.2686 - }, - { - "l": "99.6", - "x": 0.8816, - "y": 21.2322 - }, - { - "l": "99.6", - "x": 0.9008, - "y": 21.1956 - }, - { - "l": "99.6", - "x": 0.9199, - "y": 21.1588 - }, - { - "l": "99.6", - "x": 0.9391, - "y": 21.1222 - }, - { - "l": "99.6", - "x": 0.9582, - "y": 21.0857 - }, - { - "l": "99.6", - "x": 0.9774, - "y": 21.0491 - }, - { - "l": "99.6", - "x": 0.9966, - "y": 21.0126 - }, - { - "l": "99.6", - "x": 1.0157, - "y": 20.9762 - }, - { - "l": "99.6", - "x": 1.0349, - "y": 20.9399 - }, - { - "l": "99.6", - "x": 1.0541, - "y": 20.9038 - }, - { - "l": "99.6", - "x": 1.0732, - "y": 20.8679 - }, - { - "l": "99.6", - "x": 1.0924, - "y": 20.8324 - }, - { - "l": "99.6", - "x": 1.1116, - "y": 20.7973 - }, - { - "l": "99.6", - "x": 1.1307, - "y": 20.7626 - }, - { - "l": "99.6", - "x": 1.1499, - "y": 20.7281 - }, - { - "l": "99.6", - "x": 1.1691, - "y": 20.6941 - }, - { - "l": "99.6", - "x": 1.1882, - "y": 20.6604 - }, - { - "l": "99.6", - "x": 1.2074, - "y": 20.627 - }, - { - "l": "99.6", - "x": 1.2266, - "y": 20.594 - }, - { - "l": "99.6", - "x": 1.2457, - "y": 20.5615 - }, - { - "l": "99.6", - "x": 1.2649, - "y": 20.5294 - }, - { - "l": "99.6", - "x": 1.2841, - "y": 20.4977 - }, - { - "l": "99.6", - "x": 1.3032, - "y": 20.4664 - }, - { - "l": "99.6", - "x": 1.3224, - "y": 20.4356 - }, - { - "l": "99.6", - "x": 1.3415, - "y": 20.4052 - }, - { - "l": "99.6", - "x": 1.3607, - "y": 20.3753 - }, - { - "l": "99.6", - "x": 1.3799, - "y": 20.3458 - }, - { - "l": "99.6", - "x": 1.399, - "y": 20.3168 - }, - { - "l": "99.6", - "x": 1.4182, - "y": 20.2883 - }, - { - "l": "99.6", - "x": 1.4374, - "y": 20.2603 - }, - { - "l": "99.6", - "x": 1.4565, - "y": 20.2328 - }, - { - "l": "99.6", - "x": 1.4757, - "y": 20.2057 - }, - { - "l": "99.6", - "x": 1.4949, - "y": 20.1791 - }, - { - "l": "99.6", - "x": 1.514, - "y": 20.1529 - }, - { - "l": "99.6", - "x": 1.5332, - "y": 20.1272 - }, - { - "l": "99.6", - "x": 1.5524, - "y": 20.102 - }, - { - "l": "99.6", - "x": 1.5715, - "y": 20.0772 - }, - { - "l": "99.6", - "x": 1.5907, - "y": 20.053 - }, - { - "l": "99.6", - "x": 1.6099, - "y": 20.0294 - }, - { - "l": "99.6", - "x": 1.629, - "y": 20.0063 - }, - { - "l": "99.6", - "x": 1.6482, - "y": 19.9837 - }, - { - "l": "99.6", - "x": 1.6674, - "y": 19.9616 - }, - { - "l": "99.6", - "x": 1.6865, - "y": 19.94 - }, - { - "l": "99.6", - "x": 1.7057, - "y": 19.9189 - }, - { - "l": "99.6", - "x": 1.7248, - "y": 19.8983 - }, - { - "l": "99.6", - "x": 1.744, - "y": 19.8783 - }, - { - "l": "99.6", - "x": 1.7632, - "y": 19.8589 - }, - { - "l": "99.6", - "x": 1.7823, - "y": 19.8401 - }, - { - "l": "99.6", - "x": 1.8015, - "y": 19.8218 - }, - { - "l": "99.6", - "x": 1.8207, - "y": 19.8039 - }, - { - "l": "99.6", - "x": 1.8398, - "y": 19.7865 - }, - { - "l": "99.6", - "x": 1.859, - "y": 19.7694 - }, - { - "l": "99.6", - "x": 1.8782, - "y": 19.7528 - }, - { - "l": "99.6", - "x": 1.8973, - "y": 19.7366 - }, - { - "l": "99.6", - "x": 1.9165, - "y": 19.7208 - }, - { - "l": "99.6", - "x": 1.9357, - "y": 19.7061 - }, - { - "l": "99.6", - "x": 1.9548, - "y": 19.6915 - }, - { - "l": "99.6", - "x": 1.974, - "y": 19.6769 - }, - { - "l": "99.6", - "x": 1.9932, - "y": 19.6622 - }, - { - "l": "99.6", - "x": 2.0, - "y": 19.657 - } - ] - } - ] - }, - "female": null - } - }, - { - "uk_who_child": { - "male": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 2.0, - "y": 13.1768 - }, - { - "l": "0.4", - "x": 2.0192, - "y": 13.167 - }, - { - "l": "0.4", - "x": 2.1025, - "y": 13.1244 - }, - { - "l": "0.4", - "x": 2.1858, - "y": 13.082 - }, - { - "l": "0.4", - "x": 2.2692, - "y": 13.0404 - }, - { - "l": "0.4", - "x": 2.3525, - "y": 12.9994 - }, - { - "l": "0.4", - "x": 2.4358, - "y": 12.9591 - }, - { - "l": "0.4", - "x": 2.5192, - "y": 12.9195 - }, - { - "l": "0.4", - "x": 2.6025, - "y": 12.8808 - }, - { - "l": "0.4", - "x": 2.6858, - "y": 12.8431 - }, - { - "l": "0.4", - "x": 2.7692, - "y": 12.806 - }, - { - "l": "0.4", - "x": 2.8525, - "y": 12.7702 - }, - { - "l": "0.4", - "x": 2.9358, - "y": 12.7353 - }, - { - "l": "0.4", - "x": 3.0192, - "y": 12.7018 - }, - { - "l": "0.4", - "x": 3.1025, - "y": 12.6695 - }, - { - "l": "0.4", - "x": 3.1858, - "y": 12.6388 - }, - { - "l": "0.4", - "x": 3.2692, - "y": 12.6094 - }, - { - "l": "0.4", - "x": 3.3525, - "y": 12.5816 - }, - { - "l": "0.4", - "x": 3.4358, - "y": 12.5552 - }, - { - "l": "0.4", - "x": 3.5192, - "y": 12.5305 - }, - { - "l": "0.4", - "x": 3.6025, - "y": 12.5072 - }, - { - "l": "0.4", - "x": 3.6858, - "y": 12.485 - }, - { - "l": "0.4", - "x": 3.7692, - "y": 12.4641 - }, - { - "l": "0.4", - "x": 3.8525, - "y": 12.4443 - }, - { - "l": "0.4", - "x": 3.9358, - "y": 12.4254 - }, - { - "l": "0.4", - "x": 4.0, - "y": 12.4113 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 2.0, - "y": 13.8062 - }, - { - "l": "2.0", - "x": 2.0192, - "y": 13.7969 - }, - { - "l": "2.0", - "x": 2.1025, - "y": 13.7565 - }, - { - "l": "2.0", - "x": 2.1858, - "y": 13.7163 - }, - { - "l": "2.0", - "x": 2.2692, - "y": 13.6769 - }, - { - "l": "2.0", - "x": 2.3525, - "y": 13.638 - }, - { - "l": "2.0", - "x": 2.4358, - "y": 13.5998 - }, - { - "l": "2.0", - "x": 2.5192, - "y": 13.5623 - }, - { - "l": "2.0", - "x": 2.6025, - "y": 13.5254 - }, - { - "l": "2.0", - "x": 2.6858, - "y": 13.4895 - }, - { - "l": "2.0", - "x": 2.7692, - "y": 13.4541 - }, - { - "l": "2.0", - "x": 2.8525, - "y": 13.4198 - }, - { - "l": "2.0", - "x": 2.9358, - "y": 13.3862 - }, - { - "l": "2.0", - "x": 3.0192, - "y": 13.3538 - }, - { - "l": "2.0", - "x": 3.1025, - "y": 13.3224 - }, - { - "l": "2.0", - "x": 3.1858, - "y": 13.2924 - }, - { - "l": "2.0", - "x": 3.2692, - "y": 13.2637 - }, - { - "l": "2.0", - "x": 3.3525, - "y": 13.2363 - }, - { - "l": "2.0", - "x": 3.4358, - "y": 13.2103 - }, - { - "l": "2.0", - "x": 3.5192, - "y": 13.1857 - }, - { - "l": "2.0", - "x": 3.6025, - "y": 13.1625 - }, - { - "l": "2.0", - "x": 3.6858, - "y": 13.1403 - }, - { - "l": "2.0", - "x": 3.7692, - "y": 13.1191 - }, - { - "l": "2.0", - "x": 3.8525, - "y": 13.099 - }, - { - "l": "2.0", - "x": 3.9358, - "y": 13.0797 - }, - { - "l": "2.0", - "x": 4.0, - "y": 13.0652 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 2.0, - "y": 14.4858 - }, - { - "l": "9.0", - "x": 2.0192, - "y": 14.4768 - }, - { - "l": "9.0", - "x": 2.1025, - "y": 14.4379 - }, - { - "l": "9.0", - "x": 2.1858, - "y": 14.3992 - }, - { - "l": "9.0", - "x": 2.2692, - "y": 14.3613 - }, - { - "l": "9.0", - "x": 2.3525, - "y": 14.324 - }, - { - "l": "9.0", - "x": 2.4358, - "y": 14.2874 - }, - { - "l": "9.0", - "x": 2.5192, - "y": 14.2514 - }, - { - "l": "9.0", - "x": 2.6025, - "y": 14.216 - }, - { - "l": "9.0", - "x": 2.6858, - "y": 14.1814 - }, - { - "l": "9.0", - "x": 2.7692, - "y": 14.1473 - }, - { - "l": "9.0", - "x": 2.8525, - "y": 14.1141 - }, - { - "l": "9.0", - "x": 2.9358, - "y": 14.0816 - }, - { - "l": "9.0", - "x": 3.0192, - "y": 14.0502 - }, - { - "l": "9.0", - "x": 3.1025, - "y": 14.0197 - }, - { - "l": "9.0", - "x": 3.1858, - "y": 13.9904 - }, - { - "l": "9.0", - "x": 3.2692, - "y": 13.9623 - }, - { - "l": "9.0", - "x": 3.3525, - "y": 13.9355 - }, - { - "l": "9.0", - "x": 3.4358, - "y": 13.91 - }, - { - "l": "9.0", - "x": 3.5192, - "y": 13.8859 - }, - { - "l": "9.0", - "x": 3.6025, - "y": 13.8631 - }, - { - "l": "9.0", - "x": 3.6858, - "y": 13.8412 - }, - { - "l": "9.0", - "x": 3.7692, - "y": 13.8204 - }, - { - "l": "9.0", - "x": 3.8525, - "y": 13.8005 - }, - { - "l": "9.0", - "x": 3.9358, - "y": 13.7814 - }, - { - "l": "9.0", - "x": 4.0, - "y": 13.7669 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 2.0, - "y": 15.2211 - }, - { - "l": "25.0", - "x": 2.0192, - "y": 15.2123 - }, - { - "l": "25.0", - "x": 2.1025, - "y": 15.174 - }, - { - "l": "25.0", - "x": 2.1858, - "y": 15.136 - }, - { - "l": "25.0", - "x": 2.2692, - "y": 15.0988 - }, - { - "l": "25.0", - "x": 2.3525, - "y": 15.0623 - }, - { - "l": "25.0", - "x": 2.4358, - "y": 15.0266 - }, - { - "l": "25.0", - "x": 2.5192, - "y": 14.9914 - }, - { - "l": "25.0", - "x": 2.6025, - "y": 14.9569 - }, - { - "l": "25.0", - "x": 2.6858, - "y": 14.923 - }, - { - "l": "25.0", - "x": 2.7692, - "y": 14.8897 - }, - { - "l": "25.0", - "x": 2.8525, - "y": 14.8573 - }, - { - "l": "25.0", - "x": 2.9358, - "y": 14.8256 - }, - { - "l": "25.0", - "x": 3.0192, - "y": 14.7948 - }, - { - "l": "25.0", - "x": 3.1025, - "y": 14.765 - }, - { - "l": "25.0", - "x": 3.1858, - "y": 14.7364 - }, - { - "l": "25.0", - "x": 3.2692, - "y": 14.709 - }, - { - "l": "25.0", - "x": 3.3525, - "y": 14.683 - }, - { - "l": "25.0", - "x": 3.4358, - "y": 14.6583 - }, - { - "l": "25.0", - "x": 3.5192, - "y": 14.6349 - }, - { - "l": "25.0", - "x": 3.6025, - "y": 14.6129 - }, - { - "l": "25.0", - "x": 3.6858, - "y": 14.592 - }, - { - "l": "25.0", - "x": 3.7692, - "y": 14.572 - }, - { - "l": "25.0", - "x": 3.8525, - "y": 14.5531 - }, - { - "l": "25.0", - "x": 3.9358, - "y": 14.5348 - }, - { - "l": "25.0", - "x": 4.0, - "y": 14.5211 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 2.0, - "y": 16.0189 - }, - { - "l": "50.0", - "x": 2.0192, - "y": 16.01 - }, - { - "l": "50.0", - "x": 2.1025, - "y": 15.9711 - }, - { - "l": "50.0", - "x": 2.1858, - "y": 15.9326 - }, - { - "l": "50.0", - "x": 2.2692, - "y": 15.895 - }, - { - "l": "50.0", - "x": 2.3525, - "y": 15.8583 - }, - { - "l": "50.0", - "x": 2.4358, - "y": 15.8224 - }, - { - "l": "50.0", - "x": 2.5192, - "y": 15.7873 - }, - { - "l": "50.0", - "x": 2.6025, - "y": 15.7527 - }, - { - "l": "50.0", - "x": 2.6858, - "y": 15.719 - }, - { - "l": "50.0", - "x": 2.7692, - "y": 15.6859 - }, - { - "l": "50.0", - "x": 2.8525, - "y": 15.6537 - }, - { - "l": "50.0", - "x": 2.9358, - "y": 15.6223 - }, - { - "l": "50.0", - "x": 3.0192, - "y": 15.5919 - }, - { - "l": "50.0", - "x": 3.1025, - "y": 15.5627 - }, - { - "l": "50.0", - "x": 3.1858, - "y": 15.5347 - }, - { - "l": "50.0", - "x": 3.2692, - "y": 15.508 - }, - { - "l": "50.0", - "x": 3.3525, - "y": 15.4828 - }, - { - "l": "50.0", - "x": 3.4358, - "y": 15.4592 - }, - { - "l": "50.0", - "x": 3.5192, - "y": 15.437 - }, - { - "l": "50.0", - "x": 3.6025, - "y": 15.4164 - }, - { - "l": "50.0", - "x": 3.6858, - "y": 15.3969 - }, - { - "l": "50.0", - "x": 3.7692, - "y": 15.3786 - }, - { - "l": "50.0", - "x": 3.8525, - "y": 15.3613 - }, - { - "l": "50.0", - "x": 3.9358, - "y": 15.3448 - }, - { - "l": "50.0", - "x": 4.0, - "y": 15.3326 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 2.0, - "y": 16.8866 - }, - { - "l": "75.0", - "x": 2.0192, - "y": 16.8772 - }, - { - "l": "75.0", - "x": 2.1025, - "y": 16.8362 - }, - { - "l": "75.0", - "x": 2.1858, - "y": 16.7958 - }, - { - "l": "75.0", - "x": 2.2692, - "y": 16.7564 - }, - { - "l": "75.0", - "x": 2.3525, - "y": 16.7181 - }, - { - "l": "75.0", - "x": 2.4358, - "y": 16.6808 - }, - { - "l": "75.0", - "x": 2.5192, - "y": 16.6445 - }, - { - "l": "75.0", - "x": 2.6025, - "y": 16.609 - }, - { - "l": "75.0", - "x": 2.6858, - "y": 16.5744 - }, - { - "l": "75.0", - "x": 2.7692, - "y": 16.5407 - }, - { - "l": "75.0", - "x": 2.8525, - "y": 16.508 - }, - { - "l": "75.0", - "x": 2.9358, - "y": 16.4765 - }, - { - "l": "75.0", - "x": 3.0192, - "y": 16.4461 - }, - { - "l": "75.0", - "x": 3.1025, - "y": 16.4172 - }, - { - "l": "75.0", - "x": 3.1858, - "y": 16.3896 - }, - { - "l": "75.0", - "x": 3.2692, - "y": 16.3638 - }, - { - "l": "75.0", - "x": 3.3525, - "y": 16.3397 - }, - { - "l": "75.0", - "x": 3.4358, - "y": 16.3174 - }, - { - "l": "75.0", - "x": 3.5192, - "y": 16.2969 - }, - { - "l": "75.0", - "x": 3.6025, - "y": 16.2782 - }, - { - "l": "75.0", - "x": 3.6858, - "y": 16.261 - }, - { - "l": "75.0", - "x": 3.7692, - "y": 16.2451 - }, - { - "l": "75.0", - "x": 3.8525, - "y": 16.2305 - }, - { - "l": "75.0", - "x": 3.9358, - "y": 16.217 - }, - { - "l": "75.0", - "x": 4.0, - "y": 16.2072 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 2.0, - "y": 17.833 - }, - { - "l": "91.0", - "x": 2.0192, - "y": 17.8226 - }, - { - "l": "91.0", - "x": 2.1025, - "y": 17.7776 - }, - { - "l": "91.0", - "x": 2.1858, - "y": 17.7332 - }, - { - "l": "91.0", - "x": 2.2692, - "y": 17.6901 - }, - { - "l": "91.0", - "x": 2.3525, - "y": 17.6486 - }, - { - "l": "91.0", - "x": 2.4358, - "y": 17.6084 - }, - { - "l": "91.0", - "x": 2.5192, - "y": 17.5695 - }, - { - "l": "91.0", - "x": 2.6025, - "y": 17.5317 - }, - { - "l": "91.0", - "x": 2.6858, - "y": 17.495 - }, - { - "l": "91.0", - "x": 2.7692, - "y": 17.4597 - }, - { - "l": "91.0", - "x": 2.8525, - "y": 17.4258 - }, - { - "l": "91.0", - "x": 2.9358, - "y": 17.3934 - }, - { - "l": "91.0", - "x": 3.0192, - "y": 17.3625 - }, - { - "l": "91.0", - "x": 3.1025, - "y": 17.3336 - }, - { - "l": "91.0", - "x": 3.1858, - "y": 17.3063 - }, - { - "l": "91.0", - "x": 3.2692, - "y": 17.2813 - }, - { - "l": "91.0", - "x": 3.3525, - "y": 17.2585 - }, - { - "l": "91.0", - "x": 3.4358, - "y": 17.2381 - }, - { - "l": "91.0", - "x": 3.5192, - "y": 17.2198 - }, - { - "l": "91.0", - "x": 3.6025, - "y": 17.2037 - }, - { - "l": "91.0", - "x": 3.6858, - "y": 17.1897 - }, - { - "l": "91.0", - "x": 3.7692, - "y": 17.1773 - }, - { - "l": "91.0", - "x": 3.8525, - "y": 17.1666 - }, - { - "l": "91.0", - "x": 3.9358, - "y": 17.1574 - }, - { - "l": "91.0", - "x": 4.0, - "y": 17.1512 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 2.0, - "y": 18.8684 - }, - { - "l": "98.0", - "x": 2.0192, - "y": 18.8564 - }, - { - "l": "98.0", - "x": 2.1025, - "y": 18.8046 - }, - { - "l": "98.0", - "x": 2.1858, - "y": 18.7539 - }, - { - "l": "98.0", - "x": 2.2692, - "y": 18.7047 - }, - { - "l": "98.0", - "x": 2.3525, - "y": 18.6577 - }, - { - "l": "98.0", - "x": 2.4358, - "y": 18.6126 - }, - { - "l": "98.0", - "x": 2.5192, - "y": 18.5692 - }, - { - "l": "98.0", - "x": 2.6025, - "y": 18.5275 - }, - { - "l": "98.0", - "x": 2.6858, - "y": 18.4874 - }, - { - "l": "98.0", - "x": 2.7692, - "y": 18.4493 - }, - { - "l": "98.0", - "x": 2.8525, - "y": 18.413 - }, - { - "l": "98.0", - "x": 2.9358, - "y": 18.3789 - }, - { - "l": "98.0", - "x": 3.0192, - "y": 18.3469 - }, - { - "l": "98.0", - "x": 3.1025, - "y": 18.3175 - }, - { - "l": "98.0", - "x": 3.1858, - "y": 18.2903 - }, - { - "l": "98.0", - "x": 3.2692, - "y": 18.2662 - }, - { - "l": "98.0", - "x": 3.3525, - "y": 18.2449 - }, - { - "l": "98.0", - "x": 3.4358, - "y": 18.2268 - }, - { - "l": "98.0", - "x": 3.5192, - "y": 18.2114 - }, - { - "l": "98.0", - "x": 3.6025, - "y": 18.1988 - }, - { - "l": "98.0", - "x": 3.6858, - "y": 18.189 - }, - { - "l": "98.0", - "x": 3.7692, - "y": 18.1814 - }, - { - "l": "98.0", - "x": 3.8525, - "y": 18.1761 - }, - { - "l": "98.0", - "x": 3.9358, - "y": 18.1728 - }, - { - "l": "98.0", - "x": 4.0, - "y": 18.1716 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 2.0, - "y": 20.0047 - }, - { - "l": "99.6", - "x": 2.0192, - "y": 19.9904 - }, - { - "l": "99.6", - "x": 2.1025, - "y": 19.9284 - }, - { - "l": "99.6", - "x": 2.1858, - "y": 19.868 - }, - { - "l": "99.6", - "x": 2.2692, - "y": 19.8097 - }, - { - "l": "99.6", - "x": 2.3525, - "y": 19.7545 - }, - { - "l": "99.6", - "x": 2.4358, - "y": 19.7019 - }, - { - "l": "99.6", - "x": 2.5192, - "y": 19.6518 - }, - { - "l": "99.6", - "x": 2.6025, - "y": 19.6041 - }, - { - "l": "99.6", - "x": 2.6858, - "y": 19.5587 - }, - { - "l": "99.6", - "x": 2.7692, - "y": 19.5162 - }, - { - "l": "99.6", - "x": 2.8525, - "y": 19.4763 - }, - { - "l": "99.6", - "x": 2.9358, - "y": 19.4395 - }, - { - "l": "99.6", - "x": 3.0192, - "y": 19.4055 - }, - { - "l": "99.6", - "x": 3.1025, - "y": 19.3752 - }, - { - "l": "99.6", - "x": 3.1858, - "y": 19.3478 - }, - { - "l": "99.6", - "x": 3.2692, - "y": 19.3245 - }, - { - "l": "99.6", - "x": 3.3525, - "y": 19.3051 - }, - { - "l": "99.6", - "x": 3.4358, - "y": 19.2898 - }, - { - "l": "99.6", - "x": 3.5192, - "y": 19.2781 - }, - { - "l": "99.6", - "x": 3.6025, - "y": 19.27 - }, - { - "l": "99.6", - "x": 3.6858, - "y": 19.2658 - }, - { - "l": "99.6", - "x": 3.7692, - "y": 19.2645 - }, - { - "l": "99.6", - "x": 3.8525, - "y": 19.2663 - }, - { - "l": "99.6", - "x": 3.9358, - "y": 19.2711 - }, - { - "l": "99.6", - "x": 4.0, - "y": 19.2766 - } - ] - } - ] - }, - "female": null - } - }, - { - "uk90_child": { - "male": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 4.0, - "y": 13.1335 - }, - { - "l": "0.4", - "x": 4.0833, - "y": 13.1154 - }, - { - "l": "0.4", - "x": 4.1667, - "y": 13.0981 - }, - { - "l": "0.4", - "x": 4.25, - "y": 13.0809 - }, - { - "l": "0.4", - "x": 4.3333, - "y": 13.0652 - }, - { - "l": "0.4", - "x": 4.4167, - "y": 13.0503 - }, - { - "l": "0.4", - "x": 4.5, - "y": 13.0349 - }, - { - "l": "0.4", - "x": 4.5833, - "y": 13.0207 - }, - { - "l": "0.4", - "x": 4.6667, - "y": 13.0066 - }, - { - "l": "0.4", - "x": 4.75, - "y": 12.9936 - }, - { - "l": "0.4", - "x": 4.8333, - "y": 12.9799 - }, - { - "l": "0.4", - "x": 4.9167, - "y": 12.9667 - }, - { - "l": "0.4", - "x": 5.0, - "y": 12.954 - }, - { - "l": "0.4", - "x": 5.0833, - "y": 12.9419 - }, - { - "l": "0.4", - "x": 5.1667, - "y": 12.9299 - }, - { - "l": "0.4", - "x": 5.25, - "y": 12.9183 - }, - { - "l": "0.4", - "x": 5.3333, - "y": 12.9068 - }, - { - "l": "0.4", - "x": 5.4167, - "y": 12.8948 - }, - { - "l": "0.4", - "x": 5.5, - "y": 12.884 - }, - { - "l": "0.4", - "x": 5.5833, - "y": 12.8728 - }, - { - "l": "0.4", - "x": 5.6667, - "y": 12.8618 - }, - { - "l": "0.4", - "x": 5.75, - "y": 12.8508 - }, - { - "l": "0.4", - "x": 5.8333, - "y": 12.8408 - }, - { - "l": "0.4", - "x": 5.9167, - "y": 12.8307 - }, - { - "l": "0.4", - "x": 6.0, - "y": 12.8215 - }, - { - "l": "0.4", - "x": 6.0833, - "y": 12.8114 - }, - { - "l": "0.4", - "x": 6.1667, - "y": 12.8021 - }, - { - "l": "0.4", - "x": 6.25, - "y": 12.7922 - }, - { - "l": "0.4", - "x": 6.3333, - "y": 12.7841 - }, - { - "l": "0.4", - "x": 6.4167, - "y": 12.7755 - }, - { - "l": "0.4", - "x": 6.5, - "y": 12.7676 - }, - { - "l": "0.4", - "x": 6.5833, - "y": 12.7603 - }, - { - "l": "0.4", - "x": 6.6667, - "y": 12.7537 - }, - { - "l": "0.4", - "x": 6.75, - "y": 12.7467 - }, - { - "l": "0.4", - "x": 6.8333, - "y": 12.7416 - }, - { - "l": "0.4", - "x": 6.9167, - "y": 12.7361 - }, - { - "l": "0.4", - "x": 7.0, - "y": 12.7313 - }, - { - "l": "0.4", - "x": 7.0833, - "y": 12.7276 - }, - { - "l": "0.4", - "x": 7.1667, - "y": 12.7245 - }, - { - "l": "0.4", - "x": 7.25, - "y": 12.722 - }, - { - "l": "0.4", - "x": 7.3333, - "y": 12.7207 - }, - { - "l": "0.4", - "x": 7.4167, - "y": 12.7192 - }, - { - "l": "0.4", - "x": 7.5, - "y": 12.7185 - }, - { - "l": "0.4", - "x": 7.5833, - "y": 12.7189 - }, - { - "l": "0.4", - "x": 7.6667, - "y": 12.7189 - }, - { - "l": "0.4", - "x": 7.75, - "y": 12.7202 - }, - { - "l": "0.4", - "x": 7.8333, - "y": 12.7221 - }, - { - "l": "0.4", - "x": 7.9167, - "y": 12.7251 - }, - { - "l": "0.4", - "x": 8.0, - "y": 12.7281 - }, - { - "l": "0.4", - "x": 8.0833, - "y": 12.7322 - }, - { - "l": "0.4", - "x": 8.1667, - "y": 12.7371 - }, - { - "l": "0.4", - "x": 8.25, - "y": 12.742 - }, - { - "l": "0.4", - "x": 8.3333, - "y": 12.7487 - }, - { - "l": "0.4", - "x": 8.4167, - "y": 12.7549 - }, - { - "l": "0.4", - "x": 8.5, - "y": 12.7635 - }, - { - "l": "0.4", - "x": 8.5833, - "y": 12.7715 - }, - { - "l": "0.4", - "x": 8.6667, - "y": 12.7806 - }, - { - "l": "0.4", - "x": 8.75, - "y": 12.7904 - }, - { - "l": "0.4", - "x": 8.8333, - "y": 12.8013 - }, - { - "l": "0.4", - "x": 8.9167, - "y": 12.8122 - }, - { - "l": "0.4", - "x": 9.0, - "y": 12.8243 - }, - { - "l": "0.4", - "x": 9.0833, - "y": 12.8371 - }, - { - "l": "0.4", - "x": 9.1667, - "y": 12.8499 - }, - { - "l": "0.4", - "x": 9.25, - "y": 12.864 - }, - { - "l": "0.4", - "x": 9.3333, - "y": 12.8783 - }, - { - "l": "0.4", - "x": 9.4167, - "y": 12.8939 - }, - { - "l": "0.4", - "x": 9.5, - "y": 12.9102 - }, - { - "l": "0.4", - "x": 9.5833, - "y": 12.9264 - }, - { - "l": "0.4", - "x": 9.6667, - "y": 12.9437 - }, - { - "l": "0.4", - "x": 9.75, - "y": 12.9619 - }, - { - "l": "0.4", - "x": 9.8333, - "y": 12.9803 - }, - { - "l": "0.4", - "x": 9.9167, - "y": 12.9995 - }, - { - "l": "0.4", - "x": 10.0, - "y": 13.0196 - }, - { - "l": "0.4", - "x": 10.0833, - "y": 13.0399 - }, - { - "l": "0.4", - "x": 10.1667, - "y": 13.0612 - }, - { - "l": "0.4", - "x": 10.25, - "y": 13.0828 - }, - { - "l": "0.4", - "x": 10.3333, - "y": 13.1045 - }, - { - "l": "0.4", - "x": 10.4167, - "y": 13.1274 - }, - { - "l": "0.4", - "x": 10.5, - "y": 13.1511 - }, - { - "l": "0.4", - "x": 10.5833, - "y": 13.1745 - }, - { - "l": "0.4", - "x": 10.6667, - "y": 13.1988 - }, - { - "l": "0.4", - "x": 10.75, - "y": 13.2244 - }, - { - "l": "0.4", - "x": 10.8333, - "y": 13.2491 - }, - { - "l": "0.4", - "x": 10.9167, - "y": 13.2753 - }, - { - "l": "0.4", - "x": 11.0, - "y": 13.3018 - }, - { - "l": "0.4", - "x": 11.0833, - "y": 13.3292 - }, - { - "l": "0.4", - "x": 11.1667, - "y": 13.356 - }, - { - "l": "0.4", - "x": 11.25, - "y": 13.3838 - }, - { - "l": "0.4", - "x": 11.3333, - "y": 13.4131 - }, - { - "l": "0.4", - "x": 11.4167, - "y": 13.4411 - }, - { - "l": "0.4", - "x": 11.5, - "y": 13.4712 - }, - { - "l": "0.4", - "x": 11.5833, - "y": 13.5009 - }, - { - "l": "0.4", - "x": 11.6667, - "y": 13.531 - }, - { - "l": "0.4", - "x": 11.75, - "y": 13.5623 - }, - { - "l": "0.4", - "x": 11.8333, - "y": 13.5939 - }, - { - "l": "0.4", - "x": 11.9167, - "y": 13.6264 - }, - { - "l": "0.4", - "x": 12.0, - "y": 13.6584 - }, - { - "l": "0.4", - "x": 12.0833, - "y": 13.691 - }, - { - "l": "0.4", - "x": 12.1667, - "y": 13.7247 - }, - { - "l": "0.4", - "x": 12.25, - "y": 13.7581 - }, - { - "l": "0.4", - "x": 12.3333, - "y": 13.7927 - }, - { - "l": "0.4", - "x": 12.4167, - "y": 13.8276 - }, - { - "l": "0.4", - "x": 12.5, - "y": 13.8624 - }, - { - "l": "0.4", - "x": 12.5833, - "y": 13.897 - }, - { - "l": "0.4", - "x": 12.6667, - "y": 13.9328 - }, - { - "l": "0.4", - "x": 12.75, - "y": 13.9685 - }, - { - "l": "0.4", - "x": 12.8333, - "y": 14.0052 - }, - { - "l": "0.4", - "x": 12.9167, - "y": 14.0421 - }, - { - "l": "0.4", - "x": 13.0, - "y": 14.0787 - }, - { - "l": "0.4", - "x": 13.0833, - "y": 14.1158 - }, - { - "l": "0.4", - "x": 13.1667, - "y": 14.1537 - }, - { - "l": "0.4", - "x": 13.25, - "y": 14.1908 - }, - { - "l": "0.4", - "x": 13.3333, - "y": 14.2285 - }, - { - "l": "0.4", - "x": 13.4167, - "y": 14.2668 - }, - { - "l": "0.4", - "x": 13.5, - "y": 14.3055 - }, - { - "l": "0.4", - "x": 13.5833, - "y": 14.3437 - }, - { - "l": "0.4", - "x": 13.6667, - "y": 14.3818 - }, - { - "l": "0.4", - "x": 13.75, - "y": 14.4211 - }, - { - "l": "0.4", - "x": 13.8333, - "y": 14.4595 - }, - { - "l": "0.4", - "x": 13.9167, - "y": 14.4986 - }, - { - "l": "0.4", - "x": 14.0, - "y": 14.5376 - }, - { - "l": "0.4", - "x": 14.0833, - "y": 14.5773 - }, - { - "l": "0.4", - "x": 14.1667, - "y": 14.6167 - }, - { - "l": "0.4", - "x": 14.25, - "y": 14.6554 - }, - { - "l": "0.4", - "x": 14.3333, - "y": 14.6951 - }, - { - "l": "0.4", - "x": 14.4167, - "y": 14.7345 - }, - { - "l": "0.4", - "x": 14.5, - "y": 14.7736 - }, - { - "l": "0.4", - "x": 14.5833, - "y": 14.813 - }, - { - "l": "0.4", - "x": 14.6667, - "y": 14.8519 - }, - { - "l": "0.4", - "x": 14.75, - "y": 14.892 - }, - { - "l": "0.4", - "x": 14.8333, - "y": 14.9308 - }, - { - "l": "0.4", - "x": 14.9167, - "y": 14.9704 - }, - { - "l": "0.4", - "x": 15.0, - "y": 15.0092 - }, - { - "l": "0.4", - "x": 15.0833, - "y": 15.0487 - }, - { - "l": "0.4", - "x": 15.1667, - "y": 15.0882 - }, - { - "l": "0.4", - "x": 15.25, - "y": 15.1268 - }, - { - "l": "0.4", - "x": 15.3333, - "y": 15.1662 - }, - { - "l": "0.4", - "x": 15.4167, - "y": 15.204 - }, - { - "l": "0.4", - "x": 15.5, - "y": 15.2437 - }, - { - "l": "0.4", - "x": 15.5833, - "y": 15.2814 - }, - { - "l": "0.4", - "x": 15.6667, - "y": 15.3206 - }, - { - "l": "0.4", - "x": 15.75, - "y": 15.3583 - }, - { - "l": "0.4", - "x": 15.8333, - "y": 15.3967 - }, - { - "l": "0.4", - "x": 15.9167, - "y": 15.4343 - }, - { - "l": "0.4", - "x": 16.0, - "y": 15.4723 - }, - { - "l": "0.4", - "x": 16.0833, - "y": 15.5099 - }, - { - "l": "0.4", - "x": 16.1667, - "y": 15.5475 - }, - { - "l": "0.4", - "x": 16.25, - "y": 15.5838 - }, - { - "l": "0.4", - "x": 16.3333, - "y": 15.6217 - }, - { - "l": "0.4", - "x": 16.4167, - "y": 15.6588 - }, - { - "l": "0.4", - "x": 16.5, - "y": 15.6944 - }, - { - "l": "0.4", - "x": 16.5833, - "y": 15.7306 - }, - { - "l": "0.4", - "x": 16.6667, - "y": 15.7669 - }, - { - "l": "0.4", - "x": 16.75, - "y": 15.8028 - }, - { - "l": "0.4", - "x": 16.8333, - "y": 15.8383 - }, - { - "l": "0.4", - "x": 16.9167, - "y": 15.8737 - }, - { - "l": "0.4", - "x": 17.0, - "y": 15.9088 - }, - { - "l": "0.4", - "x": 17.0833, - "y": 15.9435 - }, - { - "l": "0.4", - "x": 17.1667, - "y": 15.9782 - }, - { - "l": "0.4", - "x": 17.25, - "y": 16.0124 - }, - { - "l": "0.4", - "x": 17.3333, - "y": 16.0466 - }, - { - "l": "0.4", - "x": 17.4167, - "y": 16.0801 - }, - { - "l": "0.4", - "x": 17.5, - "y": 16.114 - }, - { - "l": "0.4", - "x": 17.5833, - "y": 16.1479 - }, - { - "l": "0.4", - "x": 17.6667, - "y": 16.1805 - }, - { - "l": "0.4", - "x": 17.75, - "y": 16.2139 - }, - { - "l": "0.4", - "x": 17.8333, - "y": 16.2466 - }, - { - "l": "0.4", - "x": 17.9167, - "y": 16.2784 - }, - { - "l": "0.4", - "x": 18.0, - "y": 16.3108 - }, - { - "l": "0.4", - "x": 18.0833, - "y": 16.3434 - }, - { - "l": "0.4", - "x": 18.1667, - "y": 16.3745 - }, - { - "l": "0.4", - "x": 18.25, - "y": 16.406 - }, - { - "l": "0.4", - "x": 18.3333, - "y": 16.4379 - }, - { - "l": "0.4", - "x": 18.4167, - "y": 16.4677 - }, - { - "l": "0.4", - "x": 18.5, - "y": 16.4984 - }, - { - "l": "0.4", - "x": 18.5833, - "y": 16.5295 - }, - { - "l": "0.4", - "x": 18.6667, - "y": 16.5598 - }, - { - "l": "0.4", - "x": 18.75, - "y": 16.59 - }, - { - "l": "0.4", - "x": 18.8333, - "y": 16.6192 - }, - { - "l": "0.4", - "x": 18.9167, - "y": 16.6495 - }, - { - "l": "0.4", - "x": 19.0, - "y": 16.679 - }, - { - "l": "0.4", - "x": 19.0833, - "y": 16.7074 - }, - { - "l": "0.4", - "x": 19.1667, - "y": 16.7369 - }, - { - "l": "0.4", - "x": 19.25, - "y": 16.7656 - }, - { - "l": "0.4", - "x": 19.3333, - "y": 16.794 - }, - { - "l": "0.4", - "x": 19.4167, - "y": 16.8219 - }, - { - "l": "0.4", - "x": 19.5, - "y": 16.8506 - }, - { - "l": "0.4", - "x": 19.5833, - "y": 16.8787 - }, - { - "l": "0.4", - "x": 19.6667, - "y": 16.9067 - }, - { - "l": "0.4", - "x": 19.75, - "y": 16.9338 - }, - { - "l": "0.4", - "x": 19.8333, - "y": 16.9606 - }, - { - "l": "0.4", - "x": 19.9167, - "y": 16.9886 - }, - { - "l": "0.4", - "x": 20.0, - "y": 17.0146 - }, - { - "l": "0.4", - "x": 20.0, - "y": 17.0146 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 4.0, - "y": 13.6915 - }, - { - "l": "2.0", - "x": 4.0833, - "y": 13.6714 - }, - { - "l": "2.0", - "x": 4.1667, - "y": 13.6522 - }, - { - "l": "2.0", - "x": 4.25, - "y": 13.6335 - }, - { - "l": "2.0", - "x": 4.3333, - "y": 13.6162 - }, - { - "l": "2.0", - "x": 4.4167, - "y": 13.6 - }, - { - "l": "2.0", - "x": 4.5, - "y": 13.5835 - }, - { - "l": "2.0", - "x": 4.5833, - "y": 13.5682 - }, - { - "l": "2.0", - "x": 4.6667, - "y": 13.5533 - }, - { - "l": "2.0", - "x": 4.75, - "y": 13.5397 - }, - { - "l": "2.0", - "x": 4.8333, - "y": 13.5254 - }, - { - "l": "2.0", - "x": 4.9167, - "y": 13.5118 - }, - { - "l": "2.0", - "x": 5.0, - "y": 13.4989 - }, - { - "l": "2.0", - "x": 5.0833, - "y": 13.4868 - }, - { - "l": "2.0", - "x": 5.1667, - "y": 13.4748 - }, - { - "l": "2.0", - "x": 5.25, - "y": 13.4634 - }, - { - "l": "2.0", - "x": 5.3333, - "y": 13.4522 - }, - { - "l": "2.0", - "x": 5.4167, - "y": 13.4407 - }, - { - "l": "2.0", - "x": 5.5, - "y": 13.4305 - }, - { - "l": "2.0", - "x": 5.5833, - "y": 13.42 - }, - { - "l": "2.0", - "x": 5.6667, - "y": 13.4098 - }, - { - "l": "2.0", - "x": 5.75, - "y": 13.3998 - }, - { - "l": "2.0", - "x": 5.8333, - "y": 13.3908 - }, - { - "l": "2.0", - "x": 5.9167, - "y": 13.3819 - }, - { - "l": "2.0", - "x": 6.0, - "y": 13.3738 - }, - { - "l": "2.0", - "x": 6.0833, - "y": 13.3651 - }, - { - "l": "2.0", - "x": 6.1667, - "y": 13.3573 - }, - { - "l": "2.0", - "x": 6.25, - "y": 13.3489 - }, - { - "l": "2.0", - "x": 6.3333, - "y": 13.3423 - }, - { - "l": "2.0", - "x": 6.4167, - "y": 13.3353 - }, - { - "l": "2.0", - "x": 6.5, - "y": 13.3291 - }, - { - "l": "2.0", - "x": 6.5833, - "y": 13.3236 - }, - { - "l": "2.0", - "x": 6.6667, - "y": 13.3187 - }, - { - "l": "2.0", - "x": 6.75, - "y": 13.3136 - }, - { - "l": "2.0", - "x": 6.8333, - "y": 13.3104 - }, - { - "l": "2.0", - "x": 6.9167, - "y": 13.3069 - }, - { - "l": "2.0", - "x": 7.0, - "y": 13.3042 - }, - { - "l": "2.0", - "x": 7.0833, - "y": 13.3024 - }, - { - "l": "2.0", - "x": 7.1667, - "y": 13.3014 - }, - { - "l": "2.0", - "x": 7.25, - "y": 13.3012 - }, - { - "l": "2.0", - "x": 7.3333, - "y": 13.3019 - }, - { - "l": "2.0", - "x": 7.4167, - "y": 13.3026 - }, - { - "l": "2.0", - "x": 7.5, - "y": 13.3041 - }, - { - "l": "2.0", - "x": 7.5833, - "y": 13.3067 - }, - { - "l": "2.0", - "x": 7.6667, - "y": 13.309 - }, - { - "l": "2.0", - "x": 7.75, - "y": 13.3125 - }, - { - "l": "2.0", - "x": 7.8333, - "y": 13.3167 - }, - { - "l": "2.0", - "x": 7.9167, - "y": 13.322 - }, - { - "l": "2.0", - "x": 8.0, - "y": 13.3274 - }, - { - "l": "2.0", - "x": 8.0833, - "y": 13.3337 - }, - { - "l": "2.0", - "x": 8.1667, - "y": 13.341 - }, - { - "l": "2.0", - "x": 8.25, - "y": 13.3482 - }, - { - "l": "2.0", - "x": 8.3333, - "y": 13.3574 - }, - { - "l": "2.0", - "x": 8.4167, - "y": 13.3659 - }, - { - "l": "2.0", - "x": 8.5, - "y": 13.377 - }, - { - "l": "2.0", - "x": 8.5833, - "y": 13.3874 - }, - { - "l": "2.0", - "x": 8.6667, - "y": 13.3988 - }, - { - "l": "2.0", - "x": 8.75, - "y": 13.4111 - }, - { - "l": "2.0", - "x": 8.8333, - "y": 13.4245 - }, - { - "l": "2.0", - "x": 8.9167, - "y": 13.4378 - }, - { - "l": "2.0", - "x": 9.0, - "y": 13.4523 - }, - { - "l": "2.0", - "x": 9.0833, - "y": 13.4677 - }, - { - "l": "2.0", - "x": 9.1667, - "y": 13.4831 - }, - { - "l": "2.0", - "x": 9.25, - "y": 13.4996 - }, - { - "l": "2.0", - "x": 9.3333, - "y": 13.5164 - }, - { - "l": "2.0", - "x": 9.4167, - "y": 13.5346 - }, - { - "l": "2.0", - "x": 9.5, - "y": 13.5534 - }, - { - "l": "2.0", - "x": 9.5833, - "y": 13.5722 - }, - { - "l": "2.0", - "x": 9.6667, - "y": 13.592 - }, - { - "l": "2.0", - "x": 9.75, - "y": 13.6128 - }, - { - "l": "2.0", - "x": 9.8333, - "y": 13.6337 - }, - { - "l": "2.0", - "x": 9.9167, - "y": 13.6555 - }, - { - "l": "2.0", - "x": 10.0, - "y": 13.6783 - }, - { - "l": "2.0", - "x": 10.0833, - "y": 13.7012 - }, - { - "l": "2.0", - "x": 10.1667, - "y": 13.7252 - }, - { - "l": "2.0", - "x": 10.25, - "y": 13.7493 - }, - { - "l": "2.0", - "x": 10.3333, - "y": 13.7736 - }, - { - "l": "2.0", - "x": 10.4167, - "y": 13.7993 - }, - { - "l": "2.0", - "x": 10.5, - "y": 13.8256 - }, - { - "l": "2.0", - "x": 10.5833, - "y": 13.8517 - }, - { - "l": "2.0", - "x": 10.6667, - "y": 13.8788 - }, - { - "l": "2.0", - "x": 10.75, - "y": 13.907 - }, - { - "l": "2.0", - "x": 10.8333, - "y": 13.9344 - }, - { - "l": "2.0", - "x": 10.9167, - "y": 13.9635 - }, - { - "l": "2.0", - "x": 11.0, - "y": 13.9927 - }, - { - "l": "2.0", - "x": 11.0833, - "y": 14.0229 - }, - { - "l": "2.0", - "x": 11.1667, - "y": 14.0524 - }, - { - "l": "2.0", - "x": 11.25, - "y": 14.0829 - }, - { - "l": "2.0", - "x": 11.3333, - "y": 14.1151 - }, - { - "l": "2.0", - "x": 11.4167, - "y": 14.1458 - }, - { - "l": "2.0", - "x": 11.5, - "y": 14.1789 - }, - { - "l": "2.0", - "x": 11.5833, - "y": 14.2114 - }, - { - "l": "2.0", - "x": 11.6667, - "y": 14.2442 - }, - { - "l": "2.0", - "x": 11.75, - "y": 14.2785 - }, - { - "l": "2.0", - "x": 11.8333, - "y": 14.313 - }, - { - "l": "2.0", - "x": 11.9167, - "y": 14.3484 - }, - { - "l": "2.0", - "x": 12.0, - "y": 14.3832 - }, - { - "l": "2.0", - "x": 12.0833, - "y": 14.4188 - }, - { - "l": "2.0", - "x": 12.1667, - "y": 14.4554 - }, - { - "l": "2.0", - "x": 12.25, - "y": 14.4917 - }, - { - "l": "2.0", - "x": 12.3333, - "y": 14.5293 - }, - { - "l": "2.0", - "x": 12.4167, - "y": 14.5671 - }, - { - "l": "2.0", - "x": 12.5, - "y": 14.6048 - }, - { - "l": "2.0", - "x": 12.5833, - "y": 14.6425 - }, - { - "l": "2.0", - "x": 12.6667, - "y": 14.6812 - }, - { - "l": "2.0", - "x": 12.75, - "y": 14.7199 - }, - { - "l": "2.0", - "x": 12.8333, - "y": 14.7596 - }, - { - "l": "2.0", - "x": 12.9167, - "y": 14.7995 - }, - { - "l": "2.0", - "x": 13.0, - "y": 14.8392 - }, - { - "l": "2.0", - "x": 13.0833, - "y": 14.8793 - }, - { - "l": "2.0", - "x": 13.1667, - "y": 14.9201 - }, - { - "l": "2.0", - "x": 13.25, - "y": 14.9602 - }, - { - "l": "2.0", - "x": 13.3333, - "y": 15.001 - }, - { - "l": "2.0", - "x": 13.4167, - "y": 15.0422 - }, - { - "l": "2.0", - "x": 13.5, - "y": 15.084 - }, - { - "l": "2.0", - "x": 13.5833, - "y": 15.1252 - }, - { - "l": "2.0", - "x": 13.6667, - "y": 15.1664 - }, - { - "l": "2.0", - "x": 13.75, - "y": 15.2086 - }, - { - "l": "2.0", - "x": 13.8333, - "y": 15.25 - }, - { - "l": "2.0", - "x": 13.9167, - "y": 15.2921 - }, - { - "l": "2.0", - "x": 14.0, - "y": 15.3343 - }, - { - "l": "2.0", - "x": 14.0833, - "y": 15.3769 - }, - { - "l": "2.0", - "x": 14.1667, - "y": 15.4193 - }, - { - "l": "2.0", - "x": 14.25, - "y": 15.461 - }, - { - "l": "2.0", - "x": 14.3333, - "y": 15.5035 - }, - { - "l": "2.0", - "x": 14.4167, - "y": 15.5461 - }, - { - "l": "2.0", - "x": 14.5, - "y": 15.588 - }, - { - "l": "2.0", - "x": 14.5833, - "y": 15.6305 - }, - { - "l": "2.0", - "x": 14.6667, - "y": 15.6724 - }, - { - "l": "2.0", - "x": 14.75, - "y": 15.7153 - }, - { - "l": "2.0", - "x": 14.8333, - "y": 15.7572 - }, - { - "l": "2.0", - "x": 14.9167, - "y": 15.7995 - }, - { - "l": "2.0", - "x": 15.0, - "y": 15.8414 - }, - { - "l": "2.0", - "x": 15.0833, - "y": 15.8837 - }, - { - "l": "2.0", - "x": 15.1667, - "y": 15.9261 - }, - { - "l": "2.0", - "x": 15.25, - "y": 15.9675 - }, - { - "l": "2.0", - "x": 15.3333, - "y": 16.0098 - }, - { - "l": "2.0", - "x": 15.4167, - "y": 16.0504 - }, - { - "l": "2.0", - "x": 15.5, - "y": 16.093 - }, - { - "l": "2.0", - "x": 15.5833, - "y": 16.1336 - }, - { - "l": "2.0", - "x": 15.6667, - "y": 16.1755 - }, - { - "l": "2.0", - "x": 15.75, - "y": 16.2161 - }, - { - "l": "2.0", - "x": 15.8333, - "y": 16.2572 - }, - { - "l": "2.0", - "x": 15.9167, - "y": 16.2975 - }, - { - "l": "2.0", - "x": 16.0, - "y": 16.3383 - }, - { - "l": "2.0", - "x": 16.0833, - "y": 16.3786 - }, - { - "l": "2.0", - "x": 16.1667, - "y": 16.4189 - }, - { - "l": "2.0", - "x": 16.25, - "y": 16.458 - }, - { - "l": "2.0", - "x": 16.3333, - "y": 16.4985 - }, - { - "l": "2.0", - "x": 16.4167, - "y": 16.5382 - }, - { - "l": "2.0", - "x": 16.5, - "y": 16.5765 - }, - { - "l": "2.0", - "x": 16.5833, - "y": 16.6154 - }, - { - "l": "2.0", - "x": 16.6667, - "y": 16.6543 - }, - { - "l": "2.0", - "x": 16.75, - "y": 16.6928 - }, - { - "l": "2.0", - "x": 16.8333, - "y": 16.7309 - }, - { - "l": "2.0", - "x": 16.9167, - "y": 16.7689 - }, - { - "l": "2.0", - "x": 17.0, - "y": 16.8066 - }, - { - "l": "2.0", - "x": 17.0833, - "y": 16.8438 - }, - { - "l": "2.0", - "x": 17.1667, - "y": 16.881 - }, - { - "l": "2.0", - "x": 17.25, - "y": 16.9177 - }, - { - "l": "2.0", - "x": 17.3333, - "y": 16.9545 - }, - { - "l": "2.0", - "x": 17.4167, - "y": 16.9904 - }, - { - "l": "2.0", - "x": 17.5, - "y": 17.0267 - }, - { - "l": "2.0", - "x": 17.5833, - "y": 17.0631 - }, - { - "l": "2.0", - "x": 17.6667, - "y": 17.0981 - }, - { - "l": "2.0", - "x": 17.75, - "y": 17.1339 - }, - { - "l": "2.0", - "x": 17.8333, - "y": 17.1691 - }, - { - "l": "2.0", - "x": 17.9167, - "y": 17.2033 - }, - { - "l": "2.0", - "x": 18.0, - "y": 17.238 - }, - { - "l": "2.0", - "x": 18.0833, - "y": 17.273 - }, - { - "l": "2.0", - "x": 18.1667, - "y": 17.3064 - }, - { - "l": "2.0", - "x": 18.25, - "y": 17.3403 - }, - { - "l": "2.0", - "x": 18.3333, - "y": 17.3744 - }, - { - "l": "2.0", - "x": 18.4167, - "y": 17.4066 - }, - { - "l": "2.0", - "x": 18.5, - "y": 17.4397 - }, - { - "l": "2.0", - "x": 18.5833, - "y": 17.4731 - }, - { - "l": "2.0", - "x": 18.6667, - "y": 17.5056 - }, - { - "l": "2.0", - "x": 18.75, - "y": 17.5381 - }, - { - "l": "2.0", - "x": 18.8333, - "y": 17.5695 - }, - { - "l": "2.0", - "x": 18.9167, - "y": 17.6021 - }, - { - "l": "2.0", - "x": 19.0, - "y": 17.6338 - }, - { - "l": "2.0", - "x": 19.0833, - "y": 17.6644 - }, - { - "l": "2.0", - "x": 19.1667, - "y": 17.6961 - }, - { - "l": "2.0", - "x": 19.25, - "y": 17.727 - }, - { - "l": "2.0", - "x": 19.3333, - "y": 17.7576 - }, - { - "l": "2.0", - "x": 19.4167, - "y": 17.7876 - }, - { - "l": "2.0", - "x": 19.5, - "y": 17.8185 - }, - { - "l": "2.0", - "x": 19.5833, - "y": 17.8486 - }, - { - "l": "2.0", - "x": 19.6667, - "y": 17.8787 - }, - { - "l": "2.0", - "x": 19.75, - "y": 17.9079 - }, - { - "l": "2.0", - "x": 19.8333, - "y": 17.9369 - }, - { - "l": "2.0", - "x": 19.9167, - "y": 17.9669 - }, - { - "l": "2.0", - "x": 20.0, - "y": 17.9951 - }, - { - "l": "2.0", - "x": 20.0, - "y": 17.9951 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 4.0, - "y": 14.307 - }, - { - "l": "9.0", - "x": 4.0833, - "y": 14.2849 - }, - { - "l": "9.0", - "x": 4.1667, - "y": 14.2642 - }, - { - "l": "9.0", - "x": 4.25, - "y": 14.2439 - }, - { - "l": "9.0", - "x": 4.3333, - "y": 14.2253 - }, - { - "l": "9.0", - "x": 4.4167, - "y": 14.2082 - }, - { - "l": "9.0", - "x": 4.5, - "y": 14.1907 - }, - { - "l": "9.0", - "x": 4.5833, - "y": 14.1747 - }, - { - "l": "9.0", - "x": 4.6667, - "y": 14.1592 - }, - { - "l": "9.0", - "x": 4.75, - "y": 14.1452 - }, - { - "l": "9.0", - "x": 4.8333, - "y": 14.1308 - }, - { - "l": "9.0", - "x": 4.9167, - "y": 14.1171 - }, - { - "l": "9.0", - "x": 5.0, - "y": 14.1045 - }, - { - "l": "9.0", - "x": 5.0833, - "y": 14.0927 - }, - { - "l": "9.0", - "x": 5.1667, - "y": 14.0813 - }, - { - "l": "9.0", - "x": 5.25, - "y": 14.0705 - }, - { - "l": "9.0", - "x": 5.3333, - "y": 14.0603 - }, - { - "l": "9.0", - "x": 5.4167, - "y": 14.0497 - }, - { - "l": "9.0", - "x": 5.5, - "y": 14.0407 - }, - { - "l": "9.0", - "x": 5.5833, - "y": 14.0314 - }, - { - "l": "9.0", - "x": 5.6667, - "y": 14.0226 - }, - { - "l": "9.0", - "x": 5.75, - "y": 14.0142 - }, - { - "l": "9.0", - "x": 5.8333, - "y": 14.0068 - }, - { - "l": "9.0", - "x": 5.9167, - "y": 13.9998 - }, - { - "l": "9.0", - "x": 6.0, - "y": 13.9936 - }, - { - "l": "9.0", - "x": 6.0833, - "y": 13.987 - }, - { - "l": "9.0", - "x": 6.1667, - "y": 13.9813 - }, - { - "l": "9.0", - "x": 6.25, - "y": 13.9752 - }, - { - "l": "9.0", - "x": 6.3333, - "y": 13.9709 - }, - { - "l": "9.0", - "x": 6.4167, - "y": 13.9663 - }, - { - "l": "9.0", - "x": 6.5, - "y": 13.9625 - }, - { - "l": "9.0", - "x": 6.5833, - "y": 13.9595 - }, - { - "l": "9.0", - "x": 6.6667, - "y": 13.9573 - }, - { - "l": "9.0", - "x": 6.75, - "y": 13.9549 - }, - { - "l": "9.0", - "x": 6.8333, - "y": 13.9544 - }, - { - "l": "9.0", - "x": 6.9167, - "y": 13.9537 - }, - { - "l": "9.0", - "x": 7.0, - "y": 13.9538 - }, - { - "l": "9.0", - "x": 7.0833, - "y": 13.9549 - }, - { - "l": "9.0", - "x": 7.1667, - "y": 13.9569 - }, - { - "l": "9.0", - "x": 7.25, - "y": 13.9596 - }, - { - "l": "9.0", - "x": 7.3333, - "y": 13.9634 - }, - { - "l": "9.0", - "x": 7.4167, - "y": 13.967 - }, - { - "l": "9.0", - "x": 7.5, - "y": 13.9716 - }, - { - "l": "9.0", - "x": 7.5833, - "y": 13.9773 - }, - { - "l": "9.0", - "x": 7.6667, - "y": 13.9827 - }, - { - "l": "9.0", - "x": 7.75, - "y": 13.9893 - }, - { - "l": "9.0", - "x": 7.8333, - "y": 13.9967 - }, - { - "l": "9.0", - "x": 7.9167, - "y": 14.0051 - }, - { - "l": "9.0", - "x": 8.0, - "y": 14.0136 - }, - { - "l": "9.0", - "x": 8.0833, - "y": 14.0231 - }, - { - "l": "9.0", - "x": 8.1667, - "y": 14.0335 - }, - { - "l": "9.0", - "x": 8.25, - "y": 14.044 - }, - { - "l": "9.0", - "x": 8.3333, - "y": 14.0563 - }, - { - "l": "9.0", - "x": 8.4167, - "y": 14.068 - }, - { - "l": "9.0", - "x": 8.5, - "y": 14.0823 - }, - { - "l": "9.0", - "x": 8.5833, - "y": 14.0959 - }, - { - "l": "9.0", - "x": 8.6667, - "y": 14.1105 - }, - { - "l": "9.0", - "x": 8.75, - "y": 14.1261 - }, - { - "l": "9.0", - "x": 8.8333, - "y": 14.1427 - }, - { - "l": "9.0", - "x": 8.9167, - "y": 14.1592 - }, - { - "l": "9.0", - "x": 9.0, - "y": 14.177 - }, - { - "l": "9.0", - "x": 9.0833, - "y": 14.1956 - }, - { - "l": "9.0", - "x": 9.1667, - "y": 14.2143 - }, - { - "l": "9.0", - "x": 9.25, - "y": 14.2341 - }, - { - "l": "9.0", - "x": 9.3333, - "y": 14.254 - }, - { - "l": "9.0", - "x": 9.4167, - "y": 14.2756 - }, - { - "l": "9.0", - "x": 9.5, - "y": 14.2976 - }, - { - "l": "9.0", - "x": 9.5833, - "y": 14.3196 - }, - { - "l": "9.0", - "x": 9.6667, - "y": 14.3427 - }, - { - "l": "9.0", - "x": 9.75, - "y": 14.3667 - }, - { - "l": "9.0", - "x": 9.8333, - "y": 14.3909 - }, - { - "l": "9.0", - "x": 9.9167, - "y": 14.416 - }, - { - "l": "9.0", - "x": 10.0, - "y": 14.4421 - }, - { - "l": "9.0", - "x": 10.0833, - "y": 14.4683 - }, - { - "l": "9.0", - "x": 10.1667, - "y": 14.4956 - }, - { - "l": "9.0", - "x": 10.25, - "y": 14.5229 - }, - { - "l": "9.0", - "x": 10.3333, - "y": 14.5504 - }, - { - "l": "9.0", - "x": 10.4167, - "y": 14.5796 - }, - { - "l": "9.0", - "x": 10.5, - "y": 14.6091 - }, - { - "l": "9.0", - "x": 10.5833, - "y": 14.6385 - }, - { - "l": "9.0", - "x": 10.6667, - "y": 14.6689 - }, - { - "l": "9.0", - "x": 10.75, - "y": 14.7005 - }, - { - "l": "9.0", - "x": 10.8333, - "y": 14.7311 - }, - { - "l": "9.0", - "x": 10.9167, - "y": 14.7636 - }, - { - "l": "9.0", - "x": 11.0, - "y": 14.7961 - }, - { - "l": "9.0", - "x": 11.0833, - "y": 14.8297 - }, - { - "l": "9.0", - "x": 11.1667, - "y": 14.8625 - }, - { - "l": "9.0", - "x": 11.25, - "y": 14.8964 - }, - { - "l": "9.0", - "x": 11.3333, - "y": 14.9319 - }, - { - "l": "9.0", - "x": 11.4167, - "y": 14.9659 - }, - { - "l": "9.0", - "x": 11.5, - "y": 15.0025 - }, - { - "l": "9.0", - "x": 11.5833, - "y": 15.0384 - }, - { - "l": "9.0", - "x": 11.6667, - "y": 15.0745 - }, - { - "l": "9.0", - "x": 11.75, - "y": 15.1122 - }, - { - "l": "9.0", - "x": 11.8333, - "y": 15.1501 - }, - { - "l": "9.0", - "x": 11.9167, - "y": 15.189 - }, - { - "l": "9.0", - "x": 12.0, - "y": 15.2271 - }, - { - "l": "9.0", - "x": 12.0833, - "y": 15.2661 - }, - { - "l": "9.0", - "x": 12.1667, - "y": 15.3061 - }, - { - "l": "9.0", - "x": 12.25, - "y": 15.346 - }, - { - "l": "9.0", - "x": 12.3333, - "y": 15.387 - }, - { - "l": "9.0", - "x": 12.4167, - "y": 15.4282 - }, - { - "l": "9.0", - "x": 12.5, - "y": 15.4693 - }, - { - "l": "9.0", - "x": 12.5833, - "y": 15.5105 - }, - { - "l": "9.0", - "x": 12.6667, - "y": 15.5527 - }, - { - "l": "9.0", - "x": 12.75, - "y": 15.5948 - }, - { - "l": "9.0", - "x": 12.8333, - "y": 15.638 - }, - { - "l": "9.0", - "x": 12.9167, - "y": 15.6813 - }, - { - "l": "9.0", - "x": 13.0, - "y": 15.7245 - }, - { - "l": "9.0", - "x": 13.0833, - "y": 15.7679 - }, - { - "l": "9.0", - "x": 13.1667, - "y": 15.8123 - }, - { - "l": "9.0", - "x": 13.25, - "y": 15.8557 - }, - { - "l": "9.0", - "x": 13.3333, - "y": 15.9 - }, - { - "l": "9.0", - "x": 13.4167, - "y": 15.9446 - }, - { - "l": "9.0", - "x": 13.5, - "y": 15.99 - }, - { - "l": "9.0", - "x": 13.5833, - "y": 16.0346 - }, - { - "l": "9.0", - "x": 13.6667, - "y": 16.0792 - }, - { - "l": "9.0", - "x": 13.75, - "y": 16.1248 - }, - { - "l": "9.0", - "x": 13.8333, - "y": 16.1695 - }, - { - "l": "9.0", - "x": 13.9167, - "y": 16.2152 - }, - { - "l": "9.0", - "x": 14.0, - "y": 16.2608 - }, - { - "l": "9.0", - "x": 14.0833, - "y": 16.3067 - }, - { - "l": "9.0", - "x": 14.1667, - "y": 16.3525 - }, - { - "l": "9.0", - "x": 14.25, - "y": 16.3975 - }, - { - "l": "9.0", - "x": 14.3333, - "y": 16.4434 - }, - { - "l": "9.0", - "x": 14.4167, - "y": 16.4894 - }, - { - "l": "9.0", - "x": 14.5, - "y": 16.5345 - }, - { - "l": "9.0", - "x": 14.5833, - "y": 16.5805 - }, - { - "l": "9.0", - "x": 14.6667, - "y": 16.6257 - }, - { - "l": "9.0", - "x": 14.75, - "y": 16.6719 - }, - { - "l": "9.0", - "x": 14.8333, - "y": 16.7171 - }, - { - "l": "9.0", - "x": 14.9167, - "y": 16.7626 - }, - { - "l": "9.0", - "x": 15.0, - "y": 16.8078 - }, - { - "l": "9.0", - "x": 15.0833, - "y": 16.8533 - }, - { - "l": "9.0", - "x": 15.1667, - "y": 16.8988 - }, - { - "l": "9.0", - "x": 15.25, - "y": 16.9435 - }, - { - "l": "9.0", - "x": 15.3333, - "y": 16.989 - }, - { - "l": "9.0", - "x": 15.4167, - "y": 17.0327 - }, - { - "l": "9.0", - "x": 15.5, - "y": 17.0784 - }, - { - "l": "9.0", - "x": 15.5833, - "y": 17.1222 - }, - { - "l": "9.0", - "x": 15.6667, - "y": 17.1672 - }, - { - "l": "9.0", - "x": 15.75, - "y": 17.2109 - }, - { - "l": "9.0", - "x": 15.8333, - "y": 17.255 - }, - { - "l": "9.0", - "x": 15.9167, - "y": 17.2983 - }, - { - "l": "9.0", - "x": 16.0, - "y": 17.3422 - }, - { - "l": "9.0", - "x": 16.0833, - "y": 17.3855 - }, - { - "l": "9.0", - "x": 16.1667, - "y": 17.4287 - }, - { - "l": "9.0", - "x": 16.25, - "y": 17.4709 - }, - { - "l": "9.0", - "x": 16.3333, - "y": 17.5143 - }, - { - "l": "9.0", - "x": 16.4167, - "y": 17.5569 - }, - { - "l": "9.0", - "x": 16.5, - "y": 17.5982 - }, - { - "l": "9.0", - "x": 16.5833, - "y": 17.6399 - }, - { - "l": "9.0", - "x": 16.6667, - "y": 17.6815 - }, - { - "l": "9.0", - "x": 16.75, - "y": 17.723 - }, - { - "l": "9.0", - "x": 16.8333, - "y": 17.7638 - }, - { - "l": "9.0", - "x": 16.9167, - "y": 17.8047 - }, - { - "l": "9.0", - "x": 17.0, - "y": 17.8453 - }, - { - "l": "9.0", - "x": 17.0833, - "y": 17.8852 - }, - { - "l": "9.0", - "x": 17.1667, - "y": 17.9252 - }, - { - "l": "9.0", - "x": 17.25, - "y": 17.9644 - }, - { - "l": "9.0", - "x": 17.3333, - "y": 18.0042 - }, - { - "l": "9.0", - "x": 17.4167, - "y": 18.0426 - }, - { - "l": "9.0", - "x": 17.5, - "y": 18.0816 - }, - { - "l": "9.0", - "x": 17.5833, - "y": 18.1207 - }, - { - "l": "9.0", - "x": 17.6667, - "y": 18.1582 - }, - { - "l": "9.0", - "x": 17.75, - "y": 18.1966 - }, - { - "l": "9.0", - "x": 17.8333, - "y": 18.2346 - }, - { - "l": "9.0", - "x": 17.9167, - "y": 18.2713 - }, - { - "l": "9.0", - "x": 18.0, - "y": 18.3086 - }, - { - "l": "9.0", - "x": 18.0833, - "y": 18.3461 - }, - { - "l": "9.0", - "x": 18.1667, - "y": 18.3819 - }, - { - "l": "9.0", - "x": 18.25, - "y": 18.4184 - }, - { - "l": "9.0", - "x": 18.3333, - "y": 18.455 - }, - { - "l": "9.0", - "x": 18.4167, - "y": 18.4898 - }, - { - "l": "9.0", - "x": 18.5, - "y": 18.5254 - }, - { - "l": "9.0", - "x": 18.5833, - "y": 18.5612 - }, - { - "l": "9.0", - "x": 18.6667, - "y": 18.5961 - }, - { - "l": "9.0", - "x": 18.75, - "y": 18.631 - }, - { - "l": "9.0", - "x": 18.8333, - "y": 18.6648 - }, - { - "l": "9.0", - "x": 18.9167, - "y": 18.6998 - }, - { - "l": "9.0", - "x": 19.0, - "y": 18.7338 - }, - { - "l": "9.0", - "x": 19.0833, - "y": 18.7668 - }, - { - "l": "9.0", - "x": 19.1667, - "y": 18.8009 - }, - { - "l": "9.0", - "x": 19.25, - "y": 18.834 - }, - { - "l": "9.0", - "x": 19.3333, - "y": 18.867 - }, - { - "l": "9.0", - "x": 19.4167, - "y": 18.8993 - }, - { - "l": "9.0", - "x": 19.5, - "y": 18.9325 - }, - { - "l": "9.0", - "x": 19.5833, - "y": 18.9648 - }, - { - "l": "9.0", - "x": 19.6667, - "y": 18.9971 - }, - { - "l": "9.0", - "x": 19.75, - "y": 19.0286 - }, - { - "l": "9.0", - "x": 19.8333, - "y": 19.0598 - }, - { - "l": "9.0", - "x": 19.9167, - "y": 19.0921 - }, - { - "l": "9.0", - "x": 20.0, - "y": 19.1225 - }, - { - "l": "9.0", - "x": 20.0, - "y": 19.1225 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 4.0, - "y": 14.9897 - }, - { - "l": "25.0", - "x": 4.0833, - "y": 14.966 - }, - { - "l": "25.0", - "x": 4.1667, - "y": 14.9439 - }, - { - "l": "25.0", - "x": 4.25, - "y": 14.9225 - }, - { - "l": "25.0", - "x": 4.3333, - "y": 14.903 - }, - { - "l": "25.0", - "x": 4.4167, - "y": 14.8851 - }, - { - "l": "25.0", - "x": 4.5, - "y": 14.8671 - }, - { - "l": "25.0", - "x": 4.5833, - "y": 14.8507 - }, - { - "l": "25.0", - "x": 4.6667, - "y": 14.8352 - }, - { - "l": "25.0", - "x": 4.75, - "y": 14.8213 - }, - { - "l": "25.0", - "x": 4.8333, - "y": 14.8072 - }, - { - "l": "25.0", - "x": 4.9167, - "y": 14.794 - }, - { - "l": "25.0", - "x": 5.0, - "y": 14.7822 - }, - { - "l": "25.0", - "x": 5.0833, - "y": 14.7714 - }, - { - "l": "25.0", - "x": 5.1667, - "y": 14.7612 - }, - { - "l": "25.0", - "x": 5.25, - "y": 14.7518 - }, - { - "l": "25.0", - "x": 5.3333, - "y": 14.7432 - }, - { - "l": "25.0", - "x": 5.4167, - "y": 14.7344 - }, - { - "l": "25.0", - "x": 5.5, - "y": 14.7273 - }, - { - "l": "25.0", - "x": 5.5833, - "y": 14.72 - }, - { - "l": "25.0", - "x": 5.6667, - "y": 14.7135 - }, - { - "l": "25.0", - "x": 5.75, - "y": 14.7077 - }, - { - "l": "25.0", - "x": 5.8333, - "y": 14.7028 - }, - { - "l": "25.0", - "x": 5.9167, - "y": 14.6986 - }, - { - "l": "25.0", - "x": 6.0, - "y": 14.6953 - }, - { - "l": "25.0", - "x": 6.0833, - "y": 14.6918 - }, - { - "l": "25.0", - "x": 6.1667, - "y": 14.6892 - }, - { - "l": "25.0", - "x": 6.25, - "y": 14.6864 - }, - { - "l": "25.0", - "x": 6.3333, - "y": 14.6854 - }, - { - "l": "25.0", - "x": 6.4167, - "y": 14.6844 - }, - { - "l": "25.0", - "x": 6.5, - "y": 14.6842 - }, - { - "l": "25.0", - "x": 6.5833, - "y": 14.6848 - }, - { - "l": "25.0", - "x": 6.6667, - "y": 14.6864 - }, - { - "l": "25.0", - "x": 6.75, - "y": 14.6879 - }, - { - "l": "25.0", - "x": 6.8333, - "y": 14.6912 - }, - { - "l": "25.0", - "x": 6.9167, - "y": 14.6945 - }, - { - "l": "25.0", - "x": 7.0, - "y": 14.6987 - }, - { - "l": "25.0", - "x": 7.0833, - "y": 14.7039 - }, - { - "l": "25.0", - "x": 7.1667, - "y": 14.71 - }, - { - "l": "25.0", - "x": 7.25, - "y": 14.7169 - }, - { - "l": "25.0", - "x": 7.3333, - "y": 14.7249 - }, - { - "l": "25.0", - "x": 7.4167, - "y": 14.7328 - }, - { - "l": "25.0", - "x": 7.5, - "y": 14.7417 - }, - { - "l": "25.0", - "x": 7.5833, - "y": 14.7516 - }, - { - "l": "25.0", - "x": 7.6667, - "y": 14.7614 - }, - { - "l": "25.0", - "x": 7.75, - "y": 14.7723 - }, - { - "l": "25.0", - "x": 7.8333, - "y": 14.784 - }, - { - "l": "25.0", - "x": 7.9167, - "y": 14.7968 - }, - { - "l": "25.0", - "x": 8.0, - "y": 14.8097 - }, - { - "l": "25.0", - "x": 8.0833, - "y": 14.8235 - }, - { - "l": "25.0", - "x": 8.1667, - "y": 14.8383 - }, - { - "l": "25.0", - "x": 8.25, - "y": 14.8532 - }, - { - "l": "25.0", - "x": 8.3333, - "y": 14.87 - }, - { - "l": "25.0", - "x": 8.4167, - "y": 14.8859 - }, - { - "l": "25.0", - "x": 8.5, - "y": 14.9047 - }, - { - "l": "25.0", - "x": 8.5833, - "y": 14.9226 - }, - { - "l": "25.0", - "x": 8.6667, - "y": 14.9416 - }, - { - "l": "25.0", - "x": 8.75, - "y": 14.9615 - }, - { - "l": "25.0", - "x": 8.8333, - "y": 14.9825 - }, - { - "l": "25.0", - "x": 8.9167, - "y": 15.0034 - }, - { - "l": "25.0", - "x": 9.0, - "y": 15.0254 - }, - { - "l": "25.0", - "x": 9.0833, - "y": 15.0484 - }, - { - "l": "25.0", - "x": 9.1667, - "y": 15.0715 - }, - { - "l": "25.0", - "x": 9.25, - "y": 15.0956 - }, - { - "l": "25.0", - "x": 9.3333, - "y": 15.1198 - }, - { - "l": "25.0", - "x": 9.4167, - "y": 15.1458 - }, - { - "l": "25.0", - "x": 9.5, - "y": 15.172 - }, - { - "l": "25.0", - "x": 9.5833, - "y": 15.1983 - }, - { - "l": "25.0", - "x": 9.6667, - "y": 15.2256 - }, - { - "l": "25.0", - "x": 9.75, - "y": 15.2538 - }, - { - "l": "25.0", - "x": 9.8333, - "y": 15.2822 - }, - { - "l": "25.0", - "x": 9.9167, - "y": 15.3116 - }, - { - "l": "25.0", - "x": 10.0, - "y": 15.3419 - }, - { - "l": "25.0", - "x": 10.0833, - "y": 15.3724 - }, - { - "l": "25.0", - "x": 10.1667, - "y": 15.4038 - }, - { - "l": "25.0", - "x": 10.25, - "y": 15.4353 - }, - { - "l": "25.0", - "x": 10.3333, - "y": 15.4669 - }, - { - "l": "25.0", - "x": 10.4167, - "y": 15.5004 - }, - { - "l": "25.0", - "x": 10.5, - "y": 15.534 - }, - { - "l": "25.0", - "x": 10.5833, - "y": 15.5676 - }, - { - "l": "25.0", - "x": 10.6667, - "y": 15.6021 - }, - { - "l": "25.0", - "x": 10.75, - "y": 15.6378 - }, - { - "l": "25.0", - "x": 10.8333, - "y": 15.6726 - }, - { - "l": "25.0", - "x": 10.9167, - "y": 15.7093 - }, - { - "l": "25.0", - "x": 11.0, - "y": 15.7459 - }, - { - "l": "25.0", - "x": 11.0833, - "y": 15.7837 - }, - { - "l": "25.0", - "x": 11.1667, - "y": 15.8206 - }, - { - "l": "25.0", - "x": 11.25, - "y": 15.8584 - }, - { - "l": "25.0", - "x": 11.3333, - "y": 15.8982 - }, - { - "l": "25.0", - "x": 11.4167, - "y": 15.9362 - }, - { - "l": "25.0", - "x": 11.5, - "y": 15.977 - }, - { - "l": "25.0", - "x": 11.5833, - "y": 16.0169 - }, - { - "l": "25.0", - "x": 11.6667, - "y": 16.057 - }, - { - "l": "25.0", - "x": 11.75, - "y": 16.0989 - }, - { - "l": "25.0", - "x": 11.8333, - "y": 16.1409 - }, - { - "l": "25.0", - "x": 11.9167, - "y": 16.1839 - }, - { - "l": "25.0", - "x": 12.0, - "y": 16.226 - }, - { - "l": "25.0", - "x": 12.0833, - "y": 16.2691 - }, - { - "l": "25.0", - "x": 12.1667, - "y": 16.3132 - }, - { - "l": "25.0", - "x": 12.25, - "y": 16.3572 - }, - { - "l": "25.0", - "x": 12.3333, - "y": 16.4023 - }, - { - "l": "25.0", - "x": 12.4167, - "y": 16.4474 - }, - { - "l": "25.0", - "x": 12.5, - "y": 16.4926 - }, - { - "l": "25.0", - "x": 12.5833, - "y": 16.5379 - }, - { - "l": "25.0", - "x": 12.6667, - "y": 16.5841 - }, - { - "l": "25.0", - "x": 12.75, - "y": 16.6303 - }, - { - "l": "25.0", - "x": 12.8333, - "y": 16.6775 - }, - { - "l": "25.0", - "x": 12.9167, - "y": 16.7248 - }, - { - "l": "25.0", - "x": 13.0, - "y": 16.7721 - }, - { - "l": "25.0", - "x": 13.0833, - "y": 16.8194 - }, - { - "l": "25.0", - "x": 13.1667, - "y": 16.8678 - }, - { - "l": "25.0", - "x": 13.25, - "y": 16.9151 - }, - { - "l": "25.0", - "x": 13.3333, - "y": 16.9635 - }, - { - "l": "25.0", - "x": 13.4167, - "y": 17.012 - }, - { - "l": "25.0", - "x": 13.5, - "y": 17.0614 - }, - { - "l": "25.0", - "x": 13.5833, - "y": 17.1099 - }, - { - "l": "25.0", - "x": 13.6667, - "y": 17.1584 - }, - { - "l": "25.0", - "x": 13.75, - "y": 17.2079 - }, - { - "l": "25.0", - "x": 13.8333, - "y": 17.2565 - }, - { - "l": "25.0", - "x": 13.9167, - "y": 17.3061 - }, - { - "l": "25.0", - "x": 14.0, - "y": 17.3556 - }, - { - "l": "25.0", - "x": 14.0833, - "y": 17.4053 - }, - { - "l": "25.0", - "x": 14.1667, - "y": 17.4549 - }, - { - "l": "25.0", - "x": 14.25, - "y": 17.5037 - }, - { - "l": "25.0", - "x": 14.3333, - "y": 17.5534 - }, - { - "l": "25.0", - "x": 14.4167, - "y": 17.6032 - }, - { - "l": "25.0", - "x": 14.5, - "y": 17.652 - }, - { - "l": "25.0", - "x": 14.5833, - "y": 17.7017 - }, - { - "l": "25.0", - "x": 14.6667, - "y": 17.7507 - }, - { - "l": "25.0", - "x": 14.75, - "y": 17.8005 - }, - { - "l": "25.0", - "x": 14.8333, - "y": 17.8495 - }, - { - "l": "25.0", - "x": 14.9167, - "y": 17.8985 - }, - { - "l": "25.0", - "x": 15.0, - "y": 17.9474 - }, - { - "l": "25.0", - "x": 15.0833, - "y": 17.9965 - }, - { - "l": "25.0", - "x": 15.1667, - "y": 18.0455 - }, - { - "l": "25.0", - "x": 15.25, - "y": 18.0937 - }, - { - "l": "25.0", - "x": 15.3333, - "y": 18.1428 - }, - { - "l": "25.0", - "x": 15.4167, - "y": 18.19 - }, - { - "l": "25.0", - "x": 15.5, - "y": 18.2392 - }, - { - "l": "25.0", - "x": 15.5833, - "y": 18.2864 - }, - { - "l": "25.0", - "x": 15.6667, - "y": 18.3348 - }, - { - "l": "25.0", - "x": 15.75, - "y": 18.382 - }, - { - "l": "25.0", - "x": 15.8333, - "y": 18.4294 - }, - { - "l": "25.0", - "x": 15.9167, - "y": 18.4759 - }, - { - "l": "25.0", - "x": 16.0, - "y": 18.5233 - }, - { - "l": "25.0", - "x": 16.0833, - "y": 18.5697 - }, - { - "l": "25.0", - "x": 16.1667, - "y": 18.6162 - }, - { - "l": "25.0", - "x": 16.25, - "y": 18.6617 - }, - { - "l": "25.0", - "x": 16.3333, - "y": 18.7083 - }, - { - "l": "25.0", - "x": 16.4167, - "y": 18.754 - }, - { - "l": "25.0", - "x": 16.5, - "y": 18.7985 - }, - { - "l": "25.0", - "x": 16.5833, - "y": 18.8433 - }, - { - "l": "25.0", - "x": 16.6667, - "y": 18.888 - }, - { - "l": "25.0", - "x": 16.75, - "y": 18.9327 - }, - { - "l": "25.0", - "x": 16.8333, - "y": 18.9765 - }, - { - "l": "25.0", - "x": 16.9167, - "y": 19.0203 - }, - { - "l": "25.0", - "x": 17.0, - "y": 19.0641 - }, - { - "l": "25.0", - "x": 17.0833, - "y": 19.107 - }, - { - "l": "25.0", - "x": 17.1667, - "y": 19.1498 - }, - { - "l": "25.0", - "x": 17.25, - "y": 19.1919 - }, - { - "l": "25.0", - "x": 17.3333, - "y": 19.2347 - }, - { - "l": "25.0", - "x": 17.4167, - "y": 19.2759 - }, - { - "l": "25.0", - "x": 17.5, - "y": 19.3178 - }, - { - "l": "25.0", - "x": 17.5833, - "y": 19.3598 - }, - { - "l": "25.0", - "x": 17.6667, - "y": 19.4 - }, - { - "l": "25.0", - "x": 17.75, - "y": 19.4411 - }, - { - "l": "25.0", - "x": 17.8333, - "y": 19.4821 - }, - { - "l": "25.0", - "x": 17.9167, - "y": 19.5214 - }, - { - "l": "25.0", - "x": 18.0, - "y": 19.5615 - }, - { - "l": "25.0", - "x": 18.0833, - "y": 19.6017 - }, - { - "l": "25.0", - "x": 18.1667, - "y": 19.6401 - }, - { - "l": "25.0", - "x": 18.25, - "y": 19.6793 - }, - { - "l": "25.0", - "x": 18.3333, - "y": 19.7186 - }, - { - "l": "25.0", - "x": 18.4167, - "y": 19.756 - }, - { - "l": "25.0", - "x": 18.5, - "y": 19.7942 - }, - { - "l": "25.0", - "x": 18.5833, - "y": 19.8326 - }, - { - "l": "25.0", - "x": 18.6667, - "y": 19.87 - }, - { - "l": "25.0", - "x": 18.75, - "y": 19.9075 - }, - { - "l": "25.0", - "x": 18.8333, - "y": 19.9439 - }, - { - "l": "25.0", - "x": 18.9167, - "y": 19.9813 - }, - { - "l": "25.0", - "x": 19.0, - "y": 20.0178 - }, - { - "l": "25.0", - "x": 19.0833, - "y": 20.0533 - }, - { - "l": "25.0", - "x": 19.1667, - "y": 20.0898 - }, - { - "l": "25.0", - "x": 19.25, - "y": 20.1254 - }, - { - "l": "25.0", - "x": 19.3333, - "y": 20.1609 - }, - { - "l": "25.0", - "x": 19.4167, - "y": 20.1955 - }, - { - "l": "25.0", - "x": 19.5, - "y": 20.2311 - }, - { - "l": "25.0", - "x": 19.5833, - "y": 20.2657 - }, - { - "l": "25.0", - "x": 19.6667, - "y": 20.3004 - }, - { - "l": "25.0", - "x": 19.75, - "y": 20.3341 - }, - { - "l": "25.0", - "x": 19.8333, - "y": 20.3677 - }, - { - "l": "25.0", - "x": 19.9167, - "y": 20.4024 - }, - { - "l": "25.0", - "x": 20.0, - "y": 20.4351 - }, - { - "l": "25.0", - "x": 20.0, - "y": 20.4351 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 4.0, - "y": 15.752 - }, - { - "l": "50.0", - "x": 4.0833, - "y": 15.727 - }, - { - "l": "50.0", - "x": 4.1667, - "y": 15.704 - }, - { - "l": "50.0", - "x": 4.25, - "y": 15.682 - }, - { - "l": "50.0", - "x": 4.3333, - "y": 15.662 - }, - { - "l": "50.0", - "x": 4.4167, - "y": 15.644 - }, - { - "l": "50.0", - "x": 4.5, - "y": 15.626 - }, - { - "l": "50.0", - "x": 4.5833, - "y": 15.61 - }, - { - "l": "50.0", - "x": 4.6667, - "y": 15.595 - }, - { - "l": "50.0", - "x": 4.75, - "y": 15.582 - }, - { - "l": "50.0", - "x": 4.8333, - "y": 15.569 - }, - { - "l": "50.0", - "x": 4.9167, - "y": 15.557 - }, - { - "l": "50.0", - "x": 5.0, - "y": 15.547 - }, - { - "l": "50.0", - "x": 5.0833, - "y": 15.538 - }, - { - "l": "50.0", - "x": 5.1667, - "y": 15.53 - }, - { - "l": "50.0", - "x": 5.25, - "y": 15.523 - }, - { - "l": "50.0", - "x": 5.3333, - "y": 15.517 - }, - { - "l": "50.0", - "x": 5.4167, - "y": 15.511 - }, - { - "l": "50.0", - "x": 5.5, - "y": 15.507 - }, - { - "l": "50.0", - "x": 5.5833, - "y": 15.503 - }, - { - "l": "50.0", - "x": 5.6667, - "y": 15.5 - }, - { - "l": "50.0", - "x": 5.75, - "y": 15.498 - }, - { - "l": "50.0", - "x": 5.8333, - "y": 15.497 - }, - { - "l": "50.0", - "x": 5.9167, - "y": 15.497 - }, - { - "l": "50.0", - "x": 6.0, - "y": 15.498 - }, - { - "l": "50.0", - "x": 6.0833, - "y": 15.499 - }, - { - "l": "50.0", - "x": 6.1667, - "y": 15.501 - }, - { - "l": "50.0", - "x": 6.25, - "y": 15.503 - }, - { - "l": "50.0", - "x": 6.3333, - "y": 15.507 - }, - { - "l": "50.0", - "x": 6.4167, - "y": 15.511 - }, - { - "l": "50.0", - "x": 6.5, - "y": 15.516 - }, - { - "l": "50.0", - "x": 6.5833, - "y": 15.522 - }, - { - "l": "50.0", - "x": 6.6667, - "y": 15.529 - }, - { - "l": "50.0", - "x": 6.75, - "y": 15.536 - }, - { - "l": "50.0", - "x": 6.8333, - "y": 15.545 - }, - { - "l": "50.0", - "x": 6.9167, - "y": 15.554 - }, - { - "l": "50.0", - "x": 7.0, - "y": 15.564 - }, - { - "l": "50.0", - "x": 7.0833, - "y": 15.575 - }, - { - "l": "50.0", - "x": 7.1667, - "y": 15.587 - }, - { - "l": "50.0", - "x": 7.25, - "y": 15.6 - }, - { - "l": "50.0", - "x": 7.3333, - "y": 15.614 - }, - { - "l": "50.0", - "x": 7.4167, - "y": 15.628 - }, - { - "l": "50.0", - "x": 7.5, - "y": 15.643 - }, - { - "l": "50.0", - "x": 7.5833, - "y": 15.659 - }, - { - "l": "50.0", - "x": 7.6667, - "y": 15.675 - }, - { - "l": "50.0", - "x": 7.75, - "y": 15.692 - }, - { - "l": "50.0", - "x": 7.8333, - "y": 15.71 - }, - { - "l": "50.0", - "x": 7.9167, - "y": 15.729 - }, - { - "l": "50.0", - "x": 8.0, - "y": 15.748 - }, - { - "l": "50.0", - "x": 8.0833, - "y": 15.768 - }, - { - "l": "50.0", - "x": 8.1667, - "y": 15.789 - }, - { - "l": "50.0", - "x": 8.25, - "y": 15.81 - }, - { - "l": "50.0", - "x": 8.3333, - "y": 15.833 - }, - { - "l": "50.0", - "x": 8.4167, - "y": 15.855 - }, - { - "l": "50.0", - "x": 8.5, - "y": 15.88 - }, - { - "l": "50.0", - "x": 8.5833, - "y": 15.904 - }, - { - "l": "50.0", - "x": 8.6667, - "y": 15.929 - }, - { - "l": "50.0", - "x": 8.75, - "y": 15.955 - }, - { - "l": "50.0", - "x": 8.8333, - "y": 15.982 - }, - { - "l": "50.0", - "x": 8.9167, - "y": 16.009 - }, - { - "l": "50.0", - "x": 9.0, - "y": 16.037 - }, - { - "l": "50.0", - "x": 9.0833, - "y": 16.066 - }, - { - "l": "50.0", - "x": 9.1667, - "y": 16.095 - }, - { - "l": "50.0", - "x": 9.25, - "y": 16.125 - }, - { - "l": "50.0", - "x": 9.3333, - "y": 16.155 - }, - { - "l": "50.0", - "x": 9.4167, - "y": 16.187 - }, - { - "l": "50.0", - "x": 9.5, - "y": 16.219 - }, - { - "l": "50.0", - "x": 9.5833, - "y": 16.251 - }, - { - "l": "50.0", - "x": 9.6667, - "y": 16.284 - }, - { - "l": "50.0", - "x": 9.75, - "y": 16.318 - }, - { - "l": "50.0", - "x": 9.8333, - "y": 16.352 - }, - { - "l": "50.0", - "x": 9.9167, - "y": 16.387 - }, - { - "l": "50.0", - "x": 10.0, - "y": 16.423 - }, - { - "l": "50.0", - "x": 10.0833, - "y": 16.459 - }, - { - "l": "50.0", - "x": 10.1667, - "y": 16.496 - }, - { - "l": "50.0", - "x": 10.25, - "y": 16.533 - }, - { - "l": "50.0", - "x": 10.3333, - "y": 16.57 - }, - { - "l": "50.0", - "x": 10.4167, - "y": 16.609 - }, - { - "l": "50.0", - "x": 10.5, - "y": 16.648 - }, - { - "l": "50.0", - "x": 10.5833, - "y": 16.687 - }, - { - "l": "50.0", - "x": 10.6667, - "y": 16.727 - }, - { - "l": "50.0", - "x": 10.75, - "y": 16.768 - }, - { - "l": "50.0", - "x": 10.8333, - "y": 16.808 - }, - { - "l": "50.0", - "x": 10.9167, - "y": 16.85 - }, - { - "l": "50.0", - "x": 11.0, - "y": 16.892 - }, - { - "l": "50.0", - "x": 11.0833, - "y": 16.935 - }, - { - "l": "50.0", - "x": 11.1667, - "y": 16.977 - }, - { - "l": "50.0", - "x": 11.25, - "y": 17.02 - }, - { - "l": "50.0", - "x": 11.3333, - "y": 17.065 - }, - { - "l": "50.0", - "x": 11.4167, - "y": 17.108 - }, - { - "l": "50.0", - "x": 11.5, - "y": 17.154 - }, - { - "l": "50.0", - "x": 11.5833, - "y": 17.199 - }, - { - "l": "50.0", - "x": 11.6667, - "y": 17.244 - }, - { - "l": "50.0", - "x": 11.75, - "y": 17.291 - }, - { - "l": "50.0", - "x": 11.8333, - "y": 17.338 - }, - { - "l": "50.0", - "x": 11.9167, - "y": 17.386 - }, - { - "l": "50.0", - "x": 12.0, - "y": 17.433 - }, - { - "l": "50.0", - "x": 12.0833, - "y": 17.481 - }, - { - "l": "50.0", - "x": 12.1667, - "y": 17.53 - }, - { - "l": "50.0", - "x": 12.25, - "y": 17.579 - }, - { - "l": "50.0", - "x": 12.3333, - "y": 17.629 - }, - { - "l": "50.0", - "x": 12.4167, - "y": 17.679 - }, - { - "l": "50.0", - "x": 12.5, - "y": 17.729 - }, - { - "l": "50.0", - "x": 12.5833, - "y": 17.779 - }, - { - "l": "50.0", - "x": 12.6667, - "y": 17.83 - }, - { - "l": "50.0", - "x": 12.75, - "y": 17.881 - }, - { - "l": "50.0", - "x": 12.8333, - "y": 17.933 - }, - { - "l": "50.0", - "x": 12.9167, - "y": 17.985 - }, - { - "l": "50.0", - "x": 13.0, - "y": 18.037 - }, - { - "l": "50.0", - "x": 13.0833, - "y": 18.089 - }, - { - "l": "50.0", - "x": 13.1667, - "y": 18.142 - }, - { - "l": "50.0", - "x": 13.25, - "y": 18.194 - }, - { - "l": "50.0", - "x": 13.3333, - "y": 18.247 - }, - { - "l": "50.0", - "x": 13.4167, - "y": 18.3 - }, - { - "l": "50.0", - "x": 13.5, - "y": 18.354 - }, - { - "l": "50.0", - "x": 13.5833, - "y": 18.407 - }, - { - "l": "50.0", - "x": 13.6667, - "y": 18.46 - }, - { - "l": "50.0", - "x": 13.75, - "y": 18.514 - }, - { - "l": "50.0", - "x": 13.8333, - "y": 18.567 - }, - { - "l": "50.0", - "x": 13.9167, - "y": 18.621 - }, - { - "l": "50.0", - "x": 14.0, - "y": 18.675 - }, - { - "l": "50.0", - "x": 14.0833, - "y": 18.729 - }, - { - "l": "50.0", - "x": 14.1667, - "y": 18.783 - }, - { - "l": "50.0", - "x": 14.25, - "y": 18.836 - }, - { - "l": "50.0", - "x": 14.3333, - "y": 18.89 - }, - { - "l": "50.0", - "x": 14.4167, - "y": 18.944 - }, - { - "l": "50.0", - "x": 14.5, - "y": 18.997 - }, - { - "l": "50.0", - "x": 14.5833, - "y": 19.051 - }, - { - "l": "50.0", - "x": 14.6667, - "y": 19.104 - }, - { - "l": "50.0", - "x": 14.75, - "y": 19.158 - }, - { - "l": "50.0", - "x": 14.8333, - "y": 19.211 - }, - { - "l": "50.0", - "x": 14.9167, - "y": 19.264 - }, - { - "l": "50.0", - "x": 15.0, - "y": 19.317 - }, - { - "l": "50.0", - "x": 15.0833, - "y": 19.37 - }, - { - "l": "50.0", - "x": 15.1667, - "y": 19.423 - }, - { - "l": "50.0", - "x": 15.25, - "y": 19.475 - }, - { - "l": "50.0", - "x": 15.3333, - "y": 19.528 - }, - { - "l": "50.0", - "x": 15.4167, - "y": 19.579 - }, - { - "l": "50.0", - "x": 15.5, - "y": 19.632 - }, - { - "l": "50.0", - "x": 15.5833, - "y": 19.683 - }, - { - "l": "50.0", - "x": 15.6667, - "y": 19.735 - }, - { - "l": "50.0", - "x": 15.75, - "y": 19.786 - }, - { - "l": "50.0", - "x": 15.8333, - "y": 19.837 - }, - { - "l": "50.0", - "x": 15.9167, - "y": 19.887 - }, - { - "l": "50.0", - "x": 16.0, - "y": 19.938 - }, - { - "l": "50.0", - "x": 16.0833, - "y": 19.988 - }, - { - "l": "50.0", - "x": 16.1667, - "y": 20.038 - }, - { - "l": "50.0", - "x": 16.25, - "y": 20.087 - }, - { - "l": "50.0", - "x": 16.3333, - "y": 20.137 - }, - { - "l": "50.0", - "x": 16.4167, - "y": 20.186 - }, - { - "l": "50.0", - "x": 16.5, - "y": 20.234 - }, - { - "l": "50.0", - "x": 16.5833, - "y": 20.282 - }, - { - "l": "50.0", - "x": 16.6667, - "y": 20.33 - }, - { - "l": "50.0", - "x": 16.75, - "y": 20.378 - }, - { - "l": "50.0", - "x": 16.8333, - "y": 20.425 - }, - { - "l": "50.0", - "x": 16.9167, - "y": 20.472 - }, - { - "l": "50.0", - "x": 17.0, - "y": 20.519 - }, - { - "l": "50.0", - "x": 17.0833, - "y": 20.565 - }, - { - "l": "50.0", - "x": 17.1667, - "y": 20.611 - }, - { - "l": "50.0", - "x": 17.25, - "y": 20.656 - }, - { - "l": "50.0", - "x": 17.3333, - "y": 20.702 - }, - { - "l": "50.0", - "x": 17.4167, - "y": 20.746 - }, - { - "l": "50.0", - "x": 17.5, - "y": 20.791 - }, - { - "l": "50.0", - "x": 17.5833, - "y": 20.836 - }, - { - "l": "50.0", - "x": 17.6667, - "y": 20.879 - }, - { - "l": "50.0", - "x": 17.75, - "y": 20.923 - }, - { - "l": "50.0", - "x": 17.8333, - "y": 20.967 - }, - { - "l": "50.0", - "x": 17.9167, - "y": 21.009 - }, - { - "l": "50.0", - "x": 18.0, - "y": 21.052 - }, - { - "l": "50.0", - "x": 18.0833, - "y": 21.095 - }, - { - "l": "50.0", - "x": 18.1667, - "y": 21.136 - }, - { - "l": "50.0", - "x": 18.25, - "y": 21.178 - }, - { - "l": "50.0", - "x": 18.3333, - "y": 21.22 - }, - { - "l": "50.0", - "x": 18.4167, - "y": 21.26 - }, - { - "l": "50.0", - "x": 18.5, - "y": 21.301 - }, - { - "l": "50.0", - "x": 18.5833, - "y": 21.342 - }, - { - "l": "50.0", - "x": 18.6667, - "y": 21.382 - }, - { - "l": "50.0", - "x": 18.75, - "y": 21.422 - }, - { - "l": "50.0", - "x": 18.8333, - "y": 21.461 - }, - { - "l": "50.0", - "x": 18.9167, - "y": 21.501 - }, - { - "l": "50.0", - "x": 19.0, - "y": 21.54 - }, - { - "l": "50.0", - "x": 19.0833, - "y": 21.578 - }, - { - "l": "50.0", - "x": 19.1667, - "y": 21.617 - }, - { - "l": "50.0", - "x": 19.25, - "y": 21.655 - }, - { - "l": "50.0", - "x": 19.3333, - "y": 21.693 - }, - { - "l": "50.0", - "x": 19.4167, - "y": 21.73 - }, - { - "l": "50.0", - "x": 19.5, - "y": 21.768 - }, - { - "l": "50.0", - "x": 19.5833, - "y": 21.805 - }, - { - "l": "50.0", - "x": 19.6667, - "y": 21.842 - }, - { - "l": "50.0", - "x": 19.75, - "y": 21.878 - }, - { - "l": "50.0", - "x": 19.8333, - "y": 21.914 - }, - { - "l": "50.0", - "x": 19.9167, - "y": 21.951 - }, - { - "l": "50.0", - "x": 20.0, - "y": 21.986 - }, - { - "l": "50.0", - "x": 20.0, - "y": 21.986 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 4.0, - "y": 16.6094 - }, - { - "l": "75.0", - "x": 4.0833, - "y": 16.5838 - }, - { - "l": "75.0", - "x": 4.1667, - "y": 16.5605 - }, - { - "l": "75.0", - "x": 4.25, - "y": 16.5387 - }, - { - "l": "75.0", - "x": 4.3333, - "y": 16.519 - }, - { - "l": "75.0", - "x": 4.4167, - "y": 16.5017 - }, - { - "l": "75.0", - "x": 4.5, - "y": 16.4847 - }, - { - "l": "75.0", - "x": 4.5833, - "y": 16.47 - }, - { - "l": "75.0", - "x": 4.6667, - "y": 16.4565 - }, - { - "l": "75.0", - "x": 4.75, - "y": 16.4454 - }, - { - "l": "75.0", - "x": 4.8333, - "y": 16.4347 - }, - { - "l": "75.0", - "x": 4.9167, - "y": 16.4251 - }, - { - "l": "75.0", - "x": 5.0, - "y": 16.4181 - }, - { - "l": "75.0", - "x": 5.0833, - "y": 16.4123 - }, - { - "l": "75.0", - "x": 5.1667, - "y": 16.4078 - }, - { - "l": "75.0", - "x": 5.25, - "y": 16.4047 - }, - { - "l": "75.0", - "x": 5.3333, - "y": 16.4029 - }, - { - "l": "75.0", - "x": 5.4167, - "y": 16.4013 - }, - { - "l": "75.0", - "x": 5.5, - "y": 16.4021 - }, - { - "l": "75.0", - "x": 5.5833, - "y": 16.4031 - }, - { - "l": "75.0", - "x": 5.6667, - "y": 16.4054 - }, - { - "l": "75.0", - "x": 5.75, - "y": 16.4091 - }, - { - "l": "75.0", - "x": 5.8333, - "y": 16.4139 - }, - { - "l": "75.0", - "x": 5.9167, - "y": 16.4201 - }, - { - "l": "75.0", - "x": 6.0, - "y": 16.4275 - }, - { - "l": "75.0", - "x": 6.0833, - "y": 16.4351 - }, - { - "l": "75.0", - "x": 6.1667, - "y": 16.444 - }, - { - "l": "75.0", - "x": 6.25, - "y": 16.453 - }, - { - "l": "75.0", - "x": 6.3333, - "y": 16.4643 - }, - { - "l": "75.0", - "x": 6.4167, - "y": 16.4757 - }, - { - "l": "75.0", - "x": 6.5, - "y": 16.4883 - }, - { - "l": "75.0", - "x": 6.5833, - "y": 16.5022 - }, - { - "l": "75.0", - "x": 6.6667, - "y": 16.5171 - }, - { - "l": "75.0", - "x": 6.75, - "y": 16.5322 - }, - { - "l": "75.0", - "x": 6.8333, - "y": 16.5494 - }, - { - "l": "75.0", - "x": 6.9167, - "y": 16.5668 - }, - { - "l": "75.0", - "x": 7.0, - "y": 16.5852 - }, - { - "l": "75.0", - "x": 7.0833, - "y": 16.6048 - }, - { - "l": "75.0", - "x": 7.1667, - "y": 16.6254 - }, - { - "l": "75.0", - "x": 7.25, - "y": 16.6472 - }, - { - "l": "75.0", - "x": 7.3333, - "y": 16.67 - }, - { - "l": "75.0", - "x": 7.4167, - "y": 16.693 - }, - { - "l": "75.0", - "x": 7.5, - "y": 16.7169 - }, - { - "l": "75.0", - "x": 7.5833, - "y": 16.7417 - }, - { - "l": "75.0", - "x": 7.6667, - "y": 16.7667 - }, - { - "l": "75.0", - "x": 7.75, - "y": 16.7927 - }, - { - "l": "75.0", - "x": 7.8333, - "y": 16.8198 - }, - { - "l": "75.0", - "x": 7.9167, - "y": 16.8479 - }, - { - "l": "75.0", - "x": 8.0, - "y": 16.8758 - }, - { - "l": "75.0", - "x": 8.0833, - "y": 16.9048 - }, - { - "l": "75.0", - "x": 8.1667, - "y": 16.9348 - }, - { - "l": "75.0", - "x": 8.25, - "y": 16.9647 - }, - { - "l": "75.0", - "x": 8.3333, - "y": 16.9968 - }, - { - "l": "75.0", - "x": 8.4167, - "y": 17.0275 - }, - { - "l": "75.0", - "x": 8.5, - "y": 17.0615 - }, - { - "l": "75.0", - "x": 8.5833, - "y": 17.0943 - }, - { - "l": "75.0", - "x": 8.6667, - "y": 17.1281 - }, - { - "l": "75.0", - "x": 8.75, - "y": 17.1628 - }, - { - "l": "75.0", - "x": 8.8333, - "y": 17.1985 - }, - { - "l": "75.0", - "x": 8.9167, - "y": 17.2343 - }, - { - "l": "75.0", - "x": 9.0, - "y": 17.2708 - }, - { - "l": "75.0", - "x": 9.0833, - "y": 17.3083 - }, - { - "l": "75.0", - "x": 9.1667, - "y": 17.3459 - }, - { - "l": "75.0", - "x": 9.25, - "y": 17.3843 - }, - { - "l": "75.0", - "x": 9.3333, - "y": 17.4225 - }, - { - "l": "75.0", - "x": 9.4167, - "y": 17.4629 - }, - { - "l": "75.0", - "x": 9.5, - "y": 17.5031 - }, - { - "l": "75.0", - "x": 9.5833, - "y": 17.5432 - }, - { - "l": "75.0", - "x": 9.6667, - "y": 17.5842 - }, - { - "l": "75.0", - "x": 9.75, - "y": 17.6262 - }, - { - "l": "75.0", - "x": 9.8333, - "y": 17.6681 - }, - { - "l": "75.0", - "x": 9.9167, - "y": 17.7109 - }, - { - "l": "75.0", - "x": 10.0, - "y": 17.7547 - }, - { - "l": "75.0", - "x": 10.0833, - "y": 17.7984 - }, - { - "l": "75.0", - "x": 10.1667, - "y": 17.843 - }, - { - "l": "75.0", - "x": 10.25, - "y": 17.8875 - }, - { - "l": "75.0", - "x": 10.3333, - "y": 17.9319 - }, - { - "l": "75.0", - "x": 10.4167, - "y": 17.9784 - }, - { - "l": "75.0", - "x": 10.5, - "y": 18.0248 - }, - { - "l": "75.0", - "x": 10.5833, - "y": 18.0711 - }, - { - "l": "75.0", - "x": 10.6667, - "y": 18.1183 - }, - { - "l": "75.0", - "x": 10.75, - "y": 18.1664 - }, - { - "l": "75.0", - "x": 10.8333, - "y": 18.2134 - }, - { - "l": "75.0", - "x": 10.9167, - "y": 18.2624 - }, - { - "l": "75.0", - "x": 11.0, - "y": 18.3115 - }, - { - "l": "75.0", - "x": 11.0833, - "y": 18.3613 - }, - { - "l": "75.0", - "x": 11.1667, - "y": 18.4099 - }, - { - "l": "75.0", - "x": 11.25, - "y": 18.4597 - }, - { - "l": "75.0", - "x": 11.3333, - "y": 18.5115 - }, - { - "l": "75.0", - "x": 11.4167, - "y": 18.561 - }, - { - "l": "75.0", - "x": 11.5, - "y": 18.6135 - }, - { - "l": "75.0", - "x": 11.5833, - "y": 18.665 - }, - { - "l": "75.0", - "x": 11.6667, - "y": 18.7162 - }, - { - "l": "75.0", - "x": 11.75, - "y": 18.7696 - }, - { - "l": "75.0", - "x": 11.8333, - "y": 18.823 - }, - { - "l": "75.0", - "x": 11.9167, - "y": 18.8772 - }, - { - "l": "75.0", - "x": 12.0, - "y": 18.9304 - }, - { - "l": "75.0", - "x": 12.0833, - "y": 18.9844 - }, - { - "l": "75.0", - "x": 12.1667, - "y": 19.0394 - }, - { - "l": "75.0", - "x": 12.25, - "y": 19.0946 - }, - { - "l": "75.0", - "x": 12.3333, - "y": 19.1506 - }, - { - "l": "75.0", - "x": 12.4167, - "y": 19.2066 - }, - { - "l": "75.0", - "x": 12.5, - "y": 19.2624 - }, - { - "l": "75.0", - "x": 12.5833, - "y": 19.318 - }, - { - "l": "75.0", - "x": 12.6667, - "y": 19.3748 - }, - { - "l": "75.0", - "x": 12.75, - "y": 19.4316 - }, - { - "l": "75.0", - "x": 12.8333, - "y": 19.4893 - }, - { - "l": "75.0", - "x": 12.9167, - "y": 19.5469 - }, - { - "l": "75.0", - "x": 13.0, - "y": 19.6044 - }, - { - "l": "75.0", - "x": 13.0833, - "y": 19.6619 - }, - { - "l": "75.0", - "x": 13.1667, - "y": 19.7204 - }, - { - "l": "75.0", - "x": 13.25, - "y": 19.7779 - }, - { - "l": "75.0", - "x": 13.3333, - "y": 19.8362 - }, - { - "l": "75.0", - "x": 13.4167, - "y": 19.8944 - }, - { - "l": "75.0", - "x": 13.5, - "y": 19.9537 - }, - { - "l": "75.0", - "x": 13.5833, - "y": 20.012 - }, - { - "l": "75.0", - "x": 13.6667, - "y": 20.07 - }, - { - "l": "75.0", - "x": 13.75, - "y": 20.1292 - }, - { - "l": "75.0", - "x": 13.8333, - "y": 20.1873 - }, - { - "l": "75.0", - "x": 13.9167, - "y": 20.2462 - }, - { - "l": "75.0", - "x": 14.0, - "y": 20.3052 - }, - { - "l": "75.0", - "x": 14.0833, - "y": 20.3641 - }, - { - "l": "75.0", - "x": 14.1667, - "y": 20.4231 - }, - { - "l": "75.0", - "x": 14.25, - "y": 20.4807 - }, - { - "l": "75.0", - "x": 14.3333, - "y": 20.5396 - }, - { - "l": "75.0", - "x": 14.4167, - "y": 20.5982 - }, - { - "l": "75.0", - "x": 14.5, - "y": 20.6559 - }, - { - "l": "75.0", - "x": 14.5833, - "y": 20.7145 - }, - { - "l": "75.0", - "x": 14.6667, - "y": 20.7719 - }, - { - "l": "75.0", - "x": 14.75, - "y": 20.8305 - }, - { - "l": "75.0", - "x": 14.8333, - "y": 20.8879 - }, - { - "l": "75.0", - "x": 14.9167, - "y": 20.9452 - }, - { - "l": "75.0", - "x": 15.0, - "y": 21.0026 - }, - { - "l": "75.0", - "x": 15.0833, - "y": 21.0599 - }, - { - "l": "75.0", - "x": 15.1667, - "y": 21.1173 - }, - { - "l": "75.0", - "x": 15.25, - "y": 21.1732 - }, - { - "l": "75.0", - "x": 15.3333, - "y": 21.2306 - }, - { - "l": "75.0", - "x": 15.4167, - "y": 21.2854 - }, - { - "l": "75.0", - "x": 15.5, - "y": 21.3426 - }, - { - "l": "75.0", - "x": 15.5833, - "y": 21.3975 - }, - { - "l": "75.0", - "x": 15.6667, - "y": 21.4534 - }, - { - "l": "75.0", - "x": 15.75, - "y": 21.5083 - }, - { - "l": "75.0", - "x": 15.8333, - "y": 21.5631 - }, - { - "l": "75.0", - "x": 15.9167, - "y": 21.6168 - }, - { - "l": "75.0", - "x": 16.0, - "y": 21.6715 - }, - { - "l": "75.0", - "x": 16.0833, - "y": 21.7252 - }, - { - "l": "75.0", - "x": 16.1667, - "y": 21.7789 - }, - { - "l": "75.0", - "x": 16.25, - "y": 21.8314 - }, - { - "l": "75.0", - "x": 16.3333, - "y": 21.8849 - }, - { - "l": "75.0", - "x": 16.4167, - "y": 21.9374 - }, - { - "l": "75.0", - "x": 16.5, - "y": 21.9888 - }, - { - "l": "75.0", - "x": 16.5833, - "y": 22.0401 - }, - { - "l": "75.0", - "x": 16.6667, - "y": 22.0915 - }, - { - "l": "75.0", - "x": 16.75, - "y": 22.1427 - }, - { - "l": "75.0", - "x": 16.8333, - "y": 22.193 - }, - { - "l": "75.0", - "x": 16.9167, - "y": 22.2432 - }, - { - "l": "75.0", - "x": 17.0, - "y": 22.2934 - }, - { - "l": "75.0", - "x": 17.0833, - "y": 22.3425 - }, - { - "l": "75.0", - "x": 17.1667, - "y": 22.3917 - }, - { - "l": "75.0", - "x": 17.25, - "y": 22.4396 - }, - { - "l": "75.0", - "x": 17.3333, - "y": 22.4886 - }, - { - "l": "75.0", - "x": 17.4167, - "y": 22.5354 - }, - { - "l": "75.0", - "x": 17.5, - "y": 22.5835 - }, - { - "l": "75.0", - "x": 17.5833, - "y": 22.6315 - }, - { - "l": "75.0", - "x": 17.6667, - "y": 22.6772 - }, - { - "l": "75.0", - "x": 17.75, - "y": 22.724 - }, - { - "l": "75.0", - "x": 17.8333, - "y": 22.7709 - }, - { - "l": "75.0", - "x": 17.9167, - "y": 22.8155 - }, - { - "l": "75.0", - "x": 18.0, - "y": 22.8613 - }, - { - "l": "75.0", - "x": 18.0833, - "y": 22.907 - }, - { - "l": "75.0", - "x": 18.1667, - "y": 22.9505 - }, - { - "l": "75.0", - "x": 18.25, - "y": 22.9953 - }, - { - "l": "75.0", - "x": 18.3333, - "y": 23.0398 - }, - { - "l": "75.0", - "x": 18.4167, - "y": 23.0822 - }, - { - "l": "75.0", - "x": 18.5, - "y": 23.1258 - }, - { - "l": "75.0", - "x": 18.5833, - "y": 23.1693 - }, - { - "l": "75.0", - "x": 18.6667, - "y": 23.2117 - }, - { - "l": "75.0", - "x": 18.75, - "y": 23.2541 - }, - { - "l": "75.0", - "x": 18.8333, - "y": 23.2956 - }, - { - "l": "75.0", - "x": 18.9167, - "y": 23.338 - }, - { - "l": "75.0", - "x": 19.0, - "y": 23.3793 - }, - { - "l": "75.0", - "x": 19.0833, - "y": 23.4197 - }, - { - "l": "75.0", - "x": 19.1667, - "y": 23.461 - }, - { - "l": "75.0", - "x": 19.25, - "y": 23.5012 - }, - { - "l": "75.0", - "x": 19.3333, - "y": 23.5416 - }, - { - "l": "75.0", - "x": 19.4167, - "y": 23.5807 - }, - { - "l": "75.0", - "x": 19.5, - "y": 23.6209 - }, - { - "l": "75.0", - "x": 19.5833, - "y": 23.6603 - }, - { - "l": "75.0", - "x": 19.6667, - "y": 23.6994 - }, - { - "l": "75.0", - "x": 19.75, - "y": 23.7374 - }, - { - "l": "75.0", - "x": 19.8333, - "y": 23.7756 - }, - { - "l": "75.0", - "x": 19.9167, - "y": 23.8147 - }, - { - "l": "75.0", - "x": 20.0, - "y": 23.8518 - }, - { - "l": "75.0", - "x": 20.0, - "y": 23.8518 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 4.0, - "y": 17.5817 - }, - { - "l": "91.0", - "x": 4.0833, - "y": 17.5566 - }, - { - "l": "91.0", - "x": 4.1667, - "y": 17.5341 - }, - { - "l": "91.0", - "x": 4.25, - "y": 17.5136 - }, - { - "l": "91.0", - "x": 4.3333, - "y": 17.4956 - }, - { - "l": "91.0", - "x": 4.4167, - "y": 17.4803 - }, - { - "l": "91.0", - "x": 4.5, - "y": 17.4655 - }, - { - "l": "91.0", - "x": 4.5833, - "y": 17.4536 - }, - { - "l": "91.0", - "x": 4.6667, - "y": 17.4431 - }, - { - "l": "91.0", - "x": 4.75, - "y": 17.4355 - }, - { - "l": "91.0", - "x": 4.8333, - "y": 17.4287 - }, - { - "l": "91.0", - "x": 4.9167, - "y": 17.4234 - }, - { - "l": "91.0", - "x": 5.0, - "y": 17.4213 - }, - { - "l": "91.0", - "x": 5.0833, - "y": 17.4206 - }, - { - "l": "91.0", - "x": 5.1667, - "y": 17.4218 - }, - { - "l": "91.0", - "x": 5.25, - "y": 17.4248 - }, - { - "l": "91.0", - "x": 5.3333, - "y": 17.4294 - }, - { - "l": "91.0", - "x": 5.4167, - "y": 17.4346 - }, - { - "l": "91.0", - "x": 5.5, - "y": 17.4426 - }, - { - "l": "91.0", - "x": 5.5833, - "y": 17.4513 - }, - { - "l": "91.0", - "x": 5.6667, - "y": 17.4616 - }, - { - "l": "91.0", - "x": 5.75, - "y": 17.4739 - }, - { - "l": "91.0", - "x": 5.8333, - "y": 17.4874 - }, - { - "l": "91.0", - "x": 5.9167, - "y": 17.5028 - }, - { - "l": "91.0", - "x": 6.0, - "y": 17.5199 - }, - { - "l": "91.0", - "x": 6.0833, - "y": 17.5373 - }, - { - "l": "91.0", - "x": 6.1667, - "y": 17.5563 - }, - { - "l": "91.0", - "x": 6.25, - "y": 17.5759 - }, - { - "l": "91.0", - "x": 6.3333, - "y": 17.5979 - }, - { - "l": "91.0", - "x": 6.4167, - "y": 17.6205 - }, - { - "l": "91.0", - "x": 6.5, - "y": 17.6442 - }, - { - "l": "91.0", - "x": 6.5833, - "y": 17.67 - }, - { - "l": "91.0", - "x": 6.6667, - "y": 17.6968 - }, - { - "l": "91.0", - "x": 6.75, - "y": 17.7238 - }, - { - "l": "91.0", - "x": 6.8333, - "y": 17.7534 - }, - { - "l": "91.0", - "x": 6.9167, - "y": 17.7833 - }, - { - "l": "91.0", - "x": 7.0, - "y": 17.8142 - }, - { - "l": "91.0", - "x": 7.0833, - "y": 17.8466 - }, - { - "l": "91.0", - "x": 7.1667, - "y": 17.8801 - }, - { - "l": "91.0", - "x": 7.25, - "y": 17.9152 - }, - { - "l": "91.0", - "x": 7.3333, - "y": 17.9513 - }, - { - "l": "91.0", - "x": 7.4167, - "y": 17.9878 - }, - { - "l": "91.0", - "x": 7.5, - "y": 18.0251 - }, - { - "l": "91.0", - "x": 7.5833, - "y": 18.0633 - }, - { - "l": "91.0", - "x": 7.6667, - "y": 18.1018 - }, - { - "l": "91.0", - "x": 7.75, - "y": 18.1415 - }, - { - "l": "91.0", - "x": 7.8333, - "y": 18.1823 - }, - { - "l": "91.0", - "x": 7.9167, - "y": 18.2241 - }, - { - "l": "91.0", - "x": 8.0, - "y": 18.2654 - }, - { - "l": "91.0", - "x": 8.0833, - "y": 18.3083 - }, - { - "l": "91.0", - "x": 8.1667, - "y": 18.3519 - }, - { - "l": "91.0", - "x": 8.25, - "y": 18.3951 - }, - { - "l": "91.0", - "x": 8.3333, - "y": 18.4409 - }, - { - "l": "91.0", - "x": 8.4167, - "y": 18.4849 - }, - { - "l": "91.0", - "x": 8.5, - "y": 18.5325 - }, - { - "l": "91.0", - "x": 8.5833, - "y": 18.5787 - }, - { - "l": "91.0", - "x": 8.6667, - "y": 18.6258 - }, - { - "l": "91.0", - "x": 8.75, - "y": 18.6737 - }, - { - "l": "91.0", - "x": 8.8333, - "y": 18.7225 - }, - { - "l": "91.0", - "x": 8.9167, - "y": 18.7715 - }, - { - "l": "91.0", - "x": 9.0, - "y": 18.821 - }, - { - "l": "91.0", - "x": 9.0833, - "y": 18.8712 - }, - { - "l": "91.0", - "x": 9.1667, - "y": 18.9215 - }, - { - "l": "91.0", - "x": 9.25, - "y": 18.9725 - }, - { - "l": "91.0", - "x": 9.3333, - "y": 19.0231 - }, - { - "l": "91.0", - "x": 9.4167, - "y": 19.076 - }, - { - "l": "91.0", - "x": 9.5, - "y": 19.1285 - }, - { - "l": "91.0", - "x": 9.5833, - "y": 19.1805 - }, - { - "l": "91.0", - "x": 9.6667, - "y": 19.2334 - }, - { - "l": "91.0", - "x": 9.75, - "y": 19.2873 - }, - { - "l": "91.0", - "x": 9.8333, - "y": 19.3408 - }, - { - "l": "91.0", - "x": 9.9167, - "y": 19.395 - }, - { - "l": "91.0", - "x": 10.0, - "y": 19.4501 - }, - { - "l": "91.0", - "x": 10.0833, - "y": 19.5049 - }, - { - "l": "91.0", - "x": 10.1667, - "y": 19.5605 - }, - { - "l": "91.0", - "x": 10.25, - "y": 19.6159 - }, - { - "l": "91.0", - "x": 10.3333, - "y": 19.671 - }, - { - "l": "91.0", - "x": 10.4167, - "y": 19.7283 - }, - { - "l": "91.0", - "x": 10.5, - "y": 19.7851 - }, - { - "l": "91.0", - "x": 10.5833, - "y": 19.8418 - }, - { - "l": "91.0", - "x": 10.6667, - "y": 19.8992 - }, - { - "l": "91.0", - "x": 10.75, - "y": 19.9573 - }, - { - "l": "91.0", - "x": 10.8333, - "y": 20.0141 - }, - { - "l": "91.0", - "x": 10.9167, - "y": 20.0727 - }, - { - "l": "91.0", - "x": 11.0, - "y": 20.1317 - }, - { - "l": "91.0", - "x": 11.0833, - "y": 20.1908 - }, - { - "l": "91.0", - "x": 11.1667, - "y": 20.2484 - }, - { - "l": "91.0", - "x": 11.25, - "y": 20.3076 - }, - { - "l": "91.0", - "x": 11.3333, - "y": 20.3684 - }, - { - "l": "91.0", - "x": 11.4167, - "y": 20.4266 - }, - { - "l": "91.0", - "x": 11.5, - "y": 20.4876 - }, - { - "l": "91.0", - "x": 11.5833, - "y": 20.5478 - }, - { - "l": "91.0", - "x": 11.6667, - "y": 20.6073 - }, - { - "l": "91.0", - "x": 11.75, - "y": 20.6689 - }, - { - "l": "91.0", - "x": 11.8333, - "y": 20.7308 - }, - { - "l": "91.0", - "x": 11.9167, - "y": 20.7929 - }, - { - "l": "91.0", - "x": 12.0, - "y": 20.8541 - }, - { - "l": "91.0", - "x": 12.0833, - "y": 20.9158 - }, - { - "l": "91.0", - "x": 12.1667, - "y": 20.9783 - }, - { - "l": "91.0", - "x": 12.25, - "y": 21.0412 - }, - { - "l": "91.0", - "x": 12.3333, - "y": 21.1046 - }, - { - "l": "91.0", - "x": 12.4167, - "y": 21.1684 - }, - { - "l": "91.0", - "x": 12.5, - "y": 21.2314 - }, - { - "l": "91.0", - "x": 12.5833, - "y": 21.2936 - }, - { - "l": "91.0", - "x": 12.6667, - "y": 21.3575 - }, - { - "l": "91.0", - "x": 12.75, - "y": 21.4213 - }, - { - "l": "91.0", - "x": 12.8333, - "y": 21.486 - }, - { - "l": "91.0", - "x": 12.9167, - "y": 21.5503 - }, - { - "l": "91.0", - "x": 13.0, - "y": 21.6142 - }, - { - "l": "91.0", - "x": 13.0833, - "y": 21.6781 - }, - { - "l": "91.0", - "x": 13.1667, - "y": 21.7432 - }, - { - "l": "91.0", - "x": 13.25, - "y": 21.8071 - }, - { - "l": "91.0", - "x": 13.3333, - "y": 21.8714 - }, - { - "l": "91.0", - "x": 13.4167, - "y": 21.9357 - }, - { - "l": "91.0", - "x": 13.5, - "y": 22.0009 - }, - { - "l": "91.0", - "x": 13.5833, - "y": 22.0652 - }, - { - "l": "91.0", - "x": 13.6667, - "y": 22.1287 - }, - { - "l": "91.0", - "x": 13.75, - "y": 22.1939 - }, - { - "l": "91.0", - "x": 13.8333, - "y": 22.2578 - }, - { - "l": "91.0", - "x": 13.9167, - "y": 22.3221 - }, - { - "l": "91.0", - "x": 14.0, - "y": 22.3864 - }, - { - "l": "91.0", - "x": 14.0833, - "y": 22.4507 - }, - { - "l": "91.0", - "x": 14.1667, - "y": 22.5154 - }, - { - "l": "91.0", - "x": 14.25, - "y": 22.5777 - }, - { - "l": "91.0", - "x": 14.3333, - "y": 22.642 - }, - { - "l": "91.0", - "x": 14.4167, - "y": 22.7055 - }, - { - "l": "91.0", - "x": 14.5, - "y": 22.7682 - }, - { - "l": "91.0", - "x": 14.5833, - "y": 22.8317 - }, - { - "l": "91.0", - "x": 14.6667, - "y": 22.8935 - }, - { - "l": "91.0", - "x": 14.75, - "y": 22.957 - }, - { - "l": "91.0", - "x": 14.8333, - "y": 23.0188 - }, - { - "l": "91.0", - "x": 14.9167, - "y": 23.0807 - }, - { - "l": "91.0", - "x": 15.0, - "y": 23.1425 - }, - { - "l": "91.0", - "x": 15.0833, - "y": 23.2043 - }, - { - "l": "91.0", - "x": 15.1667, - "y": 23.2661 - }, - { - "l": "91.0", - "x": 15.25, - "y": 23.3259 - }, - { - "l": "91.0", - "x": 15.3333, - "y": 23.3877 - }, - { - "l": "91.0", - "x": 15.4167, - "y": 23.4462 - }, - { - "l": "91.0", - "x": 15.5, - "y": 23.5076 - }, - { - "l": "91.0", - "x": 15.5833, - "y": 23.5661 - }, - { - "l": "91.0", - "x": 15.6667, - "y": 23.6259 - }, - { - "l": "91.0", - "x": 15.75, - "y": 23.6844 - }, - { - "l": "91.0", - "x": 15.8333, - "y": 23.7429 - }, - { - "l": "91.0", - "x": 15.9167, - "y": 23.8002 - }, - { - "l": "91.0", - "x": 16.0, - "y": 23.8583 - }, - { - "l": "91.0", - "x": 16.0833, - "y": 23.9156 - }, - { - "l": "91.0", - "x": 16.1667, - "y": 23.9728 - }, - { - "l": "91.0", - "x": 16.25, - "y": 24.0285 - }, - { - "l": "91.0", - "x": 16.3333, - "y": 24.0853 - }, - { - "l": "91.0", - "x": 16.4167, - "y": 24.1409 - }, - { - "l": "91.0", - "x": 16.5, - "y": 24.1954 - }, - { - "l": "91.0", - "x": 16.5833, - "y": 24.2498 - }, - { - "l": "91.0", - "x": 16.6667, - "y": 24.3042 - }, - { - "l": "91.0", - "x": 16.75, - "y": 24.3581 - }, - { - "l": "91.0", - "x": 16.8333, - "y": 24.4113 - }, - { - "l": "91.0", - "x": 16.9167, - "y": 24.4645 - }, - { - "l": "91.0", - "x": 17.0, - "y": 24.5172 - }, - { - "l": "91.0", - "x": 17.0833, - "y": 24.5692 - }, - { - "l": "91.0", - "x": 17.1667, - "y": 24.6212 - }, - { - "l": "91.0", - "x": 17.25, - "y": 24.6715 - }, - { - "l": "91.0", - "x": 17.3333, - "y": 24.723 - }, - { - "l": "91.0", - "x": 17.4167, - "y": 24.7721 - }, - { - "l": "91.0", - "x": 17.5, - "y": 24.8228 - }, - { - "l": "91.0", - "x": 17.5833, - "y": 24.8735 - }, - { - "l": "91.0", - "x": 17.6667, - "y": 24.9214 - }, - { - "l": "91.0", - "x": 17.75, - "y": 24.9705 - }, - { - "l": "91.0", - "x": 17.8333, - "y": 25.0196 - }, - { - "l": "91.0", - "x": 17.9167, - "y": 25.0662 - }, - { - "l": "91.0", - "x": 18.0, - "y": 25.1145 - }, - { - "l": "91.0", - "x": 18.0833, - "y": 25.1623 - }, - { - "l": "91.0", - "x": 18.1667, - "y": 25.2078 - }, - { - "l": "91.0", - "x": 18.25, - "y": 25.2549 - }, - { - "l": "91.0", - "x": 18.3333, - "y": 25.3015 - }, - { - "l": "91.0", - "x": 18.4167, - "y": 25.3453 - }, - { - "l": "91.0", - "x": 18.5, - "y": 25.3911 - }, - { - "l": "91.0", - "x": 18.5833, - "y": 25.4365 - }, - { - "l": "91.0", - "x": 18.6667, - "y": 25.4808 - }, - { - "l": "91.0", - "x": 18.75, - "y": 25.525 - }, - { - "l": "91.0", - "x": 18.8333, - "y": 25.5684 - }, - { - "l": "91.0", - "x": 18.9167, - "y": 25.6126 - }, - { - "l": "91.0", - "x": 19.0, - "y": 25.6556 - }, - { - "l": "91.0", - "x": 19.0833, - "y": 25.6978 - }, - { - "l": "91.0", - "x": 19.1667, - "y": 25.7408 - }, - { - "l": "91.0", - "x": 19.25, - "y": 25.7825 - }, - { - "l": "91.0", - "x": 19.3333, - "y": 25.8248 - }, - { - "l": "91.0", - "x": 19.4167, - "y": 25.8653 - }, - { - "l": "91.0", - "x": 19.5, - "y": 25.9071 - }, - { - "l": "91.0", - "x": 19.5833, - "y": 25.9485 - }, - { - "l": "91.0", - "x": 19.6667, - "y": 25.9891 - }, - { - "l": "91.0", - "x": 19.75, - "y": 26.0284 - }, - { - "l": "91.0", - "x": 19.8333, - "y": 26.0682 - }, - { - "l": "91.0", - "x": 19.9167, - "y": 26.1087 - }, - { - "l": "91.0", - "x": 20.0, - "y": 26.1473 - }, - { - "l": "91.0", - "x": 20.0, - "y": 26.1473 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 4.0, - "y": 18.6952 - }, - { - "l": "98.0", - "x": 4.0833, - "y": 18.6722 - }, - { - "l": "98.0", - "x": 4.1667, - "y": 18.652 - }, - { - "l": "98.0", - "x": 4.25, - "y": 18.6347 - }, - { - "l": "98.0", - "x": 4.3333, - "y": 18.6203 - }, - { - "l": "98.0", - "x": 4.4167, - "y": 18.6089 - }, - { - "l": "98.0", - "x": 4.5, - "y": 18.5986 - }, - { - "l": "98.0", - "x": 4.5833, - "y": 18.5916 - }, - { - "l": "98.0", - "x": 4.6667, - "y": 18.5864 - }, - { - "l": "98.0", - "x": 4.75, - "y": 18.5847 - }, - { - "l": "98.0", - "x": 4.8333, - "y": 18.5845 - }, - { - "l": "98.0", - "x": 4.9167, - "y": 18.586 - }, - { - "l": "98.0", - "x": 5.0, - "y": 18.5917 - }, - { - "l": "98.0", - "x": 5.0833, - "y": 18.5991 - }, - { - "l": "98.0", - "x": 5.1667, - "y": 18.6093 - }, - { - "l": "98.0", - "x": 5.25, - "y": 18.6218 - }, - { - "l": "98.0", - "x": 5.3333, - "y": 18.6362 - }, - { - "l": "98.0", - "x": 5.4167, - "y": 18.6519 - }, - { - "l": "98.0", - "x": 5.5, - "y": 18.671 - }, - { - "l": "98.0", - "x": 5.5833, - "y": 18.6914 - }, - { - "l": "98.0", - "x": 5.6667, - "y": 18.7138 - }, - { - "l": "98.0", - "x": 5.75, - "y": 18.7391 - }, - { - "l": "98.0", - "x": 5.8333, - "y": 18.7659 - }, - { - "l": "98.0", - "x": 5.9167, - "y": 18.7952 - }, - { - "l": "98.0", - "x": 6.0, - "y": 18.827 - }, - { - "l": "98.0", - "x": 6.0833, - "y": 18.8592 - }, - { - "l": "98.0", - "x": 6.1667, - "y": 18.8938 - }, - { - "l": "98.0", - "x": 6.25, - "y": 18.9294 - }, - { - "l": "98.0", - "x": 6.3333, - "y": 18.9677 - }, - { - "l": "98.0", - "x": 6.4167, - "y": 19.0074 - }, - { - "l": "98.0", - "x": 6.5, - "y": 19.0481 - }, - { - "l": "98.0", - "x": 6.5833, - "y": 19.092 - }, - { - "l": "98.0", - "x": 6.6667, - "y": 19.137 - }, - { - "l": "98.0", - "x": 6.75, - "y": 19.1824 - }, - { - "l": "98.0", - "x": 6.8333, - "y": 19.2312 - }, - { - "l": "98.0", - "x": 6.9167, - "y": 19.2803 - }, - { - "l": "98.0", - "x": 7.0, - "y": 19.3306 - }, - { - "l": "98.0", - "x": 7.0833, - "y": 19.3831 - }, - { - "l": "98.0", - "x": 7.1667, - "y": 19.4366 - }, - { - "l": "98.0", - "x": 7.25, - "y": 19.4923 - }, - { - "l": "98.0", - "x": 7.3333, - "y": 19.5491 - }, - { - "l": "98.0", - "x": 7.4167, - "y": 19.607 - }, - { - "l": "98.0", - "x": 7.5, - "y": 19.6653 - }, - { - "l": "98.0", - "x": 7.5833, - "y": 19.7247 - }, - { - "l": "98.0", - "x": 7.6667, - "y": 19.7845 - }, - { - "l": "98.0", - "x": 7.75, - "y": 19.8459 - }, - { - "l": "98.0", - "x": 7.8333, - "y": 19.9085 - }, - { - "l": "98.0", - "x": 7.9167, - "y": 19.972 - }, - { - "l": "98.0", - "x": 8.0, - "y": 20.0347 - }, - { - "l": "98.0", - "x": 8.0833, - "y": 20.0997 - }, - { - "l": "98.0", - "x": 8.1667, - "y": 20.1651 - }, - { - "l": "98.0", - "x": 8.25, - "y": 20.2296 - }, - { - "l": "98.0", - "x": 8.3333, - "y": 20.2976 - }, - { - "l": "98.0", - "x": 8.4167, - "y": 20.3628 - }, - { - "l": "98.0", - "x": 8.5, - "y": 20.4321 - }, - { - "l": "98.0", - "x": 8.5833, - "y": 20.4999 - }, - { - "l": "98.0", - "x": 8.6667, - "y": 20.5687 - }, - { - "l": "98.0", - "x": 8.75, - "y": 20.6376 - }, - { - "l": "98.0", - "x": 8.8333, - "y": 20.7075 - }, - { - "l": "98.0", - "x": 8.9167, - "y": 20.7778 - }, - { - "l": "98.0", - "x": 9.0, - "y": 20.8483 - }, - { - "l": "98.0", - "x": 9.0833, - "y": 20.9188 - }, - { - "l": "98.0", - "x": 9.1667, - "y": 20.9897 - }, - { - "l": "98.0", - "x": 9.25, - "y": 21.0607 - }, - { - "l": "98.0", - "x": 9.3333, - "y": 21.1314 - }, - { - "l": "98.0", - "x": 9.4167, - "y": 21.204 - }, - { - "l": "98.0", - "x": 9.5, - "y": 21.2764 - }, - { - "l": "98.0", - "x": 9.5833, - "y": 21.3474 - }, - { - "l": "98.0", - "x": 9.6667, - "y": 21.4192 - }, - { - "l": "98.0", - "x": 9.75, - "y": 21.4918 - }, - { - "l": "98.0", - "x": 9.8333, - "y": 21.564 - }, - { - "l": "98.0", - "x": 9.9167, - "y": 21.6359 - }, - { - "l": "98.0", - "x": 10.0, - "y": 21.7086 - }, - { - "l": "98.0", - "x": 10.0833, - "y": 21.7808 - }, - { - "l": "98.0", - "x": 10.1667, - "y": 21.8537 - }, - { - "l": "98.0", - "x": 10.25, - "y": 21.9261 - }, - { - "l": "98.0", - "x": 10.3333, - "y": 21.9979 - }, - { - "l": "98.0", - "x": 10.4167, - "y": 22.0714 - }, - { - "l": "98.0", - "x": 10.5, - "y": 22.1446 - }, - { - "l": "98.0", - "x": 10.5833, - "y": 22.2169 - }, - { - "l": "98.0", - "x": 10.6667, - "y": 22.2899 - }, - { - "l": "98.0", - "x": 10.75, - "y": 22.3629 - }, - { - "l": "98.0", - "x": 10.8333, - "y": 22.4346 - }, - { - "l": "98.0", - "x": 10.9167, - "y": 22.5072 - }, - { - "l": "98.0", - "x": 11.0, - "y": 22.581 - }, - { - "l": "98.0", - "x": 11.0833, - "y": 22.6535 - }, - { - "l": "98.0", - "x": 11.1667, - "y": 22.7241 - }, - { - "l": "98.0", - "x": 11.25, - "y": 22.7972 - }, - { - "l": "98.0", - "x": 11.3333, - "y": 22.8711 - }, - { - "l": "98.0", - "x": 11.4167, - "y": 22.9416 - }, - { - "l": "98.0", - "x": 11.5, - "y": 23.0142 - }, - { - "l": "98.0", - "x": 11.5833, - "y": 23.0867 - }, - { - "l": "98.0", - "x": 11.6667, - "y": 23.1577 - }, - { - "l": "98.0", - "x": 11.75, - "y": 23.2302 - }, - { - "l": "98.0", - "x": 11.8333, - "y": 23.304 - }, - { - "l": "98.0", - "x": 11.9167, - "y": 23.3763 - }, - { - "l": "98.0", - "x": 12.0, - "y": 23.4486 - }, - { - "l": "98.0", - "x": 12.0833, - "y": 23.5202 - }, - { - "l": "98.0", - "x": 12.1667, - "y": 23.5924 - }, - { - "l": "98.0", - "x": 12.25, - "y": 23.6654 - }, - { - "l": "98.0", - "x": 12.3333, - "y": 23.7381 - }, - { - "l": "98.0", - "x": 12.4167, - "y": 23.8122 - }, - { - "l": "98.0", - "x": 12.5, - "y": 23.8842 - }, - { - "l": "98.0", - "x": 12.5833, - "y": 23.9541 - }, - { - "l": "98.0", - "x": 12.6667, - "y": 24.0266 - }, - { - "l": "98.0", - "x": 12.75, - "y": 24.0991 - }, - { - "l": "98.0", - "x": 12.8333, - "y": 24.1722 - }, - { - "l": "98.0", - "x": 12.9167, - "y": 24.2445 - }, - { - "l": "98.0", - "x": 13.0, - "y": 24.3155 - }, - { - "l": "98.0", - "x": 13.0833, - "y": 24.3869 - }, - { - "l": "98.0", - "x": 13.1667, - "y": 24.4597 - }, - { - "l": "98.0", - "x": 13.25, - "y": 24.5312 - }, - { - "l": "98.0", - "x": 13.3333, - "y": 24.6019 - }, - { - "l": "98.0", - "x": 13.4167, - "y": 24.673 - }, - { - "l": "98.0", - "x": 13.5, - "y": 24.7442 - }, - { - "l": "98.0", - "x": 13.5833, - "y": 24.8153 - }, - { - "l": "98.0", - "x": 13.6667, - "y": 24.8843 - }, - { - "l": "98.0", - "x": 13.75, - "y": 24.9559 - }, - { - "l": "98.0", - "x": 13.8333, - "y": 25.0262 - }, - { - "l": "98.0", - "x": 13.9167, - "y": 25.0957 - }, - { - "l": "98.0", - "x": 14.0, - "y": 25.1651 - }, - { - "l": "98.0", - "x": 14.0833, - "y": 25.235 - }, - { - "l": "98.0", - "x": 14.1667, - "y": 25.3058 - }, - { - "l": "98.0", - "x": 14.25, - "y": 25.3722 - }, - { - "l": "98.0", - "x": 14.3333, - "y": 25.4421 - }, - { - "l": "98.0", - "x": 14.4167, - "y": 25.5097 - }, - { - "l": "98.0", - "x": 14.5, - "y": 25.5774 - }, - { - "l": "98.0", - "x": 14.5833, - "y": 25.6451 - }, - { - "l": "98.0", - "x": 14.6667, - "y": 25.7105 - }, - { - "l": "98.0", - "x": 14.75, - "y": 25.7786 - }, - { - "l": "98.0", - "x": 14.8333, - "y": 25.8441 - }, - { - "l": "98.0", - "x": 14.9167, - "y": 25.91 - }, - { - "l": "98.0", - "x": 15.0, - "y": 25.9753 - }, - { - "l": "98.0", - "x": 15.0833, - "y": 26.0412 - }, - { - "l": "98.0", - "x": 15.1667, - "y": 26.107 - }, - { - "l": "98.0", - "x": 15.25, - "y": 26.1693 - }, - { - "l": "98.0", - "x": 15.3333, - "y": 26.2351 - }, - { - "l": "98.0", - "x": 15.4167, - "y": 26.296 - }, - { - "l": "98.0", - "x": 15.5, - "y": 26.361 - }, - { - "l": "98.0", - "x": 15.5833, - "y": 26.4218 - }, - { - "l": "98.0", - "x": 15.6667, - "y": 26.4845 - }, - { - "l": "98.0", - "x": 15.75, - "y": 26.5454 - }, - { - "l": "98.0", - "x": 15.8333, - "y": 26.6067 - }, - { - "l": "98.0", - "x": 15.9167, - "y": 26.6666 - }, - { - "l": "98.0", - "x": 16.0, - "y": 26.7266 - }, - { - "l": "98.0", - "x": 16.0833, - "y": 26.7865 - }, - { - "l": "98.0", - "x": 16.1667, - "y": 26.8464 - }, - { - "l": "98.0", - "x": 16.25, - "y": 26.9036 - }, - { - "l": "98.0", - "x": 16.3333, - "y": 26.9626 - }, - { - "l": "98.0", - "x": 16.4167, - "y": 27.0202 - }, - { - "l": "98.0", - "x": 16.5, - "y": 27.076 - }, - { - "l": "98.0", - "x": 16.5833, - "y": 27.1323 - }, - { - "l": "98.0", - "x": 16.6667, - "y": 27.1886 - }, - { - "l": "98.0", - "x": 16.75, - "y": 27.2435 - }, - { - "l": "98.0", - "x": 16.8333, - "y": 27.2984 - }, - { - "l": "98.0", - "x": 16.9167, - "y": 27.3533 - }, - { - "l": "98.0", - "x": 17.0, - "y": 27.4068 - }, - { - "l": "98.0", - "x": 17.0833, - "y": 27.4603 - }, - { - "l": "98.0", - "x": 17.1667, - "y": 27.5138 - }, - { - "l": "98.0", - "x": 17.25, - "y": 27.5651 - }, - { - "l": "98.0", - "x": 17.3333, - "y": 27.6172 - }, - { - "l": "98.0", - "x": 17.4167, - "y": 27.6671 - }, - { - "l": "98.0", - "x": 17.5, - "y": 27.7192 - }, - { - "l": "98.0", - "x": 17.5833, - "y": 27.7713 - }, - { - "l": "98.0", - "x": 17.6667, - "y": 27.8199 - }, - { - "l": "98.0", - "x": 17.75, - "y": 27.8698 - }, - { - "l": "98.0", - "x": 17.8333, - "y": 27.9191 - }, - { - "l": "98.0", - "x": 17.9167, - "y": 27.9663 - }, - { - "l": "98.0", - "x": 18.0, - "y": 28.0157 - }, - { - "l": "98.0", - "x": 18.0833, - "y": 28.0642 - }, - { - "l": "98.0", - "x": 18.1667, - "y": 28.11 - }, - { - "l": "98.0", - "x": 18.25, - "y": 28.158 - }, - { - "l": "98.0", - "x": 18.3333, - "y": 28.2051 - }, - { - "l": "98.0", - "x": 18.4167, - "y": 28.2482 - }, - { - "l": "98.0", - "x": 18.5, - "y": 28.2949 - }, - { - "l": "98.0", - "x": 18.5833, - "y": 28.3406 - }, - { - "l": "98.0", - "x": 18.6667, - "y": 28.3851 - }, - { - "l": "98.0", - "x": 18.75, - "y": 28.4295 - }, - { - "l": "98.0", - "x": 18.8333, - "y": 28.4734 - }, - { - "l": "98.0", - "x": 18.9167, - "y": 28.5178 - }, - { - "l": "98.0", - "x": 19.0, - "y": 28.5609 - }, - { - "l": "98.0", - "x": 19.0833, - "y": 28.6034 - }, - { - "l": "98.0", - "x": 19.1667, - "y": 28.6465 - }, - { - "l": "98.0", - "x": 19.25, - "y": 28.6882 - }, - { - "l": "98.0", - "x": 19.3333, - "y": 28.7307 - }, - { - "l": "98.0", - "x": 19.4167, - "y": 28.7711 - }, - { - "l": "98.0", - "x": 19.5, - "y": 28.8128 - }, - { - "l": "98.0", - "x": 19.5833, - "y": 28.8553 - }, - { - "l": "98.0", - "x": 19.6667, - "y": 28.8956 - }, - { - "l": "98.0", - "x": 19.75, - "y": 28.9346 - }, - { - "l": "98.0", - "x": 19.8333, - "y": 28.9745 - }, - { - "l": "98.0", - "x": 19.9167, - "y": 29.0148 - }, - { - "l": "98.0", - "x": 20.0, - "y": 29.0533 - }, - { - "l": "98.0", - "x": 20.0, - "y": 29.0533 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 4.0, - "y": 19.9846 - }, - { - "l": "99.6", - "x": 4.0833, - "y": 19.9664 - }, - { - "l": "99.6", - "x": 4.1667, - "y": 19.951 - }, - { - "l": "99.6", - "x": 4.25, - "y": 19.9398 - }, - { - "l": "99.6", - "x": 4.3333, - "y": 19.9319 - }, - { - "l": "99.6", - "x": 4.4167, - "y": 19.9276 - }, - { - "l": "99.6", - "x": 4.5, - "y": 19.9248 - }, - { - "l": "99.6", - "x": 4.5833, - "y": 19.9262 - }, - { - "l": "99.6", - "x": 4.6667, - "y": 19.9299 - }, - { - "l": "99.6", - "x": 4.75, - "y": 19.9378 - }, - { - "l": "99.6", - "x": 4.8333, - "y": 19.9482 - }, - { - "l": "99.6", - "x": 4.9167, - "y": 19.9609 - }, - { - "l": "99.6", - "x": 5.0, - "y": 19.9788 - }, - { - "l": "99.6", - "x": 5.0833, - "y": 19.999 - }, - { - "l": "99.6", - "x": 5.1667, - "y": 20.0231 - }, - { - "l": "99.6", - "x": 5.25, - "y": 20.0505 - }, - { - "l": "99.6", - "x": 5.3333, - "y": 20.0803 - }, - { - "l": "99.6", - "x": 5.4167, - "y": 20.1121 - }, - { - "l": "99.6", - "x": 5.5, - "y": 20.1486 - }, - { - "l": "99.6", - "x": 5.5833, - "y": 20.1871 - }, - { - "l": "99.6", - "x": 5.6667, - "y": 20.2283 - }, - { - "l": "99.6", - "x": 5.75, - "y": 20.2738 - }, - { - "l": "99.6", - "x": 5.8333, - "y": 20.3212 - }, - { - "l": "99.6", - "x": 5.9167, - "y": 20.3721 - }, - { - "l": "99.6", - "x": 6.0, - "y": 20.4268 - }, - { - "l": "99.6", - "x": 6.0833, - "y": 20.482 - }, - { - "l": "99.6", - "x": 6.1667, - "y": 20.5411 - }, - { - "l": "99.6", - "x": 6.25, - "y": 20.6017 - }, - { - "l": "99.6", - "x": 6.3333, - "y": 20.6657 - }, - { - "l": "99.6", - "x": 6.4167, - "y": 20.7323 - }, - { - "l": "99.6", - "x": 6.5, - "y": 20.8001 - }, - { - "l": "99.6", - "x": 6.5833, - "y": 20.873 - }, - { - "l": "99.6", - "x": 6.6667, - "y": 20.9471 - }, - { - "l": "99.6", - "x": 6.75, - "y": 21.022 - }, - { - "l": "99.6", - "x": 6.8333, - "y": 21.1016 - }, - { - "l": "99.6", - "x": 6.9167, - "y": 21.182 - }, - { - "l": "99.6", - "x": 7.0, - "y": 21.2636 - }, - { - "l": "99.6", - "x": 7.0833, - "y": 21.3488 - }, - { - "l": "99.6", - "x": 7.1667, - "y": 21.4351 - }, - { - "l": "99.6", - "x": 7.25, - "y": 21.5249 - }, - { - "l": "99.6", - "x": 7.3333, - "y": 21.6161 - }, - { - "l": "99.6", - "x": 7.4167, - "y": 21.7095 - }, - { - "l": "99.6", - "x": 7.5, - "y": 21.803 - }, - { - "l": "99.6", - "x": 7.5833, - "y": 21.8978 - }, - { - "l": "99.6", - "x": 7.6667, - "y": 21.9933 - }, - { - "l": "99.6", - "x": 7.75, - "y": 22.0918 - }, - { - "l": "99.6", - "x": 7.8333, - "y": 22.1913 - }, - { - "l": "99.6", - "x": 7.9167, - "y": 22.2921 - }, - { - "l": "99.6", - "x": 8.0, - "y": 22.3912 - }, - { - "l": "99.6", - "x": 8.0833, - "y": 22.4946 - }, - { - "l": "99.6", - "x": 8.1667, - "y": 22.5976 - }, - { - "l": "99.6", - "x": 8.25, - "y": 22.6985 - }, - { - "l": "99.6", - "x": 8.3333, - "y": 22.8053 - }, - { - "l": "99.6", - "x": 8.4167, - "y": 22.9074 - }, - { - "l": "99.6", - "x": 8.5, - "y": 23.0147 - }, - { - "l": "99.6", - "x": 8.5833, - "y": 23.1205 - }, - { - "l": "99.6", - "x": 8.6667, - "y": 23.2274 - }, - { - "l": "99.6", - "x": 8.75, - "y": 23.3333 - }, - { - "l": "99.6", - "x": 8.8333, - "y": 23.4404 - }, - { - "l": "99.6", - "x": 8.9167, - "y": 23.5483 - }, - { - "l": "99.6", - "x": 9.0, - "y": 23.6561 - }, - { - "l": "99.6", - "x": 9.0833, - "y": 23.7625 - }, - { - "l": "99.6", - "x": 9.1667, - "y": 23.8697 - }, - { - "l": "99.6", - "x": 9.25, - "y": 23.9765 - }, - { - "l": "99.6", - "x": 9.3333, - "y": 24.0826 - }, - { - "l": "99.6", - "x": 9.4167, - "y": 24.19 - }, - { - "l": "99.6", - "x": 9.5, - "y": 24.2979 - }, - { - "l": "99.6", - "x": 9.5833, - "y": 24.4024 - }, - { - "l": "99.6", - "x": 9.6667, - "y": 24.5077 - }, - { - "l": "99.6", - "x": 9.75, - "y": 24.6137 - }, - { - "l": "99.6", - "x": 9.8333, - "y": 24.7188 - }, - { - "l": "99.6", - "x": 9.9167, - "y": 24.8217 - }, - { - "l": "99.6", - "x": 10.0, - "y": 24.9252 - }, - { - "l": "99.6", - "x": 10.0833, - "y": 25.0277 - }, - { - "l": "99.6", - "x": 10.1667, - "y": 25.1306 - }, - { - "l": "99.6", - "x": 10.25, - "y": 25.2326 - }, - { - "l": "99.6", - "x": 10.3333, - "y": 25.3334 - }, - { - "l": "99.6", - "x": 10.4167, - "y": 25.4346 - }, - { - "l": "99.6", - "x": 10.5, - "y": 25.5362 - }, - { - "l": "99.6", - "x": 10.5833, - "y": 25.6351 - }, - { - "l": "99.6", - "x": 10.6667, - "y": 25.7342 - }, - { - "l": "99.6", - "x": 10.75, - "y": 25.8321 - }, - { - "l": "99.6", - "x": 10.8333, - "y": 25.9287 - }, - { - "l": "99.6", - "x": 10.9167, - "y": 26.0238 - }, - { - "l": "99.6", - "x": 11.0, - "y": 26.1224 - }, - { - "l": "99.6", - "x": 11.0833, - "y": 26.2163 - }, - { - "l": "99.6", - "x": 11.1667, - "y": 26.3072 - }, - { - "l": "99.6", - "x": 11.25, - "y": 26.4032 - }, - { - "l": "99.6", - "x": 11.3333, - "y": 26.4975 - }, - { - "l": "99.6", - "x": 11.4167, - "y": 26.5872 - }, - { - "l": "99.6", - "x": 11.5, - "y": 26.6766 - }, - { - "l": "99.6", - "x": 11.5833, - "y": 26.768 - }, - { - "l": "99.6", - "x": 11.6667, - "y": 26.8563 - }, - { - "l": "99.6", - "x": 11.75, - "y": 26.9443 - }, - { - "l": "99.6", - "x": 11.8333, - "y": 27.0359 - }, - { - "l": "99.6", - "x": 11.9167, - "y": 27.1222 - }, - { - "l": "99.6", - "x": 12.0, - "y": 27.2107 - }, - { - "l": "99.6", - "x": 12.0833, - "y": 27.2955 - }, - { - "l": "99.6", - "x": 12.1667, - "y": 27.3803 - }, - { - "l": "99.6", - "x": 12.25, - "y": 27.4667 - }, - { - "l": "99.6", - "x": 12.3333, - "y": 27.5514 - }, - { - "l": "99.6", - "x": 12.4167, - "y": 27.6398 - }, - { - "l": "99.6", - "x": 12.5, - "y": 27.7229 - }, - { - "l": "99.6", - "x": 12.5833, - "y": 27.8007 - }, - { - "l": "99.6", - "x": 12.6667, - "y": 27.8837 - }, - { - "l": "99.6", - "x": 12.75, - "y": 27.9667 - }, - { - "l": "99.6", - "x": 12.8333, - "y": 28.0496 - }, - { - "l": "99.6", - "x": 12.9167, - "y": 28.1309 - }, - { - "l": "99.6", - "x": 13.0, - "y": 28.2084 - }, - { - "l": "99.6", - "x": 13.0833, - "y": 28.288 - }, - { - "l": "99.6", - "x": 13.1667, - "y": 28.3691 - }, - { - "l": "99.6", - "x": 13.25, - "y": 28.4486 - }, - { - "l": "99.6", - "x": 13.3333, - "y": 28.5243 - }, - { - "l": "99.6", - "x": 13.4167, - "y": 28.602 - }, - { - "l": "99.6", - "x": 13.5, - "y": 28.6776 - }, - { - "l": "99.6", - "x": 13.5833, - "y": 28.7552 - }, - { - "l": "99.6", - "x": 13.6667, - "y": 28.8275 - }, - { - "l": "99.6", - "x": 13.75, - "y": 28.905 - }, - { - "l": "99.6", - "x": 13.8333, - "y": 28.981 - }, - { - "l": "99.6", - "x": 13.9167, - "y": 29.0531 - }, - { - "l": "99.6", - "x": 14.0, - "y": 29.1251 - }, - { - "l": "99.6", - "x": 14.0833, - "y": 29.1992 - }, - { - "l": "99.6", - "x": 14.1667, - "y": 29.275 - }, - { - "l": "99.6", - "x": 14.25, - "y": 29.3421 - }, - { - "l": "99.6", - "x": 14.3333, - "y": 29.4161 - }, - { - "l": "99.6", - "x": 14.4167, - "y": 29.4847 - }, - { - "l": "99.6", - "x": 14.5, - "y": 29.5554 - }, - { - "l": "99.6", - "x": 14.5833, - "y": 29.624 - }, - { - "l": "99.6", - "x": 14.6667, - "y": 29.6893 - }, - { - "l": "99.6", - "x": 14.75, - "y": 29.7599 - }, - { - "l": "99.6", - "x": 14.8333, - "y": 29.8252 - }, - { - "l": "99.6", - "x": 14.9167, - "y": 29.8925 - }, - { - "l": "99.6", - "x": 15.0, - "y": 29.9578 - }, - { - "l": "99.6", - "x": 15.0833, - "y": 30.025 - }, - { - "l": "99.6", - "x": 15.1667, - "y": 30.0923 - }, - { - "l": "99.6", - "x": 15.25, - "y": 30.1527 - }, - { - "l": "99.6", - "x": 15.3333, - "y": 30.2199 - }, - { - "l": "99.6", - "x": 15.4167, - "y": 30.2786 - }, - { - "l": "99.6", - "x": 15.5, - "y": 30.3442 - }, - { - "l": "99.6", - "x": 15.5833, - "y": 30.4029 - }, - { - "l": "99.6", - "x": 15.6667, - "y": 30.4652 - }, - { - "l": "99.6", - "x": 15.75, - "y": 30.5239 - }, - { - "l": "99.6", - "x": 15.8333, - "y": 30.5847 - }, - { - "l": "99.6", - "x": 15.9167, - "y": 30.6439 - }, - { - "l": "99.6", - "x": 16.0, - "y": 30.7009 - }, - { - "l": "99.6", - "x": 16.0833, - "y": 30.7601 - }, - { - "l": "99.6", - "x": 16.1667, - "y": 30.8192 - }, - { - "l": "99.6", - "x": 16.25, - "y": 30.8732 - }, - { - "l": "99.6", - "x": 16.3333, - "y": 30.9307 - }, - { - "l": "99.6", - "x": 16.4167, - "y": 30.9866 - }, - { - "l": "99.6", - "x": 16.5, - "y": 31.039 - }, - { - "l": "99.6", - "x": 16.5833, - "y": 31.0934 - }, - { - "l": "99.6", - "x": 16.6667, - "y": 31.1478 - }, - { - "l": "99.6", - "x": 16.75, - "y": 31.1986 - }, - { - "l": "99.6", - "x": 16.8333, - "y": 31.2514 - }, - { - "l": "99.6", - "x": 16.9167, - "y": 31.3042 - }, - { - "l": "99.6", - "x": 17.0, - "y": 31.3535 - }, - { - "l": "99.6", - "x": 17.0833, - "y": 31.4048 - }, - { - "l": "99.6", - "x": 17.1667, - "y": 31.4561 - }, - { - "l": "99.6", - "x": 17.25, - "y": 31.5042 - }, - { - "l": "99.6", - "x": 17.3333, - "y": 31.552 - }, - { - "l": "99.6", - "x": 17.4167, - "y": 31.5986 - }, - { - "l": "99.6", - "x": 17.5, - "y": 31.6484 - }, - { - "l": "99.6", - "x": 17.5833, - "y": 31.6981 - }, - { - "l": "99.6", - "x": 17.6667, - "y": 31.7432 - }, - { - "l": "99.6", - "x": 17.75, - "y": 31.7899 - }, - { - "l": "99.6", - "x": 17.8333, - "y": 31.8346 - }, - { - "l": "99.6", - "x": 17.9167, - "y": 31.8782 - }, - { - "l": "99.6", - "x": 18.0, - "y": 31.9249 - }, - { - "l": "99.6", - "x": 18.0833, - "y": 31.9701 - }, - { - "l": "99.6", - "x": 18.1667, - "y": 32.0122 - }, - { - "l": "99.6", - "x": 18.25, - "y": 32.0573 - }, - { - "l": "99.6", - "x": 18.3333, - "y": 32.101 - }, - { - "l": "99.6", - "x": 18.4167, - "y": 32.1382 - }, - { - "l": "99.6", - "x": 18.5, - "y": 32.1818 - }, - { - "l": "99.6", - "x": 18.5833, - "y": 32.224 - }, - { - "l": "99.6", - "x": 18.6667, - "y": 32.2646 - }, - { - "l": "99.6", - "x": 18.75, - "y": 32.3052 - }, - { - "l": "99.6", - "x": 18.8333, - "y": 32.3459 - }, - { - "l": "99.6", - "x": 18.9167, - "y": 32.3866 - }, - { - "l": "99.6", - "x": 19.0, - "y": 32.4257 - }, - { - "l": "99.6", - "x": 19.0833, - "y": 32.4649 - }, - { - "l": "99.6", - "x": 19.1667, - "y": 32.5041 - }, - { - "l": "99.6", - "x": 19.25, - "y": 32.5417 - }, - { - "l": "99.6", - "x": 19.3333, - "y": 32.5809 - }, - { - "l": "99.6", - "x": 19.4167, - "y": 32.6171 - }, - { - "l": "99.6", - "x": 19.5, - "y": 32.6548 - }, - { - "l": "99.6", - "x": 19.5833, - "y": 32.6958 - }, - { - "l": "99.6", - "x": 19.6667, - "y": 32.732 - }, - { - "l": "99.6", - "x": 19.75, - "y": 32.7667 - }, - { - "l": "99.6", - "x": 19.8333, - "y": 32.803 - }, - { - "l": "99.6", - "x": 19.9167, - "y": 32.8392 - }, - { - "l": "99.6", - "x": 20.0, - "y": 32.874 - }, - { - "l": "99.6", - "x": 20.0, - "y": 32.874 - } - ] - } - ] - }, - "female": null - } - } - ] -}; - -var ukwhoBMIFemaleCentileData = { - "centile_data": [ - { - "uk90_preterm": { - "male": null, - "female": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -2.67, - "centile": 0.4, - "data": null - }, - { - "sds": -2.0, - "centile": 2.0, - "data": null - }, - { - "sds": -1.33, - "centile": 9.0, - "data": null - }, - { - "sds": -0.67, - "centile": 25.0, - "data": null - }, - { - "sds": 0.0, - "centile": 50.0, - "data": null - }, - { - "sds": 0.67, - "centile": 75.0, - "data": null - }, - { - "sds": 1.33, - "centile": 91.0, - "data": null - }, - { - "sds": 2.0, - "centile": 98.0, - "data": null - }, - { - "sds": 2.67, - "centile": 99.6, - "data": null - } - ] - } - } - }, - { - "uk_who_infant": { - "male": null, - "female": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 0.0383, - "y": 10.1798 - }, - { - "l": "0.4", - "x": 0.0575, - "y": 10.6231 - }, - { - "l": "0.4", - "x": 0.0767, - "y": 11.0302 - }, - { - "l": "0.4", - "x": 0.0958, - "y": 11.3724 - }, - { - "l": "0.4", - "x": 0.115, - "y": 11.6539 - }, - { - "l": "0.4", - "x": 0.1342, - "y": 11.89 - }, - { - "l": "0.4", - "x": 0.1533, - "y": 12.09 - }, - { - "l": "0.4", - "x": 0.1725, - "y": 12.2624 - }, - { - "l": "0.4", - "x": 0.1916, - "y": 12.411 - }, - { - "l": "0.4", - "x": 0.2108, - "y": 12.54 - }, - { - "l": "0.4", - "x": 0.23, - "y": 12.6523 - }, - { - "l": "0.4", - "x": 0.2491, - "y": 12.751 - }, - { - "l": "0.4", - "x": 0.2683, - "y": 12.837 - }, - { - "l": "0.4", - "x": 0.2875, - "y": 12.9135 - }, - { - "l": "0.4", - "x": 0.3066, - "y": 12.9813 - }, - { - "l": "0.4", - "x": 0.3258, - "y": 13.0412 - }, - { - "l": "0.4", - "x": 0.345, - "y": 13.0949 - }, - { - "l": "0.4", - "x": 0.3641, - "y": 13.1427 - }, - { - "l": "0.4", - "x": 0.3833, - "y": 13.1846 - }, - { - "l": "0.4", - "x": 0.4025, - "y": 13.2211 - }, - { - "l": "0.4", - "x": 0.4216, - "y": 13.253 - }, - { - "l": "0.4", - "x": 0.4408, - "y": 13.281 - }, - { - "l": "0.4", - "x": 0.46, - "y": 13.3047 - }, - { - "l": "0.4", - "x": 0.4791, - "y": 13.3245 - }, - { - "l": "0.4", - "x": 0.4983, - "y": 13.3405 - }, - { - "l": "0.4", - "x": 0.5175, - "y": 13.3531 - }, - { - "l": "0.4", - "x": 0.5366, - "y": 13.3624 - }, - { - "l": "0.4", - "x": 0.5558, - "y": 13.3685 - }, - { - "l": "0.4", - "x": 0.5749, - "y": 13.3718 - }, - { - "l": "0.4", - "x": 0.5941, - "y": 13.3725 - }, - { - "l": "0.4", - "x": 0.6133, - "y": 13.3707 - }, - { - "l": "0.4", - "x": 0.6324, - "y": 13.3666 - }, - { - "l": "0.4", - "x": 0.6516, - "y": 13.3604 - }, - { - "l": "0.4", - "x": 0.6708, - "y": 13.3523 - }, - { - "l": "0.4", - "x": 0.6899, - "y": 13.3425 - }, - { - "l": "0.4", - "x": 0.7091, - "y": 13.331 - }, - { - "l": "0.4", - "x": 0.7283, - "y": 13.3181 - }, - { - "l": "0.4", - "x": 0.7474, - "y": 13.304 - }, - { - "l": "0.4", - "x": 0.7666, - "y": 13.2887 - }, - { - "l": "0.4", - "x": 0.7858, - "y": 13.2725 - }, - { - "l": "0.4", - "x": 0.8049, - "y": 13.2554 - }, - { - "l": "0.4", - "x": 0.8241, - "y": 13.2375 - }, - { - "l": "0.4", - "x": 0.8433, - "y": 13.2192 - }, - { - "l": "0.4", - "x": 0.8624, - "y": 13.2004 - }, - { - "l": "0.4", - "x": 0.8816, - "y": 13.1813 - }, - { - "l": "0.4", - "x": 0.9008, - "y": 13.1619 - }, - { - "l": "0.4", - "x": 0.9199, - "y": 13.1423 - }, - { - "l": "0.4", - "x": 0.9391, - "y": 13.1228 - }, - { - "l": "0.4", - "x": 0.9582, - "y": 13.1032 - }, - { - "l": "0.4", - "x": 0.9774, - "y": 13.0836 - }, - { - "l": "0.4", - "x": 0.9966, - "y": 13.0641 - }, - { - "l": "0.4", - "x": 1.0157, - "y": 13.0448 - }, - { - "l": "0.4", - "x": 1.0349, - "y": 13.0256 - }, - { - "l": "0.4", - "x": 1.0541, - "y": 13.0066 - }, - { - "l": "0.4", - "x": 1.0732, - "y": 12.9877 - }, - { - "l": "0.4", - "x": 1.0924, - "y": 12.9691 - }, - { - "l": "0.4", - "x": 1.1116, - "y": 12.9508 - }, - { - "l": "0.4", - "x": 1.1307, - "y": 12.9327 - }, - { - "l": "0.4", - "x": 1.1499, - "y": 12.9148 - }, - { - "l": "0.4", - "x": 1.1691, - "y": 12.8972 - }, - { - "l": "0.4", - "x": 1.1882, - "y": 12.8799 - }, - { - "l": "0.4", - "x": 1.2074, - "y": 12.8629 - }, - { - "l": "0.4", - "x": 1.2266, - "y": 12.8462 - }, - { - "l": "0.4", - "x": 1.2457, - "y": 12.8298 - }, - { - "l": "0.4", - "x": 1.2649, - "y": 12.8137 - }, - { - "l": "0.4", - "x": 1.2841, - "y": 12.7979 - }, - { - "l": "0.4", - "x": 1.3032, - "y": 12.7824 - }, - { - "l": "0.4", - "x": 1.3224, - "y": 12.7672 - }, - { - "l": "0.4", - "x": 1.3415, - "y": 12.7524 - }, - { - "l": "0.4", - "x": 1.3607, - "y": 12.7379 - }, - { - "l": "0.4", - "x": 1.3799, - "y": 12.7237 - }, - { - "l": "0.4", - "x": 1.399, - "y": 12.7099 - }, - { - "l": "0.4", - "x": 1.4182, - "y": 12.6964 - }, - { - "l": "0.4", - "x": 1.4374, - "y": 12.6832 - }, - { - "l": "0.4", - "x": 1.4565, - "y": 12.6704 - }, - { - "l": "0.4", - "x": 1.4757, - "y": 12.6579 - }, - { - "l": "0.4", - "x": 1.4949, - "y": 12.6457 - }, - { - "l": "0.4", - "x": 1.514, - "y": 12.6339 - }, - { - "l": "0.4", - "x": 1.5332, - "y": 12.6224 - }, - { - "l": "0.4", - "x": 1.5524, - "y": 12.6112 - }, - { - "l": "0.4", - "x": 1.5715, - "y": 12.6004 - }, - { - "l": "0.4", - "x": 1.5907, - "y": 12.5898 - }, - { - "l": "0.4", - "x": 1.6099, - "y": 12.5795 - }, - { - "l": "0.4", - "x": 1.629, - "y": 12.5695 - }, - { - "l": "0.4", - "x": 1.6482, - "y": 12.5598 - }, - { - "l": "0.4", - "x": 1.6674, - "y": 12.5505 - }, - { - "l": "0.4", - "x": 1.6865, - "y": 12.5416 - }, - { - "l": "0.4", - "x": 1.7057, - "y": 12.5329 - }, - { - "l": "0.4", - "x": 1.7248, - "y": 12.5247 - }, - { - "l": "0.4", - "x": 1.744, - "y": 12.5167 - }, - { - "l": "0.4", - "x": 1.7632, - "y": 12.5091 - }, - { - "l": "0.4", - "x": 1.7823, - "y": 12.5019 - }, - { - "l": "0.4", - "x": 1.8015, - "y": 12.4949 - }, - { - "l": "0.4", - "x": 1.8207, - "y": 12.4883 - }, - { - "l": "0.4", - "x": 1.8398, - "y": 12.4821 - }, - { - "l": "0.4", - "x": 1.859, - "y": 12.4762 - }, - { - "l": "0.4", - "x": 1.8782, - "y": 12.4707 - }, - { - "l": "0.4", - "x": 1.8973, - "y": 12.4655 - }, - { - "l": "0.4", - "x": 1.9165, - "y": 12.4605 - }, - { - "l": "0.4", - "x": 1.9357, - "y": 12.4564 - }, - { - "l": "0.4", - "x": 1.9548, - "y": 12.4522 - }, - { - "l": "0.4", - "x": 1.974, - "y": 12.448 - }, - { - "l": "0.4", - "x": 1.9932, - "y": 12.4438 - }, - { - "l": "0.4", - "x": 2.0, - "y": 12.4423 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 0.0383, - "y": 10.9554 - }, - { - "l": "2.0", - "x": 0.0575, - "y": 11.4064 - }, - { - "l": "2.0", - "x": 0.0767, - "y": 11.824 - }, - { - "l": "2.0", - "x": 0.0958, - "y": 12.1751 - }, - { - "l": "2.0", - "x": 0.115, - "y": 12.4631 - }, - { - "l": "2.0", - "x": 0.1342, - "y": 12.7042 - }, - { - "l": "2.0", - "x": 0.1533, - "y": 12.9077 - }, - { - "l": "2.0", - "x": 0.1725, - "y": 13.0827 - }, - { - "l": "2.0", - "x": 0.1916, - "y": 13.2331 - }, - { - "l": "2.0", - "x": 0.2108, - "y": 13.3631 - }, - { - "l": "2.0", - "x": 0.23, - "y": 13.4758 - }, - { - "l": "2.0", - "x": 0.2491, - "y": 13.5745 - }, - { - "l": "2.0", - "x": 0.2683, - "y": 13.6603 - }, - { - "l": "2.0", - "x": 0.2875, - "y": 13.7361 - }, - { - "l": "2.0", - "x": 0.3066, - "y": 13.8029 - }, - { - "l": "2.0", - "x": 0.3258, - "y": 13.8615 - }, - { - "l": "2.0", - "x": 0.345, - "y": 13.9138 - }, - { - "l": "2.0", - "x": 0.3641, - "y": 13.9601 - }, - { - "l": "2.0", - "x": 0.3833, - "y": 14.0004 - }, - { - "l": "2.0", - "x": 0.4025, - "y": 14.0352 - }, - { - "l": "2.0", - "x": 0.4216, - "y": 14.0652 - }, - { - "l": "2.0", - "x": 0.4408, - "y": 14.0912 - }, - { - "l": "2.0", - "x": 0.46, - "y": 14.1129 - }, - { - "l": "2.0", - "x": 0.4791, - "y": 14.1305 - }, - { - "l": "2.0", - "x": 0.4983, - "y": 14.1442 - }, - { - "l": "2.0", - "x": 0.5175, - "y": 14.1544 - }, - { - "l": "2.0", - "x": 0.5366, - "y": 14.1612 - }, - { - "l": "2.0", - "x": 0.5558, - "y": 14.1649 - }, - { - "l": "2.0", - "x": 0.5749, - "y": 14.1656 - }, - { - "l": "2.0", - "x": 0.5941, - "y": 14.1636 - }, - { - "l": "2.0", - "x": 0.6133, - "y": 14.1591 - }, - { - "l": "2.0", - "x": 0.6324, - "y": 14.1523 - }, - { - "l": "2.0", - "x": 0.6516, - "y": 14.1433 - }, - { - "l": "2.0", - "x": 0.6708, - "y": 14.1324 - }, - { - "l": "2.0", - "x": 0.6899, - "y": 14.1197 - }, - { - "l": "2.0", - "x": 0.7091, - "y": 14.1054 - }, - { - "l": "2.0", - "x": 0.7283, - "y": 14.0896 - }, - { - "l": "2.0", - "x": 0.7474, - "y": 14.0726 - }, - { - "l": "2.0", - "x": 0.7666, - "y": 14.0544 - }, - { - "l": "2.0", - "x": 0.7858, - "y": 14.0353 - }, - { - "l": "2.0", - "x": 0.8049, - "y": 14.0153 - }, - { - "l": "2.0", - "x": 0.8241, - "y": 13.9946 - }, - { - "l": "2.0", - "x": 0.8433, - "y": 13.9734 - }, - { - "l": "2.0", - "x": 0.8624, - "y": 13.9518 - }, - { - "l": "2.0", - "x": 0.8816, - "y": 13.9299 - }, - { - "l": "2.0", - "x": 0.9008, - "y": 13.9077 - }, - { - "l": "2.0", - "x": 0.9199, - "y": 13.8854 - }, - { - "l": "2.0", - "x": 0.9391, - "y": 13.8632 - }, - { - "l": "2.0", - "x": 0.9582, - "y": 13.841 - }, - { - "l": "2.0", - "x": 0.9774, - "y": 13.8188 - }, - { - "l": "2.0", - "x": 0.9966, - "y": 13.7967 - }, - { - "l": "2.0", - "x": 1.0157, - "y": 13.7749 - }, - { - "l": "2.0", - "x": 1.0349, - "y": 13.7532 - }, - { - "l": "2.0", - "x": 1.0541, - "y": 13.7317 - }, - { - "l": "2.0", - "x": 1.0732, - "y": 13.7105 - }, - { - "l": "2.0", - "x": 1.0924, - "y": 13.6895 - }, - { - "l": "2.0", - "x": 1.1116, - "y": 13.6688 - }, - { - "l": "2.0", - "x": 1.1307, - "y": 13.6485 - }, - { - "l": "2.0", - "x": 1.1499, - "y": 13.6284 - }, - { - "l": "2.0", - "x": 1.1691, - "y": 13.6086 - }, - { - "l": "2.0", - "x": 1.1882, - "y": 13.5892 - }, - { - "l": "2.0", - "x": 1.2074, - "y": 13.57 - }, - { - "l": "2.0", - "x": 1.2266, - "y": 13.5512 - }, - { - "l": "2.0", - "x": 1.2457, - "y": 13.5328 - }, - { - "l": "2.0", - "x": 1.2649, - "y": 13.5147 - }, - { - "l": "2.0", - "x": 1.2841, - "y": 13.497 - }, - { - "l": "2.0", - "x": 1.3032, - "y": 13.4796 - }, - { - "l": "2.0", - "x": 1.3224, - "y": 13.4625 - }, - { - "l": "2.0", - "x": 1.3415, - "y": 13.4459 - }, - { - "l": "2.0", - "x": 1.3607, - "y": 13.4296 - }, - { - "l": "2.0", - "x": 1.3799, - "y": 13.4137 - }, - { - "l": "2.0", - "x": 1.399, - "y": 13.3981 - }, - { - "l": "2.0", - "x": 1.4182, - "y": 13.383 - }, - { - "l": "2.0", - "x": 1.4374, - "y": 13.3681 - }, - { - "l": "2.0", - "x": 1.4565, - "y": 13.3537 - }, - { - "l": "2.0", - "x": 1.4757, - "y": 13.3396 - }, - { - "l": "2.0", - "x": 1.4949, - "y": 13.3258 - }, - { - "l": "2.0", - "x": 1.514, - "y": 13.3125 - }, - { - "l": "2.0", - "x": 1.5332, - "y": 13.2995 - }, - { - "l": "2.0", - "x": 1.5524, - "y": 13.2868 - }, - { - "l": "2.0", - "x": 1.5715, - "y": 13.2745 - }, - { - "l": "2.0", - "x": 1.5907, - "y": 13.2626 - }, - { - "l": "2.0", - "x": 1.6099, - "y": 13.2509 - }, - { - "l": "2.0", - "x": 1.629, - "y": 13.2396 - }, - { - "l": "2.0", - "x": 1.6482, - "y": 13.2286 - }, - { - "l": "2.0", - "x": 1.6674, - "y": 13.218 - }, - { - "l": "2.0", - "x": 1.6865, - "y": 13.2078 - }, - { - "l": "2.0", - "x": 1.7057, - "y": 13.198 - }, - { - "l": "2.0", - "x": 1.7248, - "y": 13.1885 - }, - { - "l": "2.0", - "x": 1.744, - "y": 13.1794 - }, - { - "l": "2.0", - "x": 1.7632, - "y": 13.1707 - }, - { - "l": "2.0", - "x": 1.7823, - "y": 13.1623 - }, - { - "l": "2.0", - "x": 1.8015, - "y": 13.1543 - }, - { - "l": "2.0", - "x": 1.8207, - "y": 13.1466 - }, - { - "l": "2.0", - "x": 1.8398, - "y": 13.1393 - }, - { - "l": "2.0", - "x": 1.859, - "y": 13.1325 - }, - { - "l": "2.0", - "x": 1.8782, - "y": 13.1259 - }, - { - "l": "2.0", - "x": 1.8973, - "y": 13.1197 - }, - { - "l": "2.0", - "x": 1.9165, - "y": 13.1139 - }, - { - "l": "2.0", - "x": 1.9357, - "y": 13.1088 - }, - { - "l": "2.0", - "x": 1.9548, - "y": 13.1038 - }, - { - "l": "2.0", - "x": 1.974, - "y": 13.0988 - }, - { - "l": "2.0", - "x": 1.9932, - "y": 13.0937 - }, - { - "l": "2.0", - "x": 2.0, - "y": 13.0919 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 0.0383, - "y": 11.759 - }, - { - "l": "9.0", - "x": 0.0575, - "y": 12.2219 - }, - { - "l": "9.0", - "x": 0.0767, - "y": 12.6533 - }, - { - "l": "9.0", - "x": 0.0958, - "y": 13.0159 - }, - { - "l": "9.0", - "x": 0.115, - "y": 13.3127 - }, - { - "l": "9.0", - "x": 0.1342, - "y": 13.5606 - }, - { - "l": "9.0", - "x": 0.1533, - "y": 13.7693 - }, - { - "l": "9.0", - "x": 0.1725, - "y": 13.9483 - }, - { - "l": "9.0", - "x": 0.1916, - "y": 14.1017 - }, - { - "l": "9.0", - "x": 0.2108, - "y": 14.2338 - }, - { - "l": "9.0", - "x": 0.23, - "y": 14.3479 - }, - { - "l": "9.0", - "x": 0.2491, - "y": 14.4475 - }, - { - "l": "9.0", - "x": 0.2683, - "y": 14.5338 - }, - { - "l": "9.0", - "x": 0.2875, - "y": 14.6097 - }, - { - "l": "9.0", - "x": 0.3066, - "y": 14.6761 - }, - { - "l": "9.0", - "x": 0.3258, - "y": 14.734 - }, - { - "l": "9.0", - "x": 0.345, - "y": 14.7854 - }, - { - "l": "9.0", - "x": 0.3641, - "y": 14.8308 - }, - { - "l": "9.0", - "x": 0.3833, - "y": 14.8699 - }, - { - "l": "9.0", - "x": 0.4025, - "y": 14.9034 - }, - { - "l": "9.0", - "x": 0.4216, - "y": 14.9319 - }, - { - "l": "9.0", - "x": 0.4408, - "y": 14.9563 - }, - { - "l": "9.0", - "x": 0.46, - "y": 14.9762 - }, - { - "l": "9.0", - "x": 0.4791, - "y": 14.9919 - }, - { - "l": "9.0", - "x": 0.4983, - "y": 15.0036 - }, - { - "l": "9.0", - "x": 0.5175, - "y": 15.0117 - }, - { - "l": "9.0", - "x": 0.5366, - "y": 15.0163 - }, - { - "l": "9.0", - "x": 0.5558, - "y": 15.0176 - }, - { - "l": "9.0", - "x": 0.5749, - "y": 15.0159 - }, - { - "l": "9.0", - "x": 0.5941, - "y": 15.0114 - }, - { - "l": "9.0", - "x": 0.6133, - "y": 15.0044 - }, - { - "l": "9.0", - "x": 0.6324, - "y": 14.995 - }, - { - "l": "9.0", - "x": 0.6516, - "y": 14.9833 - }, - { - "l": "9.0", - "x": 0.6708, - "y": 14.9696 - }, - { - "l": "9.0", - "x": 0.6899, - "y": 14.9542 - }, - { - "l": "9.0", - "x": 0.7091, - "y": 14.937 - }, - { - "l": "9.0", - "x": 0.7283, - "y": 14.9184 - }, - { - "l": "9.0", - "x": 0.7474, - "y": 14.8985 - }, - { - "l": "9.0", - "x": 0.7666, - "y": 14.8775 - }, - { - "l": "9.0", - "x": 0.7858, - "y": 14.8554 - }, - { - "l": "9.0", - "x": 0.8049, - "y": 14.8326 - }, - { - "l": "9.0", - "x": 0.8241, - "y": 14.809 - }, - { - "l": "9.0", - "x": 0.8433, - "y": 14.785 - }, - { - "l": "9.0", - "x": 0.8624, - "y": 14.7606 - }, - { - "l": "9.0", - "x": 0.8816, - "y": 14.7359 - }, - { - "l": "9.0", - "x": 0.9008, - "y": 14.711 - }, - { - "l": "9.0", - "x": 0.9199, - "y": 14.6859 - }, - { - "l": "9.0", - "x": 0.9391, - "y": 14.661 - }, - { - "l": "9.0", - "x": 0.9582, - "y": 14.6361 - }, - { - "l": "9.0", - "x": 0.9774, - "y": 14.6113 - }, - { - "l": "9.0", - "x": 0.9966, - "y": 14.5866 - }, - { - "l": "9.0", - "x": 1.0157, - "y": 14.5622 - }, - { - "l": "9.0", - "x": 1.0349, - "y": 14.538 - }, - { - "l": "9.0", - "x": 1.0541, - "y": 14.514 - }, - { - "l": "9.0", - "x": 1.0732, - "y": 14.4904 - }, - { - "l": "9.0", - "x": 1.0924, - "y": 14.467 - }, - { - "l": "9.0", - "x": 1.1116, - "y": 14.444 - }, - { - "l": "9.0", - "x": 1.1307, - "y": 14.4213 - }, - { - "l": "9.0", - "x": 1.1499, - "y": 14.3989 - }, - { - "l": "9.0", - "x": 1.1691, - "y": 14.3769 - }, - { - "l": "9.0", - "x": 1.1882, - "y": 14.3553 - }, - { - "l": "9.0", - "x": 1.2074, - "y": 14.334 - }, - { - "l": "9.0", - "x": 1.2266, - "y": 14.3132 - }, - { - "l": "9.0", - "x": 1.2457, - "y": 14.2926 - }, - { - "l": "9.0", - "x": 1.2649, - "y": 14.2725 - }, - { - "l": "9.0", - "x": 1.2841, - "y": 14.2528 - }, - { - "l": "9.0", - "x": 1.3032, - "y": 14.2335 - }, - { - "l": "9.0", - "x": 1.3224, - "y": 14.2146 - }, - { - "l": "9.0", - "x": 1.3415, - "y": 14.196 - }, - { - "l": "9.0", - "x": 1.3607, - "y": 14.1779 - }, - { - "l": "9.0", - "x": 1.3799, - "y": 14.1602 - }, - { - "l": "9.0", - "x": 1.399, - "y": 14.1429 - }, - { - "l": "9.0", - "x": 1.4182, - "y": 14.126 - }, - { - "l": "9.0", - "x": 1.4374, - "y": 14.1095 - }, - { - "l": "9.0", - "x": 1.4565, - "y": 14.0934 - }, - { - "l": "9.0", - "x": 1.4757, - "y": 14.0777 - }, - { - "l": "9.0", - "x": 1.4949, - "y": 14.0624 - }, - { - "l": "9.0", - "x": 1.514, - "y": 14.0474 - }, - { - "l": "9.0", - "x": 1.5332, - "y": 14.0329 - }, - { - "l": "9.0", - "x": 1.5524, - "y": 14.0188 - }, - { - "l": "9.0", - "x": 1.5715, - "y": 14.005 - }, - { - "l": "9.0", - "x": 1.5907, - "y": 13.9916 - }, - { - "l": "9.0", - "x": 1.6099, - "y": 13.9786 - }, - { - "l": "9.0", - "x": 1.629, - "y": 13.9659 - }, - { - "l": "9.0", - "x": 1.6482, - "y": 13.9536 - }, - { - "l": "9.0", - "x": 1.6674, - "y": 13.9417 - }, - { - "l": "9.0", - "x": 1.6865, - "y": 13.9303 - }, - { - "l": "9.0", - "x": 1.7057, - "y": 13.9192 - }, - { - "l": "9.0", - "x": 1.7248, - "y": 13.9085 - }, - { - "l": "9.0", - "x": 1.744, - "y": 13.8982 - }, - { - "l": "9.0", - "x": 1.7632, - "y": 13.8883 - }, - { - "l": "9.0", - "x": 1.7823, - "y": 13.8788 - }, - { - "l": "9.0", - "x": 1.8015, - "y": 13.8697 - }, - { - "l": "9.0", - "x": 1.8207, - "y": 13.8609 - }, - { - "l": "9.0", - "x": 1.8398, - "y": 13.8526 - }, - { - "l": "9.0", - "x": 1.859, - "y": 13.8447 - }, - { - "l": "9.0", - "x": 1.8782, - "y": 13.8372 - }, - { - "l": "9.0", - "x": 1.8973, - "y": 13.83 - }, - { - "l": "9.0", - "x": 1.9165, - "y": 13.8232 - }, - { - "l": "9.0", - "x": 1.9357, - "y": 13.8173 - }, - { - "l": "9.0", - "x": 1.9548, - "y": 13.8114 - }, - { - "l": "9.0", - "x": 1.974, - "y": 13.8055 - }, - { - "l": "9.0", - "x": 1.9932, - "y": 13.7996 - }, - { - "l": "9.0", - "x": 2.0, - "y": 13.7975 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 0.0383, - "y": 12.5906 - }, - { - "l": "25.0", - "x": 0.0575, - "y": 13.0698 - }, - { - "l": "25.0", - "x": 0.0767, - "y": 13.5187 - }, - { - "l": "25.0", - "x": 0.0958, - "y": 13.8958 - }, - { - "l": "25.0", - "x": 0.115, - "y": 14.2039 - }, - { - "l": "25.0", - "x": 0.1342, - "y": 14.4608 - }, - { - "l": "25.0", - "x": 0.1533, - "y": 14.6765 - }, - { - "l": "25.0", - "x": 0.1725, - "y": 14.8611 - }, - { - "l": "25.0", - "x": 0.1916, - "y": 15.0191 - }, - { - "l": "25.0", - "x": 0.2108, - "y": 15.1545 - }, - { - "l": "25.0", - "x": 0.23, - "y": 15.2713 - }, - { - "l": "25.0", - "x": 0.2491, - "y": 15.3727 - }, - { - "l": "25.0", - "x": 0.2683, - "y": 15.4605 - }, - { - "l": "25.0", - "x": 0.2875, - "y": 15.5373 - }, - { - "l": "25.0", - "x": 0.3066, - "y": 15.6041 - }, - { - "l": "25.0", - "x": 0.3258, - "y": 15.6621 - }, - { - "l": "25.0", - "x": 0.345, - "y": 15.7134 - }, - { - "l": "25.0", - "x": 0.3641, - "y": 15.7584 - }, - { - "l": "25.0", - "x": 0.3833, - "y": 15.797 - }, - { - "l": "25.0", - "x": 0.4025, - "y": 15.8297 - }, - { - "l": "25.0", - "x": 0.4216, - "y": 15.8572 - }, - { - "l": "25.0", - "x": 0.4408, - "y": 15.8804 - }, - { - "l": "25.0", - "x": 0.46, - "y": 15.899 - }, - { - "l": "25.0", - "x": 0.4791, - "y": 15.9132 - }, - { - "l": "25.0", - "x": 0.4983, - "y": 15.9232 - }, - { - "l": "25.0", - "x": 0.5175, - "y": 15.9295 - }, - { - "l": "25.0", - "x": 0.5366, - "y": 15.9321 - }, - { - "l": "25.0", - "x": 0.5558, - "y": 15.9314 - }, - { - "l": "25.0", - "x": 0.5749, - "y": 15.9275 - }, - { - "l": "25.0", - "x": 0.5941, - "y": 15.9207 - }, - { - "l": "25.0", - "x": 0.6133, - "y": 15.9113 - }, - { - "l": "25.0", - "x": 0.6324, - "y": 15.8995 - }, - { - "l": "25.0", - "x": 0.6516, - "y": 15.8853 - }, - { - "l": "25.0", - "x": 0.6708, - "y": 15.869 - }, - { - "l": "25.0", - "x": 0.6899, - "y": 15.8509 - }, - { - "l": "25.0", - "x": 0.7091, - "y": 15.8311 - }, - { - "l": "25.0", - "x": 0.7283, - "y": 15.8098 - }, - { - "l": "25.0", - "x": 0.7474, - "y": 15.787 - }, - { - "l": "25.0", - "x": 0.7666, - "y": 15.7632 - }, - { - "l": "25.0", - "x": 0.7858, - "y": 15.7384 - }, - { - "l": "25.0", - "x": 0.8049, - "y": 15.7127 - }, - { - "l": "25.0", - "x": 0.8241, - "y": 15.6863 - }, - { - "l": "25.0", - "x": 0.8433, - "y": 15.6595 - }, - { - "l": "25.0", - "x": 0.8624, - "y": 15.6323 - }, - { - "l": "25.0", - "x": 0.8816, - "y": 15.6049 - }, - { - "l": "25.0", - "x": 0.9008, - "y": 15.5772 - }, - { - "l": "25.0", - "x": 0.9199, - "y": 15.5495 - }, - { - "l": "25.0", - "x": 0.9391, - "y": 15.5218 - }, - { - "l": "25.0", - "x": 0.9582, - "y": 15.4943 - }, - { - "l": "25.0", - "x": 0.9774, - "y": 15.4668 - }, - { - "l": "25.0", - "x": 0.9966, - "y": 15.4396 - }, - { - "l": "25.0", - "x": 1.0157, - "y": 15.4126 - }, - { - "l": "25.0", - "x": 1.0349, - "y": 15.3859 - }, - { - "l": "25.0", - "x": 1.0541, - "y": 15.3594 - }, - { - "l": "25.0", - "x": 1.0732, - "y": 15.3333 - }, - { - "l": "25.0", - "x": 1.0924, - "y": 15.3075 - }, - { - "l": "25.0", - "x": 1.1116, - "y": 15.2822 - }, - { - "l": "25.0", - "x": 1.1307, - "y": 15.2572 - }, - { - "l": "25.0", - "x": 1.1499, - "y": 15.2325 - }, - { - "l": "25.0", - "x": 1.1691, - "y": 15.2083 - }, - { - "l": "25.0", - "x": 1.1882, - "y": 15.1845 - }, - { - "l": "25.0", - "x": 1.2074, - "y": 15.161 - }, - { - "l": "25.0", - "x": 1.2266, - "y": 15.138 - }, - { - "l": "25.0", - "x": 1.2457, - "y": 15.1155 - }, - { - "l": "25.0", - "x": 1.2649, - "y": 15.0933 - }, - { - "l": "25.0", - "x": 1.2841, - "y": 15.0716 - }, - { - "l": "25.0", - "x": 1.3032, - "y": 15.0503 - }, - { - "l": "25.0", - "x": 1.3224, - "y": 15.0295 - }, - { - "l": "25.0", - "x": 1.3415, - "y": 15.0091 - }, - { - "l": "25.0", - "x": 1.3607, - "y": 14.9892 - }, - { - "l": "25.0", - "x": 1.3799, - "y": 14.9697 - }, - { - "l": "25.0", - "x": 1.399, - "y": 14.9506 - }, - { - "l": "25.0", - "x": 1.4182, - "y": 14.9319 - }, - { - "l": "25.0", - "x": 1.4374, - "y": 14.9137 - }, - { - "l": "25.0", - "x": 1.4565, - "y": 14.896 - }, - { - "l": "25.0", - "x": 1.4757, - "y": 14.8786 - }, - { - "l": "25.0", - "x": 1.4949, - "y": 14.8617 - }, - { - "l": "25.0", - "x": 1.514, - "y": 14.8452 - }, - { - "l": "25.0", - "x": 1.5332, - "y": 14.8291 - }, - { - "l": "25.0", - "x": 1.5524, - "y": 14.8135 - }, - { - "l": "25.0", - "x": 1.5715, - "y": 14.7983 - }, - { - "l": "25.0", - "x": 1.5907, - "y": 14.7834 - }, - { - "l": "25.0", - "x": 1.6099, - "y": 14.769 - }, - { - "l": "25.0", - "x": 1.629, - "y": 14.755 - }, - { - "l": "25.0", - "x": 1.6482, - "y": 14.7414 - }, - { - "l": "25.0", - "x": 1.6674, - "y": 14.7282 - }, - { - "l": "25.0", - "x": 1.6865, - "y": 14.7154 - }, - { - "l": "25.0", - "x": 1.7057, - "y": 14.7031 - }, - { - "l": "25.0", - "x": 1.7248, - "y": 14.6912 - }, - { - "l": "25.0", - "x": 1.744, - "y": 14.6797 - }, - { - "l": "25.0", - "x": 1.7632, - "y": 14.6687 - }, - { - "l": "25.0", - "x": 1.7823, - "y": 14.658 - }, - { - "l": "25.0", - "x": 1.8015, - "y": 14.6478 - }, - { - "l": "25.0", - "x": 1.8207, - "y": 14.638 - }, - { - "l": "25.0", - "x": 1.8398, - "y": 14.6287 - }, - { - "l": "25.0", - "x": 1.859, - "y": 14.6197 - }, - { - "l": "25.0", - "x": 1.8782, - "y": 14.6112 - }, - { - "l": "25.0", - "x": 1.8973, - "y": 14.6031 - }, - { - "l": "25.0", - "x": 1.9165, - "y": 14.5953 - }, - { - "l": "25.0", - "x": 1.9357, - "y": 14.5886 - }, - { - "l": "25.0", - "x": 1.9548, - "y": 14.5819 - }, - { - "l": "25.0", - "x": 1.974, - "y": 14.5751 - }, - { - "l": "25.0", - "x": 1.9932, - "y": 14.5684 - }, - { - "l": "25.0", - "x": 2.0, - "y": 14.566 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 0.0383, - "y": 13.4501 - }, - { - "l": "50.0", - "x": 0.0575, - "y": 13.9505 - }, - { - "l": "50.0", - "x": 0.0767, - "y": 14.4208 - }, - { - "l": "50.0", - "x": 0.0958, - "y": 14.8157 - }, - { - "l": "50.0", - "x": 0.115, - "y": 15.138 - }, - { - "l": "50.0", - "x": 0.1342, - "y": 15.4063 - }, - { - "l": "50.0", - "x": 0.1533, - "y": 15.6311 - }, - { - "l": "50.0", - "x": 0.1725, - "y": 15.8232 - }, - { - "l": "50.0", - "x": 0.1916, - "y": 15.9874 - }, - { - "l": "50.0", - "x": 0.2108, - "y": 16.1277 - }, - { - "l": "50.0", - "x": 0.23, - "y": 16.2485 - }, - { - "l": "50.0", - "x": 0.2491, - "y": 16.3531 - }, - { - "l": "50.0", - "x": 0.2683, - "y": 16.4435 - }, - { - "l": "50.0", - "x": 0.2875, - "y": 16.5222 - }, - { - "l": "50.0", - "x": 0.3066, - "y": 16.5905 - }, - { - "l": "50.0", - "x": 0.3258, - "y": 16.6494 - }, - { - "l": "50.0", - "x": 0.345, - "y": 16.7014 - }, - { - "l": "50.0", - "x": 0.3641, - "y": 16.7469 - }, - { - "l": "50.0", - "x": 0.3833, - "y": 16.7856 - }, - { - "l": "50.0", - "x": 0.4025, - "y": 16.8182 - }, - { - "l": "50.0", - "x": 0.4216, - "y": 16.8453 - }, - { - "l": "50.0", - "x": 0.4408, - "y": 16.8679 - }, - { - "l": "50.0", - "x": 0.46, - "y": 16.8857 - }, - { - "l": "50.0", - "x": 0.4791, - "y": 16.8989 - }, - { - "l": "50.0", - "x": 0.4983, - "y": 16.9077 - }, - { - "l": "50.0", - "x": 0.5175, - "y": 16.9126 - }, - { - "l": "50.0", - "x": 0.5366, - "y": 16.9137 - }, - { - "l": "50.0", - "x": 0.5558, - "y": 16.9112 - }, - { - "l": "50.0", - "x": 0.5749, - "y": 16.9055 - }, - { - "l": "50.0", - "x": 0.5941, - "y": 16.8968 - }, - { - "l": "50.0", - "x": 0.6133, - "y": 16.8853 - }, - { - "l": "50.0", - "x": 0.6324, - "y": 16.8713 - }, - { - "l": "50.0", - "x": 0.6516, - "y": 16.8549 - }, - { - "l": "50.0", - "x": 0.6708, - "y": 16.8362 - }, - { - "l": "50.0", - "x": 0.6899, - "y": 16.8157 - }, - { - "l": "50.0", - "x": 0.7091, - "y": 16.7934 - }, - { - "l": "50.0", - "x": 0.7283, - "y": 16.7694 - }, - { - "l": "50.0", - "x": 0.7474, - "y": 16.7441 - }, - { - "l": "50.0", - "x": 0.7666, - "y": 16.7176 - }, - { - "l": "50.0", - "x": 0.7858, - "y": 16.6901 - }, - { - "l": "50.0", - "x": 0.8049, - "y": 16.6617 - }, - { - "l": "50.0", - "x": 0.8241, - "y": 16.6326 - }, - { - "l": "50.0", - "x": 0.8433, - "y": 16.6031 - }, - { - "l": "50.0", - "x": 0.8624, - "y": 16.5732 - }, - { - "l": "50.0", - "x": 0.8816, - "y": 16.5431 - }, - { - "l": "50.0", - "x": 0.9008, - "y": 16.5128 - }, - { - "l": "50.0", - "x": 0.9199, - "y": 16.4824 - }, - { - "l": "50.0", - "x": 0.9391, - "y": 16.4521 - }, - { - "l": "50.0", - "x": 0.9582, - "y": 16.422 - }, - { - "l": "50.0", - "x": 0.9774, - "y": 16.3919 - }, - { - "l": "50.0", - "x": 0.9966, - "y": 16.3621 - }, - { - "l": "50.0", - "x": 1.0157, - "y": 16.3326 - }, - { - "l": "50.0", - "x": 1.0349, - "y": 16.3034 - }, - { - "l": "50.0", - "x": 1.0541, - "y": 16.2745 - }, - { - "l": "50.0", - "x": 1.0732, - "y": 16.246 - }, - { - "l": "50.0", - "x": 1.0924, - "y": 16.2179 - }, - { - "l": "50.0", - "x": 1.1116, - "y": 16.1901 - }, - { - "l": "50.0", - "x": 1.1307, - "y": 16.1628 - }, - { - "l": "50.0", - "x": 1.1499, - "y": 16.136 - }, - { - "l": "50.0", - "x": 1.1691, - "y": 16.1095 - }, - { - "l": "50.0", - "x": 1.1882, - "y": 16.0835 - }, - { - "l": "50.0", - "x": 1.2074, - "y": 16.058 - }, - { - "l": "50.0", - "x": 1.2266, - "y": 16.0329 - }, - { - "l": "50.0", - "x": 1.2457, - "y": 16.0082 - }, - { - "l": "50.0", - "x": 1.2649, - "y": 15.9841 - }, - { - "l": "50.0", - "x": 1.2841, - "y": 15.9604 - }, - { - "l": "50.0", - "x": 1.3032, - "y": 15.9372 - }, - { - "l": "50.0", - "x": 1.3224, - "y": 15.9145 - }, - { - "l": "50.0", - "x": 1.3415, - "y": 15.8922 - }, - { - "l": "50.0", - "x": 1.3607, - "y": 15.8705 - }, - { - "l": "50.0", - "x": 1.3799, - "y": 15.8492 - }, - { - "l": "50.0", - "x": 1.399, - "y": 15.8283 - }, - { - "l": "50.0", - "x": 1.4182, - "y": 15.808 - }, - { - "l": "50.0", - "x": 1.4374, - "y": 15.7881 - }, - { - "l": "50.0", - "x": 1.4565, - "y": 15.7687 - }, - { - "l": "50.0", - "x": 1.4757, - "y": 15.7497 - }, - { - "l": "50.0", - "x": 1.4949, - "y": 15.7312 - }, - { - "l": "50.0", - "x": 1.514, - "y": 15.7131 - }, - { - "l": "50.0", - "x": 1.5332, - "y": 15.6956 - }, - { - "l": "50.0", - "x": 1.5524, - "y": 15.6784 - }, - { - "l": "50.0", - "x": 1.5715, - "y": 15.6618 - }, - { - "l": "50.0", - "x": 1.5907, - "y": 15.6455 - }, - { - "l": "50.0", - "x": 1.6099, - "y": 15.6297 - }, - { - "l": "50.0", - "x": 1.629, - "y": 15.6144 - }, - { - "l": "50.0", - "x": 1.6482, - "y": 15.5995 - }, - { - "l": "50.0", - "x": 1.6674, - "y": 15.585 - }, - { - "l": "50.0", - "x": 1.6865, - "y": 15.571 - }, - { - "l": "50.0", - "x": 1.7057, - "y": 15.5574 - }, - { - "l": "50.0", - "x": 1.7248, - "y": 15.5443 - }, - { - "l": "50.0", - "x": 1.744, - "y": 15.5317 - }, - { - "l": "50.0", - "x": 1.7632, - "y": 15.5195 - }, - { - "l": "50.0", - "x": 1.7823, - "y": 15.5077 - }, - { - "l": "50.0", - "x": 1.8015, - "y": 15.4965 - }, - { - "l": "50.0", - "x": 1.8207, - "y": 15.4856 - }, - { - "l": "50.0", - "x": 1.8398, - "y": 15.4752 - }, - { - "l": "50.0", - "x": 1.859, - "y": 15.4653 - }, - { - "l": "50.0", - "x": 1.8782, - "y": 15.4558 - }, - { - "l": "50.0", - "x": 1.8973, - "y": 15.4467 - }, - { - "l": "50.0", - "x": 1.9165, - "y": 15.4381 - }, - { - "l": "50.0", - "x": 1.9357, - "y": 15.4305 - }, - { - "l": "50.0", - "x": 1.9548, - "y": 15.423 - }, - { - "l": "50.0", - "x": 1.974, - "y": 15.4154 - }, - { - "l": "50.0", - "x": 1.9932, - "y": 15.4079 - }, - { - "l": "50.0", - "x": 2.0, - "y": 15.4052 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 0.0383, - "y": 14.3375 - }, - { - "l": "75.0", - "x": 0.0575, - "y": 14.8643 - }, - { - "l": "75.0", - "x": 0.0767, - "y": 15.3603 - }, - { - "l": "75.0", - "x": 0.0958, - "y": 15.7767 - }, - { - "l": "75.0", - "x": 0.115, - "y": 16.1162 - }, - { - "l": "75.0", - "x": 0.1342, - "y": 16.3986 - }, - { - "l": "75.0", - "x": 0.1533, - "y": 16.635 - }, - { - "l": "75.0", - "x": 0.1725, - "y": 16.8367 - }, - { - "l": "75.0", - "x": 0.1916, - "y": 17.0091 - }, - { - "l": "75.0", - "x": 0.2108, - "y": 17.1561 - }, - { - "l": "75.0", - "x": 0.23, - "y": 17.2825 - }, - { - "l": "75.0", - "x": 0.2491, - "y": 17.3917 - }, - { - "l": "75.0", - "x": 0.2683, - "y": 17.486 - }, - { - "l": "75.0", - "x": 0.2875, - "y": 17.5679 - }, - { - "l": "75.0", - "x": 0.3066, - "y": 17.6387 - }, - { - "l": "75.0", - "x": 0.3258, - "y": 17.6998 - }, - { - "l": "75.0", - "x": 0.345, - "y": 17.7535 - }, - { - "l": "75.0", - "x": 0.3641, - "y": 17.8004 - }, - { - "l": "75.0", - "x": 0.3833, - "y": 17.8402 - }, - { - "l": "75.0", - "x": 0.4025, - "y": 17.8734 - }, - { - "l": "75.0", - "x": 0.4216, - "y": 17.9009 - }, - { - "l": "75.0", - "x": 0.4408, - "y": 17.9237 - }, - { - "l": "75.0", - "x": 0.46, - "y": 17.9413 - }, - { - "l": "75.0", - "x": 0.4791, - "y": 17.9541 - }, - { - "l": "75.0", - "x": 0.4983, - "y": 17.9623 - }, - { - "l": "75.0", - "x": 0.5175, - "y": 17.9664 - }, - { - "l": "75.0", - "x": 0.5366, - "y": 17.9664 - }, - { - "l": "75.0", - "x": 0.5558, - "y": 17.9627 - }, - { - "l": "75.0", - "x": 0.5749, - "y": 17.9556 - }, - { - "l": "75.0", - "x": 0.5941, - "y": 17.9454 - }, - { - "l": "75.0", - "x": 0.6133, - "y": 17.9323 - }, - { - "l": "75.0", - "x": 0.6324, - "y": 17.9164 - }, - { - "l": "75.0", - "x": 0.6516, - "y": 17.898 - }, - { - "l": "75.0", - "x": 0.6708, - "y": 17.8774 - }, - { - "l": "75.0", - "x": 0.6899, - "y": 17.8547 - }, - { - "l": "75.0", - "x": 0.7091, - "y": 17.8301 - }, - { - "l": "75.0", - "x": 0.7283, - "y": 17.8038 - }, - { - "l": "75.0", - "x": 0.7474, - "y": 17.7761 - }, - { - "l": "75.0", - "x": 0.7666, - "y": 17.7472 - }, - { - "l": "75.0", - "x": 0.7858, - "y": 17.7172 - }, - { - "l": "75.0", - "x": 0.8049, - "y": 17.6863 - }, - { - "l": "75.0", - "x": 0.8241, - "y": 17.6547 - }, - { - "l": "75.0", - "x": 0.8433, - "y": 17.6226 - }, - { - "l": "75.0", - "x": 0.8624, - "y": 17.5902 - }, - { - "l": "75.0", - "x": 0.8816, - "y": 17.5576 - }, - { - "l": "75.0", - "x": 0.9008, - "y": 17.5247 - }, - { - "l": "75.0", - "x": 0.9199, - "y": 17.4918 - }, - { - "l": "75.0", - "x": 0.9391, - "y": 17.459 - }, - { - "l": "75.0", - "x": 0.9582, - "y": 17.4264 - }, - { - "l": "75.0", - "x": 0.9774, - "y": 17.3939 - }, - { - "l": "75.0", - "x": 0.9966, - "y": 17.3616 - }, - { - "l": "75.0", - "x": 1.0157, - "y": 17.3297 - }, - { - "l": "75.0", - "x": 1.0349, - "y": 17.2981 - }, - { - "l": "75.0", - "x": 1.0541, - "y": 17.2668 - }, - { - "l": "75.0", - "x": 1.0732, - "y": 17.236 - }, - { - "l": "75.0", - "x": 1.0924, - "y": 17.2056 - }, - { - "l": "75.0", - "x": 1.1116, - "y": 17.1756 - }, - { - "l": "75.0", - "x": 1.1307, - "y": 17.1461 - }, - { - "l": "75.0", - "x": 1.1499, - "y": 17.117 - }, - { - "l": "75.0", - "x": 1.1691, - "y": 17.0884 - }, - { - "l": "75.0", - "x": 1.1882, - "y": 17.0603 - }, - { - "l": "75.0", - "x": 1.2074, - "y": 17.0327 - }, - { - "l": "75.0", - "x": 1.2266, - "y": 17.0056 - }, - { - "l": "75.0", - "x": 1.2457, - "y": 16.9789 - }, - { - "l": "75.0", - "x": 1.2649, - "y": 16.9528 - }, - { - "l": "75.0", - "x": 1.2841, - "y": 16.9273 - }, - { - "l": "75.0", - "x": 1.3032, - "y": 16.9022 - }, - { - "l": "75.0", - "x": 1.3224, - "y": 16.8776 - }, - { - "l": "75.0", - "x": 1.3415, - "y": 16.8536 - }, - { - "l": "75.0", - "x": 1.3607, - "y": 16.83 - }, - { - "l": "75.0", - "x": 1.3799, - "y": 16.807 - }, - { - "l": "75.0", - "x": 1.399, - "y": 16.7845 - }, - { - "l": "75.0", - "x": 1.4182, - "y": 16.7624 - }, - { - "l": "75.0", - "x": 1.4374, - "y": 16.7409 - }, - { - "l": "75.0", - "x": 1.4565, - "y": 16.7199 - }, - { - "l": "75.0", - "x": 1.4757, - "y": 16.6993 - }, - { - "l": "75.0", - "x": 1.4949, - "y": 16.6793 - }, - { - "l": "75.0", - "x": 1.514, - "y": 16.6598 - }, - { - "l": "75.0", - "x": 1.5332, - "y": 16.6407 - }, - { - "l": "75.0", - "x": 1.5524, - "y": 16.6221 - }, - { - "l": "75.0", - "x": 1.5715, - "y": 16.6041 - }, - { - "l": "75.0", - "x": 1.5907, - "y": 16.5865 - }, - { - "l": "75.0", - "x": 1.6099, - "y": 16.5694 - }, - { - "l": "75.0", - "x": 1.629, - "y": 16.5527 - }, - { - "l": "75.0", - "x": 1.6482, - "y": 16.5366 - }, - { - "l": "75.0", - "x": 1.6674, - "y": 16.5209 - }, - { - "l": "75.0", - "x": 1.6865, - "y": 16.5057 - }, - { - "l": "75.0", - "x": 1.7057, - "y": 16.4909 - }, - { - "l": "75.0", - "x": 1.7248, - "y": 16.4767 - }, - { - "l": "75.0", - "x": 1.744, - "y": 16.4629 - }, - { - "l": "75.0", - "x": 1.7632, - "y": 16.4496 - }, - { - "l": "75.0", - "x": 1.7823, - "y": 16.4368 - }, - { - "l": "75.0", - "x": 1.8015, - "y": 16.4245 - }, - { - "l": "75.0", - "x": 1.8207, - "y": 16.4127 - }, - { - "l": "75.0", - "x": 1.8398, - "y": 16.4014 - }, - { - "l": "75.0", - "x": 1.859, - "y": 16.3905 - }, - { - "l": "75.0", - "x": 1.8782, - "y": 16.3801 - }, - { - "l": "75.0", - "x": 1.8973, - "y": 16.3701 - }, - { - "l": "75.0", - "x": 1.9165, - "y": 16.3606 - }, - { - "l": "75.0", - "x": 1.9357, - "y": 16.3523 - }, - { - "l": "75.0", - "x": 1.9548, - "y": 16.344 - }, - { - "l": "75.0", - "x": 1.974, - "y": 16.3357 - }, - { - "l": "75.0", - "x": 1.9932, - "y": 16.3274 - }, - { - "l": "75.0", - "x": 2.0, - "y": 16.3245 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 0.0383, - "y": 15.2528 - }, - { - "l": "91.0", - "x": 0.0575, - "y": 15.8115 - }, - { - "l": "91.0", - "x": 0.0767, - "y": 16.3379 - }, - { - "l": "91.0", - "x": 0.0958, - "y": 16.7797 - }, - { - "l": "91.0", - "x": 0.115, - "y": 17.1398 - }, - { - "l": "91.0", - "x": 0.1342, - "y": 17.4394 - }, - { - "l": "91.0", - "x": 0.1533, - "y": 17.69 - }, - { - "l": "91.0", - "x": 0.1725, - "y": 17.9039 - }, - { - "l": "91.0", - "x": 0.1916, - "y": 18.0866 - }, - { - "l": "91.0", - "x": 0.2108, - "y": 18.2422 - }, - { - "l": "91.0", - "x": 0.23, - "y": 18.3762 - }, - { - "l": "91.0", - "x": 0.2491, - "y": 18.4917 - }, - { - "l": "91.0", - "x": 0.2683, - "y": 18.5913 - }, - { - "l": "91.0", - "x": 0.2875, - "y": 18.6779 - }, - { - "l": "91.0", - "x": 0.3066, - "y": 18.7528 - }, - { - "l": "91.0", - "x": 0.3258, - "y": 18.8173 - }, - { - "l": "91.0", - "x": 0.345, - "y": 18.874 - }, - { - "l": "91.0", - "x": 0.3641, - "y": 18.9234 - }, - { - "l": "91.0", - "x": 0.3833, - "y": 18.9653 - }, - { - "l": "91.0", - "x": 0.4025, - "y": 19.0002 - }, - { - "l": "91.0", - "x": 0.4216, - "y": 19.029 - }, - { - "l": "91.0", - "x": 0.4408, - "y": 19.0528 - }, - { - "l": "91.0", - "x": 0.46, - "y": 19.0712 - }, - { - "l": "91.0", - "x": 0.4791, - "y": 19.0844 - }, - { - "l": "91.0", - "x": 0.4983, - "y": 19.0927 - }, - { - "l": "91.0", - "x": 0.5175, - "y": 19.0966 - }, - { - "l": "91.0", - "x": 0.5366, - "y": 19.0963 - }, - { - "l": "91.0", - "x": 0.5558, - "y": 19.092 - }, - { - "l": "91.0", - "x": 0.5749, - "y": 19.0841 - }, - { - "l": "91.0", - "x": 0.5941, - "y": 19.0728 - }, - { - "l": "91.0", - "x": 0.6133, - "y": 19.0586 - }, - { - "l": "91.0", - "x": 0.6324, - "y": 19.0414 - }, - { - "l": "91.0", - "x": 0.6516, - "y": 19.0216 - }, - { - "l": "91.0", - "x": 0.6708, - "y": 18.9993 - }, - { - "l": "91.0", - "x": 0.6899, - "y": 18.9749 - }, - { - "l": "91.0", - "x": 0.7091, - "y": 18.9484 - }, - { - "l": "91.0", - "x": 0.7283, - "y": 18.9202 - }, - { - "l": "91.0", - "x": 0.7474, - "y": 18.8904 - }, - { - "l": "91.0", - "x": 0.7666, - "y": 18.8594 - }, - { - "l": "91.0", - "x": 0.7858, - "y": 18.8272 - }, - { - "l": "91.0", - "x": 0.8049, - "y": 18.794 - }, - { - "l": "91.0", - "x": 0.8241, - "y": 18.7601 - }, - { - "l": "91.0", - "x": 0.8433, - "y": 18.7258 - }, - { - "l": "91.0", - "x": 0.8624, - "y": 18.6911 - }, - { - "l": "91.0", - "x": 0.8816, - "y": 18.6561 - }, - { - "l": "91.0", - "x": 0.9008, - "y": 18.621 - }, - { - "l": "91.0", - "x": 0.9199, - "y": 18.5857 - }, - { - "l": "91.0", - "x": 0.9391, - "y": 18.5507 - }, - { - "l": "91.0", - "x": 0.9582, - "y": 18.5157 - }, - { - "l": "91.0", - "x": 0.9774, - "y": 18.4809 - }, - { - "l": "91.0", - "x": 0.9966, - "y": 18.4464 - }, - { - "l": "91.0", - "x": 1.0157, - "y": 18.4122 - }, - { - "l": "91.0", - "x": 1.0349, - "y": 18.3784 - }, - { - "l": "91.0", - "x": 1.0541, - "y": 18.3449 - }, - { - "l": "91.0", - "x": 1.0732, - "y": 18.3119 - }, - { - "l": "91.0", - "x": 1.0924, - "y": 18.2793 - }, - { - "l": "91.0", - "x": 1.1116, - "y": 18.2472 - }, - { - "l": "91.0", - "x": 1.1307, - "y": 18.2156 - }, - { - "l": "91.0", - "x": 1.1499, - "y": 18.1845 - }, - { - "l": "91.0", - "x": 1.1691, - "y": 18.1539 - }, - { - "l": "91.0", - "x": 1.1882, - "y": 18.1238 - }, - { - "l": "91.0", - "x": 1.2074, - "y": 18.0942 - }, - { - "l": "91.0", - "x": 1.2266, - "y": 18.0652 - }, - { - "l": "91.0", - "x": 1.2457, - "y": 18.0367 - }, - { - "l": "91.0", - "x": 1.2649, - "y": 18.0087 - }, - { - "l": "91.0", - "x": 1.2841, - "y": 17.9814 - }, - { - "l": "91.0", - "x": 1.3032, - "y": 17.9545 - }, - { - "l": "91.0", - "x": 1.3224, - "y": 17.9283 - }, - { - "l": "91.0", - "x": 1.3415, - "y": 17.9025 - }, - { - "l": "91.0", - "x": 1.3607, - "y": 17.8773 - }, - { - "l": "91.0", - "x": 1.3799, - "y": 17.8526 - }, - { - "l": "91.0", - "x": 1.399, - "y": 17.8285 - }, - { - "l": "91.0", - "x": 1.4182, - "y": 17.8049 - }, - { - "l": "91.0", - "x": 1.4374, - "y": 17.7819 - }, - { - "l": "91.0", - "x": 1.4565, - "y": 17.7593 - }, - { - "l": "91.0", - "x": 1.4757, - "y": 17.7373 - }, - { - "l": "91.0", - "x": 1.4949, - "y": 17.7158 - }, - { - "l": "91.0", - "x": 1.514, - "y": 17.6949 - }, - { - "l": "91.0", - "x": 1.5332, - "y": 17.6744 - }, - { - "l": "91.0", - "x": 1.5524, - "y": 17.6545 - }, - { - "l": "91.0", - "x": 1.5715, - "y": 17.6352 - }, - { - "l": "91.0", - "x": 1.5907, - "y": 17.6163 - }, - { - "l": "91.0", - "x": 1.6099, - "y": 17.598 - }, - { - "l": "91.0", - "x": 1.629, - "y": 17.5801 - }, - { - "l": "91.0", - "x": 1.6482, - "y": 17.5628 - }, - { - "l": "91.0", - "x": 1.6674, - "y": 17.546 - }, - { - "l": "91.0", - "x": 1.6865, - "y": 17.5297 - }, - { - "l": "91.0", - "x": 1.7057, - "y": 17.5139 - }, - { - "l": "91.0", - "x": 1.7248, - "y": 17.4986 - }, - { - "l": "91.0", - "x": 1.744, - "y": 17.4838 - }, - { - "l": "91.0", - "x": 1.7632, - "y": 17.4695 - }, - { - "l": "91.0", - "x": 1.7823, - "y": 17.4558 - }, - { - "l": "91.0", - "x": 1.8015, - "y": 17.4426 - }, - { - "l": "91.0", - "x": 1.8207, - "y": 17.4299 - }, - { - "l": "91.0", - "x": 1.8398, - "y": 17.4176 - }, - { - "l": "91.0", - "x": 1.859, - "y": 17.4059 - }, - { - "l": "91.0", - "x": 1.8782, - "y": 17.3947 - }, - { - "l": "91.0", - "x": 1.8973, - "y": 17.3839 - }, - { - "l": "91.0", - "x": 1.9165, - "y": 17.3737 - }, - { - "l": "91.0", - "x": 1.9357, - "y": 17.3647 - }, - { - "l": "91.0", - "x": 1.9548, - "y": 17.3558 - }, - { - "l": "91.0", - "x": 1.974, - "y": 17.3469 - }, - { - "l": "91.0", - "x": 1.9932, - "y": 17.3379 - }, - { - "l": "91.0", - "x": 2.0, - "y": 17.3347 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 0.0383, - "y": 16.1958 - }, - { - "l": "98.0", - "x": 0.0575, - "y": 16.7925 - }, - { - "l": "98.0", - "x": 0.0767, - "y": 17.3542 - }, - { - "l": "98.0", - "x": 0.0958, - "y": 17.8257 - }, - { - "l": "98.0", - "x": 0.115, - "y": 18.2102 - }, - { - "l": "98.0", - "x": 0.1342, - "y": 18.5303 - }, - { - "l": "98.0", - "x": 0.1533, - "y": 18.7981 - }, - { - "l": "98.0", - "x": 0.1725, - "y": 19.0268 - }, - { - "l": "98.0", - "x": 0.1916, - "y": 19.2225 - }, - { - "l": "98.0", - "x": 0.2108, - "y": 19.3891 - }, - { - "l": "98.0", - "x": 0.23, - "y": 19.5326 - }, - { - "l": "98.0", - "x": 0.2491, - "y": 19.6565 - }, - { - "l": "98.0", - "x": 0.2683, - "y": 19.7633 - }, - { - "l": "98.0", - "x": 0.2875, - "y": 19.8562 - }, - { - "l": "98.0", - "x": 0.3066, - "y": 19.9367 - }, - { - "l": "98.0", - "x": 0.3258, - "y": 20.0062 - }, - { - "l": "98.0", - "x": 0.345, - "y": 20.0674 - }, - { - "l": "98.0", - "x": 0.3641, - "y": 20.1207 - }, - { - "l": "98.0", - "x": 0.3833, - "y": 20.1659 - }, - { - "l": "98.0", - "x": 0.4025, - "y": 20.2038 - }, - { - "l": "98.0", - "x": 0.4216, - "y": 20.2351 - }, - { - "l": "98.0", - "x": 0.4408, - "y": 20.261 - }, - { - "l": "98.0", - "x": 0.46, - "y": 20.2811 - }, - { - "l": "98.0", - "x": 0.4791, - "y": 20.2957 - }, - { - "l": "98.0", - "x": 0.4983, - "y": 20.3051 - }, - { - "l": "98.0", - "x": 0.5175, - "y": 20.3097 - }, - { - "l": "98.0", - "x": 0.5366, - "y": 20.3098 - }, - { - "l": "98.0", - "x": 0.5558, - "y": 20.3057 - }, - { - "l": "98.0", - "x": 0.5749, - "y": 20.2977 - }, - { - "l": "98.0", - "x": 0.5941, - "y": 20.2862 - }, - { - "l": "98.0", - "x": 0.6133, - "y": 20.2714 - }, - { - "l": "98.0", - "x": 0.6324, - "y": 20.2536 - }, - { - "l": "98.0", - "x": 0.6516, - "y": 20.2329 - }, - { - "l": "98.0", - "x": 0.6708, - "y": 20.2096 - }, - { - "l": "98.0", - "x": 0.6899, - "y": 20.1839 - }, - { - "l": "98.0", - "x": 0.7091, - "y": 20.1561 - }, - { - "l": "98.0", - "x": 0.7283, - "y": 20.1264 - }, - { - "l": "98.0", - "x": 0.7474, - "y": 20.095 - }, - { - "l": "98.0", - "x": 0.7666, - "y": 20.0623 - }, - { - "l": "98.0", - "x": 0.7858, - "y": 20.0283 - }, - { - "l": "98.0", - "x": 0.8049, - "y": 19.9933 - }, - { - "l": "98.0", - "x": 0.8241, - "y": 19.9575 - }, - { - "l": "98.0", - "x": 0.8433, - "y": 19.9213 - }, - { - "l": "98.0", - "x": 0.8624, - "y": 19.8847 - }, - { - "l": "98.0", - "x": 0.8816, - "y": 19.8477 - }, - { - "l": "98.0", - "x": 0.9008, - "y": 19.8105 - }, - { - "l": "98.0", - "x": 0.9199, - "y": 19.7733 - }, - { - "l": "98.0", - "x": 0.9391, - "y": 19.7362 - }, - { - "l": "98.0", - "x": 0.9582, - "y": 19.6993 - }, - { - "l": "98.0", - "x": 0.9774, - "y": 19.6624 - }, - { - "l": "98.0", - "x": 0.9966, - "y": 19.6258 - }, - { - "l": "98.0", - "x": 1.0157, - "y": 19.5897 - }, - { - "l": "98.0", - "x": 1.0349, - "y": 19.5539 - }, - { - "l": "98.0", - "x": 1.0541, - "y": 19.5184 - }, - { - "l": "98.0", - "x": 1.0732, - "y": 19.4834 - }, - { - "l": "98.0", - "x": 1.0924, - "y": 19.4489 - }, - { - "l": "98.0", - "x": 1.1116, - "y": 19.415 - }, - { - "l": "98.0", - "x": 1.1307, - "y": 19.3815 - }, - { - "l": "98.0", - "x": 1.1499, - "y": 19.3485 - }, - { - "l": "98.0", - "x": 1.1691, - "y": 19.3161 - }, - { - "l": "98.0", - "x": 1.1882, - "y": 19.2842 - }, - { - "l": "98.0", - "x": 1.2074, - "y": 19.2529 - }, - { - "l": "98.0", - "x": 1.2266, - "y": 19.2221 - }, - { - "l": "98.0", - "x": 1.2457, - "y": 19.1919 - }, - { - "l": "98.0", - "x": 1.2649, - "y": 19.1624 - }, - { - "l": "98.0", - "x": 1.2841, - "y": 19.1334 - }, - { - "l": "98.0", - "x": 1.3032, - "y": 19.105 - }, - { - "l": "98.0", - "x": 1.3224, - "y": 19.0772 - }, - { - "l": "98.0", - "x": 1.3415, - "y": 19.0499 - }, - { - "l": "98.0", - "x": 1.3607, - "y": 19.0232 - }, - { - "l": "98.0", - "x": 1.3799, - "y": 18.9971 - }, - { - "l": "98.0", - "x": 1.399, - "y": 18.9715 - }, - { - "l": "98.0", - "x": 1.4182, - "y": 18.9465 - }, - { - "l": "98.0", - "x": 1.4374, - "y": 18.9221 - }, - { - "l": "98.0", - "x": 1.4565, - "y": 18.8982 - }, - { - "l": "98.0", - "x": 1.4757, - "y": 18.8749 - }, - { - "l": "98.0", - "x": 1.4949, - "y": 18.8521 - }, - { - "l": "98.0", - "x": 1.514, - "y": 18.8299 - }, - { - "l": "98.0", - "x": 1.5332, - "y": 18.8083 - }, - { - "l": "98.0", - "x": 1.5524, - "y": 18.7872 - }, - { - "l": "98.0", - "x": 1.5715, - "y": 18.7666 - }, - { - "l": "98.0", - "x": 1.5907, - "y": 18.7467 - }, - { - "l": "98.0", - "x": 1.6099, - "y": 18.7273 - }, - { - "l": "98.0", - "x": 1.629, - "y": 18.7084 - }, - { - "l": "98.0", - "x": 1.6482, - "y": 18.6901 - }, - { - "l": "98.0", - "x": 1.6674, - "y": 18.6724 - }, - { - "l": "98.0", - "x": 1.6865, - "y": 18.6551 - }, - { - "l": "98.0", - "x": 1.7057, - "y": 18.6383 - }, - { - "l": "98.0", - "x": 1.7248, - "y": 18.6221 - }, - { - "l": "98.0", - "x": 1.744, - "y": 18.6064 - }, - { - "l": "98.0", - "x": 1.7632, - "y": 18.5913 - }, - { - "l": "98.0", - "x": 1.7823, - "y": 18.5768 - }, - { - "l": "98.0", - "x": 1.8015, - "y": 18.5628 - }, - { - "l": "98.0", - "x": 1.8207, - "y": 18.5494 - }, - { - "l": "98.0", - "x": 1.8398, - "y": 18.5365 - }, - { - "l": "98.0", - "x": 1.859, - "y": 18.524 - }, - { - "l": "98.0", - "x": 1.8782, - "y": 18.5121 - }, - { - "l": "98.0", - "x": 1.8973, - "y": 18.5007 - }, - { - "l": "98.0", - "x": 1.9165, - "y": 18.4899 - }, - { - "l": "98.0", - "x": 1.9357, - "y": 18.4804 - }, - { - "l": "98.0", - "x": 1.9548, - "y": 18.471 - }, - { - "l": "98.0", - "x": 1.974, - "y": 18.4616 - }, - { - "l": "98.0", - "x": 1.9932, - "y": 18.4521 - }, - { - "l": "98.0", - "x": 2.0, - "y": 18.4488 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 0.0383, - "y": 17.1668 - }, - { - "l": "99.6", - "x": 0.0575, - "y": 17.8074 - }, - { - "l": "99.6", - "x": 0.0767, - "y": 18.4098 - }, - { - "l": "99.6", - "x": 0.0958, - "y": 18.9157 - }, - { - "l": "99.6", - "x": 0.115, - "y": 19.3287 - }, - { - "l": "99.6", - "x": 0.1342, - "y": 19.673 - }, - { - "l": "99.6", - "x": 0.1533, - "y": 19.9613 - }, - { - "l": "99.6", - "x": 0.1725, - "y": 20.208 - }, - { - "l": "99.6", - "x": 0.1916, - "y": 20.4194 - }, - { - "l": "99.6", - "x": 0.2108, - "y": 20.5995 - }, - { - "l": "99.6", - "x": 0.23, - "y": 20.7551 - }, - { - "l": "99.6", - "x": 0.2491, - "y": 20.8896 - }, - { - "l": "99.6", - "x": 0.2683, - "y": 21.0055 - }, - { - "l": "99.6", - "x": 0.2875, - "y": 21.1068 - }, - { - "l": "99.6", - "x": 0.3066, - "y": 21.1949 - }, - { - "l": "99.6", - "x": 0.3258, - "y": 21.2712 - }, - { - "l": "99.6", - "x": 0.345, - "y": 21.3386 - }, - { - "l": "99.6", - "x": 0.3641, - "y": 21.3974 - }, - { - "l": "99.6", - "x": 0.3833, - "y": 21.4476 - }, - { - "l": "99.6", - "x": 0.4025, - "y": 21.4898 - }, - { - "l": "99.6", - "x": 0.4216, - "y": 21.525 - }, - { - "l": "99.6", - "x": 0.4408, - "y": 21.5543 - }, - { - "l": "99.6", - "x": 0.46, - "y": 21.5774 - }, - { - "l": "99.6", - "x": 0.4791, - "y": 21.5945 - }, - { - "l": "99.6", - "x": 0.4983, - "y": 21.6061 - }, - { - "l": "99.6", - "x": 0.5175, - "y": 21.6125 - }, - { - "l": "99.6", - "x": 0.5366, - "y": 21.6141 - }, - { - "l": "99.6", - "x": 0.5558, - "y": 21.6112 - }, - { - "l": "99.6", - "x": 0.5749, - "y": 21.604 - }, - { - "l": "99.6", - "x": 0.5941, - "y": 21.5931 - }, - { - "l": "99.6", - "x": 0.6133, - "y": 21.5788 - }, - { - "l": "99.6", - "x": 0.6324, - "y": 21.5611 - }, - { - "l": "99.6", - "x": 0.6516, - "y": 21.5403 - }, - { - "l": "99.6", - "x": 0.6708, - "y": 21.5166 - }, - { - "l": "99.6", - "x": 0.6899, - "y": 21.4905 - }, - { - "l": "99.6", - "x": 0.7091, - "y": 21.462 - }, - { - "l": "99.6", - "x": 0.7283, - "y": 21.4314 - }, - { - "l": "99.6", - "x": 0.7474, - "y": 21.399 - }, - { - "l": "99.6", - "x": 0.7666, - "y": 21.3651 - }, - { - "l": "99.6", - "x": 0.7858, - "y": 21.33 - }, - { - "l": "99.6", - "x": 0.8049, - "y": 21.2937 - }, - { - "l": "99.6", - "x": 0.8241, - "y": 21.2565 - }, - { - "l": "99.6", - "x": 0.8433, - "y": 21.2188 - }, - { - "l": "99.6", - "x": 0.8624, - "y": 21.1807 - }, - { - "l": "99.6", - "x": 0.8816, - "y": 21.1423 - }, - { - "l": "99.6", - "x": 0.9008, - "y": 21.1036 - }, - { - "l": "99.6", - "x": 0.9199, - "y": 21.0648 - }, - { - "l": "99.6", - "x": 0.9391, - "y": 21.0261 - }, - { - "l": "99.6", - "x": 0.9582, - "y": 20.9875 - }, - { - "l": "99.6", - "x": 0.9774, - "y": 20.949 - }, - { - "l": "99.6", - "x": 0.9966, - "y": 20.9108 - }, - { - "l": "99.6", - "x": 1.0157, - "y": 20.8729 - }, - { - "l": "99.6", - "x": 1.0349, - "y": 20.8355 - }, - { - "l": "99.6", - "x": 1.0541, - "y": 20.7985 - }, - { - "l": "99.6", - "x": 1.0732, - "y": 20.7619 - }, - { - "l": "99.6", - "x": 1.0924, - "y": 20.7258 - }, - { - "l": "99.6", - "x": 1.1116, - "y": 20.6902 - }, - { - "l": "99.6", - "x": 1.1307, - "y": 20.6552 - }, - { - "l": "99.6", - "x": 1.1499, - "y": 20.6206 - }, - { - "l": "99.6", - "x": 1.1691, - "y": 20.5867 - }, - { - "l": "99.6", - "x": 1.1882, - "y": 20.5533 - }, - { - "l": "99.6", - "x": 1.2074, - "y": 20.5206 - }, - { - "l": "99.6", - "x": 1.2266, - "y": 20.4884 - }, - { - "l": "99.6", - "x": 1.2457, - "y": 20.4568 - }, - { - "l": "99.6", - "x": 1.2649, - "y": 20.4259 - }, - { - "l": "99.6", - "x": 1.2841, - "y": 20.3956 - }, - { - "l": "99.6", - "x": 1.3032, - "y": 20.3659 - }, - { - "l": "99.6", - "x": 1.3224, - "y": 20.3368 - }, - { - "l": "99.6", - "x": 1.3415, - "y": 20.3083 - }, - { - "l": "99.6", - "x": 1.3607, - "y": 20.2803 - }, - { - "l": "99.6", - "x": 1.3799, - "y": 20.253 - }, - { - "l": "99.6", - "x": 1.399, - "y": 20.2262 - }, - { - "l": "99.6", - "x": 1.4182, - "y": 20.2001 - }, - { - "l": "99.6", - "x": 1.4374, - "y": 20.1745 - }, - { - "l": "99.6", - "x": 1.4565, - "y": 20.1496 - }, - { - "l": "99.6", - "x": 1.4757, - "y": 20.1252 - }, - { - "l": "99.6", - "x": 1.4949, - "y": 20.1014 - }, - { - "l": "99.6", - "x": 1.514, - "y": 20.0782 - }, - { - "l": "99.6", - "x": 1.5332, - "y": 20.0555 - }, - { - "l": "99.6", - "x": 1.5524, - "y": 20.0335 - }, - { - "l": "99.6", - "x": 1.5715, - "y": 20.012 - }, - { - "l": "99.6", - "x": 1.5907, - "y": 19.9912 - }, - { - "l": "99.6", - "x": 1.6099, - "y": 19.971 - }, - { - "l": "99.6", - "x": 1.629, - "y": 19.9513 - }, - { - "l": "99.6", - "x": 1.6482, - "y": 19.9323 - }, - { - "l": "99.6", - "x": 1.6674, - "y": 19.9138 - }, - { - "l": "99.6", - "x": 1.6865, - "y": 19.8958 - }, - { - "l": "99.6", - "x": 1.7057, - "y": 19.8783 - }, - { - "l": "99.6", - "x": 1.7248, - "y": 19.8614 - }, - { - "l": "99.6", - "x": 1.744, - "y": 19.8451 - }, - { - "l": "99.6", - "x": 1.7632, - "y": 19.8294 - }, - { - "l": "99.6", - "x": 1.7823, - "y": 19.8143 - }, - { - "l": "99.6", - "x": 1.8015, - "y": 19.7998 - }, - { - "l": "99.6", - "x": 1.8207, - "y": 19.7858 - }, - { - "l": "99.6", - "x": 1.8398, - "y": 19.7724 - }, - { - "l": "99.6", - "x": 1.859, - "y": 19.7595 - }, - { - "l": "99.6", - "x": 1.8782, - "y": 19.7471 - }, - { - "l": "99.6", - "x": 1.8973, - "y": 19.7353 - }, - { - "l": "99.6", - "x": 1.9165, - "y": 19.7241 - }, - { - "l": "99.6", - "x": 1.9357, - "y": 19.7144 - }, - { - "l": "99.6", - "x": 1.9548, - "y": 19.7047 - }, - { - "l": "99.6", - "x": 1.974, - "y": 19.695 - }, - { - "l": "99.6", - "x": 1.9932, - "y": 19.6853 - }, - { - "l": "99.6", - "x": 2.0, - "y": 19.6819 - } - ] - } - ] - } - } - }, - { - "uk_who_child": { - "male": null, - "female": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 2.0, - "y": 12.6896 - }, - { - "l": "0.4", - "x": 2.0192, - "y": 12.6843 - }, - { - "l": "0.4", - "x": 2.1025, - "y": 12.6615 - }, - { - "l": "0.4", - "x": 2.1858, - "y": 12.6398 - }, - { - "l": "0.4", - "x": 2.2692, - "y": 12.6189 - }, - { - "l": "0.4", - "x": 2.3525, - "y": 12.5986 - }, - { - "l": "0.4", - "x": 2.4358, - "y": 12.5783 - }, - { - "l": "0.4", - "x": 2.5192, - "y": 12.558 - }, - { - "l": "0.4", - "x": 2.6025, - "y": 12.5371 - }, - { - "l": "0.4", - "x": 2.6858, - "y": 12.5158 - }, - { - "l": "0.4", - "x": 2.7692, - "y": 12.4938 - }, - { - "l": "0.4", - "x": 2.8525, - "y": 12.4713 - }, - { - "l": "0.4", - "x": 2.9358, - "y": 12.4484 - }, - { - "l": "0.4", - "x": 3.0192, - "y": 12.4247 - }, - { - "l": "0.4", - "x": 3.1025, - "y": 12.4007 - }, - { - "l": "0.4", - "x": 3.1858, - "y": 12.3762 - }, - { - "l": "0.4", - "x": 3.2692, - "y": 12.3512 - }, - { - "l": "0.4", - "x": 3.3525, - "y": 12.3258 - }, - { - "l": "0.4", - "x": 3.4358, - "y": 12.3003 - }, - { - "l": "0.4", - "x": 3.5192, - "y": 12.2747 - }, - { - "l": "0.4", - "x": 3.6025, - "y": 12.249 - }, - { - "l": "0.4", - "x": 3.6858, - "y": 12.224 - }, - { - "l": "0.4", - "x": 3.7692, - "y": 12.1997 - }, - { - "l": "0.4", - "x": 3.8525, - "y": 12.1763 - }, - { - "l": "0.4", - "x": 3.9358, - "y": 12.1542 - }, - { - "l": "0.4", - "x": 4.0, - "y": 12.1379 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 2.0, - "y": 13.3493 - }, - { - "l": "2.0", - "x": 2.0192, - "y": 13.3437 - }, - { - "l": "2.0", - "x": 2.1025, - "y": 13.3196 - }, - { - "l": "2.0", - "x": 2.1858, - "y": 13.2965 - }, - { - "l": "2.0", - "x": 2.2692, - "y": 13.2744 - }, - { - "l": "2.0", - "x": 2.3525, - "y": 13.2528 - }, - { - "l": "2.0", - "x": 2.4358, - "y": 13.2315 - }, - { - "l": "2.0", - "x": 2.5192, - "y": 13.2102 - }, - { - "l": "2.0", - "x": 2.6025, - "y": 13.1886 - }, - { - "l": "2.0", - "x": 2.6858, - "y": 13.1667 - }, - { - "l": "2.0", - "x": 2.7692, - "y": 13.1445 - }, - { - "l": "2.0", - "x": 2.8525, - "y": 13.1221 - }, - { - "l": "2.0", - "x": 2.9358, - "y": 13.0996 - }, - { - "l": "2.0", - "x": 3.0192, - "y": 13.0768 - }, - { - "l": "2.0", - "x": 3.1025, - "y": 13.0541 - }, - { - "l": "2.0", - "x": 3.1858, - "y": 13.0312 - }, - { - "l": "2.0", - "x": 3.2692, - "y": 13.0081 - }, - { - "l": "2.0", - "x": 3.3525, - "y": 12.9849 - }, - { - "l": "2.0", - "x": 3.4358, - "y": 12.9618 - }, - { - "l": "2.0", - "x": 3.5192, - "y": 12.9387 - }, - { - "l": "2.0", - "x": 3.6025, - "y": 12.9157 - }, - { - "l": "2.0", - "x": 3.6858, - "y": 12.8934 - }, - { - "l": "2.0", - "x": 3.7692, - "y": 12.8719 - }, - { - "l": "2.0", - "x": 3.8525, - "y": 12.8512 - }, - { - "l": "2.0", - "x": 3.9358, - "y": 12.8319 - }, - { - "l": "2.0", - "x": 4.0, - "y": 12.8177 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 2.0, - "y": 14.0644 - }, - { - "l": "9.0", - "x": 2.0192, - "y": 14.0585 - }, - { - "l": "9.0", - "x": 2.1025, - "y": 14.0329 - }, - { - "l": "9.0", - "x": 2.1858, - "y": 14.0084 - }, - { - "l": "9.0", - "x": 2.2692, - "y": 13.9848 - }, - { - "l": "9.0", - "x": 2.3525, - "y": 13.9619 - }, - { - "l": "9.0", - "x": 2.4358, - "y": 13.9394 - }, - { - "l": "9.0", - "x": 2.5192, - "y": 13.9171 - }, - { - "l": "9.0", - "x": 2.6025, - "y": 13.8947 - }, - { - "l": "9.0", - "x": 2.6858, - "y": 13.8723 - }, - { - "l": "9.0", - "x": 2.7692, - "y": 13.85 - }, - { - "l": "9.0", - "x": 2.8525, - "y": 13.8278 - }, - { - "l": "9.0", - "x": 2.9358, - "y": 13.806 - }, - { - "l": "9.0", - "x": 3.0192, - "y": 13.7843 - }, - { - "l": "9.0", - "x": 3.1025, - "y": 13.7631 - }, - { - "l": "9.0", - "x": 3.1858, - "y": 13.7422 - }, - { - "l": "9.0", - "x": 3.2692, - "y": 13.7215 - }, - { - "l": "9.0", - "x": 3.3525, - "y": 13.7009 - }, - { - "l": "9.0", - "x": 3.4358, - "y": 13.6807 - }, - { - "l": "9.0", - "x": 3.5192, - "y": 13.6607 - }, - { - "l": "9.0", - "x": 3.6025, - "y": 13.6411 - }, - { - "l": "9.0", - "x": 3.6858, - "y": 13.6221 - }, - { - "l": "9.0", - "x": 3.7692, - "y": 13.604 - }, - { - "l": "9.0", - "x": 3.8525, - "y": 13.5867 - }, - { - "l": "9.0", - "x": 3.9358, - "y": 13.5708 - }, - { - "l": "9.0", - "x": 4.0, - "y": 13.5592 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 2.0, - "y": 14.8415 - }, - { - "l": "25.0", - "x": 2.0192, - "y": 14.8352 - }, - { - "l": "25.0", - "x": 2.1025, - "y": 14.808 - }, - { - "l": "25.0", - "x": 2.1858, - "y": 14.7818 - }, - { - "l": "25.0", - "x": 2.2692, - "y": 14.7567 - }, - { - "l": "25.0", - "x": 2.3525, - "y": 14.7324 - }, - { - "l": "25.0", - "x": 2.4358, - "y": 14.7086 - }, - { - "l": "25.0", - "x": 2.5192, - "y": 14.6852 - }, - { - "l": "25.0", - "x": 2.6025, - "y": 14.662 - }, - { - "l": "25.0", - "x": 2.6858, - "y": 14.6391 - }, - { - "l": "25.0", - "x": 2.7692, - "y": 14.6167 - }, - { - "l": "25.0", - "x": 2.8525, - "y": 14.5949 - }, - { - "l": "25.0", - "x": 2.9358, - "y": 14.5739 - }, - { - "l": "25.0", - "x": 3.0192, - "y": 14.5537 - }, - { - "l": "25.0", - "x": 3.1025, - "y": 14.5345 - }, - { - "l": "25.0", - "x": 3.1858, - "y": 14.516 - }, - { - "l": "25.0", - "x": 3.2692, - "y": 14.4982 - }, - { - "l": "25.0", - "x": 3.3525, - "y": 14.4809 - }, - { - "l": "25.0", - "x": 3.4358, - "y": 14.4643 - }, - { - "l": "25.0", - "x": 3.5192, - "y": 14.4481 - }, - { - "l": "25.0", - "x": 3.6025, - "y": 14.4324 - }, - { - "l": "25.0", - "x": 3.6858, - "y": 14.4175 - }, - { - "l": "25.0", - "x": 3.7692, - "y": 14.4036 - }, - { - "l": "25.0", - "x": 3.8525, - "y": 14.3905 - }, - { - "l": "25.0", - "x": 3.9358, - "y": 14.3787 - }, - { - "l": "25.0", - "x": 4.0, - "y": 14.3703 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 2.0, - "y": 15.6881 - }, - { - "l": "50.0", - "x": 2.0192, - "y": 15.6814 - }, - { - "l": "50.0", - "x": 2.1025, - "y": 15.6524 - }, - { - "l": "50.0", - "x": 2.1858, - "y": 15.6245 - }, - { - "l": "50.0", - "x": 2.2692, - "y": 15.5976 - }, - { - "l": "50.0", - "x": 2.3525, - "y": 15.5718 - }, - { - "l": "50.0", - "x": 2.4358, - "y": 15.5466 - }, - { - "l": "50.0", - "x": 2.5192, - "y": 15.522 - }, - { - "l": "50.0", - "x": 2.6025, - "y": 15.4979 - }, - { - "l": "50.0", - "x": 2.6858, - "y": 15.4745 - }, - { - "l": "50.0", - "x": 2.7692, - "y": 15.4521 - }, - { - "l": "50.0", - "x": 2.8525, - "y": 15.4308 - }, - { - "l": "50.0", - "x": 2.9358, - "y": 15.4111 - }, - { - "l": "50.0", - "x": 3.0192, - "y": 15.3927 - }, - { - "l": "50.0", - "x": 3.1025, - "y": 15.3758 - }, - { - "l": "50.0", - "x": 3.1858, - "y": 15.3604 - }, - { - "l": "50.0", - "x": 3.2692, - "y": 15.3461 - }, - { - "l": "50.0", - "x": 3.3525, - "y": 15.3328 - }, - { - "l": "50.0", - "x": 3.4358, - "y": 15.3205 - }, - { - "l": "50.0", - "x": 3.5192, - "y": 15.309 - }, - { - "l": "50.0", - "x": 3.6025, - "y": 15.2983 - }, - { - "l": "50.0", - "x": 3.6858, - "y": 15.2883 - }, - { - "l": "50.0", - "x": 3.7692, - "y": 15.2794 - }, - { - "l": "50.0", - "x": 3.8525, - "y": 15.2715 - }, - { - "l": "50.0", - "x": 3.9358, - "y": 15.2647 - }, - { - "l": "50.0", - "x": 4.0, - "y": 15.2602 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 2.0, - "y": 16.613 - }, - { - "l": "75.0", - "x": 2.0192, - "y": 16.6059 - }, - { - "l": "75.0", - "x": 2.1025, - "y": 16.5749 - }, - { - "l": "75.0", - "x": 2.1858, - "y": 16.545 - }, - { - "l": "75.0", - "x": 2.2692, - "y": 16.5162 - }, - { - "l": "75.0", - "x": 2.3525, - "y": 16.4887 - }, - { - "l": "75.0", - "x": 2.4358, - "y": 16.4619 - }, - { - "l": "75.0", - "x": 2.5192, - "y": 16.436 - }, - { - "l": "75.0", - "x": 2.6025, - "y": 16.411 - }, - { - "l": "75.0", - "x": 2.6858, - "y": 16.3872 - }, - { - "l": "75.0", - "x": 2.7692, - "y": 16.365 - }, - { - "l": "75.0", - "x": 2.8525, - "y": 16.3445 - }, - { - "l": "75.0", - "x": 2.9358, - "y": 16.3262 - }, - { - "l": "75.0", - "x": 3.0192, - "y": 16.3101 - }, - { - "l": "75.0", - "x": 3.1025, - "y": 16.2962 - }, - { - "l": "75.0", - "x": 3.1858, - "y": 16.2844 - }, - { - "l": "75.0", - "x": 3.2692, - "y": 16.2745 - }, - { - "l": "75.0", - "x": 3.3525, - "y": 16.2661 - }, - { - "l": "75.0", - "x": 3.4358, - "y": 16.2591 - }, - { - "l": "75.0", - "x": 3.5192, - "y": 16.2532 - }, - { - "l": "75.0", - "x": 3.6025, - "y": 16.2484 - }, - { - "l": "75.0", - "x": 3.6858, - "y": 16.2445 - }, - { - "l": "75.0", - "x": 3.7692, - "y": 16.2418 - }, - { - "l": "75.0", - "x": 3.8525, - "y": 16.24 - }, - { - "l": "75.0", - "x": 3.9358, - "y": 16.2395 - }, - { - "l": "75.0", - "x": 4.0, - "y": 16.2396 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 2.0, - "y": 17.6264 - }, - { - "l": "91.0", - "x": 2.0192, - "y": 17.6187 - }, - { - "l": "91.0", - "x": 2.1025, - "y": 17.5856 - }, - { - "l": "91.0", - "x": 2.1858, - "y": 17.5534 - }, - { - "l": "91.0", - "x": 2.2692, - "y": 17.5226 - }, - { - "l": "91.0", - "x": 2.3525, - "y": 17.4931 - }, - { - "l": "91.0", - "x": 2.4358, - "y": 17.4646 - }, - { - "l": "91.0", - "x": 2.5192, - "y": 17.4374 - }, - { - "l": "91.0", - "x": 2.6025, - "y": 17.4115 - }, - { - "l": "91.0", - "x": 2.6858, - "y": 17.3872 - }, - { - "l": "91.0", - "x": 2.7692, - "y": 17.3653 - }, - { - "l": "91.0", - "x": 2.8525, - "y": 17.3459 - }, - { - "l": "91.0", - "x": 2.9358, - "y": 17.3295 - }, - { - "l": "91.0", - "x": 3.0192, - "y": 17.3163 - }, - { - "l": "91.0", - "x": 3.1025, - "y": 17.306 - }, - { - "l": "91.0", - "x": 3.1858, - "y": 17.2987 - }, - { - "l": "91.0", - "x": 3.2692, - "y": 17.2941 - }, - { - "l": "91.0", - "x": 3.3525, - "y": 17.2917 - }, - { - "l": "91.0", - "x": 3.4358, - "y": 17.2911 - }, - { - "l": "91.0", - "x": 3.5192, - "y": 17.2921 - }, - { - "l": "91.0", - "x": 3.6025, - "y": 17.2946 - }, - { - "l": "91.0", - "x": 3.6858, - "y": 17.2979 - }, - { - "l": "91.0", - "x": 3.7692, - "y": 17.3027 - }, - { - "l": "91.0", - "x": 3.8525, - "y": 17.3085 - }, - { - "l": "91.0", - "x": 3.9358, - "y": 17.3155 - }, - { - "l": "91.0", - "x": 4.0, - "y": 17.3214 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 2.0, - "y": 18.7402 - }, - { - "l": "98.0", - "x": 2.0192, - "y": 18.732 - }, - { - "l": "98.0", - "x": 2.1025, - "y": 18.6964 - }, - { - "l": "98.0", - "x": 2.1858, - "y": 18.6618 - }, - { - "l": "98.0", - "x": 2.2692, - "y": 18.6286 - }, - { - "l": "98.0", - "x": 2.3525, - "y": 18.597 - }, - { - "l": "98.0", - "x": 2.4358, - "y": 18.5666 - }, - { - "l": "98.0", - "x": 2.5192, - "y": 18.5379 - }, - { - "l": "98.0", - "x": 2.6025, - "y": 18.511 - }, - { - "l": "98.0", - "x": 2.6858, - "y": 18.4864 - }, - { - "l": "98.0", - "x": 2.7692, - "y": 18.465 - }, - { - "l": "98.0", - "x": 2.8525, - "y": 18.447 - }, - { - "l": "98.0", - "x": 2.9358, - "y": 18.4329 - }, - { - "l": "98.0", - "x": 3.0192, - "y": 18.4233 - }, - { - "l": "98.0", - "x": 3.1025, - "y": 18.4175 - }, - { - "l": "98.0", - "x": 3.1858, - "y": 18.4158 - }, - { - "l": "98.0", - "x": 3.2692, - "y": 18.4176 - }, - { - "l": "98.0", - "x": 3.3525, - "y": 18.4224 - }, - { - "l": "98.0", - "x": 3.4358, - "y": 18.4296 - }, - { - "l": "98.0", - "x": 3.5192, - "y": 18.439 - }, - { - "l": "98.0", - "x": 3.6025, - "y": 18.4503 - }, - { - "l": "98.0", - "x": 3.6858, - "y": 18.4626 - }, - { - "l": "98.0", - "x": 3.7692, - "y": 18.4766 - }, - { - "l": "98.0", - "x": 3.8525, - "y": 18.4916 - }, - { - "l": "98.0", - "x": 3.9358, - "y": 18.5077 - }, - { - "l": "98.0", - "x": 4.0, - "y": 18.5206 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 2.0, - "y": 19.9684 - }, - { - "l": "99.6", - "x": 2.0192, - "y": 19.9596 - }, - { - "l": "99.6", - "x": 2.1025, - "y": 19.9214 - }, - { - "l": "99.6", - "x": 2.1858, - "y": 19.884 - }, - { - "l": "99.6", - "x": 2.2692, - "y": 19.8481 - }, - { - "l": "99.6", - "x": 2.3525, - "y": 19.8141 - }, - { - "l": "99.6", - "x": 2.4358, - "y": 19.7816 - }, - { - "l": "99.6", - "x": 2.5192, - "y": 19.7513 - }, - { - "l": "99.6", - "x": 2.6025, - "y": 19.7235 - }, - { - "l": "99.6", - "x": 2.6858, - "y": 19.6986 - }, - { - "l": "99.6", - "x": 2.7692, - "y": 19.678 - }, - { - "l": "99.6", - "x": 2.8525, - "y": 19.6618 - }, - { - "l": "99.6", - "x": 2.9358, - "y": 19.6507 - }, - { - "l": "99.6", - "x": 3.0192, - "y": 19.6455 - }, - { - "l": "99.6", - "x": 3.1025, - "y": 19.6452 - }, - { - "l": "99.6", - "x": 3.1858, - "y": 19.6503 - }, - { - "l": "99.6", - "x": 3.2692, - "y": 19.6599 - }, - { - "l": "99.6", - "x": 3.3525, - "y": 19.6736 - }, - { - "l": "99.6", - "x": 3.4358, - "y": 19.6903 - }, - { - "l": "99.6", - "x": 3.5192, - "y": 19.7099 - }, - { - "l": "99.6", - "x": 3.6025, - "y": 19.7319 - }, - { - "l": "99.6", - "x": 3.6858, - "y": 19.7551 - }, - { - "l": "99.6", - "x": 3.7692, - "y": 19.7803 - }, - { - "l": "99.6", - "x": 3.8525, - "y": 19.8066 - }, - { - "l": "99.6", - "x": 3.9358, - "y": 19.8338 - }, - { - "l": "99.6", - "x": 4.0, - "y": 19.8553 - } - ] - } - ] - } - } - }, - { - "uk90_child": { - "male": null, - "female": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 4.0, - "y": 12.7386 - }, - { - "l": "0.4", - "x": 4.0833, - "y": 12.7151 - }, - { - "l": "0.4", - "x": 4.1667, - "y": 12.691 - }, - { - "l": "0.4", - "x": 4.25, - "y": 12.6666 - }, - { - "l": "0.4", - "x": 4.3333, - "y": 12.643 - }, - { - "l": "0.4", - "x": 4.4167, - "y": 12.6189 - }, - { - "l": "0.4", - "x": 4.5, - "y": 12.5944 - }, - { - "l": "0.4", - "x": 4.5833, - "y": 12.5708 - }, - { - "l": "0.4", - "x": 4.6667, - "y": 12.5473 - }, - { - "l": "0.4", - "x": 4.75, - "y": 12.5244 - }, - { - "l": "0.4", - "x": 4.8333, - "y": 12.5021 - }, - { - "l": "0.4", - "x": 4.9167, - "y": 12.4805 - }, - { - "l": "0.4", - "x": 5.0, - "y": 12.4603 - }, - { - "l": "0.4", - "x": 5.0833, - "y": 12.4404 - }, - { - "l": "0.4", - "x": 5.1667, - "y": 12.4215 - }, - { - "l": "0.4", - "x": 5.25, - "y": 12.4037 - }, - { - "l": "0.4", - "x": 5.3333, - "y": 12.3876 - }, - { - "l": "0.4", - "x": 5.4167, - "y": 12.371 - }, - { - "l": "0.4", - "x": 5.5, - "y": 12.357 - }, - { - "l": "0.4", - "x": 5.5833, - "y": 12.3435 - }, - { - "l": "0.4", - "x": 5.6667, - "y": 12.3318 - }, - { - "l": "0.4", - "x": 5.75, - "y": 12.3205 - }, - { - "l": "0.4", - "x": 5.8333, - "y": 12.31 - }, - { - "l": "0.4", - "x": 5.9167, - "y": 12.301 - }, - { - "l": "0.4", - "x": 6.0, - "y": 12.2927 - }, - { - "l": "0.4", - "x": 6.0833, - "y": 12.2849 - }, - { - "l": "0.4", - "x": 6.1667, - "y": 12.2801 - }, - { - "l": "0.4", - "x": 6.25, - "y": 12.2738 - }, - { - "l": "0.4", - "x": 6.3333, - "y": 12.2693 - }, - { - "l": "0.4", - "x": 6.4167, - "y": 12.266 - }, - { - "l": "0.4", - "x": 6.5, - "y": 12.264 - }, - { - "l": "0.4", - "x": 6.5833, - "y": 12.2625 - }, - { - "l": "0.4", - "x": 6.6667, - "y": 12.263 - }, - { - "l": "0.4", - "x": 6.75, - "y": 12.2626 - }, - { - "l": "0.4", - "x": 6.8333, - "y": 12.2645 - }, - { - "l": "0.4", - "x": 6.9167, - "y": 12.2668 - }, - { - "l": "0.4", - "x": 7.0, - "y": 12.2688 - }, - { - "l": "0.4", - "x": 7.0833, - "y": 12.2727 - }, - { - "l": "0.4", - "x": 7.1667, - "y": 12.2764 - }, - { - "l": "0.4", - "x": 7.25, - "y": 12.2821 - }, - { - "l": "0.4", - "x": 7.3333, - "y": 12.2869 - }, - { - "l": "0.4", - "x": 7.4167, - "y": 12.2935 - }, - { - "l": "0.4", - "x": 7.5, - "y": 12.3002 - }, - { - "l": "0.4", - "x": 7.5833, - "y": 12.307 - }, - { - "l": "0.4", - "x": 7.6667, - "y": 12.3151 - }, - { - "l": "0.4", - "x": 7.75, - "y": 12.3236 - }, - { - "l": "0.4", - "x": 7.8333, - "y": 12.3335 - }, - { - "l": "0.4", - "x": 7.9167, - "y": 12.3432 - }, - { - "l": "0.4", - "x": 8.0, - "y": 12.3543 - }, - { - "l": "0.4", - "x": 8.0833, - "y": 12.3648 - }, - { - "l": "0.4", - "x": 8.1667, - "y": 12.3769 - }, - { - "l": "0.4", - "x": 8.25, - "y": 12.3893 - }, - { - "l": "0.4", - "x": 8.3333, - "y": 12.4034 - }, - { - "l": "0.4", - "x": 8.4167, - "y": 12.4164 - }, - { - "l": "0.4", - "x": 8.5, - "y": 12.4316 - }, - { - "l": "0.4", - "x": 8.5833, - "y": 12.4467 - }, - { - "l": "0.4", - "x": 8.6667, - "y": 12.4629 - }, - { - "l": "0.4", - "x": 8.75, - "y": 12.4797 - }, - { - "l": "0.4", - "x": 8.8333, - "y": 12.4973 - }, - { - "l": "0.4", - "x": 8.9167, - "y": 12.5152 - }, - { - "l": "0.4", - "x": 9.0, - "y": 12.5347 - }, - { - "l": "0.4", - "x": 9.0833, - "y": 12.5542 - }, - { - "l": "0.4", - "x": 9.1667, - "y": 12.5739 - }, - { - "l": "0.4", - "x": 9.25, - "y": 12.5956 - }, - { - "l": "0.4", - "x": 9.3333, - "y": 12.6171 - }, - { - "l": "0.4", - "x": 9.4167, - "y": 12.6401 - }, - { - "l": "0.4", - "x": 9.5, - "y": 12.663 - }, - { - "l": "0.4", - "x": 9.5833, - "y": 12.6868 - }, - { - "l": "0.4", - "x": 9.6667, - "y": 12.7116 - }, - { - "l": "0.4", - "x": 9.75, - "y": 12.7368 - }, - { - "l": "0.4", - "x": 9.8333, - "y": 12.7627 - }, - { - "l": "0.4", - "x": 9.9167, - "y": 12.7891 - }, - { - "l": "0.4", - "x": 10.0, - "y": 12.8164 - }, - { - "l": "0.4", - "x": 10.0833, - "y": 12.844 - }, - { - "l": "0.4", - "x": 10.1667, - "y": 12.8732 - }, - { - "l": "0.4", - "x": 10.25, - "y": 12.9019 - }, - { - "l": "0.4", - "x": 10.3333, - "y": 12.9314 - }, - { - "l": "0.4", - "x": 10.4167, - "y": 12.9621 - }, - { - "l": "0.4", - "x": 10.5, - "y": 12.9929 - }, - { - "l": "0.4", - "x": 10.5833, - "y": 13.0238 - }, - { - "l": "0.4", - "x": 10.6667, - "y": 13.0565 - }, - { - "l": "0.4", - "x": 10.75, - "y": 13.0893 - }, - { - "l": "0.4", - "x": 10.8333, - "y": 13.1225 - }, - { - "l": "0.4", - "x": 10.9167, - "y": 13.1558 - }, - { - "l": "0.4", - "x": 11.0, - "y": 13.1897 - }, - { - "l": "0.4", - "x": 11.0833, - "y": 13.2251 - }, - { - "l": "0.4", - "x": 11.1667, - "y": 13.2594 - }, - { - "l": "0.4", - "x": 11.25, - "y": 13.2962 - }, - { - "l": "0.4", - "x": 11.3333, - "y": 13.3326 - }, - { - "l": "0.4", - "x": 11.4167, - "y": 13.3681 - }, - { - "l": "0.4", - "x": 11.5, - "y": 13.4056 - }, - { - "l": "0.4", - "x": 11.5833, - "y": 13.4431 - }, - { - "l": "0.4", - "x": 11.6667, - "y": 13.4806 - }, - { - "l": "0.4", - "x": 11.75, - "y": 13.5186 - }, - { - "l": "0.4", - "x": 11.8333, - "y": 13.5572 - }, - { - "l": "0.4", - "x": 11.9167, - "y": 13.5954 - }, - { - "l": "0.4", - "x": 12.0, - "y": 13.6346 - }, - { - "l": "0.4", - "x": 12.0833, - "y": 13.674 - }, - { - "l": "0.4", - "x": 12.1667, - "y": 13.7139 - }, - { - "l": "0.4", - "x": 12.25, - "y": 13.7528 - }, - { - "l": "0.4", - "x": 12.3333, - "y": 13.7931 - }, - { - "l": "0.4", - "x": 12.4167, - "y": 13.8322 - }, - { - "l": "0.4", - "x": 12.5, - "y": 13.8721 - }, - { - "l": "0.4", - "x": 12.5833, - "y": 13.9119 - }, - { - "l": "0.4", - "x": 12.6667, - "y": 13.9523 - }, - { - "l": "0.4", - "x": 12.75, - "y": 13.9924 - }, - { - "l": "0.4", - "x": 12.8333, - "y": 14.032 - }, - { - "l": "0.4", - "x": 12.9167, - "y": 14.0723 - }, - { - "l": "0.4", - "x": 13.0, - "y": 14.1122 - }, - { - "l": "0.4", - "x": 13.0833, - "y": 14.1512 - }, - { - "l": "0.4", - "x": 13.1667, - "y": 14.1921 - }, - { - "l": "0.4", - "x": 13.25, - "y": 14.2309 - }, - { - "l": "0.4", - "x": 13.3333, - "y": 14.2705 - }, - { - "l": "0.4", - "x": 13.4167, - "y": 14.3099 - }, - { - "l": "0.4", - "x": 13.5, - "y": 14.3492 - }, - { - "l": "0.4", - "x": 13.5833, - "y": 14.3881 - }, - { - "l": "0.4", - "x": 13.6667, - "y": 14.4269 - }, - { - "l": "0.4", - "x": 13.75, - "y": 14.465 - }, - { - "l": "0.4", - "x": 13.8333, - "y": 14.5031 - }, - { - "l": "0.4", - "x": 13.9167, - "y": 14.5407 - }, - { - "l": "0.4", - "x": 14.0, - "y": 14.5789 - }, - { - "l": "0.4", - "x": 14.0833, - "y": 14.6168 - }, - { - "l": "0.4", - "x": 14.1667, - "y": 14.6534 - }, - { - "l": "0.4", - "x": 14.25, - "y": 14.6905 - }, - { - "l": "0.4", - "x": 14.3333, - "y": 14.7259 - }, - { - "l": "0.4", - "x": 14.4167, - "y": 14.7628 - }, - { - "l": "0.4", - "x": 14.5, - "y": 14.7985 - }, - { - "l": "0.4", - "x": 14.5833, - "y": 14.8339 - }, - { - "l": "0.4", - "x": 14.6667, - "y": 14.8688 - }, - { - "l": "0.4", - "x": 14.75, - "y": 14.9045 - }, - { - "l": "0.4", - "x": 14.8333, - "y": 14.9379 - }, - { - "l": "0.4", - "x": 14.9167, - "y": 14.9726 - }, - { - "l": "0.4", - "x": 15.0, - "y": 15.0063 - }, - { - "l": "0.4", - "x": 15.0833, - "y": 15.0395 - }, - { - "l": "0.4", - "x": 15.1667, - "y": 15.0724 - }, - { - "l": "0.4", - "x": 15.25, - "y": 15.1052 - }, - { - "l": "0.4", - "x": 15.3333, - "y": 15.1363 - }, - { - "l": "0.4", - "x": 15.4167, - "y": 15.1691 - }, - { - "l": "0.4", - "x": 15.5, - "y": 15.1998 - }, - { - "l": "0.4", - "x": 15.5833, - "y": 15.2307 - }, - { - "l": "0.4", - "x": 15.6667, - "y": 15.2613 - }, - { - "l": "0.4", - "x": 15.75, - "y": 15.2912 - }, - { - "l": "0.4", - "x": 15.8333, - "y": 15.3214 - }, - { - "l": "0.4", - "x": 15.9167, - "y": 15.3507 - }, - { - "l": "0.4", - "x": 16.0, - "y": 15.3794 - }, - { - "l": "0.4", - "x": 16.0833, - "y": 15.4084 - }, - { - "l": "0.4", - "x": 16.1667, - "y": 15.4361 - }, - { - "l": "0.4", - "x": 16.25, - "y": 15.4641 - }, - { - "l": "0.4", - "x": 16.3333, - "y": 15.4917 - }, - { - "l": "0.4", - "x": 16.4167, - "y": 15.5184 - }, - { - "l": "0.4", - "x": 16.5, - "y": 15.5459 - }, - { - "l": "0.4", - "x": 16.5833, - "y": 15.5716 - }, - { - "l": "0.4", - "x": 16.6667, - "y": 15.5971 - }, - { - "l": "0.4", - "x": 16.75, - "y": 15.6229 - }, - { - "l": "0.4", - "x": 16.8333, - "y": 15.6479 - }, - { - "l": "0.4", - "x": 16.9167, - "y": 15.6734 - }, - { - "l": "0.4", - "x": 17.0, - "y": 15.6976 - }, - { - "l": "0.4", - "x": 17.0833, - "y": 15.7219 - }, - { - "l": "0.4", - "x": 17.1667, - "y": 15.7449 - }, - { - "l": "0.4", - "x": 17.25, - "y": 15.7684 - }, - { - "l": "0.4", - "x": 17.3333, - "y": 15.7919 - }, - { - "l": "0.4", - "x": 17.4167, - "y": 15.8147 - }, - { - "l": "0.4", - "x": 17.5, - "y": 15.8372 - }, - { - "l": "0.4", - "x": 17.5833, - "y": 15.8589 - }, - { - "l": "0.4", - "x": 17.6667, - "y": 15.8812 - }, - { - "l": "0.4", - "x": 17.75, - "y": 15.9024 - }, - { - "l": "0.4", - "x": 17.8333, - "y": 15.9237 - }, - { - "l": "0.4", - "x": 17.9167, - "y": 15.9449 - }, - { - "l": "0.4", - "x": 18.0, - "y": 15.9655 - }, - { - "l": "0.4", - "x": 18.0833, - "y": 15.9857 - }, - { - "l": "0.4", - "x": 18.1667, - "y": 16.0057 - }, - { - "l": "0.4", - "x": 18.25, - "y": 16.0255 - }, - { - "l": "0.4", - "x": 18.3333, - "y": 16.0457 - }, - { - "l": "0.4", - "x": 18.4167, - "y": 16.0647 - }, - { - "l": "0.4", - "x": 18.5, - "y": 16.0837 - }, - { - "l": "0.4", - "x": 18.5833, - "y": 16.1024 - }, - { - "l": "0.4", - "x": 18.6667, - "y": 16.1214 - }, - { - "l": "0.4", - "x": 18.75, - "y": 16.1394 - }, - { - "l": "0.4", - "x": 18.8333, - "y": 16.1568 - }, - { - "l": "0.4", - "x": 18.9167, - "y": 16.1751 - }, - { - "l": "0.4", - "x": 19.0, - "y": 16.1931 - }, - { - "l": "0.4", - "x": 19.0833, - "y": 16.2104 - }, - { - "l": "0.4", - "x": 19.1667, - "y": 16.2284 - }, - { - "l": "0.4", - "x": 19.25, - "y": 16.2443 - }, - { - "l": "0.4", - "x": 19.3333, - "y": 16.2618 - }, - { - "l": "0.4", - "x": 19.4167, - "y": 16.278 - }, - { - "l": "0.4", - "x": 19.5, - "y": 16.2945 - }, - { - "l": "0.4", - "x": 19.5833, - "y": 16.311 - }, - { - "l": "0.4", - "x": 19.6667, - "y": 16.3262 - }, - { - "l": "0.4", - "x": 19.75, - "y": 16.3427 - }, - { - "l": "0.4", - "x": 19.8333, - "y": 16.3592 - }, - { - "l": "0.4", - "x": 19.9167, - "y": 16.3749 - }, - { - "l": "0.4", - "x": 20.0, - "y": 16.3907 - }, - { - "l": "0.4", - "x": 20.0, - "y": 16.3907 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 4.0, - "y": 13.3536 - }, - { - "l": "2.0", - "x": 4.0833, - "y": 13.3307 - }, - { - "l": "2.0", - "x": 4.1667, - "y": 13.3075 - }, - { - "l": "2.0", - "x": 4.25, - "y": 13.2838 - }, - { - "l": "2.0", - "x": 4.3333, - "y": 13.2611 - }, - { - "l": "2.0", - "x": 4.4167, - "y": 13.238 - }, - { - "l": "2.0", - "x": 4.5, - "y": 13.2144 - }, - { - "l": "2.0", - "x": 4.5833, - "y": 13.1918 - }, - { - "l": "2.0", - "x": 4.6667, - "y": 13.1695 - }, - { - "l": "2.0", - "x": 4.75, - "y": 13.1479 - }, - { - "l": "2.0", - "x": 4.8333, - "y": 13.1269 - }, - { - "l": "2.0", - "x": 4.9167, - "y": 13.1066 - }, - { - "l": "2.0", - "x": 5.0, - "y": 13.0879 - }, - { - "l": "2.0", - "x": 5.0833, - "y": 13.0697 - }, - { - "l": "2.0", - "x": 5.1667, - "y": 13.0523 - }, - { - "l": "2.0", - "x": 5.25, - "y": 13.0363 - }, - { - "l": "2.0", - "x": 5.3333, - "y": 13.022 - }, - { - "l": "2.0", - "x": 5.4167, - "y": 13.0074 - }, - { - "l": "2.0", - "x": 5.5, - "y": 12.9953 - }, - { - "l": "2.0", - "x": 5.5833, - "y": 12.9839 - }, - { - "l": "2.0", - "x": 5.6667, - "y": 12.9742 - }, - { - "l": "2.0", - "x": 5.75, - "y": 12.9652 - }, - { - "l": "2.0", - "x": 5.8333, - "y": 12.9569 - }, - { - "l": "2.0", - "x": 5.9167, - "y": 12.9503 - }, - { - "l": "2.0", - "x": 6.0, - "y": 12.9443 - }, - { - "l": "2.0", - "x": 6.0833, - "y": 12.939 - }, - { - "l": "2.0", - "x": 6.1667, - "y": 12.9367 - }, - { - "l": "2.0", - "x": 6.25, - "y": 12.933 - }, - { - "l": "2.0", - "x": 6.3333, - "y": 12.9311 - }, - { - "l": "2.0", - "x": 6.4167, - "y": 12.9303 - }, - { - "l": "2.0", - "x": 6.5, - "y": 12.931 - }, - { - "l": "2.0", - "x": 6.5833, - "y": 12.9323 - }, - { - "l": "2.0", - "x": 6.6667, - "y": 12.9355 - }, - { - "l": "2.0", - "x": 6.75, - "y": 12.9379 - }, - { - "l": "2.0", - "x": 6.8333, - "y": 12.9428 - }, - { - "l": "2.0", - "x": 6.9167, - "y": 12.9479 - }, - { - "l": "2.0", - "x": 7.0, - "y": 12.9528 - }, - { - "l": "2.0", - "x": 7.0833, - "y": 12.9596 - }, - { - "l": "2.0", - "x": 7.1667, - "y": 12.9664 - }, - { - "l": "2.0", - "x": 7.25, - "y": 12.975 - }, - { - "l": "2.0", - "x": 7.3333, - "y": 12.9828 - }, - { - "l": "2.0", - "x": 7.4167, - "y": 12.9924 - }, - { - "l": "2.0", - "x": 7.5, - "y": 13.002 - }, - { - "l": "2.0", - "x": 7.5833, - "y": 13.0118 - }, - { - "l": "2.0", - "x": 7.6667, - "y": 13.0229 - }, - { - "l": "2.0", - "x": 7.75, - "y": 13.0345 - }, - { - "l": "2.0", - "x": 7.8333, - "y": 13.0473 - }, - { - "l": "2.0", - "x": 7.9167, - "y": 13.0601 - }, - { - "l": "2.0", - "x": 8.0, - "y": 13.0742 - }, - { - "l": "2.0", - "x": 8.0833, - "y": 13.0875 - }, - { - "l": "2.0", - "x": 8.1667, - "y": 13.1029 - }, - { - "l": "2.0", - "x": 8.25, - "y": 13.1183 - }, - { - "l": "2.0", - "x": 8.3333, - "y": 13.1355 - }, - { - "l": "2.0", - "x": 8.4167, - "y": 13.1516 - }, - { - "l": "2.0", - "x": 8.5, - "y": 13.1697 - }, - { - "l": "2.0", - "x": 8.5833, - "y": 13.188 - }, - { - "l": "2.0", - "x": 8.6667, - "y": 13.2073 - }, - { - "l": "2.0", - "x": 8.75, - "y": 13.227 - }, - { - "l": "2.0", - "x": 8.8333, - "y": 13.2476 - }, - { - "l": "2.0", - "x": 8.9167, - "y": 13.2688 - }, - { - "l": "2.0", - "x": 9.0, - "y": 13.2914 - }, - { - "l": "2.0", - "x": 9.0833, - "y": 13.3139 - }, - { - "l": "2.0", - "x": 9.1667, - "y": 13.3368 - }, - { - "l": "2.0", - "x": 9.25, - "y": 13.3615 - }, - { - "l": "2.0", - "x": 9.3333, - "y": 13.3862 - }, - { - "l": "2.0", - "x": 9.4167, - "y": 13.4123 - }, - { - "l": "2.0", - "x": 9.5, - "y": 13.4383 - }, - { - "l": "2.0", - "x": 9.5833, - "y": 13.4653 - }, - { - "l": "2.0", - "x": 9.6667, - "y": 13.4932 - }, - { - "l": "2.0", - "x": 9.75, - "y": 13.5215 - }, - { - "l": "2.0", - "x": 9.8333, - "y": 13.5507 - }, - { - "l": "2.0", - "x": 9.9167, - "y": 13.5801 - }, - { - "l": "2.0", - "x": 10.0, - "y": 13.6106 - }, - { - "l": "2.0", - "x": 10.0833, - "y": 13.6413 - }, - { - "l": "2.0", - "x": 10.1667, - "y": 13.6737 - }, - { - "l": "2.0", - "x": 10.25, - "y": 13.7055 - }, - { - "l": "2.0", - "x": 10.3333, - "y": 13.7382 - }, - { - "l": "2.0", - "x": 10.4167, - "y": 13.772 - }, - { - "l": "2.0", - "x": 10.5, - "y": 13.8059 - }, - { - "l": "2.0", - "x": 10.5833, - "y": 13.84 - }, - { - "l": "2.0", - "x": 10.6667, - "y": 13.8759 - }, - { - "l": "2.0", - "x": 10.75, - "y": 13.9119 - }, - { - "l": "2.0", - "x": 10.8333, - "y": 13.9482 - }, - { - "l": "2.0", - "x": 10.9167, - "y": 13.9846 - }, - { - "l": "2.0", - "x": 11.0, - "y": 14.0217 - }, - { - "l": "2.0", - "x": 11.0833, - "y": 14.0602 - }, - { - "l": "2.0", - "x": 11.1667, - "y": 14.0977 - }, - { - "l": "2.0", - "x": 11.25, - "y": 14.1376 - }, - { - "l": "2.0", - "x": 11.3333, - "y": 14.1771 - }, - { - "l": "2.0", - "x": 11.4167, - "y": 14.2158 - }, - { - "l": "2.0", - "x": 11.5, - "y": 14.2566 - }, - { - "l": "2.0", - "x": 11.5833, - "y": 14.297 - }, - { - "l": "2.0", - "x": 11.6667, - "y": 14.3377 - }, - { - "l": "2.0", - "x": 11.75, - "y": 14.3788 - }, - { - "l": "2.0", - "x": 11.8333, - "y": 14.4204 - }, - { - "l": "2.0", - "x": 11.9167, - "y": 14.4617 - }, - { - "l": "2.0", - "x": 12.0, - "y": 14.504 - }, - { - "l": "2.0", - "x": 12.0833, - "y": 14.5465 - }, - { - "l": "2.0", - "x": 12.1667, - "y": 14.5893 - }, - { - "l": "2.0", - "x": 12.25, - "y": 14.6312 - }, - { - "l": "2.0", - "x": 12.3333, - "y": 14.6747 - }, - { - "l": "2.0", - "x": 12.4167, - "y": 14.7169 - }, - { - "l": "2.0", - "x": 12.5, - "y": 14.7598 - }, - { - "l": "2.0", - "x": 12.5833, - "y": 14.8024 - }, - { - "l": "2.0", - "x": 12.6667, - "y": 14.8457 - }, - { - "l": "2.0", - "x": 12.75, - "y": 14.8888 - }, - { - "l": "2.0", - "x": 12.8333, - "y": 14.9314 - }, - { - "l": "2.0", - "x": 12.9167, - "y": 14.9745 - }, - { - "l": "2.0", - "x": 13.0, - "y": 15.0172 - }, - { - "l": "2.0", - "x": 13.0833, - "y": 15.0591 - }, - { - "l": "2.0", - "x": 13.1667, - "y": 15.1029 - }, - { - "l": "2.0", - "x": 13.25, - "y": 15.1444 - }, - { - "l": "2.0", - "x": 13.3333, - "y": 15.1868 - }, - { - "l": "2.0", - "x": 13.4167, - "y": 15.2289 - }, - { - "l": "2.0", - "x": 13.5, - "y": 15.2709 - }, - { - "l": "2.0", - "x": 13.5833, - "y": 15.3125 - }, - { - "l": "2.0", - "x": 13.6667, - "y": 15.3541 - }, - { - "l": "2.0", - "x": 13.75, - "y": 15.3947 - }, - { - "l": "2.0", - "x": 13.8333, - "y": 15.4354 - }, - { - "l": "2.0", - "x": 13.9167, - "y": 15.4757 - }, - { - "l": "2.0", - "x": 14.0, - "y": 15.5163 - }, - { - "l": "2.0", - "x": 14.0833, - "y": 15.5567 - }, - { - "l": "2.0", - "x": 14.1667, - "y": 15.5957 - }, - { - "l": "2.0", - "x": 14.25, - "y": 15.6354 - }, - { - "l": "2.0", - "x": 14.3333, - "y": 15.6732 - }, - { - "l": "2.0", - "x": 14.4167, - "y": 15.7125 - }, - { - "l": "2.0", - "x": 14.5, - "y": 15.7506 - }, - { - "l": "2.0", - "x": 14.5833, - "y": 15.7882 - }, - { - "l": "2.0", - "x": 14.6667, - "y": 15.8255 - }, - { - "l": "2.0", - "x": 14.75, - "y": 15.8634 - }, - { - "l": "2.0", - "x": 14.8333, - "y": 15.8991 - }, - { - "l": "2.0", - "x": 14.9167, - "y": 15.9359 - }, - { - "l": "2.0", - "x": 15.0, - "y": 15.9719 - }, - { - "l": "2.0", - "x": 15.0833, - "y": 16.0072 - }, - { - "l": "2.0", - "x": 15.1667, - "y": 16.0423 - }, - { - "l": "2.0", - "x": 15.25, - "y": 16.077 - }, - { - "l": "2.0", - "x": 15.3333, - "y": 16.1103 - }, - { - "l": "2.0", - "x": 15.4167, - "y": 16.1451 - }, - { - "l": "2.0", - "x": 15.5, - "y": 16.1778 - }, - { - "l": "2.0", - "x": 15.5833, - "y": 16.2107 - }, - { - "l": "2.0", - "x": 15.6667, - "y": 16.2431 - }, - { - "l": "2.0", - "x": 15.75, - "y": 16.2751 - }, - { - "l": "2.0", - "x": 15.8333, - "y": 16.3072 - }, - { - "l": "2.0", - "x": 15.9167, - "y": 16.3383 - }, - { - "l": "2.0", - "x": 16.0, - "y": 16.3689 - }, - { - "l": "2.0", - "x": 16.0833, - "y": 16.3996 - }, - { - "l": "2.0", - "x": 16.1667, - "y": 16.4292 - }, - { - "l": "2.0", - "x": 16.25, - "y": 16.4589 - }, - { - "l": "2.0", - "x": 16.3333, - "y": 16.4881 - }, - { - "l": "2.0", - "x": 16.4167, - "y": 16.5167 - }, - { - "l": "2.0", - "x": 16.5, - "y": 16.5458 - }, - { - "l": "2.0", - "x": 16.5833, - "y": 16.5732 - }, - { - "l": "2.0", - "x": 16.6667, - "y": 16.6004 - }, - { - "l": "2.0", - "x": 16.75, - "y": 16.6277 - }, - { - "l": "2.0", - "x": 16.8333, - "y": 16.6543 - }, - { - "l": "2.0", - "x": 16.9167, - "y": 16.6815 - }, - { - "l": "2.0", - "x": 17.0, - "y": 16.7072 - }, - { - "l": "2.0", - "x": 17.0833, - "y": 16.733 - }, - { - "l": "2.0", - "x": 17.1667, - "y": 16.7576 - }, - { - "l": "2.0", - "x": 17.25, - "y": 16.7825 - }, - { - "l": "2.0", - "x": 17.3333, - "y": 16.8075 - }, - { - "l": "2.0", - "x": 17.4167, - "y": 16.8316 - }, - { - "l": "2.0", - "x": 17.5, - "y": 16.8557 - }, - { - "l": "2.0", - "x": 17.5833, - "y": 16.8788 - }, - { - "l": "2.0", - "x": 17.6667, - "y": 16.9024 - }, - { - "l": "2.0", - "x": 17.75, - "y": 16.9251 - }, - { - "l": "2.0", - "x": 17.8333, - "y": 16.9477 - }, - { - "l": "2.0", - "x": 17.9167, - "y": 16.9703 - }, - { - "l": "2.0", - "x": 18.0, - "y": 16.992 - }, - { - "l": "2.0", - "x": 18.0833, - "y": 17.0136 - }, - { - "l": "2.0", - "x": 18.1667, - "y": 17.035 - }, - { - "l": "2.0", - "x": 18.25, - "y": 17.0559 - }, - { - "l": "2.0", - "x": 18.3333, - "y": 17.0775 - }, - { - "l": "2.0", - "x": 18.4167, - "y": 17.0976 - }, - { - "l": "2.0", - "x": 18.5, - "y": 17.118 - }, - { - "l": "2.0", - "x": 18.5833, - "y": 17.1379 - }, - { - "l": "2.0", - "x": 18.6667, - "y": 17.1581 - }, - { - "l": "2.0", - "x": 18.75, - "y": 17.1772 - }, - { - "l": "2.0", - "x": 18.8333, - "y": 17.196 - }, - { - "l": "2.0", - "x": 18.9167, - "y": 17.2154 - }, - { - "l": "2.0", - "x": 19.0, - "y": 17.2345 - }, - { - "l": "2.0", - "x": 19.0833, - "y": 17.2528 - }, - { - "l": "2.0", - "x": 19.1667, - "y": 17.272 - }, - { - "l": "2.0", - "x": 19.25, - "y": 17.2891 - }, - { - "l": "2.0", - "x": 19.3333, - "y": 17.3077 - }, - { - "l": "2.0", - "x": 19.4167, - "y": 17.325 - }, - { - "l": "2.0", - "x": 19.5, - "y": 17.3425 - }, - { - "l": "2.0", - "x": 19.5833, - "y": 17.36 - }, - { - "l": "2.0", - "x": 19.6667, - "y": 17.3764 - }, - { - "l": "2.0", - "x": 19.75, - "y": 17.3939 - }, - { - "l": "2.0", - "x": 19.8333, - "y": 17.4115 - }, - { - "l": "2.0", - "x": 19.9167, - "y": 17.4282 - }, - { - "l": "2.0", - "x": 20.0, - "y": 17.445 - }, - { - "l": "2.0", - "x": 20.0, - "y": 17.445 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 4.0, - "y": 14.0362 - }, - { - "l": "9.0", - "x": 4.0833, - "y": 14.0146 - }, - { - "l": "9.0", - "x": 4.1667, - "y": 13.9926 - }, - { - "l": "9.0", - "x": 4.25, - "y": 13.9703 - }, - { - "l": "9.0", - "x": 4.3333, - "y": 13.949 - }, - { - "l": "9.0", - "x": 4.4167, - "y": 13.9273 - }, - { - "l": "9.0", - "x": 4.5, - "y": 13.9054 - }, - { - "l": "9.0", - "x": 4.5833, - "y": 13.8844 - }, - { - "l": "9.0", - "x": 4.6667, - "y": 13.8639 - }, - { - "l": "9.0", - "x": 4.75, - "y": 13.8441 - }, - { - "l": "9.0", - "x": 4.8333, - "y": 13.8252 - }, - { - "l": "9.0", - "x": 4.9167, - "y": 13.8069 - }, - { - "l": "9.0", - "x": 5.0, - "y": 13.7904 - }, - { - "l": "9.0", - "x": 5.0833, - "y": 13.7744 - }, - { - "l": "9.0", - "x": 5.1667, - "y": 13.7594 - }, - { - "l": "9.0", - "x": 5.25, - "y": 13.7459 - }, - { - "l": "9.0", - "x": 5.3333, - "y": 13.7341 - }, - { - "l": "9.0", - "x": 5.4167, - "y": 13.7222 - }, - { - "l": "9.0", - "x": 5.5, - "y": 13.7129 - }, - { - "l": "9.0", - "x": 5.5833, - "y": 13.7044 - }, - { - "l": "9.0", - "x": 5.6667, - "y": 13.6976 - }, - { - "l": "9.0", - "x": 5.75, - "y": 13.6917 - }, - { - "l": "9.0", - "x": 5.8333, - "y": 13.6864 - }, - { - "l": "9.0", - "x": 5.9167, - "y": 13.683 - }, - { - "l": "9.0", - "x": 6.0, - "y": 13.6803 - }, - { - "l": "9.0", - "x": 6.0833, - "y": 13.6784 - }, - { - "l": "9.0", - "x": 6.1667, - "y": 13.6794 - }, - { - "l": "9.0", - "x": 6.25, - "y": 13.6792 - }, - { - "l": "9.0", - "x": 6.3333, - "y": 13.6808 - }, - { - "l": "9.0", - "x": 6.4167, - "y": 13.6835 - }, - { - "l": "9.0", - "x": 6.5, - "y": 13.6878 - }, - { - "l": "9.0", - "x": 6.5833, - "y": 13.6929 - }, - { - "l": "9.0", - "x": 6.6667, - "y": 13.6999 - }, - { - "l": "9.0", - "x": 6.75, - "y": 13.706 - }, - { - "l": "9.0", - "x": 6.8333, - "y": 13.7147 - }, - { - "l": "9.0", - "x": 6.9167, - "y": 13.7236 - }, - { - "l": "9.0", - "x": 7.0, - "y": 13.7324 - }, - { - "l": "9.0", - "x": 7.0833, - "y": 13.743 - }, - { - "l": "9.0", - "x": 7.1667, - "y": 13.7537 - }, - { - "l": "9.0", - "x": 7.25, - "y": 13.7662 - }, - { - "l": "9.0", - "x": 7.3333, - "y": 13.7779 - }, - { - "l": "9.0", - "x": 7.4167, - "y": 13.7915 - }, - { - "l": "9.0", - "x": 7.5, - "y": 13.8051 - }, - { - "l": "9.0", - "x": 7.5833, - "y": 13.8188 - }, - { - "l": "9.0", - "x": 7.6667, - "y": 13.8337 - }, - { - "l": "9.0", - "x": 7.75, - "y": 13.8493 - }, - { - "l": "9.0", - "x": 7.8333, - "y": 13.866 - }, - { - "l": "9.0", - "x": 7.9167, - "y": 13.8828 - }, - { - "l": "9.0", - "x": 8.0, - "y": 13.9007 - }, - { - "l": "9.0", - "x": 8.0833, - "y": 13.9179 - }, - { - "l": "9.0", - "x": 8.1667, - "y": 13.9374 - }, - { - "l": "9.0", - "x": 8.25, - "y": 13.9566 - }, - { - "l": "9.0", - "x": 8.3333, - "y": 13.9777 - }, - { - "l": "9.0", - "x": 8.4167, - "y": 13.9977 - }, - { - "l": "9.0", - "x": 8.5, - "y": 14.0198 - }, - { - "l": "9.0", - "x": 8.5833, - "y": 14.042 - }, - { - "l": "9.0", - "x": 8.6667, - "y": 14.0652 - }, - { - "l": "9.0", - "x": 8.75, - "y": 14.0886 - }, - { - "l": "9.0", - "x": 8.8333, - "y": 14.1131 - }, - { - "l": "9.0", - "x": 8.9167, - "y": 14.1383 - }, - { - "l": "9.0", - "x": 9.0, - "y": 14.1648 - }, - { - "l": "9.0", - "x": 9.0833, - "y": 14.1912 - }, - { - "l": "9.0", - "x": 9.1667, - "y": 14.218 - }, - { - "l": "9.0", - "x": 9.25, - "y": 14.2466 - }, - { - "l": "9.0", - "x": 9.3333, - "y": 14.2752 - }, - { - "l": "9.0", - "x": 9.4167, - "y": 14.3051 - }, - { - "l": "9.0", - "x": 9.5, - "y": 14.3349 - }, - { - "l": "9.0", - "x": 9.5833, - "y": 14.3658 - }, - { - "l": "9.0", - "x": 9.6667, - "y": 14.3977 - }, - { - "l": "9.0", - "x": 9.75, - "y": 14.4298 - }, - { - "l": "9.0", - "x": 9.8333, - "y": 14.4628 - }, - { - "l": "9.0", - "x": 9.9167, - "y": 14.4961 - }, - { - "l": "9.0", - "x": 10.0, - "y": 14.5304 - }, - { - "l": "9.0", - "x": 10.0833, - "y": 14.5648 - }, - { - "l": "9.0", - "x": 10.1667, - "y": 14.601 - }, - { - "l": "9.0", - "x": 10.25, - "y": 14.6366 - }, - { - "l": "9.0", - "x": 10.3333, - "y": 14.6731 - }, - { - "l": "9.0", - "x": 10.4167, - "y": 14.7107 - }, - { - "l": "9.0", - "x": 10.5, - "y": 14.7484 - }, - { - "l": "9.0", - "x": 10.5833, - "y": 14.7862 - }, - { - "l": "9.0", - "x": 10.6667, - "y": 14.8259 - }, - { - "l": "9.0", - "x": 10.75, - "y": 14.8657 - }, - { - "l": "9.0", - "x": 10.8333, - "y": 14.9057 - }, - { - "l": "9.0", - "x": 10.9167, - "y": 14.9458 - }, - { - "l": "9.0", - "x": 11.0, - "y": 14.9868 - }, - { - "l": "9.0", - "x": 11.0833, - "y": 15.0289 - }, - { - "l": "9.0", - "x": 11.1667, - "y": 15.0702 - }, - { - "l": "9.0", - "x": 11.25, - "y": 15.1136 - }, - { - "l": "9.0", - "x": 11.3333, - "y": 15.1569 - }, - { - "l": "9.0", - "x": 11.4167, - "y": 15.1993 - }, - { - "l": "9.0", - "x": 11.5, - "y": 15.2437 - }, - { - "l": "9.0", - "x": 11.5833, - "y": 15.2876 - }, - { - "l": "9.0", - "x": 11.6667, - "y": 15.3321 - }, - { - "l": "9.0", - "x": 11.75, - "y": 15.3768 - }, - { - "l": "9.0", - "x": 11.8333, - "y": 15.4219 - }, - { - "l": "9.0", - "x": 11.9167, - "y": 15.4667 - }, - { - "l": "9.0", - "x": 12.0, - "y": 15.5126 - }, - { - "l": "9.0", - "x": 12.0833, - "y": 15.5587 - }, - { - "l": "9.0", - "x": 12.1667, - "y": 15.6049 - }, - { - "l": "9.0", - "x": 12.25, - "y": 15.6503 - }, - { - "l": "9.0", - "x": 12.3333, - "y": 15.6974 - }, - { - "l": "9.0", - "x": 12.4167, - "y": 15.7429 - }, - { - "l": "9.0", - "x": 12.5, - "y": 15.7893 - }, - { - "l": "9.0", - "x": 12.5833, - "y": 15.8352 - }, - { - "l": "9.0", - "x": 12.6667, - "y": 15.8819 - }, - { - "l": "9.0", - "x": 12.75, - "y": 15.9284 - }, - { - "l": "9.0", - "x": 12.8333, - "y": 15.9743 - }, - { - "l": "9.0", - "x": 12.9167, - "y": 16.0205 - }, - { - "l": "9.0", - "x": 13.0, - "y": 16.0665 - }, - { - "l": "9.0", - "x": 13.0833, - "y": 16.1117 - }, - { - "l": "9.0", - "x": 13.1667, - "y": 16.1587 - }, - { - "l": "9.0", - "x": 13.25, - "y": 16.2032 - }, - { - "l": "9.0", - "x": 13.3333, - "y": 16.2488 - }, - { - "l": "9.0", - "x": 13.4167, - "y": 16.2941 - }, - { - "l": "9.0", - "x": 13.5, - "y": 16.339 - }, - { - "l": "9.0", - "x": 13.5833, - "y": 16.3836 - }, - { - "l": "9.0", - "x": 13.6667, - "y": 16.4283 - }, - { - "l": "9.0", - "x": 13.75, - "y": 16.4716 - }, - { - "l": "9.0", - "x": 13.8333, - "y": 16.5155 - }, - { - "l": "9.0", - "x": 13.9167, - "y": 16.5586 - }, - { - "l": "9.0", - "x": 14.0, - "y": 16.602 - }, - { - "l": "9.0", - "x": 14.0833, - "y": 16.6453 - }, - { - "l": "9.0", - "x": 14.1667, - "y": 16.6869 - }, - { - "l": "9.0", - "x": 14.25, - "y": 16.7294 - }, - { - "l": "9.0", - "x": 14.3333, - "y": 16.77 - }, - { - "l": "9.0", - "x": 14.4167, - "y": 16.8118 - }, - { - "l": "9.0", - "x": 14.5, - "y": 16.8526 - }, - { - "l": "9.0", - "x": 14.5833, - "y": 16.8927 - }, - { - "l": "9.0", - "x": 14.6667, - "y": 16.9327 - }, - { - "l": "9.0", - "x": 14.75, - "y": 16.973 - }, - { - "l": "9.0", - "x": 14.8333, - "y": 17.0112 - }, - { - "l": "9.0", - "x": 14.9167, - "y": 17.0505 - }, - { - "l": "9.0", - "x": 15.0, - "y": 17.0889 - }, - { - "l": "9.0", - "x": 15.0833, - "y": 17.1265 - }, - { - "l": "9.0", - "x": 15.1667, - "y": 17.164 - }, - { - "l": "9.0", - "x": 15.25, - "y": 17.2009 - }, - { - "l": "9.0", - "x": 15.3333, - "y": 17.2366 - }, - { - "l": "9.0", - "x": 15.4167, - "y": 17.2735 - }, - { - "l": "9.0", - "x": 15.5, - "y": 17.3086 - }, - { - "l": "9.0", - "x": 15.5833, - "y": 17.3436 - }, - { - "l": "9.0", - "x": 15.6667, - "y": 17.378 - }, - { - "l": "9.0", - "x": 15.75, - "y": 17.4121 - }, - { - "l": "9.0", - "x": 15.8333, - "y": 17.4463 - }, - { - "l": "9.0", - "x": 15.9167, - "y": 17.4796 - }, - { - "l": "9.0", - "x": 16.0, - "y": 17.5121 - }, - { - "l": "9.0", - "x": 16.0833, - "y": 17.5448 - }, - { - "l": "9.0", - "x": 16.1667, - "y": 17.5764 - }, - { - "l": "9.0", - "x": 16.25, - "y": 17.608 - }, - { - "l": "9.0", - "x": 16.3333, - "y": 17.639 - }, - { - "l": "9.0", - "x": 16.4167, - "y": 17.6695 - }, - { - "l": "9.0", - "x": 16.5, - "y": 17.7005 - }, - { - "l": "9.0", - "x": 16.5833, - "y": 17.7296 - }, - { - "l": "9.0", - "x": 16.6667, - "y": 17.7586 - }, - { - "l": "9.0", - "x": 16.75, - "y": 17.7877 - }, - { - "l": "9.0", - "x": 16.8333, - "y": 17.8159 - }, - { - "l": "9.0", - "x": 16.9167, - "y": 17.845 - }, - { - "l": "9.0", - "x": 17.0, - "y": 17.8724 - }, - { - "l": "9.0", - "x": 17.0833, - "y": 17.8997 - }, - { - "l": "9.0", - "x": 17.1667, - "y": 17.9261 - }, - { - "l": "9.0", - "x": 17.25, - "y": 17.9526 - }, - { - "l": "9.0", - "x": 17.3333, - "y": 17.9791 - }, - { - "l": "9.0", - "x": 17.4167, - "y": 18.0048 - }, - { - "l": "9.0", - "x": 17.5, - "y": 18.0304 - }, - { - "l": "9.0", - "x": 17.5833, - "y": 18.055 - }, - { - "l": "9.0", - "x": 17.6667, - "y": 18.08 - }, - { - "l": "9.0", - "x": 17.75, - "y": 18.1045 - }, - { - "l": "9.0", - "x": 17.8333, - "y": 18.1284 - }, - { - "l": "9.0", - "x": 17.9167, - "y": 18.1524 - }, - { - "l": "9.0", - "x": 18.0, - "y": 18.1755 - }, - { - "l": "9.0", - "x": 18.0833, - "y": 18.1984 - }, - { - "l": "9.0", - "x": 18.1667, - "y": 18.2213 - }, - { - "l": "9.0", - "x": 18.25, - "y": 18.2436 - }, - { - "l": "9.0", - "x": 18.3333, - "y": 18.2665 - }, - { - "l": "9.0", - "x": 18.4167, - "y": 18.2879 - }, - { - "l": "9.0", - "x": 18.5, - "y": 18.3097 - }, - { - "l": "9.0", - "x": 18.5833, - "y": 18.3309 - }, - { - "l": "9.0", - "x": 18.6667, - "y": 18.3523 - }, - { - "l": "9.0", - "x": 18.75, - "y": 18.3727 - }, - { - "l": "9.0", - "x": 18.8333, - "y": 18.3928 - }, - { - "l": "9.0", - "x": 18.9167, - "y": 18.4134 - }, - { - "l": "9.0", - "x": 19.0, - "y": 18.4338 - }, - { - "l": "9.0", - "x": 19.0833, - "y": 18.4532 - }, - { - "l": "9.0", - "x": 19.1667, - "y": 18.4736 - }, - { - "l": "9.0", - "x": 19.25, - "y": 18.492 - }, - { - "l": "9.0", - "x": 19.3333, - "y": 18.5117 - }, - { - "l": "9.0", - "x": 19.4167, - "y": 18.5302 - }, - { - "l": "9.0", - "x": 19.5, - "y": 18.5488 - }, - { - "l": "9.0", - "x": 19.5833, - "y": 18.5675 - }, - { - "l": "9.0", - "x": 19.6667, - "y": 18.5851 - }, - { - "l": "9.0", - "x": 19.75, - "y": 18.6037 - }, - { - "l": "9.0", - "x": 19.8333, - "y": 18.6224 - }, - { - "l": "9.0", - "x": 19.9167, - "y": 18.6402 - }, - { - "l": "9.0", - "x": 20.0, - "y": 18.658 - }, - { - "l": "9.0", - "x": 20.0, - "y": 18.658 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 4.0, - "y": 14.7986 - }, - { - "l": "25.0", - "x": 4.0833, - "y": 14.7788 - }, - { - "l": "25.0", - "x": 4.1667, - "y": 14.7588 - }, - { - "l": "25.0", - "x": 4.25, - "y": 14.7387 - }, - { - "l": "25.0", - "x": 4.3333, - "y": 14.7195 - }, - { - "l": "25.0", - "x": 4.4167, - "y": 14.7001 - }, - { - "l": "25.0", - "x": 4.5, - "y": 14.6806 - }, - { - "l": "25.0", - "x": 4.5833, - "y": 14.662 - }, - { - "l": "25.0", - "x": 4.6667, - "y": 14.6442 - }, - { - "l": "25.0", - "x": 4.75, - "y": 14.6272 - }, - { - "l": "25.0", - "x": 4.8333, - "y": 14.6111 - }, - { - "l": "25.0", - "x": 4.9167, - "y": 14.5958 - }, - { - "l": "25.0", - "x": 5.0, - "y": 14.5824 - }, - { - "l": "25.0", - "x": 5.0833, - "y": 14.5697 - }, - { - "l": "25.0", - "x": 5.1667, - "y": 14.558 - }, - { - "l": "25.0", - "x": 5.25, - "y": 14.548 - }, - { - "l": "25.0", - "x": 5.3333, - "y": 14.5399 - }, - { - "l": "25.0", - "x": 5.4167, - "y": 14.5317 - }, - { - "l": "25.0", - "x": 5.5, - "y": 14.5263 - }, - { - "l": "25.0", - "x": 5.5833, - "y": 14.5218 - }, - { - "l": "25.0", - "x": 5.6667, - "y": 14.5191 - }, - { - "l": "25.0", - "x": 5.75, - "y": 14.5173 - }, - { - "l": "25.0", - "x": 5.8333, - "y": 14.5163 - }, - { - "l": "25.0", - "x": 5.9167, - "y": 14.5173 - }, - { - "l": "25.0", - "x": 6.0, - "y": 14.5191 - }, - { - "l": "25.0", - "x": 6.0833, - "y": 14.5218 - }, - { - "l": "25.0", - "x": 6.1667, - "y": 14.5274 - }, - { - "l": "25.0", - "x": 6.25, - "y": 14.5319 - }, - { - "l": "25.0", - "x": 6.3333, - "y": 14.5384 - }, - { - "l": "25.0", - "x": 6.4167, - "y": 14.5458 - }, - { - "l": "25.0", - "x": 6.5, - "y": 14.555 - }, - { - "l": "25.0", - "x": 6.5833, - "y": 14.5651 - }, - { - "l": "25.0", - "x": 6.6667, - "y": 14.5772 - }, - { - "l": "25.0", - "x": 6.75, - "y": 14.5883 - }, - { - "l": "25.0", - "x": 6.8333, - "y": 14.6022 - }, - { - "l": "25.0", - "x": 6.9167, - "y": 14.6162 - }, - { - "l": "25.0", - "x": 7.0, - "y": 14.6302 - }, - { - "l": "25.0", - "x": 7.0833, - "y": 14.646 - }, - { - "l": "25.0", - "x": 7.1667, - "y": 14.6619 - }, - { - "l": "25.0", - "x": 7.25, - "y": 14.6797 - }, - { - "l": "25.0", - "x": 7.3333, - "y": 14.6966 - }, - { - "l": "25.0", - "x": 7.4167, - "y": 14.7155 - }, - { - "l": "25.0", - "x": 7.5, - "y": 14.7343 - }, - { - "l": "25.0", - "x": 7.5833, - "y": 14.7532 - }, - { - "l": "25.0", - "x": 7.6667, - "y": 14.7733 - }, - { - "l": "25.0", - "x": 7.75, - "y": 14.7942 - }, - { - "l": "25.0", - "x": 7.8333, - "y": 14.8161 - }, - { - "l": "25.0", - "x": 7.9167, - "y": 14.8381 - }, - { - "l": "25.0", - "x": 8.0, - "y": 14.8611 - }, - { - "l": "25.0", - "x": 8.0833, - "y": 14.8833 - }, - { - "l": "25.0", - "x": 8.1667, - "y": 14.9082 - }, - { - "l": "25.0", - "x": 8.25, - "y": 14.9324 - }, - { - "l": "25.0", - "x": 8.3333, - "y": 14.9586 - }, - { - "l": "25.0", - "x": 8.4167, - "y": 14.9838 - }, - { - "l": "25.0", - "x": 8.5, - "y": 15.0109 - }, - { - "l": "25.0", - "x": 8.5833, - "y": 15.0382 - }, - { - "l": "25.0", - "x": 8.6667, - "y": 15.0665 - }, - { - "l": "25.0", - "x": 8.75, - "y": 15.0949 - }, - { - "l": "25.0", - "x": 8.8333, - "y": 15.1243 - }, - { - "l": "25.0", - "x": 8.9167, - "y": 15.1547 - }, - { - "l": "25.0", - "x": 9.0, - "y": 15.1861 - }, - { - "l": "25.0", - "x": 9.0833, - "y": 15.2175 - }, - { - "l": "25.0", - "x": 9.1667, - "y": 15.2492 - }, - { - "l": "25.0", - "x": 9.25, - "y": 15.2827 - }, - { - "l": "25.0", - "x": 9.3333, - "y": 15.3163 - }, - { - "l": "25.0", - "x": 9.4167, - "y": 15.351 - }, - { - "l": "25.0", - "x": 9.5, - "y": 15.3857 - }, - { - "l": "25.0", - "x": 9.5833, - "y": 15.4215 - }, - { - "l": "25.0", - "x": 9.6667, - "y": 15.4582 - }, - { - "l": "25.0", - "x": 9.75, - "y": 15.4951 - }, - { - "l": "25.0", - "x": 9.8333, - "y": 15.533 - }, - { - "l": "25.0", - "x": 9.9167, - "y": 15.571 - }, - { - "l": "25.0", - "x": 10.0, - "y": 15.61 - }, - { - "l": "25.0", - "x": 10.0833, - "y": 15.6491 - }, - { - "l": "25.0", - "x": 10.1667, - "y": 15.6901 - }, - { - "l": "25.0", - "x": 10.25, - "y": 15.7302 - }, - { - "l": "25.0", - "x": 10.3333, - "y": 15.7715 - }, - { - "l": "25.0", - "x": 10.4167, - "y": 15.8136 - }, - { - "l": "25.0", - "x": 10.5, - "y": 15.8559 - }, - { - "l": "25.0", - "x": 10.5833, - "y": 15.8983 - }, - { - "l": "25.0", - "x": 10.6667, - "y": 15.9426 - }, - { - "l": "25.0", - "x": 10.75, - "y": 15.987 - }, - { - "l": "25.0", - "x": 10.8333, - "y": 16.0314 - }, - { - "l": "25.0", - "x": 10.9167, - "y": 16.076 - }, - { - "l": "25.0", - "x": 11.0, - "y": 16.1215 - }, - { - "l": "25.0", - "x": 11.0833, - "y": 16.1681 - }, - { - "l": "25.0", - "x": 11.1667, - "y": 16.2137 - }, - { - "l": "25.0", - "x": 11.25, - "y": 16.2615 - }, - { - "l": "25.0", - "x": 11.3333, - "y": 16.3092 - }, - { - "l": "25.0", - "x": 11.4167, - "y": 16.356 - }, - { - "l": "25.0", - "x": 11.5, - "y": 16.4048 - }, - { - "l": "25.0", - "x": 11.5833, - "y": 16.4528 - }, - { - "l": "25.0", - "x": 11.6667, - "y": 16.5016 - }, - { - "l": "25.0", - "x": 11.75, - "y": 16.5506 - }, - { - "l": "25.0", - "x": 11.8333, - "y": 16.5997 - }, - { - "l": "25.0", - "x": 11.9167, - "y": 16.6488 - }, - { - "l": "25.0", - "x": 12.0, - "y": 16.6988 - }, - { - "l": "25.0", - "x": 12.0833, - "y": 16.749 - }, - { - "l": "25.0", - "x": 12.1667, - "y": 16.7993 - }, - { - "l": "25.0", - "x": 12.25, - "y": 16.8486 - }, - { - "l": "25.0", - "x": 12.3333, - "y": 16.8998 - }, - { - "l": "25.0", - "x": 12.4167, - "y": 16.9493 - }, - { - "l": "25.0", - "x": 12.5, - "y": 16.9997 - }, - { - "l": "25.0", - "x": 12.5833, - "y": 17.0493 - }, - { - "l": "25.0", - "x": 12.6667, - "y": 17.0998 - }, - { - "l": "25.0", - "x": 12.75, - "y": 17.1503 - }, - { - "l": "25.0", - "x": 12.8333, - "y": 17.2 - }, - { - "l": "25.0", - "x": 12.9167, - "y": 17.2498 - }, - { - "l": "25.0", - "x": 13.0, - "y": 17.2995 - }, - { - "l": "25.0", - "x": 13.0833, - "y": 17.3484 - }, - { - "l": "25.0", - "x": 13.1667, - "y": 17.3992 - }, - { - "l": "25.0", - "x": 13.25, - "y": 17.4471 - }, - { - "l": "25.0", - "x": 13.3333, - "y": 17.4962 - }, - { - "l": "25.0", - "x": 13.4167, - "y": 17.5451 - }, - { - "l": "25.0", - "x": 13.5, - "y": 17.5933 - }, - { - "l": "25.0", - "x": 13.5833, - "y": 17.6414 - }, - { - "l": "25.0", - "x": 13.6667, - "y": 17.6896 - }, - { - "l": "25.0", - "x": 13.75, - "y": 17.736 - }, - { - "l": "25.0", - "x": 13.8333, - "y": 17.7832 - }, - { - "l": "25.0", - "x": 13.9167, - "y": 17.8296 - }, - { - "l": "25.0", - "x": 14.0, - "y": 17.8761 - }, - { - "l": "25.0", - "x": 14.0833, - "y": 17.9226 - }, - { - "l": "25.0", - "x": 14.1667, - "y": 17.9672 - }, - { - "l": "25.0", - "x": 14.25, - "y": 18.0128 - }, - { - "l": "25.0", - "x": 14.3333, - "y": 18.0564 - }, - { - "l": "25.0", - "x": 14.4167, - "y": 18.1012 - }, - { - "l": "25.0", - "x": 14.5, - "y": 18.1449 - }, - { - "l": "25.0", - "x": 14.5833, - "y": 18.1878 - }, - { - "l": "25.0", - "x": 14.6667, - "y": 18.2306 - }, - { - "l": "25.0", - "x": 14.75, - "y": 18.2736 - }, - { - "l": "25.0", - "x": 14.8333, - "y": 18.3146 - }, - { - "l": "25.0", - "x": 14.9167, - "y": 18.3566 - }, - { - "l": "25.0", - "x": 15.0, - "y": 18.3977 - }, - { - "l": "25.0", - "x": 15.0833, - "y": 18.4379 - }, - { - "l": "25.0", - "x": 15.1667, - "y": 18.4781 - }, - { - "l": "25.0", - "x": 15.25, - "y": 18.5174 - }, - { - "l": "25.0", - "x": 15.3333, - "y": 18.5557 - }, - { - "l": "25.0", - "x": 15.4167, - "y": 18.595 - }, - { - "l": "25.0", - "x": 15.5, - "y": 18.6324 - }, - { - "l": "25.0", - "x": 15.5833, - "y": 18.6698 - }, - { - "l": "25.0", - "x": 15.6667, - "y": 18.7064 - }, - { - "l": "25.0", - "x": 15.75, - "y": 18.7429 - }, - { - "l": "25.0", - "x": 15.8333, - "y": 18.7794 - }, - { - "l": "25.0", - "x": 15.9167, - "y": 18.815 - }, - { - "l": "25.0", - "x": 16.0, - "y": 18.8496 - }, - { - "l": "25.0", - "x": 16.0833, - "y": 18.8844 - }, - { - "l": "25.0", - "x": 16.1667, - "y": 18.9182 - }, - { - "l": "25.0", - "x": 16.25, - "y": 18.9519 - }, - { - "l": "25.0", - "x": 16.3333, - "y": 18.9848 - }, - { - "l": "25.0", - "x": 16.4167, - "y": 19.0175 - }, - { - "l": "25.0", - "x": 16.5, - "y": 19.0504 - }, - { - "l": "25.0", - "x": 16.5833, - "y": 19.0814 - }, - { - "l": "25.0", - "x": 16.6667, - "y": 19.1124 - }, - { - "l": "25.0", - "x": 16.75, - "y": 19.1434 - }, - { - "l": "25.0", - "x": 16.8333, - "y": 19.1734 - }, - { - "l": "25.0", - "x": 16.9167, - "y": 19.2044 - }, - { - "l": "25.0", - "x": 17.0, - "y": 19.2336 - }, - { - "l": "25.0", - "x": 17.0833, - "y": 19.2627 - }, - { - "l": "25.0", - "x": 17.1667, - "y": 19.2908 - }, - { - "l": "25.0", - "x": 17.25, - "y": 19.319 - }, - { - "l": "25.0", - "x": 17.3333, - "y": 19.3472 - }, - { - "l": "25.0", - "x": 17.4167, - "y": 19.3745 - }, - { - "l": "25.0", - "x": 17.5, - "y": 19.4019 - }, - { - "l": "25.0", - "x": 17.5833, - "y": 19.4281 - }, - { - "l": "25.0", - "x": 17.6667, - "y": 19.4546 - }, - { - "l": "25.0", - "x": 17.75, - "y": 19.4808 - }, - { - "l": "25.0", - "x": 17.8333, - "y": 19.5062 - }, - { - "l": "25.0", - "x": 17.9167, - "y": 19.5317 - }, - { - "l": "25.0", - "x": 18.0, - "y": 19.5562 - }, - { - "l": "25.0", - "x": 18.0833, - "y": 19.5806 - }, - { - "l": "25.0", - "x": 18.1667, - "y": 19.6051 - }, - { - "l": "25.0", - "x": 18.25, - "y": 19.6287 - }, - { - "l": "25.0", - "x": 18.3333, - "y": 19.6531 - }, - { - "l": "25.0", - "x": 18.4167, - "y": 19.6758 - }, - { - "l": "25.0", - "x": 18.5, - "y": 19.6992 - }, - { - "l": "25.0", - "x": 18.5833, - "y": 19.7218 - }, - { - "l": "25.0", - "x": 18.6667, - "y": 19.7445 - }, - { - "l": "25.0", - "x": 18.75, - "y": 19.7661 - }, - { - "l": "25.0", - "x": 18.8333, - "y": 19.7877 - }, - { - "l": "25.0", - "x": 18.9167, - "y": 19.8095 - }, - { - "l": "25.0", - "x": 19.0, - "y": 19.8311 - }, - { - "l": "25.0", - "x": 19.0833, - "y": 19.8519 - }, - { - "l": "25.0", - "x": 19.1667, - "y": 19.8735 - }, - { - "l": "25.0", - "x": 19.25, - "y": 19.8933 - }, - { - "l": "25.0", - "x": 19.3333, - "y": 19.9141 - }, - { - "l": "25.0", - "x": 19.4167, - "y": 19.9338 - }, - { - "l": "25.0", - "x": 19.5, - "y": 19.9536 - }, - { - "l": "25.0", - "x": 19.5833, - "y": 19.9734 - }, - { - "l": "25.0", - "x": 19.6667, - "y": 19.9922 - }, - { - "l": "25.0", - "x": 19.75, - "y": 20.0121 - }, - { - "l": "25.0", - "x": 19.8333, - "y": 20.0319 - }, - { - "l": "25.0", - "x": 19.9167, - "y": 20.0508 - }, - { - "l": "25.0", - "x": 20.0, - "y": 20.0697 - }, - { - "l": "25.0", - "x": 20.0, - "y": 20.0697 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 4.0, - "y": 15.656 - }, - { - "l": "50.0", - "x": 4.0833, - "y": 15.639 - }, - { - "l": "50.0", - "x": 4.1667, - "y": 15.622 - }, - { - "l": "50.0", - "x": 4.25, - "y": 15.605 - }, - { - "l": "50.0", - "x": 4.3333, - "y": 15.589 - }, - { - "l": "50.0", - "x": 4.4167, - "y": 15.573 - }, - { - "l": "50.0", - "x": 4.5, - "y": 15.557 - }, - { - "l": "50.0", - "x": 4.5833, - "y": 15.542 - }, - { - "l": "50.0", - "x": 4.6667, - "y": 15.528 - }, - { - "l": "50.0", - "x": 4.75, - "y": 15.515 - }, - { - "l": "50.0", - "x": 4.8333, - "y": 15.503 - }, - { - "l": "50.0", - "x": 4.9167, - "y": 15.492 - }, - { - "l": "50.0", - "x": 5.0, - "y": 15.483 - }, - { - "l": "50.0", - "x": 5.0833, - "y": 15.475 - }, - { - "l": "50.0", - "x": 5.1667, - "y": 15.468 - }, - { - "l": "50.0", - "x": 5.25, - "y": 15.463 - }, - { - "l": "50.0", - "x": 5.3333, - "y": 15.46 - }, - { - "l": "50.0", - "x": 5.4167, - "y": 15.457 - }, - { - "l": "50.0", - "x": 5.5, - "y": 15.457 - }, - { - "l": "50.0", - "x": 5.5833, - "y": 15.458 - }, - { - "l": "50.0", - "x": 5.6667, - "y": 15.461 - }, - { - "l": "50.0", - "x": 5.75, - "y": 15.465 - }, - { - "l": "50.0", - "x": 5.8333, - "y": 15.47 - }, - { - "l": "50.0", - "x": 5.9167, - "y": 15.477 - }, - { - "l": "50.0", - "x": 6.0, - "y": 15.485 - }, - { - "l": "50.0", - "x": 6.0833, - "y": 15.494 - }, - { - "l": "50.0", - "x": 6.1667, - "y": 15.506 - }, - { - "l": "50.0", - "x": 6.25, - "y": 15.517 - }, - { - "l": "50.0", - "x": 6.3333, - "y": 15.53 - }, - { - "l": "50.0", - "x": 6.4167, - "y": 15.544 - }, - { - "l": "50.0", - "x": 6.5, - "y": 15.56 - }, - { - "l": "50.0", - "x": 6.5833, - "y": 15.577 - }, - { - "l": "50.0", - "x": 6.6667, - "y": 15.596 - }, - { - "l": "50.0", - "x": 6.75, - "y": 15.614 - }, - { - "l": "50.0", - "x": 6.8333, - "y": 15.635 - }, - { - "l": "50.0", - "x": 6.9167, - "y": 15.656 - }, - { - "l": "50.0", - "x": 7.0, - "y": 15.677 - }, - { - "l": "50.0", - "x": 7.0833, - "y": 15.7 - }, - { - "l": "50.0", - "x": 7.1667, - "y": 15.723 - }, - { - "l": "50.0", - "x": 7.25, - "y": 15.748 - }, - { - "l": "50.0", - "x": 7.3333, - "y": 15.772 - }, - { - "l": "50.0", - "x": 7.4167, - "y": 15.798 - }, - { - "l": "50.0", - "x": 7.5, - "y": 15.824 - }, - { - "l": "50.0", - "x": 7.5833, - "y": 15.85 - }, - { - "l": "50.0", - "x": 7.6667, - "y": 15.877 - }, - { - "l": "50.0", - "x": 7.75, - "y": 15.905 - }, - { - "l": "50.0", - "x": 7.8333, - "y": 15.934 - }, - { - "l": "50.0", - "x": 7.9167, - "y": 15.963 - }, - { - "l": "50.0", - "x": 8.0, - "y": 15.993 - }, - { - "l": "50.0", - "x": 8.0833, - "y": 16.022 - }, - { - "l": "50.0", - "x": 8.1667, - "y": 16.054 - }, - { - "l": "50.0", - "x": 8.25, - "y": 16.085 - }, - { - "l": "50.0", - "x": 8.3333, - "y": 16.118 - }, - { - "l": "50.0", - "x": 8.4167, - "y": 16.15 - }, - { - "l": "50.0", - "x": 8.5, - "y": 16.184 - }, - { - "l": "50.0", - "x": 8.5833, - "y": 16.218 - }, - { - "l": "50.0", - "x": 8.6667, - "y": 16.253 - }, - { - "l": "50.0", - "x": 8.75, - "y": 16.288 - }, - { - "l": "50.0", - "x": 8.8333, - "y": 16.324 - }, - { - "l": "50.0", - "x": 8.9167, - "y": 16.361 - }, - { - "l": "50.0", - "x": 9.0, - "y": 16.399 - }, - { - "l": "50.0", - "x": 9.0833, - "y": 16.437 - }, - { - "l": "50.0", - "x": 9.1667, - "y": 16.475 - }, - { - "l": "50.0", - "x": 9.25, - "y": 16.515 - }, - { - "l": "50.0", - "x": 9.3333, - "y": 16.555 - }, - { - "l": "50.0", - "x": 9.4167, - "y": 16.596 - }, - { - "l": "50.0", - "x": 9.5, - "y": 16.637 - }, - { - "l": "50.0", - "x": 9.5833, - "y": 16.679 - }, - { - "l": "50.0", - "x": 9.6667, - "y": 16.722 - }, - { - "l": "50.0", - "x": 9.75, - "y": 16.765 - }, - { - "l": "50.0", - "x": 9.8333, - "y": 16.809 - }, - { - "l": "50.0", - "x": 9.9167, - "y": 16.853 - }, - { - "l": "50.0", - "x": 10.0, - "y": 16.898 - }, - { - "l": "50.0", - "x": 10.0833, - "y": 16.943 - }, - { - "l": "50.0", - "x": 10.1667, - "y": 16.99 - }, - { - "l": "50.0", - "x": 10.25, - "y": 17.036 - }, - { - "l": "50.0", - "x": 10.3333, - "y": 17.083 - }, - { - "l": "50.0", - "x": 10.4167, - "y": 17.131 - }, - { - "l": "50.0", - "x": 10.5, - "y": 17.179 - }, - { - "l": "50.0", - "x": 10.5833, - "y": 17.227 - }, - { - "l": "50.0", - "x": 10.6667, - "y": 17.277 - }, - { - "l": "50.0", - "x": 10.75, - "y": 17.327 - }, - { - "l": "50.0", - "x": 10.8333, - "y": 17.377 - }, - { - "l": "50.0", - "x": 10.9167, - "y": 17.427 - }, - { - "l": "50.0", - "x": 11.0, - "y": 17.478 - }, - { - "l": "50.0", - "x": 11.0833, - "y": 17.53 - }, - { - "l": "50.0", - "x": 11.1667, - "y": 17.581 - }, - { - "l": "50.0", - "x": 11.25, - "y": 17.634 - }, - { - "l": "50.0", - "x": 11.3333, - "y": 17.687 - }, - { - "l": "50.0", - "x": 11.4167, - "y": 17.739 - }, - { - "l": "50.0", - "x": 11.5, - "y": 17.793 - }, - { - "l": "50.0", - "x": 11.5833, - "y": 17.846 - }, - { - "l": "50.0", - "x": 11.6667, - "y": 17.9 - }, - { - "l": "50.0", - "x": 11.75, - "y": 17.954 - }, - { - "l": "50.0", - "x": 11.8333, - "y": 18.008 - }, - { - "l": "50.0", - "x": 11.9167, - "y": 18.062 - }, - { - "l": "50.0", - "x": 12.0, - "y": 18.117 - }, - { - "l": "50.0", - "x": 12.0833, - "y": 18.172 - }, - { - "l": "50.0", - "x": 12.1667, - "y": 18.227 - }, - { - "l": "50.0", - "x": 12.25, - "y": 18.281 - }, - { - "l": "50.0", - "x": 12.3333, - "y": 18.337 - }, - { - "l": "50.0", - "x": 12.4167, - "y": 18.391 - }, - { - "l": "50.0", - "x": 12.5, - "y": 18.446 - }, - { - "l": "50.0", - "x": 12.5833, - "y": 18.5 - }, - { - "l": "50.0", - "x": 12.6667, - "y": 18.555 - }, - { - "l": "50.0", - "x": 12.75, - "y": 18.61 - }, - { - "l": "50.0", - "x": 12.8333, - "y": 18.664 - }, - { - "l": "50.0", - "x": 12.9167, - "y": 18.718 - }, - { - "l": "50.0", - "x": 13.0, - "y": 18.772 - }, - { - "l": "50.0", - "x": 13.0833, - "y": 18.825 - }, - { - "l": "50.0", - "x": 13.1667, - "y": 18.88 - }, - { - "l": "50.0", - "x": 13.25, - "y": 18.932 - }, - { - "l": "50.0", - "x": 13.3333, - "y": 18.985 - }, - { - "l": "50.0", - "x": 13.4167, - "y": 19.038 - }, - { - "l": "50.0", - "x": 13.5, - "y": 19.09 - }, - { - "l": "50.0", - "x": 13.5833, - "y": 19.142 - }, - { - "l": "50.0", - "x": 13.6667, - "y": 19.194 - }, - { - "l": "50.0", - "x": 13.75, - "y": 19.244 - }, - { - "l": "50.0", - "x": 13.8333, - "y": 19.295 - }, - { - "l": "50.0", - "x": 13.9167, - "y": 19.345 - }, - { - "l": "50.0", - "x": 14.0, - "y": 19.395 - }, - { - "l": "50.0", - "x": 14.0833, - "y": 19.445 - }, - { - "l": "50.0", - "x": 14.1667, - "y": 19.493 - }, - { - "l": "50.0", - "x": 14.25, - "y": 19.542 - }, - { - "l": "50.0", - "x": 14.3333, - "y": 19.589 - }, - { - "l": "50.0", - "x": 14.4167, - "y": 19.637 - }, - { - "l": "50.0", - "x": 14.5, - "y": 19.684 - }, - { - "l": "50.0", - "x": 14.5833, - "y": 19.73 - }, - { - "l": "50.0", - "x": 14.6667, - "y": 19.776 - }, - { - "l": "50.0", - "x": 14.75, - "y": 19.822 - }, - { - "l": "50.0", - "x": 14.8333, - "y": 19.866 - }, - { - "l": "50.0", - "x": 14.9167, - "y": 19.911 - }, - { - "l": "50.0", - "x": 15.0, - "y": 19.955 - }, - { - "l": "50.0", - "x": 15.0833, - "y": 19.998 - }, - { - "l": "50.0", - "x": 15.1667, - "y": 20.041 - }, - { - "l": "50.0", - "x": 15.25, - "y": 20.083 - }, - { - "l": "50.0", - "x": 15.3333, - "y": 20.124 - }, - { - "l": "50.0", - "x": 15.4167, - "y": 20.166 - }, - { - "l": "50.0", - "x": 15.5, - "y": 20.206 - }, - { - "l": "50.0", - "x": 15.5833, - "y": 20.246 - }, - { - "l": "50.0", - "x": 15.6667, - "y": 20.285 - }, - { - "l": "50.0", - "x": 15.75, - "y": 20.324 - }, - { - "l": "50.0", - "x": 15.8333, - "y": 20.363 - }, - { - "l": "50.0", - "x": 15.9167, - "y": 20.401 - }, - { - "l": "50.0", - "x": 16.0, - "y": 20.438 - }, - { - "l": "50.0", - "x": 16.0833, - "y": 20.475 - }, - { - "l": "50.0", - "x": 16.1667, - "y": 20.511 - }, - { - "l": "50.0", - "x": 16.25, - "y": 20.547 - }, - { - "l": "50.0", - "x": 16.3333, - "y": 20.582 - }, - { - "l": "50.0", - "x": 16.4167, - "y": 20.617 - }, - { - "l": "50.0", - "x": 16.5, - "y": 20.652 - }, - { - "l": "50.0", - "x": 16.5833, - "y": 20.685 - }, - { - "l": "50.0", - "x": 16.6667, - "y": 20.718 - }, - { - "l": "50.0", - "x": 16.75, - "y": 20.751 - }, - { - "l": "50.0", - "x": 16.8333, - "y": 20.783 - }, - { - "l": "50.0", - "x": 16.9167, - "y": 20.816 - }, - { - "l": "50.0", - "x": 17.0, - "y": 20.847 - }, - { - "l": "50.0", - "x": 17.0833, - "y": 20.878 - }, - { - "l": "50.0", - "x": 17.1667, - "y": 20.908 - }, - { - "l": "50.0", - "x": 17.25, - "y": 20.938 - }, - { - "l": "50.0", - "x": 17.3333, - "y": 20.968 - }, - { - "l": "50.0", - "x": 17.4167, - "y": 20.997 - }, - { - "l": "50.0", - "x": 17.5, - "y": 21.026 - }, - { - "l": "50.0", - "x": 17.5833, - "y": 21.054 - }, - { - "l": "50.0", - "x": 17.6667, - "y": 21.082 - }, - { - "l": "50.0", - "x": 17.75, - "y": 21.11 - }, - { - "l": "50.0", - "x": 17.8333, - "y": 21.137 - }, - { - "l": "50.0", - "x": 17.9167, - "y": 21.164 - }, - { - "l": "50.0", - "x": 18.0, - "y": 21.19 - }, - { - "l": "50.0", - "x": 18.0833, - "y": 21.216 - }, - { - "l": "50.0", - "x": 18.1667, - "y": 21.242 - }, - { - "l": "50.0", - "x": 18.25, - "y": 21.267 - }, - { - "l": "50.0", - "x": 18.3333, - "y": 21.293 - }, - { - "l": "50.0", - "x": 18.4167, - "y": 21.317 - }, - { - "l": "50.0", - "x": 18.5, - "y": 21.342 - }, - { - "l": "50.0", - "x": 18.5833, - "y": 21.366 - }, - { - "l": "50.0", - "x": 18.6667, - "y": 21.39 - }, - { - "l": "50.0", - "x": 18.75, - "y": 21.413 - }, - { - "l": "50.0", - "x": 18.8333, - "y": 21.436 - }, - { - "l": "50.0", - "x": 18.9167, - "y": 21.459 - }, - { - "l": "50.0", - "x": 19.0, - "y": 21.482 - }, - { - "l": "50.0", - "x": 19.0833, - "y": 21.504 - }, - { - "l": "50.0", - "x": 19.1667, - "y": 21.527 - }, - { - "l": "50.0", - "x": 19.25, - "y": 21.548 - }, - { - "l": "50.0", - "x": 19.3333, - "y": 21.57 - }, - { - "l": "50.0", - "x": 19.4167, - "y": 21.591 - }, - { - "l": "50.0", - "x": 19.5, - "y": 21.612 - }, - { - "l": "50.0", - "x": 19.5833, - "y": 21.633 - }, - { - "l": "50.0", - "x": 19.6667, - "y": 21.653 - }, - { - "l": "50.0", - "x": 19.75, - "y": 21.674 - }, - { - "l": "50.0", - "x": 19.8333, - "y": 21.695 - }, - { - "l": "50.0", - "x": 19.9167, - "y": 21.715 - }, - { - "l": "50.0", - "x": 20.0, - "y": 21.735 - }, - { - "l": "50.0", - "x": 20.0, - "y": 21.735 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 4.0, - "y": 16.6279 - }, - { - "l": "75.0", - "x": 4.0833, - "y": 16.615 - }, - { - "l": "75.0", - "x": 4.1667, - "y": 16.6024 - }, - { - "l": "75.0", - "x": 4.25, - "y": 16.5899 - }, - { - "l": "75.0", - "x": 4.3333, - "y": 16.5786 - }, - { - "l": "75.0", - "x": 4.4167, - "y": 16.5675 - }, - { - "l": "75.0", - "x": 4.5, - "y": 16.5566 - }, - { - "l": "75.0", - "x": 4.5833, - "y": 16.5467 - }, - { - "l": "75.0", - "x": 4.6667, - "y": 16.5382 - }, - { - "l": "75.0", - "x": 4.75, - "y": 16.531 - }, - { - "l": "75.0", - "x": 4.8333, - "y": 16.5248 - }, - { - "l": "75.0", - "x": 4.9167, - "y": 16.5199 - }, - { - "l": "75.0", - "x": 5.0, - "y": 16.5172 - }, - { - "l": "75.0", - "x": 5.0833, - "y": 16.5157 - }, - { - "l": "75.0", - "x": 5.1667, - "y": 16.5155 - }, - { - "l": "75.0", - "x": 5.25, - "y": 16.5175 - }, - { - "l": "75.0", - "x": 5.3333, - "y": 16.5217 - }, - { - "l": "75.0", - "x": 5.4167, - "y": 16.5259 - }, - { - "l": "75.0", - "x": 5.5, - "y": 16.5335 - }, - { - "l": "75.0", - "x": 5.5833, - "y": 16.5424 - }, - { - "l": "75.0", - "x": 5.6667, - "y": 16.5533 - }, - { - "l": "75.0", - "x": 5.75, - "y": 16.5654 - }, - { - "l": "75.0", - "x": 5.8333, - "y": 16.5788 - }, - { - "l": "75.0", - "x": 5.9167, - "y": 16.5942 - }, - { - "l": "75.0", - "x": 6.0, - "y": 16.6108 - }, - { - "l": "75.0", - "x": 6.0833, - "y": 16.6286 - }, - { - "l": "75.0", - "x": 6.1667, - "y": 16.6496 - }, - { - "l": "75.0", - "x": 6.25, - "y": 16.6696 - }, - { - "l": "75.0", - "x": 6.3333, - "y": 16.6918 - }, - { - "l": "75.0", - "x": 6.4167, - "y": 16.715 - }, - { - "l": "75.0", - "x": 6.5, - "y": 16.7404 - }, - { - "l": "75.0", - "x": 6.5833, - "y": 16.767 - }, - { - "l": "75.0", - "x": 6.6667, - "y": 16.7958 - }, - { - "l": "75.0", - "x": 6.75, - "y": 16.8233 - }, - { - "l": "75.0", - "x": 6.8333, - "y": 16.8542 - }, - { - "l": "75.0", - "x": 6.9167, - "y": 16.8849 - }, - { - "l": "75.0", - "x": 7.0, - "y": 16.9158 - }, - { - "l": "75.0", - "x": 7.0833, - "y": 16.9488 - }, - { - "l": "75.0", - "x": 7.1667, - "y": 16.9816 - }, - { - "l": "75.0", - "x": 7.25, - "y": 17.0167 - }, - { - "l": "75.0", - "x": 7.3333, - "y": 17.0505 - }, - { - "l": "75.0", - "x": 7.4167, - "y": 17.0864 - }, - { - "l": "75.0", - "x": 7.5, - "y": 17.1224 - }, - { - "l": "75.0", - "x": 7.5833, - "y": 17.1583 - }, - { - "l": "75.0", - "x": 7.6667, - "y": 17.195 - }, - { - "l": "75.0", - "x": 7.75, - "y": 17.2328 - }, - { - "l": "75.0", - "x": 7.8333, - "y": 17.2716 - }, - { - "l": "75.0", - "x": 7.9167, - "y": 17.3103 - }, - { - "l": "75.0", - "x": 8.0, - "y": 17.3501 - }, - { - "l": "75.0", - "x": 8.0833, - "y": 17.3885 - }, - { - "l": "75.0", - "x": 8.1667, - "y": 17.4302 - }, - { - "l": "75.0", - "x": 8.25, - "y": 17.4705 - }, - { - "l": "75.0", - "x": 8.3333, - "y": 17.513 - }, - { - "l": "75.0", - "x": 8.4167, - "y": 17.5543 - }, - { - "l": "75.0", - "x": 8.5, - "y": 17.5977 - }, - { - "l": "75.0", - "x": 8.5833, - "y": 17.6409 - }, - { - "l": "75.0", - "x": 8.6667, - "y": 17.685 - }, - { - "l": "75.0", - "x": 8.75, - "y": 17.7292 - }, - { - "l": "75.0", - "x": 8.8333, - "y": 17.7741 - }, - { - "l": "75.0", - "x": 8.9167, - "y": 17.82 - }, - { - "l": "75.0", - "x": 9.0, - "y": 17.8669 - }, - { - "l": "75.0", - "x": 9.0833, - "y": 17.9138 - }, - { - "l": "75.0", - "x": 9.1667, - "y": 17.9602 - }, - { - "l": "75.0", - "x": 9.25, - "y": 18.009 - }, - { - "l": "75.0", - "x": 9.3333, - "y": 18.0575 - }, - { - "l": "75.0", - "x": 9.4167, - "y": 18.107 - }, - { - "l": "75.0", - "x": 9.5, - "y": 18.1563 - }, - { - "l": "75.0", - "x": 9.5833, - "y": 18.2065 - }, - { - "l": "75.0", - "x": 9.6667, - "y": 18.2578 - }, - { - "l": "75.0", - "x": 9.75, - "y": 18.3088 - }, - { - "l": "75.0", - "x": 9.8333, - "y": 18.3609 - }, - { - "l": "75.0", - "x": 9.9167, - "y": 18.4127 - }, - { - "l": "75.0", - "x": 10.0, - "y": 18.4656 - }, - { - "l": "75.0", - "x": 10.0833, - "y": 18.5183 - }, - { - "l": "75.0", - "x": 10.1667, - "y": 18.5731 - }, - { - "l": "75.0", - "x": 10.25, - "y": 18.6266 - }, - { - "l": "75.0", - "x": 10.3333, - "y": 18.681 - }, - { - "l": "75.0", - "x": 10.4167, - "y": 18.7365 - }, - { - "l": "75.0", - "x": 10.5, - "y": 18.7918 - }, - { - "l": "75.0", - "x": 10.5833, - "y": 18.8469 - }, - { - "l": "75.0", - "x": 10.6667, - "y": 18.9042 - }, - { - "l": "75.0", - "x": 10.75, - "y": 18.9612 - }, - { - "l": "75.0", - "x": 10.8333, - "y": 19.0182 - }, - { - "l": "75.0", - "x": 10.9167, - "y": 19.075 - }, - { - "l": "75.0", - "x": 11.0, - "y": 19.1328 - }, - { - "l": "75.0", - "x": 11.0833, - "y": 19.1916 - }, - { - "l": "75.0", - "x": 11.1667, - "y": 19.2492 - }, - { - "l": "75.0", - "x": 11.25, - "y": 19.3087 - }, - { - "l": "75.0", - "x": 11.3333, - "y": 19.3682 - }, - { - "l": "75.0", - "x": 11.4167, - "y": 19.4266 - }, - { - "l": "75.0", - "x": 11.5, - "y": 19.4869 - }, - { - "l": "75.0", - "x": 11.5833, - "y": 19.546 - }, - { - "l": "75.0", - "x": 11.6667, - "y": 19.6063 - }, - { - "l": "75.0", - "x": 11.75, - "y": 19.6663 - }, - { - "l": "75.0", - "x": 11.8333, - "y": 19.7263 - }, - { - "l": "75.0", - "x": 11.9167, - "y": 19.7861 - }, - { - "l": "75.0", - "x": 12.0, - "y": 19.847 - }, - { - "l": "75.0", - "x": 12.0833, - "y": 19.9076 - }, - { - "l": "75.0", - "x": 12.1667, - "y": 19.9684 - }, - { - "l": "75.0", - "x": 12.25, - "y": 20.0278 - }, - { - "l": "75.0", - "x": 12.3333, - "y": 20.0895 - }, - { - "l": "75.0", - "x": 12.4167, - "y": 20.1488 - }, - { - "l": "75.0", - "x": 12.5, - "y": 20.2091 - }, - { - "l": "75.0", - "x": 12.5833, - "y": 20.2684 - }, - { - "l": "75.0", - "x": 12.6667, - "y": 20.3284 - }, - { - "l": "75.0", - "x": 12.75, - "y": 20.3887 - }, - { - "l": "75.0", - "x": 12.8333, - "y": 20.4477 - }, - { - "l": "75.0", - "x": 12.9167, - "y": 20.5066 - }, - { - "l": "75.0", - "x": 13.0, - "y": 20.5654 - }, - { - "l": "75.0", - "x": 13.0833, - "y": 20.6231 - }, - { - "l": "75.0", - "x": 13.1667, - "y": 20.6829 - }, - { - "l": "75.0", - "x": 13.25, - "y": 20.7396 - }, - { - "l": "75.0", - "x": 13.3333, - "y": 20.797 - }, - { - "l": "75.0", - "x": 13.4167, - "y": 20.8546 - }, - { - "l": "75.0", - "x": 13.5, - "y": 20.911 - }, - { - "l": "75.0", - "x": 13.5833, - "y": 20.9673 - }, - { - "l": "75.0", - "x": 13.6667, - "y": 21.0236 - }, - { - "l": "75.0", - "x": 13.75, - "y": 21.0777 - }, - { - "l": "75.0", - "x": 13.8333, - "y": 21.1329 - }, - { - "l": "75.0", - "x": 13.9167, - "y": 21.1868 - }, - { - "l": "75.0", - "x": 14.0, - "y": 21.2408 - }, - { - "l": "75.0", - "x": 14.0833, - "y": 21.2946 - }, - { - "l": "75.0", - "x": 14.1667, - "y": 21.3465 - }, - { - "l": "75.0", - "x": 14.25, - "y": 21.3991 - }, - { - "l": "75.0", - "x": 14.3333, - "y": 21.4498 - }, - { - "l": "75.0", - "x": 14.4167, - "y": 21.5014 - }, - { - "l": "75.0", - "x": 14.5, - "y": 21.5519 - }, - { - "l": "75.0", - "x": 14.5833, - "y": 21.6014 - }, - { - "l": "75.0", - "x": 14.6667, - "y": 21.6508 - }, - { - "l": "75.0", - "x": 14.75, - "y": 21.7001 - }, - { - "l": "75.0", - "x": 14.8333, - "y": 21.7472 - }, - { - "l": "75.0", - "x": 14.9167, - "y": 21.7956 - }, - { - "l": "75.0", - "x": 15.0, - "y": 21.8426 - }, - { - "l": "75.0", - "x": 15.0833, - "y": 21.8887 - }, - { - "l": "75.0", - "x": 15.1667, - "y": 21.9346 - }, - { - "l": "75.0", - "x": 15.25, - "y": 21.9795 - }, - { - "l": "75.0", - "x": 15.3333, - "y": 22.0234 - }, - { - "l": "75.0", - "x": 15.4167, - "y": 22.0683 - }, - { - "l": "75.0", - "x": 15.5, - "y": 22.1109 - }, - { - "l": "75.0", - "x": 15.5833, - "y": 22.1537 - }, - { - "l": "75.0", - "x": 15.6667, - "y": 22.1953 - }, - { - "l": "75.0", - "x": 15.75, - "y": 22.2368 - }, - { - "l": "75.0", - "x": 15.8333, - "y": 22.2786 - }, - { - "l": "75.0", - "x": 15.9167, - "y": 22.3189 - }, - { - "l": "75.0", - "x": 16.0, - "y": 22.3585 - }, - { - "l": "75.0", - "x": 16.0833, - "y": 22.3979 - }, - { - "l": "75.0", - "x": 16.1667, - "y": 22.4361 - }, - { - "l": "75.0", - "x": 16.25, - "y": 22.4745 - }, - { - "l": "75.0", - "x": 16.3333, - "y": 22.5117 - }, - { - "l": "75.0", - "x": 16.4167, - "y": 22.549 - }, - { - "l": "75.0", - "x": 16.5, - "y": 22.5861 - }, - { - "l": "75.0", - "x": 16.5833, - "y": 22.6213 - }, - { - "l": "75.0", - "x": 16.6667, - "y": 22.6562 - }, - { - "l": "75.0", - "x": 16.75, - "y": 22.6913 - }, - { - "l": "75.0", - "x": 16.8333, - "y": 22.7254 - }, - { - "l": "75.0", - "x": 16.9167, - "y": 22.7603 - }, - { - "l": "75.0", - "x": 17.0, - "y": 22.7932 - }, - { - "l": "75.0", - "x": 17.0833, - "y": 22.8262 - }, - { - "l": "75.0", - "x": 17.1667, - "y": 22.8579 - }, - { - "l": "75.0", - "x": 17.25, - "y": 22.8898 - }, - { - "l": "75.0", - "x": 17.3333, - "y": 22.9217 - }, - { - "l": "75.0", - "x": 17.4167, - "y": 22.9524 - }, - { - "l": "75.0", - "x": 17.5, - "y": 22.9829 - }, - { - "l": "75.0", - "x": 17.5833, - "y": 23.0127 - }, - { - "l": "75.0", - "x": 17.6667, - "y": 23.0422 - }, - { - "l": "75.0", - "x": 17.75, - "y": 23.0719 - }, - { - "l": "75.0", - "x": 17.8333, - "y": 23.1005 - }, - { - "l": "75.0", - "x": 17.9167, - "y": 23.1291 - }, - { - "l": "75.0", - "x": 18.0, - "y": 23.1565 - }, - { - "l": "75.0", - "x": 18.0833, - "y": 23.1841 - }, - { - "l": "75.0", - "x": 18.1667, - "y": 23.2115 - }, - { - "l": "75.0", - "x": 18.25, - "y": 23.2379 - }, - { - "l": "75.0", - "x": 18.3333, - "y": 23.2655 - }, - { - "l": "75.0", - "x": 18.4167, - "y": 23.2908 - }, - { - "l": "75.0", - "x": 18.5, - "y": 23.3172 - }, - { - "l": "75.0", - "x": 18.5833, - "y": 23.3426 - }, - { - "l": "75.0", - "x": 18.6667, - "y": 23.3679 - }, - { - "l": "75.0", - "x": 18.75, - "y": 23.3922 - }, - { - "l": "75.0", - "x": 18.8333, - "y": 23.4165 - }, - { - "l": "75.0", - "x": 18.9167, - "y": 23.4406 - }, - { - "l": "75.0", - "x": 19.0, - "y": 23.465 - }, - { - "l": "75.0", - "x": 19.0833, - "y": 23.4882 - }, - { - "l": "75.0", - "x": 19.1667, - "y": 23.5125 - }, - { - "l": "75.0", - "x": 19.25, - "y": 23.5346 - }, - { - "l": "75.0", - "x": 19.3333, - "y": 23.5577 - }, - { - "l": "75.0", - "x": 19.4167, - "y": 23.58 - }, - { - "l": "75.0", - "x": 19.5, - "y": 23.6021 - }, - { - "l": "75.0", - "x": 19.5833, - "y": 23.6243 - }, - { - "l": "75.0", - "x": 19.6667, - "y": 23.6452 - }, - { - "l": "75.0", - "x": 19.75, - "y": 23.6674 - }, - { - "l": "75.0", - "x": 19.8333, - "y": 23.6895 - }, - { - "l": "75.0", - "x": 19.9167, - "y": 23.7105 - }, - { - "l": "75.0", - "x": 20.0, - "y": 23.7316 - }, - { - "l": "75.0", - "x": 20.0, - "y": 23.7316 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 4.0, - "y": 17.7395 - }, - { - "l": "91.0", - "x": 4.0833, - "y": 17.7326 - }, - { - "l": "91.0", - "x": 4.1667, - "y": 17.7263 - }, - { - "l": "91.0", - "x": 4.25, - "y": 17.7205 - }, - { - "l": "91.0", - "x": 4.3333, - "y": 17.7158 - }, - { - "l": "91.0", - "x": 4.4167, - "y": 17.7117 - }, - { - "l": "91.0", - "x": 4.5, - "y": 17.7082 - }, - { - "l": "91.0", - "x": 4.5833, - "y": 17.7059 - }, - { - "l": "91.0", - "x": 4.6667, - "y": 17.7051 - }, - { - "l": "91.0", - "x": 4.75, - "y": 17.7061 - }, - { - "l": "91.0", - "x": 4.8333, - "y": 17.7082 - }, - { - "l": "91.0", - "x": 4.9167, - "y": 17.7122 - }, - { - "l": "91.0", - "x": 5.0, - "y": 17.7183 - }, - { - "l": "91.0", - "x": 5.0833, - "y": 17.7262 - }, - { - "l": "91.0", - "x": 5.1667, - "y": 17.7357 - }, - { - "l": "91.0", - "x": 5.25, - "y": 17.7477 - }, - { - "l": "91.0", - "x": 5.3333, - "y": 17.762 - }, - { - "l": "91.0", - "x": 5.4167, - "y": 17.7764 - }, - { - "l": "91.0", - "x": 5.5, - "y": 17.7949 - }, - { - "l": "91.0", - "x": 5.5833, - "y": 17.8148 - }, - { - "l": "91.0", - "x": 5.6667, - "y": 17.8372 - }, - { - "l": "91.0", - "x": 5.75, - "y": 17.8605 - }, - { - "l": "91.0", - "x": 5.8333, - "y": 17.8859 - }, - { - "l": "91.0", - "x": 5.9167, - "y": 17.9132 - }, - { - "l": "91.0", - "x": 6.0, - "y": 17.942 - }, - { - "l": "91.0", - "x": 6.0833, - "y": 17.9724 - }, - { - "l": "91.0", - "x": 6.1667, - "y": 18.0062 - }, - { - "l": "91.0", - "x": 6.25, - "y": 18.0389 - }, - { - "l": "91.0", - "x": 6.3333, - "y": 18.0742 - }, - { - "l": "91.0", - "x": 6.4167, - "y": 18.1105 - }, - { - "l": "91.0", - "x": 6.5, - "y": 18.1496 - }, - { - "l": "91.0", - "x": 6.5833, - "y": 18.1897 - }, - { - "l": "91.0", - "x": 6.6667, - "y": 18.2324 - }, - { - "l": "91.0", - "x": 6.75, - "y": 18.2736 - }, - { - "l": "91.0", - "x": 6.8333, - "y": 18.3185 - }, - { - "l": "91.0", - "x": 6.9167, - "y": 18.3631 - }, - { - "l": "91.0", - "x": 7.0, - "y": 18.4082 - }, - { - "l": "91.0", - "x": 7.0833, - "y": 18.4555 - }, - { - "l": "91.0", - "x": 7.1667, - "y": 18.5023 - }, - { - "l": "91.0", - "x": 7.25, - "y": 18.5518 - }, - { - "l": "91.0", - "x": 7.3333, - "y": 18.5998 - }, - { - "l": "91.0", - "x": 7.4167, - "y": 18.6499 - }, - { - "l": "91.0", - "x": 7.5, - "y": 18.7001 - }, - { - "l": "91.0", - "x": 7.5833, - "y": 18.7501 - }, - { - "l": "91.0", - "x": 7.6667, - "y": 18.8009 - }, - { - "l": "91.0", - "x": 7.75, - "y": 18.8526 - }, - { - "l": "91.0", - "x": 7.8333, - "y": 18.9056 - }, - { - "l": "91.0", - "x": 7.9167, - "y": 18.9581 - }, - { - "l": "91.0", - "x": 8.0, - "y": 19.0119 - }, - { - "l": "91.0", - "x": 8.0833, - "y": 19.0637 - }, - { - "l": "91.0", - "x": 8.1667, - "y": 19.1192 - }, - { - "l": "91.0", - "x": 8.25, - "y": 19.1729 - }, - { - "l": "91.0", - "x": 8.3333, - "y": 19.2288 - }, - { - "l": "91.0", - "x": 8.4167, - "y": 19.2833 - }, - { - "l": "91.0", - "x": 8.5, - "y": 19.3403 - }, - { - "l": "91.0", - "x": 8.5833, - "y": 19.3964 - }, - { - "l": "91.0", - "x": 8.6667, - "y": 19.4534 - }, - { - "l": "91.0", - "x": 8.75, - "y": 19.5106 - }, - { - "l": "91.0", - "x": 8.8333, - "y": 19.568 - }, - { - "l": "91.0", - "x": 8.9167, - "y": 19.6264 - }, - { - "l": "91.0", - "x": 9.0, - "y": 19.6857 - }, - { - "l": "91.0", - "x": 9.0833, - "y": 19.7451 - }, - { - "l": "91.0", - "x": 9.1667, - "y": 19.8033 - }, - { - "l": "91.0", - "x": 9.25, - "y": 19.8643 - }, - { - "l": "91.0", - "x": 9.3333, - "y": 19.9246 - }, - { - "l": "91.0", - "x": 9.4167, - "y": 19.9859 - }, - { - "l": "91.0", - "x": 9.5, - "y": 20.0466 - }, - { - "l": "91.0", - "x": 9.5833, - "y": 20.1082 - }, - { - "l": "91.0", - "x": 9.6667, - "y": 20.1707 - }, - { - "l": "91.0", - "x": 9.75, - "y": 20.2326 - }, - { - "l": "91.0", - "x": 9.8333, - "y": 20.2957 - }, - { - "l": "91.0", - "x": 9.9167, - "y": 20.3583 - }, - { - "l": "91.0", - "x": 10.0, - "y": 20.4217 - }, - { - "l": "91.0", - "x": 10.0833, - "y": 20.4848 - }, - { - "l": "91.0", - "x": 10.1667, - "y": 20.5501 - }, - { - "l": "91.0", - "x": 10.25, - "y": 20.6138 - }, - { - "l": "91.0", - "x": 10.3333, - "y": 20.6777 - }, - { - "l": "91.0", - "x": 10.4167, - "y": 20.7432 - }, - { - "l": "91.0", - "x": 10.5, - "y": 20.8085 - }, - { - "l": "91.0", - "x": 10.5833, - "y": 20.8726 - }, - { - "l": "91.0", - "x": 10.6667, - "y": 20.9396 - }, - { - "l": "91.0", - "x": 10.75, - "y": 21.0055 - }, - { - "l": "91.0", - "x": 10.8333, - "y": 21.0718 - }, - { - "l": "91.0", - "x": 10.9167, - "y": 21.1371 - }, - { - "l": "91.0", - "x": 11.0, - "y": 21.2035 - }, - { - "l": "91.0", - "x": 11.0833, - "y": 21.2713 - }, - { - "l": "91.0", - "x": 11.1667, - "y": 21.3371 - }, - { - "l": "91.0", - "x": 11.25, - "y": 21.405 - }, - { - "l": "91.0", - "x": 11.3333, - "y": 21.4726 - }, - { - "l": "91.0", - "x": 11.4167, - "y": 21.5389 - }, - { - "l": "91.0", - "x": 11.5, - "y": 21.6069 - }, - { - "l": "91.0", - "x": 11.5833, - "y": 21.6738 - }, - { - "l": "91.0", - "x": 11.6667, - "y": 21.7419 - }, - { - "l": "91.0", - "x": 11.75, - "y": 21.8092 - }, - { - "l": "91.0", - "x": 11.8333, - "y": 21.8766 - }, - { - "l": "91.0", - "x": 11.9167, - "y": 21.9435 - }, - { - "l": "91.0", - "x": 12.0, - "y": 22.0113 - }, - { - "l": "91.0", - "x": 12.0833, - "y": 22.0788 - }, - { - "l": "91.0", - "x": 12.1667, - "y": 22.1466 - }, - { - "l": "91.0", - "x": 12.25, - "y": 22.2125 - }, - { - "l": "91.0", - "x": 12.3333, - "y": 22.2808 - }, - { - "l": "91.0", - "x": 12.4167, - "y": 22.3462 - }, - { - "l": "91.0", - "x": 12.5, - "y": 22.4129 - }, - { - "l": "91.0", - "x": 12.5833, - "y": 22.4784 - }, - { - "l": "91.0", - "x": 12.6667, - "y": 22.5443 - }, - { - "l": "91.0", - "x": 12.75, - "y": 22.6106 - }, - { - "l": "91.0", - "x": 12.8333, - "y": 22.6753 - }, - { - "l": "91.0", - "x": 12.9167, - "y": 22.74 - }, - { - "l": "91.0", - "x": 13.0, - "y": 22.8043 - }, - { - "l": "91.0", - "x": 13.0833, - "y": 22.8673 - }, - { - "l": "91.0", - "x": 13.1667, - "y": 22.9324 - }, - { - "l": "91.0", - "x": 13.25, - "y": 22.9947 - }, - { - "l": "91.0", - "x": 13.3333, - "y": 23.057 - }, - { - "l": "91.0", - "x": 13.4167, - "y": 23.1196 - }, - { - "l": "91.0", - "x": 13.5, - "y": 23.1811 - }, - { - "l": "91.0", - "x": 13.5833, - "y": 23.2421 - }, - { - "l": "91.0", - "x": 13.6667, - "y": 23.3031 - }, - { - "l": "91.0", - "x": 13.75, - "y": 23.3617 - }, - { - "l": "91.0", - "x": 13.8333, - "y": 23.4215 - }, - { - "l": "91.0", - "x": 13.9167, - "y": 23.4796 - }, - { - "l": "91.0", - "x": 14.0, - "y": 23.5382 - }, - { - "l": "91.0", - "x": 14.0833, - "y": 23.5959 - }, - { - "l": "91.0", - "x": 14.1667, - "y": 23.6521 - }, - { - "l": "91.0", - "x": 14.25, - "y": 23.7085 - }, - { - "l": "91.0", - "x": 14.3333, - "y": 23.763 - }, - { - "l": "91.0", - "x": 14.4167, - "y": 23.8187 - }, - { - "l": "91.0", - "x": 14.5, - "y": 23.8727 - }, - { - "l": "91.0", - "x": 14.5833, - "y": 23.926 - }, - { - "l": "91.0", - "x": 14.6667, - "y": 23.9788 - }, - { - "l": "91.0", - "x": 14.75, - "y": 24.0316 - }, - { - "l": "91.0", - "x": 14.8333, - "y": 24.082 - }, - { - "l": "91.0", - "x": 14.9167, - "y": 24.134 - }, - { - "l": "91.0", - "x": 15.0, - "y": 24.1839 - }, - { - "l": "91.0", - "x": 15.0833, - "y": 24.2335 - }, - { - "l": "91.0", - "x": 15.1667, - "y": 24.2821 - }, - { - "l": "91.0", - "x": 15.25, - "y": 24.3301 - }, - { - "l": "91.0", - "x": 15.3333, - "y": 24.3767 - }, - { - "l": "91.0", - "x": 15.4167, - "y": 24.4246 - }, - { - "l": "91.0", - "x": 15.5, - "y": 24.4696 - }, - { - "l": "91.0", - "x": 15.5833, - "y": 24.5155 - }, - { - "l": "91.0", - "x": 15.6667, - "y": 24.5598 - }, - { - "l": "91.0", - "x": 15.75, - "y": 24.6035 - }, - { - "l": "91.0", - "x": 15.8333, - "y": 24.6482 - }, - { - "l": "91.0", - "x": 15.9167, - "y": 24.6907 - }, - { - "l": "91.0", - "x": 16.0, - "y": 24.7329 - }, - { - "l": "91.0", - "x": 16.0833, - "y": 24.7747 - }, - { - "l": "91.0", - "x": 16.1667, - "y": 24.8148 - }, - { - "l": "91.0", - "x": 16.25, - "y": 24.8557 - }, - { - "l": "91.0", - "x": 16.3333, - "y": 24.8951 - }, - { - "l": "91.0", - "x": 16.4167, - "y": 24.9343 - }, - { - "l": "91.0", - "x": 16.5, - "y": 24.9737 - }, - { - "l": "91.0", - "x": 16.5833, - "y": 25.011 - }, - { - "l": "91.0", - "x": 16.6667, - "y": 25.0474 - }, - { - "l": "91.0", - "x": 16.75, - "y": 25.0847 - }, - { - "l": "91.0", - "x": 16.8333, - "y": 25.1208 - }, - { - "l": "91.0", - "x": 16.9167, - "y": 25.1571 - }, - { - "l": "91.0", - "x": 17.0, - "y": 25.192 - }, - { - "l": "91.0", - "x": 17.0833, - "y": 25.2269 - }, - { - "l": "91.0", - "x": 17.1667, - "y": 25.26 - }, - { - "l": "91.0", - "x": 17.25, - "y": 25.2937 - }, - { - "l": "91.0", - "x": 17.3333, - "y": 25.3273 - }, - { - "l": "91.0", - "x": 17.4167, - "y": 25.3597 - }, - { - "l": "91.0", - "x": 17.5, - "y": 25.3912 - }, - { - "l": "91.0", - "x": 17.5833, - "y": 25.4228 - }, - { - "l": "91.0", - "x": 17.6667, - "y": 25.4536 - }, - { - "l": "91.0", - "x": 17.75, - "y": 25.4847 - }, - { - "l": "91.0", - "x": 17.8333, - "y": 25.5147 - }, - { - "l": "91.0", - "x": 17.9167, - "y": 25.5447 - }, - { - "l": "91.0", - "x": 18.0, - "y": 25.5734 - }, - { - "l": "91.0", - "x": 18.0833, - "y": 25.6026 - }, - { - "l": "91.0", - "x": 18.1667, - "y": 25.6309 - }, - { - "l": "91.0", - "x": 18.25, - "y": 25.6584 - }, - { - "l": "91.0", - "x": 18.3333, - "y": 25.6876 - }, - { - "l": "91.0", - "x": 18.4167, - "y": 25.7139 - }, - { - "l": "91.0", - "x": 18.5, - "y": 25.7414 - }, - { - "l": "91.0", - "x": 18.5833, - "y": 25.7681 - }, - { - "l": "91.0", - "x": 18.6667, - "y": 25.7944 - }, - { - "l": "91.0", - "x": 18.75, - "y": 25.82 - }, - { - "l": "91.0", - "x": 18.8333, - "y": 25.845 - }, - { - "l": "91.0", - "x": 18.9167, - "y": 25.8701 - }, - { - "l": "91.0", - "x": 19.0, - "y": 25.8956 - }, - { - "l": "91.0", - "x": 19.0833, - "y": 25.9199 - }, - { - "l": "91.0", - "x": 19.1667, - "y": 25.9454 - }, - { - "l": "91.0", - "x": 19.25, - "y": 25.968 - }, - { - "l": "91.0", - "x": 19.3333, - "y": 25.9919 - }, - { - "l": "91.0", - "x": 19.4167, - "y": 26.0154 - }, - { - "l": "91.0", - "x": 19.5, - "y": 26.0385 - }, - { - "l": "91.0", - "x": 19.5833, - "y": 26.0616 - }, - { - "l": "91.0", - "x": 19.6667, - "y": 26.083 - }, - { - "l": "91.0", - "x": 19.75, - "y": 26.1061 - }, - { - "l": "91.0", - "x": 19.8333, - "y": 26.1291 - }, - { - "l": "91.0", - "x": 19.9167, - "y": 26.151 - }, - { - "l": "91.0", - "x": 20.0, - "y": 26.1729 - }, - { - "l": "91.0", - "x": 20.0, - "y": 26.1729 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 4.0, - "y": 19.0244 - }, - { - "l": "98.0", - "x": 4.0833, - "y": 19.0261 - }, - { - "l": "98.0", - "x": 4.1667, - "y": 19.0288 - }, - { - "l": "98.0", - "x": 4.25, - "y": 19.0326 - }, - { - "l": "98.0", - "x": 4.3333, - "y": 19.0376 - }, - { - "l": "98.0", - "x": 4.4167, - "y": 19.0437 - }, - { - "l": "98.0", - "x": 4.5, - "y": 19.0508 - }, - { - "l": "98.0", - "x": 4.5833, - "y": 19.0593 - }, - { - "l": "98.0", - "x": 4.6667, - "y": 19.0696 - }, - { - "l": "98.0", - "x": 4.75, - "y": 19.0827 - }, - { - "l": "98.0", - "x": 4.8333, - "y": 19.0966 - }, - { - "l": "98.0", - "x": 4.9167, - "y": 19.1134 - }, - { - "l": "98.0", - "x": 5.0, - "y": 19.1323 - }, - { - "l": "98.0", - "x": 5.0833, - "y": 19.1535 - }, - { - "l": "98.0", - "x": 5.1667, - "y": 19.1772 - }, - { - "l": "98.0", - "x": 5.25, - "y": 19.2035 - }, - { - "l": "98.0", - "x": 5.3333, - "y": 19.2324 - }, - { - "l": "98.0", - "x": 5.4167, - "y": 19.2615 - }, - { - "l": "98.0", - "x": 5.5, - "y": 19.2956 - }, - { - "l": "98.0", - "x": 5.5833, - "y": 19.3317 - }, - { - "l": "98.0", - "x": 5.6667, - "y": 19.3704 - }, - { - "l": "98.0", - "x": 5.75, - "y": 19.4102 - }, - { - "l": "98.0", - "x": 5.8333, - "y": 19.453 - }, - { - "l": "98.0", - "x": 5.9167, - "y": 19.4974 - }, - { - "l": "98.0", - "x": 6.0, - "y": 19.5439 - }, - { - "l": "98.0", - "x": 6.0833, - "y": 19.5925 - }, - { - "l": "98.0", - "x": 6.1667, - "y": 19.6452 - }, - { - "l": "98.0", - "x": 6.25, - "y": 19.6963 - }, - { - "l": "98.0", - "x": 6.3333, - "y": 19.7508 - }, - { - "l": "98.0", - "x": 6.4167, - "y": 19.8063 - }, - { - "l": "98.0", - "x": 6.5, - "y": 19.8653 - }, - { - "l": "98.0", - "x": 6.5833, - "y": 19.9251 - }, - { - "l": "98.0", - "x": 6.6667, - "y": 19.9886 - }, - { - "l": "98.0", - "x": 6.75, - "y": 20.0498 - }, - { - "l": "98.0", - "x": 6.8333, - "y": 20.1152 - }, - { - "l": "98.0", - "x": 6.9167, - "y": 20.1804 - }, - { - "l": "98.0", - "x": 7.0, - "y": 20.2465 - }, - { - "l": "98.0", - "x": 7.0833, - "y": 20.3149 - }, - { - "l": "98.0", - "x": 7.1667, - "y": 20.3823 - }, - { - "l": "98.0", - "x": 7.25, - "y": 20.4534 - }, - { - "l": "98.0", - "x": 7.3333, - "y": 20.5222 - }, - { - "l": "98.0", - "x": 7.4167, - "y": 20.5934 - }, - { - "l": "98.0", - "x": 7.5, - "y": 20.6648 - }, - { - "l": "98.0", - "x": 7.5833, - "y": 20.736 - }, - { - "l": "98.0", - "x": 7.6667, - "y": 20.8076 - }, - { - "l": "98.0", - "x": 7.75, - "y": 20.88 - }, - { - "l": "98.0", - "x": 7.8333, - "y": 20.9542 - }, - { - "l": "98.0", - "x": 7.9167, - "y": 21.0273 - }, - { - "l": "98.0", - "x": 8.0, - "y": 21.1022 - }, - { - "l": "98.0", - "x": 8.0833, - "y": 21.174 - }, - { - "l": "98.0", - "x": 8.1667, - "y": 21.2497 - }, - { - "l": "98.0", - "x": 8.25, - "y": 21.3234 - }, - { - "l": "98.0", - "x": 8.3333, - "y": 21.3994 - }, - { - "l": "98.0", - "x": 8.4167, - "y": 21.4734 - }, - { - "l": "98.0", - "x": 8.5, - "y": 21.5506 - }, - { - "l": "98.0", - "x": 8.5833, - "y": 21.6258 - }, - { - "l": "98.0", - "x": 8.6667, - "y": 21.7019 - }, - { - "l": "98.0", - "x": 8.75, - "y": 21.7786 - }, - { - "l": "98.0", - "x": 8.8333, - "y": 21.8546 - }, - { - "l": "98.0", - "x": 8.9167, - "y": 21.931 - }, - { - "l": "98.0", - "x": 9.0, - "y": 22.0087 - }, - { - "l": "98.0", - "x": 9.0833, - "y": 22.0867 - }, - { - "l": "98.0", - "x": 9.1667, - "y": 22.1617 - }, - { - "l": "98.0", - "x": 9.25, - "y": 22.2407 - }, - { - "l": "98.0", - "x": 9.3333, - "y": 22.3181 - }, - { - "l": "98.0", - "x": 9.4167, - "y": 22.3968 - }, - { - "l": "98.0", - "x": 9.5, - "y": 22.4739 - }, - { - "l": "98.0", - "x": 9.5833, - "y": 22.5517 - }, - { - "l": "98.0", - "x": 9.6667, - "y": 22.6304 - }, - { - "l": "98.0", - "x": 9.75, - "y": 22.7079 - }, - { - "l": "98.0", - "x": 9.8333, - "y": 22.7868 - }, - { - "l": "98.0", - "x": 9.9167, - "y": 22.8645 - }, - { - "l": "98.0", - "x": 10.0, - "y": 22.9429 - }, - { - "l": "98.0", - "x": 10.0833, - "y": 23.0208 - }, - { - "l": "98.0", - "x": 10.1667, - "y": 23.1008 - }, - { - "l": "98.0", - "x": 10.25, - "y": 23.1789 - }, - { - "l": "98.0", - "x": 10.3333, - "y": 23.2557 - }, - { - "l": "98.0", - "x": 10.4167, - "y": 23.3353 - }, - { - "l": "98.0", - "x": 10.5, - "y": 23.4142 - }, - { - "l": "98.0", - "x": 10.5833, - "y": 23.4905 - }, - { - "l": "98.0", - "x": 10.6667, - "y": 23.5709 - }, - { - "l": "98.0", - "x": 10.75, - "y": 23.6487 - }, - { - "l": "98.0", - "x": 10.8333, - "y": 23.7278 - }, - { - "l": "98.0", - "x": 10.9167, - "y": 23.8042 - }, - { - "l": "98.0", - "x": 11.0, - "y": 23.882 - }, - { - "l": "98.0", - "x": 11.0833, - "y": 23.9618 - }, - { - "l": "98.0", - "x": 11.1667, - "y": 24.0383 - }, - { - "l": "98.0", - "x": 11.25, - "y": 24.1174 - }, - { - "l": "98.0", - "x": 11.3333, - "y": 24.1952 - }, - { - "l": "98.0", - "x": 11.4167, - "y": 24.2716 - }, - { - "l": "98.0", - "x": 11.5, - "y": 24.3494 - }, - { - "l": "98.0", - "x": 11.5833, - "y": 24.4264 - }, - { - "l": "98.0", - "x": 11.6667, - "y": 24.5042 - }, - { - "l": "98.0", - "x": 11.75, - "y": 24.5805 - }, - { - "l": "98.0", - "x": 11.8333, - "y": 24.6575 - }, - { - "l": "98.0", - "x": 11.9167, - "y": 24.7331 - }, - { - "l": "98.0", - "x": 12.0, - "y": 24.8093 - }, - { - "l": "98.0", - "x": 12.0833, - "y": 24.8848 - }, - { - "l": "98.0", - "x": 12.1667, - "y": 24.9617 - }, - { - "l": "98.0", - "x": 12.25, - "y": 25.0351 - }, - { - "l": "98.0", - "x": 12.3333, - "y": 25.1112 - }, - { - "l": "98.0", - "x": 12.4167, - "y": 25.1838 - }, - { - "l": "98.0", - "x": 12.5, - "y": 25.2577 - }, - { - "l": "98.0", - "x": 12.5833, - "y": 25.331 - }, - { - "l": "98.0", - "x": 12.6667, - "y": 25.4034 - }, - { - "l": "98.0", - "x": 12.75, - "y": 25.4766 - }, - { - "l": "98.0", - "x": 12.8333, - "y": 25.5476 - }, - { - "l": "98.0", - "x": 12.9167, - "y": 25.6193 - }, - { - "l": "98.0", - "x": 13.0, - "y": 25.6895 - }, - { - "l": "98.0", - "x": 13.0833, - "y": 25.7584 - }, - { - "l": "98.0", - "x": 13.1667, - "y": 25.8292 - }, - { - "l": "98.0", - "x": 13.25, - "y": 25.8981 - }, - { - "l": "98.0", - "x": 13.3333, - "y": 25.9653 - }, - { - "l": "98.0", - "x": 13.4167, - "y": 26.0334 - }, - { - "l": "98.0", - "x": 13.5, - "y": 26.1007 - }, - { - "l": "98.0", - "x": 13.5833, - "y": 26.1665 - }, - { - "l": "98.0", - "x": 13.6667, - "y": 26.2323 - }, - { - "l": "98.0", - "x": 13.75, - "y": 26.296 - }, - { - "l": "98.0", - "x": 13.8333, - "y": 26.3604 - }, - { - "l": "98.0", - "x": 13.9167, - "y": 26.4227 - }, - { - "l": "98.0", - "x": 14.0, - "y": 26.4864 - }, - { - "l": "98.0", - "x": 14.0833, - "y": 26.5478 - }, - { - "l": "98.0", - "x": 14.1667, - "y": 26.6087 - }, - { - "l": "98.0", - "x": 14.25, - "y": 26.6687 - }, - { - "l": "98.0", - "x": 14.3333, - "y": 26.7267 - }, - { - "l": "98.0", - "x": 14.4167, - "y": 26.7867 - }, - { - "l": "98.0", - "x": 14.5, - "y": 26.8439 - }, - { - "l": "98.0", - "x": 14.5833, - "y": 26.9012 - }, - { - "l": "98.0", - "x": 14.6667, - "y": 26.957 - }, - { - "l": "98.0", - "x": 14.75, - "y": 27.0135 - }, - { - "l": "98.0", - "x": 14.8333, - "y": 27.0665 - }, - { - "l": "98.0", - "x": 14.9167, - "y": 27.1223 - }, - { - "l": "98.0", - "x": 15.0, - "y": 27.1745 - }, - { - "l": "98.0", - "x": 15.0833, - "y": 27.2276 - }, - { - "l": "98.0", - "x": 15.1667, - "y": 27.2784 - }, - { - "l": "98.0", - "x": 15.25, - "y": 27.3293 - }, - { - "l": "98.0", - "x": 15.3333, - "y": 27.3781 - }, - { - "l": "98.0", - "x": 15.4167, - "y": 27.4289 - }, - { - "l": "98.0", - "x": 15.5, - "y": 27.4756 - }, - { - "l": "98.0", - "x": 15.5833, - "y": 27.5245 - }, - { - "l": "98.0", - "x": 15.6667, - "y": 27.5712 - }, - { - "l": "98.0", - "x": 15.75, - "y": 27.6164 - }, - { - "l": "98.0", - "x": 15.8333, - "y": 27.6639 - }, - { - "l": "98.0", - "x": 15.9167, - "y": 27.7077 - }, - { - "l": "98.0", - "x": 16.0, - "y": 27.7524 - }, - { - "l": "98.0", - "x": 16.0833, - "y": 27.7963 - }, - { - "l": "98.0", - "x": 16.1667, - "y": 27.8374 - }, - { - "l": "98.0", - "x": 16.25, - "y": 27.8807 - }, - { - "l": "98.0", - "x": 16.3333, - "y": 27.9219 - }, - { - "l": "98.0", - "x": 16.4167, - "y": 27.9624 - }, - { - "l": "98.0", - "x": 16.5, - "y": 28.0035 - }, - { - "l": "98.0", - "x": 16.5833, - "y": 28.0427 - }, - { - "l": "98.0", - "x": 16.6667, - "y": 28.0796 - }, - { - "l": "98.0", - "x": 16.75, - "y": 28.1188 - }, - { - "l": "98.0", - "x": 16.8333, - "y": 28.1566 - }, - { - "l": "98.0", - "x": 16.9167, - "y": 28.1935 - }, - { - "l": "98.0", - "x": 17.0, - "y": 28.2299 - }, - { - "l": "98.0", - "x": 17.0833, - "y": 28.2663 - }, - { - "l": "98.0", - "x": 17.1667, - "y": 28.2999 - }, - { - "l": "98.0", - "x": 17.25, - "y": 28.335 - }, - { - "l": "98.0", - "x": 17.3333, - "y": 28.37 - }, - { - "l": "98.0", - "x": 17.4167, - "y": 28.4037 - }, - { - "l": "98.0", - "x": 17.5, - "y": 28.4351 - }, - { - "l": "98.0", - "x": 17.5833, - "y": 28.4682 - }, - { - "l": "98.0", - "x": 17.6667, - "y": 28.4997 - }, - { - "l": "98.0", - "x": 17.75, - "y": 28.5314 - }, - { - "l": "98.0", - "x": 17.8333, - "y": 28.5623 - }, - { - "l": "98.0", - "x": 17.9167, - "y": 28.5932 - }, - { - "l": "98.0", - "x": 18.0, - "y": 28.6228 - }, - { - "l": "98.0", - "x": 18.0833, - "y": 28.6531 - }, - { - "l": "98.0", - "x": 18.1667, - "y": 28.6812 - }, - { - "l": "98.0", - "x": 18.25, - "y": 28.7094 - }, - { - "l": "98.0", - "x": 18.3333, - "y": 28.7398 - }, - { - "l": "98.0", - "x": 18.4167, - "y": 28.7666 - }, - { - "l": "98.0", - "x": 18.5, - "y": 28.7941 - }, - { - "l": "98.0", - "x": 18.5833, - "y": 28.8218 - }, - { - "l": "98.0", - "x": 18.6667, - "y": 28.8486 - }, - { - "l": "98.0", - "x": 18.75, - "y": 28.8748 - }, - { - "l": "98.0", - "x": 18.8333, - "y": 28.8996 - }, - { - "l": "98.0", - "x": 18.9167, - "y": 28.9251 - }, - { - "l": "98.0", - "x": 19.0, - "y": 28.9513 - }, - { - "l": "98.0", - "x": 19.0833, - "y": 28.9762 - }, - { - "l": "98.0", - "x": 19.1667, - "y": 29.0025 - }, - { - "l": "98.0", - "x": 19.25, - "y": 29.0246 - }, - { - "l": "98.0", - "x": 19.3333, - "y": 29.0486 - }, - { - "l": "98.0", - "x": 19.4167, - "y": 29.073 - }, - { - "l": "98.0", - "x": 19.5, - "y": 29.0965 - }, - { - "l": "98.0", - "x": 19.5833, - "y": 29.12 - }, - { - "l": "98.0", - "x": 19.6667, - "y": 29.1407 - }, - { - "l": "98.0", - "x": 19.75, - "y": 29.1643 - }, - { - "l": "98.0", - "x": 19.8333, - "y": 29.1878 - }, - { - "l": "98.0", - "x": 19.9167, - "y": 29.2099 - }, - { - "l": "98.0", - "x": 20.0, - "y": 29.2321 - }, - { - "l": "98.0", - "x": 20.0, - "y": 29.2321 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 4.0, - "y": 20.5276 - }, - { - "l": "99.6", - "x": 4.0833, - "y": 20.5419 - }, - { - "l": "99.6", - "x": 4.1667, - "y": 20.5578 - }, - { - "l": "99.6", - "x": 4.25, - "y": 20.5754 - }, - { - "l": "99.6", - "x": 4.3333, - "y": 20.5946 - }, - { - "l": "99.6", - "x": 4.4167, - "y": 20.6155 - }, - { - "l": "99.6", - "x": 4.5, - "y": 20.6381 - }, - { - "l": "99.6", - "x": 4.5833, - "y": 20.6624 - }, - { - "l": "99.6", - "x": 4.6667, - "y": 20.6889 - }, - { - "l": "99.6", - "x": 4.75, - "y": 20.7195 - }, - { - "l": "99.6", - "x": 4.8333, - "y": 20.7508 - }, - { - "l": "99.6", - "x": 4.9167, - "y": 20.7863 - }, - { - "l": "99.6", - "x": 5.0, - "y": 20.8238 - }, - { - "l": "99.6", - "x": 5.0833, - "y": 20.8647 - }, - { - "l": "99.6", - "x": 5.1667, - "y": 20.9091 - }, - { - "l": "99.6", - "x": 5.25, - "y": 20.9565 - }, - { - "l": "99.6", - "x": 5.3333, - "y": 21.0069 - }, - { - "l": "99.6", - "x": 5.4167, - "y": 21.0576 - }, - { - "l": "99.6", - "x": 5.5, - "y": 21.1147 - }, - { - "l": "99.6", - "x": 5.5833, - "y": 21.1746 - }, - { - "l": "99.6", - "x": 5.6667, - "y": 21.2378 - }, - { - "l": "99.6", - "x": 5.75, - "y": 21.3018 - }, - { - "l": "99.6", - "x": 5.8333, - "y": 21.3706 - }, - { - "l": "99.6", - "x": 5.9167, - "y": 21.4406 - }, - { - "l": "99.6", - "x": 6.0, - "y": 21.5136 - }, - { - "l": "99.6", - "x": 6.0833, - "y": 21.5894 - }, - { - "l": "99.6", - "x": 6.1667, - "y": 21.6706 - }, - { - "l": "99.6", - "x": 6.25, - "y": 21.7492 - }, - { - "l": "99.6", - "x": 6.3333, - "y": 21.8327 - }, - { - "l": "99.6", - "x": 6.4167, - "y": 21.9174 - }, - { - "l": "99.6", - "x": 6.5, - "y": 22.0066 - }, - { - "l": "99.6", - "x": 6.5833, - "y": 22.0965 - }, - { - "l": "99.6", - "x": 6.6667, - "y": 22.1915 - }, - { - "l": "99.6", - "x": 6.75, - "y": 22.2834 - }, - { - "l": "99.6", - "x": 6.8333, - "y": 22.3803 - }, - { - "l": "99.6", - "x": 6.9167, - "y": 22.477 - }, - { - "l": "99.6", - "x": 7.0, - "y": 22.5755 - }, - { - "l": "99.6", - "x": 7.0833, - "y": 22.6767 - }, - { - "l": "99.6", - "x": 7.1667, - "y": 22.7759 - }, - { - "l": "99.6", - "x": 7.25, - "y": 22.8806 - }, - { - "l": "99.6", - "x": 7.3333, - "y": 22.9818 - }, - { - "l": "99.6", - "x": 7.4167, - "y": 23.0856 - }, - { - "l": "99.6", - "x": 7.5, - "y": 23.1902 - }, - { - "l": "99.6", - "x": 7.5833, - "y": 23.2945 - }, - { - "l": "99.6", - "x": 7.6667, - "y": 23.3989 - }, - { - "l": "99.6", - "x": 7.75, - "y": 23.5034 - }, - { - "l": "99.6", - "x": 7.8333, - "y": 23.6112 - }, - { - "l": "99.6", - "x": 7.9167, - "y": 23.7165 - }, - { - "l": "99.6", - "x": 8.0, - "y": 23.825 - }, - { - "l": "99.6", - "x": 8.0833, - "y": 23.9284 - }, - { - "l": "99.6", - "x": 8.1667, - "y": 24.0356 - }, - { - "l": "99.6", - "x": 8.25, - "y": 24.1409 - }, - { - "l": "99.6", - "x": 8.3333, - "y": 24.2487 - }, - { - "l": "99.6", - "x": 8.4167, - "y": 24.3532 - }, - { - "l": "99.6", - "x": 8.5, - "y": 24.4626 - }, - { - "l": "99.6", - "x": 8.5833, - "y": 24.5677 - }, - { - "l": "99.6", - "x": 8.6667, - "y": 24.6737 - }, - { - "l": "99.6", - "x": 8.75, - "y": 24.7818 - }, - { - "l": "99.6", - "x": 8.8333, - "y": 24.8868 - }, - { - "l": "99.6", - "x": 8.9167, - "y": 24.9911 - }, - { - "l": "99.6", - "x": 9.0, - "y": 25.0978 - }, - { - "l": "99.6", - "x": 9.0833, - "y": 25.2048 - }, - { - "l": "99.6", - "x": 9.1667, - "y": 25.3059 - }, - { - "l": "99.6", - "x": 9.25, - "y": 25.4133 - }, - { - "l": "99.6", - "x": 9.3333, - "y": 25.5169 - }, - { - "l": "99.6", - "x": 9.4167, - "y": 25.6229 - }, - { - "l": "99.6", - "x": 9.5, - "y": 25.7251 - }, - { - "l": "99.6", - "x": 9.5833, - "y": 25.8279 - }, - { - "l": "99.6", - "x": 9.6667, - "y": 25.9312 - }, - { - "l": "99.6", - "x": 9.75, - "y": 26.0324 - }, - { - "l": "99.6", - "x": 9.8333, - "y": 26.1353 - }, - { - "l": "99.6", - "x": 9.9167, - "y": 26.236 - }, - { - "l": "99.6", - "x": 10.0, - "y": 26.3371 - }, - { - "l": "99.6", - "x": 10.0833, - "y": 26.4373 - }, - { - "l": "99.6", - "x": 10.1667, - "y": 26.5395 - }, - { - "l": "99.6", - "x": 10.25, - "y": 26.639 - }, - { - "l": "99.6", - "x": 10.3333, - "y": 26.7344 - }, - { - "l": "99.6", - "x": 10.4167, - "y": 26.8348 - }, - { - "l": "99.6", - "x": 10.5, - "y": 26.9341 - }, - { - "l": "99.6", - "x": 10.5833, - "y": 27.0275 - }, - { - "l": "99.6", - "x": 10.6667, - "y": 27.1275 - }, - { - "l": "99.6", - "x": 10.75, - "y": 27.2217 - }, - { - "l": "99.6", - "x": 10.8333, - "y": 27.3193 - }, - { - "l": "99.6", - "x": 10.9167, - "y": 27.411 - }, - { - "l": "99.6", - "x": 11.0, - "y": 27.5043 - }, - { - "l": "99.6", - "x": 11.0833, - "y": 27.6014 - }, - { - "l": "99.6", - "x": 11.1667, - "y": 27.6921 - }, - { - "l": "99.6", - "x": 11.25, - "y": 27.7869 - }, - { - "l": "99.6", - "x": 11.3333, - "y": 27.8782 - }, - { - "l": "99.6", - "x": 11.4167, - "y": 27.9679 - }, - { - "l": "99.6", - "x": 11.5, - "y": 28.0581 - }, - { - "l": "99.6", - "x": 11.5833, - "y": 28.149 - }, - { - "l": "99.6", - "x": 11.6667, - "y": 28.2393 - }, - { - "l": "99.6", - "x": 11.75, - "y": 28.3268 - }, - { - "l": "99.6", - "x": 11.8333, - "y": 28.4166 - }, - { - "l": "99.6", - "x": 11.9167, - "y": 28.5028 - }, - { - "l": "99.6", - "x": 12.0, - "y": 28.5891 - }, - { - "l": "99.6", - "x": 12.0833, - "y": 28.6741 - }, - { - "l": "99.6", - "x": 12.1667, - "y": 28.7628 - }, - { - "l": "99.6", - "x": 12.25, - "y": 28.8448 - }, - { - "l": "99.6", - "x": 12.3333, - "y": 28.9299 - }, - { - "l": "99.6", - "x": 12.4167, - "y": 29.0105 - }, - { - "l": "99.6", - "x": 12.5, - "y": 29.0926 - }, - { - "l": "99.6", - "x": 12.5833, - "y": 29.1755 - }, - { - "l": "99.6", - "x": 12.6667, - "y": 29.2548 - }, - { - "l": "99.6", - "x": 12.75, - "y": 29.3354 - }, - { - "l": "99.6", - "x": 12.8333, - "y": 29.4131 - }, - { - "l": "99.6", - "x": 12.9167, - "y": 29.493 - }, - { - "l": "99.6", - "x": 13.0, - "y": 29.5692 - }, - { - "l": "99.6", - "x": 13.0833, - "y": 29.6438 - }, - { - "l": "99.6", - "x": 13.1667, - "y": 29.72 - }, - { - "l": "99.6", - "x": 13.25, - "y": 29.7967 - }, - { - "l": "99.6", - "x": 13.3333, - "y": 29.8684 - }, - { - "l": "99.6", - "x": 13.4167, - "y": 29.9414 - }, - { - "l": "99.6", - "x": 13.5, - "y": 30.0151 - }, - { - "l": "99.6", - "x": 13.5833, - "y": 30.0851 - }, - { - "l": "99.6", - "x": 13.6667, - "y": 30.155 - }, - { - "l": "99.6", - "x": 13.75, - "y": 30.2241 - }, - { - "l": "99.6", - "x": 13.8333, - "y": 30.2924 - }, - { - "l": "99.6", - "x": 13.9167, - "y": 30.3576 - }, - { - "l": "99.6", - "x": 14.0, - "y": 30.4266 - }, - { - "l": "99.6", - "x": 14.0833, - "y": 30.4903 - }, - { - "l": "99.6", - "x": 14.1667, - "y": 30.5561 - }, - { - "l": "99.6", - "x": 14.25, - "y": 30.6182 - }, - { - "l": "99.6", - "x": 14.3333, - "y": 30.6785 - }, - { - "l": "99.6", - "x": 14.4167, - "y": 30.7428 - }, - { - "l": "99.6", - "x": 14.5, - "y": 30.8016 - }, - { - "l": "99.6", - "x": 14.5833, - "y": 30.8626 - }, - { - "l": "99.6", - "x": 14.6667, - "y": 30.9199 - }, - { - "l": "99.6", - "x": 14.75, - "y": 30.9794 - }, - { - "l": "99.6", - "x": 14.8333, - "y": 31.0334 - }, - { - "l": "99.6", - "x": 14.9167, - "y": 31.0927 - }, - { - "l": "99.6", - "x": 15.0, - "y": 31.1453 - }, - { - "l": "99.6", - "x": 15.0833, - "y": 31.2014 - }, - { - "l": "99.6", - "x": 15.1667, - "y": 31.2523 - }, - { - "l": "99.6", - "x": 15.25, - "y": 31.3054 - }, - { - "l": "99.6", - "x": 15.3333, - "y": 31.3546 - }, - { - "l": "99.6", - "x": 15.4167, - "y": 31.4076 - }, - { - "l": "99.6", - "x": 15.5, - "y": 31.4538 - }, - { - "l": "99.6", - "x": 15.5833, - "y": 31.505 - }, - { - "l": "99.6", - "x": 15.6667, - "y": 31.5533 - }, - { - "l": "99.6", - "x": 15.75, - "y": 31.5978 - }, - { - "l": "99.6", - "x": 15.8333, - "y": 31.6475 - }, - { - "l": "99.6", - "x": 15.9167, - "y": 31.6904 - }, - { - "l": "99.6", - "x": 16.0, - "y": 31.7369 - }, - { - "l": "99.6", - "x": 16.0833, - "y": 31.7819 - }, - { - "l": "99.6", - "x": 16.1667, - "y": 31.8217 - }, - { - "l": "99.6", - "x": 16.25, - "y": 31.8666 - }, - { - "l": "99.6", - "x": 16.3333, - "y": 31.9084 - }, - { - "l": "99.6", - "x": 16.4167, - "y": 31.948 - }, - { - "l": "99.6", - "x": 16.5, - "y": 31.9898 - }, - { - "l": "99.6", - "x": 16.5833, - "y": 32.03 - }, - { - "l": "99.6", - "x": 16.6667, - "y": 32.065 - }, - { - "l": "99.6", - "x": 16.75, - "y": 32.1051 - }, - { - "l": "99.6", - "x": 16.8333, - "y": 32.1437 - }, - { - "l": "99.6", - "x": 16.9167, - "y": 32.1786 - }, - { - "l": "99.6", - "x": 17.0, - "y": 32.2156 - }, - { - "l": "99.6", - "x": 17.0833, - "y": 32.2526 - }, - { - "l": "99.6", - "x": 17.1667, - "y": 32.2843 - }, - { - "l": "99.6", - "x": 17.25, - "y": 32.3197 - }, - { - "l": "99.6", - "x": 17.3333, - "y": 32.3551 - }, - { - "l": "99.6", - "x": 17.4167, - "y": 32.3889 - }, - { - "l": "99.6", - "x": 17.5, - "y": 32.4176 - }, - { - "l": "99.6", - "x": 17.5833, - "y": 32.4513 - }, - { - "l": "99.6", - "x": 17.6667, - "y": 32.4821 - }, - { - "l": "99.6", - "x": 17.75, - "y": 32.5122 - }, - { - "l": "99.6", - "x": 17.8333, - "y": 32.5428 - }, - { - "l": "99.6", - "x": 17.9167, - "y": 32.5735 - }, - { - "l": "99.6", - "x": 18.0, - "y": 32.6026 - }, - { - "l": "99.6", - "x": 18.0833, - "y": 32.6332 - }, - { - "l": "99.6", - "x": 18.1667, - "y": 32.6587 - }, - { - "l": "99.6", - "x": 18.25, - "y": 32.6862 - }, - { - "l": "99.6", - "x": 18.3333, - "y": 32.7167 - }, - { - "l": "99.6", - "x": 18.4167, - "y": 32.7427 - }, - { - "l": "99.6", - "x": 18.5, - "y": 32.7681 - }, - { - "l": "99.6", - "x": 18.5833, - "y": 32.7956 - }, - { - "l": "99.6", - "x": 18.6667, - "y": 32.8215 - }, - { - "l": "99.6", - "x": 18.75, - "y": 32.8474 - }, - { - "l": "99.6", - "x": 18.8333, - "y": 32.8697 - }, - { - "l": "99.6", - "x": 18.9167, - "y": 32.8942 - }, - { - "l": "99.6", - "x": 19.0, - "y": 32.92 - }, - { - "l": "99.6", - "x": 19.0833, - "y": 32.9444 - }, - { - "l": "99.6", - "x": 19.1667, - "y": 32.9702 - }, - { - "l": "99.6", - "x": 19.25, - "y": 32.9894 - }, - { - "l": "99.6", - "x": 19.3333, - "y": 33.0123 - }, - { - "l": "99.6", - "x": 19.4167, - "y": 33.0365 - }, - { - "l": "99.6", - "x": 19.5, - "y": 33.0593 - }, - { - "l": "99.6", - "x": 19.5833, - "y": 33.0821 - }, - { - "l": "99.6", - "x": 19.6667, - "y": 33.0998 - }, - { - "l": "99.6", - "x": 19.75, - "y": 33.1225 - }, - { - "l": "99.6", - "x": 19.8333, - "y": 33.1453 - }, - { - "l": "99.6", - "x": 19.9167, - "y": 33.1665 - }, - { - "l": "99.6", - "x": 20.0, - "y": 33.1877 - }, - { - "l": "99.6", - "x": 20.0, - "y": 33.1877 - } - ] - } - ] - } - } - } - ] -}; - -var ukwhoBMIMaleSDSData = { - "centile_data": [ - { - "uk90_preterm": { - "male": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -5.0, - "centile": 2.866515718791933e-05, - "data": null - }, - { - "sds": -4.0, - "centile": 0.003167124183311986, - "data": null - }, - { - "sds": 3.0, - "centile": 99.86501019683699, - "data": null - }, - { - "sds": 3.33, - "centile": 99.95657700796184, - "data": null - }, - { - "sds": 3.67, - "centile": 99.98787247657145, - "data": null - }, - { - "sds": 4.0, - "centile": 99.9968328758167, - "data": null - } - ] - }, - "female": null - } - }, - { - "uk_who_infant": { - "male": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -5.0, - "centile": 2.866515718791933e-05, - "data": [ - { - "l": "-5.0", - "x": 0.0383, - "y": 8.0546 - }, - { - "l": "-5.0", - "x": 0.0575, - "y": 8.6044 - }, - { - "l": "-5.0", - "x": 0.0767, - "y": 9.0847 - }, - { - "l": "-5.0", - "x": 0.0958, - "y": 9.4873 - }, - { - "l": "-5.0", - "x": 0.115, - "y": 9.817 - }, - { - "l": "-5.0", - "x": 0.1342, - "y": 10.0907 - }, - { - "l": "-5.0", - "x": 0.1533, - "y": 10.3213 - }, - { - "l": "-5.0", - "x": 0.1725, - "y": 10.5166 - }, - { - "l": "-5.0", - "x": 0.1916, - "y": 10.6812 - }, - { - "l": "-5.0", - "x": 0.2108, - "y": 10.8201 - }, - { - "l": "-5.0", - "x": 0.23, - "y": 10.9381 - }, - { - "l": "-5.0", - "x": 0.2491, - "y": 11.04 - }, - { - "l": "-5.0", - "x": 0.2683, - "y": 11.1234 - }, - { - "l": "-5.0", - "x": 0.2875, - "y": 11.2001 - }, - { - "l": "-5.0", - "x": 0.3066, - "y": 11.2701 - }, - { - "l": "-5.0", - "x": 0.3258, - "y": 11.3335 - }, - { - "l": "-5.0", - "x": 0.345, - "y": 11.3901 - }, - { - "l": "-5.0", - "x": 0.3641, - "y": 11.4403 - }, - { - "l": "-5.0", - "x": 0.3833, - "y": 11.485 - }, - { - "l": "-5.0", - "x": 0.4025, - "y": 11.5247 - }, - { - "l": "-5.0", - "x": 0.4216, - "y": 11.5602 - }, - { - "l": "-5.0", - "x": 0.4408, - "y": 11.5922 - }, - { - "l": "-5.0", - "x": 0.46, - "y": 11.6203 - }, - { - "l": "-5.0", - "x": 0.4791, - "y": 11.6449 - }, - { - "l": "-5.0", - "x": 0.4983, - "y": 11.6663 - }, - { - "l": "-5.0", - "x": 0.5175, - "y": 11.6849 - }, - { - "l": "-5.0", - "x": 0.5366, - "y": 11.7006 - }, - { - "l": "-5.0", - "x": 0.5558, - "y": 11.7137 - }, - { - "l": "-5.0", - "x": 0.5749, - "y": 11.7241 - }, - { - "l": "-5.0", - "x": 0.5941, - "y": 11.7321 - }, - { - "l": "-5.0", - "x": 0.6133, - "y": 11.7377 - }, - { - "l": "-5.0", - "x": 0.6324, - "y": 11.7413 - }, - { - "l": "-5.0", - "x": 0.6516, - "y": 11.7429 - }, - { - "l": "-5.0", - "x": 0.6708, - "y": 11.7427 - }, - { - "l": "-5.0", - "x": 0.6899, - "y": 11.741 - }, - { - "l": "-5.0", - "x": 0.7091, - "y": 11.7377 - }, - { - "l": "-5.0", - "x": 0.7283, - "y": 11.7332 - }, - { - "l": "-5.0", - "x": 0.7474, - "y": 11.7275 - }, - { - "l": "-5.0", - "x": 0.7666, - "y": 11.7208 - }, - { - "l": "-5.0", - "x": 0.7858, - "y": 11.7133 - }, - { - "l": "-5.0", - "x": 0.8049, - "y": 11.7049 - }, - { - "l": "-5.0", - "x": 0.8241, - "y": 11.6958 - }, - { - "l": "-5.0", - "x": 0.8433, - "y": 11.6863 - }, - { - "l": "-5.0", - "x": 0.8624, - "y": 11.6763 - }, - { - "l": "-5.0", - "x": 0.8816, - "y": 11.6658 - }, - { - "l": "-5.0", - "x": 0.9008, - "y": 11.655 - }, - { - "l": "-5.0", - "x": 0.9199, - "y": 11.6438 - }, - { - "l": "-5.0", - "x": 0.9391, - "y": 11.6325 - }, - { - "l": "-5.0", - "x": 0.9582, - "y": 11.6209 - }, - { - "l": "-5.0", - "x": 0.9774, - "y": 11.6091 - }, - { - "l": "-5.0", - "x": 0.9966, - "y": 11.5972 - }, - { - "l": "-5.0", - "x": 1.0157, - "y": 11.5853 - }, - { - "l": "-5.0", - "x": 1.0349, - "y": 11.5733 - }, - { - "l": "-5.0", - "x": 1.0541, - "y": 11.5613 - }, - { - "l": "-5.0", - "x": 1.0732, - "y": 11.5492 - }, - { - "l": "-5.0", - "x": 1.0924, - "y": 11.5371 - }, - { - "l": "-5.0", - "x": 1.1116, - "y": 11.5249 - }, - { - "l": "-5.0", - "x": 1.1307, - "y": 11.5127 - }, - { - "l": "-5.0", - "x": 1.1499, - "y": 11.5005 - }, - { - "l": "-5.0", - "x": 1.1691, - "y": 11.4884 - }, - { - "l": "-5.0", - "x": 1.1882, - "y": 11.4764 - }, - { - "l": "-5.0", - "x": 1.2074, - "y": 11.4646 - }, - { - "l": "-5.0", - "x": 1.2266, - "y": 11.4528 - }, - { - "l": "-5.0", - "x": 1.2457, - "y": 11.4412 - }, - { - "l": "-5.0", - "x": 1.2649, - "y": 11.4296 - }, - { - "l": "-5.0", - "x": 1.2841, - "y": 11.4183 - }, - { - "l": "-5.0", - "x": 1.3032, - "y": 11.407 - }, - { - "l": "-5.0", - "x": 1.3224, - "y": 11.3959 - }, - { - "l": "-5.0", - "x": 1.3415, - "y": 11.385 - }, - { - "l": "-5.0", - "x": 1.3607, - "y": 11.3742 - }, - { - "l": "-5.0", - "x": 1.3799, - "y": 11.3636 - }, - { - "l": "-5.0", - "x": 1.399, - "y": 11.3531 - }, - { - "l": "-5.0", - "x": 1.4182, - "y": 11.3428 - }, - { - "l": "-5.0", - "x": 1.4374, - "y": 11.3326 - }, - { - "l": "-5.0", - "x": 1.4565, - "y": 11.3224 - }, - { - "l": "-5.0", - "x": 1.4757, - "y": 11.3125 - }, - { - "l": "-5.0", - "x": 1.4949, - "y": 11.3028 - }, - { - "l": "-5.0", - "x": 1.514, - "y": 11.2933 - }, - { - "l": "-5.0", - "x": 1.5332, - "y": 11.284 - }, - { - "l": "-5.0", - "x": 1.5524, - "y": 11.275 - }, - { - "l": "-5.0", - "x": 1.5715, - "y": 11.2661 - }, - { - "l": "-5.0", - "x": 1.5907, - "y": 11.2575 - }, - { - "l": "-5.0", - "x": 1.6099, - "y": 11.2491 - }, - { - "l": "-5.0", - "x": 1.629, - "y": 11.2409 - }, - { - "l": "-5.0", - "x": 1.6482, - "y": 11.233 - }, - { - "l": "-5.0", - "x": 1.6674, - "y": 11.2253 - }, - { - "l": "-5.0", - "x": 1.6865, - "y": 11.2179 - }, - { - "l": "-5.0", - "x": 1.7057, - "y": 11.2108 - }, - { - "l": "-5.0", - "x": 1.7248, - "y": 11.2039 - }, - { - "l": "-5.0", - "x": 1.744, - "y": 11.1972 - }, - { - "l": "-5.0", - "x": 1.7632, - "y": 11.1907 - }, - { - "l": "-5.0", - "x": 1.7823, - "y": 11.1843 - }, - { - "l": "-5.0", - "x": 1.8015, - "y": 11.1782 - }, - { - "l": "-5.0", - "x": 1.8207, - "y": 11.1722 - }, - { - "l": "-5.0", - "x": 1.8398, - "y": 11.1665 - }, - { - "l": "-5.0", - "x": 1.859, - "y": 11.1611 - }, - { - "l": "-5.0", - "x": 1.8782, - "y": 11.1558 - }, - { - "l": "-5.0", - "x": 1.8973, - "y": 11.1508 - }, - { - "l": "-5.0", - "x": 1.9165, - "y": 11.1459 - }, - { - "l": "-5.0", - "x": 1.9357, - "y": 11.1415 - }, - { - "l": "-5.0", - "x": 1.9548, - "y": 11.137 - }, - { - "l": "-5.0", - "x": 1.974, - "y": 11.1326 - }, - { - "l": "-5.0", - "x": 1.9932, - "y": 11.1281 - } - ] - }, - { - "sds": -4.0, - "centile": 0.003167124183311986, - "data": [ - { - "l": "-4.0", - "x": 0.0383, - "y": 9.0362 - }, - { - "l": "-4.0", - "x": 0.0575, - "y": 9.5833 - }, - { - "l": "-4.0", - "x": 0.0767, - "y": 10.0685 - }, - { - "l": "-4.0", - "x": 0.0958, - "y": 10.4762 - }, - { - "l": "-4.0", - "x": 0.115, - "y": 10.8091 - }, - { - "l": "-4.0", - "x": 0.1342, - "y": 11.0844 - }, - { - "l": "-4.0", - "x": 0.1533, - "y": 11.3154 - }, - { - "l": "-4.0", - "x": 0.1725, - "y": 11.5098 - }, - { - "l": "-4.0", - "x": 0.1916, - "y": 11.6726 - }, - { - "l": "-4.0", - "x": 0.2108, - "y": 11.8089 - }, - { - "l": "-4.0", - "x": 0.23, - "y": 11.9237 - }, - { - "l": "-4.0", - "x": 0.2491, - "y": 12.0219 - }, - { - "l": "-4.0", - "x": 0.2683, - "y": 12.1022 - }, - { - "l": "-4.0", - "x": 0.2875, - "y": 12.1751 - }, - { - "l": "-4.0", - "x": 0.3066, - "y": 12.2409 - }, - { - "l": "-4.0", - "x": 0.3258, - "y": 12.3001 - }, - { - "l": "-4.0", - "x": 0.345, - "y": 12.3527 - }, - { - "l": "-4.0", - "x": 0.3641, - "y": 12.3991 - }, - { - "l": "-4.0", - "x": 0.3833, - "y": 12.4401 - }, - { - "l": "-4.0", - "x": 0.4025, - "y": 12.4761 - }, - { - "l": "-4.0", - "x": 0.4216, - "y": 12.5079 - }, - { - "l": "-4.0", - "x": 0.4408, - "y": 12.5361 - }, - { - "l": "-4.0", - "x": 0.46, - "y": 12.5606 - }, - { - "l": "-4.0", - "x": 0.4791, - "y": 12.5815 - }, - { - "l": "-4.0", - "x": 0.4983, - "y": 12.5992 - }, - { - "l": "-4.0", - "x": 0.5175, - "y": 12.614 - }, - { - "l": "-4.0", - "x": 0.5366, - "y": 12.6261 - }, - { - "l": "-4.0", - "x": 0.5558, - "y": 12.6354 - }, - { - "l": "-4.0", - "x": 0.5749, - "y": 12.642 - }, - { - "l": "-4.0", - "x": 0.5941, - "y": 12.6462 - }, - { - "l": "-4.0", - "x": 0.6133, - "y": 12.6481 - }, - { - "l": "-4.0", - "x": 0.6324, - "y": 12.6478 - }, - { - "l": "-4.0", - "x": 0.6516, - "y": 12.6456 - }, - { - "l": "-4.0", - "x": 0.6708, - "y": 12.6416 - }, - { - "l": "-4.0", - "x": 0.6899, - "y": 12.636 - }, - { - "l": "-4.0", - "x": 0.7091, - "y": 12.629 - }, - { - "l": "-4.0", - "x": 0.7283, - "y": 12.6207 - }, - { - "l": "-4.0", - "x": 0.7474, - "y": 12.6112 - }, - { - "l": "-4.0", - "x": 0.7666, - "y": 12.6008 - }, - { - "l": "-4.0", - "x": 0.7858, - "y": 12.5895 - }, - { - "l": "-4.0", - "x": 0.8049, - "y": 12.5775 - }, - { - "l": "-4.0", - "x": 0.8241, - "y": 12.5648 - }, - { - "l": "-4.0", - "x": 0.8433, - "y": 12.5516 - }, - { - "l": "-4.0", - "x": 0.8624, - "y": 12.538 - }, - { - "l": "-4.0", - "x": 0.8816, - "y": 12.524 - }, - { - "l": "-4.0", - "x": 0.9008, - "y": 12.5097 - }, - { - "l": "-4.0", - "x": 0.9199, - "y": 12.4952 - }, - { - "l": "-4.0", - "x": 0.9391, - "y": 12.4805 - }, - { - "l": "-4.0", - "x": 0.9582, - "y": 12.4656 - }, - { - "l": "-4.0", - "x": 0.9774, - "y": 12.4505 - }, - { - "l": "-4.0", - "x": 0.9966, - "y": 12.4354 - }, - { - "l": "-4.0", - "x": 1.0157, - "y": 12.4203 - }, - { - "l": "-4.0", - "x": 1.0349, - "y": 12.4053 - }, - { - "l": "-4.0", - "x": 1.0541, - "y": 12.3901 - }, - { - "l": "-4.0", - "x": 1.0732, - "y": 12.375 - }, - { - "l": "-4.0", - "x": 1.0924, - "y": 12.3599 - }, - { - "l": "-4.0", - "x": 1.1116, - "y": 12.3448 - }, - { - "l": "-4.0", - "x": 1.1307, - "y": 12.3297 - }, - { - "l": "-4.0", - "x": 1.1499, - "y": 12.3147 - }, - { - "l": "-4.0", - "x": 1.1691, - "y": 12.2998 - }, - { - "l": "-4.0", - "x": 1.1882, - "y": 12.2851 - }, - { - "l": "-4.0", - "x": 1.2074, - "y": 12.2706 - }, - { - "l": "-4.0", - "x": 1.2266, - "y": 12.2562 - }, - { - "l": "-4.0", - "x": 1.2457, - "y": 12.2419 - }, - { - "l": "-4.0", - "x": 1.2649, - "y": 12.2278 - }, - { - "l": "-4.0", - "x": 1.2841, - "y": 12.2139 - }, - { - "l": "-4.0", - "x": 1.3032, - "y": 12.2002 - }, - { - "l": "-4.0", - "x": 1.3224, - "y": 12.1867 - }, - { - "l": "-4.0", - "x": 1.3415, - "y": 12.1734 - }, - { - "l": "-4.0", - "x": 1.3607, - "y": 12.1602 - }, - { - "l": "-4.0", - "x": 1.3799, - "y": 12.1473 - }, - { - "l": "-4.0", - "x": 1.399, - "y": 12.1346 - }, - { - "l": "-4.0", - "x": 1.4182, - "y": 12.122 - }, - { - "l": "-4.0", - "x": 1.4374, - "y": 12.1095 - }, - { - "l": "-4.0", - "x": 1.4565, - "y": 12.0973 - }, - { - "l": "-4.0", - "x": 1.4757, - "y": 12.0853 - }, - { - "l": "-4.0", - "x": 1.4949, - "y": 12.0735 - }, - { - "l": "-4.0", - "x": 1.514, - "y": 12.0619 - }, - { - "l": "-4.0", - "x": 1.5332, - "y": 12.0506 - }, - { - "l": "-4.0", - "x": 1.5524, - "y": 12.0396 - }, - { - "l": "-4.0", - "x": 1.5715, - "y": 12.0288 - }, - { - "l": "-4.0", - "x": 1.5907, - "y": 12.0183 - }, - { - "l": "-4.0", - "x": 1.6099, - "y": 12.008 - }, - { - "l": "-4.0", - "x": 1.629, - "y": 11.998 - }, - { - "l": "-4.0", - "x": 1.6482, - "y": 11.9883 - }, - { - "l": "-4.0", - "x": 1.6674, - "y": 11.9789 - }, - { - "l": "-4.0", - "x": 1.6865, - "y": 11.9697 - }, - { - "l": "-4.0", - "x": 1.7057, - "y": 11.9609 - }, - { - "l": "-4.0", - "x": 1.7248, - "y": 11.9523 - }, - { - "l": "-4.0", - "x": 1.744, - "y": 11.944 - }, - { - "l": "-4.0", - "x": 1.7632, - "y": 11.9359 - }, - { - "l": "-4.0", - "x": 1.7823, - "y": 11.928 - }, - { - "l": "-4.0", - "x": 1.8015, - "y": 11.9203 - }, - { - "l": "-4.0", - "x": 1.8207, - "y": 11.9129 - }, - { - "l": "-4.0", - "x": 1.8398, - "y": 11.9057 - }, - { - "l": "-4.0", - "x": 1.859, - "y": 11.8988 - }, - { - "l": "-4.0", - "x": 1.8782, - "y": 11.8921 - }, - { - "l": "-4.0", - "x": 1.8973, - "y": 11.8857 - }, - { - "l": "-4.0", - "x": 1.9165, - "y": 11.8794 - }, - { - "l": "-4.0", - "x": 1.9357, - "y": 11.8737 - }, - { - "l": "-4.0", - "x": 1.9548, - "y": 11.868 - }, - { - "l": "-4.0", - "x": 1.974, - "y": 11.8623 - }, - { - "l": "-4.0", - "x": 1.9932, - "y": 11.8566 - } - ] - }, - { - "sds": 3.0, - "centile": 99.86501019683699, - "data": [ - { - "l": "3.0", - "x": 0.0383, - "y": 17.8299 - }, - { - "l": "3.0", - "x": 0.0575, - "y": 18.5302 - }, - { - "l": "3.0", - "x": 0.0767, - "y": 19.1962 - }, - { - "l": "3.0", - "x": 0.0958, - "y": 19.7645 - }, - { - "l": "3.0", - "x": 0.115, - "y": 20.2245 - }, - { - "l": "3.0", - "x": 0.1342, - "y": 20.6 - }, - { - "l": "3.0", - "x": 0.1533, - "y": 20.9101 - }, - { - "l": "3.0", - "x": 0.1725, - "y": 21.1659 - }, - { - "l": "3.0", - "x": 0.1916, - "y": 21.3742 - }, - { - "l": "3.0", - "x": 0.2108, - "y": 21.5434 - }, - { - "l": "3.0", - "x": 0.23, - "y": 21.6814 - }, - { - "l": "3.0", - "x": 0.2491, - "y": 21.7943 - }, - { - "l": "3.0", - "x": 0.2683, - "y": 21.8919 - }, - { - "l": "3.0", - "x": 0.2875, - "y": 21.9725 - }, - { - "l": "3.0", - "x": 0.3066, - "y": 22.0387 - }, - { - "l": "3.0", - "x": 0.3258, - "y": 22.0933 - }, - { - "l": "3.0", - "x": 0.345, - "y": 22.1427 - }, - { - "l": "3.0", - "x": 0.3641, - "y": 22.1871 - }, - { - "l": "3.0", - "x": 0.3833, - "y": 22.2246 - }, - { - "l": "3.0", - "x": 0.4025, - "y": 22.2557 - }, - { - "l": "3.0", - "x": 0.4216, - "y": 22.2812 - }, - { - "l": "3.0", - "x": 0.4408, - "y": 22.302 - }, - { - "l": "3.0", - "x": 0.46, - "y": 22.3178 - }, - { - "l": "3.0", - "x": 0.4791, - "y": 22.3289 - }, - { - "l": "3.0", - "x": 0.4983, - "y": 22.3354 - }, - { - "l": "3.0", - "x": 0.5175, - "y": 22.3379 - }, - { - "l": "3.0", - "x": 0.5366, - "y": 22.3363 - }, - { - "l": "3.0", - "x": 0.5558, - "y": 22.3309 - }, - { - "l": "3.0", - "x": 0.5749, - "y": 22.3219 - }, - { - "l": "3.0", - "x": 0.5941, - "y": 22.3093 - }, - { - "l": "3.0", - "x": 0.6133, - "y": 22.2933 - }, - { - "l": "3.0", - "x": 0.6324, - "y": 22.2744 - }, - { - "l": "3.0", - "x": 0.6516, - "y": 22.2528 - }, - { - "l": "3.0", - "x": 0.6708, - "y": 22.2286 - }, - { - "l": "3.0", - "x": 0.6899, - "y": 22.2021 - }, - { - "l": "3.0", - "x": 0.7091, - "y": 22.1736 - }, - { - "l": "3.0", - "x": 0.7283, - "y": 22.1433 - }, - { - "l": "3.0", - "x": 0.7474, - "y": 22.1114 - }, - { - "l": "3.0", - "x": 0.7666, - "y": 22.0784 - }, - { - "l": "3.0", - "x": 0.7858, - "y": 22.0444 - }, - { - "l": "3.0", - "x": 0.8049, - "y": 22.0093 - }, - { - "l": "3.0", - "x": 0.8241, - "y": 21.9735 - }, - { - "l": "3.0", - "x": 0.8433, - "y": 21.9373 - }, - { - "l": "3.0", - "x": 0.8624, - "y": 21.9006 - }, - { - "l": "3.0", - "x": 0.8816, - "y": 21.8637 - }, - { - "l": "3.0", - "x": 0.9008, - "y": 21.8264 - }, - { - "l": "3.0", - "x": 0.9199, - "y": 21.7891 - }, - { - "l": "3.0", - "x": 0.9391, - "y": 21.7519 - }, - { - "l": "3.0", - "x": 0.9582, - "y": 21.7147 - }, - { - "l": "3.0", - "x": 0.9774, - "y": 21.6776 - }, - { - "l": "3.0", - "x": 0.9966, - "y": 21.6405 - }, - { - "l": "3.0", - "x": 1.0157, - "y": 21.6034 - }, - { - "l": "3.0", - "x": 1.0349, - "y": 21.5665 - }, - { - "l": "3.0", - "x": 1.0541, - "y": 21.5297 - }, - { - "l": "3.0", - "x": 1.0732, - "y": 21.4932 - }, - { - "l": "3.0", - "x": 1.0924, - "y": 21.4571 - }, - { - "l": "3.0", - "x": 1.1116, - "y": 21.4213 - }, - { - "l": "3.0", - "x": 1.1307, - "y": 21.386 - }, - { - "l": "3.0", - "x": 1.1499, - "y": 21.3509 - }, - { - "l": "3.0", - "x": 1.1691, - "y": 21.3162 - }, - { - "l": "3.0", - "x": 1.1882, - "y": 21.2819 - }, - { - "l": "3.0", - "x": 1.2074, - "y": 21.2479 - }, - { - "l": "3.0", - "x": 1.2266, - "y": 21.2143 - }, - { - "l": "3.0", - "x": 1.2457, - "y": 21.1812 - }, - { - "l": "3.0", - "x": 1.2649, - "y": 21.1485 - }, - { - "l": "3.0", - "x": 1.2841, - "y": 21.1162 - }, - { - "l": "3.0", - "x": 1.3032, - "y": 21.0843 - }, - { - "l": "3.0", - "x": 1.3224, - "y": 21.0529 - }, - { - "l": "3.0", - "x": 1.3415, - "y": 21.0219 - }, - { - "l": "3.0", - "x": 1.3607, - "y": 20.9914 - }, - { - "l": "3.0", - "x": 1.3799, - "y": 20.9614 - }, - { - "l": "3.0", - "x": 1.399, - "y": 20.9318 - }, - { - "l": "3.0", - "x": 1.4182, - "y": 20.9027 - }, - { - "l": "3.0", - "x": 1.4374, - "y": 20.8742 - }, - { - "l": "3.0", - "x": 1.4565, - "y": 20.8462 - }, - { - "l": "3.0", - "x": 1.4757, - "y": 20.8186 - }, - { - "l": "3.0", - "x": 1.4949, - "y": 20.7916 - }, - { - "l": "3.0", - "x": 1.514, - "y": 20.7649 - }, - { - "l": "3.0", - "x": 1.5332, - "y": 20.7386 - }, - { - "l": "3.0", - "x": 1.5524, - "y": 20.7129 - }, - { - "l": "3.0", - "x": 1.5715, - "y": 20.6877 - }, - { - "l": "3.0", - "x": 1.5907, - "y": 20.663 - }, - { - "l": "3.0", - "x": 1.6099, - "y": 20.6389 - }, - { - "l": "3.0", - "x": 1.629, - "y": 20.6154 - }, - { - "l": "3.0", - "x": 1.6482, - "y": 20.5924 - }, - { - "l": "3.0", - "x": 1.6674, - "y": 20.5699 - }, - { - "l": "3.0", - "x": 1.6865, - "y": 20.5478 - }, - { - "l": "3.0", - "x": 1.7057, - "y": 20.5263 - }, - { - "l": "3.0", - "x": 1.7248, - "y": 20.5054 - }, - { - "l": "3.0", - "x": 1.744, - "y": 20.485 - }, - { - "l": "3.0", - "x": 1.7632, - "y": 20.4652 - }, - { - "l": "3.0", - "x": 1.7823, - "y": 20.4461 - }, - { - "l": "3.0", - "x": 1.8015, - "y": 20.4275 - }, - { - "l": "3.0", - "x": 1.8207, - "y": 20.4093 - }, - { - "l": "3.0", - "x": 1.8398, - "y": 20.3916 - }, - { - "l": "3.0", - "x": 1.859, - "y": 20.3742 - }, - { - "l": "3.0", - "x": 1.8782, - "y": 20.3573 - }, - { - "l": "3.0", - "x": 1.8973, - "y": 20.3408 - }, - { - "l": "3.0", - "x": 1.9165, - "y": 20.3247 - }, - { - "l": "3.0", - "x": 1.9357, - "y": 20.3098 - }, - { - "l": "3.0", - "x": 1.9548, - "y": 20.295 - }, - { - "l": "3.0", - "x": 1.974, - "y": 20.2801 - }, - { - "l": "3.0", - "x": 1.9932, - "y": 20.2652 - } - ] - }, - { - "sds": 3.33, - "centile": 99.95657700796184, - "data": [ - { - "l": "3.33", - "x": 0.0383, - "y": 18.3313 - }, - { - "l": "3.33", - "x": 0.0575, - "y": 19.0501 - }, - { - "l": "3.33", - "x": 0.0767, - "y": 19.7343 - }, - { - "l": "3.33", - "x": 0.0958, - "y": 20.3187 - }, - { - "l": "3.33", - "x": 0.115, - "y": 20.7921 - }, - { - "l": "3.33", - "x": 0.1342, - "y": 21.1789 - }, - { - "l": "3.33", - "x": 0.1533, - "y": 21.4985 - }, - { - "l": "3.33", - "x": 0.1725, - "y": 21.7624 - }, - { - "l": "3.33", - "x": 0.1916, - "y": 21.9776 - }, - { - "l": "3.33", - "x": 0.2108, - "y": 22.1526 - }, - { - "l": "3.33", - "x": 0.23, - "y": 22.2956 - }, - { - "l": "3.33", - "x": 0.2491, - "y": 22.4127 - }, - { - "l": "3.33", - "x": 0.2683, - "y": 22.5146 - }, - { - "l": "3.33", - "x": 0.2875, - "y": 22.5987 - }, - { - "l": "3.33", - "x": 0.3066, - "y": 22.6678 - }, - { - "l": "3.33", - "x": 0.3258, - "y": 22.7247 - }, - { - "l": "3.33", - "x": 0.345, - "y": 22.7765 - }, - { - "l": "3.33", - "x": 0.3641, - "y": 22.8233 - }, - { - "l": "3.33", - "x": 0.3833, - "y": 22.8629 - }, - { - "l": "3.33", - "x": 0.4025, - "y": 22.8959 - }, - { - "l": "3.33", - "x": 0.4216, - "y": 22.9232 - }, - { - "l": "3.33", - "x": 0.4408, - "y": 22.9458 - }, - { - "l": "3.33", - "x": 0.46, - "y": 22.9631 - }, - { - "l": "3.33", - "x": 0.4791, - "y": 22.9755 - }, - { - "l": "3.33", - "x": 0.4983, - "y": 22.9833 - }, - { - "l": "3.33", - "x": 0.5175, - "y": 22.9868 - }, - { - "l": "3.33", - "x": 0.5366, - "y": 22.9862 - }, - { - "l": "3.33", - "x": 0.5558, - "y": 22.9816 - }, - { - "l": "3.33", - "x": 0.5749, - "y": 22.9733 - }, - { - "l": "3.33", - "x": 0.5941, - "y": 22.9612 - }, - { - "l": "3.33", - "x": 0.6133, - "y": 22.9458 - }, - { - "l": "3.33", - "x": 0.6324, - "y": 22.9272 - }, - { - "l": "3.33", - "x": 0.6516, - "y": 22.9058 - }, - { - "l": "3.33", - "x": 0.6708, - "y": 22.8817 - }, - { - "l": "3.33", - "x": 0.6899, - "y": 22.8553 - }, - { - "l": "3.33", - "x": 0.7091, - "y": 22.8268 - }, - { - "l": "3.33", - "x": 0.7283, - "y": 22.7964 - }, - { - "l": "3.33", - "x": 0.7474, - "y": 22.7644 - }, - { - "l": "3.33", - "x": 0.7666, - "y": 22.7312 - }, - { - "l": "3.33", - "x": 0.7858, - "y": 22.6969 - }, - { - "l": "3.33", - "x": 0.8049, - "y": 22.6616 - }, - { - "l": "3.33", - "x": 0.8241, - "y": 22.6254 - }, - { - "l": "3.33", - "x": 0.8433, - "y": 22.5888 - }, - { - "l": "3.33", - "x": 0.8624, - "y": 22.5518 - }, - { - "l": "3.33", - "x": 0.8816, - "y": 22.5144 - }, - { - "l": "3.33", - "x": 0.9008, - "y": 22.4767 - }, - { - "l": "3.33", - "x": 0.9199, - "y": 22.439 - }, - { - "l": "3.33", - "x": 0.9391, - "y": 22.4013 - }, - { - "l": "3.33", - "x": 0.9582, - "y": 22.3637 - }, - { - "l": "3.33", - "x": 0.9774, - "y": 22.326 - }, - { - "l": "3.33", - "x": 0.9966, - "y": 22.2884 - }, - { - "l": "3.33", - "x": 1.0157, - "y": 22.2509 - }, - { - "l": "3.33", - "x": 1.0349, - "y": 22.2134 - }, - { - "l": "3.33", - "x": 1.0541, - "y": 22.1761 - }, - { - "l": "3.33", - "x": 1.0732, - "y": 22.139 - }, - { - "l": "3.33", - "x": 1.0924, - "y": 22.1024 - }, - { - "l": "3.33", - "x": 1.1116, - "y": 22.0661 - }, - { - "l": "3.33", - "x": 1.1307, - "y": 22.0303 - }, - { - "l": "3.33", - "x": 1.1499, - "y": 21.9947 - }, - { - "l": "3.33", - "x": 1.1691, - "y": 21.9595 - }, - { - "l": "3.33", - "x": 1.1882, - "y": 21.9247 - }, - { - "l": "3.33", - "x": 1.2074, - "y": 21.8902 - }, - { - "l": "3.33", - "x": 1.2266, - "y": 21.8561 - }, - { - "l": "3.33", - "x": 1.2457, - "y": 21.8224 - }, - { - "l": "3.33", - "x": 1.2649, - "y": 21.7892 - }, - { - "l": "3.33", - "x": 1.2841, - "y": 21.7564 - }, - { - "l": "3.33", - "x": 1.3032, - "y": 21.724 - }, - { - "l": "3.33", - "x": 1.3224, - "y": 21.6921 - }, - { - "l": "3.33", - "x": 1.3415, - "y": 21.6606 - }, - { - "l": "3.33", - "x": 1.3607, - "y": 21.6296 - }, - { - "l": "3.33", - "x": 1.3799, - "y": 21.5991 - }, - { - "l": "3.33", - "x": 1.399, - "y": 21.5691 - }, - { - "l": "3.33", - "x": 1.4182, - "y": 21.5395 - }, - { - "l": "3.33", - "x": 1.4374, - "y": 21.5106 - }, - { - "l": "3.33", - "x": 1.4565, - "y": 21.4821 - }, - { - "l": "3.33", - "x": 1.4757, - "y": 21.4541 - }, - { - "l": "3.33", - "x": 1.4949, - "y": 21.4267 - }, - { - "l": "3.33", - "x": 1.514, - "y": 21.3995 - }, - { - "l": "3.33", - "x": 1.5332, - "y": 21.3729 - }, - { - "l": "3.33", - "x": 1.5524, - "y": 21.3467 - }, - { - "l": "3.33", - "x": 1.5715, - "y": 21.3211 - }, - { - "l": "3.33", - "x": 1.5907, - "y": 21.296 - }, - { - "l": "3.33", - "x": 1.6099, - "y": 21.2716 - }, - { - "l": "3.33", - "x": 1.629, - "y": 21.2477 - }, - { - "l": "3.33", - "x": 1.6482, - "y": 21.2243 - }, - { - "l": "3.33", - "x": 1.6674, - "y": 21.2015 - }, - { - "l": "3.33", - "x": 1.6865, - "y": 21.1791 - }, - { - "l": "3.33", - "x": 1.7057, - "y": 21.1573 - }, - { - "l": "3.33", - "x": 1.7248, - "y": 21.136 - }, - { - "l": "3.33", - "x": 1.744, - "y": 21.1153 - }, - { - "l": "3.33", - "x": 1.7632, - "y": 21.0953 - }, - { - "l": "3.33", - "x": 1.7823, - "y": 21.0759 - }, - { - "l": "3.33", - "x": 1.8015, - "y": 21.057 - }, - { - "l": "3.33", - "x": 1.8207, - "y": 21.0386 - }, - { - "l": "3.33", - "x": 1.8398, - "y": 21.0206 - }, - { - "l": "3.33", - "x": 1.859, - "y": 21.0031 - }, - { - "l": "3.33", - "x": 1.8782, - "y": 20.9859 - }, - { - "l": "3.33", - "x": 1.8973, - "y": 20.9692 - }, - { - "l": "3.33", - "x": 1.9165, - "y": 20.9529 - }, - { - "l": "3.33", - "x": 1.9357, - "y": 20.9379 - }, - { - "l": "3.33", - "x": 1.9548, - "y": 20.9228 - }, - { - "l": "3.33", - "x": 1.974, - "y": 20.9078 - }, - { - "l": "3.33", - "x": 1.9932, - "y": 20.8927 - } - ] - }, - { - "sds": 3.67, - "centile": 99.98787247657145, - "data": [ - { - "l": "3.67", - "x": 0.0383, - "y": 18.8564 - }, - { - "l": "3.67", - "x": 0.0575, - "y": 19.5957 - }, - { - "l": "3.67", - "x": 0.0767, - "y": 20.3 - }, - { - "l": "3.67", - "x": 0.0958, - "y": 20.9021 - }, - { - "l": "3.67", - "x": 0.115, - "y": 21.3902 - }, - { - "l": "3.67", - "x": 0.1342, - "y": 21.7895 - }, - { - "l": "3.67", - "x": 0.1533, - "y": 22.1197 - }, - { - "l": "3.67", - "x": 0.1725, - "y": 22.3928 - }, - { - "l": "3.67", - "x": 0.1916, - "y": 22.6157 - }, - { - "l": "3.67", - "x": 0.2108, - "y": 22.7973 - }, - { - "l": "3.67", - "x": 0.23, - "y": 22.946 - }, - { - "l": "3.67", - "x": 0.2491, - "y": 23.068 - }, - { - "l": "3.67", - "x": 0.2683, - "y": 23.1749 - }, - { - "l": "3.67", - "x": 0.2875, - "y": 23.2632 - }, - { - "l": "3.67", - "x": 0.3066, - "y": 23.3356 - }, - { - "l": "3.67", - "x": 0.3258, - "y": 23.3954 - }, - { - "l": "3.67", - "x": 0.345, - "y": 23.45 - }, - { - "l": "3.67", - "x": 0.3641, - "y": 23.4997 - }, - { - "l": "3.67", - "x": 0.3833, - "y": 23.542 - }, - { - "l": "3.67", - "x": 0.4025, - "y": 23.5774 - }, - { - "l": "3.67", - "x": 0.4216, - "y": 23.607 - }, - { - "l": "3.67", - "x": 0.4408, - "y": 23.6316 - }, - { - "l": "3.67", - "x": 0.46, - "y": 23.6508 - }, - { - "l": "3.67", - "x": 0.4791, - "y": 23.665 - }, - { - "l": "3.67", - "x": 0.4983, - "y": 23.6743 - }, - { - "l": "3.67", - "x": 0.5175, - "y": 23.6793 - }, - { - "l": "3.67", - "x": 0.5366, - "y": 23.68 - }, - { - "l": "3.67", - "x": 0.5558, - "y": 23.6765 - }, - { - "l": "3.67", - "x": 0.5749, - "y": 23.6691 - }, - { - "l": "3.67", - "x": 0.5941, - "y": 23.6579 - }, - { - "l": "3.67", - "x": 0.6133, - "y": 23.6432 - }, - { - "l": "3.67", - "x": 0.6324, - "y": 23.6252 - }, - { - "l": "3.67", - "x": 0.6516, - "y": 23.6043 - }, - { - "l": "3.67", - "x": 0.6708, - "y": 23.5806 - }, - { - "l": "3.67", - "x": 0.6899, - "y": 23.5545 - }, - { - "l": "3.67", - "x": 0.7091, - "y": 23.5262 - }, - { - "l": "3.67", - "x": 0.7283, - "y": 23.4959 - }, - { - "l": "3.67", - "x": 0.7474, - "y": 23.4639 - }, - { - "l": "3.67", - "x": 0.7666, - "y": 23.4307 - }, - { - "l": "3.67", - "x": 0.7858, - "y": 23.3964 - }, - { - "l": "3.67", - "x": 0.8049, - "y": 23.3609 - }, - { - "l": "3.67", - "x": 0.8241, - "y": 23.3246 - }, - { - "l": "3.67", - "x": 0.8433, - "y": 23.2878 - }, - { - "l": "3.67", - "x": 0.8624, - "y": 23.2506 - }, - { - "l": "3.67", - "x": 0.8816, - "y": 23.2129 - }, - { - "l": "3.67", - "x": 0.9008, - "y": 23.175 - }, - { - "l": "3.67", - "x": 0.9199, - "y": 23.1369 - }, - { - "l": "3.67", - "x": 0.9391, - "y": 23.099 - }, - { - "l": "3.67", - "x": 0.9582, - "y": 23.061 - }, - { - "l": "3.67", - "x": 0.9774, - "y": 23.023 - }, - { - "l": "3.67", - "x": 0.9966, - "y": 22.985 - }, - { - "l": "3.67", - "x": 1.0157, - "y": 22.9471 - }, - { - "l": "3.67", - "x": 1.0349, - "y": 22.9092 - }, - { - "l": "3.67", - "x": 1.0541, - "y": 22.8715 - }, - { - "l": "3.67", - "x": 1.0732, - "y": 22.834 - }, - { - "l": "3.67", - "x": 1.0924, - "y": 22.7969 - }, - { - "l": "3.67", - "x": 1.1116, - "y": 22.7603 - }, - { - "l": "3.67", - "x": 1.1307, - "y": 22.724 - }, - { - "l": "3.67", - "x": 1.1499, - "y": 22.6881 - }, - { - "l": "3.67", - "x": 1.1691, - "y": 22.6525 - }, - { - "l": "3.67", - "x": 1.1882, - "y": 22.6172 - }, - { - "l": "3.67", - "x": 1.2074, - "y": 22.5823 - }, - { - "l": "3.67", - "x": 1.2266, - "y": 22.5478 - }, - { - "l": "3.67", - "x": 1.2457, - "y": 22.5137 - }, - { - "l": "3.67", - "x": 1.2649, - "y": 22.48 - }, - { - "l": "3.67", - "x": 1.2841, - "y": 22.4468 - }, - { - "l": "3.67", - "x": 1.3032, - "y": 22.414 - }, - { - "l": "3.67", - "x": 1.3224, - "y": 22.3817 - }, - { - "l": "3.67", - "x": 1.3415, - "y": 22.3499 - }, - { - "l": "3.67", - "x": 1.3607, - "y": 22.3185 - }, - { - "l": "3.67", - "x": 1.3799, - "y": 22.2875 - }, - { - "l": "3.67", - "x": 1.399, - "y": 22.2571 - }, - { - "l": "3.67", - "x": 1.4182, - "y": 22.2272 - }, - { - "l": "3.67", - "x": 1.4374, - "y": 22.1979 - }, - { - "l": "3.67", - "x": 1.4565, - "y": 22.1691 - }, - { - "l": "3.67", - "x": 1.4757, - "y": 22.1408 - }, - { - "l": "3.67", - "x": 1.4949, - "y": 22.1129 - }, - { - "l": "3.67", - "x": 1.514, - "y": 22.0855 - }, - { - "l": "3.67", - "x": 1.5332, - "y": 22.0585 - }, - { - "l": "3.67", - "x": 1.5524, - "y": 22.032 - }, - { - "l": "3.67", - "x": 1.5715, - "y": 22.006 - }, - { - "l": "3.67", - "x": 1.5907, - "y": 21.9807 - }, - { - "l": "3.67", - "x": 1.6099, - "y": 21.9559 - }, - { - "l": "3.67", - "x": 1.629, - "y": 21.9318 - }, - { - "l": "3.67", - "x": 1.6482, - "y": 21.9081 - }, - { - "l": "3.67", - "x": 1.6674, - "y": 21.885 - }, - { - "l": "3.67", - "x": 1.6865, - "y": 21.8624 - }, - { - "l": "3.67", - "x": 1.7057, - "y": 21.8403 - }, - { - "l": "3.67", - "x": 1.7248, - "y": 21.8188 - }, - { - "l": "3.67", - "x": 1.744, - "y": 21.7978 - }, - { - "l": "3.67", - "x": 1.7632, - "y": 21.7776 - }, - { - "l": "3.67", - "x": 1.7823, - "y": 21.758 - }, - { - "l": "3.67", - "x": 1.8015, - "y": 21.739 - }, - { - "l": "3.67", - "x": 1.8207, - "y": 21.7204 - }, - { - "l": "3.67", - "x": 1.8398, - "y": 21.7023 - }, - { - "l": "3.67", - "x": 1.859, - "y": 21.6846 - }, - { - "l": "3.67", - "x": 1.8782, - "y": 21.6673 - }, - { - "l": "3.67", - "x": 1.8973, - "y": 21.6504 - }, - { - "l": "3.67", - "x": 1.9165, - "y": 21.6341 - }, - { - "l": "3.67", - "x": 1.9357, - "y": 21.6189 - }, - { - "l": "3.67", - "x": 1.9548, - "y": 21.6038 - }, - { - "l": "3.67", - "x": 1.974, - "y": 21.5886 - }, - { - "l": "3.67", - "x": 1.9932, - "y": 21.5735 - } - ] - }, - { - "sds": 4.0, - "centile": 99.9968328758167, - "data": [ - { - "l": "4.0", - "x": 0.0383, - "y": 19.3743 - }, - { - "l": "4.0", - "x": 0.0575, - "y": 20.1349 - }, - { - "l": "4.0", - "x": 0.0767, - "y": 20.8599 - }, - { - "l": "4.0", - "x": 0.0958, - "y": 21.4803 - }, - { - "l": "4.0", - "x": 0.115, - "y": 21.9838 - }, - { - "l": "4.0", - "x": 0.1342, - "y": 22.3961 - }, - { - "l": "4.0", - "x": 0.1533, - "y": 22.7375 - }, - { - "l": "4.0", - "x": 0.1725, - "y": 23.0202 - }, - { - "l": "4.0", - "x": 0.1916, - "y": 23.2514 - }, - { - "l": "4.0", - "x": 0.2108, - "y": 23.44 - }, - { - "l": "4.0", - "x": 0.23, - "y": 23.5949 - }, - { - "l": "4.0", - "x": 0.2491, - "y": 23.7223 - }, - { - "l": "4.0", - "x": 0.2683, - "y": 23.8346 - }, - { - "l": "4.0", - "x": 0.2875, - "y": 23.9273 - }, - { - "l": "4.0", - "x": 0.3066, - "y": 24.0036 - }, - { - "l": "4.0", - "x": 0.3258, - "y": 24.0665 - }, - { - "l": "4.0", - "x": 0.345, - "y": 24.1245 - }, - { - "l": "4.0", - "x": 0.3641, - "y": 24.1773 - }, - { - "l": "4.0", - "x": 0.3833, - "y": 24.2226 - }, - { - "l": "4.0", - "x": 0.4025, - "y": 24.2608 - }, - { - "l": "4.0", - "x": 0.4216, - "y": 24.2929 - }, - { - "l": "4.0", - "x": 0.4408, - "y": 24.3199 - }, - { - "l": "4.0", - "x": 0.46, - "y": 24.3414 - }, - { - "l": "4.0", - "x": 0.4791, - "y": 24.3576 - }, - { - "l": "4.0", - "x": 0.4983, - "y": 24.3688 - }, - { - "l": "4.0", - "x": 0.5175, - "y": 24.3755 - }, - { - "l": "4.0", - "x": 0.5366, - "y": 24.3777 - }, - { - "l": "4.0", - "x": 0.5558, - "y": 24.3756 - }, - { - "l": "4.0", - "x": 0.5749, - "y": 24.3695 - }, - { - "l": "4.0", - "x": 0.5941, - "y": 24.3594 - }, - { - "l": "4.0", - "x": 0.6133, - "y": 24.3457 - }, - { - "l": "4.0", - "x": 0.6324, - "y": 24.3286 - }, - { - "l": "4.0", - "x": 0.6516, - "y": 24.3084 - }, - { - "l": "4.0", - "x": 0.6708, - "y": 24.2854 - }, - { - "l": "4.0", - "x": 0.6899, - "y": 24.2598 - }, - { - "l": "4.0", - "x": 0.7091, - "y": 24.2319 - }, - { - "l": "4.0", - "x": 0.7283, - "y": 24.2019 - }, - { - "l": "4.0", - "x": 0.7474, - "y": 24.1702 - }, - { - "l": "4.0", - "x": 0.7666, - "y": 24.1373 - }, - { - "l": "4.0", - "x": 0.7858, - "y": 24.103 - }, - { - "l": "4.0", - "x": 0.8049, - "y": 24.0677 - }, - { - "l": "4.0", - "x": 0.8241, - "y": 24.0314 - }, - { - "l": "4.0", - "x": 0.8433, - "y": 23.9946 - }, - { - "l": "4.0", - "x": 0.8624, - "y": 23.9573 - }, - { - "l": "4.0", - "x": 0.8816, - "y": 23.9196 - }, - { - "l": "4.0", - "x": 0.9008, - "y": 23.8816 - }, - { - "l": "4.0", - "x": 0.9199, - "y": 23.8434 - }, - { - "l": "4.0", - "x": 0.9391, - "y": 23.8053 - }, - { - "l": "4.0", - "x": 0.9582, - "y": 23.7672 - }, - { - "l": "4.0", - "x": 0.9774, - "y": 23.729 - }, - { - "l": "4.0", - "x": 0.9966, - "y": 23.6909 - }, - { - "l": "4.0", - "x": 1.0157, - "y": 23.6527 - }, - { - "l": "4.0", - "x": 1.0349, - "y": 23.6146 - }, - { - "l": "4.0", - "x": 1.0541, - "y": 23.5766 - }, - { - "l": "4.0", - "x": 1.0732, - "y": 23.5389 - }, - { - "l": "4.0", - "x": 1.0924, - "y": 23.5015 - }, - { - "l": "4.0", - "x": 1.1116, - "y": 23.4646 - }, - { - "l": "4.0", - "x": 1.1307, - "y": 23.4281 - }, - { - "l": "4.0", - "x": 1.1499, - "y": 23.3919 - }, - { - "l": "4.0", - "x": 1.1691, - "y": 23.356 - }, - { - "l": "4.0", - "x": 1.1882, - "y": 23.3205 - }, - { - "l": "4.0", - "x": 1.2074, - "y": 23.2853 - }, - { - "l": "4.0", - "x": 1.2266, - "y": 23.2506 - }, - { - "l": "4.0", - "x": 1.2457, - "y": 23.2162 - }, - { - "l": "4.0", - "x": 1.2649, - "y": 23.1823 - }, - { - "l": "4.0", - "x": 1.2841, - "y": 23.1488 - }, - { - "l": "4.0", - "x": 1.3032, - "y": 23.1157 - }, - { - "l": "4.0", - "x": 1.3224, - "y": 23.0831 - }, - { - "l": "4.0", - "x": 1.3415, - "y": 23.051 - }, - { - "l": "4.0", - "x": 1.3607, - "y": 23.0193 - }, - { - "l": "4.0", - "x": 1.3799, - "y": 22.9881 - }, - { - "l": "4.0", - "x": 1.399, - "y": 22.9574 - }, - { - "l": "4.0", - "x": 1.4182, - "y": 22.9273 - }, - { - "l": "4.0", - "x": 1.4374, - "y": 22.8977 - }, - { - "l": "4.0", - "x": 1.4565, - "y": 22.8687 - }, - { - "l": "4.0", - "x": 1.4757, - "y": 22.8402 - }, - { - "l": "4.0", - "x": 1.4949, - "y": 22.8121 - }, - { - "l": "4.0", - "x": 1.514, - "y": 22.7845 - }, - { - "l": "4.0", - "x": 1.5332, - "y": 22.7572 - }, - { - "l": "4.0", - "x": 1.5524, - "y": 22.7305 - }, - { - "l": "4.0", - "x": 1.5715, - "y": 22.7043 - }, - { - "l": "4.0", - "x": 1.5907, - "y": 22.6788 - }, - { - "l": "4.0", - "x": 1.6099, - "y": 22.6539 - }, - { - "l": "4.0", - "x": 1.629, - "y": 22.6295 - }, - { - "l": "4.0", - "x": 1.6482, - "y": 22.6057 - }, - { - "l": "4.0", - "x": 1.6674, - "y": 22.5825 - }, - { - "l": "4.0", - "x": 1.6865, - "y": 22.5597 - }, - { - "l": "4.0", - "x": 1.7057, - "y": 22.5374 - }, - { - "l": "4.0", - "x": 1.7248, - "y": 22.5157 - }, - { - "l": "4.0", - "x": 1.744, - "y": 22.4947 - }, - { - "l": "4.0", - "x": 1.7632, - "y": 22.4743 - }, - { - "l": "4.0", - "x": 1.7823, - "y": 22.4547 - }, - { - "l": "4.0", - "x": 1.8015, - "y": 22.4356 - }, - { - "l": "4.0", - "x": 1.8207, - "y": 22.417 - }, - { - "l": "4.0", - "x": 1.8398, - "y": 22.3988 - }, - { - "l": "4.0", - "x": 1.859, - "y": 22.381 - }, - { - "l": "4.0", - "x": 1.8782, - "y": 22.3637 - }, - { - "l": "4.0", - "x": 1.8973, - "y": 22.3468 - }, - { - "l": "4.0", - "x": 1.9165, - "y": 22.3304 - }, - { - "l": "4.0", - "x": 1.9357, - "y": 22.3152 - }, - { - "l": "4.0", - "x": 1.9548, - "y": 22.3001 - }, - { - "l": "4.0", - "x": 1.974, - "y": 22.2849 - }, - { - "l": "4.0", - "x": 1.9932, - "y": 22.2698 - } - ] - } - ] - }, - "female": null - } - }, - { - "uk_who_child": { - "male": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -5.0, - "centile": 2.866515718791933e-05, - "data": [ - { - "l": "-5.0", - "x": 2.0, - "y": 11.3023 - }, - { - "l": "-5.0", - "x": 2.0192, - "y": 11.2901 - }, - { - "l": "-5.0", - "x": 2.1025, - "y": 11.2371 - }, - { - "l": "-5.0", - "x": 2.1858, - "y": 11.1841 - }, - { - "l": "-5.0", - "x": 2.2692, - "y": 11.1322 - }, - { - "l": "-5.0", - "x": 2.3525, - "y": 11.0808 - }, - { - "l": "-5.0", - "x": 2.4358, - "y": 11.0306 - }, - { - "l": "-5.0", - "x": 2.5192, - "y": 10.9817 - }, - { - "l": "-5.0", - "x": 2.6025, - "y": 10.9341 - }, - { - "l": "-5.0", - "x": 2.6858, - "y": 10.8884 - }, - { - "l": "-5.0", - "x": 2.7692, - "y": 10.8439 - }, - { - "l": "-5.0", - "x": 2.8525, - "y": 10.8017 - }, - { - "l": "-5.0", - "x": 2.9358, - "y": 10.7611 - }, - { - "l": "-5.0", - "x": 3.0192, - "y": 10.723 - }, - { - "l": "-5.0", - "x": 3.1025, - "y": 10.6869 - }, - { - "l": "-5.0", - "x": 3.1858, - "y": 10.6536 - }, - { - "l": "-5.0", - "x": 3.2692, - "y": 10.6226 - }, - { - "l": "-5.0", - "x": 3.3525, - "y": 10.594 - }, - { - "l": "-5.0", - "x": 3.4358, - "y": 10.5677 - }, - { - "l": "-5.0", - "x": 3.5192, - "y": 10.5439 - }, - { - "l": "-5.0", - "x": 3.6025, - "y": 10.5223 - }, - { - "l": "-5.0", - "x": 3.6858, - "y": 10.5025 - }, - { - "l": "-5.0", - "x": 3.7692, - "y": 10.4847 - }, - { - "l": "-5.0", - "x": 3.8525, - "y": 10.4688 - }, - { - "l": "-5.0", - "x": 3.9358, - "y": 10.4546 - } - ] - }, - { - "sds": -4.0, - "centile": 0.003167124183311986, - "data": [ - { - "l": "-4.0", - "x": 2.0, - "y": 12.0492 - }, - { - "l": "-4.0", - "x": 2.0192, - "y": 12.0381 - }, - { - "l": "-4.0", - "x": 2.1025, - "y": 11.9899 - }, - { - "l": "-4.0", - "x": 2.1858, - "y": 11.9418 - }, - { - "l": "-4.0", - "x": 2.2692, - "y": 11.8947 - }, - { - "l": "-4.0", - "x": 2.3525, - "y": 11.8481 - }, - { - "l": "-4.0", - "x": 2.4358, - "y": 11.8025 - }, - { - "l": "-4.0", - "x": 2.5192, - "y": 11.7578 - }, - { - "l": "-4.0", - "x": 2.6025, - "y": 11.7143 - }, - { - "l": "-4.0", - "x": 2.6858, - "y": 11.6723 - }, - { - "l": "-4.0", - "x": 2.7692, - "y": 11.6312 - }, - { - "l": "-4.0", - "x": 2.8525, - "y": 11.5919 - }, - { - "l": "-4.0", - "x": 2.9358, - "y": 11.5539 - }, - { - "l": "-4.0", - "x": 3.0192, - "y": 11.5178 - }, - { - "l": "-4.0", - "x": 3.1025, - "y": 11.4834 - }, - { - "l": "-4.0", - "x": 3.1858, - "y": 11.4512 - }, - { - "l": "-4.0", - "x": 3.2692, - "y": 11.4207 - }, - { - "l": "-4.0", - "x": 3.3525, - "y": 11.3924 - }, - { - "l": "-4.0", - "x": 3.4358, - "y": 11.3658 - }, - { - "l": "-4.0", - "x": 3.5192, - "y": 11.3414 - }, - { - "l": "-4.0", - "x": 3.6025, - "y": 11.3188 - }, - { - "l": "-4.0", - "x": 3.6858, - "y": 11.2976 - }, - { - "l": "-4.0", - "x": 3.7692, - "y": 11.2781 - }, - { - "l": "-4.0", - "x": 3.8525, - "y": 11.2601 - }, - { - "l": "-4.0", - "x": 3.9358, - "y": 11.2435 - } - ] - }, - { - "sds": 3.0, - "centile": 99.86501019683699, - "data": [ - { - "l": "3.0", - "x": 2.0, - "y": 20.615 - }, - { - "l": "3.0", - "x": 2.0192, - "y": 20.5991 - }, - { - "l": "3.0", - "x": 2.1025, - "y": 20.5305 - }, - { - "l": "3.0", - "x": 2.1858, - "y": 20.4638 - }, - { - "l": "3.0", - "x": 2.2692, - "y": 20.3995 - }, - { - "l": "3.0", - "x": 2.3525, - "y": 20.3389 - }, - { - "l": "3.0", - "x": 2.4358, - "y": 20.2814 - }, - { - "l": "3.0", - "x": 2.5192, - "y": 20.227 - }, - { - "l": "3.0", - "x": 2.6025, - "y": 20.1753 - }, - { - "l": "3.0", - "x": 2.6858, - "y": 20.1264 - }, - { - "l": "3.0", - "x": 2.7692, - "y": 20.0811 - }, - { - "l": "3.0", - "x": 2.8525, - "y": 20.0387 - }, - { - "l": "3.0", - "x": 2.9358, - "y": 20.0002 - }, - { - "l": "3.0", - "x": 3.0192, - "y": 19.9649 - }, - { - "l": "3.0", - "x": 3.1025, - "y": 19.9338 - }, - { - "l": "3.0", - "x": 3.1858, - "y": 19.9062 - }, - { - "l": "3.0", - "x": 3.2692, - "y": 19.8834 - }, - { - "l": "3.0", - "x": 3.3525, - "y": 19.8649 - }, - { - "l": "3.0", - "x": 3.4358, - "y": 19.8513 - }, - { - "l": "3.0", - "x": 3.5192, - "y": 19.8417 - }, - { - "l": "3.0", - "x": 3.6025, - "y": 19.8365 - }, - { - "l": "3.0", - "x": 3.6858, - "y": 19.8355 - }, - { - "l": "3.0", - "x": 3.7692, - "y": 19.8381 - }, - { - "l": "3.0", - "x": 3.8525, - "y": 19.8442 - }, - { - "l": "3.0", - "x": 3.9358, - "y": 19.8539 - } - ] - }, - { - "sds": 3.33, - "centile": 99.95657700796184, - "data": [ - { - "l": "3.33", - "x": 2.0, - "y": 21.2494 - }, - { - "l": "3.33", - "x": 2.0192, - "y": 21.2317 - }, - { - "l": "3.33", - "x": 2.1025, - "y": 21.1554 - }, - { - "l": "3.33", - "x": 2.1858, - "y": 21.0812 - }, - { - "l": "3.33", - "x": 2.2692, - "y": 21.0099 - }, - { - "l": "3.33", - "x": 2.3525, - "y": 20.9431 - }, - { - "l": "3.33", - "x": 2.4358, - "y": 20.8798 - }, - { - "l": "3.33", - "x": 2.5192, - "y": 20.8203 - }, - { - "l": "3.33", - "x": 2.6025, - "y": 20.764 - }, - { - "l": "3.33", - "x": 2.6858, - "y": 20.7111 - }, - { - "l": "3.33", - "x": 2.7692, - "y": 20.6623 - }, - { - "l": "3.33", - "x": 2.8525, - "y": 20.6172 - }, - { - "l": "3.33", - "x": 2.9358, - "y": 20.5765 - }, - { - "l": "3.33", - "x": 3.0192, - "y": 20.5396 - }, - { - "l": "3.33", - "x": 3.1025, - "y": 20.5076 - }, - { - "l": "3.33", - "x": 3.1858, - "y": 20.4797 - }, - { - "l": "3.33", - "x": 3.2692, - "y": 20.4573 - }, - { - "l": "3.33", - "x": 3.3525, - "y": 20.44 - }, - { - "l": "3.33", - "x": 3.4358, - "y": 20.4281 - }, - { - "l": "3.33", - "x": 3.5192, - "y": 20.421 - }, - { - "l": "3.33", - "x": 3.6025, - "y": 20.4187 - }, - { - "l": "3.33", - "x": 3.6858, - "y": 20.4215 - }, - { - "l": "3.33", - "x": 3.7692, - "y": 20.4283 - }, - { - "l": "3.33", - "x": 3.8525, - "y": 20.4393 - }, - { - "l": "3.33", - "x": 3.9358, - "y": 20.4546 - } - ] - }, - { - "sds": 3.67, - "centile": 99.98787247657145, - "data": [ - { - "l": "3.67", - "x": 2.0, - "y": 21.9368 - }, - { - "l": "3.67", - "x": 2.0192, - "y": 21.9169 - }, - { - "l": "3.67", - "x": 2.1025, - "y": 21.831 - }, - { - "l": "3.67", - "x": 2.1858, - "y": 21.7478 - }, - { - "l": "3.67", - "x": 2.2692, - "y": 21.6682 - }, - { - "l": "3.67", - "x": 2.3525, - "y": 21.5937 - }, - { - "l": "3.67", - "x": 2.4358, - "y": 21.5235 - }, - { - "l": "3.67", - "x": 2.5192, - "y": 21.4577 - }, - { - "l": "3.67", - "x": 2.6025, - "y": 21.3959 - }, - { - "l": "3.67", - "x": 2.6858, - "y": 21.3381 - }, - { - "l": "3.67", - "x": 2.7692, - "y": 21.2852 - }, - { - "l": "3.67", - "x": 2.8525, - "y": 21.2366 - }, - { - "l": "3.67", - "x": 2.9358, - "y": 21.1933 - }, - { - "l": "3.67", - "x": 3.0192, - "y": 21.1545 - }, - { - "l": "3.67", - "x": 3.1025, - "y": 21.1214 - }, - { - "l": "3.67", - "x": 3.1858, - "y": 21.0931 - }, - { - "l": "3.67", - "x": 3.2692, - "y": 21.0711 - }, - { - "l": "3.67", - "x": 3.3525, - "y": 21.055 - }, - { - "l": "3.67", - "x": 3.4358, - "y": 21.0452 - }, - { - "l": "3.67", - "x": 3.5192, - "y": 21.0408 - }, - { - "l": "3.67", - "x": 3.6025, - "y": 21.0421 - }, - { - "l": "3.67", - "x": 3.6858, - "y": 21.0491 - }, - { - "l": "3.67", - "x": 3.7692, - "y": 21.061 - }, - { - "l": "3.67", - "x": 3.8525, - "y": 21.0776 - }, - { - "l": "3.67", - "x": 3.9358, - "y": 21.0994 - } - ] - }, - { - "sds": 4.0, - "centile": 99.9968328758167, - "data": [ - { - "l": "4.0", - "x": 2.0, - "y": 22.6391 - }, - { - "l": "4.0", - "x": 2.0192, - "y": 22.6167 - }, - { - "l": "4.0", - "x": 2.1025, - "y": 22.52 - }, - { - "l": "4.0", - "x": 2.1858, - "y": 22.4265 - }, - { - "l": "4.0", - "x": 2.2692, - "y": 22.3373 - }, - { - "l": "4.0", - "x": 2.3525, - "y": 22.2541 - }, - { - "l": "4.0", - "x": 2.4358, - "y": 22.1761 - }, - { - "l": "4.0", - "x": 2.5192, - "y": 22.1033 - }, - { - "l": "4.0", - "x": 2.6025, - "y": 22.0351 - }, - { - "l": "4.0", - "x": 2.6858, - "y": 21.9719 - }, - { - "l": "4.0", - "x": 2.7692, - "y": 21.9144 - }, - { - "l": "4.0", - "x": 2.8525, - "y": 21.8619 - }, - { - "l": "4.0", - "x": 2.9358, - "y": 21.8156 - }, - { - "l": "4.0", - "x": 3.0192, - "y": 21.7746 - }, - { - "l": "4.0", - "x": 3.1025, - "y": 21.7402 - }, - { - "l": "4.0", - "x": 3.1858, - "y": 21.7113 - }, - { - "l": "4.0", - "x": 3.2692, - "y": 21.6898 - }, - { - "l": "4.0", - "x": 3.3525, - "y": 21.6749 - }, - { - "l": "4.0", - "x": 3.4358, - "y": 21.6673 - }, - { - "l": "4.0", - "x": 3.5192, - "y": 21.6659 - }, - { - "l": "4.0", - "x": 3.6025, - "y": 21.6709 - }, - { - "l": "4.0", - "x": 3.6858, - "y": 21.6827 - }, - { - "l": "4.0", - "x": 3.7692, - "y": 21.7 - }, - { - "l": "4.0", - "x": 3.8525, - "y": 21.7229 - }, - { - "l": "4.0", - "x": 3.9358, - "y": 21.7518 - } - ] - } - ] - }, - "female": null - } - }, - { - "uk90_child": { - "male": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -5.0, - "centile": 2.866515718791933e-05, - "data": [ - { - "l": "-5.0", - "x": 4.0, - "y": 11.5301 - }, - { - "l": "-5.0", - "x": 4.0833, - "y": 11.5195 - }, - { - "l": "-5.0", - "x": 4.1667, - "y": 11.5086 - }, - { - "l": "-5.0", - "x": 4.25, - "y": 11.4977 - }, - { - "l": "-5.0", - "x": 4.3333, - "y": 11.4878 - }, - { - "l": "-5.0", - "x": 4.4167, - "y": 11.4782 - }, - { - "l": "-5.0", - "x": 4.5, - "y": 11.4677 - }, - { - "l": "-5.0", - "x": 4.5833, - "y": 11.4581 - }, - { - "l": "-5.0", - "x": 4.6667, - "y": 11.4479 - }, - { - "l": "-5.0", - "x": 4.75, - "y": 11.4385 - }, - { - "l": "-5.0", - "x": 4.8333, - "y": 11.428 - }, - { - "l": "-5.0", - "x": 4.9167, - "y": 11.4179 - }, - { - "l": "-5.0", - "x": 5.0, - "y": 11.4074 - }, - { - "l": "-5.0", - "x": 5.0833, - "y": 11.3974 - }, - { - "l": "-5.0", - "x": 5.1667, - "y": 11.387 - }, - { - "l": "-5.0", - "x": 5.25, - "y": 11.3768 - }, - { - "l": "-5.0", - "x": 5.3333, - "y": 11.3661 - }, - { - "l": "-5.0", - "x": 5.4167, - "y": 11.3549 - }, - { - "l": "-5.0", - "x": 5.5, - "y": 11.3445 - }, - { - "l": "-5.0", - "x": 5.5833, - "y": 11.3335 - }, - { - "l": "-5.0", - "x": 5.6667, - "y": 11.3222 - }, - { - "l": "-5.0", - "x": 5.75, - "y": 11.3107 - }, - { - "l": "-5.0", - "x": 5.8333, - "y": 11.3 - }, - { - "l": "-5.0", - "x": 5.9167, - "y": 11.2887 - }, - { - "l": "-5.0", - "x": 6.0, - "y": 11.2784 - }, - { - "l": "-5.0", - "x": 6.0833, - "y": 11.2666 - }, - { - "l": "-5.0", - "x": 6.1667, - "y": 11.2557 - }, - { - "l": "-5.0", - "x": 6.25, - "y": 11.2439 - }, - { - "l": "-5.0", - "x": 6.3333, - "y": 11.2336 - }, - { - "l": "-5.0", - "x": 6.4167, - "y": 11.2229 - }, - { - "l": "-5.0", - "x": 6.5, - "y": 11.2125 - }, - { - "l": "-5.0", - "x": 6.5833, - "y": 11.2027 - }, - { - "l": "-5.0", - "x": 6.6667, - "y": 11.1934 - }, - { - "l": "-5.0", - "x": 6.75, - "y": 11.1834 - }, - { - "l": "-5.0", - "x": 6.8333, - "y": 11.1754 - }, - { - "l": "-5.0", - "x": 6.9167, - "y": 11.1667 - }, - { - "l": "-5.0", - "x": 7.0, - "y": 11.1584 - }, - { - "l": "-5.0", - "x": 7.0833, - "y": 11.1514 - }, - { - "l": "-5.0", - "x": 7.1667, - "y": 11.1447 - }, - { - "l": "-5.0", - "x": 7.25, - "y": 11.1386 - }, - { - "l": "-5.0", - "x": 7.3333, - "y": 11.1336 - }, - { - "l": "-5.0", - "x": 7.4167, - "y": 11.1283 - }, - { - "l": "-5.0", - "x": 7.5, - "y": 11.1237 - }, - { - "l": "-5.0", - "x": 7.5833, - "y": 11.1202 - }, - { - "l": "-5.0", - "x": 7.6667, - "y": 11.1159 - }, - { - "l": "-5.0", - "x": 7.75, - "y": 11.1133 - }, - { - "l": "-5.0", - "x": 7.8333, - "y": 11.1109 - }, - { - "l": "-5.0", - "x": 7.9167, - "y": 11.1096 - }, - { - "l": "-5.0", - "x": 8.0, - "y": 11.1081 - }, - { - "l": "-5.0", - "x": 8.0833, - "y": 11.1079 - }, - { - "l": "-5.0", - "x": 8.1667, - "y": 11.1082 - }, - { - "l": "-5.0", - "x": 8.25, - "y": 11.1084 - }, - { - "l": "-5.0", - "x": 8.3333, - "y": 11.1105 - }, - { - "l": "-5.0", - "x": 8.4167, - "y": 11.112 - }, - { - "l": "-5.0", - "x": 8.5, - "y": 11.1156 - }, - { - "l": "-5.0", - "x": 8.5833, - "y": 11.1189 - }, - { - "l": "-5.0", - "x": 8.6667, - "y": 11.1232 - }, - { - "l": "-5.0", - "x": 8.75, - "y": 11.1279 - }, - { - "l": "-5.0", - "x": 8.8333, - "y": 11.1336 - }, - { - "l": "-5.0", - "x": 8.9167, - "y": 11.1393 - }, - { - "l": "-5.0", - "x": 9.0, - "y": 11.1464 - }, - { - "l": "-5.0", - "x": 9.0833, - "y": 11.1538 - }, - { - "l": "-5.0", - "x": 9.1667, - "y": 11.1612 - }, - { - "l": "-5.0", - "x": 9.25, - "y": 11.1699 - }, - { - "l": "-5.0", - "x": 9.3333, - "y": 11.1788 - }, - { - "l": "-5.0", - "x": 9.4167, - "y": 11.1886 - }, - { - "l": "-5.0", - "x": 9.5, - "y": 11.1995 - }, - { - "l": "-5.0", - "x": 9.5833, - "y": 11.21 - }, - { - "l": "-5.0", - "x": 9.6667, - "y": 11.2215 - }, - { - "l": "-5.0", - "x": 9.75, - "y": 11.234 - }, - { - "l": "-5.0", - "x": 9.8333, - "y": 11.2467 - }, - { - "l": "-5.0", - "x": 9.9167, - "y": 11.2598 - }, - { - "l": "-5.0", - "x": 10.0, - "y": 11.2738 - }, - { - "l": "-5.0", - "x": 10.0833, - "y": 11.288 - }, - { - "l": "-5.0", - "x": 10.1667, - "y": 11.3032 - }, - { - "l": "-5.0", - "x": 10.25, - "y": 11.3187 - }, - { - "l": "-5.0", - "x": 10.3333, - "y": 11.3344 - }, - { - "l": "-5.0", - "x": 10.4167, - "y": 11.3507 - }, - { - "l": "-5.0", - "x": 10.5, - "y": 11.3683 - }, - { - "l": "-5.0", - "x": 10.5833, - "y": 11.3852 - }, - { - "l": "-5.0", - "x": 10.6667, - "y": 11.403 - }, - { - "l": "-5.0", - "x": 10.75, - "y": 11.422 - }, - { - "l": "-5.0", - "x": 10.8333, - "y": 11.4403 - }, - { - "l": "-5.0", - "x": 10.9167, - "y": 11.4595 - }, - { - "l": "-5.0", - "x": 11.0, - "y": 11.4793 - }, - { - "l": "-5.0", - "x": 11.0833, - "y": 11.4997 - }, - { - "l": "-5.0", - "x": 11.1667, - "y": 11.5196 - }, - { - "l": "-5.0", - "x": 11.25, - "y": 11.5409 - }, - { - "l": "-5.0", - "x": 11.3333, - "y": 11.563 - }, - { - "l": "-5.0", - "x": 11.4167, - "y": 11.5841 - }, - { - "l": "-5.0", - "x": 11.5, - "y": 11.6067 - }, - { - "l": "-5.0", - "x": 11.5833, - "y": 11.6293 - }, - { - "l": "-5.0", - "x": 11.6667, - "y": 11.6524 - }, - { - "l": "-5.0", - "x": 11.75, - "y": 11.6761 - }, - { - "l": "-5.0", - "x": 11.8333, - "y": 11.7005 - }, - { - "l": "-5.0", - "x": 11.9167, - "y": 11.7254 - }, - { - "l": "-5.0", - "x": 12.0, - "y": 11.7503 - }, - { - "l": "-5.0", - "x": 12.0833, - "y": 11.7754 - }, - { - "l": "-5.0", - "x": 12.1667, - "y": 11.8013 - }, - { - "l": "-5.0", - "x": 12.25, - "y": 11.827 - }, - { - "l": "-5.0", - "x": 12.3333, - "y": 11.8538 - }, - { - "l": "-5.0", - "x": 12.4167, - "y": 11.8814 - }, - { - "l": "-5.0", - "x": 12.5, - "y": 11.9085 - }, - { - "l": "-5.0", - "x": 12.5833, - "y": 11.935 - }, - { - "l": "-5.0", - "x": 12.6667, - "y": 11.963 - }, - { - "l": "-5.0", - "x": 12.75, - "y": 11.9909 - }, - { - "l": "-5.0", - "x": 12.8333, - "y": 12.0197 - }, - { - "l": "-5.0", - "x": 12.9167, - "y": 12.0487 - }, - { - "l": "-5.0", - "x": 13.0, - "y": 12.077 - }, - { - "l": "-5.0", - "x": 13.0833, - "y": 12.1063 - }, - { - "l": "-5.0", - "x": 13.1667, - "y": 12.1362 - }, - { - "l": "-5.0", - "x": 13.25, - "y": 12.1654 - }, - { - "l": "-5.0", - "x": 13.3333, - "y": 12.1948 - }, - { - "l": "-5.0", - "x": 13.4167, - "y": 12.2252 - }, - { - "l": "-5.0", - "x": 13.5, - "y": 12.2554 - }, - { - "l": "-5.0", - "x": 13.5833, - "y": 12.2857 - }, - { - "l": "-5.0", - "x": 13.6667, - "y": 12.3155 - }, - { - "l": "-5.0", - "x": 13.75, - "y": 12.3467 - }, - { - "l": "-5.0", - "x": 13.8333, - "y": 12.3773 - }, - { - "l": "-5.0", - "x": 13.9167, - "y": 12.4079 - }, - { - "l": "-5.0", - "x": 14.0, - "y": 12.4385 - }, - { - "l": "-5.0", - "x": 14.0833, - "y": 12.4702 - }, - { - "l": "-5.0", - "x": 14.1667, - "y": 12.5016 - }, - { - "l": "-5.0", - "x": 14.25, - "y": 12.532 - }, - { - "l": "-5.0", - "x": 14.3333, - "y": 12.5637 - }, - { - "l": "-5.0", - "x": 14.4167, - "y": 12.5947 - }, - { - "l": "-5.0", - "x": 14.5, - "y": 12.6259 - }, - { - "l": "-5.0", - "x": 14.5833, - "y": 12.6569 - }, - { - "l": "-5.0", - "x": 14.6667, - "y": 12.6875 - }, - { - "l": "-5.0", - "x": 14.75, - "y": 12.7196 - }, - { - "l": "-5.0", - "x": 14.8333, - "y": 12.7501 - }, - { - "l": "-5.0", - "x": 14.9167, - "y": 12.7818 - }, - { - "l": "-5.0", - "x": 15.0, - "y": 12.8123 - }, - { - "l": "-5.0", - "x": 15.0833, - "y": 12.844 - }, - { - "l": "-5.0", - "x": 15.1667, - "y": 12.8756 - }, - { - "l": "-5.0", - "x": 15.25, - "y": 12.906 - }, - { - "l": "-5.0", - "x": 15.3333, - "y": 12.9376 - }, - { - "l": "-5.0", - "x": 15.4167, - "y": 12.9672 - }, - { - "l": "-5.0", - "x": 15.5, - "y": 12.9991 - }, - { - "l": "-5.0", - "x": 15.5833, - "y": 13.0287 - }, - { - "l": "-5.0", - "x": 15.6667, - "y": 13.0602 - }, - { - "l": "-5.0", - "x": 15.75, - "y": 13.0897 - }, - { - "l": "-5.0", - "x": 15.8333, - "y": 13.1205 - }, - { - "l": "-5.0", - "x": 15.9167, - "y": 13.1506 - }, - { - "l": "-5.0", - "x": 16.0, - "y": 13.1804 - }, - { - "l": "-5.0", - "x": 16.0833, - "y": 13.2105 - }, - { - "l": "-5.0", - "x": 16.1667, - "y": 13.2405 - }, - { - "l": "-5.0", - "x": 16.25, - "y": 13.269 - }, - { - "l": "-5.0", - "x": 16.3333, - "y": 13.2993 - }, - { - "l": "-5.0", - "x": 16.4167, - "y": 13.329 - }, - { - "l": "-5.0", - "x": 16.5, - "y": 13.3567 - }, - { - "l": "-5.0", - "x": 16.5833, - "y": 13.3856 - }, - { - "l": "-5.0", - "x": 16.6667, - "y": 13.4146 - }, - { - "l": "-5.0", - "x": 16.75, - "y": 13.4426 - }, - { - "l": "-5.0", - "x": 16.8333, - "y": 13.4708 - }, - { - "l": "-5.0", - "x": 16.9167, - "y": 13.4991 - }, - { - "l": "-5.0", - "x": 17.0, - "y": 13.5264 - }, - { - "l": "-5.0", - "x": 17.0833, - "y": 13.5539 - }, - { - "l": "-5.0", - "x": 17.1667, - "y": 13.5814 - }, - { - "l": "-5.0", - "x": 17.25, - "y": 13.6087 - }, - { - "l": "-5.0", - "x": 17.3333, - "y": 13.6352 - }, - { - "l": "-5.0", - "x": 17.4167, - "y": 13.6617 - }, - { - "l": "-5.0", - "x": 17.5, - "y": 13.6885 - }, - { - "l": "-5.0", - "x": 17.5833, - "y": 13.7153 - }, - { - "l": "-5.0", - "x": 17.6667, - "y": 13.7411 - }, - { - "l": "-5.0", - "x": 17.75, - "y": 13.7676 - }, - { - "l": "-5.0", - "x": 17.8333, - "y": 13.7927 - }, - { - "l": "-5.0", - "x": 17.9167, - "y": 13.8179 - }, - { - "l": "-5.0", - "x": 18.0, - "y": 13.8433 - }, - { - "l": "-5.0", - "x": 18.0833, - "y": 13.869 - }, - { - "l": "-5.0", - "x": 18.1667, - "y": 13.8934 - }, - { - "l": "-5.0", - "x": 18.25, - "y": 13.9181 - }, - { - "l": "-5.0", - "x": 18.3333, - "y": 13.9432 - }, - { - "l": "-5.0", - "x": 18.4167, - "y": 13.9659 - }, - { - "l": "-5.0", - "x": 18.5, - "y": 13.9899 - }, - { - "l": "-5.0", - "x": 18.5833, - "y": 14.0143 - }, - { - "l": "-5.0", - "x": 18.6667, - "y": 14.038 - }, - { - "l": "-5.0", - "x": 18.75, - "y": 14.0617 - }, - { - "l": "-5.0", - "x": 18.8333, - "y": 14.0843 - }, - { - "l": "-5.0", - "x": 18.9167, - "y": 14.108 - }, - { - "l": "-5.0", - "x": 19.0, - "y": 14.131 - }, - { - "l": "-5.0", - "x": 19.0833, - "y": 14.1529 - }, - { - "l": "-5.0", - "x": 19.1667, - "y": 14.1758 - }, - { - "l": "-5.0", - "x": 19.25, - "y": 14.1981 - }, - { - "l": "-5.0", - "x": 19.3333, - "y": 14.22 - }, - { - "l": "-5.0", - "x": 19.4167, - "y": 14.2417 - }, - { - "l": "-5.0", - "x": 19.5, - "y": 14.2639 - }, - { - "l": "-5.0", - "x": 19.5833, - "y": 14.2862 - }, - { - "l": "-5.0", - "x": 19.6667, - "y": 14.3077 - }, - { - "l": "-5.0", - "x": 19.75, - "y": 14.3287 - }, - { - "l": "-5.0", - "x": 19.8333, - "y": 14.3492 - }, - { - "l": "-5.0", - "x": 19.9167, - "y": 14.3707 - }, - { - "l": "-5.0", - "x": 20.0, - "y": 14.3905 - } - ] - }, - { - "sds": -4.0, - "centile": 0.003167124183311986, - "data": [ - { - "l": "-4.0", - "x": 4.0, - "y": 12.1595 - }, - { - "l": "-4.0", - "x": 4.0833, - "y": 12.1457 - }, - { - "l": "-4.0", - "x": 4.1667, - "y": 12.132 - }, - { - "l": "-4.0", - "x": 4.25, - "y": 12.1184 - }, - { - "l": "-4.0", - "x": 4.3333, - "y": 12.106 - }, - { - "l": "-4.0", - "x": 4.4167, - "y": 12.094 - }, - { - "l": "-4.0", - "x": 4.5, - "y": 12.0814 - }, - { - "l": "-4.0", - "x": 4.5833, - "y": 12.0697 - }, - { - "l": "-4.0", - "x": 4.6667, - "y": 12.0577 - }, - { - "l": "-4.0", - "x": 4.75, - "y": 12.0466 - }, - { - "l": "-4.0", - "x": 4.8333, - "y": 12.0346 - }, - { - "l": "-4.0", - "x": 4.9167, - "y": 12.023 - }, - { - "l": "-4.0", - "x": 5.0, - "y": 12.0114 - }, - { - "l": "-4.0", - "x": 5.0833, - "y": 12.0002 - }, - { - "l": "-4.0", - "x": 5.1667, - "y": 11.9889 - }, - { - "l": "-4.0", - "x": 5.25, - "y": 11.9778 - }, - { - "l": "-4.0", - "x": 5.3333, - "y": 11.9665 - }, - { - "l": "-4.0", - "x": 5.4167, - "y": 11.9546 - }, - { - "l": "-4.0", - "x": 5.5, - "y": 11.9437 - }, - { - "l": "-4.0", - "x": 5.5833, - "y": 11.9323 - }, - { - "l": "-4.0", - "x": 5.6667, - "y": 11.9208 - }, - { - "l": "-4.0", - "x": 5.75, - "y": 11.9091 - }, - { - "l": "-4.0", - "x": 5.8333, - "y": 11.8984 - }, - { - "l": "-4.0", - "x": 5.9167, - "y": 11.8872 - }, - { - "l": "-4.0", - "x": 6.0, - "y": 11.8769 - }, - { - "l": "-4.0", - "x": 6.0833, - "y": 11.8654 - }, - { - "l": "-4.0", - "x": 6.1667, - "y": 11.8548 - }, - { - "l": "-4.0", - "x": 6.25, - "y": 11.8433 - }, - { - "l": "-4.0", - "x": 6.3333, - "y": 11.8335 - }, - { - "l": "-4.0", - "x": 6.4167, - "y": 11.8232 - }, - { - "l": "-4.0", - "x": 6.5, - "y": 11.8134 - }, - { - "l": "-4.0", - "x": 6.5833, - "y": 11.8042 - }, - { - "l": "-4.0", - "x": 6.6667, - "y": 11.7956 - }, - { - "l": "-4.0", - "x": 6.75, - "y": 11.7863 - }, - { - "l": "-4.0", - "x": 6.8333, - "y": 11.7791 - }, - { - "l": "-4.0", - "x": 6.9167, - "y": 11.7713 - }, - { - "l": "-4.0", - "x": 7.0, - "y": 11.764 - }, - { - "l": "-4.0", - "x": 7.0833, - "y": 11.7579 - }, - { - "l": "-4.0", - "x": 7.1667, - "y": 11.7522 - }, - { - "l": "-4.0", - "x": 7.25, - "y": 11.7471 - }, - { - "l": "-4.0", - "x": 7.3333, - "y": 11.7432 - }, - { - "l": "-4.0", - "x": 7.4167, - "y": 11.739 - }, - { - "l": "-4.0", - "x": 7.5, - "y": 11.7356 - }, - { - "l": "-4.0", - "x": 7.5833, - "y": 11.7332 - }, - { - "l": "-4.0", - "x": 7.6667, - "y": 11.7303 - }, - { - "l": "-4.0", - "x": 7.75, - "y": 11.7288 - }, - { - "l": "-4.0", - "x": 7.8333, - "y": 11.7277 - }, - { - "l": "-4.0", - "x": 7.9167, - "y": 11.7278 - }, - { - "l": "-4.0", - "x": 8.0, - "y": 11.7277 - }, - { - "l": "-4.0", - "x": 8.0833, - "y": 11.7288 - }, - { - "l": "-4.0", - "x": 8.1667, - "y": 11.7306 - }, - { - "l": "-4.0", - "x": 8.25, - "y": 11.7323 - }, - { - "l": "-4.0", - "x": 8.3333, - "y": 11.7359 - }, - { - "l": "-4.0", - "x": 8.4167, - "y": 11.7389 - }, - { - "l": "-4.0", - "x": 8.5, - "y": 11.7441 - }, - { - "l": "-4.0", - "x": 8.5833, - "y": 11.749 - }, - { - "l": "-4.0", - "x": 8.6667, - "y": 11.7548 - }, - { - "l": "-4.0", - "x": 8.75, - "y": 11.7612 - }, - { - "l": "-4.0", - "x": 8.8333, - "y": 11.7687 - }, - { - "l": "-4.0", - "x": 8.9167, - "y": 11.7761 - }, - { - "l": "-4.0", - "x": 9.0, - "y": 11.7848 - }, - { - "l": "-4.0", - "x": 9.0833, - "y": 11.7941 - }, - { - "l": "-4.0", - "x": 9.1667, - "y": 11.8034 - }, - { - "l": "-4.0", - "x": 9.25, - "y": 11.8139 - }, - { - "l": "-4.0", - "x": 9.3333, - "y": 11.8247 - }, - { - "l": "-4.0", - "x": 9.4167, - "y": 11.8364 - }, - { - "l": "-4.0", - "x": 9.5, - "y": 11.8492 - }, - { - "l": "-4.0", - "x": 9.5833, - "y": 11.8617 - }, - { - "l": "-4.0", - "x": 9.6667, - "y": 11.8752 - }, - { - "l": "-4.0", - "x": 9.75, - "y": 11.8897 - }, - { - "l": "-4.0", - "x": 9.8333, - "y": 11.9044 - }, - { - "l": "-4.0", - "x": 9.9167, - "y": 11.9196 - }, - { - "l": "-4.0", - "x": 10.0, - "y": 11.9358 - }, - { - "l": "-4.0", - "x": 10.0833, - "y": 11.9522 - }, - { - "l": "-4.0", - "x": 10.1667, - "y": 11.9696 - }, - { - "l": "-4.0", - "x": 10.25, - "y": 11.9872 - }, - { - "l": "-4.0", - "x": 10.3333, - "y": 12.0051 - }, - { - "l": "-4.0", - "x": 10.4167, - "y": 12.0238 - }, - { - "l": "-4.0", - "x": 10.5, - "y": 12.0436 - }, - { - "l": "-4.0", - "x": 10.5833, - "y": 12.0628 - }, - { - "l": "-4.0", - "x": 10.6667, - "y": 12.0829 - }, - { - "l": "-4.0", - "x": 10.75, - "y": 12.1043 - }, - { - "l": "-4.0", - "x": 10.8333, - "y": 12.125 - }, - { - "l": "-4.0", - "x": 10.9167, - "y": 12.1467 - }, - { - "l": "-4.0", - "x": 11.0, - "y": 12.169 - }, - { - "l": "-4.0", - "x": 11.0833, - "y": 12.1919 - }, - { - "l": "-4.0", - "x": 11.1667, - "y": 12.2144 - }, - { - "l": "-4.0", - "x": 11.25, - "y": 12.238 - }, - { - "l": "-4.0", - "x": 11.3333, - "y": 12.2628 - }, - { - "l": "-4.0", - "x": 11.4167, - "y": 12.2864 - }, - { - "l": "-4.0", - "x": 11.5, - "y": 12.3118 - }, - { - "l": "-4.0", - "x": 11.5833, - "y": 12.3371 - }, - { - "l": "-4.0", - "x": 11.6667, - "y": 12.3628 - }, - { - "l": "-4.0", - "x": 11.75, - "y": 12.3893 - }, - { - "l": "-4.0", - "x": 11.8333, - "y": 12.4164 - }, - { - "l": "-4.0", - "x": 11.9167, - "y": 12.4441 - }, - { - "l": "-4.0", - "x": 12.0, - "y": 12.4716 - }, - { - "l": "-4.0", - "x": 12.0833, - "y": 12.4996 - }, - { - "l": "-4.0", - "x": 12.1667, - "y": 12.5284 - }, - { - "l": "-4.0", - "x": 12.25, - "y": 12.557 - }, - { - "l": "-4.0", - "x": 12.3333, - "y": 12.5867 - }, - { - "l": "-4.0", - "x": 12.4167, - "y": 12.617 - }, - { - "l": "-4.0", - "x": 12.5, - "y": 12.647 - }, - { - "l": "-4.0", - "x": 12.5833, - "y": 12.6766 - }, - { - "l": "-4.0", - "x": 12.6667, - "y": 12.7075 - }, - { - "l": "-4.0", - "x": 12.75, - "y": 12.7384 - }, - { - "l": "-4.0", - "x": 12.8333, - "y": 12.7702 - }, - { - "l": "-4.0", - "x": 12.9167, - "y": 12.8022 - }, - { - "l": "-4.0", - "x": 13.0, - "y": 12.8336 - }, - { - "l": "-4.0", - "x": 13.0833, - "y": 12.8659 - }, - { - "l": "-4.0", - "x": 13.1667, - "y": 12.8988 - }, - { - "l": "-4.0", - "x": 13.25, - "y": 12.931 - }, - { - "l": "-4.0", - "x": 13.3333, - "y": 12.9635 - }, - { - "l": "-4.0", - "x": 13.4167, - "y": 12.9969 - }, - { - "l": "-4.0", - "x": 13.5, - "y": 13.0304 - }, - { - "l": "-4.0", - "x": 13.5833, - "y": 13.0637 - }, - { - "l": "-4.0", - "x": 13.6667, - "y": 13.0967 - }, - { - "l": "-4.0", - "x": 13.75, - "y": 13.131 - }, - { - "l": "-4.0", - "x": 13.8333, - "y": 13.1645 - }, - { - "l": "-4.0", - "x": 13.9167, - "y": 13.1984 - }, - { - "l": "-4.0", - "x": 14.0, - "y": 13.2322 - }, - { - "l": "-4.0", - "x": 14.0833, - "y": 13.267 - }, - { - "l": "-4.0", - "x": 14.1667, - "y": 13.3014 - }, - { - "l": "-4.0", - "x": 14.25, - "y": 13.335 - }, - { - "l": "-4.0", - "x": 14.3333, - "y": 13.3697 - }, - { - "l": "-4.0", - "x": 14.4167, - "y": 13.404 - }, - { - "l": "-4.0", - "x": 14.5, - "y": 13.4382 - }, - { - "l": "-4.0", - "x": 14.5833, - "y": 13.4724 - }, - { - "l": "-4.0", - "x": 14.6667, - "y": 13.5062 - }, - { - "l": "-4.0", - "x": 14.75, - "y": 13.5414 - }, - { - "l": "-4.0", - "x": 14.8333, - "y": 13.5752 - }, - { - "l": "-4.0", - "x": 14.9167, - "y": 13.6099 - }, - { - "l": "-4.0", - "x": 15.0, - "y": 13.6436 - }, - { - "l": "-4.0", - "x": 15.0833, - "y": 13.6782 - }, - { - "l": "-4.0", - "x": 15.1667, - "y": 13.7129 - }, - { - "l": "-4.0", - "x": 15.25, - "y": 13.7464 - }, - { - "l": "-4.0", - "x": 15.3333, - "y": 13.7811 - }, - { - "l": "-4.0", - "x": 15.4167, - "y": 13.8139 - }, - { - "l": "-4.0", - "x": 15.5, - "y": 13.8487 - }, - { - "l": "-4.0", - "x": 15.5833, - "y": 13.8815 - }, - { - "l": "-4.0", - "x": 15.6667, - "y": 13.916 - }, - { - "l": "-4.0", - "x": 15.75, - "y": 13.9487 - }, - { - "l": "-4.0", - "x": 15.8333, - "y": 13.9824 - }, - { - "l": "-4.0", - "x": 15.9167, - "y": 14.0154 - }, - { - "l": "-4.0", - "x": 16.0, - "y": 14.0484 - }, - { - "l": "-4.0", - "x": 16.0833, - "y": 14.0814 - }, - { - "l": "-4.0", - "x": 16.1667, - "y": 14.1144 - }, - { - "l": "-4.0", - "x": 16.25, - "y": 14.1459 - }, - { - "l": "-4.0", - "x": 16.3333, - "y": 14.1792 - }, - { - "l": "-4.0", - "x": 16.4167, - "y": 14.2117 - }, - { - "l": "-4.0", - "x": 16.5, - "y": 14.2425 - }, - { - "l": "-4.0", - "x": 16.5833, - "y": 14.2743 - }, - { - "l": "-4.0", - "x": 16.6667, - "y": 14.3061 - }, - { - "l": "-4.0", - "x": 16.75, - "y": 14.3371 - }, - { - "l": "-4.0", - "x": 16.8333, - "y": 14.3682 - }, - { - "l": "-4.0", - "x": 16.9167, - "y": 14.3993 - }, - { - "l": "-4.0", - "x": 17.0, - "y": 14.4296 - }, - { - "l": "-4.0", - "x": 17.0833, - "y": 14.4599 - }, - { - "l": "-4.0", - "x": 17.1667, - "y": 14.4903 - }, - { - "l": "-4.0", - "x": 17.25, - "y": 14.5202 - }, - { - "l": "-4.0", - "x": 17.3333, - "y": 14.5498 - }, - { - "l": "-4.0", - "x": 17.4167, - "y": 14.579 - }, - { - "l": "-4.0", - "x": 17.5, - "y": 14.6086 - }, - { - "l": "-4.0", - "x": 17.5833, - "y": 14.6382 - }, - { - "l": "-4.0", - "x": 17.6667, - "y": 14.6667 - }, - { - "l": "-4.0", - "x": 17.75, - "y": 14.6959 - }, - { - "l": "-4.0", - "x": 17.8333, - "y": 14.7239 - }, - { - "l": "-4.0", - "x": 17.9167, - "y": 14.7517 - }, - { - "l": "-4.0", - "x": 18.0, - "y": 14.7798 - }, - { - "l": "-4.0", - "x": 18.0833, - "y": 14.8083 - }, - { - "l": "-4.0", - "x": 18.1667, - "y": 14.8353 - }, - { - "l": "-4.0", - "x": 18.25, - "y": 14.8627 - }, - { - "l": "-4.0", - "x": 18.3333, - "y": 14.8904 - }, - { - "l": "-4.0", - "x": 18.4167, - "y": 14.9159 - }, - { - "l": "-4.0", - "x": 18.5, - "y": 14.9426 - }, - { - "l": "-4.0", - "x": 18.5833, - "y": 14.9696 - }, - { - "l": "-4.0", - "x": 18.6667, - "y": 14.9959 - }, - { - "l": "-4.0", - "x": 18.75, - "y": 15.0221 - }, - { - "l": "-4.0", - "x": 18.8333, - "y": 15.0474 - }, - { - "l": "-4.0", - "x": 18.9167, - "y": 15.0736 - }, - { - "l": "-4.0", - "x": 19.0, - "y": 15.0992 - }, - { - "l": "-4.0", - "x": 19.0833, - "y": 15.1237 - }, - { - "l": "-4.0", - "x": 19.1667, - "y": 15.1492 - }, - { - "l": "-4.0", - "x": 19.25, - "y": 15.174 - }, - { - "l": "-4.0", - "x": 19.3333, - "y": 15.1985 - }, - { - "l": "-4.0", - "x": 19.4167, - "y": 15.2226 - }, - { - "l": "-4.0", - "x": 19.5, - "y": 15.2474 - }, - { - "l": "-4.0", - "x": 19.5833, - "y": 15.2719 - }, - { - "l": "-4.0", - "x": 19.6667, - "y": 15.296 - }, - { - "l": "-4.0", - "x": 19.75, - "y": 15.3194 - }, - { - "l": "-4.0", - "x": 19.8333, - "y": 15.3424 - }, - { - "l": "-4.0", - "x": 19.9167, - "y": 15.3665 - }, - { - "l": "-4.0", - "x": 20.0, - "y": 15.3888 - } - ] - }, - { - "sds": 3.0, - "centile": 99.86501019683699, - "data": [ - { - "l": "3.0", - "x": 4.0, - "y": 20.7096 - }, - { - "l": "3.0", - "x": 4.0833, - "y": 20.6952 - }, - { - "l": "3.0", - "x": 4.1667, - "y": 20.6835 - }, - { - "l": "3.0", - "x": 4.25, - "y": 20.6769 - }, - { - "l": "3.0", - "x": 4.3333, - "y": 20.674 - }, - { - "l": "3.0", - "x": 4.4167, - "y": 20.6748 - }, - { - "l": "3.0", - "x": 4.5, - "y": 20.6776 - }, - { - "l": "3.0", - "x": 4.5833, - "y": 20.6851 - }, - { - "l": "3.0", - "x": 4.6667, - "y": 20.6951 - }, - { - "l": "3.0", - "x": 4.75, - "y": 20.7099 - }, - { - "l": "3.0", - "x": 4.8333, - "y": 20.7279 - }, - { - "l": "3.0", - "x": 4.9167, - "y": 20.7485 - }, - { - "l": "3.0", - "x": 5.0, - "y": 20.7749 - }, - { - "l": "3.0", - "x": 5.0833, - "y": 20.8041 - }, - { - "l": "3.0", - "x": 5.1667, - "y": 20.838 - }, - { - "l": "3.0", - "x": 5.25, - "y": 20.8757 - }, - { - "l": "3.0", - "x": 5.3333, - "y": 20.9163 - }, - { - "l": "3.0", - "x": 5.4167, - "y": 20.9595 - }, - { - "l": "3.0", - "x": 5.5, - "y": 21.008 - }, - { - "l": "3.0", - "x": 5.5833, - "y": 21.0594 - }, - { - "l": "3.0", - "x": 5.6667, - "y": 21.1137 - }, - { - "l": "3.0", - "x": 5.75, - "y": 21.1734 - }, - { - "l": "3.0", - "x": 5.8333, - "y": 21.2353 - }, - { - "l": "3.0", - "x": 5.9167, - "y": 21.3015 - }, - { - "l": "3.0", - "x": 6.0, - "y": 21.3724 - }, - { - "l": "3.0", - "x": 6.0833, - "y": 21.4439 - }, - { - "l": "3.0", - "x": 6.1667, - "y": 21.5204 - }, - { - "l": "3.0", - "x": 6.25, - "y": 21.5989 - }, - { - "l": "3.0", - "x": 6.3333, - "y": 21.6814 - }, - { - "l": "3.0", - "x": 6.4167, - "y": 21.7674 - }, - { - "l": "3.0", - "x": 6.5, - "y": 21.8547 - }, - { - "l": "3.0", - "x": 6.5833, - "y": 21.9487 - }, - { - "l": "3.0", - "x": 6.6667, - "y": 22.0441 - }, - { - "l": "3.0", - "x": 6.75, - "y": 22.1404 - }, - { - "l": "3.0", - "x": 6.8333, - "y": 22.2428 - }, - { - "l": "3.0", - "x": 6.9167, - "y": 22.3464 - }, - { - "l": "3.0", - "x": 7.0, - "y": 22.4511 - }, - { - "l": "3.0", - "x": 7.0833, - "y": 22.5608 - }, - { - "l": "3.0", - "x": 7.1667, - "y": 22.6717 - }, - { - "l": "3.0", - "x": 7.25, - "y": 22.787 - }, - { - "l": "3.0", - "x": 7.3333, - "y": 22.9043 - }, - { - "l": "3.0", - "x": 7.4167, - "y": 23.0249 - }, - { - "l": "3.0", - "x": 7.5, - "y": 23.1451 - }, - { - "l": "3.0", - "x": 7.5833, - "y": 23.2672 - }, - { - "l": "3.0", - "x": 7.6667, - "y": 23.3902 - }, - { - "l": "3.0", - "x": 7.75, - "y": 23.5175 - }, - { - "l": "3.0", - "x": 7.8333, - "y": 23.6457 - }, - { - "l": "3.0", - "x": 7.9167, - "y": 23.7758 - }, - { - "l": "3.0", - "x": 8.0, - "y": 23.9034 - }, - { - "l": "3.0", - "x": 8.0833, - "y": 24.0372 - }, - { - "l": "3.0", - "x": 8.1667, - "y": 24.17 - }, - { - "l": "3.0", - "x": 8.25, - "y": 24.3 - }, - { - "l": "3.0", - "x": 8.3333, - "y": 24.4378 - }, - { - "l": "3.0", - "x": 8.4167, - "y": 24.5695 - }, - { - "l": "3.0", - "x": 8.5, - "y": 24.7075 - }, - { - "l": "3.0", - "x": 8.5833, - "y": 24.844 - }, - { - "l": "3.0", - "x": 8.6667, - "y": 24.982 - }, - { - "l": "3.0", - "x": 8.75, - "y": 25.118 - }, - { - "l": "3.0", - "x": 8.8333, - "y": 25.2554 - }, - { - "l": "3.0", - "x": 8.9167, - "y": 25.3944 - }, - { - "l": "3.0", - "x": 9.0, - "y": 25.5328 - }, - { - "l": "3.0", - "x": 9.0833, - "y": 25.6686 - }, - { - "l": "3.0", - "x": 9.1667, - "y": 25.8058 - }, - { - "l": "3.0", - "x": 9.25, - "y": 25.9421 - }, - { - "l": "3.0", - "x": 9.3333, - "y": 26.0779 - }, - { - "l": "3.0", - "x": 9.4167, - "y": 26.2139 - }, - { - "l": "3.0", - "x": 9.5, - "y": 26.3514 - }, - { - "l": "3.0", - "x": 9.5833, - "y": 26.4838 - }, - { - "l": "3.0", - "x": 9.6667, - "y": 26.6168 - }, - { - "l": "3.0", - "x": 9.75, - "y": 26.7505 - }, - { - "l": "3.0", - "x": 9.8333, - "y": 26.8832 - }, - { - "l": "3.0", - "x": 9.9167, - "y": 27.0117 - }, - { - "l": "3.0", - "x": 10.0, - "y": 27.1405 - }, - { - "l": "3.0", - "x": 10.0833, - "y": 27.268 - }, - { - "l": "3.0", - "x": 10.1667, - "y": 27.3958 - }, - { - "l": "3.0", - "x": 10.25, - "y": 27.5221 - }, - { - "l": "3.0", - "x": 10.3333, - "y": 27.6469 - }, - { - "l": "3.0", - "x": 10.4167, - "y": 27.7706 - }, - { - "l": "3.0", - "x": 10.5, - "y": 27.8956 - }, - { - "l": "3.0", - "x": 10.5833, - "y": 28.0159 - }, - { - "l": "3.0", - "x": 10.6667, - "y": 28.1362 - }, - { - "l": "3.0", - "x": 10.75, - "y": 28.2541 - }, - { - "l": "3.0", - "x": 10.8333, - "y": 28.3707 - }, - { - "l": "3.0", - "x": 10.9167, - "y": 28.4832 - }, - { - "l": "3.0", - "x": 11.0, - "y": 28.6016 - }, - { - "l": "3.0", - "x": 11.0833, - "y": 28.7118 - }, - { - "l": "3.0", - "x": 11.1667, - "y": 28.8182 - }, - { - "l": "3.0", - "x": 11.25, - "y": 28.9323 - }, - { - "l": "3.0", - "x": 11.3333, - "y": 29.0419 - }, - { - "l": "3.0", - "x": 11.4167, - "y": 29.146 - }, - { - "l": "3.0", - "x": 11.5, - "y": 29.2471 - }, - { - "l": "3.0", - "x": 11.5833, - "y": 29.3524 - }, - { - "l": "3.0", - "x": 11.6667, - "y": 29.4533 - }, - { - "l": "3.0", - "x": 11.75, - "y": 29.5516 - }, - { - "l": "3.0", - "x": 11.8333, - "y": 29.6559 - }, - { - "l": "3.0", - "x": 11.9167, - "y": 29.7513 - }, - { - "l": "3.0", - "x": 12.0, - "y": 29.8511 - }, - { - "l": "3.0", - "x": 12.0833, - "y": 29.9441 - }, - { - "l": "3.0", - "x": 12.1667, - "y": 30.0365 - }, - { - "l": "3.0", - "x": 12.25, - "y": 30.1312 - }, - { - "l": "3.0", - "x": 12.3333, - "y": 30.2229 - }, - { - "l": "3.0", - "x": 12.4167, - "y": 30.3208 - }, - { - "l": "3.0", - "x": 12.5, - "y": 30.4101 - }, - { - "l": "3.0", - "x": 12.5833, - "y": 30.4908 - }, - { - "l": "3.0", - "x": 12.6667, - "y": 30.5793 - }, - { - "l": "3.0", - "x": 12.75, - "y": 30.6678 - }, - { - "l": "3.0", - "x": 12.8333, - "y": 30.7557 - }, - { - "l": "3.0", - "x": 12.9167, - "y": 30.8411 - }, - { - "l": "3.0", - "x": 13.0, - "y": 30.9201 - }, - { - "l": "3.0", - "x": 13.0833, - "y": 31.0031 - }, - { - "l": "3.0", - "x": 13.1667, - "y": 31.0877 - }, - { - "l": "3.0", - "x": 13.25, - "y": 31.1705 - }, - { - "l": "3.0", - "x": 13.3333, - "y": 31.2464 - }, - { - "l": "3.0", - "x": 13.4167, - "y": 31.3261 - }, - { - "l": "3.0", - "x": 13.5, - "y": 31.4012 - }, - { - "l": "3.0", - "x": 13.5833, - "y": 31.4808 - }, - { - "l": "3.0", - "x": 13.6667, - "y": 31.5517 - }, - { - "l": "3.0", - "x": 13.75, - "y": 31.6306 - }, - { - "l": "3.0", - "x": 13.8333, - "y": 31.7078 - }, - { - "l": "3.0", - "x": 13.9167, - "y": 31.778 - }, - { - "l": "3.0", - "x": 14.0, - "y": 31.8481 - }, - { - "l": "3.0", - "x": 14.0833, - "y": 31.9221 - }, - { - "l": "3.0", - "x": 14.1667, - "y": 31.9985 - }, - { - "l": "3.0", - "x": 14.25, - "y": 32.0621 - }, - { - "l": "3.0", - "x": 14.3333, - "y": 32.1361 - }, - { - "l": "3.0", - "x": 14.4167, - "y": 32.2014 - }, - { - "l": "3.0", - "x": 14.5, - "y": 32.2712 - }, - { - "l": "3.0", - "x": 14.5833, - "y": 32.3365 - }, - { - "l": "3.0", - "x": 14.6667, - "y": 32.3978 - }, - { - "l": "3.0", - "x": 14.75, - "y": 32.4669 - }, - { - "l": "3.0", - "x": 14.8333, - "y": 32.5282 - }, - { - "l": "3.0", - "x": 14.9167, - "y": 32.5933 - }, - { - "l": "3.0", - "x": 15.0, - "y": 32.6546 - }, - { - "l": "3.0", - "x": 15.0833, - "y": 32.7196 - }, - { - "l": "3.0", - "x": 15.1667, - "y": 32.7847 - }, - { - "l": "3.0", - "x": 15.25, - "y": 32.8396 - }, - { - "l": "3.0", - "x": 15.3333, - "y": 32.9047 - }, - { - "l": "3.0", - "x": 15.4167, - "y": 32.958 - }, - { - "l": "3.0", - "x": 15.5, - "y": 33.0207 - }, - { - "l": "3.0", - "x": 15.5833, - "y": 33.0741 - }, - { - "l": "3.0", - "x": 15.6667, - "y": 33.1329 - }, - { - "l": "3.0", - "x": 15.75, - "y": 33.1863 - }, - { - "l": "3.0", - "x": 15.8333, - "y": 33.2434 - }, - { - "l": "3.0", - "x": 15.9167, - "y": 33.2988 - }, - { - "l": "3.0", - "x": 16.0, - "y": 33.35 - }, - { - "l": "3.0", - "x": 16.0833, - "y": 33.4055 - }, - { - "l": "3.0", - "x": 16.1667, - "y": 33.461 - }, - { - "l": "3.0", - "x": 16.25, - "y": 33.5089 - }, - { - "l": "3.0", - "x": 16.3333, - "y": 33.5622 - }, - { - "l": "3.0", - "x": 16.4167, - "y": 33.6138 - }, - { - "l": "3.0", - "x": 16.5, - "y": 33.6602 - }, - { - "l": "3.0", - "x": 16.5833, - "y": 33.7102 - }, - { - "l": "3.0", - "x": 16.6667, - "y": 33.7602 - }, - { - "l": "3.0", - "x": 16.75, - "y": 33.8045 - }, - { - "l": "3.0", - "x": 16.8333, - "y": 33.8529 - }, - { - "l": "3.0", - "x": 16.9167, - "y": 33.9013 - }, - { - "l": "3.0", - "x": 17.0, - "y": 33.9441 - }, - { - "l": "3.0", - "x": 17.0833, - "y": 33.9909 - }, - { - "l": "3.0", - "x": 17.1667, - "y": 34.0378 - }, - { - "l": "3.0", - "x": 17.25, - "y": 34.0808 - }, - { - "l": "3.0", - "x": 17.3333, - "y": 34.1221 - }, - { - "l": "3.0", - "x": 17.4167, - "y": 34.1636 - }, - { - "l": "3.0", - "x": 17.5, - "y": 34.2089 - }, - { - "l": "3.0", - "x": 17.5833, - "y": 34.2543 - }, - { - "l": "3.0", - "x": 17.6667, - "y": 34.2942 - }, - { - "l": "3.0", - "x": 17.75, - "y": 34.3358 - }, - { - "l": "3.0", - "x": 17.8333, - "y": 34.3741 - }, - { - "l": "3.0", - "x": 17.9167, - "y": 34.4125 - }, - { - "l": "3.0", - "x": 18.0, - "y": 34.4547 - }, - { - "l": "3.0", - "x": 18.0833, - "y": 34.4948 - }, - { - "l": "3.0", - "x": 18.1667, - "y": 34.5317 - }, - { - "l": "3.0", - "x": 18.25, - "y": 34.5724 - }, - { - "l": "3.0", - "x": 18.3333, - "y": 34.6109 - }, - { - "l": "3.0", - "x": 18.4167, - "y": 34.641 - }, - { - "l": "3.0", - "x": 18.5, - "y": 34.6801 - }, - { - "l": "3.0", - "x": 18.5833, - "y": 34.7172 - }, - { - "l": "3.0", - "x": 18.6667, - "y": 34.7527 - }, - { - "l": "3.0", - "x": 18.75, - "y": 34.7882 - }, - { - "l": "3.0", - "x": 18.8333, - "y": 34.8243 - }, - { - "l": "3.0", - "x": 18.9167, - "y": 34.8599 - }, - { - "l": "3.0", - "x": 19.0, - "y": 34.8939 - }, - { - "l": "3.0", - "x": 19.0833, - "y": 34.9284 - }, - { - "l": "3.0", - "x": 19.1667, - "y": 34.9625 - }, - { - "l": "3.0", - "x": 19.25, - "y": 34.9951 - }, - { - "l": "3.0", - "x": 19.3333, - "y": 35.0297 - }, - { - "l": "3.0", - "x": 19.4167, - "y": 35.0607 - }, - { - "l": "3.0", - "x": 19.5, - "y": 35.0933 - }, - { - "l": "3.0", - "x": 19.5833, - "y": 35.1315 - }, - { - "l": "3.0", - "x": 19.6667, - "y": 35.1626 - }, - { - "l": "3.0", - "x": 19.75, - "y": 35.1922 - }, - { - "l": "3.0", - "x": 19.8333, - "y": 35.2238 - }, - { - "l": "3.0", - "x": 19.9167, - "y": 35.255 - }, - { - "l": "3.0", - "x": 20.0, - "y": 35.2851 - } - ] - }, - { - "sds": 3.33, - "centile": 99.95657700796184, - "data": [ - { - "l": "3.33", - "x": 4.0, - "y": 21.4895 - }, - { - "l": "3.33", - "x": 4.0833, - "y": 21.4801 - }, - { - "l": "3.33", - "x": 4.1667, - "y": 21.4734 - }, - { - "l": "3.33", - "x": 4.25, - "y": 21.4727 - }, - { - "l": "3.33", - "x": 4.3333, - "y": 21.4761 - }, - { - "l": "3.33", - "x": 4.4167, - "y": 21.4836 - }, - { - "l": "3.33", - "x": 4.5, - "y": 21.4935 - }, - { - "l": "3.33", - "x": 4.5833, - "y": 21.5088 - }, - { - "l": "3.33", - "x": 4.6667, - "y": 21.5268 - }, - { - "l": "3.33", - "x": 4.75, - "y": 21.5503 - }, - { - "l": "3.33", - "x": 4.8333, - "y": 21.5777 - }, - { - "l": "3.33", - "x": 4.9167, - "y": 21.6082 - }, - { - "l": "3.33", - "x": 5.0, - "y": 21.6454 - }, - { - "l": "3.33", - "x": 5.0833, - "y": 21.6859 - }, - { - "l": "3.33", - "x": 5.1667, - "y": 21.732 - }, - { - "l": "3.33", - "x": 5.25, - "y": 21.7828 - }, - { - "l": "3.33", - "x": 5.3333, - "y": 21.8368 - }, - { - "l": "3.33", - "x": 5.4167, - "y": 21.8942 - }, - { - "l": "3.33", - "x": 5.5, - "y": 21.958 - }, - { - "l": "3.33", - "x": 5.5833, - "y": 22.0254 - }, - { - "l": "3.33", - "x": 5.6667, - "y": 22.0963 - }, - { - "l": "3.33", - "x": 5.75, - "y": 22.1739 - }, - { - "l": "3.33", - "x": 5.8333, - "y": 22.2542 - }, - { - "l": "3.33", - "x": 5.9167, - "y": 22.3397 - }, - { - "l": "3.33", - "x": 6.0, - "y": 22.4313 - }, - { - "l": "3.33", - "x": 6.0833, - "y": 22.5236 - }, - { - "l": "3.33", - "x": 6.1667, - "y": 22.6224 - }, - { - "l": "3.33", - "x": 6.25, - "y": 22.7238 - }, - { - "l": "3.33", - "x": 6.3333, - "y": 22.8301 - }, - { - "l": "3.33", - "x": 6.4167, - "y": 22.9413 - }, - { - "l": "3.33", - "x": 6.5, - "y": 23.0539 - }, - { - "l": "3.33", - "x": 6.5833, - "y": 23.1755 - }, - { - "l": "3.33", - "x": 6.6667, - "y": 23.2986 - }, - { - "l": "3.33", - "x": 6.75, - "y": 23.4231 - }, - { - "l": "3.33", - "x": 6.8333, - "y": 23.5557 - }, - { - "l": "3.33", - "x": 6.9167, - "y": 23.6898 - }, - { - "l": "3.33", - "x": 7.0, - "y": 23.8252 - }, - { - "l": "3.33", - "x": 7.0833, - "y": 23.9677 - }, - { - "l": "3.33", - "x": 7.1667, - "y": 24.1115 - }, - { - "l": "3.33", - "x": 7.25, - "y": 24.2615 - }, - { - "l": "3.33", - "x": 7.3333, - "y": 24.4141 - }, - { - "l": "3.33", - "x": 7.4167, - "y": 24.5716 - }, - { - "l": "3.33", - "x": 7.5, - "y": 24.7285 - }, - { - "l": "3.33", - "x": 7.5833, - "y": 24.8881 - }, - { - "l": "3.33", - "x": 7.6667, - "y": 25.049 - }, - { - "l": "3.33", - "x": 7.75, - "y": 25.2164 - }, - { - "l": "3.33", - "x": 7.8333, - "y": 25.3847 - }, - { - "l": "3.33", - "x": 7.9167, - "y": 25.5557 - }, - { - "l": "3.33", - "x": 8.0, - "y": 25.7236 - }, - { - "l": "3.33", - "x": 8.0833, - "y": 25.9005 - }, - { - "l": "3.33", - "x": 8.1667, - "y": 26.0756 - }, - { - "l": "3.33", - "x": 8.25, - "y": 26.247 - }, - { - "l": "3.33", - "x": 8.3333, - "y": 26.4294 - }, - { - "l": "3.33", - "x": 8.4167, - "y": 26.6037 - }, - { - "l": "3.33", - "x": 8.5, - "y": 26.786 - }, - { - "l": "3.33", - "x": 8.5833, - "y": 26.9672 - }, - { - "l": "3.33", - "x": 8.6667, - "y": 27.1507 - }, - { - "l": "3.33", - "x": 8.75, - "y": 27.3307 - }, - { - "l": "3.33", - "x": 8.8333, - "y": 27.5127 - }, - { - "l": "3.33", - "x": 8.9167, - "y": 27.6973 - }, - { - "l": "3.33", - "x": 9.0, - "y": 27.8813 - }, - { - "l": "3.33", - "x": 9.0833, - "y": 28.0607 - }, - { - "l": "3.33", - "x": 9.1667, - "y": 28.2425 - }, - { - "l": "3.33", - "x": 9.25, - "y": 28.423 - }, - { - "l": "3.33", - "x": 9.3333, - "y": 28.603 - }, - { - "l": "3.33", - "x": 9.4167, - "y": 28.7817 - }, - { - "l": "3.33", - "x": 9.5, - "y": 28.964 - }, - { - "l": "3.33", - "x": 9.5833, - "y": 29.1383 - }, - { - "l": "3.33", - "x": 9.6667, - "y": 29.3133 - }, - { - "l": "3.33", - "x": 9.75, - "y": 29.4889 - }, - { - "l": "3.33", - "x": 9.8333, - "y": 29.6633 - }, - { - "l": "3.33", - "x": 9.9167, - "y": 29.8302 - }, - { - "l": "3.33", - "x": 10.0, - "y": 29.9971 - }, - { - "l": "3.33", - "x": 10.0833, - "y": 30.1623 - }, - { - "l": "3.33", - "x": 10.1667, - "y": 30.3275 - }, - { - "l": "3.33", - "x": 10.25, - "y": 30.4907 - }, - { - "l": "3.33", - "x": 10.3333, - "y": 30.6519 - }, - { - "l": "3.33", - "x": 10.4167, - "y": 30.809 - }, - { - "l": "3.33", - "x": 10.5, - "y": 30.9695 - }, - { - "l": "3.33", - "x": 10.5833, - "y": 31.1218 - }, - { - "l": "3.33", - "x": 10.6667, - "y": 31.2734 - }, - { - "l": "3.33", - "x": 10.75, - "y": 31.4209 - }, - { - "l": "3.33", - "x": 10.8333, - "y": 31.5671 - }, - { - "l": "3.33", - "x": 10.9167, - "y": 31.7046 - }, - { - "l": "3.33", - "x": 11.0, - "y": 31.8523 - }, - { - "l": "3.33", - "x": 11.0833, - "y": 31.9857 - }, - { - "l": "3.33", - "x": 11.1667, - "y": 32.114 - }, - { - "l": "3.33", - "x": 11.25, - "y": 32.2545 - }, - { - "l": "3.33", - "x": 11.3333, - "y": 32.3856 - }, - { - "l": "3.33", - "x": 11.4167, - "y": 32.5096 - }, - { - "l": "3.33", - "x": 11.5, - "y": 32.6256 - }, - { - "l": "3.33", - "x": 11.5833, - "y": 32.7502 - }, - { - "l": "3.33", - "x": 11.6667, - "y": 32.8678 - }, - { - "l": "3.33", - "x": 11.75, - "y": 32.9788 - }, - { - "l": "3.33", - "x": 11.8333, - "y": 33.1004 - }, - { - "l": "3.33", - "x": 11.9167, - "y": 33.2062 - }, - { - "l": "3.33", - "x": 12.0, - "y": 33.3207 - }, - { - "l": "3.33", - "x": 12.0833, - "y": 33.4229 - }, - { - "l": "3.33", - "x": 12.1667, - "y": 33.5234 - }, - { - "l": "3.33", - "x": 12.25, - "y": 33.6274 - }, - { - "l": "3.33", - "x": 12.3333, - "y": 33.7261 - }, - { - "l": "3.33", - "x": 12.4167, - "y": 33.8357 - }, - { - "l": "3.33", - "x": 12.5, - "y": 33.9307 - }, - { - "l": "3.33", - "x": 12.5833, - "y": 34.0111 - }, - { - "l": "3.33", - "x": 12.6667, - "y": 34.1043 - }, - { - "l": "3.33", - "x": 12.75, - "y": 34.1975 - }, - { - "l": "3.33", - "x": 12.8333, - "y": 34.2889 - }, - { - "l": "3.33", - "x": 12.9167, - "y": 34.3767 - }, - { - "l": "3.33", - "x": 13.0, - "y": 34.4535 - }, - { - "l": "3.33", - "x": 13.0833, - "y": 34.5375 - }, - { - "l": "3.33", - "x": 13.1667, - "y": 34.6235 - }, - { - "l": "3.33", - "x": 13.25, - "y": 34.7074 - }, - { - "l": "3.33", - "x": 13.3333, - "y": 34.7788 - }, - { - "l": "3.33", - "x": 13.4167, - "y": 34.8575 - }, - { - "l": "3.33", - "x": 13.5, - "y": 34.9272 - }, - { - "l": "3.33", - "x": 13.5833, - "y": 35.0058 - }, - { - "l": "3.33", - "x": 13.6667, - "y": 35.0701 - }, - { - "l": "3.33", - "x": 13.75, - "y": 35.147 - }, - { - "l": "3.33", - "x": 13.8333, - "y": 35.222 - }, - { - "l": "3.33", - "x": 13.9167, - "y": 35.2847 - }, - { - "l": "3.33", - "x": 14.0, - "y": 35.3474 - }, - { - "l": "3.33", - "x": 14.0833, - "y": 35.4173 - }, - { - "l": "3.33", - "x": 14.1667, - "y": 35.4907 - }, - { - "l": "3.33", - "x": 14.25, - "y": 35.5446 - }, - { - "l": "3.33", - "x": 14.3333, - "y": 35.6146 - }, - { - "l": "3.33", - "x": 14.4167, - "y": 35.6705 - }, - { - "l": "3.33", - "x": 14.5, - "y": 35.7351 - }, - { - "l": "3.33", - "x": 14.5833, - "y": 35.7912 - }, - { - "l": "3.33", - "x": 14.6667, - "y": 35.8421 - }, - { - "l": "3.33", - "x": 14.75, - "y": 35.9053 - }, - { - "l": "3.33", - "x": 14.8333, - "y": 35.9564 - }, - { - "l": "3.33", - "x": 14.9167, - "y": 36.0145 - }, - { - "l": "3.33", - "x": 15.0, - "y": 36.0657 - }, - { - "l": "3.33", - "x": 15.0833, - "y": 36.1239 - }, - { - "l": "3.33", - "x": 15.1667, - "y": 36.1821 - }, - { - "l": "3.33", - "x": 15.25, - "y": 36.2251 - }, - { - "l": "3.33", - "x": 15.3333, - "y": 36.2834 - }, - { - "l": "3.33", - "x": 15.4167, - "y": 36.3248 - }, - { - "l": "3.33", - "x": 15.5, - "y": 36.3799 - }, - { - "l": "3.33", - "x": 15.5833, - "y": 36.4216 - }, - { - "l": "3.33", - "x": 15.6667, - "y": 36.4718 - }, - { - "l": "3.33", - "x": 15.75, - "y": 36.5137 - }, - { - "l": "3.33", - "x": 15.8333, - "y": 36.5622 - }, - { - "l": "3.33", - "x": 15.9167, - "y": 36.609 - }, - { - "l": "3.33", - "x": 16.0, - "y": 36.6481 - }, - { - "l": "3.33", - "x": 16.0833, - "y": 36.6951 - }, - { - "l": "3.33", - "x": 16.1667, - "y": 36.7422 - }, - { - "l": "3.33", - "x": 16.25, - "y": 36.778 - }, - { - "l": "3.33", - "x": 16.3333, - "y": 36.8221 - }, - { - "l": "3.33", - "x": 16.4167, - "y": 36.8644 - }, - { - "l": "3.33", - "x": 16.5, - "y": 36.8989 - }, - { - "l": "3.33", - "x": 16.5833, - "y": 36.9396 - }, - { - "l": "3.33", - "x": 16.6667, - "y": 36.9805 - }, - { - "l": "3.33", - "x": 16.75, - "y": 37.0123 - }, - { - "l": "3.33", - "x": 16.8333, - "y": 37.0516 - }, - { - "l": "3.33", - "x": 16.9167, - "y": 37.0909 - }, - { - "l": "3.33", - "x": 17.0, - "y": 37.1214 - }, - { - "l": "3.33", - "x": 17.0833, - "y": 37.1592 - }, - { - "l": "3.33", - "x": 17.1667, - "y": 37.1971 - }, - { - "l": "3.33", - "x": 17.25, - "y": 37.2303 - }, - { - "l": "3.33", - "x": 17.3333, - "y": 37.2595 - }, - { - "l": "3.33", - "x": 17.4167, - "y": 37.2912 - }, - { - "l": "3.33", - "x": 17.5, - "y": 37.3278 - }, - { - "l": "3.33", - "x": 17.5833, - "y": 37.3644 - }, - { - "l": "3.33", - "x": 17.6667, - "y": 37.3946 - }, - { - "l": "3.33", - "x": 17.75, - "y": 37.4267 - }, - { - "l": "3.33", - "x": 17.8333, - "y": 37.4533 - }, - { - "l": "3.33", - "x": 17.9167, - "y": 37.4821 - }, - { - "l": "3.33", - "x": 18.0, - "y": 37.5157 - }, - { - "l": "3.33", - "x": 18.0833, - "y": 37.5466 - }, - { - "l": "3.33", - "x": 18.1667, - "y": 37.5739 - }, - { - "l": "3.33", - "x": 18.25, - "y": 37.6061 - }, - { - "l": "3.33", - "x": 18.3333, - "y": 37.6355 - }, - { - "l": "3.33", - "x": 18.4167, - "y": 37.6531 - }, - { - "l": "3.33", - "x": 18.5, - "y": 37.6839 - }, - { - "l": "3.33", - "x": 18.5833, - "y": 37.7118 - }, - { - "l": "3.33", - "x": 18.6667, - "y": 37.7382 - }, - { - "l": "3.33", - "x": 18.75, - "y": 37.7646 - }, - { - "l": "3.33", - "x": 18.8333, - "y": 37.7922 - }, - { - "l": "3.33", - "x": 18.9167, - "y": 37.8189 - }, - { - "l": "3.33", - "x": 19.0, - "y": 37.8439 - }, - { - "l": "3.33", - "x": 19.0833, - "y": 37.8701 - }, - { - "l": "3.33", - "x": 19.1667, - "y": 37.8954 - }, - { - "l": "3.33", - "x": 19.25, - "y": 37.919 - }, - { - "l": "3.33", - "x": 19.3333, - "y": 37.9455 - }, - { - "l": "3.33", - "x": 19.4167, - "y": 37.9676 - }, - { - "l": "3.33", - "x": 19.5, - "y": 37.9915 - }, - { - "l": "3.33", - "x": 19.5833, - "y": 38.0244 - }, - { - "l": "3.33", - "x": 19.6667, - "y": 38.0467 - }, - { - "l": "3.33", - "x": 19.75, - "y": 38.0675 - }, - { - "l": "3.33", - "x": 19.8333, - "y": 38.0911 - }, - { - "l": "3.33", - "x": 19.9167, - "y": 38.1138 - }, - { - "l": "3.33", - "x": 20.0, - "y": 38.1359 - } - ] - }, - { - "sds": 3.67, - "centile": 99.98787247657145, - "data": [ - { - "l": "3.67", - "x": 4.0, - "y": 22.3672 - }, - { - "l": "3.67", - "x": 4.0833, - "y": 22.3647 - }, - { - "l": "3.67", - "x": 4.1667, - "y": 22.3646 - }, - { - "l": "3.67", - "x": 4.25, - "y": 22.3719 - }, - { - "l": "3.67", - "x": 4.3333, - "y": 22.3838 - }, - { - "l": "3.67", - "x": 4.4167, - "y": 22.4001 - }, - { - "l": "3.67", - "x": 4.5, - "y": 22.4195 - }, - { - "l": "3.67", - "x": 4.5833, - "y": 22.445 - }, - { - "l": "3.67", - "x": 4.6667, - "y": 22.4737 - }, - { - "l": "3.67", - "x": 4.75, - "y": 22.5086 - }, - { - "l": "3.67", - "x": 4.8333, - "y": 22.5485 - }, - { - "l": "3.67", - "x": 4.9167, - "y": 22.5921 - }, - { - "l": "3.67", - "x": 5.0, - "y": 22.6435 - }, - { - "l": "3.67", - "x": 5.0833, - "y": 22.6987 - }, - { - "l": "3.67", - "x": 5.1667, - "y": 22.761 - }, - { - "l": "3.67", - "x": 5.25, - "y": 22.8289 - }, - { - "l": "3.67", - "x": 5.3333, - "y": 22.9007 - }, - { - "l": "3.67", - "x": 5.4167, - "y": 22.9769 - }, - { - "l": "3.67", - "x": 5.5, - "y": 23.0608 - }, - { - "l": "3.67", - "x": 5.5833, - "y": 23.1496 - }, - { - "l": "3.67", - "x": 5.6667, - "y": 23.2426 - }, - { - "l": "3.67", - "x": 5.75, - "y": 23.344 - }, - { - "l": "3.67", - "x": 5.8333, - "y": 23.4491 - }, - { - "l": "3.67", - "x": 5.9167, - "y": 23.5604 - }, - { - "l": "3.67", - "x": 6.0, - "y": 23.6801 - }, - { - "l": "3.67", - "x": 6.0833, - "y": 23.8004 - }, - { - "l": "3.67", - "x": 6.1667, - "y": 23.9295 - }, - { - "l": "3.67", - "x": 6.25, - "y": 24.0622 - }, - { - "l": "3.67", - "x": 6.3333, - "y": 24.2011 - }, - { - "l": "3.67", - "x": 6.4167, - "y": 24.347 - }, - { - "l": "3.67", - "x": 6.5, - "y": 24.4945 - }, - { - "l": "3.67", - "x": 6.5833, - "y": 24.6544 - }, - { - "l": "3.67", - "x": 6.6667, - "y": 24.8163 - }, - { - "l": "3.67", - "x": 6.75, - "y": 24.9804 - }, - { - "l": "3.67", - "x": 6.8333, - "y": 25.1555 - }, - { - "l": "3.67", - "x": 6.9167, - "y": 25.3331 - }, - { - "l": "3.67", - "x": 7.0, - "y": 25.5124 - }, - { - "l": "3.67", - "x": 7.0833, - "y": 25.702 - }, - { - "l": "3.67", - "x": 7.1667, - "y": 25.8934 - }, - { - "l": "3.67", - "x": 7.25, - "y": 26.0936 - }, - { - "l": "3.67", - "x": 7.3333, - "y": 26.298 - }, - { - "l": "3.67", - "x": 7.4167, - "y": 26.51 - }, - { - "l": "3.67", - "x": 7.5, - "y": 26.7213 - }, - { - "l": "3.67", - "x": 7.5833, - "y": 26.9368 - }, - { - "l": "3.67", - "x": 7.6667, - "y": 27.1545 - }, - { - "l": "3.67", - "x": 7.75, - "y": 27.3826 - }, - { - "l": "3.67", - "x": 7.8333, - "y": 27.6119 - }, - { - "l": "3.67", - "x": 7.9167, - "y": 27.8457 - }, - { - "l": "3.67", - "x": 8.0, - "y": 28.0754 - }, - { - "l": "3.67", - "x": 8.0833, - "y": 28.3194 - }, - { - "l": "3.67", - "x": 8.1667, - "y": 28.5609 - }, - { - "l": "3.67", - "x": 8.25, - "y": 28.7971 - }, - { - "l": "3.67", - "x": 8.3333, - "y": 29.0502 - }, - { - "l": "3.67", - "x": 8.4167, - "y": 29.2925 - }, - { - "l": "3.67", - "x": 8.5, - "y": 29.5457 - }, - { - "l": "3.67", - "x": 8.5833, - "y": 29.7992 - }, - { - "l": "3.67", - "x": 8.6667, - "y": 30.0567 - }, - { - "l": "3.67", - "x": 8.75, - "y": 30.3085 - }, - { - "l": "3.67", - "x": 8.8333, - "y": 30.5637 - }, - { - "l": "3.67", - "x": 8.9167, - "y": 30.8241 - }, - { - "l": "3.67", - "x": 9.0, - "y": 31.0839 - }, - { - "l": "3.67", - "x": 9.0833, - "y": 31.3359 - }, - { - "l": "3.67", - "x": 9.1667, - "y": 31.5925 - }, - { - "l": "3.67", - "x": 9.25, - "y": 31.8474 - }, - { - "l": "3.67", - "x": 9.3333, - "y": 32.1026 - }, - { - "l": "3.67", - "x": 9.4167, - "y": 32.3538 - }, - { - "l": "3.67", - "x": 9.5, - "y": 32.6131 - }, - { - "l": "3.67", - "x": 9.5833, - "y": 32.859 - }, - { - "l": "3.67", - "x": 9.6667, - "y": 33.106 - }, - { - "l": "3.67", - "x": 9.75, - "y": 33.3541 - }, - { - "l": "3.67", - "x": 9.8333, - "y": 33.601 - }, - { - "l": "3.67", - "x": 9.9167, - "y": 33.834 - }, - { - "l": "3.67", - "x": 10.0, - "y": 34.0668 - }, - { - "l": "3.67", - "x": 10.0833, - "y": 34.2973 - }, - { - "l": "3.67", - "x": 10.1667, - "y": 34.5274 - }, - { - "l": "3.67", - "x": 10.25, - "y": 34.7549 - }, - { - "l": "3.67", - "x": 10.3333, - "y": 34.9795 - }, - { - "l": "3.67", - "x": 10.4167, - "y": 35.1939 - }, - { - "l": "3.67", - "x": 10.5, - "y": 35.4164 - }, - { - "l": "3.67", - "x": 10.5833, - "y": 35.6237 - }, - { - "l": "3.67", - "x": 10.6667, - "y": 35.8291 - }, - { - "l": "3.67", - "x": 10.75, - "y": 36.0271 - }, - { - "l": "3.67", - "x": 10.8333, - "y": 36.2241 - }, - { - "l": "3.67", - "x": 10.9167, - "y": 36.4027 - }, - { - "l": "3.67", - "x": 11.0, - "y": 36.6004 - }, - { - "l": "3.67", - "x": 11.0833, - "y": 36.7713 - }, - { - "l": "3.67", - "x": 11.1667, - "y": 36.9348 - }, - { - "l": "3.67", - "x": 11.25, - "y": 37.1201 - }, - { - "l": "3.67", - "x": 11.3333, - "y": 37.2854 - }, - { - "l": "3.67", - "x": 11.4167, - "y": 37.4408 - }, - { - "l": "3.67", - "x": 11.5, - "y": 37.5775 - }, - { - "l": "3.67", - "x": 11.5833, - "y": 37.7319 - }, - { - "l": "3.67", - "x": 11.6667, - "y": 37.8748 - }, - { - "l": "3.67", - "x": 11.75, - "y": 38.002 - }, - { - "l": "3.67", - "x": 11.8333, - "y": 38.1494 - }, - { - "l": "3.67", - "x": 11.9167, - "y": 38.2671 - }, - { - "l": "3.67", - "x": 12.0, - "y": 38.4027 - }, - { - "l": "3.67", - "x": 12.0833, - "y": 38.5143 - }, - { - "l": "3.67", - "x": 12.1667, - "y": 38.6221 - }, - { - "l": "3.67", - "x": 12.25, - "y": 38.7356 - }, - { - "l": "3.67", - "x": 12.3333, - "y": 38.8394 - }, - { - "l": "3.67", - "x": 12.4167, - "y": 38.9637 - }, - { - "l": "3.67", - "x": 12.5, - "y": 39.0615 - }, - { - "l": "3.67", - "x": 12.5833, - "y": 39.1327 - }, - { - "l": "3.67", - "x": 12.6667, - "y": 39.2266 - }, - { - "l": "3.67", - "x": 12.75, - "y": 39.3204 - }, - { - "l": "3.67", - "x": 12.8333, - "y": 39.4105 - }, - { - "l": "3.67", - "x": 12.9167, - "y": 39.4947 - }, - { - "l": "3.67", - "x": 13.0, - "y": 39.5584 - }, - { - "l": "3.67", - "x": 13.0833, - "y": 39.6368 - }, - { - "l": "3.67", - "x": 13.1667, - "y": 39.7174 - }, - { - "l": "3.67", - "x": 13.25, - "y": 39.7957 - }, - { - "l": "3.67", - "x": 13.3333, - "y": 39.8503 - }, - { - "l": "3.67", - "x": 13.4167, - "y": 39.9194 - }, - { - "l": "3.67", - "x": 13.5, - "y": 39.9708 - }, - { - "l": "3.67", - "x": 13.5833, - "y": 40.0401 - }, - { - "l": "3.67", - "x": 13.6667, - "y": 40.084 - }, - { - "l": "3.67", - "x": 13.75, - "y": 40.15 - }, - { - "l": "3.67", - "x": 13.8333, - "y": 40.2139 - }, - { - "l": "3.67", - "x": 13.9167, - "y": 40.2551 - }, - { - "l": "3.67", - "x": 14.0, - "y": 40.2965 - }, - { - "l": "3.67", - "x": 14.0833, - "y": 40.352 - }, - { - "l": "3.67", - "x": 14.1667, - "y": 40.4131 - }, - { - "l": "3.67", - "x": 14.25, - "y": 40.4423 - }, - { - "l": "3.67", - "x": 14.3333, - "y": 40.4983 - }, - { - "l": "3.67", - "x": 14.4167, - "y": 40.5303 - }, - { - "l": "3.67", - "x": 14.5, - "y": 40.5792 - }, - { - "l": "3.67", - "x": 14.5833, - "y": 40.6119 - }, - { - "l": "3.67", - "x": 14.6667, - "y": 40.6376 - }, - { - "l": "3.67", - "x": 14.75, - "y": 40.6842 - }, - { - "l": "3.67", - "x": 14.8333, - "y": 40.7106 - }, - { - "l": "3.67", - "x": 14.9167, - "y": 40.7504 - }, - { - "l": "3.67", - "x": 15.0, - "y": 40.7777 - }, - { - "l": "3.67", - "x": 15.0833, - "y": 40.8181 - }, - { - "l": "3.67", - "x": 15.1667, - "y": 40.8587 - }, - { - "l": "3.67", - "x": 15.25, - "y": 40.8748 - }, - { - "l": "3.67", - "x": 15.3333, - "y": 40.916 - }, - { - "l": "3.67", - "x": 15.4167, - "y": 40.931 - }, - { - "l": "3.67", - "x": 15.5, - "y": 40.9679 - }, - { - "l": "3.67", - "x": 15.5833, - "y": 40.9837 - }, - { - "l": "3.67", - "x": 15.6667, - "y": 41.0143 - }, - { - "l": "3.67", - "x": 15.75, - "y": 41.0311 - }, - { - "l": "3.67", - "x": 15.8333, - "y": 41.0602 - }, - { - "l": "3.67", - "x": 15.9167, - "y": 41.0876 - }, - { - "l": "3.67", - "x": 16.0, - "y": 41.1009 - }, - { - "l": "3.67", - "x": 16.0833, - "y": 41.129 - }, - { - "l": "3.67", - "x": 16.1667, - "y": 41.1574 - }, - { - "l": "3.67", - "x": 16.25, - "y": 41.168 - }, - { - "l": "3.67", - "x": 16.3333, - "y": 41.1924 - }, - { - "l": "3.67", - "x": 16.4167, - "y": 41.2151 - }, - { - "l": "3.67", - "x": 16.5, - "y": 41.225 - }, - { - "l": "3.67", - "x": 16.5833, - "y": 41.2464 - }, - { - "l": "3.67", - "x": 16.6667, - "y": 41.2682 - }, - { - "l": "3.67", - "x": 16.75, - "y": 41.2749 - }, - { - "l": "3.67", - "x": 16.8333, - "y": 41.2953 - }, - { - "l": "3.67", - "x": 16.9167, - "y": 41.3161 - }, - { - "l": "3.67", - "x": 17.0, - "y": 41.3222 - }, - { - "l": "3.67", - "x": 17.0833, - "y": 41.3416 - }, - { - "l": "3.67", - "x": 17.1667, - "y": 41.3614 - }, - { - "l": "3.67", - "x": 17.25, - "y": 41.3751 - }, - { - "l": "3.67", - "x": 17.3333, - "y": 41.3809 - }, - { - "l": "3.67", - "x": 17.4167, - "y": 41.3934 - }, - { - "l": "3.67", - "x": 17.5, - "y": 41.4125 - }, - { - "l": "3.67", - "x": 17.5833, - "y": 41.4319 - }, - { - "l": "3.67", - "x": 17.6667, - "y": 41.4433 - }, - { - "l": "3.67", - "x": 17.75, - "y": 41.4571 - }, - { - "l": "3.67", - "x": 17.8333, - "y": 41.4614 - }, - { - "l": "3.67", - "x": 17.9167, - "y": 41.472 - }, - { - "l": "3.67", - "x": 18.0, - "y": 41.489 - }, - { - "l": "3.67", - "x": 18.0833, - "y": 41.5021 - }, - { - "l": "3.67", - "x": 18.1667, - "y": 41.5116 - }, - { - "l": "3.67", - "x": 18.25, - "y": 41.5275 - }, - { - "l": "3.67", - "x": 18.3333, - "y": 41.5395 - }, - { - "l": "3.67", - "x": 18.4167, - "y": 41.5347 - }, - { - "l": "3.67", - "x": 18.5, - "y": 41.5495 - }, - { - "l": "3.67", - "x": 18.5833, - "y": 41.5606 - }, - { - "l": "3.67", - "x": 18.6667, - "y": 41.5701 - }, - { - "l": "3.67", - "x": 18.75, - "y": 41.5798 - }, - { - "l": "3.67", - "x": 18.8333, - "y": 41.5919 - }, - { - "l": "3.67", - "x": 18.9167, - "y": 41.6022 - }, - { - "l": "3.67", - "x": 19.0, - "y": 41.6108 - }, - { - "l": "3.67", - "x": 19.0833, - "y": 41.6218 - }, - { - "l": "3.67", - "x": 19.1667, - "y": 41.631 - }, - { - "l": "3.67", - "x": 19.25, - "y": 41.6386 - }, - { - "l": "3.67", - "x": 19.3333, - "y": 41.6503 - }, - { - "l": "3.67", - "x": 19.4167, - "y": 41.6565 - }, - { - "l": "3.67", - "x": 19.5, - "y": 41.6649 - }, - { - "l": "3.67", - "x": 19.5833, - "y": 41.6876 - }, - { - "l": "3.67", - "x": 19.6667, - "y": 41.6945 - }, - { - "l": "3.67", - "x": 19.75, - "y": 41.6998 - }, - { - "l": "3.67", - "x": 19.8333, - "y": 41.7092 - }, - { - "l": "3.67", - "x": 19.9167, - "y": 41.7169 - }, - { - "l": "3.67", - "x": 20.0, - "y": 41.7248 - } - ] - }, - { - "sds": 4.0, - "centile": 99.9968328758167, - "data": [ - { - "l": "4.0", - "x": 4.0, - "y": 23.3018 - }, - { - "l": "4.0", - "x": 4.0833, - "y": 23.308 - }, - { - "l": "4.0", - "x": 4.1667, - "y": 23.3165 - }, - { - "l": "4.0", - "x": 4.25, - "y": 23.3339 - }, - { - "l": "4.0", - "x": 4.3333, - "y": 23.3565 - }, - { - "l": "4.0", - "x": 4.4167, - "y": 23.3838 - }, - { - "l": "4.0", - "x": 4.5, - "y": 23.4151 - }, - { - "l": "4.0", - "x": 4.5833, - "y": 23.4535 - }, - { - "l": "4.0", - "x": 4.6667, - "y": 23.4954 - }, - { - "l": "4.0", - "x": 4.75, - "y": 23.5446 - }, - { - "l": "4.0", - "x": 4.8333, - "y": 23.6001 - }, - { - "l": "4.0", - "x": 4.9167, - "y": 23.6602 - }, - { - "l": "4.0", - "x": 5.0, - "y": 23.7291 - }, - { - "l": "4.0", - "x": 5.0833, - "y": 23.8029 - }, - { - "l": "4.0", - "x": 5.1667, - "y": 23.8853 - }, - { - "l": "4.0", - "x": 5.25, - "y": 23.9748 - }, - { - "l": "4.0", - "x": 5.3333, - "y": 24.0689 - }, - { - "l": "4.0", - "x": 5.4167, - "y": 24.1688 - }, - { - "l": "4.0", - "x": 5.5, - "y": 24.2782 - }, - { - "l": "4.0", - "x": 5.5833, - "y": 24.3941 - }, - { - "l": "4.0", - "x": 5.6667, - "y": 24.5152 - }, - { - "l": "4.0", - "x": 5.75, - "y": 24.6471 - }, - { - "l": "4.0", - "x": 5.8333, - "y": 24.7838 - }, - { - "l": "4.0", - "x": 5.9167, - "y": 24.9284 - }, - { - "l": "4.0", - "x": 6.0, - "y": 25.0843 - }, - { - "l": "4.0", - "x": 6.0833, - "y": 25.2409 - }, - { - "l": "4.0", - "x": 6.1667, - "y": 25.4097 - }, - { - "l": "4.0", - "x": 6.25, - "y": 25.5835 - }, - { - "l": "4.0", - "x": 6.3333, - "y": 25.7654 - }, - { - "l": "4.0", - "x": 6.4167, - "y": 25.9572 - }, - { - "l": "4.0", - "x": 6.5, - "y": 26.1514 - }, - { - "l": "4.0", - "x": 6.5833, - "y": 26.363 - }, - { - "l": "4.0", - "x": 6.6667, - "y": 26.5774 - }, - { - "l": "4.0", - "x": 6.75, - "y": 26.7953 - }, - { - "l": "4.0", - "x": 6.8333, - "y": 27.0289 - }, - { - "l": "4.0", - "x": 6.9167, - "y": 27.2665 - }, - { - "l": "4.0", - "x": 7.0, - "y": 27.5067 - }, - { - "l": "4.0", - "x": 7.0833, - "y": 27.7625 - }, - { - "l": "4.0", - "x": 7.1667, - "y": 28.0212 - }, - { - "l": "4.0", - "x": 7.25, - "y": 28.293 - }, - { - "l": "4.0", - "x": 7.3333, - "y": 28.5718 - }, - { - "l": "4.0", - "x": 7.4167, - "y": 28.863 - }, - { - "l": "4.0", - "x": 7.5, - "y": 29.1537 - }, - { - "l": "4.0", - "x": 7.5833, - "y": 29.4519 - }, - { - "l": "4.0", - "x": 7.6667, - "y": 29.7541 - }, - { - "l": "4.0", - "x": 7.75, - "y": 30.0736 - }, - { - "l": "4.0", - "x": 7.8333, - "y": 30.3954 - }, - { - "l": "4.0", - "x": 7.9167, - "y": 30.7254 - }, - { - "l": "4.0", - "x": 8.0, - "y": 31.0506 - }, - { - "l": "4.0", - "x": 8.0833, - "y": 31.3997 - }, - { - "l": "4.0", - "x": 8.1667, - "y": 31.7455 - }, - { - "l": "4.0", - "x": 8.25, - "y": 32.0846 - }, - { - "l": "4.0", - "x": 8.3333, - "y": 32.4515 - }, - { - "l": "4.0", - "x": 8.4167, - "y": 32.804 - }, - { - "l": "4.0", - "x": 8.5, - "y": 33.1733 - }, - { - "l": "4.0", - "x": 8.5833, - "y": 33.5466 - }, - { - "l": "4.0", - "x": 8.6667, - "y": 33.9281 - }, - { - "l": "4.0", - "x": 8.75, - "y": 34.3008 - }, - { - "l": "4.0", - "x": 8.8333, - "y": 34.6804 - }, - { - "l": "4.0", - "x": 8.9167, - "y": 35.071 - }, - { - "l": "4.0", - "x": 9.0, - "y": 35.4627 - }, - { - "l": "4.0", - "x": 9.0833, - "y": 35.8414 - }, - { - "l": "4.0", - "x": 9.1667, - "y": 36.2297 - }, - { - "l": "4.0", - "x": 9.25, - "y": 36.6171 - }, - { - "l": "4.0", - "x": 9.3333, - "y": 37.0076 - }, - { - "l": "4.0", - "x": 9.4167, - "y": 37.3889 - }, - { - "l": "4.0", - "x": 9.5, - "y": 37.789 - }, - { - "l": "4.0", - "x": 9.5833, - "y": 38.1661 - }, - { - "l": "4.0", - "x": 9.6667, - "y": 38.5462 - }, - { - "l": "4.0", - "x": 9.75, - "y": 38.9291 - }, - { - "l": "4.0", - "x": 9.8333, - "y": 39.312 - }, - { - "l": "4.0", - "x": 9.9167, - "y": 39.6682 - }, - { - "l": "4.0", - "x": 10.0, - "y": 40.0244 - }, - { - "l": "4.0", - "x": 10.0833, - "y": 40.3781 - }, - { - "l": "4.0", - "x": 10.1667, - "y": 40.7313 - }, - { - "l": "4.0", - "x": 10.25, - "y": 41.0813 - }, - { - "l": "4.0", - "x": 10.3333, - "y": 41.4275 - }, - { - "l": "4.0", - "x": 10.4167, - "y": 41.7498 - }, - { - "l": "4.0", - "x": 10.5, - "y": 42.092 - }, - { - "l": "4.0", - "x": 10.5833, - "y": 42.4031 - }, - { - "l": "4.0", - "x": 10.6667, - "y": 42.7103 - }, - { - "l": "4.0", - "x": 10.75, - "y": 43.0036 - }, - { - "l": "4.0", - "x": 10.8333, - "y": 43.2967 - }, - { - "l": "4.0", - "x": 10.9167, - "y": 43.549 - }, - { - "l": "4.0", - "x": 11.0, - "y": 43.8414 - }, - { - "l": "4.0", - "x": 11.0833, - "y": 44.0786 - }, - { - "l": "4.0", - "x": 11.1667, - "y": 44.3037 - }, - { - "l": "4.0", - "x": 11.25, - "y": 44.5725 - }, - { - "l": "4.0", - "x": 11.3333, - "y": 44.7966 - }, - { - "l": "4.0", - "x": 11.4167, - "y": 45.0054 - }, - { - "l": "4.0", - "x": 11.5, - "y": 45.17 - }, - { - "l": "4.0", - "x": 11.5833, - "y": 45.3736 - }, - { - "l": "4.0", - "x": 11.6667, - "y": 45.5562 - }, - { - "l": "4.0", - "x": 11.75, - "y": 45.7015 - }, - { - "l": "4.0", - "x": 11.8333, - "y": 45.8891 - }, - { - "l": "4.0", - "x": 11.9167, - "y": 46.0151 - }, - { - "l": "4.0", - "x": 12.0, - "y": 46.1811 - }, - { - "l": "4.0", - "x": 12.0833, - "y": 46.2957 - }, - { - "l": "4.0", - "x": 12.1667, - "y": 46.4021 - }, - { - "l": "4.0", - "x": 12.25, - "y": 46.5187 - }, - { - "l": "4.0", - "x": 12.3333, - "y": 46.6166 - }, - { - "l": "4.0", - "x": 12.4167, - "y": 46.7571 - }, - { - "l": "4.0", - "x": 12.5, - "y": 46.8439 - }, - { - "l": "4.0", - "x": 12.5833, - "y": 46.8773 - }, - { - "l": "4.0", - "x": 12.6667, - "y": 46.9561 - }, - { - "l": "4.0", - "x": 12.75, - "y": 47.0349 - }, - { - "l": "4.0", - "x": 12.8333, - "y": 47.1059 - }, - { - "l": "4.0", - "x": 12.9167, - "y": 47.1667 - }, - { - "l": "4.0", - "x": 13.0, - "y": 47.1859 - }, - { - "l": "4.0", - "x": 13.0833, - "y": 47.237 - }, - { - "l": "4.0", - "x": 13.1667, - "y": 47.2909 - }, - { - "l": "4.0", - "x": 13.25, - "y": 47.3425 - }, - { - "l": "4.0", - "x": 13.3333, - "y": 47.3464 - }, - { - "l": "4.0", - "x": 13.4167, - "y": 47.3815 - }, - { - "l": "4.0", - "x": 13.5, - "y": 47.3799 - }, - { - "l": "4.0", - "x": 13.5833, - "y": 47.4162 - }, - { - "l": "4.0", - "x": 13.6667, - "y": 47.4042 - }, - { - "l": "4.0", - "x": 13.75, - "y": 47.4347 - }, - { - "l": "4.0", - "x": 13.8333, - "y": 47.4632 - }, - { - "l": "4.0", - "x": 13.9167, - "y": 47.4473 - }, - { - "l": "4.0", - "x": 14.0, - "y": 47.4328 - }, - { - "l": "4.0", - "x": 14.0833, - "y": 47.4476 - }, - { - "l": "4.0", - "x": 14.1667, - "y": 47.4723 - }, - { - "l": "4.0", - "x": 14.25, - "y": 47.4404 - }, - { - "l": "4.0", - "x": 14.3333, - "y": 47.4578 - }, - { - "l": "4.0", - "x": 14.4167, - "y": 47.4311 - }, - { - "l": "4.0", - "x": 14.5, - "y": 47.4388 - }, - { - "l": "4.0", - "x": 14.5833, - "y": 47.4148 - }, - { - "l": "4.0", - "x": 14.6667, - "y": 47.3812 - }, - { - "l": "4.0", - "x": 14.75, - "y": 47.3859 - }, - { - "l": "4.0", - "x": 14.8333, - "y": 47.3551 - }, - { - "l": "4.0", - "x": 14.9167, - "y": 47.351 - }, - { - "l": "4.0", - "x": 15.0, - "y": 47.323 - }, - { - "l": "4.0", - "x": 15.0833, - "y": 47.321 - }, - { - "l": "4.0", - "x": 15.1667, - "y": 47.3199 - }, - { - "l": "4.0", - "x": 15.25, - "y": 47.2772 - }, - { - "l": "4.0", - "x": 15.3333, - "y": 47.2782 - }, - { - "l": "4.0", - "x": 15.4167, - "y": 47.236 - }, - { - "l": "4.0", - "x": 15.5, - "y": 47.2313 - }, - { - "l": "4.0", - "x": 15.5833, - "y": 47.192 - }, - { - "l": "4.0", - "x": 15.6667, - "y": 47.1794 - }, - { - "l": "4.0", - "x": 15.75, - "y": 47.143 - }, - { - "l": "4.0", - "x": 15.8333, - "y": 47.1302 - }, - { - "l": "4.0", - "x": 15.9167, - "y": 47.116 - }, - { - "l": "4.0", - "x": 16.0, - "y": 47.0762 - }, - { - "l": "4.0", - "x": 16.0833, - "y": 47.0643 - }, - { - "l": "4.0", - "x": 16.1667, - "y": 47.0532 - }, - { - "l": "4.0", - "x": 16.25, - "y": 47.0127 - }, - { - "l": "4.0", - "x": 16.3333, - "y": 46.9966 - }, - { - "l": "4.0", - "x": 16.4167, - "y": 46.9792 - }, - { - "l": "4.0", - "x": 16.5, - "y": 46.9402 - }, - { - "l": "4.0", - "x": 16.5833, - "y": 46.9226 - }, - { - "l": "4.0", - "x": 16.6667, - "y": 46.9059 - }, - { - "l": "4.0", - "x": 16.75, - "y": 46.8639 - }, - { - "l": "4.0", - "x": 16.8333, - "y": 46.847 - }, - { - "l": "4.0", - "x": 16.9167, - "y": 46.831 - }, - { - "l": "4.0", - "x": 17.0, - "y": 46.7904 - }, - { - "l": "4.0", - "x": 17.0833, - "y": 46.774 - }, - { - "l": "4.0", - "x": 17.1667, - "y": 46.7586 - }, - { - "l": "4.0", - "x": 17.25, - "y": 46.7352 - }, - { - "l": "4.0", - "x": 17.3333, - "y": 46.6969 - }, - { - "l": "4.0", - "x": 17.4167, - "y": 46.6733 - }, - { - "l": "4.0", - "x": 17.5, - "y": 46.6591 - }, - { - "l": "4.0", - "x": 17.5833, - "y": 46.6457 - }, - { - "l": "4.0", - "x": 17.6667, - "y": 46.6223 - }, - { - "l": "4.0", - "x": 17.75, - "y": 46.6021 - }, - { - "l": "4.0", - "x": 17.8333, - "y": 46.5657 - }, - { - "l": "4.0", - "x": 17.9167, - "y": 46.5428 - }, - { - "l": "4.0", - "x": 18.0, - "y": 46.529 - }, - { - "l": "4.0", - "x": 18.0833, - "y": 46.5099 - }, - { - "l": "4.0", - "x": 18.1667, - "y": 46.4871 - }, - { - "l": "4.0", - "x": 18.25, - "y": 46.4733 - }, - { - "l": "4.0", - "x": 18.3333, - "y": 46.4542 - }, - { - "l": "4.0", - "x": 18.4167, - "y": 46.41 - }, - { - "l": "4.0", - "x": 18.5, - "y": 46.3962 - }, - { - "l": "4.0", - "x": 18.5833, - "y": 46.3774 - }, - { - "l": "4.0", - "x": 18.6667, - "y": 46.357 - }, - { - "l": "4.0", - "x": 18.75, - "y": 46.3374 - }, - { - "l": "4.0", - "x": 18.8333, - "y": 46.3219 - }, - { - "l": "4.0", - "x": 18.9167, - "y": 46.3037 - }, - { - "l": "4.0", - "x": 19.0, - "y": 46.2839 - }, - { - "l": "4.0", - "x": 19.0833, - "y": 46.2682 - }, - { - "l": "4.0", - "x": 19.1667, - "y": 46.2498 - }, - { - "l": "4.0", - "x": 19.25, - "y": 46.2298 - }, - { - "l": "4.0", - "x": 19.3333, - "y": 46.2159 - }, - { - "l": "4.0", - "x": 19.4167, - "y": 46.1951 - }, - { - "l": "4.0", - "x": 19.5, - "y": 46.177 - }, - { - "l": "4.0", - "x": 19.5833, - "y": 46.1819 - }, - { - "l": "4.0", - "x": 19.6667, - "y": 46.1627 - }, - { - "l": "4.0", - "x": 19.75, - "y": 46.1421 - }, - { - "l": "4.0", - "x": 19.8333, - "y": 46.1273 - }, - { - "l": "4.0", - "x": 19.9167, - "y": 46.1099 - }, - { - "l": "4.0", - "x": 20.0, - "y": 46.094 - } - ] - } - ] - }, - "female": null - } - } - ] -}; - -var ukwhoBMIFemaleSDSData = { - "centile_data": [ - { - "uk90_preterm": { - "male": null, - "female": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -5.0, - "centile": 2.866515718791933e-05, - "data": null - }, - { - "sds": -4.0, - "centile": 0.003167124183311986, - "data": null - }, - { - "sds": 3.0, - "centile": 99.86501019683699, - "data": null - }, - { - "sds": 3.33, - "centile": 99.95657700796184, - "data": null - }, - { - "sds": 3.67, - "centile": 99.98787247657145, - "data": null - }, - { - "sds": 4.0, - "centile": 99.9968328758167, - "data": null - } - ] - } - } - }, - { - "uk_who_infant": { - "male": null, - "female": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -5.0, - "centile": 2.866515718791933e-05, - "data": [ - { - "l": "-5.0", - "x": 0.0383, - "y": 7.686 - }, - { - "l": "-5.0", - "x": 0.0575, - "y": 8.1297 - }, - { - "l": "-5.0", - "x": 0.0767, - "y": 8.5211 - }, - { - "l": "-5.0", - "x": 0.0958, - "y": 8.8493 - }, - { - "l": "-5.0", - "x": 0.115, - "y": 9.1215 - }, - { - "l": "-5.0", - "x": 0.1342, - "y": 9.3518 - }, - { - "l": "-5.0", - "x": 0.1533, - "y": 9.549 - }, - { - "l": "-5.0", - "x": 0.1725, - "y": 9.7208 - }, - { - "l": "-5.0", - "x": 0.1916, - "y": 9.8704 - }, - { - "l": "-5.0", - "x": 0.2108, - "y": 10.0022 - }, - { - "l": "-5.0", - "x": 0.23, - "y": 10.1183 - }, - { - "l": "-5.0", - "x": 0.2491, - "y": 10.222 - }, - { - "l": "-5.0", - "x": 0.2683, - "y": 10.3129 - }, - { - "l": "-5.0", - "x": 0.2875, - "y": 10.3955 - }, - { - "l": "-5.0", - "x": 0.3066, - "y": 10.4703 - }, - { - "l": "-5.0", - "x": 0.3258, - "y": 10.5379 - }, - { - "l": "-5.0", - "x": 0.345, - "y": 10.5992 - }, - { - "l": "-5.0", - "x": 0.3641, - "y": 10.6545 - }, - { - "l": "-5.0", - "x": 0.3833, - "y": 10.7042 - }, - { - "l": "-5.0", - "x": 0.4025, - "y": 10.7488 - }, - { - "l": "-5.0", - "x": 0.4216, - "y": 10.7889 - }, - { - "l": "-5.0", - "x": 0.4408, - "y": 10.8254 - }, - { - "l": "-5.0", - "x": 0.46, - "y": 10.8577 - }, - { - "l": "-5.0", - "x": 0.4791, - "y": 10.8863 - }, - { - "l": "-5.0", - "x": 0.4983, - "y": 10.9113 - }, - { - "l": "-5.0", - "x": 0.5175, - "y": 10.9331 - }, - { - "l": "-5.0", - "x": 0.5366, - "y": 10.9516 - }, - { - "l": "-5.0", - "x": 0.5558, - "y": 10.9673 - }, - { - "l": "-5.0", - "x": 0.5749, - "y": 10.9801 - }, - { - "l": "-5.0", - "x": 0.5941, - "y": 10.9904 - }, - { - "l": "-5.0", - "x": 0.6133, - "y": 10.9983 - }, - { - "l": "-5.0", - "x": 0.6324, - "y": 11.004 - }, - { - "l": "-5.0", - "x": 0.6516, - "y": 11.0076 - }, - { - "l": "-5.0", - "x": 0.6708, - "y": 11.0094 - }, - { - "l": "-5.0", - "x": 0.6899, - "y": 11.0095 - }, - { - "l": "-5.0", - "x": 0.7091, - "y": 11.008 - }, - { - "l": "-5.0", - "x": 0.7283, - "y": 11.0051 - }, - { - "l": "-5.0", - "x": 0.7474, - "y": 11.0008 - }, - { - "l": "-5.0", - "x": 0.7666, - "y": 10.9954 - }, - { - "l": "-5.0", - "x": 0.7858, - "y": 10.989 - }, - { - "l": "-5.0", - "x": 0.8049, - "y": 10.9816 - }, - { - "l": "-5.0", - "x": 0.8241, - "y": 10.9734 - }, - { - "l": "-5.0", - "x": 0.8433, - "y": 10.9646 - }, - { - "l": "-5.0", - "x": 0.8624, - "y": 10.9553 - }, - { - "l": "-5.0", - "x": 0.8816, - "y": 10.9455 - }, - { - "l": "-5.0", - "x": 0.9008, - "y": 10.9352 - }, - { - "l": "-5.0", - "x": 0.9199, - "y": 10.9247 - }, - { - "l": "-5.0", - "x": 0.9391, - "y": 10.9141 - }, - { - "l": "-5.0", - "x": 0.9582, - "y": 10.9032 - }, - { - "l": "-5.0", - "x": 0.9774, - "y": 10.8923 - }, - { - "l": "-5.0", - "x": 0.9966, - "y": 10.8813 - }, - { - "l": "-5.0", - "x": 1.0157, - "y": 10.8703 - }, - { - "l": "-5.0", - "x": 1.0349, - "y": 10.8593 - }, - { - "l": "-5.0", - "x": 1.0541, - "y": 10.8483 - }, - { - "l": "-5.0", - "x": 1.0732, - "y": 10.8373 - }, - { - "l": "-5.0", - "x": 1.0924, - "y": 10.8265 - }, - { - "l": "-5.0", - "x": 1.1116, - "y": 10.8157 - }, - { - "l": "-5.0", - "x": 1.1307, - "y": 10.805 - }, - { - "l": "-5.0", - "x": 1.1499, - "y": 10.7944 - }, - { - "l": "-5.0", - "x": 1.1691, - "y": 10.784 - }, - { - "l": "-5.0", - "x": 1.1882, - "y": 10.7737 - }, - { - "l": "-5.0", - "x": 1.2074, - "y": 10.7636 - }, - { - "l": "-5.0", - "x": 1.2266, - "y": 10.7536 - }, - { - "l": "-5.0", - "x": 1.2457, - "y": 10.7438 - }, - { - "l": "-5.0", - "x": 1.2649, - "y": 10.7341 - }, - { - "l": "-5.0", - "x": 1.2841, - "y": 10.7247 - }, - { - "l": "-5.0", - "x": 1.3032, - "y": 10.7154 - }, - { - "l": "-5.0", - "x": 1.3224, - "y": 10.7063 - }, - { - "l": "-5.0", - "x": 1.3415, - "y": 10.6974 - }, - { - "l": "-5.0", - "x": 1.3607, - "y": 10.6888 - }, - { - "l": "-5.0", - "x": 1.3799, - "y": 10.6803 - }, - { - "l": "-5.0", - "x": 1.399, - "y": 10.6721 - }, - { - "l": "-5.0", - "x": 1.4182, - "y": 10.6641 - }, - { - "l": "-5.0", - "x": 1.4374, - "y": 10.6563 - }, - { - "l": "-5.0", - "x": 1.4565, - "y": 10.6488 - }, - { - "l": "-5.0", - "x": 1.4757, - "y": 10.6414 - }, - { - "l": "-5.0", - "x": 1.4949, - "y": 10.6343 - }, - { - "l": "-5.0", - "x": 1.514, - "y": 10.6275 - }, - { - "l": "-5.0", - "x": 1.5332, - "y": 10.6208 - }, - { - "l": "-5.0", - "x": 1.5524, - "y": 10.6144 - }, - { - "l": "-5.0", - "x": 1.5715, - "y": 10.6082 - }, - { - "l": "-5.0", - "x": 1.5907, - "y": 10.6022 - }, - { - "l": "-5.0", - "x": 1.6099, - "y": 10.5963 - }, - { - "l": "-5.0", - "x": 1.629, - "y": 10.5907 - }, - { - "l": "-5.0", - "x": 1.6482, - "y": 10.5852 - }, - { - "l": "-5.0", - "x": 1.6674, - "y": 10.5801 - }, - { - "l": "-5.0", - "x": 1.6865, - "y": 10.5752 - }, - { - "l": "-5.0", - "x": 1.7057, - "y": 10.5706 - }, - { - "l": "-5.0", - "x": 1.7248, - "y": 10.5662 - }, - { - "l": "-5.0", - "x": 1.744, - "y": 10.5621 - }, - { - "l": "-5.0", - "x": 1.7632, - "y": 10.5583 - }, - { - "l": "-5.0", - "x": 1.7823, - "y": 10.5546 - }, - { - "l": "-5.0", - "x": 1.8015, - "y": 10.5512 - }, - { - "l": "-5.0", - "x": 1.8207, - "y": 10.5481 - }, - { - "l": "-5.0", - "x": 1.8398, - "y": 10.5453 - }, - { - "l": "-5.0", - "x": 1.859, - "y": 10.5427 - }, - { - "l": "-5.0", - "x": 1.8782, - "y": 10.5404 - }, - { - "l": "-5.0", - "x": 1.8973, - "y": 10.5384 - }, - { - "l": "-5.0", - "x": 1.9165, - "y": 10.5365 - }, - { - "l": "-5.0", - "x": 1.9357, - "y": 10.5351 - }, - { - "l": "-5.0", - "x": 1.9548, - "y": 10.5338 - }, - { - "l": "-5.0", - "x": 1.974, - "y": 10.5324 - }, - { - "l": "-5.0", - "x": 1.9932, - "y": 10.531 - } - ] - }, - { - "sds": -4.0, - "centile": 0.003167124183311986, - "data": [ - { - "l": "-4.0", - "x": 0.0383, - "y": 8.7127 - }, - { - "l": "-4.0", - "x": 0.0575, - "y": 9.1515 - }, - { - "l": "-4.0", - "x": 0.0767, - "y": 9.5461 - }, - { - "l": "-4.0", - "x": 0.0958, - "y": 9.8775 - }, - { - "l": "-4.0", - "x": 0.115, - "y": 10.1514 - }, - { - "l": "-4.0", - "x": 0.1342, - "y": 10.3824 - }, - { - "l": "-4.0", - "x": 0.1533, - "y": 10.5793 - }, - { - "l": "-4.0", - "x": 0.1725, - "y": 10.75 - }, - { - "l": "-4.0", - "x": 0.1916, - "y": 10.8981 - }, - { - "l": "-4.0", - "x": 0.2108, - "y": 11.0277 - }, - { - "l": "-4.0", - "x": 0.23, - "y": 11.1414 - }, - { - "l": "-4.0", - "x": 0.2491, - "y": 11.2422 - }, - { - "l": "-4.0", - "x": 0.2683, - "y": 11.3304 - }, - { - "l": "-4.0", - "x": 0.2875, - "y": 11.4098 - }, - { - "l": "-4.0", - "x": 0.3066, - "y": 11.4812 - }, - { - "l": "-4.0", - "x": 0.3258, - "y": 11.5451 - }, - { - "l": "-4.0", - "x": 0.345, - "y": 11.6027 - }, - { - "l": "-4.0", - "x": 0.3641, - "y": 11.6544 - }, - { - "l": "-4.0", - "x": 0.3833, - "y": 11.7005 - }, - { - "l": "-4.0", - "x": 0.4025, - "y": 11.7414 - }, - { - "l": "-4.0", - "x": 0.4216, - "y": 11.7777 - }, - { - "l": "-4.0", - "x": 0.4408, - "y": 11.8104 - }, - { - "l": "-4.0", - "x": 0.46, - "y": 11.8389 - }, - { - "l": "-4.0", - "x": 0.4791, - "y": 11.8636 - }, - { - "l": "-4.0", - "x": 0.4983, - "y": 11.8846 - }, - { - "l": "-4.0", - "x": 0.5175, - "y": 11.9024 - }, - { - "l": "-4.0", - "x": 0.5366, - "y": 11.9169 - }, - { - "l": "-4.0", - "x": 0.5558, - "y": 11.9284 - }, - { - "l": "-4.0", - "x": 0.5749, - "y": 11.9371 - }, - { - "l": "-4.0", - "x": 0.5941, - "y": 11.9433 - }, - { - "l": "-4.0", - "x": 0.6133, - "y": 11.9471 - }, - { - "l": "-4.0", - "x": 0.6324, - "y": 11.9486 - }, - { - "l": "-4.0", - "x": 0.6516, - "y": 11.948 - }, - { - "l": "-4.0", - "x": 0.6708, - "y": 11.9456 - }, - { - "l": "-4.0", - "x": 0.6899, - "y": 11.9415 - }, - { - "l": "-4.0", - "x": 0.7091, - "y": 11.9358 - }, - { - "l": "-4.0", - "x": 0.7283, - "y": 11.9287 - }, - { - "l": "-4.0", - "x": 0.7474, - "y": 11.9202 - }, - { - "l": "-4.0", - "x": 0.7666, - "y": 11.9107 - }, - { - "l": "-4.0", - "x": 0.7858, - "y": 11.9002 - }, - { - "l": "-4.0", - "x": 0.8049, - "y": 11.8887 - }, - { - "l": "-4.0", - "x": 0.8241, - "y": 11.8765 - }, - { - "l": "-4.0", - "x": 0.8433, - "y": 11.8638 - }, - { - "l": "-4.0", - "x": 0.8624, - "y": 11.8505 - }, - { - "l": "-4.0", - "x": 0.8816, - "y": 11.8368 - }, - { - "l": "-4.0", - "x": 0.9008, - "y": 11.8227 - }, - { - "l": "-4.0", - "x": 0.9199, - "y": 11.8085 - }, - { - "l": "-4.0", - "x": 0.9391, - "y": 11.7941 - }, - { - "l": "-4.0", - "x": 0.9582, - "y": 11.7797 - }, - { - "l": "-4.0", - "x": 0.9774, - "y": 11.7652 - }, - { - "l": "-4.0", - "x": 0.9966, - "y": 11.7506 - }, - { - "l": "-4.0", - "x": 1.0157, - "y": 11.7362 - }, - { - "l": "-4.0", - "x": 1.0349, - "y": 11.7218 - }, - { - "l": "-4.0", - "x": 1.0541, - "y": 11.7075 - }, - { - "l": "-4.0", - "x": 1.0732, - "y": 11.6933 - }, - { - "l": "-4.0", - "x": 1.0924, - "y": 11.6792 - }, - { - "l": "-4.0", - "x": 1.1116, - "y": 11.6653 - }, - { - "l": "-4.0", - "x": 1.1307, - "y": 11.6515 - }, - { - "l": "-4.0", - "x": 1.1499, - "y": 11.638 - }, - { - "l": "-4.0", - "x": 1.1691, - "y": 11.6246 - }, - { - "l": "-4.0", - "x": 1.1882, - "y": 11.6114 - }, - { - "l": "-4.0", - "x": 1.2074, - "y": 11.5984 - }, - { - "l": "-4.0", - "x": 1.2266, - "y": 11.5857 - }, - { - "l": "-4.0", - "x": 1.2457, - "y": 11.5731 - }, - { - "l": "-4.0", - "x": 1.2649, - "y": 11.5608 - }, - { - "l": "-4.0", - "x": 1.2841, - "y": 11.5487 - }, - { - "l": "-4.0", - "x": 1.3032, - "y": 11.5369 - }, - { - "l": "-4.0", - "x": 1.3224, - "y": 11.5253 - }, - { - "l": "-4.0", - "x": 1.3415, - "y": 11.514 - }, - { - "l": "-4.0", - "x": 1.3607, - "y": 11.5029 - }, - { - "l": "-4.0", - "x": 1.3799, - "y": 11.4921 - }, - { - "l": "-4.0", - "x": 1.399, - "y": 11.4816 - }, - { - "l": "-4.0", - "x": 1.4182, - "y": 11.4713 - }, - { - "l": "-4.0", - "x": 1.4374, - "y": 11.4613 - }, - { - "l": "-4.0", - "x": 1.4565, - "y": 11.4516 - }, - { - "l": "-4.0", - "x": 1.4757, - "y": 11.4421 - }, - { - "l": "-4.0", - "x": 1.4949, - "y": 11.4329 - }, - { - "l": "-4.0", - "x": 1.514, - "y": 11.424 - }, - { - "l": "-4.0", - "x": 1.5332, - "y": 11.4154 - }, - { - "l": "-4.0", - "x": 1.5524, - "y": 11.407 - }, - { - "l": "-4.0", - "x": 1.5715, - "y": 11.3989 - }, - { - "l": "-4.0", - "x": 1.5907, - "y": 11.391 - }, - { - "l": "-4.0", - "x": 1.6099, - "y": 11.3833 - }, - { - "l": "-4.0", - "x": 1.629, - "y": 11.3758 - }, - { - "l": "-4.0", - "x": 1.6482, - "y": 11.3687 - }, - { - "l": "-4.0", - "x": 1.6674, - "y": 11.3618 - }, - { - "l": "-4.0", - "x": 1.6865, - "y": 11.3553 - }, - { - "l": "-4.0", - "x": 1.7057, - "y": 11.349 - }, - { - "l": "-4.0", - "x": 1.7248, - "y": 11.343 - }, - { - "l": "-4.0", - "x": 1.744, - "y": 11.3373 - }, - { - "l": "-4.0", - "x": 1.7632, - "y": 11.3319 - }, - { - "l": "-4.0", - "x": 1.7823, - "y": 11.3268 - }, - { - "l": "-4.0", - "x": 1.8015, - "y": 11.322 - }, - { - "l": "-4.0", - "x": 1.8207, - "y": 11.3174 - }, - { - "l": "-4.0", - "x": 1.8398, - "y": 11.3132 - }, - { - "l": "-4.0", - "x": 1.859, - "y": 11.3092 - }, - { - "l": "-4.0", - "x": 1.8782, - "y": 11.3056 - }, - { - "l": "-4.0", - "x": 1.8973, - "y": 11.3022 - }, - { - "l": "-4.0", - "x": 1.9165, - "y": 11.2991 - }, - { - "l": "-4.0", - "x": 1.9357, - "y": 11.2966 - }, - { - "l": "-4.0", - "x": 1.9548, - "y": 11.294 - }, - { - "l": "-4.0", - "x": 1.974, - "y": 11.2915 - }, - { - "l": "-4.0", - "x": 1.9932, - "y": 11.289 - } - ] - }, - { - "sds": 3.0, - "centile": 99.86501019683699, - "data": [ - { - "l": "3.0", - "x": 0.0383, - "y": 17.6626 - }, - { - "l": "3.0", - "x": 0.0575, - "y": 18.3278 - }, - { - "l": "3.0", - "x": 0.0767, - "y": 18.9526 - }, - { - "l": "3.0", - "x": 0.0958, - "y": 19.4774 - }, - { - "l": "3.0", - "x": 0.115, - "y": 19.9063 - }, - { - "l": "3.0", - "x": 0.1342, - "y": 20.2643 - }, - { - "l": "3.0", - "x": 0.1533, - "y": 20.5642 - }, - { - "l": "3.0", - "x": 0.1725, - "y": 20.8211 - }, - { - "l": "3.0", - "x": 0.1916, - "y": 21.0416 - }, - { - "l": "3.0", - "x": 0.2108, - "y": 21.2295 - }, - { - "l": "3.0", - "x": 0.23, - "y": 21.3922 - }, - { - "l": "3.0", - "x": 0.2491, - "y": 21.5329 - }, - { - "l": "3.0", - "x": 0.2683, - "y": 21.6543 - }, - { - "l": "3.0", - "x": 0.2875, - "y": 21.7606 - }, - { - "l": "3.0", - "x": 0.3066, - "y": 21.8533 - }, - { - "l": "3.0", - "x": 0.3258, - "y": 21.9338 - }, - { - "l": "3.0", - "x": 0.345, - "y": 22.0049 - }, - { - "l": "3.0", - "x": 0.3641, - "y": 22.0672 - }, - { - "l": "3.0", - "x": 0.3833, - "y": 22.1205 - }, - { - "l": "3.0", - "x": 0.4025, - "y": 22.1655 - }, - { - "l": "3.0", - "x": 0.4216, - "y": 22.2033 - }, - { - "l": "3.0", - "x": 0.4408, - "y": 22.2349 - }, - { - "l": "3.0", - "x": 0.46, - "y": 22.26 - }, - { - "l": "3.0", - "x": 0.4791, - "y": 22.279 - }, - { - "l": "3.0", - "x": 0.4983, - "y": 22.2921 - }, - { - "l": "3.0", - "x": 0.5175, - "y": 22.3 - }, - { - "l": "3.0", - "x": 0.5366, - "y": 22.3028 - }, - { - "l": "3.0", - "x": 0.5558, - "y": 22.3008 - }, - { - "l": "3.0", - "x": 0.5749, - "y": 22.2945 - }, - { - "l": "3.0", - "x": 0.5941, - "y": 22.2843 - }, - { - "l": "3.0", - "x": 0.6133, - "y": 22.2705 - }, - { - "l": "3.0", - "x": 0.6324, - "y": 22.2533 - }, - { - "l": "3.0", - "x": 0.6516, - "y": 22.2328 - }, - { - "l": "3.0", - "x": 0.6708, - "y": 22.2093 - }, - { - "l": "3.0", - "x": 0.6899, - "y": 22.1832 - }, - { - "l": "3.0", - "x": 0.7091, - "y": 22.1547 - }, - { - "l": "3.0", - "x": 0.7283, - "y": 22.124 - }, - { - "l": "3.0", - "x": 0.7474, - "y": 22.0914 - }, - { - "l": "3.0", - "x": 0.7666, - "y": 22.0572 - }, - { - "l": "3.0", - "x": 0.7858, - "y": 22.0217 - }, - { - "l": "3.0", - "x": 0.8049, - "y": 21.985 - }, - { - "l": "3.0", - "x": 0.8241, - "y": 21.9474 - }, - { - "l": "3.0", - "x": 0.8433, - "y": 21.9092 - }, - { - "l": "3.0", - "x": 0.8624, - "y": 21.8706 - }, - { - "l": "3.0", - "x": 0.8816, - "y": 21.8316 - }, - { - "l": "3.0", - "x": 0.9008, - "y": 21.7924 - }, - { - "l": "3.0", - "x": 0.9199, - "y": 21.753 - }, - { - "l": "3.0", - "x": 0.9391, - "y": 21.7137 - }, - { - "l": "3.0", - "x": 0.9582, - "y": 21.6745 - }, - { - "l": "3.0", - "x": 0.9774, - "y": 21.6354 - }, - { - "l": "3.0", - "x": 0.9966, - "y": 21.5965 - }, - { - "l": "3.0", - "x": 1.0157, - "y": 21.5581 - }, - { - "l": "3.0", - "x": 1.0349, - "y": 21.52 - }, - { - "l": "3.0", - "x": 1.0541, - "y": 21.4823 - }, - { - "l": "3.0", - "x": 1.0732, - "y": 21.4451 - }, - { - "l": "3.0", - "x": 1.0924, - "y": 21.4084 - }, - { - "l": "3.0", - "x": 1.1116, - "y": 21.3722 - }, - { - "l": "3.0", - "x": 1.1307, - "y": 21.3365 - }, - { - "l": "3.0", - "x": 1.1499, - "y": 21.3014 - }, - { - "l": "3.0", - "x": 1.1691, - "y": 21.2668 - }, - { - "l": "3.0", - "x": 1.1882, - "y": 21.2329 - }, - { - "l": "3.0", - "x": 1.2074, - "y": 21.1995 - }, - { - "l": "3.0", - "x": 1.2266, - "y": 21.1668 - }, - { - "l": "3.0", - "x": 1.2457, - "y": 21.1346 - }, - { - "l": "3.0", - "x": 1.2649, - "y": 21.1032 - }, - { - "l": "3.0", - "x": 1.2841, - "y": 21.0723 - }, - { - "l": "3.0", - "x": 1.3032, - "y": 21.0421 - }, - { - "l": "3.0", - "x": 1.3224, - "y": 21.0125 - }, - { - "l": "3.0", - "x": 1.3415, - "y": 20.9835 - }, - { - "l": "3.0", - "x": 1.3607, - "y": 20.9551 - }, - { - "l": "3.0", - "x": 1.3799, - "y": 20.9273 - }, - { - "l": "3.0", - "x": 1.399, - "y": 20.9001 - }, - { - "l": "3.0", - "x": 1.4182, - "y": 20.8735 - }, - { - "l": "3.0", - "x": 1.4374, - "y": 20.8475 - }, - { - "l": "3.0", - "x": 1.4565, - "y": 20.8221 - }, - { - "l": "3.0", - "x": 1.4757, - "y": 20.7973 - }, - { - "l": "3.0", - "x": 1.4949, - "y": 20.7731 - }, - { - "l": "3.0", - "x": 1.514, - "y": 20.7495 - }, - { - "l": "3.0", - "x": 1.5332, - "y": 20.7265 - }, - { - "l": "3.0", - "x": 1.5524, - "y": 20.7041 - }, - { - "l": "3.0", - "x": 1.5715, - "y": 20.6823 - }, - { - "l": "3.0", - "x": 1.5907, - "y": 20.6612 - }, - { - "l": "3.0", - "x": 1.6099, - "y": 20.6407 - }, - { - "l": "3.0", - "x": 1.629, - "y": 20.6208 - }, - { - "l": "3.0", - "x": 1.6482, - "y": 20.6015 - }, - { - "l": "3.0", - "x": 1.6674, - "y": 20.5827 - }, - { - "l": "3.0", - "x": 1.6865, - "y": 20.5644 - }, - { - "l": "3.0", - "x": 1.7057, - "y": 20.5467 - }, - { - "l": "3.0", - "x": 1.7248, - "y": 20.5296 - }, - { - "l": "3.0", - "x": 1.744, - "y": 20.5131 - }, - { - "l": "3.0", - "x": 1.7632, - "y": 20.4972 - }, - { - "l": "3.0", - "x": 1.7823, - "y": 20.482 - }, - { - "l": "3.0", - "x": 1.8015, - "y": 20.4673 - }, - { - "l": "3.0", - "x": 1.8207, - "y": 20.4532 - }, - { - "l": "3.0", - "x": 1.8398, - "y": 20.4396 - }, - { - "l": "3.0", - "x": 1.859, - "y": 20.4266 - }, - { - "l": "3.0", - "x": 1.8782, - "y": 20.4141 - }, - { - "l": "3.0", - "x": 1.8973, - "y": 20.4022 - }, - { - "l": "3.0", - "x": 1.9165, - "y": 20.3909 - }, - { - "l": "3.0", - "x": 1.9357, - "y": 20.3812 - }, - { - "l": "3.0", - "x": 1.9548, - "y": 20.3715 - }, - { - "l": "3.0", - "x": 1.974, - "y": 20.3618 - }, - { - "l": "3.0", - "x": 1.9932, - "y": 20.3521 - } - ] - }, - { - "sds": 3.33, - "centile": 99.95657700796184, - "data": [ - { - "l": "3.33", - "x": 0.0383, - "y": 18.1604 - }, - { - "l": "3.33", - "x": 0.0575, - "y": 18.8514 - }, - { - "l": "3.33", - "x": 0.0767, - "y": 19.4998 - }, - { - "l": "3.33", - "x": 0.0958, - "y": 20.0448 - }, - { - "l": "3.33", - "x": 0.115, - "y": 20.4906 - }, - { - "l": "3.33", - "x": 0.1342, - "y": 20.863 - }, - { - "l": "3.33", - "x": 0.1533, - "y": 21.1754 - }, - { - "l": "3.33", - "x": 0.1725, - "y": 21.4433 - }, - { - "l": "3.33", - "x": 0.1916, - "y": 21.6735 - }, - { - "l": "3.33", - "x": 0.2108, - "y": 21.87 - }, - { - "l": "3.33", - "x": 0.23, - "y": 22.0404 - }, - { - "l": "3.33", - "x": 0.2491, - "y": 22.188 - }, - { - "l": "3.33", - "x": 0.2683, - "y": 22.3154 - }, - { - "l": "3.33", - "x": 0.2875, - "y": 22.4272 - }, - { - "l": "3.33", - "x": 0.3066, - "y": 22.525 - }, - { - "l": "3.33", - "x": 0.3258, - "y": 22.6103 - }, - { - "l": "3.33", - "x": 0.345, - "y": 22.6858 - }, - { - "l": "3.33", - "x": 0.3641, - "y": 22.752 - }, - { - "l": "3.33", - "x": 0.3833, - "y": 22.8089 - }, - { - "l": "3.33", - "x": 0.4025, - "y": 22.8572 - }, - { - "l": "3.33", - "x": 0.4216, - "y": 22.8979 - }, - { - "l": "3.33", - "x": 0.4408, - "y": 22.9322 - }, - { - "l": "3.33", - "x": 0.46, - "y": 22.9597 - }, - { - "l": "3.33", - "x": 0.4791, - "y": 22.9808 - }, - { - "l": "3.33", - "x": 0.4983, - "y": 22.9959 - }, - { - "l": "3.33", - "x": 0.5175, - "y": 23.0055 - }, - { - "l": "3.33", - "x": 0.5366, - "y": 23.0098 - }, - { - "l": "3.33", - "x": 0.5558, - "y": 23.0092 - }, - { - "l": "3.33", - "x": 0.5749, - "y": 23.0041 - }, - { - "l": "3.33", - "x": 0.5941, - "y": 22.9949 - }, - { - "l": "3.33", - "x": 0.6133, - "y": 22.982 - }, - { - "l": "3.33", - "x": 0.6324, - "y": 22.9654 - }, - { - "l": "3.33", - "x": 0.6516, - "y": 22.9455 - }, - { - "l": "3.33", - "x": 0.6708, - "y": 22.9225 - }, - { - "l": "3.33", - "x": 0.6899, - "y": 22.8967 - }, - { - "l": "3.33", - "x": 0.7091, - "y": 22.8683 - }, - { - "l": "3.33", - "x": 0.7283, - "y": 22.8377 - }, - { - "l": "3.33", - "x": 0.7474, - "y": 22.8051 - }, - { - "l": "3.33", - "x": 0.7666, - "y": 22.7709 - }, - { - "l": "3.33", - "x": 0.7858, - "y": 22.7353 - }, - { - "l": "3.33", - "x": 0.8049, - "y": 22.6984 - }, - { - "l": "3.33", - "x": 0.8241, - "y": 22.6605 - }, - { - "l": "3.33", - "x": 0.8433, - "y": 22.622 - }, - { - "l": "3.33", - "x": 0.8624, - "y": 22.5831 - }, - { - "l": "3.33", - "x": 0.8816, - "y": 22.5438 - }, - { - "l": "3.33", - "x": 0.9008, - "y": 22.5042 - }, - { - "l": "3.33", - "x": 0.9199, - "y": 22.4644 - }, - { - "l": "3.33", - "x": 0.9391, - "y": 22.4247 - }, - { - "l": "3.33", - "x": 0.9582, - "y": 22.385 - }, - { - "l": "3.33", - "x": 0.9774, - "y": 22.3454 - }, - { - "l": "3.33", - "x": 0.9966, - "y": 22.306 - }, - { - "l": "3.33", - "x": 1.0157, - "y": 22.2671 - }, - { - "l": "3.33", - "x": 1.0349, - "y": 22.2286 - }, - { - "l": "3.33", - "x": 1.0541, - "y": 22.1904 - }, - { - "l": "3.33", - "x": 1.0732, - "y": 22.1526 - }, - { - "l": "3.33", - "x": 1.0924, - "y": 22.1154 - }, - { - "l": "3.33", - "x": 1.1116, - "y": 22.0787 - }, - { - "l": "3.33", - "x": 1.1307, - "y": 22.0426 - }, - { - "l": "3.33", - "x": 1.1499, - "y": 22.007 - }, - { - "l": "3.33", - "x": 1.1691, - "y": 21.9719 - }, - { - "l": "3.33", - "x": 1.1882, - "y": 21.9375 - }, - { - "l": "3.33", - "x": 1.2074, - "y": 21.9037 - }, - { - "l": "3.33", - "x": 1.2266, - "y": 21.8705 - }, - { - "l": "3.33", - "x": 1.2457, - "y": 21.838 - }, - { - "l": "3.33", - "x": 1.2649, - "y": 21.8061 - }, - { - "l": "3.33", - "x": 1.2841, - "y": 21.7749 - }, - { - "l": "3.33", - "x": 1.3032, - "y": 21.7443 - }, - { - "l": "3.33", - "x": 1.3224, - "y": 21.7143 - }, - { - "l": "3.33", - "x": 1.3415, - "y": 21.6849 - }, - { - "l": "3.33", - "x": 1.3607, - "y": 21.6561 - }, - { - "l": "3.33", - "x": 1.3799, - "y": 21.628 - }, - { - "l": "3.33", - "x": 1.399, - "y": 21.6004 - }, - { - "l": "3.33", - "x": 1.4182, - "y": 21.5735 - }, - { - "l": "3.33", - "x": 1.4374, - "y": 21.5471 - }, - { - "l": "3.33", - "x": 1.4565, - "y": 21.5214 - }, - { - "l": "3.33", - "x": 1.4757, - "y": 21.4964 - }, - { - "l": "3.33", - "x": 1.4949, - "y": 21.4719 - }, - { - "l": "3.33", - "x": 1.514, - "y": 21.448 - }, - { - "l": "3.33", - "x": 1.5332, - "y": 21.4247 - }, - { - "l": "3.33", - "x": 1.5524, - "y": 21.4021 - }, - { - "l": "3.33", - "x": 1.5715, - "y": 21.38 - }, - { - "l": "3.33", - "x": 1.5907, - "y": 21.3587 - }, - { - "l": "3.33", - "x": 1.6099, - "y": 21.338 - }, - { - "l": "3.33", - "x": 1.629, - "y": 21.3179 - }, - { - "l": "3.33", - "x": 1.6482, - "y": 21.2985 - }, - { - "l": "3.33", - "x": 1.6674, - "y": 21.2796 - }, - { - "l": "3.33", - "x": 1.6865, - "y": 21.2612 - }, - { - "l": "3.33", - "x": 1.7057, - "y": 21.2433 - }, - { - "l": "3.33", - "x": 1.7248, - "y": 21.2261 - }, - { - "l": "3.33", - "x": 1.744, - "y": 21.2094 - }, - { - "l": "3.33", - "x": 1.7632, - "y": 21.1935 - }, - { - "l": "3.33", - "x": 1.7823, - "y": 21.1782 - }, - { - "l": "3.33", - "x": 1.8015, - "y": 21.1634 - }, - { - "l": "3.33", - "x": 1.8207, - "y": 21.1493 - }, - { - "l": "3.33", - "x": 1.8398, - "y": 21.1357 - }, - { - "l": "3.33", - "x": 1.859, - "y": 21.1226 - }, - { - "l": "3.33", - "x": 1.8782, - "y": 21.1101 - }, - { - "l": "3.33", - "x": 1.8973, - "y": 21.0982 - }, - { - "l": "3.33", - "x": 1.9165, - "y": 21.0869 - }, - { - "l": "3.33", - "x": 1.9357, - "y": 21.0773 - }, - { - "l": "3.33", - "x": 1.9548, - "y": 21.0677 - }, - { - "l": "3.33", - "x": 1.974, - "y": 21.0581 - }, - { - "l": "3.33", - "x": 1.9932, - "y": 21.0484 - } - ] - }, - { - "sds": 3.67, - "centile": 99.98787247657145, - "data": [ - { - "l": "3.67", - "x": 0.0383, - "y": 18.6803 - }, - { - "l": "3.67", - "x": 0.0575, - "y": 19.3997 - }, - { - "l": "3.67", - "x": 0.0767, - "y": 20.0741 - }, - { - "l": "3.67", - "x": 0.0958, - "y": 20.6412 - }, - { - "l": "3.67", - "x": 0.115, - "y": 21.1055 - }, - { - "l": "3.67", - "x": 0.1342, - "y": 21.494 - }, - { - "l": "3.67", - "x": 0.1533, - "y": 21.8203 - }, - { - "l": "3.67", - "x": 0.1725, - "y": 22.1004 - }, - { - "l": "3.67", - "x": 0.1916, - "y": 22.3417 - }, - { - "l": "3.67", - "x": 0.2108, - "y": 22.5478 - }, - { - "l": "3.67", - "x": 0.23, - "y": 22.727 - }, - { - "l": "3.67", - "x": 0.2491, - "y": 22.8824 - }, - { - "l": "3.67", - "x": 0.2683, - "y": 23.0166 - }, - { - "l": "3.67", - "x": 0.2875, - "y": 23.1349 - }, - { - "l": "3.67", - "x": 0.3066, - "y": 23.2387 - }, - { - "l": "3.67", - "x": 0.3258, - "y": 23.3295 - }, - { - "l": "3.67", - "x": 0.345, - "y": 23.41 - }, - { - "l": "3.67", - "x": 0.3641, - "y": 23.4808 - }, - { - "l": "3.67", - "x": 0.3833, - "y": 23.5419 - }, - { - "l": "3.67", - "x": 0.4025, - "y": 23.5941 - }, - { - "l": "3.67", - "x": 0.4216, - "y": 23.6383 - }, - { - "l": "3.67", - "x": 0.4408, - "y": 23.6759 - }, - { - "l": "3.67", - "x": 0.46, - "y": 23.7064 - }, - { - "l": "3.67", - "x": 0.4791, - "y": 23.7302 - }, - { - "l": "3.67", - "x": 0.4983, - "y": 23.7477 - }, - { - "l": "3.67", - "x": 0.5175, - "y": 23.7595 - }, - { - "l": "3.67", - "x": 0.5366, - "y": 23.7658 - }, - { - "l": "3.67", - "x": 0.5558, - "y": 23.7669 - }, - { - "l": "3.67", - "x": 0.5749, - "y": 23.7634 - }, - { - "l": "3.67", - "x": 0.5941, - "y": 23.7556 - }, - { - "l": "3.67", - "x": 0.6133, - "y": 23.7438 - }, - { - "l": "3.67", - "x": 0.6324, - "y": 23.7283 - }, - { - "l": "3.67", - "x": 0.6516, - "y": 23.7093 - }, - { - "l": "3.67", - "x": 0.6708, - "y": 23.6871 - }, - { - "l": "3.67", - "x": 0.6899, - "y": 23.6619 - }, - { - "l": "3.67", - "x": 0.7091, - "y": 23.634 - }, - { - "l": "3.67", - "x": 0.7283, - "y": 23.6038 - }, - { - "l": "3.67", - "x": 0.7474, - "y": 23.5715 - }, - { - "l": "3.67", - "x": 0.7666, - "y": 23.5374 - }, - { - "l": "3.67", - "x": 0.7858, - "y": 23.5019 - }, - { - "l": "3.67", - "x": 0.8049, - "y": 23.465 - }, - { - "l": "3.67", - "x": 0.8241, - "y": 23.4271 - }, - { - "l": "3.67", - "x": 0.8433, - "y": 23.3885 - }, - { - "l": "3.67", - "x": 0.8624, - "y": 23.3495 - }, - { - "l": "3.67", - "x": 0.8816, - "y": 23.3101 - }, - { - "l": "3.67", - "x": 0.9008, - "y": 23.2703 - }, - { - "l": "3.67", - "x": 0.9199, - "y": 23.2303 - }, - { - "l": "3.67", - "x": 0.9391, - "y": 23.1903 - }, - { - "l": "3.67", - "x": 0.9582, - "y": 23.1503 - }, - { - "l": "3.67", - "x": 0.9774, - "y": 23.1104 - }, - { - "l": "3.67", - "x": 0.9966, - "y": 23.0708 - }, - { - "l": "3.67", - "x": 1.0157, - "y": 23.0315 - }, - { - "l": "3.67", - "x": 1.0349, - "y": 22.9926 - }, - { - "l": "3.67", - "x": 1.0541, - "y": 22.9541 - }, - { - "l": "3.67", - "x": 1.0732, - "y": 22.9161 - }, - { - "l": "3.67", - "x": 1.0924, - "y": 22.8785 - }, - { - "l": "3.67", - "x": 1.1116, - "y": 22.8414 - }, - { - "l": "3.67", - "x": 1.1307, - "y": 22.8049 - }, - { - "l": "3.67", - "x": 1.1499, - "y": 22.769 - }, - { - "l": "3.67", - "x": 1.1691, - "y": 22.7336 - }, - { - "l": "3.67", - "x": 1.1882, - "y": 22.6989 - }, - { - "l": "3.67", - "x": 1.2074, - "y": 22.6648 - }, - { - "l": "3.67", - "x": 1.2266, - "y": 22.6313 - }, - { - "l": "3.67", - "x": 1.2457, - "y": 22.5984 - }, - { - "l": "3.67", - "x": 1.2649, - "y": 22.5663 - }, - { - "l": "3.67", - "x": 1.2841, - "y": 22.5348 - }, - { - "l": "3.67", - "x": 1.3032, - "y": 22.5039 - }, - { - "l": "3.67", - "x": 1.3224, - "y": 22.4737 - }, - { - "l": "3.67", - "x": 1.3415, - "y": 22.4441 - }, - { - "l": "3.67", - "x": 1.3607, - "y": 22.4151 - }, - { - "l": "3.67", - "x": 1.3799, - "y": 22.3866 - }, - { - "l": "3.67", - "x": 1.399, - "y": 22.3589 - }, - { - "l": "3.67", - "x": 1.4182, - "y": 22.3317 - }, - { - "l": "3.67", - "x": 1.4374, - "y": 22.3052 - }, - { - "l": "3.67", - "x": 1.4565, - "y": 22.2793 - }, - { - "l": "3.67", - "x": 1.4757, - "y": 22.254 - }, - { - "l": "3.67", - "x": 1.4949, - "y": 22.2294 - }, - { - "l": "3.67", - "x": 1.514, - "y": 22.2053 - }, - { - "l": "3.67", - "x": 1.5332, - "y": 22.1819 - }, - { - "l": "3.67", - "x": 1.5524, - "y": 22.1591 - }, - { - "l": "3.67", - "x": 1.5715, - "y": 22.137 - }, - { - "l": "3.67", - "x": 1.5907, - "y": 22.1155 - }, - { - "l": "3.67", - "x": 1.6099, - "y": 22.0948 - }, - { - "l": "3.67", - "x": 1.629, - "y": 22.0746 - }, - { - "l": "3.67", - "x": 1.6482, - "y": 22.0551 - }, - { - "l": "3.67", - "x": 1.6674, - "y": 22.0362 - }, - { - "l": "3.67", - "x": 1.6865, - "y": 22.0178 - }, - { - "l": "3.67", - "x": 1.7057, - "y": 21.9999 - }, - { - "l": "3.67", - "x": 1.7248, - "y": 21.9827 - }, - { - "l": "3.67", - "x": 1.744, - "y": 21.966 - }, - { - "l": "3.67", - "x": 1.7632, - "y": 21.9501 - }, - { - "l": "3.67", - "x": 1.7823, - "y": 21.9348 - }, - { - "l": "3.67", - "x": 1.8015, - "y": 21.9202 - }, - { - "l": "3.67", - "x": 1.8207, - "y": 21.9061 - }, - { - "l": "3.67", - "x": 1.8398, - "y": 21.8926 - }, - { - "l": "3.67", - "x": 1.859, - "y": 21.8796 - }, - { - "l": "3.67", - "x": 1.8782, - "y": 21.8672 - }, - { - "l": "3.67", - "x": 1.8973, - "y": 21.8554 - }, - { - "l": "3.67", - "x": 1.9165, - "y": 21.8443 - }, - { - "l": "3.67", - "x": 1.9357, - "y": 21.8348 - }, - { - "l": "3.67", - "x": 1.9548, - "y": 21.8254 - }, - { - "l": "3.67", - "x": 1.974, - "y": 21.816 - }, - { - "l": "3.67", - "x": 1.9932, - "y": 21.8065 - } - ] - }, - { - "sds": 4.0, - "centile": 99.9968328758167, - "data": [ - { - "l": "4.0", - "x": 0.0383, - "y": 19.1919 - }, - { - "l": "4.0", - "x": 0.0575, - "y": 19.9406 - }, - { - "l": "4.0", - "x": 0.0767, - "y": 20.6416 - }, - { - "l": "4.0", - "x": 0.0958, - "y": 21.2315 - }, - { - "l": "4.0", - "x": 0.115, - "y": 21.7152 - }, - { - "l": "4.0", - "x": 0.1342, - "y": 22.1204 - }, - { - "l": "4.0", - "x": 0.1533, - "y": 22.4612 - }, - { - "l": "4.0", - "x": 0.1725, - "y": 22.7543 - }, - { - "l": "4.0", - "x": 0.1916, - "y": 23.0071 - }, - { - "l": "4.0", - "x": 0.2108, - "y": 23.2235 - }, - { - "l": "4.0", - "x": 0.23, - "y": 23.412 - }, - { - "l": "4.0", - "x": 0.2491, - "y": 23.5758 - }, - { - "l": "4.0", - "x": 0.2683, - "y": 23.7173 - }, - { - "l": "4.0", - "x": 0.2875, - "y": 23.8425 - }, - { - "l": "4.0", - "x": 0.3066, - "y": 23.9527 - }, - { - "l": "4.0", - "x": 0.3258, - "y": 24.0496 - }, - { - "l": "4.0", - "x": 0.345, - "y": 24.1356 - }, - { - "l": "4.0", - "x": 0.3641, - "y": 24.2116 - }, - { - "l": "4.0", - "x": 0.3833, - "y": 24.2773 - }, - { - "l": "4.0", - "x": 0.4025, - "y": 24.3338 - }, - { - "l": "4.0", - "x": 0.4216, - "y": 24.382 - }, - { - "l": "4.0", - "x": 0.4408, - "y": 24.4233 - }, - { - "l": "4.0", - "x": 0.46, - "y": 24.4571 - }, - { - "l": "4.0", - "x": 0.4791, - "y": 24.484 - }, - { - "l": "4.0", - "x": 0.4983, - "y": 24.5044 - }, - { - "l": "4.0", - "x": 0.5175, - "y": 24.5187 - }, - { - "l": "4.0", - "x": 0.5366, - "y": 24.5273 - }, - { - "l": "4.0", - "x": 0.5558, - "y": 24.5306 - }, - { - "l": "4.0", - "x": 0.5749, - "y": 24.5289 - }, - { - "l": "4.0", - "x": 0.5941, - "y": 24.5228 - }, - { - "l": "4.0", - "x": 0.6133, - "y": 24.5127 - }, - { - "l": "4.0", - "x": 0.6324, - "y": 24.4985 - }, - { - "l": "4.0", - "x": 0.6516, - "y": 24.4807 - }, - { - "l": "4.0", - "x": 0.6708, - "y": 24.4596 - }, - { - "l": "4.0", - "x": 0.6899, - "y": 24.4353 - }, - { - "l": "4.0", - "x": 0.7091, - "y": 24.4082 - }, - { - "l": "4.0", - "x": 0.7283, - "y": 24.3786 - }, - { - "l": "4.0", - "x": 0.7474, - "y": 24.3468 - }, - { - "l": "4.0", - "x": 0.7666, - "y": 24.3133 - }, - { - "l": "4.0", - "x": 0.7858, - "y": 24.2781 - }, - { - "l": "4.0", - "x": 0.8049, - "y": 24.2415 - }, - { - "l": "4.0", - "x": 0.8241, - "y": 24.2038 - }, - { - "l": "4.0", - "x": 0.8433, - "y": 24.1654 - }, - { - "l": "4.0", - "x": 0.8624, - "y": 24.1266 - }, - { - "l": "4.0", - "x": 0.8816, - "y": 24.0872 - }, - { - "l": "4.0", - "x": 0.9008, - "y": 24.0474 - }, - { - "l": "4.0", - "x": 0.9199, - "y": 24.0074 - }, - { - "l": "4.0", - "x": 0.9391, - "y": 23.9674 - }, - { - "l": "4.0", - "x": 0.9582, - "y": 23.9274 - }, - { - "l": "4.0", - "x": 0.9774, - "y": 23.8874 - }, - { - "l": "4.0", - "x": 0.9966, - "y": 23.8477 - }, - { - "l": "4.0", - "x": 1.0157, - "y": 23.8083 - }, - { - "l": "4.0", - "x": 1.0349, - "y": 23.7693 - }, - { - "l": "4.0", - "x": 1.0541, - "y": 23.7307 - }, - { - "l": "4.0", - "x": 1.0732, - "y": 23.6924 - }, - { - "l": "4.0", - "x": 1.0924, - "y": 23.6547 - }, - { - "l": "4.0", - "x": 1.1116, - "y": 23.6175 - }, - { - "l": "4.0", - "x": 1.1307, - "y": 23.5809 - }, - { - "l": "4.0", - "x": 1.1499, - "y": 23.5447 - }, - { - "l": "4.0", - "x": 1.1691, - "y": 23.5092 - }, - { - "l": "4.0", - "x": 1.1882, - "y": 23.4743 - }, - { - "l": "4.0", - "x": 1.2074, - "y": 23.4401 - }, - { - "l": "4.0", - "x": 1.2266, - "y": 23.4065 - }, - { - "l": "4.0", - "x": 1.2457, - "y": 23.3735 - }, - { - "l": "4.0", - "x": 1.2649, - "y": 23.3412 - }, - { - "l": "4.0", - "x": 1.2841, - "y": 23.3097 - }, - { - "l": "4.0", - "x": 1.3032, - "y": 23.2787 - }, - { - "l": "4.0", - "x": 1.3224, - "y": 23.2484 - }, - { - "l": "4.0", - "x": 1.3415, - "y": 23.2187 - }, - { - "l": "4.0", - "x": 1.3607, - "y": 23.1896 - }, - { - "l": "4.0", - "x": 1.3799, - "y": 23.1611 - }, - { - "l": "4.0", - "x": 1.399, - "y": 23.1332 - }, - { - "l": "4.0", - "x": 1.4182, - "y": 23.106 - }, - { - "l": "4.0", - "x": 1.4374, - "y": 23.0795 - }, - { - "l": "4.0", - "x": 1.4565, - "y": 23.0535 - }, - { - "l": "4.0", - "x": 1.4757, - "y": 23.0282 - }, - { - "l": "4.0", - "x": 1.4949, - "y": 23.0036 - }, - { - "l": "4.0", - "x": 1.514, - "y": 22.9795 - }, - { - "l": "4.0", - "x": 1.5332, - "y": 22.9561 - }, - { - "l": "4.0", - "x": 1.5524, - "y": 22.9333 - }, - { - "l": "4.0", - "x": 1.5715, - "y": 22.9112 - }, - { - "l": "4.0", - "x": 1.5907, - "y": 22.8898 - }, - { - "l": "4.0", - "x": 1.6099, - "y": 22.8691 - }, - { - "l": "4.0", - "x": 1.629, - "y": 22.8491 - }, - { - "l": "4.0", - "x": 1.6482, - "y": 22.8297 - }, - { - "l": "4.0", - "x": 1.6674, - "y": 22.8109 - }, - { - "l": "4.0", - "x": 1.6865, - "y": 22.7926 - }, - { - "l": "4.0", - "x": 1.7057, - "y": 22.7748 - }, - { - "l": "4.0", - "x": 1.7248, - "y": 22.7577 - }, - { - "l": "4.0", - "x": 1.744, - "y": 22.7412 - }, - { - "l": "4.0", - "x": 1.7632, - "y": 22.7255 - }, - { - "l": "4.0", - "x": 1.7823, - "y": 22.7104 - }, - { - "l": "4.0", - "x": 1.8015, - "y": 22.6959 - }, - { - "l": "4.0", - "x": 1.8207, - "y": 22.6821 - }, - { - "l": "4.0", - "x": 1.8398, - "y": 22.6688 - }, - { - "l": "4.0", - "x": 1.859, - "y": 22.656 - }, - { - "l": "4.0", - "x": 1.8782, - "y": 22.6439 - }, - { - "l": "4.0", - "x": 1.8973, - "y": 22.6323 - }, - { - "l": "4.0", - "x": 1.9165, - "y": 22.6214 - }, - { - "l": "4.0", - "x": 1.9357, - "y": 22.6123 - }, - { - "l": "4.0", - "x": 1.9548, - "y": 22.6032 - }, - { - "l": "4.0", - "x": 1.974, - "y": 22.5941 - }, - { - "l": "4.0", - "x": 1.9932, - "y": 22.585 - } - ] - } - ] - } - } - }, - { - "uk_who_child": { - "male": null, - "female": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -5.0, - "centile": 2.866515718791933e-05, - "data": [ - { - "l": "-5.0", - "x": 2.0, - "y": 10.7411 - }, - { - "l": "-5.0", - "x": 2.0192, - "y": 10.7367 - }, - { - "l": "-5.0", - "x": 2.1025, - "y": 10.7178 - }, - { - "l": "-5.0", - "x": 2.1858, - "y": 10.7 - }, - { - "l": "-5.0", - "x": 2.2692, - "y": 10.6829 - }, - { - "l": "-5.0", - "x": 2.3525, - "y": 10.6659 - }, - { - "l": "-5.0", - "x": 2.4358, - "y": 10.6489 - }, - { - "l": "-5.0", - "x": 2.5192, - "y": 10.6314 - }, - { - "l": "-5.0", - "x": 2.6025, - "y": 10.6129 - }, - { - "l": "-5.0", - "x": 2.6858, - "y": 10.5935 - }, - { - "l": "-5.0", - "x": 2.7692, - "y": 10.5725 - }, - { - "l": "-5.0", - "x": 2.8525, - "y": 10.5503 - }, - { - "l": "-5.0", - "x": 2.9358, - "y": 10.5268 - }, - { - "l": "-5.0", - "x": 3.0192, - "y": 10.5014 - }, - { - "l": "-5.0", - "x": 3.1025, - "y": 10.475 - }, - { - "l": "-5.0", - "x": 3.1858, - "y": 10.4472 - }, - { - "l": "-5.0", - "x": 3.2692, - "y": 10.4181 - }, - { - "l": "-5.0", - "x": 3.3525, - "y": 10.3879 - }, - { - "l": "-5.0", - "x": 3.4358, - "y": 10.3573 - }, - { - "l": "-5.0", - "x": 3.5192, - "y": 10.326 - }, - { - "l": "-5.0", - "x": 3.6025, - "y": 10.2945 - }, - { - "l": "-5.0", - "x": 3.6858, - "y": 10.2635 - }, - { - "l": "-5.0", - "x": 3.7692, - "y": 10.233 - }, - { - "l": "-5.0", - "x": 3.8525, - "y": 10.2033 - }, - { - "l": "-5.0", - "x": 3.9358, - "y": 10.1751 - } - ] - }, - { - "sds": -4.0, - "centile": 0.003167124183311986, - "data": [ - { - "l": "-4.0", - "x": 2.0, - "y": 11.5144 - }, - { - "l": "-4.0", - "x": 2.0192, - "y": 11.5097 - }, - { - "l": "-4.0", - "x": 2.1025, - "y": 11.4892 - }, - { - "l": "-4.0", - "x": 2.1858, - "y": 11.4699 - }, - { - "l": "-4.0", - "x": 2.2692, - "y": 11.4513 - }, - { - "l": "-4.0", - "x": 2.3525, - "y": 11.433 - }, - { - "l": "-4.0", - "x": 2.4358, - "y": 11.4147 - }, - { - "l": "-4.0", - "x": 2.5192, - "y": 11.396 - }, - { - "l": "-4.0", - "x": 2.6025, - "y": 11.3766 - }, - { - "l": "-4.0", - "x": 2.6858, - "y": 11.3564 - }, - { - "l": "-4.0", - "x": 2.7692, - "y": 11.3349 - }, - { - "l": "-4.0", - "x": 2.8525, - "y": 11.3125 - }, - { - "l": "-4.0", - "x": 2.9358, - "y": 11.289 - }, - { - "l": "-4.0", - "x": 3.0192, - "y": 11.2642 - }, - { - "l": "-4.0", - "x": 3.1025, - "y": 11.2385 - }, - { - "l": "-4.0", - "x": 3.1858, - "y": 11.2117 - }, - { - "l": "-4.0", - "x": 3.2692, - "y": 11.184 - }, - { - "l": "-4.0", - "x": 3.3525, - "y": 11.1554 - }, - { - "l": "-4.0", - "x": 3.4358, - "y": 11.1265 - }, - { - "l": "-4.0", - "x": 3.5192, - "y": 11.0971 - }, - { - "l": "-4.0", - "x": 3.6025, - "y": 11.0675 - }, - { - "l": "-4.0", - "x": 3.6858, - "y": 11.0386 - }, - { - "l": "-4.0", - "x": 3.7692, - "y": 11.0102 - }, - { - "l": "-4.0", - "x": 3.8525, - "y": 10.9826 - }, - { - "l": "-4.0", - "x": 3.9358, - "y": 10.9564 - } - ] - }, - { - "sds": 3.0, - "centile": 99.86501019683699, - "data": [ - { - "l": "3.0", - "x": 2.0, - "y": 20.6306 - }, - { - "l": "3.0", - "x": 2.0192, - "y": 20.6215 - }, - { - "l": "3.0", - "x": 2.1025, - "y": 20.5818 - }, - { - "l": "3.0", - "x": 2.1858, - "y": 20.5428 - }, - { - "l": "3.0", - "x": 2.2692, - "y": 20.5055 - }, - { - "l": "3.0", - "x": 2.3525, - "y": 20.4702 - }, - { - "l": "3.0", - "x": 2.4358, - "y": 20.4366 - }, - { - "l": "3.0", - "x": 2.5192, - "y": 20.4055 - }, - { - "l": "3.0", - "x": 2.6025, - "y": 20.3771 - }, - { - "l": "3.0", - "x": 2.6858, - "y": 20.3521 - }, - { - "l": "3.0", - "x": 2.7692, - "y": 20.332 - }, - { - "l": "3.0", - "x": 2.8525, - "y": 20.3169 - }, - { - "l": "3.0", - "x": 2.9358, - "y": 20.3076 - }, - { - "l": "3.0", - "x": 3.0192, - "y": 20.305 - }, - { - "l": "3.0", - "x": 3.1025, - "y": 20.3079 - }, - { - "l": "3.0", - "x": 3.1858, - "y": 20.3169 - }, - { - "l": "3.0", - "x": 3.2692, - "y": 20.3311 - }, - { - "l": "3.0", - "x": 3.3525, - "y": 20.3499 - }, - { - "l": "3.0", - "x": 3.4358, - "y": 20.3721 - }, - { - "l": "3.0", - "x": 3.5192, - "y": 20.3976 - }, - { - "l": "3.0", - "x": 3.6025, - "y": 20.4259 - }, - { - "l": "3.0", - "x": 3.6858, - "y": 20.4554 - }, - { - "l": "3.0", - "x": 3.7692, - "y": 20.4871 - }, - { - "l": "3.0", - "x": 3.8525, - "y": 20.5199 - }, - { - "l": "3.0", - "x": 3.9358, - "y": 20.5536 - } - ] - }, - { - "sds": 3.33, - "centile": 99.95657700796184, - "data": [ - { - "l": "3.33", - "x": 2.0, - "y": 21.3207 - }, - { - "l": "3.33", - "x": 2.0192, - "y": 21.3112 - }, - { - "l": "3.33", - "x": 2.1025, - "y": 21.27 - }, - { - "l": "3.33", - "x": 2.1858, - "y": 21.2294 - }, - { - "l": "3.33", - "x": 2.2692, - "y": 21.1906 - }, - { - "l": "3.33", - "x": 2.3525, - "y": 21.154 - }, - { - "l": "3.33", - "x": 2.4358, - "y": 21.1191 - }, - { - "l": "3.33", - "x": 2.5192, - "y": 21.0871 - }, - { - "l": "3.33", - "x": 2.6025, - "y": 21.0583 - }, - { - "l": "3.33", - "x": 2.6858, - "y": 21.0332 - }, - { - "l": "3.33", - "x": 2.7692, - "y": 21.0137 - }, - { - "l": "3.33", - "x": 2.8525, - "y": 20.9998 - }, - { - "l": "3.33", - "x": 2.9358, - "y": 20.9925 - }, - { - "l": "3.33", - "x": 3.0192, - "y": 20.9927 - }, - { - "l": "3.33", - "x": 3.1025, - "y": 20.9992 - }, - { - "l": "3.33", - "x": 3.1858, - "y": 21.0125 - }, - { - "l": "3.33", - "x": 3.2692, - "y": 21.0316 - }, - { - "l": "3.33", - "x": 3.3525, - "y": 21.056 - }, - { - "l": "3.33", - "x": 3.4358, - "y": 21.0843 - }, - { - "l": "3.33", - "x": 3.5192, - "y": 21.1163 - }, - { - "l": "3.33", - "x": 3.6025, - "y": 21.1514 - }, - { - "l": "3.33", - "x": 3.6858, - "y": 21.1878 - }, - { - "l": "3.33", - "x": 3.7692, - "y": 21.2266 - }, - { - "l": "3.33", - "x": 3.8525, - "y": 21.2666 - }, - { - "l": "3.33", - "x": 3.9358, - "y": 21.3075 - } - ] - }, - { - "sds": 3.67, - "centile": 99.98787247657145, - "data": [ - { - "l": "3.67", - "x": 2.0, - "y": 22.0703 - }, - { - "l": "3.67", - "x": 2.0192, - "y": 22.0605 - }, - { - "l": "3.67", - "x": 2.1025, - "y": 22.0176 - }, - { - "l": "3.67", - "x": 2.1858, - "y": 21.9752 - }, - { - "l": "3.67", - "x": 2.2692, - "y": 21.9347 - }, - { - "l": "3.67", - "x": 2.3525, - "y": 21.8966 - }, - { - "l": "3.67", - "x": 2.4358, - "y": 21.8605 - }, - { - "l": "3.67", - "x": 2.5192, - "y": 21.8276 - }, - { - "l": "3.67", - "x": 2.6025, - "y": 21.7982 - }, - { - "l": "3.67", - "x": 2.6858, - "y": 21.7731 - }, - { - "l": "3.67", - "x": 2.7692, - "y": 21.7543 - }, - { - "l": "3.67", - "x": 2.8525, - "y": 21.7419 - }, - { - "l": "3.67", - "x": 2.9358, - "y": 21.7369 - }, - { - "l": "3.67", - "x": 3.0192, - "y": 21.7403 - }, - { - "l": "3.67", - "x": 3.1025, - "y": 21.7508 - }, - { - "l": "3.67", - "x": 3.1858, - "y": 21.769 - }, - { - "l": "3.67", - "x": 3.2692, - "y": 21.7938 - }, - { - "l": "3.67", - "x": 3.3525, - "y": 21.8246 - }, - { - "l": "3.67", - "x": 3.4358, - "y": 21.8597 - }, - { - "l": "3.67", - "x": 3.5192, - "y": 21.8991 - }, - { - "l": "3.67", - "x": 3.6025, - "y": 21.9421 - }, - { - "l": "3.67", - "x": 3.6858, - "y": 21.9864 - }, - { - "l": "3.67", - "x": 3.7692, - "y": 22.0333 - }, - { - "l": "3.67", - "x": 3.8525, - "y": 22.0815 - }, - { - "l": "3.67", - "x": 3.9358, - "y": 22.1305 - } - ] - }, - { - "sds": 4.0, - "centile": 99.9968328758167, - "data": [ - { - "l": "4.0", - "x": 2.0, - "y": 22.8382 - }, - { - "l": "4.0", - "x": 2.0192, - "y": 22.828 - }, - { - "l": "4.0", - "x": 2.1025, - "y": 22.7833 - }, - { - "l": "4.0", - "x": 2.1858, - "y": 22.7392 - }, - { - "l": "4.0", - "x": 2.2692, - "y": 22.6969 - }, - { - "l": "4.0", - "x": 2.3525, - "y": 22.6573 - }, - { - "l": "4.0", - "x": 2.4358, - "y": 22.6199 - }, - { - "l": "4.0", - "x": 2.5192, - "y": 22.586 - }, - { - "l": "4.0", - "x": 2.6025, - "y": 22.5561 - }, - { - "l": "4.0", - "x": 2.6858, - "y": 22.531 - }, - { - "l": "4.0", - "x": 2.7692, - "y": 22.5131 - }, - { - "l": "4.0", - "x": 2.8525, - "y": 22.5022 - }, - { - "l": "4.0", - "x": 2.9358, - "y": 22.4997 - }, - { - "l": "4.0", - "x": 3.0192, - "y": 22.5066 - }, - { - "l": "4.0", - "x": 3.1025, - "y": 22.5214 - }, - { - "l": "4.0", - "x": 3.1858, - "y": 22.5449 - }, - { - "l": "4.0", - "x": 3.2692, - "y": 22.5759 - }, - { - "l": "4.0", - "x": 3.3525, - "y": 22.6135 - }, - { - "l": "4.0", - "x": 3.4358, - "y": 22.656 - }, - { - "l": "4.0", - "x": 3.5192, - "y": 22.7034 - }, - { - "l": "4.0", - "x": 3.6025, - "y": 22.7547 - }, - { - "l": "4.0", - "x": 3.6858, - "y": 22.8076 - }, - { - "l": "4.0", - "x": 3.7692, - "y": 22.8632 - }, - { - "l": "4.0", - "x": 3.8525, - "y": 22.9203 - }, - { - "l": "4.0", - "x": 3.9358, - "y": 22.9781 - } - ] - } - ] - } - } - }, - { - "uk90_child": { - "male": null, - "female": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -5.0, - "centile": 2.866515718791933e-05, - "data": [ - { - "l": "-5.0", - "x": 4.0, - "y": 10.9929 - }, - { - "l": "-5.0", - "x": 4.0833, - "y": 10.9693 - }, - { - "l": "-5.0", - "x": 4.1667, - "y": 10.9451 - }, - { - "l": "-5.0", - "x": 4.25, - "y": 10.9202 - }, - { - "l": "-5.0", - "x": 4.3333, - "y": 10.8962 - }, - { - "l": "-5.0", - "x": 4.4167, - "y": 10.8715 - }, - { - "l": "-5.0", - "x": 4.5, - "y": 10.8463 - }, - { - "l": "-5.0", - "x": 4.5833, - "y": 10.822 - }, - { - "l": "-5.0", - "x": 4.6667, - "y": 10.7971 - }, - { - "l": "-5.0", - "x": 4.75, - "y": 10.773 - }, - { - "l": "-5.0", - "x": 4.8333, - "y": 10.7491 - }, - { - "l": "-5.0", - "x": 4.9167, - "y": 10.7259 - }, - { - "l": "-5.0", - "x": 5.0, - "y": 10.7037 - }, - { - "l": "-5.0", - "x": 5.0833, - "y": 10.6816 - }, - { - "l": "-5.0", - "x": 5.1667, - "y": 10.6607 - }, - { - "l": "-5.0", - "x": 5.25, - "y": 10.6402 - }, - { - "l": "-5.0", - "x": 5.3333, - "y": 10.6213 - }, - { - "l": "-5.0", - "x": 5.4167, - "y": 10.6016 - }, - { - "l": "-5.0", - "x": 5.5, - "y": 10.5843 - }, - { - "l": "-5.0", - "x": 5.5833, - "y": 10.5676 - }, - { - "l": "-5.0", - "x": 5.6667, - "y": 10.5523 - }, - { - "l": "-5.0", - "x": 5.75, - "y": 10.5372 - }, - { - "l": "-5.0", - "x": 5.8333, - "y": 10.5229 - }, - { - "l": "-5.0", - "x": 5.9167, - "y": 10.5098 - }, - { - "l": "-5.0", - "x": 6.0, - "y": 10.4971 - }, - { - "l": "-5.0", - "x": 6.0833, - "y": 10.4849 - }, - { - "l": "-5.0", - "x": 6.1667, - "y": 10.4758 - }, - { - "l": "-5.0", - "x": 6.25, - "y": 10.4644 - }, - { - "l": "-5.0", - "x": 6.3333, - "y": 10.4552 - }, - { - "l": "-5.0", - "x": 6.4167, - "y": 10.4471 - }, - { - "l": "-5.0", - "x": 6.5, - "y": 10.4401 - }, - { - "l": "-5.0", - "x": 6.5833, - "y": 10.4332 - }, - { - "l": "-5.0", - "x": 6.6667, - "y": 10.4284 - }, - { - "l": "-5.0", - "x": 6.75, - "y": 10.4226 - }, - { - "l": "-5.0", - "x": 6.8333, - "y": 10.4188 - }, - { - "l": "-5.0", - "x": 6.9167, - "y": 10.4155 - }, - { - "l": "-5.0", - "x": 7.0, - "y": 10.4119 - }, - { - "l": "-5.0", - "x": 7.0833, - "y": 10.41 - }, - { - "l": "-5.0", - "x": 7.1667, - "y": 10.4077 - }, - { - "l": "-5.0", - "x": 7.25, - "y": 10.4075 - }, - { - "l": "-5.0", - "x": 7.3333, - "y": 10.4063 - }, - { - "l": "-5.0", - "x": 7.4167, - "y": 10.4067 - }, - { - "l": "-5.0", - "x": 7.5, - "y": 10.4072 - }, - { - "l": "-5.0", - "x": 7.5833, - "y": 10.408 - }, - { - "l": "-5.0", - "x": 7.6667, - "y": 10.41 - }, - { - "l": "-5.0", - "x": 7.75, - "y": 10.412 - }, - { - "l": "-5.0", - "x": 7.8333, - "y": 10.4157 - }, - { - "l": "-5.0", - "x": 7.9167, - "y": 10.419 - }, - { - "l": "-5.0", - "x": 8.0, - "y": 10.424 - }, - { - "l": "-5.0", - "x": 8.0833, - "y": 10.4282 - }, - { - "l": "-5.0", - "x": 8.1667, - "y": 10.4332 - }, - { - "l": "-5.0", - "x": 8.25, - "y": 10.4392 - }, - { - "l": "-5.0", - "x": 8.3333, - "y": 10.4469 - }, - { - "l": "-5.0", - "x": 8.4167, - "y": 10.4531 - }, - { - "l": "-5.0", - "x": 8.5, - "y": 10.4616 - }, - { - "l": "-5.0", - "x": 8.5833, - "y": 10.4699 - }, - { - "l": "-5.0", - "x": 8.6667, - "y": 10.4792 - }, - { - "l": "-5.0", - "x": 8.75, - "y": 10.4895 - }, - { - "l": "-5.0", - "x": 8.8333, - "y": 10.5002 - }, - { - "l": "-5.0", - "x": 8.9167, - "y": 10.5107 - }, - { - "l": "-5.0", - "x": 9.0, - "y": 10.5233 - }, - { - "l": "-5.0", - "x": 9.0833, - "y": 10.5358 - }, - { - "l": "-5.0", - "x": 9.1667, - "y": 10.5483 - }, - { - "l": "-5.0", - "x": 9.25, - "y": 10.5629 - }, - { - "l": "-5.0", - "x": 9.3333, - "y": 10.5769 - }, - { - "l": "-5.0", - "x": 9.4167, - "y": 10.5929 - }, - { - "l": "-5.0", - "x": 9.5, - "y": 10.6083 - }, - { - "l": "-5.0", - "x": 9.5833, - "y": 10.6247 - }, - { - "l": "-5.0", - "x": 9.6667, - "y": 10.6419 - }, - { - "l": "-5.0", - "x": 9.75, - "y": 10.6596 - }, - { - "l": "-5.0", - "x": 9.8333, - "y": 10.678 - }, - { - "l": "-5.0", - "x": 9.9167, - "y": 10.6969 - }, - { - "l": "-5.0", - "x": 10.0, - "y": 10.7166 - }, - { - "l": "-5.0", - "x": 10.0833, - "y": 10.7367 - }, - { - "l": "-5.0", - "x": 10.1667, - "y": 10.7582 - }, - { - "l": "-5.0", - "x": 10.25, - "y": 10.7794 - }, - { - "l": "-5.0", - "x": 10.3333, - "y": 10.8008 - }, - { - "l": "-5.0", - "x": 10.4167, - "y": 10.8238 - }, - { - "l": "-5.0", - "x": 10.5, - "y": 10.847 - }, - { - "l": "-5.0", - "x": 10.5833, - "y": 10.8698 - }, - { - "l": "-5.0", - "x": 10.6667, - "y": 10.8948 - }, - { - "l": "-5.0", - "x": 10.75, - "y": 10.9194 - }, - { - "l": "-5.0", - "x": 10.8333, - "y": 10.9449 - }, - { - "l": "-5.0", - "x": 10.9167, - "y": 10.97 - }, - { - "l": "-5.0", - "x": 11.0, - "y": 10.9957 - }, - { - "l": "-5.0", - "x": 11.0833, - "y": 11.0232 - }, - { - "l": "-5.0", - "x": 11.1667, - "y": 11.0494 - }, - { - "l": "-5.0", - "x": 11.25, - "y": 11.0785 - }, - { - "l": "-5.0", - "x": 11.3333, - "y": 11.1065 - }, - { - "l": "-5.0", - "x": 11.4167, - "y": 11.1338 - }, - { - "l": "-5.0", - "x": 11.5, - "y": 11.163 - }, - { - "l": "-5.0", - "x": 11.5833, - "y": 11.1928 - }, - { - "l": "-5.0", - "x": 11.6667, - "y": 11.2219 - }, - { - "l": "-5.0", - "x": 11.75, - "y": 11.2516 - }, - { - "l": "-5.0", - "x": 11.8333, - "y": 11.2826 - }, - { - "l": "-5.0", - "x": 11.9167, - "y": 11.3125 - }, - { - "l": "-5.0", - "x": 12.0, - "y": 11.3434 - }, - { - "l": "-5.0", - "x": 12.0833, - "y": 11.3745 - }, - { - "l": "-5.0", - "x": 12.1667, - "y": 11.4067 - }, - { - "l": "-5.0", - "x": 12.25, - "y": 11.4375 - }, - { - "l": "-5.0", - "x": 12.3333, - "y": 11.4695 - }, - { - "l": "-5.0", - "x": 12.4167, - "y": 11.5006 - }, - { - "l": "-5.0", - "x": 12.5, - "y": 11.5322 - }, - { - "l": "-5.0", - "x": 12.5833, - "y": 11.5646 - }, - { - "l": "-5.0", - "x": 12.6667, - "y": 11.5969 - }, - { - "l": "-5.0", - "x": 12.75, - "y": 11.6288 - }, - { - "l": "-5.0", - "x": 12.8333, - "y": 11.6604 - }, - { - "l": "-5.0", - "x": 12.9167, - "y": 11.6934 - }, - { - "l": "-5.0", - "x": 13.0, - "y": 11.7253 - }, - { - "l": "-5.0", - "x": 13.0833, - "y": 11.7566 - }, - { - "l": "-5.0", - "x": 13.1667, - "y": 11.7894 - }, - { - "l": "-5.0", - "x": 13.25, - "y": 11.8211 - }, - { - "l": "-5.0", - "x": 13.3333, - "y": 11.853 - }, - { - "l": "-5.0", - "x": 13.4167, - "y": 11.8846 - }, - { - "l": "-5.0", - "x": 13.5, - "y": 11.917 - }, - { - "l": "-5.0", - "x": 13.5833, - "y": 11.9482 - }, - { - "l": "-5.0", - "x": 13.6667, - "y": 11.9794 - }, - { - "l": "-5.0", - "x": 13.75, - "y": 12.0109 - }, - { - "l": "-5.0", - "x": 13.8333, - "y": 12.0415 - }, - { - "l": "-5.0", - "x": 13.9167, - "y": 12.0718 - }, - { - "l": "-5.0", - "x": 14.0, - "y": 12.1032 - }, - { - "l": "-5.0", - "x": 14.0833, - "y": 12.1339 - }, - { - "l": "-5.0", - "x": 14.1667, - "y": 12.164 - }, - { - "l": "-5.0", - "x": 14.25, - "y": 12.1941 - }, - { - "l": "-5.0", - "x": 14.3333, - "y": 12.2225 - }, - { - "l": "-5.0", - "x": 14.4167, - "y": 12.253 - }, - { - "l": "-5.0", - "x": 14.5, - "y": 12.2818 - }, - { - "l": "-5.0", - "x": 14.5833, - "y": 12.311 - }, - { - "l": "-5.0", - "x": 14.6667, - "y": 12.3392 - }, - { - "l": "-5.0", - "x": 14.75, - "y": 12.3688 - }, - { - "l": "-5.0", - "x": 14.8333, - "y": 12.3957 - }, - { - "l": "-5.0", - "x": 14.9167, - "y": 12.4243 - }, - { - "l": "-5.0", - "x": 15.0, - "y": 12.4516 - }, - { - "l": "-5.0", - "x": 15.0833, - "y": 12.479 - }, - { - "l": "-5.0", - "x": 15.1667, - "y": 12.5056 - }, - { - "l": "-5.0", - "x": 15.25, - "y": 12.5327 - }, - { - "l": "-5.0", - "x": 15.3333, - "y": 12.5578 - }, - { - "l": "-5.0", - "x": 15.4167, - "y": 12.5849 - }, - { - "l": "-5.0", - "x": 15.5, - "y": 12.6097 - }, - { - "l": "-5.0", - "x": 15.5833, - "y": 12.6352 - }, - { - "l": "-5.0", - "x": 15.6667, - "y": 12.6605 - }, - { - "l": "-5.0", - "x": 15.75, - "y": 12.6846 - }, - { - "l": "-5.0", - "x": 15.8333, - "y": 12.7096 - }, - { - "l": "-5.0", - "x": 15.9167, - "y": 12.7331 - }, - { - "l": "-5.0", - "x": 16.0, - "y": 12.7568 - }, - { - "l": "-5.0", - "x": 16.0833, - "y": 12.7809 - }, - { - "l": "-5.0", - "x": 16.1667, - "y": 12.8031 - }, - { - "l": "-5.0", - "x": 16.25, - "y": 12.8262 - }, - { - "l": "-5.0", - "x": 16.3333, - "y": 12.8491 - }, - { - "l": "-5.0", - "x": 16.4167, - "y": 12.8703 - }, - { - "l": "-5.0", - "x": 16.5, - "y": 12.8932 - }, - { - "l": "-5.0", - "x": 16.5833, - "y": 12.9144 - }, - { - "l": "-5.0", - "x": 16.6667, - "y": 12.9348 - }, - { - "l": "-5.0", - "x": 16.75, - "y": 12.956 - }, - { - "l": "-5.0", - "x": 16.8333, - "y": 12.9766 - }, - { - "l": "-5.0", - "x": 16.9167, - "y": 12.997 - }, - { - "l": "-5.0", - "x": 17.0, - "y": 13.017 - }, - { - "l": "-5.0", - "x": 17.0833, - "y": 13.037 - }, - { - "l": "-5.0", - "x": 17.1667, - "y": 13.0552 - }, - { - "l": "-5.0", - "x": 17.25, - "y": 13.0746 - }, - { - "l": "-5.0", - "x": 17.3333, - "y": 13.0939 - }, - { - "l": "-5.0", - "x": 17.4167, - "y": 13.1127 - }, - { - "l": "-5.0", - "x": 17.5, - "y": 13.1306 - }, - { - "l": "-5.0", - "x": 17.5833, - "y": 13.1484 - }, - { - "l": "-5.0", - "x": 17.6667, - "y": 13.1669 - }, - { - "l": "-5.0", - "x": 17.75, - "y": 13.1834 - }, - { - "l": "-5.0", - "x": 17.8333, - "y": 13.201 - }, - { - "l": "-5.0", - "x": 17.9167, - "y": 13.2185 - }, - { - "l": "-5.0", - "x": 18.0, - "y": 13.2354 - }, - { - "l": "-5.0", - "x": 18.0833, - "y": 13.2519 - }, - { - "l": "-5.0", - "x": 18.1667, - "y": 13.2676 - }, - { - "l": "-5.0", - "x": 18.25, - "y": 13.2839 - }, - { - "l": "-5.0", - "x": 18.3333, - "y": 13.3004 - }, - { - "l": "-5.0", - "x": 18.4167, - "y": 13.316 - }, - { - "l": "-5.0", - "x": 18.5, - "y": 13.3307 - }, - { - "l": "-5.0", - "x": 18.5833, - "y": 13.346 - }, - { - "l": "-5.0", - "x": 18.6667, - "y": 13.3617 - }, - { - "l": "-5.0", - "x": 18.75, - "y": 13.3763 - }, - { - "l": "-5.0", - "x": 18.8333, - "y": 13.3897 - }, - { - "l": "-5.0", - "x": 18.9167, - "y": 13.4048 - }, - { - "l": "-5.0", - "x": 19.0, - "y": 13.4195 - }, - { - "l": "-5.0", - "x": 19.0833, - "y": 13.4335 - }, - { - "l": "-5.0", - "x": 19.1667, - "y": 13.4482 - }, - { - "l": "-5.0", - "x": 19.25, - "y": 13.4603 - }, - { - "l": "-5.0", - "x": 19.3333, - "y": 13.4748 - }, - { - "l": "-5.0", - "x": 19.4167, - "y": 13.4878 - }, - { - "l": "-5.0", - "x": 19.5, - "y": 13.5012 - }, - { - "l": "-5.0", - "x": 19.5833, - "y": 13.5146 - }, - { - "l": "-5.0", - "x": 19.6667, - "y": 13.5262 - }, - { - "l": "-5.0", - "x": 19.75, - "y": 13.5396 - }, - { - "l": "-5.0", - "x": 19.8333, - "y": 13.553 - }, - { - "l": "-5.0", - "x": 19.9167, - "y": 13.5658 - }, - { - "l": "-5.0", - "x": 20.0, - "y": 13.5786 - } - ] - }, - { - "sds": -4.0, - "centile": 0.003167124183311986, - "data": [ - { - "l": "-4.0", - "x": 4.0, - "y": 11.6742 - }, - { - "l": "-4.0", - "x": 4.0833, - "y": 11.6503 - }, - { - "l": "-4.0", - "x": 4.1667, - "y": 11.6258 - }, - { - "l": "-4.0", - "x": 4.25, - "y": 11.6008 - }, - { - "l": "-4.0", - "x": 4.3333, - "y": 11.5766 - }, - { - "l": "-4.0", - "x": 4.4167, - "y": 11.5518 - }, - { - "l": "-4.0", - "x": 4.5, - "y": 11.5265 - }, - { - "l": "-4.0", - "x": 4.5833, - "y": 11.5021 - }, - { - "l": "-4.0", - "x": 4.6667, - "y": 11.4774 - }, - { - "l": "-4.0", - "x": 4.75, - "y": 11.4534 - }, - { - "l": "-4.0", - "x": 4.8333, - "y": 11.4298 - }, - { - "l": "-4.0", - "x": 4.9167, - "y": 11.4068 - }, - { - "l": "-4.0", - "x": 5.0, - "y": 11.385 - }, - { - "l": "-4.0", - "x": 5.0833, - "y": 11.3634 - }, - { - "l": "-4.0", - "x": 5.1667, - "y": 11.3429 - }, - { - "l": "-4.0", - "x": 5.25, - "y": 11.3231 - }, - { - "l": "-4.0", - "x": 5.3333, - "y": 11.3049 - }, - { - "l": "-4.0", - "x": 5.4167, - "y": 11.286 - }, - { - "l": "-4.0", - "x": 5.5, - "y": 11.2696 - }, - { - "l": "-4.0", - "x": 5.5833, - "y": 11.2537 - }, - { - "l": "-4.0", - "x": 5.6667, - "y": 11.2394 - }, - { - "l": "-4.0", - "x": 5.75, - "y": 11.2254 - }, - { - "l": "-4.0", - "x": 5.8333, - "y": 11.2122 - }, - { - "l": "-4.0", - "x": 5.9167, - "y": 11.2002 - }, - { - "l": "-4.0", - "x": 6.0, - "y": 11.1888 - }, - { - "l": "-4.0", - "x": 6.0833, - "y": 11.1779 - }, - { - "l": "-4.0", - "x": 6.1667, - "y": 11.1701 - }, - { - "l": "-4.0", - "x": 6.25, - "y": 11.1603 - }, - { - "l": "-4.0", - "x": 6.3333, - "y": 11.1525 - }, - { - "l": "-4.0", - "x": 6.4167, - "y": 11.1459 - }, - { - "l": "-4.0", - "x": 6.5, - "y": 11.1404 - }, - { - "l": "-4.0", - "x": 6.5833, - "y": 11.1352 - }, - { - "l": "-4.0", - "x": 6.6667, - "y": 11.132 - }, - { - "l": "-4.0", - "x": 6.75, - "y": 11.1279 - }, - { - "l": "-4.0", - "x": 6.8333, - "y": 11.126 - }, - { - "l": "-4.0", - "x": 6.9167, - "y": 11.1244 - }, - { - "l": "-4.0", - "x": 7.0, - "y": 11.1226 - }, - { - "l": "-4.0", - "x": 7.0833, - "y": 11.1226 - }, - { - "l": "-4.0", - "x": 7.1667, - "y": 11.1222 - }, - { - "l": "-4.0", - "x": 7.25, - "y": 11.124 - }, - { - "l": "-4.0", - "x": 7.3333, - "y": 11.1247 - }, - { - "l": "-4.0", - "x": 7.4167, - "y": 11.1271 - }, - { - "l": "-4.0", - "x": 7.5, - "y": 11.1296 - }, - { - "l": "-4.0", - "x": 7.5833, - "y": 11.1324 - }, - { - "l": "-4.0", - "x": 7.6667, - "y": 11.1365 - }, - { - "l": "-4.0", - "x": 7.75, - "y": 11.1406 - }, - { - "l": "-4.0", - "x": 7.8333, - "y": 11.1464 - }, - { - "l": "-4.0", - "x": 7.9167, - "y": 11.1518 - }, - { - "l": "-4.0", - "x": 8.0, - "y": 11.1589 - }, - { - "l": "-4.0", - "x": 8.0833, - "y": 11.1651 - }, - { - "l": "-4.0", - "x": 8.1667, - "y": 11.1726 - }, - { - "l": "-4.0", - "x": 8.25, - "y": 11.1808 - }, - { - "l": "-4.0", - "x": 8.3333, - "y": 11.1907 - }, - { - "l": "-4.0", - "x": 8.4167, - "y": 11.1992 - }, - { - "l": "-4.0", - "x": 8.5, - "y": 11.21 - }, - { - "l": "-4.0", - "x": 8.5833, - "y": 11.2207 - }, - { - "l": "-4.0", - "x": 8.6667, - "y": 11.2323 - }, - { - "l": "-4.0", - "x": 8.75, - "y": 11.2449 - }, - { - "l": "-4.0", - "x": 8.8333, - "y": 11.258 - }, - { - "l": "-4.0", - "x": 8.9167, - "y": 11.2711 - }, - { - "l": "-4.0", - "x": 9.0, - "y": 11.2861 - }, - { - "l": "-4.0", - "x": 9.0833, - "y": 11.301 - }, - { - "l": "-4.0", - "x": 9.1667, - "y": 11.3161 - }, - { - "l": "-4.0", - "x": 9.25, - "y": 11.3332 - }, - { - "l": "-4.0", - "x": 9.3333, - "y": 11.3498 - }, - { - "l": "-4.0", - "x": 9.4167, - "y": 11.3684 - }, - { - "l": "-4.0", - "x": 9.5, - "y": 11.3864 - }, - { - "l": "-4.0", - "x": 9.5833, - "y": 11.4054 - }, - { - "l": "-4.0", - "x": 9.6667, - "y": 11.4254 - }, - { - "l": "-4.0", - "x": 9.75, - "y": 11.4458 - }, - { - "l": "-4.0", - "x": 9.8333, - "y": 11.4669 - }, - { - "l": "-4.0", - "x": 9.9167, - "y": 11.4885 - }, - { - "l": "-4.0", - "x": 10.0, - "y": 11.511 - }, - { - "l": "-4.0", - "x": 10.0833, - "y": 11.5338 - }, - { - "l": "-4.0", - "x": 10.1667, - "y": 11.5581 - }, - { - "l": "-4.0", - "x": 10.25, - "y": 11.582 - }, - { - "l": "-4.0", - "x": 10.3333, - "y": 11.6064 - }, - { - "l": "-4.0", - "x": 10.4167, - "y": 11.6322 - }, - { - "l": "-4.0", - "x": 10.5, - "y": 11.6582 - }, - { - "l": "-4.0", - "x": 10.5833, - "y": 11.684 - }, - { - "l": "-4.0", - "x": 10.6667, - "y": 11.7118 - }, - { - "l": "-4.0", - "x": 10.75, - "y": 11.7394 - }, - { - "l": "-4.0", - "x": 10.8333, - "y": 11.7678 - }, - { - "l": "-4.0", - "x": 10.9167, - "y": 11.7959 - }, - { - "l": "-4.0", - "x": 11.0, - "y": 11.8247 - }, - { - "l": "-4.0", - "x": 11.0833, - "y": 11.8551 - }, - { - "l": "-4.0", - "x": 11.1667, - "y": 11.8844 - }, - { - "l": "-4.0", - "x": 11.25, - "y": 11.9163 - }, - { - "l": "-4.0", - "x": 11.3333, - "y": 11.9474 - }, - { - "l": "-4.0", - "x": 11.4167, - "y": 11.9778 - }, - { - "l": "-4.0", - "x": 11.5, - "y": 12.0101 - }, - { - "l": "-4.0", - "x": 11.5833, - "y": 12.0428 - }, - { - "l": "-4.0", - "x": 11.6667, - "y": 12.0751 - }, - { - "l": "-4.0", - "x": 11.75, - "y": 12.1079 - }, - { - "l": "-4.0", - "x": 11.8333, - "y": 12.1418 - }, - { - "l": "-4.0", - "x": 11.9167, - "y": 12.1748 - }, - { - "l": "-4.0", - "x": 12.0, - "y": 12.2088 - }, - { - "l": "-4.0", - "x": 12.0833, - "y": 12.2431 - }, - { - "l": "-4.0", - "x": 12.1667, - "y": 12.2782 - }, - { - "l": "-4.0", - "x": 12.25, - "y": 12.312 - }, - { - "l": "-4.0", - "x": 12.3333, - "y": 12.3472 - }, - { - "l": "-4.0", - "x": 12.4167, - "y": 12.3813 - }, - { - "l": "-4.0", - "x": 12.5, - "y": 12.4161 - }, - { - "l": "-4.0", - "x": 12.5833, - "y": 12.4513 - }, - { - "l": "-4.0", - "x": 12.6667, - "y": 12.4867 - }, - { - "l": "-4.0", - "x": 12.75, - "y": 12.5217 - }, - { - "l": "-4.0", - "x": 12.8333, - "y": 12.5564 - }, - { - "l": "-4.0", - "x": 12.9167, - "y": 12.5922 - }, - { - "l": "-4.0", - "x": 13.0, - "y": 12.6271 - }, - { - "l": "-4.0", - "x": 13.0833, - "y": 12.6614 - }, - { - "l": "-4.0", - "x": 13.1667, - "y": 12.6973 - }, - { - "l": "-4.0", - "x": 13.25, - "y": 12.7317 - }, - { - "l": "-4.0", - "x": 13.3333, - "y": 12.7666 - }, - { - "l": "-4.0", - "x": 13.4167, - "y": 12.8011 - }, - { - "l": "-4.0", - "x": 13.5, - "y": 12.8361 - }, - { - "l": "-4.0", - "x": 13.5833, - "y": 12.8703 - }, - { - "l": "-4.0", - "x": 13.6667, - "y": 12.9045 - }, - { - "l": "-4.0", - "x": 13.75, - "y": 12.9385 - }, - { - "l": "-4.0", - "x": 13.8333, - "y": 12.972 - }, - { - "l": "-4.0", - "x": 13.9167, - "y": 13.0051 - }, - { - "l": "-4.0", - "x": 14.0, - "y": 13.0391 - }, - { - "l": "-4.0", - "x": 14.0833, - "y": 13.0725 - }, - { - "l": "-4.0", - "x": 14.1667, - "y": 13.1052 - }, - { - "l": "-4.0", - "x": 14.25, - "y": 13.138 - }, - { - "l": "-4.0", - "x": 14.3333, - "y": 13.1691 - }, - { - "l": "-4.0", - "x": 14.4167, - "y": 13.2021 - }, - { - "l": "-4.0", - "x": 14.5, - "y": 13.2335 - }, - { - "l": "-4.0", - "x": 14.5833, - "y": 13.2652 - }, - { - "l": "-4.0", - "x": 14.6667, - "y": 13.2959 - }, - { - "l": "-4.0", - "x": 14.75, - "y": 13.3279 - }, - { - "l": "-4.0", - "x": 14.8333, - "y": 13.3573 - }, - { - "l": "-4.0", - "x": 14.9167, - "y": 13.3883 - }, - { - "l": "-4.0", - "x": 15.0, - "y": 13.418 - }, - { - "l": "-4.0", - "x": 15.0833, - "y": 13.4477 - }, - { - "l": "-4.0", - "x": 15.1667, - "y": 13.4768 - }, - { - "l": "-4.0", - "x": 15.25, - "y": 13.5061 - }, - { - "l": "-4.0", - "x": 15.3333, - "y": 13.5335 - }, - { - "l": "-4.0", - "x": 15.4167, - "y": 13.5628 - }, - { - "l": "-4.0", - "x": 15.5, - "y": 13.5899 - }, - { - "l": "-4.0", - "x": 15.5833, - "y": 13.6176 - }, - { - "l": "-4.0", - "x": 15.6667, - "y": 13.6449 - }, - { - "l": "-4.0", - "x": 15.75, - "y": 13.6713 - }, - { - "l": "-4.0", - "x": 15.8333, - "y": 13.6983 - }, - { - "l": "-4.0", - "x": 15.9167, - "y": 13.724 - }, - { - "l": "-4.0", - "x": 16.0, - "y": 13.7497 - }, - { - "l": "-4.0", - "x": 16.0833, - "y": 13.7757 - }, - { - "l": "-4.0", - "x": 16.1667, - "y": 13.8001 - }, - { - "l": "-4.0", - "x": 16.25, - "y": 13.8251 - }, - { - "l": "-4.0", - "x": 16.3333, - "y": 13.8498 - }, - { - "l": "-4.0", - "x": 16.4167, - "y": 13.8732 - }, - { - "l": "-4.0", - "x": 16.5, - "y": 13.8978 - }, - { - "l": "-4.0", - "x": 16.5833, - "y": 13.9208 - }, - { - "l": "-4.0", - "x": 16.6667, - "y": 13.9432 - }, - { - "l": "-4.0", - "x": 16.75, - "y": 13.9662 - }, - { - "l": "-4.0", - "x": 16.8333, - "y": 13.9886 - }, - { - "l": "-4.0", - "x": 16.9167, - "y": 14.011 - }, - { - "l": "-4.0", - "x": 17.0, - "y": 14.0326 - }, - { - "l": "-4.0", - "x": 17.0833, - "y": 14.0543 - }, - { - "l": "-4.0", - "x": 17.1667, - "y": 14.0743 - }, - { - "l": "-4.0", - "x": 17.25, - "y": 14.0953 - }, - { - "l": "-4.0", - "x": 17.3333, - "y": 14.1163 - }, - { - "l": "-4.0", - "x": 17.4167, - "y": 14.1367 - }, - { - "l": "-4.0", - "x": 17.5, - "y": 14.1564 - }, - { - "l": "-4.0", - "x": 17.5833, - "y": 14.1757 - }, - { - "l": "-4.0", - "x": 17.6667, - "y": 14.1957 - }, - { - "l": "-4.0", - "x": 17.75, - "y": 14.2141 - }, - { - "l": "-4.0", - "x": 17.8333, - "y": 14.2331 - }, - { - "l": "-4.0", - "x": 17.9167, - "y": 14.2521 - }, - { - "l": "-4.0", - "x": 18.0, - "y": 14.2704 - }, - { - "l": "-4.0", - "x": 18.0833, - "y": 14.2884 - }, - { - "l": "-4.0", - "x": 18.1667, - "y": 14.3058 - }, - { - "l": "-4.0", - "x": 18.25, - "y": 14.3234 - }, - { - "l": "-4.0", - "x": 18.3333, - "y": 14.3414 - }, - { - "l": "-4.0", - "x": 18.4167, - "y": 14.3584 - }, - { - "l": "-4.0", - "x": 18.5, - "y": 14.3748 - }, - { - "l": "-4.0", - "x": 18.5833, - "y": 14.3914 - }, - { - "l": "-4.0", - "x": 18.6667, - "y": 14.4084 - }, - { - "l": "-4.0", - "x": 18.75, - "y": 14.4244 - }, - { - "l": "-4.0", - "x": 18.8333, - "y": 14.4394 - }, - { - "l": "-4.0", - "x": 18.9167, - "y": 14.4557 - }, - { - "l": "-4.0", - "x": 19.0, - "y": 14.4717 - }, - { - "l": "-4.0", - "x": 19.0833, - "y": 14.487 - }, - { - "l": "-4.0", - "x": 19.1667, - "y": 14.503 - }, - { - "l": "-4.0", - "x": 19.25, - "y": 14.5166 - }, - { - "l": "-4.0", - "x": 19.3333, - "y": 14.5323 - }, - { - "l": "-4.0", - "x": 19.4167, - "y": 14.5466 - }, - { - "l": "-4.0", - "x": 19.5, - "y": 14.5612 - }, - { - "l": "-4.0", - "x": 19.5833, - "y": 14.5758 - }, - { - "l": "-4.0", - "x": 19.6667, - "y": 14.5888 - }, - { - "l": "-4.0", - "x": 19.75, - "y": 14.6035 - }, - { - "l": "-4.0", - "x": 19.8333, - "y": 14.6181 - }, - { - "l": "-4.0", - "x": 19.9167, - "y": 14.6321 - }, - { - "l": "-4.0", - "x": 20.0, - "y": 14.646 - } - ] - }, - { - "sds": 3.0, - "centile": 99.86501019683699, - "data": [ - { - "l": "3.0", - "x": 4.0, - "y": 21.3798 - }, - { - "l": "3.0", - "x": 4.0833, - "y": 21.4024 - }, - { - "l": "3.0", - "x": 4.1667, - "y": 21.427 - }, - { - "l": "3.0", - "x": 4.25, - "y": 21.4539 - }, - { - "l": "3.0", - "x": 4.3333, - "y": 21.4824 - }, - { - "l": "3.0", - "x": 4.4167, - "y": 21.5132 - }, - { - "l": "3.0", - "x": 4.5, - "y": 21.5462 - }, - { - "l": "3.0", - "x": 4.5833, - "y": 21.581 - }, - { - "l": "3.0", - "x": 4.6667, - "y": 21.6183 - }, - { - "l": "3.0", - "x": 4.75, - "y": 21.6606 - }, - { - "l": "3.0", - "x": 4.8333, - "y": 21.7035 - }, - { - "l": "3.0", - "x": 4.9167, - "y": 21.7516 - }, - { - "l": "3.0", - "x": 5.0, - "y": 21.8016 - }, - { - "l": "3.0", - "x": 5.0833, - "y": 21.8556 - }, - { - "l": "3.0", - "x": 5.1667, - "y": 21.9142 - }, - { - "l": "3.0", - "x": 5.25, - "y": 21.9757 - }, - { - "l": "3.0", - "x": 5.3333, - "y": 22.0407 - }, - { - "l": "3.0", - "x": 5.4167, - "y": 22.1059 - }, - { - "l": "3.0", - "x": 5.5, - "y": 22.1787 - }, - { - "l": "3.0", - "x": 5.5833, - "y": 22.2548 - }, - { - "l": "3.0", - "x": 5.6667, - "y": 22.3347 - }, - { - "l": "3.0", - "x": 5.75, - "y": 22.4151 - }, - { - "l": "3.0", - "x": 5.8333, - "y": 22.5018 - }, - { - "l": "3.0", - "x": 5.9167, - "y": 22.5894 - }, - { - "l": "3.0", - "x": 6.0, - "y": 22.6804 - }, - { - "l": "3.0", - "x": 6.0833, - "y": 22.775 - }, - { - "l": "3.0", - "x": 6.1667, - "y": 22.876 - }, - { - "l": "3.0", - "x": 6.25, - "y": 22.9736 - }, - { - "l": "3.0", - "x": 6.3333, - "y": 23.0773 - }, - { - "l": "3.0", - "x": 6.4167, - "y": 23.1824 - }, - { - "l": "3.0", - "x": 6.5, - "y": 23.2928 - }, - { - "l": "3.0", - "x": 6.5833, - "y": 23.4036 - }, - { - "l": "3.0", - "x": 6.6667, - "y": 23.5209 - }, - { - "l": "3.0", - "x": 6.75, - "y": 23.6343 - }, - { - "l": "3.0", - "x": 6.8333, - "y": 23.7534 - }, - { - "l": "3.0", - "x": 6.9167, - "y": 23.8724 - }, - { - "l": "3.0", - "x": 7.0, - "y": 23.9939 - }, - { - "l": "3.0", - "x": 7.0833, - "y": 24.1185 - }, - { - "l": "3.0", - "x": 7.1667, - "y": 24.2402 - }, - { - "l": "3.0", - "x": 7.25, - "y": 24.3691 - }, - { - "l": "3.0", - "x": 7.3333, - "y": 24.4934 - }, - { - "l": "3.0", - "x": 7.4167, - "y": 24.6207 - }, - { - "l": "3.0", - "x": 7.5, - "y": 24.7491 - }, - { - "l": "3.0", - "x": 7.5833, - "y": 24.8773 - }, - { - "l": "3.0", - "x": 7.6667, - "y": 25.0056 - }, - { - "l": "3.0", - "x": 7.75, - "y": 25.1333 - }, - { - "l": "3.0", - "x": 7.8333, - "y": 25.2655 - }, - { - "l": "3.0", - "x": 7.9167, - "y": 25.3941 - }, - { - "l": "3.0", - "x": 8.0, - "y": 25.5273 - }, - { - "l": "3.0", - "x": 8.0833, - "y": 25.6537 - }, - { - "l": "3.0", - "x": 8.1667, - "y": 25.7836 - }, - { - "l": "3.0", - "x": 8.25, - "y": 25.9121 - }, - { - "l": "3.0", - "x": 8.3333, - "y": 26.0433 - }, - { - "l": "3.0", - "x": 8.4167, - "y": 26.1699 - }, - { - "l": "3.0", - "x": 8.5, - "y": 26.303 - }, - { - "l": "3.0", - "x": 8.5833, - "y": 26.43 - }, - { - "l": "3.0", - "x": 8.6667, - "y": 26.5579 - }, - { - "l": "3.0", - "x": 8.75, - "y": 26.6891 - }, - { - "l": "3.0", - "x": 8.8333, - "y": 26.8154 - }, - { - "l": "3.0", - "x": 8.9167, - "y": 26.9399 - }, - { - "l": "3.0", - "x": 9.0, - "y": 27.0677 - }, - { - "l": "3.0", - "x": 9.0833, - "y": 27.1962 - }, - { - "l": "3.0", - "x": 9.1667, - "y": 27.316 - }, - { - "l": "3.0", - "x": 9.25, - "y": 27.4442 - }, - { - "l": "3.0", - "x": 9.3333, - "y": 27.5668 - }, - { - "l": "3.0", - "x": 9.4167, - "y": 27.6928 - }, - { - "l": "3.0", - "x": 9.5, - "y": 27.8131 - }, - { - "l": "3.0", - "x": 9.5833, - "y": 27.9338 - }, - { - "l": "3.0", - "x": 9.6667, - "y": 28.0549 - }, - { - "l": "3.0", - "x": 9.75, - "y": 28.173 - }, - { - "l": "3.0", - "x": 9.8333, - "y": 28.2932 - }, - { - "l": "3.0", - "x": 9.9167, - "y": 28.4103 - }, - { - "l": "3.0", - "x": 10.0, - "y": 28.5277 - }, - { - "l": "3.0", - "x": 10.0833, - "y": 28.6436 - }, - { - "l": "3.0", - "x": 10.1667, - "y": 28.7615 - }, - { - "l": "3.0", - "x": 10.25, - "y": 28.8763 - }, - { - "l": "3.0", - "x": 10.3333, - "y": 28.9843 - }, - { - "l": "3.0", - "x": 10.4167, - "y": 29.0994 - }, - { - "l": "3.0", - "x": 10.5, - "y": 29.2129 - }, - { - "l": "3.0", - "x": 10.5833, - "y": 29.3178 - }, - { - "l": "3.0", - "x": 10.6667, - "y": 29.4316 - }, - { - "l": "3.0", - "x": 10.75, - "y": 29.5365 - }, - { - "l": "3.0", - "x": 10.8333, - "y": 29.647 - }, - { - "l": "3.0", - "x": 10.9167, - "y": 29.7486 - }, - { - "l": "3.0", - "x": 11.0, - "y": 29.8519 - }, - { - "l": "3.0", - "x": 11.0833, - "y": 29.9608 - }, - { - "l": "3.0", - "x": 11.1667, - "y": 30.0606 - }, - { - "l": "3.0", - "x": 11.25, - "y": 30.1659 - }, - { - "l": "3.0", - "x": 11.3333, - "y": 30.2656 - }, - { - "l": "3.0", - "x": 11.4167, - "y": 30.3636 - }, - { - "l": "3.0", - "x": 11.5, - "y": 30.4614 - }, - { - "l": "3.0", - "x": 11.5833, - "y": 30.5613 - }, - { - "l": "3.0", - "x": 11.6667, - "y": 30.6592 - }, - { - "l": "3.0", - "x": 11.75, - "y": 30.7533 - }, - { - "l": "3.0", - "x": 11.8333, - "y": 30.8513 - }, - { - "l": "3.0", - "x": 11.9167, - "y": 30.9435 - }, - { - "l": "3.0", - "x": 12.0, - "y": 31.0356 - }, - { - "l": "3.0", - "x": 12.0833, - "y": 31.1258 - }, - { - "l": "3.0", - "x": 12.1667, - "y": 31.2218 - }, - { - "l": "3.0", - "x": 12.25, - "y": 31.3083 - }, - { - "l": "3.0", - "x": 12.3333, - "y": 31.3983 - }, - { - "l": "3.0", - "x": 12.4167, - "y": 31.4829 - }, - { - "l": "3.0", - "x": 12.5, - "y": 31.5692 - }, - { - "l": "3.0", - "x": 12.5833, - "y": 31.6577 - }, - { - "l": "3.0", - "x": 12.6667, - "y": 31.7401 - }, - { - "l": "3.0", - "x": 12.75, - "y": 31.8244 - }, - { - "l": "3.0", - "x": 12.8333, - "y": 31.905 - }, - { - "l": "3.0", - "x": 12.9167, - "y": 31.9896 - }, - { - "l": "3.0", - "x": 13.0, - "y": 32.0682 - }, - { - "l": "3.0", - "x": 13.0833, - "y": 32.1451 - }, - { - "l": "3.0", - "x": 13.1667, - "y": 32.2234 - }, - { - "l": "3.0", - "x": 13.25, - "y": 32.3044 - }, - { - "l": "3.0", - "x": 13.3333, - "y": 32.3773 - }, - { - "l": "3.0", - "x": 13.4167, - "y": 32.4521 - }, - { - "l": "3.0", - "x": 13.5, - "y": 32.5291 - }, - { - "l": "3.0", - "x": 13.5833, - "y": 32.6002 - }, - { - "l": "3.0", - "x": 13.6667, - "y": 32.6713 - }, - { - "l": "3.0", - "x": 13.75, - "y": 32.7428 - }, - { - "l": "3.0", - "x": 13.8333, - "y": 32.8121 - }, - { - "l": "3.0", - "x": 13.9167, - "y": 32.8776 - }, - { - "l": "3.0", - "x": 14.0, - "y": 32.949 - }, - { - "l": "3.0", - "x": 14.0833, - "y": 33.0126 - }, - { - "l": "3.0", - "x": 14.1667, - "y": 33.0805 - }, - { - "l": "3.0", - "x": 14.25, - "y": 33.1423 - }, - { - "l": "3.0", - "x": 14.3333, - "y": 33.2026 - }, - { - "l": "3.0", - "x": 14.4167, - "y": 33.2684 - }, - { - "l": "3.0", - "x": 14.5, - "y": 33.3267 - }, - { - "l": "3.0", - "x": 14.5833, - "y": 33.3891 - }, - { - "l": "3.0", - "x": 14.6667, - "y": 33.4456 - }, - { - "l": "3.0", - "x": 14.75, - "y": 33.506 - }, - { - "l": "3.0", - "x": 14.8333, - "y": 33.559 - }, - { - "l": "3.0", - "x": 14.9167, - "y": 33.6196 - }, - { - "l": "3.0", - "x": 15.0, - "y": 33.6706 - }, - { - "l": "3.0", - "x": 15.0833, - "y": 33.7277 - }, - { - "l": "3.0", - "x": 15.1667, - "y": 33.777 - }, - { - "l": "3.0", - "x": 15.25, - "y": 33.8304 - }, - { - "l": "3.0", - "x": 15.3333, - "y": 33.8782 - }, - { - "l": "3.0", - "x": 15.4167, - "y": 33.9315 - }, - { - "l": "3.0", - "x": 15.5, - "y": 33.9757 - }, - { - "l": "3.0", - "x": 15.5833, - "y": 34.0275 - }, - { - "l": "3.0", - "x": 15.6667, - "y": 34.0757 - }, - { - "l": "3.0", - "x": 15.75, - "y": 34.1181 - }, - { - "l": "3.0", - "x": 15.8333, - "y": 34.1682 - }, - { - "l": "3.0", - "x": 15.9167, - "y": 34.2089 - }, - { - "l": "3.0", - "x": 16.0, - "y": 34.2555 - }, - { - "l": "3.0", - "x": 16.0833, - "y": 34.3002 - }, - { - "l": "3.0", - "x": 16.1667, - "y": 34.3375 - }, - { - "l": "3.0", - "x": 16.25, - "y": 34.3824 - }, - { - "l": "3.0", - "x": 16.3333, - "y": 34.4237 - }, - { - "l": "3.0", - "x": 16.4167, - "y": 34.4612 - }, - { - "l": "3.0", - "x": 16.5, - "y": 34.5024 - }, - { - "l": "3.0", - "x": 16.5833, - "y": 34.5422 - }, - { - "l": "3.0", - "x": 16.6667, - "y": 34.5744 - }, - { - "l": "3.0", - "x": 16.75, - "y": 34.6142 - }, - { - "l": "3.0", - "x": 16.8333, - "y": 34.6523 - }, - { - "l": "3.0", - "x": 16.9167, - "y": 34.6844 - }, - { - "l": "3.0", - "x": 17.0, - "y": 34.7208 - }, - { - "l": "3.0", - "x": 17.0833, - "y": 34.7572 - }, - { - "l": "3.0", - "x": 17.1667, - "y": 34.7863 - }, - { - "l": "3.0", - "x": 17.25, - "y": 34.8209 - }, - { - "l": "3.0", - "x": 17.3333, - "y": 34.8556 - }, - { - "l": "3.0", - "x": 17.4167, - "y": 34.8886 - }, - { - "l": "3.0", - "x": 17.5, - "y": 34.9141 - }, - { - "l": "3.0", - "x": 17.5833, - "y": 34.9473 - }, - { - "l": "3.0", - "x": 17.6667, - "y": 34.9767 - }, - { - "l": "3.0", - "x": 17.75, - "y": 35.0043 - }, - { - "l": "3.0", - "x": 17.8333, - "y": 35.0339 - }, - { - "l": "3.0", - "x": 17.9167, - "y": 35.0635 - }, - { - "l": "3.0", - "x": 18.0, - "y": 35.0915 - }, - { - "l": "3.0", - "x": 18.0833, - "y": 35.1213 - }, - { - "l": "3.0", - "x": 18.1667, - "y": 35.1437 - }, - { - "l": "3.0", - "x": 18.25, - "y": 35.17 - }, - { - "l": "3.0", - "x": 18.3333, - "y": 35.1998 - }, - { - "l": "3.0", - "x": 18.4167, - "y": 35.2244 - }, - { - "l": "3.0", - "x": 18.5, - "y": 35.2471 - }, - { - "l": "3.0", - "x": 18.5833, - "y": 35.2736 - }, - { - "l": "3.0", - "x": 18.6667, - "y": 35.2982 - }, - { - "l": "3.0", - "x": 18.75, - "y": 35.323 - }, - { - "l": "3.0", - "x": 18.8333, - "y": 35.3424 - }, - { - "l": "3.0", - "x": 18.9167, - "y": 35.3653 - }, - { - "l": "3.0", - "x": 19.0, - "y": 35.3901 - }, - { - "l": "3.0", - "x": 19.0833, - "y": 35.4133 - }, - { - "l": "3.0", - "x": 19.1667, - "y": 35.4381 - }, - { - "l": "3.0", - "x": 19.25, - "y": 35.4542 - }, - { - "l": "3.0", - "x": 19.3333, - "y": 35.4755 - }, - { - "l": "3.0", - "x": 19.4167, - "y": 35.4989 - }, - { - "l": "3.0", - "x": 19.5, - "y": 35.5204 - }, - { - "l": "3.0", - "x": 19.5833, - "y": 35.5419 - }, - { - "l": "3.0", - "x": 19.6667, - "y": 35.5564 - }, - { - "l": "3.0", - "x": 19.75, - "y": 35.5779 - }, - { - "l": "3.0", - "x": 19.8333, - "y": 35.5994 - }, - { - "l": "3.0", - "x": 19.9167, - "y": 35.6193 - }, - { - "l": "3.0", - "x": 20.0, - "y": 35.6392 - } - ] - }, - { - "sds": 3.33, - "centile": 99.95657700796184, - "data": [ - { - "l": "3.33", - "x": 4.0, - "y": 22.3022 - }, - { - "l": "3.33", - "x": 4.0833, - "y": 22.3347 - }, - { - "l": "3.33", - "x": 4.1667, - "y": 22.3699 - }, - { - "l": "3.33", - "x": 4.25, - "y": 22.4078 - }, - { - "l": "3.33", - "x": 4.3333, - "y": 22.4477 - }, - { - "l": "3.33", - "x": 4.4167, - "y": 22.4904 - }, - { - "l": "3.33", - "x": 4.5, - "y": 22.536 - }, - { - "l": "3.33", - "x": 4.5833, - "y": 22.5836 - }, - { - "l": "3.33", - "x": 4.6667, - "y": 22.6339 - }, - { - "l": "3.33", - "x": 4.75, - "y": 22.6905 - }, - { - "l": "3.33", - "x": 4.8333, - "y": 22.7474 - }, - { - "l": "3.33", - "x": 4.9167, - "y": 22.8109 - }, - { - "l": "3.33", - "x": 5.0, - "y": 22.8761 - }, - { - "l": "3.33", - "x": 5.0833, - "y": 22.9461 - }, - { - "l": "3.33", - "x": 5.1667, - "y": 23.022 - }, - { - "l": "3.33", - "x": 5.25, - "y": 23.1008 - }, - { - "l": "3.33", - "x": 5.3333, - "y": 23.1837 - }, - { - "l": "3.33", - "x": 5.4167, - "y": 23.2667 - }, - { - "l": "3.33", - "x": 5.5, - "y": 23.3588 - }, - { - "l": "3.33", - "x": 5.5833, - "y": 23.455 - }, - { - "l": "3.33", - "x": 5.6667, - "y": 23.5554 - }, - { - "l": "3.33", - "x": 5.75, - "y": 23.6562 - }, - { - "l": "3.33", - "x": 5.8333, - "y": 23.7651 - }, - { - "l": "3.33", - "x": 5.9167, - "y": 23.8744 - }, - { - "l": "3.33", - "x": 6.0, - "y": 23.9881 - }, - { - "l": "3.33", - "x": 6.0833, - "y": 24.1061 - }, - { - "l": "3.33", - "x": 6.1667, - "y": 24.2319 - }, - { - "l": "3.33", - "x": 6.25, - "y": 24.3532 - }, - { - "l": "3.33", - "x": 6.3333, - "y": 24.4823 - }, - { - "l": "3.33", - "x": 6.4167, - "y": 24.6131 - }, - { - "l": "3.33", - "x": 6.5, - "y": 24.7503 - }, - { - "l": "3.33", - "x": 6.5833, - "y": 24.8876 - }, - { - "l": "3.33", - "x": 6.6667, - "y": 25.0332 - }, - { - "l": "3.33", - "x": 6.75, - "y": 25.174 - }, - { - "l": "3.33", - "x": 6.8333, - "y": 25.3214 - }, - { - "l": "3.33", - "x": 6.9167, - "y": 25.469 - }, - { - "l": "3.33", - "x": 7.0, - "y": 25.6201 - }, - { - "l": "3.33", - "x": 7.0833, - "y": 25.7747 - }, - { - "l": "3.33", - "x": 7.1667, - "y": 25.9255 - }, - { - "l": "3.33", - "x": 7.25, - "y": 26.0855 - }, - { - "l": "3.33", - "x": 7.3333, - "y": 26.2398 - }, - { - "l": "3.33", - "x": 7.4167, - "y": 26.3975 - }, - { - "l": "3.33", - "x": 7.5, - "y": 26.5569 - }, - { - "l": "3.33", - "x": 7.5833, - "y": 26.7164 - }, - { - "l": "3.33", - "x": 7.6667, - "y": 26.8757 - }, - { - "l": "3.33", - "x": 7.75, - "y": 27.0337 - }, - { - "l": "3.33", - "x": 7.8333, - "y": 27.198 - }, - { - "l": "3.33", - "x": 7.9167, - "y": 27.3572 - }, - { - "l": "3.33", - "x": 8.0, - "y": 27.523 - }, - { - "l": "3.33", - "x": 8.0833, - "y": 27.6797 - }, - { - "l": "3.33", - "x": 8.1667, - "y": 27.8394 - }, - { - "l": "3.33", - "x": 8.25, - "y": 27.9985 - }, - { - "l": "3.33", - "x": 8.3333, - "y": 28.1606 - }, - { - "l": "3.33", - "x": 8.4167, - "y": 28.3166 - }, - { - "l": "3.33", - "x": 8.5, - "y": 28.4812 - }, - { - "l": "3.33", - "x": 8.5833, - "y": 28.6371 - }, - { - "l": "3.33", - "x": 8.6667, - "y": 28.7939 - }, - { - "l": "3.33", - "x": 8.75, - "y": 28.956 - }, - { - "l": "3.33", - "x": 8.8333, - "y": 29.1106 - }, - { - "l": "3.33", - "x": 8.9167, - "y": 29.2616 - }, - { - "l": "3.33", - "x": 9.0, - "y": 29.4175 - }, - { - "l": "3.33", - "x": 9.0833, - "y": 29.5745 - }, - { - "l": "3.33", - "x": 9.1667, - "y": 29.7191 - }, - { - "l": "3.33", - "x": 9.25, - "y": 29.875 - }, - { - "l": "3.33", - "x": 9.3333, - "y": 30.0225 - }, - { - "l": "3.33", - "x": 9.4167, - "y": 30.1753 - }, - { - "l": "3.33", - "x": 9.5, - "y": 30.3193 - }, - { - "l": "3.33", - "x": 9.5833, - "y": 30.4636 - }, - { - "l": "3.33", - "x": 9.6667, - "y": 30.608 - }, - { - "l": "3.33", - "x": 9.75, - "y": 30.7484 - }, - { - "l": "3.33", - "x": 9.8333, - "y": 30.8911 - }, - { - "l": "3.33", - "x": 9.9167, - "y": 31.0297 - }, - { - "l": "3.33", - "x": 10.0, - "y": 31.1682 - }, - { - "l": "3.33", - "x": 10.0833, - "y": 31.3049 - }, - { - "l": "3.33", - "x": 10.1667, - "y": 31.4433 - }, - { - "l": "3.33", - "x": 10.25, - "y": 31.5778 - }, - { - "l": "3.33", - "x": 10.3333, - "y": 31.7017 - }, - { - "l": "3.33", - "x": 10.4167, - "y": 31.8358 - }, - { - "l": "3.33", - "x": 10.5, - "y": 31.9678 - }, - { - "l": "3.33", - "x": 10.5833, - "y": 32.0869 - }, - { - "l": "3.33", - "x": 10.6667, - "y": 32.2182 - }, - { - "l": "3.33", - "x": 10.75, - "y": 32.3364 - }, - { - "l": "3.33", - "x": 10.8333, - "y": 32.4633 - }, - { - "l": "3.33", - "x": 10.9167, - "y": 32.5768 - }, - { - "l": "3.33", - "x": 11.0, - "y": 32.6923 - }, - { - "l": "3.33", - "x": 11.0833, - "y": 32.816 - }, - { - "l": "3.33", - "x": 11.1667, - "y": 32.9266 - }, - { - "l": "3.33", - "x": 11.25, - "y": 33.0448 - }, - { - "l": "3.33", - "x": 11.3333, - "y": 33.1543 - }, - { - "l": "3.33", - "x": 11.4167, - "y": 33.262 - }, - { - "l": "3.33", - "x": 11.5, - "y": 33.3684 - }, - { - "l": "3.33", - "x": 11.5833, - "y": 33.4792 - }, - { - "l": "3.33", - "x": 11.6667, - "y": 33.5856 - }, - { - "l": "3.33", - "x": 11.75, - "y": 33.687 - }, - { - "l": "3.33", - "x": 11.8333, - "y": 33.7947 - }, - { - "l": "3.33", - "x": 11.9167, - "y": 33.8934 - }, - { - "l": "3.33", - "x": 12.0, - "y": 33.9914 - }, - { - "l": "3.33", - "x": 12.0833, - "y": 34.0868 - }, - { - "l": "3.33", - "x": 12.1667, - "y": 34.1913 - }, - { - "l": "3.33", - "x": 12.25, - "y": 34.2822 - }, - { - "l": "3.33", - "x": 12.3333, - "y": 34.3768 - }, - { - "l": "3.33", - "x": 12.4167, - "y": 34.465 - }, - { - "l": "3.33", - "x": 12.5, - "y": 34.555 - }, - { - "l": "3.33", - "x": 12.5833, - "y": 34.6497 - }, - { - "l": "3.33", - "x": 12.6667, - "y": 34.7345 - }, - { - "l": "3.33", - "x": 12.75, - "y": 34.8218 - }, - { - "l": "3.33", - "x": 12.8333, - "y": 34.9046 - }, - { - "l": "3.33", - "x": 12.9167, - "y": 34.9938 - }, - { - "l": "3.33", - "x": 13.0, - "y": 35.0739 - }, - { - "l": "3.33", - "x": 13.0833, - "y": 35.1521 - }, - { - "l": "3.33", - "x": 13.1667, - "y": 35.2313 - }, - { - "l": "3.33", - "x": 13.25, - "y": 35.3166 - }, - { - "l": "3.33", - "x": 13.3333, - "y": 35.3894 - }, - { - "l": "3.33", - "x": 13.4167, - "y": 35.4648 - }, - { - "l": "3.33", - "x": 13.5, - "y": 35.5447 - }, - { - "l": "3.33", - "x": 13.5833, - "y": 35.6155 - }, - { - "l": "3.33", - "x": 13.6667, - "y": 35.6862 - }, - { - "l": "3.33", - "x": 13.75, - "y": 35.7597 - }, - { - "l": "3.33", - "x": 13.8333, - "y": 35.8284 - }, - { - "l": "3.33", - "x": 13.9167, - "y": 35.8927 - }, - { - "l": "3.33", - "x": 14.0, - "y": 35.9659 - }, - { - "l": "3.33", - "x": 14.0833, - "y": 36.0275 - }, - { - "l": "3.33", - "x": 14.1667, - "y": 36.097 - }, - { - "l": "3.33", - "x": 14.25, - "y": 36.1566 - }, - { - "l": "3.33", - "x": 14.3333, - "y": 36.2151 - }, - { - "l": "3.33", - "x": 14.4167, - "y": 36.2818 - }, - { - "l": "3.33", - "x": 14.5, - "y": 36.3376 - }, - { - "l": "3.33", - "x": 14.5833, - "y": 36.4005 - }, - { - "l": "3.33", - "x": 14.6667, - "y": 36.4544 - }, - { - "l": "3.33", - "x": 14.75, - "y": 36.5146 - }, - { - "l": "3.33", - "x": 14.8333, - "y": 36.5647 - }, - { - "l": "3.33", - "x": 14.9167, - "y": 36.6256 - }, - { - "l": "3.33", - "x": 15.0, - "y": 36.6731 - }, - { - "l": "3.33", - "x": 15.0833, - "y": 36.7302 - }, - { - "l": "3.33", - "x": 15.1667, - "y": 36.7759 - }, - { - "l": "3.33", - "x": 15.25, - "y": 36.8285 - }, - { - "l": "3.33", - "x": 15.3333, - "y": 36.873 - }, - { - "l": "3.33", - "x": 15.4167, - "y": 36.9255 - }, - { - "l": "3.33", - "x": 15.5, - "y": 36.9656 - }, - { - "l": "3.33", - "x": 15.5833, - "y": 37.017 - }, - { - "l": "3.33", - "x": 15.6667, - "y": 37.064 - }, - { - "l": "3.33", - "x": 15.75, - "y": 37.1022 - }, - { - "l": "3.33", - "x": 15.8333, - "y": 37.1517 - }, - { - "l": "3.33", - "x": 15.9167, - "y": 37.188 - }, - { - "l": "3.33", - "x": 16.0, - "y": 37.2338 - }, - { - "l": "3.33", - "x": 16.0833, - "y": 37.277 - }, - { - "l": "3.33", - "x": 16.1667, - "y": 37.3097 - }, - { - "l": "3.33", - "x": 16.25, - "y": 37.3536 - }, - { - "l": "3.33", - "x": 16.3333, - "y": 37.3931 - }, - { - "l": "3.33", - "x": 16.4167, - "y": 37.4266 - }, - { - "l": "3.33", - "x": 16.5, - "y": 37.466 - }, - { - "l": "3.33", - "x": 16.5833, - "y": 37.5044 - }, - { - "l": "3.33", - "x": 16.6667, - "y": 37.5316 - }, - { - "l": "3.33", - "x": 16.75, - "y": 37.57 - }, - { - "l": "3.33", - "x": 16.8333, - "y": 37.6065 - }, - { - "l": "3.33", - "x": 16.9167, - "y": 37.6338 - }, - { - "l": "3.33", - "x": 17.0, - "y": 37.6685 - }, - { - "l": "3.33", - "x": 17.0833, - "y": 37.7032 - }, - { - "l": "3.33", - "x": 17.1667, - "y": 37.7276 - }, - { - "l": "3.33", - "x": 17.25, - "y": 37.7605 - }, - { - "l": "3.33", - "x": 17.3333, - "y": 37.7933 - }, - { - "l": "3.33", - "x": 17.4167, - "y": 37.8244 - }, - { - "l": "3.33", - "x": 17.5, - "y": 37.8445 - }, - { - "l": "3.33", - "x": 17.5833, - "y": 37.8763 - }, - { - "l": "3.33", - "x": 17.6667, - "y": 37.9029 - }, - { - "l": "3.33", - "x": 17.75, - "y": 37.9264 - }, - { - "l": "3.33", - "x": 17.8333, - "y": 37.9538 - }, - { - "l": "3.33", - "x": 17.9167, - "y": 37.9812 - }, - { - "l": "3.33", - "x": 18.0, - "y": 38.0069 - }, - { - "l": "3.33", - "x": 18.0833, - "y": 38.035 - }, - { - "l": "3.33", - "x": 18.1667, - "y": 38.0524 - }, - { - "l": "3.33", - "x": 18.25, - "y": 38.0762 - }, - { - "l": "3.33", - "x": 18.3333, - "y": 38.1043 - }, - { - "l": "3.33", - "x": 18.4167, - "y": 38.1264 - }, - { - "l": "3.33", - "x": 18.5, - "y": 38.1445 - }, - { - "l": "3.33", - "x": 18.5833, - "y": 38.1691 - }, - { - "l": "3.33", - "x": 18.6667, - "y": 38.1912 - }, - { - "l": "3.33", - "x": 18.75, - "y": 38.2139 - }, - { - "l": "3.33", - "x": 18.8333, - "y": 38.2286 - }, - { - "l": "3.33", - "x": 18.9167, - "y": 38.2488 - }, - { - "l": "3.33", - "x": 19.0, - "y": 38.2716 - }, - { - "l": "3.33", - "x": 19.0833, - "y": 38.2926 - }, - { - "l": "3.33", - "x": 19.1667, - "y": 38.3154 - }, - { - "l": "3.33", - "x": 19.25, - "y": 38.3266 - }, - { - "l": "3.33", - "x": 19.3333, - "y": 38.3451 - }, - { - "l": "3.33", - "x": 19.4167, - "y": 38.3669 - }, - { - "l": "3.33", - "x": 19.5, - "y": 38.3861 - }, - { - "l": "3.33", - "x": 19.5833, - "y": 38.4053 - }, - { - "l": "3.33", - "x": 19.6667, - "y": 38.4148 - }, - { - "l": "3.33", - "x": 19.75, - "y": 38.4341 - }, - { - "l": "3.33", - "x": 19.8333, - "y": 38.4533 - }, - { - "l": "3.33", - "x": 19.9167, - "y": 38.4708 - }, - { - "l": "3.33", - "x": 20.0, - "y": 38.4883 - } - ] - }, - { - "sds": 3.67, - "centile": 99.98787247657145, - "data": [ - { - "l": "3.67", - "x": 4.0, - "y": 23.3469 - }, - { - "l": "3.67", - "x": 4.0833, - "y": 23.392 - }, - { - "l": "3.67", - "x": 4.1667, - "y": 23.4404 - }, - { - "l": "3.67", - "x": 4.25, - "y": 23.4924 - }, - { - "l": "3.67", - "x": 4.3333, - "y": 23.5466 - }, - { - "l": "3.67", - "x": 4.4167, - "y": 23.6044 - }, - { - "l": "3.67", - "x": 4.5, - "y": 23.6659 - }, - { - "l": "3.67", - "x": 4.5833, - "y": 23.7299 - }, - { - "l": "3.67", - "x": 4.6667, - "y": 23.7966 - }, - { - "l": "3.67", - "x": 4.75, - "y": 23.8715 - }, - { - "l": "3.67", - "x": 4.8333, - "y": 23.9463 - }, - { - "l": "3.67", - "x": 4.9167, - "y": 24.0295 - }, - { - "l": "3.67", - "x": 5.0, - "y": 24.1142 - }, - { - "l": "3.67", - "x": 5.0833, - "y": 24.2049 - }, - { - "l": "3.67", - "x": 5.1667, - "y": 24.3029 - }, - { - "l": "3.67", - "x": 5.25, - "y": 24.4042 - }, - { - "l": "3.67", - "x": 5.3333, - "y": 24.5102 - }, - { - "l": "3.67", - "x": 5.4167, - "y": 24.6161 - }, - { - "l": "3.67", - "x": 5.5, - "y": 24.7332 - }, - { - "l": "3.67", - "x": 5.5833, - "y": 24.8555 - }, - { - "l": "3.67", - "x": 5.6667, - "y": 24.9829 - }, - { - "l": "3.67", - "x": 5.75, - "y": 25.1102 - }, - { - "l": "3.67", - "x": 5.8333, - "y": 25.2482 - }, - { - "l": "3.67", - "x": 5.9167, - "y": 25.3862 - }, - { - "l": "3.67", - "x": 6.0, - "y": 25.5296 - }, - { - "l": "3.67", - "x": 6.0833, - "y": 25.6786 - }, - { - "l": "3.67", - "x": 6.1667, - "y": 25.8374 - }, - { - "l": "3.67", - "x": 6.25, - "y": 25.9902 - }, - { - "l": "3.67", - "x": 6.3333, - "y": 26.1531 - }, - { - "l": "3.67", - "x": 6.4167, - "y": 26.3184 - }, - { - "l": "3.67", - "x": 6.5, - "y": 26.4916 - }, - { - "l": "3.67", - "x": 6.5833, - "y": 26.6644 - }, - { - "l": "3.67", - "x": 6.6667, - "y": 26.8484 - }, - { - "l": "3.67", - "x": 6.75, - "y": 27.0263 - }, - { - "l": "3.67", - "x": 6.8333, - "y": 27.2121 - }, - { - "l": "3.67", - "x": 6.9167, - "y": 27.3987 - }, - { - "l": "3.67", - "x": 7.0, - "y": 27.5902 - }, - { - "l": "3.67", - "x": 7.0833, - "y": 27.786 - }, - { - "l": "3.67", - "x": 7.1667, - "y": 27.9766 - }, - { - "l": "3.67", - "x": 7.25, - "y": 28.1797 - }, - { - "l": "3.67", - "x": 7.3333, - "y": 28.3755 - }, - { - "l": "3.67", - "x": 7.4167, - "y": 28.5753 - }, - { - "l": "3.67", - "x": 7.5, - "y": 28.7779 - }, - { - "l": "3.67", - "x": 7.5833, - "y": 28.981 - }, - { - "l": "3.67", - "x": 7.6667, - "y": 29.1839 - }, - { - "l": "3.67", - "x": 7.75, - "y": 29.3841 - }, - { - "l": "3.67", - "x": 7.8333, - "y": 29.5938 - }, - { - "l": "3.67", - "x": 7.9167, - "y": 29.796 - }, - { - "l": "3.67", - "x": 8.0, - "y": 30.0081 - }, - { - "l": "3.67", - "x": 8.0833, - "y": 30.2077 - }, - { - "l": "3.67", - "x": 8.1667, - "y": 30.4096 - }, - { - "l": "3.67", - "x": 8.25, - "y": 30.6123 - }, - { - "l": "3.67", - "x": 8.3333, - "y": 30.8185 - }, - { - "l": "3.67", - "x": 8.4167, - "y": 31.016 - }, - { - "l": "3.67", - "x": 8.5, - "y": 31.2259 - }, - { - "l": "3.67", - "x": 8.5833, - "y": 31.423 - }, - { - "l": "3.67", - "x": 8.6667, - "y": 31.6212 - }, - { - "l": "3.67", - "x": 8.75, - "y": 31.8281 - }, - { - "l": "3.67", - "x": 8.8333, - "y": 32.0233 - }, - { - "l": "3.67", - "x": 8.9167, - "y": 32.2119 - }, - { - "l": "3.67", - "x": 9.0, - "y": 32.4083 - }, - { - "l": "3.67", - "x": 9.0833, - "y": 32.6064 - }, - { - "l": "3.67", - "x": 9.1667, - "y": 32.7862 - }, - { - "l": "3.67", - "x": 9.25, - "y": 32.982 - }, - { - "l": "3.67", - "x": 9.3333, - "y": 33.1652 - }, - { - "l": "3.67", - "x": 9.4167, - "y": 33.3565 - }, - { - "l": "3.67", - "x": 9.5, - "y": 33.5345 - }, - { - "l": "3.67", - "x": 9.5833, - "y": 33.7123 - }, - { - "l": "3.67", - "x": 9.6667, - "y": 33.8899 - }, - { - "l": "3.67", - "x": 9.75, - "y": 34.0619 - }, - { - "l": "3.67", - "x": 9.8333, - "y": 34.2367 - }, - { - "l": "3.67", - "x": 9.9167, - "y": 34.4058 - }, - { - "l": "3.67", - "x": 10.0, - "y": 34.5744 - }, - { - "l": "3.67", - "x": 10.0833, - "y": 34.7403 - }, - { - "l": "3.67", - "x": 10.1667, - "y": 34.9076 - }, - { - "l": "3.67", - "x": 10.25, - "y": 35.0701 - }, - { - "l": "3.67", - "x": 10.3333, - "y": 35.2154 - }, - { - "l": "3.67", - "x": 10.4167, - "y": 35.3762 - }, - { - "l": "3.67", - "x": 10.5, - "y": 35.534 - }, - { - "l": "3.67", - "x": 10.5833, - "y": 35.672 - }, - { - "l": "3.67", - "x": 10.6667, - "y": 35.8278 - }, - { - "l": "3.67", - "x": 10.75, - "y": 35.9634 - }, - { - "l": "3.67", - "x": 10.8333, - "y": 36.1129 - }, - { - "l": "3.67", - "x": 10.9167, - "y": 36.2419 - }, - { - "l": "3.67", - "x": 11.0, - "y": 36.373 - }, - { - "l": "3.67", - "x": 11.0833, - "y": 36.5167 - }, - { - "l": "3.67", - "x": 11.1667, - "y": 36.641 - }, - { - "l": "3.67", - "x": 11.25, - "y": 36.7765 - }, - { - "l": "3.67", - "x": 11.3333, - "y": 36.8979 - }, - { - "l": "3.67", - "x": 11.4167, - "y": 37.0173 - }, - { - "l": "3.67", - "x": 11.5, - "y": 37.1337 - }, - { - "l": "3.67", - "x": 11.5833, - "y": 37.2588 - }, - { - "l": "3.67", - "x": 11.6667, - "y": 37.3752 - }, - { - "l": "3.67", - "x": 11.75, - "y": 37.4844 - }, - { - "l": "3.67", - "x": 11.8333, - "y": 37.6044 - }, - { - "l": "3.67", - "x": 11.9167, - "y": 37.7099 - }, - { - "l": "3.67", - "x": 12.0, - "y": 37.8139 - }, - { - "l": "3.67", - "x": 12.0833, - "y": 37.9142 - }, - { - "l": "3.67", - "x": 12.1667, - "y": 38.029 - }, - { - "l": "3.67", - "x": 12.25, - "y": 38.1234 - }, - { - "l": "3.67", - "x": 12.3333, - "y": 38.222 - }, - { - "l": "3.67", - "x": 12.4167, - "y": 38.3128 - }, - { - "l": "3.67", - "x": 12.5, - "y": 38.4055 - }, - { - "l": "3.67", - "x": 12.5833, - "y": 38.507 - }, - { - "l": "3.67", - "x": 12.6667, - "y": 38.5924 - }, - { - "l": "3.67", - "x": 12.75, - "y": 38.6813 - }, - { - "l": "3.67", - "x": 12.8333, - "y": 38.7644 - }, - { - "l": "3.67", - "x": 12.9167, - "y": 38.8584 - }, - { - "l": "3.67", - "x": 13.0, - "y": 38.9378 - }, - { - "l": "3.67", - "x": 13.0833, - "y": 39.015 - }, - { - "l": "3.67", - "x": 13.1667, - "y": 39.0927 - }, - { - "l": "3.67", - "x": 13.25, - "y": 39.1822 - }, - { - "l": "3.67", - "x": 13.3333, - "y": 39.252 - }, - { - "l": "3.67", - "x": 13.4167, - "y": 39.3254 - }, - { - "l": "3.67", - "x": 13.5, - "y": 39.4075 - }, - { - "l": "3.67", - "x": 13.5833, - "y": 39.4751 - }, - { - "l": "3.67", - "x": 13.6667, - "y": 39.5426 - }, - { - "l": "3.67", - "x": 13.75, - "y": 39.6167 - }, - { - "l": "3.67", - "x": 13.8333, - "y": 39.6821 - }, - { - "l": "3.67", - "x": 13.9167, - "y": 39.7418 - }, - { - "l": "3.67", - "x": 14.0, - "y": 39.8158 - }, - { - "l": "3.67", - "x": 14.0833, - "y": 39.8718 - }, - { - "l": "3.67", - "x": 14.1667, - "y": 39.9415 - }, - { - "l": "3.67", - "x": 14.25, - "y": 39.9954 - }, - { - "l": "3.67", - "x": 14.3333, - "y": 40.0488 - }, - { - "l": "3.67", - "x": 14.4167, - "y": 40.1148 - }, - { - "l": "3.67", - "x": 14.5, - "y": 40.1645 - }, - { - "l": "3.67", - "x": 14.5833, - "y": 40.2263 - }, - { - "l": "3.67", - "x": 14.6667, - "y": 40.274 - }, - { - "l": "3.67", - "x": 14.75, - "y": 40.3321 - }, - { - "l": "3.67", - "x": 14.8333, - "y": 40.3757 - }, - { - "l": "3.67", - "x": 14.9167, - "y": 40.4353 - }, - { - "l": "3.67", - "x": 15.0, - "y": 40.4753 - }, - { - "l": "3.67", - "x": 15.0833, - "y": 40.5308 - }, - { - "l": "3.67", - "x": 15.1667, - "y": 40.5688 - }, - { - "l": "3.67", - "x": 15.25, - "y": 40.6186 - }, - { - "l": "3.67", - "x": 15.3333, - "y": 40.6562 - }, - { - "l": "3.67", - "x": 15.4167, - "y": 40.7059 - }, - { - "l": "3.67", - "x": 15.5, - "y": 40.738 - }, - { - "l": "3.67", - "x": 15.5833, - "y": 40.7872 - }, - { - "l": "3.67", - "x": 15.6667, - "y": 40.8308 - }, - { - "l": "3.67", - "x": 15.75, - "y": 40.8609 - }, - { - "l": "3.67", - "x": 15.8333, - "y": 40.9081 - }, - { - "l": "3.67", - "x": 15.9167, - "y": 40.9362 - }, - { - "l": "3.67", - "x": 16.0, - "y": 40.9793 - }, - { - "l": "3.67", - "x": 16.0833, - "y": 41.0188 - }, - { - "l": "3.67", - "x": 16.1667, - "y": 41.043 - }, - { - "l": "3.67", - "x": 16.25, - "y": 41.0841 - }, - { - "l": "3.67", - "x": 16.3333, - "y": 41.1196 - }, - { - "l": "3.67", - "x": 16.4167, - "y": 41.1454 - }, - { - "l": "3.67", - "x": 16.5, - "y": 41.1809 - }, - { - "l": "3.67", - "x": 16.5833, - "y": 41.216 - }, - { - "l": "3.67", - "x": 16.6667, - "y": 41.2344 - }, - { - "l": "3.67", - "x": 16.75, - "y": 41.2694 - }, - { - "l": "3.67", - "x": 16.8333, - "y": 41.3025 - }, - { - "l": "3.67", - "x": 16.9167, - "y": 41.321 - }, - { - "l": "3.67", - "x": 17.0, - "y": 41.3521 - }, - { - "l": "3.67", - "x": 17.0833, - "y": 41.3831 - }, - { - "l": "3.67", - "x": 17.1667, - "y": 41.3993 - }, - { - "l": "3.67", - "x": 17.25, - "y": 41.4284 - }, - { - "l": "3.67", - "x": 17.3333, - "y": 41.4575 - }, - { - "l": "3.67", - "x": 17.4167, - "y": 41.4847 - }, - { - "l": "3.67", - "x": 17.5, - "y": 41.4955 - }, - { - "l": "3.67", - "x": 17.5833, - "y": 41.5242 - }, - { - "l": "3.67", - "x": 17.6667, - "y": 41.5459 - }, - { - "l": "3.67", - "x": 17.75, - "y": 41.5618 - }, - { - "l": "3.67", - "x": 17.8333, - "y": 41.5851 - }, - { - "l": "3.67", - "x": 17.9167, - "y": 41.6084 - }, - { - "l": "3.67", - "x": 18.0, - "y": 41.6297 - }, - { - "l": "3.67", - "x": 18.0833, - "y": 41.6544 - }, - { - "l": "3.67", - "x": 18.1667, - "y": 41.6631 - }, - { - "l": "3.67", - "x": 18.25, - "y": 41.6825 - }, - { - "l": "3.67", - "x": 18.3333, - "y": 41.7073 - }, - { - "l": "3.67", - "x": 18.4167, - "y": 41.7248 - }, - { - "l": "3.67", - "x": 18.5, - "y": 41.7352 - }, - { - "l": "3.67", - "x": 18.5833, - "y": 41.7561 - }, - { - "l": "3.67", - "x": 18.6667, - "y": 41.7736 - }, - { - "l": "3.67", - "x": 18.75, - "y": 41.7925 - }, - { - "l": "3.67", - "x": 18.8333, - "y": 41.7992 - }, - { - "l": "3.67", - "x": 18.9167, - "y": 41.8148 - }, - { - "l": "3.67", - "x": 19.0, - "y": 41.8338 - }, - { - "l": "3.67", - "x": 19.0833, - "y": 41.8509 - }, - { - "l": "3.67", - "x": 19.1667, - "y": 41.87 - }, - { - "l": "3.67", - "x": 19.25, - "y": 41.8729 - }, - { - "l": "3.67", - "x": 19.3333, - "y": 41.8867 - }, - { - "l": "3.67", - "x": 19.4167, - "y": 41.9053 - }, - { - "l": "3.67", - "x": 19.5, - "y": 41.9205 - }, - { - "l": "3.67", - "x": 19.5833, - "y": 41.9357 - }, - { - "l": "3.67", - "x": 19.6667, - "y": 41.937 - }, - { - "l": "3.67", - "x": 19.75, - "y": 41.9522 - }, - { - "l": "3.67", - "x": 19.8333, - "y": 41.9675 - }, - { - "l": "3.67", - "x": 19.9167, - "y": 41.9809 - }, - { - "l": "3.67", - "x": 20.0, - "y": 41.9943 - } - ] - }, - { - "sds": 4.0, - "centile": 99.9968328758167, - "data": [ - { - "l": "4.0", - "x": 4.0, - "y": 24.4671 - }, - { - "l": "4.0", - "x": 4.0833, - "y": 24.5272 - }, - { - "l": "4.0", - "x": 4.1667, - "y": 24.5915 - }, - { - "l": "4.0", - "x": 4.25, - "y": 24.6603 - }, - { - "l": "4.0", - "x": 4.3333, - "y": 24.7317 - }, - { - "l": "4.0", - "x": 4.4167, - "y": 24.8077 - }, - { - "l": "4.0", - "x": 4.5, - "y": 24.8884 - }, - { - "l": "4.0", - "x": 4.5833, - "y": 24.9721 - }, - { - "l": "4.0", - "x": 4.6667, - "y": 25.0588 - }, - { - "l": "4.0", - "x": 4.75, - "y": 25.1557 - }, - { - "l": "4.0", - "x": 4.8333, - "y": 25.2523 - }, - { - "l": "4.0", - "x": 4.9167, - "y": 25.3595 - }, - { - "l": "4.0", - "x": 5.0, - "y": 25.468 - }, - { - "l": "4.0", - "x": 5.0833, - "y": 25.5837 - }, - { - "l": "4.0", - "x": 5.1667, - "y": 25.7092 - }, - { - "l": "4.0", - "x": 5.25, - "y": 25.8379 - }, - { - "l": "4.0", - "x": 5.3333, - "y": 25.9723 - }, - { - "l": "4.0", - "x": 5.4167, - "y": 26.1065 - }, - { - "l": "4.0", - "x": 5.5, - "y": 26.2547 - }, - { - "l": "4.0", - "x": 5.5833, - "y": 26.4094 - }, - { - "l": "4.0", - "x": 5.6667, - "y": 26.5703 - }, - { - "l": "4.0", - "x": 5.75, - "y": 26.7308 - }, - { - "l": "4.0", - "x": 5.8333, - "y": 26.9054 - }, - { - "l": "4.0", - "x": 5.9167, - "y": 27.0793 - }, - { - "l": "4.0", - "x": 6.0, - "y": 27.2602 - }, - { - "l": "4.0", - "x": 6.0833, - "y": 27.4484 - }, - { - "l": "4.0", - "x": 6.1667, - "y": 27.6492 - }, - { - "l": "4.0", - "x": 6.25, - "y": 27.8421 - }, - { - "l": "4.0", - "x": 6.3333, - "y": 28.0484 - }, - { - "l": "4.0", - "x": 6.4167, - "y": 28.258 - }, - { - "l": "4.0", - "x": 6.5, - "y": 28.4777 - }, - { - "l": "4.0", - "x": 6.5833, - "y": 28.6964 - }, - { - "l": "4.0", - "x": 6.6667, - "y": 28.9302 - }, - { - "l": "4.0", - "x": 6.75, - "y": 29.1565 - }, - { - "l": "4.0", - "x": 6.8333, - "y": 29.3926 - }, - { - "l": "4.0", - "x": 6.9167, - "y": 29.6304 - }, - { - "l": "4.0", - "x": 7.0, - "y": 29.8753 - }, - { - "l": "4.0", - "x": 7.0833, - "y": 30.1259 - }, - { - "l": "4.0", - "x": 7.1667, - "y": 30.3693 - }, - { - "l": "4.0", - "x": 7.25, - "y": 30.6301 - }, - { - "l": "4.0", - "x": 7.3333, - "y": 30.8813 - }, - { - "l": "4.0", - "x": 7.4167, - "y": 31.1378 - }, - { - "l": "4.0", - "x": 7.5, - "y": 31.3987 - }, - { - "l": "4.0", - "x": 7.5833, - "y": 31.661 - }, - { - "l": "4.0", - "x": 7.6667, - "y": 31.9234 - }, - { - "l": "4.0", - "x": 7.75, - "y": 32.1812 - }, - { - "l": "4.0", - "x": 7.8333, - "y": 32.4531 - }, - { - "l": "4.0", - "x": 7.9167, - "y": 32.7145 - }, - { - "l": "4.0", - "x": 8.0, - "y": 32.9906 - }, - { - "l": "4.0", - "x": 8.0833, - "y": 33.2497 - }, - { - "l": "4.0", - "x": 8.1667, - "y": 33.5096 - }, - { - "l": "4.0", - "x": 8.25, - "y": 33.7731 - }, - { - "l": "4.0", - "x": 8.3333, - "y": 34.0409 - }, - { - "l": "4.0", - "x": 8.4167, - "y": 34.2965 - }, - { - "l": "4.0", - "x": 8.5, - "y": 34.5701 - }, - { - "l": "4.0", - "x": 8.5833, - "y": 34.825 - }, - { - "l": "4.0", - "x": 8.6667, - "y": 35.0811 - }, - { - "l": "4.0", - "x": 8.75, - "y": 35.3518 - }, - { - "l": "4.0", - "x": 8.8333, - "y": 35.6043 - }, - { - "l": "4.0", - "x": 8.9167, - "y": 35.8455 - }, - { - "l": "4.0", - "x": 9.0, - "y": 36.0993 - }, - { - "l": "4.0", - "x": 9.0833, - "y": 36.3558 - }, - { - "l": "4.0", - "x": 9.1667, - "y": 36.585 - }, - { - "l": "4.0", - "x": 9.25, - "y": 36.8379 - }, - { - "l": "4.0", - "x": 9.3333, - "y": 37.0711 - }, - { - "l": "4.0", - "x": 9.4167, - "y": 37.3176 - }, - { - "l": "4.0", - "x": 9.5, - "y": 37.5434 - }, - { - "l": "4.0", - "x": 9.5833, - "y": 37.7685 - }, - { - "l": "4.0", - "x": 9.6667, - "y": 37.9927 - }, - { - "l": "4.0", - "x": 9.75, - "y": 38.2092 - }, - { - "l": "4.0", - "x": 9.8333, - "y": 38.4292 - }, - { - "l": "4.0", - "x": 9.9167, - "y": 38.6411 - }, - { - "l": "4.0", - "x": 10.0, - "y": 38.8517 - }, - { - "l": "4.0", - "x": 10.0833, - "y": 39.0587 - }, - { - "l": "4.0", - "x": 10.1667, - "y": 39.2664 - }, - { - "l": "4.0", - "x": 10.25, - "y": 39.4679 - }, - { - "l": "4.0", - "x": 10.3333, - "y": 39.6417 - }, - { - "l": "4.0", - "x": 10.4167, - "y": 39.8395 - }, - { - "l": "4.0", - "x": 10.5, - "y": 40.0331 - }, - { - "l": "4.0", - "x": 10.5833, - "y": 40.1957 - }, - { - "l": "4.0", - "x": 10.6667, - "y": 40.3852 - }, - { - "l": "4.0", - "x": 10.75, - "y": 40.543 - }, - { - "l": "4.0", - "x": 10.8333, - "y": 40.7233 - }, - { - "l": "4.0", - "x": 10.9167, - "y": 40.8714 - }, - { - "l": "4.0", - "x": 11.0, - "y": 41.022 - }, - { - "l": "4.0", - "x": 11.0833, - "y": 41.1926 - }, - { - "l": "4.0", - "x": 11.1667, - "y": 41.3332 - }, - { - "l": "4.0", - "x": 11.25, - "y": 41.4912 - }, - { - "l": "4.0", - "x": 11.3333, - "y": 41.6264 - }, - { - "l": "4.0", - "x": 11.4167, - "y": 41.7592 - }, - { - "l": "4.0", - "x": 11.5, - "y": 41.8864 - }, - { - "l": "4.0", - "x": 11.5833, - "y": 42.0293 - }, - { - "l": "4.0", - "x": 11.6667, - "y": 42.1564 - }, - { - "l": "4.0", - "x": 11.75, - "y": 42.2732 - }, - { - "l": "4.0", - "x": 11.8333, - "y": 42.4081 - }, - { - "l": "4.0", - "x": 11.9167, - "y": 42.5195 - }, - { - "l": "4.0", - "x": 12.0, - "y": 42.628 - }, - { - "l": "4.0", - "x": 12.0833, - "y": 42.7313 - }, - { - "l": "4.0", - "x": 12.1667, - "y": 42.8579 - }, - { - "l": "4.0", - "x": 12.25, - "y": 42.9534 - }, - { - "l": "4.0", - "x": 12.3333, - "y": 43.0536 - }, - { - "l": "4.0", - "x": 12.4167, - "y": 43.1438 - }, - { - "l": "4.0", - "x": 12.5, - "y": 43.2362 - }, - { - "l": "4.0", - "x": 12.5833, - "y": 43.3445 - }, - { - "l": "4.0", - "x": 12.6667, - "y": 43.4264 - }, - { - "l": "4.0", - "x": 12.75, - "y": 43.5135 - }, - { - "l": "4.0", - "x": 12.8333, - "y": 43.593 - }, - { - "l": "4.0", - "x": 12.9167, - "y": 43.6905 - }, - { - "l": "4.0", - "x": 13.0, - "y": 43.7647 - }, - { - "l": "4.0", - "x": 13.0833, - "y": 43.8365 - }, - { - "l": "4.0", - "x": 13.1667, - "y": 43.9078 - }, - { - "l": "4.0", - "x": 13.25, - "y": 44.0003 - }, - { - "l": "4.0", - "x": 13.3333, - "y": 44.0617 - }, - { - "l": "4.0", - "x": 13.4167, - "y": 44.1282 - }, - { - "l": "4.0", - "x": 13.5, - "y": 44.2103 - }, - { - "l": "4.0", - "x": 13.5833, - "y": 44.2693 - }, - { - "l": "4.0", - "x": 13.6667, - "y": 44.3283 - }, - { - "l": "4.0", - "x": 13.75, - "y": 44.4004 - }, - { - "l": "4.0", - "x": 13.8333, - "y": 44.4571 - }, - { - "l": "4.0", - "x": 13.9167, - "y": 44.5064 - }, - { - "l": "4.0", - "x": 14.0, - "y": 44.5784 - }, - { - "l": "4.0", - "x": 14.0833, - "y": 44.6227 - }, - { - "l": "4.0", - "x": 14.1667, - "y": 44.69 - }, - { - "l": "4.0", - "x": 14.25, - "y": 44.732 - }, - { - "l": "4.0", - "x": 14.3333, - "y": 44.7746 - }, - { - "l": "4.0", - "x": 14.4167, - "y": 44.8368 - }, - { - "l": "4.0", - "x": 14.5, - "y": 44.8744 - }, - { - "l": "4.0", - "x": 14.5833, - "y": 44.9319 - }, - { - "l": "4.0", - "x": 14.6667, - "y": 44.9674 - }, - { - "l": "4.0", - "x": 14.75, - "y": 45.0198 - }, - { - "l": "4.0", - "x": 14.8333, - "y": 45.0509 - }, - { - "l": "4.0", - "x": 14.9167, - "y": 45.1061 - }, - { - "l": "4.0", - "x": 15.0, - "y": 45.1323 - }, - { - "l": "4.0", - "x": 15.0833, - "y": 45.1829 - }, - { - "l": "4.0", - "x": 15.1667, - "y": 45.207 - }, - { - "l": "4.0", - "x": 15.25, - "y": 45.2505 - }, - { - "l": "4.0", - "x": 15.3333, - "y": 45.2752 - }, - { - "l": "4.0", - "x": 15.4167, - "y": 45.3187 - }, - { - "l": "4.0", - "x": 15.5, - "y": 45.3364 - }, - { - "l": "4.0", - "x": 15.5833, - "y": 45.3803 - }, - { - "l": "4.0", - "x": 15.6667, - "y": 45.4171 - }, - { - "l": "4.0", - "x": 15.75, - "y": 45.4329 - }, - { - "l": "4.0", - "x": 15.8333, - "y": 45.4746 - }, - { - "l": "4.0", - "x": 15.9167, - "y": 45.4883 - }, - { - "l": "4.0", - "x": 16.0, - "y": 45.5256 - }, - { - "l": "4.0", - "x": 16.0833, - "y": 45.5581 - }, - { - "l": "4.0", - "x": 16.1667, - "y": 45.5677 - }, - { - "l": "4.0", - "x": 16.25, - "y": 45.6028 - }, - { - "l": "4.0", - "x": 16.3333, - "y": 45.6309 - }, - { - "l": "4.0", - "x": 16.4167, - "y": 45.6434 - }, - { - "l": "4.0", - "x": 16.5, - "y": 45.6716 - }, - { - "l": "4.0", - "x": 16.5833, - "y": 45.7002 - }, - { - "l": "4.0", - "x": 16.6667, - "y": 45.7038 - }, - { - "l": "4.0", - "x": 16.75, - "y": 45.7325 - }, - { - "l": "4.0", - "x": 16.8333, - "y": 45.759 - }, - { - "l": "4.0", - "x": 16.9167, - "y": 45.7629 - }, - { - "l": "4.0", - "x": 17.0, - "y": 45.7873 - }, - { - "l": "4.0", - "x": 17.0833, - "y": 45.8117 - }, - { - "l": "4.0", - "x": 17.1667, - "y": 45.8141 - }, - { - "l": "4.0", - "x": 17.25, - "y": 45.8364 - }, - { - "l": "4.0", - "x": 17.3333, - "y": 45.8587 - }, - { - "l": "4.0", - "x": 17.4167, - "y": 45.8789 - }, - { - "l": "4.0", - "x": 17.5, - "y": 45.8749 - }, - { - "l": "4.0", - "x": 17.5833, - "y": 45.8977 - }, - { - "l": "4.0", - "x": 17.6667, - "y": 45.9111 - }, - { - "l": "4.0", - "x": 17.75, - "y": 45.9146 - }, - { - "l": "4.0", - "x": 17.8333, - "y": 45.9307 - }, - { - "l": "4.0", - "x": 17.9167, - "y": 45.9468 - }, - { - "l": "4.0", - "x": 18.0, - "y": 45.9608 - }, - { - "l": "4.0", - "x": 18.0833, - "y": 45.9794 - }, - { - "l": "4.0", - "x": 18.1667, - "y": 45.9744 - }, - { - "l": "4.0", - "x": 18.25, - "y": 45.9864 - }, - { - "l": "4.0", - "x": 18.3333, - "y": 46.0052 - }, - { - "l": "4.0", - "x": 18.4167, - "y": 46.0151 - }, - { - "l": "4.0", - "x": 18.5, - "y": 46.0129 - }, - { - "l": "4.0", - "x": 18.5833, - "y": 46.0275 - }, - { - "l": "4.0", - "x": 18.6667, - "y": 46.0376 - }, - { - "l": "4.0", - "x": 18.75, - "y": 46.0501 - }, - { - "l": "4.0", - "x": 18.8333, - "y": 46.044 - }, - { - "l": "4.0", - "x": 18.9167, - "y": 46.0521 - }, - { - "l": "4.0", - "x": 19.0, - "y": 46.0648 - }, - { - "l": "4.0", - "x": 19.0833, - "y": 46.0754 - }, - { - "l": "4.0", - "x": 19.1667, - "y": 46.0881 - }, - { - "l": "4.0", - "x": 19.25, - "y": 46.0782 - }, - { - "l": "4.0", - "x": 19.3333, - "y": 46.0844 - }, - { - "l": "4.0", - "x": 19.4167, - "y": 46.0975 - }, - { - "l": "4.0", - "x": 19.5, - "y": 46.1062 - }, - { - "l": "4.0", - "x": 19.5833, - "y": 46.1149 - }, - { - "l": "4.0", - "x": 19.6667, - "y": 46.1034 - }, - { - "l": "4.0", - "x": 19.75, - "y": 46.1122 - }, - { - "l": "4.0", - "x": 19.8333, - "y": 46.121 - }, - { - "l": "4.0", - "x": 19.9167, - "y": 46.1278 - }, - { - "l": "4.0", - "x": 20.0, - "y": 46.1346 - } - ] - } - ] - } - } - } - ] -}; - -var trisomy21BMIMaleSDSData = { - "centile_data": [ - { - "trisomy-21": { - "male": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -5.0, - "centile": 2.866515718791933e-05, - "data": [ - { - "l": "-5.0", - "x": 0.0, - "y": 5.4087 - }, - { - "l": "-5.0", - "x": 0.0192, - "y": 5.6657 - }, - { - "l": "-5.0", - "x": 0.0383, - "y": 5.9275 - }, - { - "l": "-5.0", - "x": 0.0575, - "y": 6.194 - }, - { - "l": "-5.0", - "x": 0.0767, - "y": 6.4652 - }, - { - "l": "-5.0", - "x": 0.0958, - "y": 6.6728 - }, - { - "l": "-5.0", - "x": 0.115, - "y": 6.8467 - }, - { - "l": "-5.0", - "x": 0.1342, - "y": 7.0031 - }, - { - "l": "-5.0", - "x": 0.1533, - "y": 7.1461 - }, - { - "l": "-5.0", - "x": 0.1725, - "y": 7.2826 - }, - { - "l": "-5.0", - "x": 0.1916, - "y": 7.4281 - }, - { - "l": "-5.0", - "x": 0.2108, - "y": 7.5678 - }, - { - "l": "-5.0", - "x": 0.23, - "y": 7.7014 - }, - { - "l": "-5.0", - "x": 0.2491, - "y": 7.8286 - }, - { - "l": "-5.0", - "x": 0.2683, - "y": 7.9483 - }, - { - "l": "-5.0", - "x": 0.2875, - "y": 8.0609 - }, - { - "l": "-5.0", - "x": 0.3066, - "y": 8.1666 - }, - { - "l": "-5.0", - "x": 0.3258, - "y": 8.2653 - }, - { - "l": "-5.0", - "x": 0.345, - "y": 8.3539 - }, - { - "l": "-5.0", - "x": 0.3641, - "y": 8.4352 - }, - { - "l": "-5.0", - "x": 0.3833, - "y": 8.5114 - }, - { - "l": "-5.0", - "x": 0.4025, - "y": 8.5836 - }, - { - "l": "-5.0", - "x": 0.4216, - "y": 8.6536 - }, - { - "l": "-5.0", - "x": 0.4408, - "y": 8.7266 - }, - { - "l": "-5.0", - "x": 0.46, - "y": 8.7973 - }, - { - "l": "-5.0", - "x": 0.4791, - "y": 8.8655 - }, - { - "l": "-5.0", - "x": 0.4983, - "y": 8.9307 - }, - { - "l": "-5.0", - "x": 0.5175, - "y": 8.9918 - }, - { - "l": "-5.0", - "x": 0.5366, - "y": 9.0493 - }, - { - "l": "-5.0", - "x": 0.5558, - "y": 9.1033 - }, - { - "l": "-5.0", - "x": 0.5749, - "y": 9.1537 - }, - { - "l": "-5.0", - "x": 0.5941, - "y": 9.1988 - }, - { - "l": "-5.0", - "x": 0.6133, - "y": 9.24 - }, - { - "l": "-5.0", - "x": 0.6324, - "y": 9.2785 - }, - { - "l": "-5.0", - "x": 0.6516, - "y": 9.3149 - }, - { - "l": "-5.0", - "x": 0.6708, - "y": 9.35 - }, - { - "l": "-5.0", - "x": 0.6899, - "y": 9.3865 - }, - { - "l": "-5.0", - "x": 0.7091, - "y": 9.4218 - }, - { - "l": "-5.0", - "x": 0.7283, - "y": 9.4558 - }, - { - "l": "-5.0", - "x": 0.7474, - "y": 9.4883 - }, - { - "l": "-5.0", - "x": 0.7666, - "y": 9.5188 - }, - { - "l": "-5.0", - "x": 0.7858, - "y": 9.5475 - }, - { - "l": "-5.0", - "x": 0.8049, - "y": 9.5745 - }, - { - "l": "-5.0", - "x": 0.8241, - "y": 9.5997 - }, - { - "l": "-5.0", - "x": 0.8433, - "y": 9.6224 - }, - { - "l": "-5.0", - "x": 0.8624, - "y": 9.6431 - }, - { - "l": "-5.0", - "x": 0.8816, - "y": 9.6626 - }, - { - "l": "-5.0", - "x": 0.9008, - "y": 9.6811 - }, - { - "l": "-5.0", - "x": 0.9199, - "y": 9.699 - }, - { - "l": "-5.0", - "x": 0.9391, - "y": 9.7177 - }, - { - "l": "-5.0", - "x": 0.9582, - "y": 9.736 - }, - { - "l": "-5.0", - "x": 0.9774, - "y": 9.7537 - }, - { - "l": "-5.0", - "x": 0.9966, - "y": 9.7707 - }, - { - "l": "-5.0", - "x": 1.0157, - "y": 9.7869 - }, - { - "l": "-5.0", - "x": 1.0349, - "y": 9.8022 - }, - { - "l": "-5.0", - "x": 1.0541, - "y": 9.8167 - }, - { - "l": "-5.0", - "x": 1.0732, - "y": 9.8304 - }, - { - "l": "-5.0", - "x": 1.0924, - "y": 9.8428 - }, - { - "l": "-5.0", - "x": 1.1116, - "y": 9.8543 - }, - { - "l": "-5.0", - "x": 1.1307, - "y": 9.8651 - }, - { - "l": "-5.0", - "x": 1.1499, - "y": 9.8755 - }, - { - "l": "-5.0", - "x": 1.1691, - "y": 9.8856 - }, - { - "l": "-5.0", - "x": 1.1882, - "y": 9.8962 - }, - { - "l": "-5.0", - "x": 1.2074, - "y": 9.9066 - }, - { - "l": "-5.0", - "x": 1.2266, - "y": 9.9167 - }, - { - "l": "-5.0", - "x": 1.2457, - "y": 9.9265 - }, - { - "l": "-5.0", - "x": 1.2649, - "y": 9.9359 - }, - { - "l": "-5.0", - "x": 1.2841, - "y": 9.9449 - }, - { - "l": "-5.0", - "x": 1.3032, - "y": 9.9535 - }, - { - "l": "-5.0", - "x": 1.3224, - "y": 9.9616 - }, - { - "l": "-5.0", - "x": 1.3415, - "y": 9.969 - }, - { - "l": "-5.0", - "x": 1.3607, - "y": 9.9758 - }, - { - "l": "-5.0", - "x": 1.3799, - "y": 9.9822 - }, - { - "l": "-5.0", - "x": 1.399, - "y": 9.9884 - }, - { - "l": "-5.0", - "x": 1.4182, - "y": 9.9944 - }, - { - "l": "-5.0", - "x": 1.4374, - "y": 10.0008 - }, - { - "l": "-5.0", - "x": 1.4565, - "y": 10.0071 - }, - { - "l": "-5.0", - "x": 1.4757, - "y": 10.0132 - }, - { - "l": "-5.0", - "x": 1.4949, - "y": 10.0192 - }, - { - "l": "-5.0", - "x": 1.514, - "y": 10.025 - }, - { - "l": "-5.0", - "x": 1.5332, - "y": 10.0305 - }, - { - "l": "-5.0", - "x": 1.5524, - "y": 10.0357 - }, - { - "l": "-5.0", - "x": 1.5715, - "y": 10.0407 - }, - { - "l": "-5.0", - "x": 1.5907, - "y": 10.0452 - }, - { - "l": "-5.0", - "x": 1.6099, - "y": 10.0494 - }, - { - "l": "-5.0", - "x": 1.629, - "y": 10.0533 - }, - { - "l": "-5.0", - "x": 1.6482, - "y": 10.0571 - }, - { - "l": "-5.0", - "x": 1.6674, - "y": 10.0608 - }, - { - "l": "-5.0", - "x": 1.6865, - "y": 10.0646 - }, - { - "l": "-5.0", - "x": 1.7057, - "y": 10.0684 - }, - { - "l": "-5.0", - "x": 1.7248, - "y": 10.0721 - }, - { - "l": "-5.0", - "x": 1.744, - "y": 10.0756 - }, - { - "l": "-5.0", - "x": 1.7632, - "y": 10.079 - }, - { - "l": "-5.0", - "x": 1.7823, - "y": 10.0821 - }, - { - "l": "-5.0", - "x": 1.8015, - "y": 10.0851 - }, - { - "l": "-5.0", - "x": 1.8207, - "y": 10.0879 - }, - { - "l": "-5.0", - "x": 1.8398, - "y": 10.0905 - }, - { - "l": "-5.0", - "x": 1.859, - "y": 10.0928 - }, - { - "l": "-5.0", - "x": 1.8782, - "y": 10.095 - }, - { - "l": "-5.0", - "x": 1.8973, - "y": 10.097 - }, - { - "l": "-5.0", - "x": 1.9165, - "y": 10.099 - }, - { - "l": "-5.0", - "x": 1.9357, - "y": 10.1011 - }, - { - "l": "-5.0", - "x": 1.9548, - "y": 10.1031 - }, - { - "l": "-5.0", - "x": 1.974, - "y": 10.105 - }, - { - "l": "-5.0", - "x": 1.9932, - "y": 10.1068 - }, - { - "l": "-5.0", - "x": 2.0123, - "y": 10.1085 - }, - { - "l": "-5.0", - "x": 2.0957, - "y": 10.1144 - }, - { - "l": "-5.0", - "x": 2.179, - "y": 10.1181 - }, - { - "l": "-5.0", - "x": 2.2623, - "y": 10.1206 - }, - { - "l": "-5.0", - "x": 2.3457, - "y": 10.1214 - }, - { - "l": "-5.0", - "x": 2.429, - "y": 10.1208 - }, - { - "l": "-5.0", - "x": 2.5123, - "y": 10.1192 - }, - { - "l": "-5.0", - "x": 2.5957, - "y": 10.1171 - }, - { - "l": "-5.0", - "x": 2.679, - "y": 10.1146 - }, - { - "l": "-5.0", - "x": 2.7623, - "y": 10.1118 - }, - { - "l": "-5.0", - "x": 2.8457, - "y": 10.1088 - }, - { - "l": "-5.0", - "x": 2.929, - "y": 10.1062 - }, - { - "l": "-5.0", - "x": 3.0123, - "y": 10.1036 - }, - { - "l": "-5.0", - "x": 3.0957, - "y": 10.1014 - }, - { - "l": "-5.0", - "x": 3.179, - "y": 10.0997 - }, - { - "l": "-5.0", - "x": 3.2623, - "y": 10.0982 - }, - { - "l": "-5.0", - "x": 3.3457, - "y": 10.0969 - }, - { - "l": "-5.0", - "x": 3.429, - "y": 10.096 - }, - { - "l": "-5.0", - "x": 3.5123, - "y": 10.0952 - }, - { - "l": "-5.0", - "x": 3.5957, - "y": 10.0947 - }, - { - "l": "-5.0", - "x": 3.679, - "y": 10.0945 - }, - { - "l": "-5.0", - "x": 3.7623, - "y": 10.0944 - }, - { - "l": "-5.0", - "x": 3.8457, - "y": 10.0945 - }, - { - "l": "-5.0", - "x": 3.929, - "y": 10.0947 - }, - { - "l": "-5.0", - "x": 4.0123, - "y": 10.0952 - }, - { - "l": "-5.0", - "x": 4.0957, - "y": 10.0958 - }, - { - "l": "-5.0", - "x": 4.179, - "y": 10.0965 - }, - { - "l": "-5.0", - "x": 4.2623, - "y": 10.0974 - }, - { - "l": "-5.0", - "x": 4.3457, - "y": 10.0985 - }, - { - "l": "-5.0", - "x": 4.429, - "y": 10.0995 - }, - { - "l": "-5.0", - "x": 4.5123, - "y": 10.1009 - }, - { - "l": "-5.0", - "x": 4.5957, - "y": 10.1024 - }, - { - "l": "-5.0", - "x": 4.679, - "y": 10.104 - }, - { - "l": "-5.0", - "x": 4.7623, - "y": 10.106 - }, - { - "l": "-5.0", - "x": 4.8457, - "y": 10.1082 - }, - { - "l": "-5.0", - "x": 4.929, - "y": 10.1105 - }, - { - "l": "-5.0", - "x": 5.0123, - "y": 10.1134 - }, - { - "l": "-5.0", - "x": 5.0957, - "y": 10.1165 - }, - { - "l": "-5.0", - "x": 5.179, - "y": 10.1198 - }, - { - "l": "-5.0", - "x": 5.2623, - "y": 10.1237 - }, - { - "l": "-5.0", - "x": 5.3457, - "y": 10.128 - }, - { - "l": "-5.0", - "x": 5.429, - "y": 10.1322 - }, - { - "l": "-5.0", - "x": 5.5123, - "y": 10.1374 - }, - { - "l": "-5.0", - "x": 5.5957, - "y": 10.1428 - }, - { - "l": "-5.0", - "x": 5.679, - "y": 10.148 - }, - { - "l": "-5.0", - "x": 5.7623, - "y": 10.1543 - }, - { - "l": "-5.0", - "x": 5.8457, - "y": 10.1608 - }, - { - "l": "-5.0", - "x": 5.929, - "y": 10.1671 - }, - { - "l": "-5.0", - "x": 6.0123, - "y": 10.1746 - }, - { - "l": "-5.0", - "x": 6.0957, - "y": 10.1823 - }, - { - "l": "-5.0", - "x": 6.179, - "y": 10.1897 - }, - { - "l": "-5.0", - "x": 6.2623, - "y": 10.1984 - }, - { - "l": "-5.0", - "x": 6.3457, - "y": 10.2073 - }, - { - "l": "-5.0", - "x": 6.429, - "y": 10.2159 - }, - { - "l": "-5.0", - "x": 6.5123, - "y": 10.2259 - }, - { - "l": "-5.0", - "x": 6.5957, - "y": 10.2361 - }, - { - "l": "-5.0", - "x": 6.679, - "y": 10.2457 - }, - { - "l": "-5.0", - "x": 6.7623, - "y": 10.2569 - }, - { - "l": "-5.0", - "x": 6.8457, - "y": 10.2682 - }, - { - "l": "-5.0", - "x": 6.929, - "y": 10.2789 - }, - { - "l": "-5.0", - "x": 7.0123, - "y": 10.2913 - }, - { - "l": "-5.0", - "x": 7.0957, - "y": 10.3037 - }, - { - "l": "-5.0", - "x": 7.179, - "y": 10.3153 - }, - { - "l": "-5.0", - "x": 7.2623, - "y": 10.3287 - }, - { - "l": "-5.0", - "x": 7.3457, - "y": 10.3421 - }, - { - "l": "-5.0", - "x": 7.429, - "y": 10.3547 - }, - { - "l": "-5.0", - "x": 7.5123, - "y": 10.3691 - }, - { - "l": "-5.0", - "x": 7.5957, - "y": 10.3835 - }, - { - "l": "-5.0", - "x": 7.679, - "y": 10.397 - }, - { - "l": "-5.0", - "x": 7.7623, - "y": 10.4124 - }, - { - "l": "-5.0", - "x": 7.8457, - "y": 10.4278 - }, - { - "l": "-5.0", - "x": 7.929, - "y": 10.4421 - }, - { - "l": "-5.0", - "x": 8.0123, - "y": 10.4584 - }, - { - "l": "-5.0", - "x": 8.0957, - "y": 10.4746 - }, - { - "l": "-5.0", - "x": 8.179, - "y": 10.4897 - }, - { - "l": "-5.0", - "x": 8.2623, - "y": 10.507 - }, - { - "l": "-5.0", - "x": 8.3457, - "y": 10.5241 - }, - { - "l": "-5.0", - "x": 8.429, - "y": 10.5399 - }, - { - "l": "-5.0", - "x": 8.5123, - "y": 10.558 - }, - { - "l": "-5.0", - "x": 8.5957, - "y": 10.5759 - }, - { - "l": "-5.0", - "x": 8.679, - "y": 10.5925 - }, - { - "l": "-5.0", - "x": 8.7623, - "y": 10.6114 - }, - { - "l": "-5.0", - "x": 8.8457, - "y": 10.6301 - }, - { - "l": "-5.0", - "x": 8.929, - "y": 10.6474 - }, - { - "l": "-5.0", - "x": 9.0123, - "y": 10.6671 - }, - { - "l": "-5.0", - "x": 9.0957, - "y": 10.6865 - }, - { - "l": "-5.0", - "x": 9.179, - "y": 10.7045 - }, - { - "l": "-5.0", - "x": 9.2623, - "y": 10.7249 - }, - { - "l": "-5.0", - "x": 9.3457, - "y": 10.7451 - }, - { - "l": "-5.0", - "x": 9.429, - "y": 10.7637 - }, - { - "l": "-5.0", - "x": 9.5123, - "y": 10.7848 - }, - { - "l": "-5.0", - "x": 9.5957, - "y": 10.8056 - }, - { - "l": "-5.0", - "x": 9.679, - "y": 10.8248 - }, - { - "l": "-5.0", - "x": 9.7623, - "y": 10.8466 - }, - { - "l": "-5.0", - "x": 9.8457, - "y": 10.8679 - }, - { - "l": "-5.0", - "x": 9.929, - "y": 10.8877 - }, - { - "l": "-5.0", - "x": 10.0123, - "y": 10.9101 - }, - { - "l": "-5.0", - "x": 10.0957, - "y": 10.932 - }, - { - "l": "-5.0", - "x": 10.179, - "y": 10.9523 - }, - { - "l": "-5.0", - "x": 10.2623, - "y": 10.9753 - }, - { - "l": "-5.0", - "x": 10.3457, - "y": 10.9978 - }, - { - "l": "-5.0", - "x": 10.429, - "y": 11.0186 - }, - { - "l": "-5.0", - "x": 10.5123, - "y": 11.0421 - }, - { - "l": "-5.0", - "x": 10.5957, - "y": 11.0652 - }, - { - "l": "-5.0", - "x": 10.679, - "y": 11.0865 - }, - { - "l": "-5.0", - "x": 10.7623, - "y": 11.1105 - }, - { - "l": "-5.0", - "x": 10.8457, - "y": 11.1341 - }, - { - "l": "-5.0", - "x": 10.929, - "y": 11.1559 - }, - { - "l": "-5.0", - "x": 11.0123, - "y": 11.1804 - }, - { - "l": "-5.0", - "x": 11.0957, - "y": 11.2045 - }, - { - "l": "-5.0", - "x": 11.179, - "y": 11.2266 - }, - { - "l": "-5.0", - "x": 11.2623, - "y": 11.2516 - }, - { - "l": "-5.0", - "x": 11.3457, - "y": 11.2761 - }, - { - "l": "-5.0", - "x": 11.429, - "y": 11.2986 - }, - { - "l": "-5.0", - "x": 11.5123, - "y": 11.324 - }, - { - "l": "-5.0", - "x": 11.5957, - "y": 11.3489 - }, - { - "l": "-5.0", - "x": 11.679, - "y": 11.3717 - }, - { - "l": "-5.0", - "x": 11.7623, - "y": 11.3975 - }, - { - "l": "-5.0", - "x": 11.8457, - "y": 11.4226 - }, - { - "l": "-5.0", - "x": 11.929, - "y": 11.4457 - }, - { - "l": "-5.0", - "x": 12.0123, - "y": 11.4718 - }, - { - "l": "-5.0", - "x": 12.0957, - "y": 11.4973 - }, - { - "l": "-5.0", - "x": 12.179, - "y": 11.5207 - }, - { - "l": "-5.0", - "x": 12.2623, - "y": 11.5469 - }, - { - "l": "-5.0", - "x": 12.3457, - "y": 11.5727 - }, - { - "l": "-5.0", - "x": 12.429, - "y": 11.5962 - }, - { - "l": "-5.0", - "x": 12.5123, - "y": 11.6228 - }, - { - "l": "-5.0", - "x": 12.5957, - "y": 11.6487 - }, - { - "l": "-5.0", - "x": 12.679, - "y": 11.6724 - }, - { - "l": "-5.0", - "x": 12.7623, - "y": 11.6991 - }, - { - "l": "-5.0", - "x": 12.8457, - "y": 11.7251 - }, - { - "l": "-5.0", - "x": 12.929, - "y": 11.749 - }, - { - "l": "-5.0", - "x": 13.0123, - "y": 11.7758 - }, - { - "l": "-5.0", - "x": 13.0957, - "y": 11.8019 - }, - { - "l": "-5.0", - "x": 13.179, - "y": 11.8258 - }, - { - "l": "-5.0", - "x": 13.2623, - "y": 11.8527 - }, - { - "l": "-5.0", - "x": 13.3457, - "y": 11.8789 - }, - { - "l": "-5.0", - "x": 13.429, - "y": 11.9028 - }, - { - "l": "-5.0", - "x": 13.5123, - "y": 11.9297 - }, - { - "l": "-5.0", - "x": 13.5957, - "y": 11.9558 - }, - { - "l": "-5.0", - "x": 13.679, - "y": 11.9798 - }, - { - "l": "-5.0", - "x": 13.7623, - "y": 12.0066 - }, - { - "l": "-5.0", - "x": 13.8457, - "y": 12.0327 - }, - { - "l": "-5.0", - "x": 13.929, - "y": 12.0566 - }, - { - "l": "-5.0", - "x": 14.0123, - "y": 12.0834 - }, - { - "l": "-5.0", - "x": 14.0957, - "y": 12.1094 - }, - { - "l": "-5.0", - "x": 14.179, - "y": 12.1331 - }, - { - "l": "-5.0", - "x": 14.2623, - "y": 12.1598 - }, - { - "l": "-5.0", - "x": 14.3457, - "y": 12.1857 - }, - { - "l": "-5.0", - "x": 14.429, - "y": 12.2094 - }, - { - "l": "-5.0", - "x": 14.5123, - "y": 12.2358 - }, - { - "l": "-5.0", - "x": 14.5957, - "y": 12.2616 - }, - { - "l": "-5.0", - "x": 14.679, - "y": 12.2851 - }, - { - "l": "-5.0", - "x": 14.7623, - "y": 12.3114 - }, - { - "l": "-5.0", - "x": 14.8457, - "y": 12.3369 - }, - { - "l": "-5.0", - "x": 14.929, - "y": 12.3603 - }, - { - "l": "-5.0", - "x": 15.0123, - "y": 12.3863 - }, - { - "l": "-5.0", - "x": 15.0957, - "y": 12.4117 - }, - { - "l": "-5.0", - "x": 15.179, - "y": 12.4349 - }, - { - "l": "-5.0", - "x": 15.2623, - "y": 12.4607 - }, - { - "l": "-5.0", - "x": 15.3457, - "y": 12.4859 - }, - { - "l": "-5.0", - "x": 15.429, - "y": 12.5088 - }, - { - "l": "-5.0", - "x": 15.5123, - "y": 12.5345 - }, - { - "l": "-5.0", - "x": 15.5957, - "y": 12.5595 - }, - { - "l": "-5.0", - "x": 15.679, - "y": 12.5822 - }, - { - "l": "-5.0", - "x": 15.7623, - "y": 12.6076 - }, - { - "l": "-5.0", - "x": 15.8457, - "y": 12.6323 - }, - { - "l": "-5.0", - "x": 15.929, - "y": 12.6548 - }, - { - "l": "-5.0", - "x": 16.0123, - "y": 12.68 - }, - { - "l": "-5.0", - "x": 16.0957, - "y": 12.7045 - }, - { - "l": "-5.0", - "x": 16.179, - "y": 12.7268 - }, - { - "l": "-5.0", - "x": 16.2623, - "y": 12.7517 - }, - { - "l": "-5.0", - "x": 16.3457, - "y": 12.7759 - }, - { - "l": "-5.0", - "x": 16.429, - "y": 12.798 - }, - { - "l": "-5.0", - "x": 16.5123, - "y": 12.8227 - }, - { - "l": "-5.0", - "x": 16.5957, - "y": 12.8466 - }, - { - "l": "-5.0", - "x": 16.679, - "y": 12.8685 - }, - { - "l": "-5.0", - "x": 16.7623, - "y": 12.8929 - }, - { - "l": "-5.0", - "x": 16.8457, - "y": 12.9166 - }, - { - "l": "-5.0", - "x": 16.929, - "y": 12.9382 - }, - { - "l": "-5.0", - "x": 17.0123, - "y": 12.9624 - }, - { - "l": "-5.0", - "x": 17.0957, - "y": 12.9858 - }, - { - "l": "-5.0", - "x": 17.179, - "y": 13.0072 - }, - { - "l": "-5.0", - "x": 17.2623, - "y": 13.0312 - }, - { - "l": "-5.0", - "x": 17.3457, - "y": 13.0543 - }, - { - "l": "-5.0", - "x": 17.429, - "y": 13.0755 - }, - { - "l": "-5.0", - "x": 17.5123, - "y": 13.0992 - }, - { - "l": "-5.0", - "x": 17.5957, - "y": 13.1221 - }, - { - "l": "-5.0", - "x": 17.679, - "y": 13.1431 - }, - { - "l": "-5.0", - "x": 17.7623, - "y": 13.1665 - }, - { - "l": "-5.0", - "x": 17.8457, - "y": 13.1892 - }, - { - "l": "-5.0", - "x": 17.929, - "y": 13.2099 - }, - { - "l": "-5.0", - "x": 18.0123, - "y": 13.2331 - }, - { - "l": "-5.0", - "x": 18.0957, - "y": 13.2556 - }, - { - "l": "-5.0", - "x": 18.179, - "y": 13.2761 - }, - { - "l": "-5.0", - "x": 18.2623, - "y": 13.299 - }, - { - "l": "-5.0", - "x": 18.3457, - "y": 13.3213 - }, - { - "l": "-5.0", - "x": 18.429, - "y": 13.3415 - }, - { - "l": "-5.0", - "x": 18.5123, - "y": 13.3643 - }, - { - "l": "-5.0", - "x": 18.5957, - "y": 13.3863 - }, - { - "l": "-5.0", - "x": 18.679, - "y": 13.4064 - }, - { - "l": "-5.0", - "x": 18.7623, - "y": 13.4288 - }, - { - "l": "-5.0", - "x": 18.8457, - "y": 13.4288 - } - ] - }, - { - "sds": -4.0, - "centile": 0.003167124183311986, - "data": [ - { - "l": "-4.0", - "x": 0.0, - "y": 6.6715 - }, - { - "l": "-4.0", - "x": 0.0192, - "y": 6.9353 - }, - { - "l": "-4.0", - "x": 0.0383, - "y": 7.203 - }, - { - "l": "-4.0", - "x": 0.0575, - "y": 7.4748 - }, - { - "l": "-4.0", - "x": 0.0767, - "y": 7.7505 - }, - { - "l": "-4.0", - "x": 0.0958, - "y": 7.9622 - }, - { - "l": "-4.0", - "x": 0.115, - "y": 8.14 - }, - { - "l": "-4.0", - "x": 0.1342, - "y": 8.3002 - }, - { - "l": "-4.0", - "x": 0.1533, - "y": 8.4471 - }, - { - "l": "-4.0", - "x": 0.1725, - "y": 8.5875 - }, - { - "l": "-4.0", - "x": 0.1916, - "y": 8.7371 - }, - { - "l": "-4.0", - "x": 0.2108, - "y": 8.881 - }, - { - "l": "-4.0", - "x": 0.23, - "y": 9.0187 - }, - { - "l": "-4.0", - "x": 0.2491, - "y": 9.1499 - }, - { - "l": "-4.0", - "x": 0.2683, - "y": 9.2732 - }, - { - "l": "-4.0", - "x": 0.2875, - "y": 9.3894 - }, - { - "l": "-4.0", - "x": 0.3066, - "y": 9.4984 - }, - { - "l": "-4.0", - "x": 0.3258, - "y": 9.6002 - }, - { - "l": "-4.0", - "x": 0.345, - "y": 9.6914 - }, - { - "l": "-4.0", - "x": 0.3641, - "y": 9.7752 - }, - { - "l": "-4.0", - "x": 0.3833, - "y": 9.8535 - }, - { - "l": "-4.0", - "x": 0.4025, - "y": 9.9278 - }, - { - "l": "-4.0", - "x": 0.4216, - "y": 9.9997 - }, - { - "l": "-4.0", - "x": 0.4408, - "y": 10.0745 - }, - { - "l": "-4.0", - "x": 0.46, - "y": 10.147 - }, - { - "l": "-4.0", - "x": 0.4791, - "y": 10.2168 - }, - { - "l": "-4.0", - "x": 0.4983, - "y": 10.2834 - }, - { - "l": "-4.0", - "x": 0.5175, - "y": 10.3457 - }, - { - "l": "-4.0", - "x": 0.5366, - "y": 10.4042 - }, - { - "l": "-4.0", - "x": 0.5558, - "y": 10.459 - }, - { - "l": "-4.0", - "x": 0.5749, - "y": 10.5101 - }, - { - "l": "-4.0", - "x": 0.5941, - "y": 10.5557 - }, - { - "l": "-4.0", - "x": 0.6133, - "y": 10.5973 - }, - { - "l": "-4.0", - "x": 0.6324, - "y": 10.636 - }, - { - "l": "-4.0", - "x": 0.6516, - "y": 10.6725 - }, - { - "l": "-4.0", - "x": 0.6708, - "y": 10.7075 - }, - { - "l": "-4.0", - "x": 0.6899, - "y": 10.7439 - }, - { - "l": "-4.0", - "x": 0.7091, - "y": 10.779 - }, - { - "l": "-4.0", - "x": 0.7283, - "y": 10.8127 - }, - { - "l": "-4.0", - "x": 0.7474, - "y": 10.8447 - }, - { - "l": "-4.0", - "x": 0.7666, - "y": 10.8746 - }, - { - "l": "-4.0", - "x": 0.7858, - "y": 10.9027 - }, - { - "l": "-4.0", - "x": 0.8049, - "y": 10.9289 - }, - { - "l": "-4.0", - "x": 0.8241, - "y": 10.9534 - }, - { - "l": "-4.0", - "x": 0.8433, - "y": 10.9753 - }, - { - "l": "-4.0", - "x": 0.8624, - "y": 10.9953 - }, - { - "l": "-4.0", - "x": 0.8816, - "y": 11.0139 - }, - { - "l": "-4.0", - "x": 0.9008, - "y": 11.0315 - }, - { - "l": "-4.0", - "x": 0.9199, - "y": 11.0484 - }, - { - "l": "-4.0", - "x": 0.9391, - "y": 11.066 - }, - { - "l": "-4.0", - "x": 0.9582, - "y": 11.0831 - }, - { - "l": "-4.0", - "x": 0.9774, - "y": 11.0996 - }, - { - "l": "-4.0", - "x": 0.9966, - "y": 11.1153 - }, - { - "l": "-4.0", - "x": 1.0157, - "y": 11.1302 - }, - { - "l": "-4.0", - "x": 1.0349, - "y": 11.1441 - }, - { - "l": "-4.0", - "x": 1.0541, - "y": 11.1572 - }, - { - "l": "-4.0", - "x": 1.0732, - "y": 11.1695 - }, - { - "l": "-4.0", - "x": 1.0924, - "y": 11.1806 - }, - { - "l": "-4.0", - "x": 1.1116, - "y": 11.1908 - }, - { - "l": "-4.0", - "x": 1.1307, - "y": 11.2003 - }, - { - "l": "-4.0", - "x": 1.1499, - "y": 11.2093 - }, - { - "l": "-4.0", - "x": 1.1691, - "y": 11.218 - }, - { - "l": "-4.0", - "x": 1.1882, - "y": 11.227 - }, - { - "l": "-4.0", - "x": 1.2074, - "y": 11.2358 - }, - { - "l": "-4.0", - "x": 1.2266, - "y": 11.2444 - }, - { - "l": "-4.0", - "x": 1.2457, - "y": 11.2525 - }, - { - "l": "-4.0", - "x": 1.2649, - "y": 11.2602 - }, - { - "l": "-4.0", - "x": 1.2841, - "y": 11.2675 - }, - { - "l": "-4.0", - "x": 1.3032, - "y": 11.2744 - }, - { - "l": "-4.0", - "x": 1.3224, - "y": 11.2809 - }, - { - "l": "-4.0", - "x": 1.3415, - "y": 11.2867 - }, - { - "l": "-4.0", - "x": 1.3607, - "y": 11.292 - }, - { - "l": "-4.0", - "x": 1.3799, - "y": 11.2969 - }, - { - "l": "-4.0", - "x": 1.399, - "y": 11.3016 - }, - { - "l": "-4.0", - "x": 1.4182, - "y": 11.3061 - }, - { - "l": "-4.0", - "x": 1.4374, - "y": 11.3108 - }, - { - "l": "-4.0", - "x": 1.4565, - "y": 11.3154 - }, - { - "l": "-4.0", - "x": 1.4757, - "y": 11.3198 - }, - { - "l": "-4.0", - "x": 1.4949, - "y": 11.324 - }, - { - "l": "-4.0", - "x": 1.514, - "y": 11.328 - }, - { - "l": "-4.0", - "x": 1.5332, - "y": 11.3317 - }, - { - "l": "-4.0", - "x": 1.5524, - "y": 11.3353 - }, - { - "l": "-4.0", - "x": 1.5715, - "y": 11.3385 - }, - { - "l": "-4.0", - "x": 1.5907, - "y": 11.3415 - }, - { - "l": "-4.0", - "x": 1.6099, - "y": 11.3441 - }, - { - "l": "-4.0", - "x": 1.629, - "y": 11.3465 - }, - { - "l": "-4.0", - "x": 1.6482, - "y": 11.3488 - }, - { - "l": "-4.0", - "x": 1.6674, - "y": 11.3509 - }, - { - "l": "-4.0", - "x": 1.6865, - "y": 11.3531 - }, - { - "l": "-4.0", - "x": 1.7057, - "y": 11.3552 - }, - { - "l": "-4.0", - "x": 1.7248, - "y": 11.3571 - }, - { - "l": "-4.0", - "x": 1.744, - "y": 11.3589 - }, - { - "l": "-4.0", - "x": 1.7632, - "y": 11.3606 - }, - { - "l": "-4.0", - "x": 1.7823, - "y": 11.362 - }, - { - "l": "-4.0", - "x": 1.8015, - "y": 11.3633 - }, - { - "l": "-4.0", - "x": 1.8207, - "y": 11.3644 - }, - { - "l": "-4.0", - "x": 1.8398, - "y": 11.3654 - }, - { - "l": "-4.0", - "x": 1.859, - "y": 11.3663 - }, - { - "l": "-4.0", - "x": 1.8782, - "y": 11.367 - }, - { - "l": "-4.0", - "x": 1.8973, - "y": 11.3676 - }, - { - "l": "-4.0", - "x": 1.9165, - "y": 11.3681 - }, - { - "l": "-4.0", - "x": 1.9357, - "y": 11.3685 - }, - { - "l": "-4.0", - "x": 1.9548, - "y": 11.3689 - }, - { - "l": "-4.0", - "x": 1.974, - "y": 11.3691 - }, - { - "l": "-4.0", - "x": 1.9932, - "y": 11.3693 - }, - { - "l": "-4.0", - "x": 2.0123, - "y": 11.3693 - }, - { - "l": "-4.0", - "x": 2.0957, - "y": 11.3683 - }, - { - "l": "-4.0", - "x": 2.179, - "y": 11.3658 - }, - { - "l": "-4.0", - "x": 2.2623, - "y": 11.3613 - }, - { - "l": "-4.0", - "x": 2.3457, - "y": 11.3553 - }, - { - "l": "-4.0", - "x": 2.429, - "y": 11.3486 - }, - { - "l": "-4.0", - "x": 2.5123, - "y": 11.3402 - }, - { - "l": "-4.0", - "x": 2.5957, - "y": 11.3314 - }, - { - "l": "-4.0", - "x": 2.679, - "y": 11.3229 - }, - { - "l": "-4.0", - "x": 2.7623, - "y": 11.3134 - }, - { - "l": "-4.0", - "x": 2.8457, - "y": 11.304 - }, - { - "l": "-4.0", - "x": 2.929, - "y": 11.2956 - }, - { - "l": "-4.0", - "x": 3.0123, - "y": 11.2865 - }, - { - "l": "-4.0", - "x": 3.0957, - "y": 11.278 - }, - { - "l": "-4.0", - "x": 3.179, - "y": 11.2706 - }, - { - "l": "-4.0", - "x": 3.2623, - "y": 11.2628 - }, - { - "l": "-4.0", - "x": 3.3457, - "y": 11.2556 - }, - { - "l": "-4.0", - "x": 3.429, - "y": 11.2493 - }, - { - "l": "-4.0", - "x": 3.5123, - "y": 11.2425 - }, - { - "l": "-4.0", - "x": 3.5957, - "y": 11.2363 - }, - { - "l": "-4.0", - "x": 3.679, - "y": 11.2309 - }, - { - "l": "-4.0", - "x": 3.7623, - "y": 11.225 - }, - { - "l": "-4.0", - "x": 3.8457, - "y": 11.2197 - }, - { - "l": "-4.0", - "x": 3.929, - "y": 11.2151 - }, - { - "l": "-4.0", - "x": 4.0123, - "y": 11.2102 - }, - { - "l": "-4.0", - "x": 4.0957, - "y": 11.2057 - }, - { - "l": "-4.0", - "x": 4.179, - "y": 11.2018 - }, - { - "l": "-4.0", - "x": 4.2623, - "y": 11.1977 - }, - { - "l": "-4.0", - "x": 4.3457, - "y": 11.194 - }, - { - "l": "-4.0", - "x": 4.429, - "y": 11.1908 - }, - { - "l": "-4.0", - "x": 4.5123, - "y": 11.1875 - }, - { - "l": "-4.0", - "x": 4.5957, - "y": 11.1846 - }, - { - "l": "-4.0", - "x": 4.679, - "y": 11.1823 - }, - { - "l": "-4.0", - "x": 4.7623, - "y": 11.18 - }, - { - "l": "-4.0", - "x": 4.8457, - "y": 11.1782 - }, - { - "l": "-4.0", - "x": 4.929, - "y": 11.177 - }, - { - "l": "-4.0", - "x": 5.0123, - "y": 11.1759 - }, - { - "l": "-4.0", - "x": 5.0957, - "y": 11.1754 - }, - { - "l": "-4.0", - "x": 5.179, - "y": 11.1754 - }, - { - "l": "-4.0", - "x": 5.2623, - "y": 11.1758 - }, - { - "l": "-4.0", - "x": 5.3457, - "y": 11.1768 - }, - { - "l": "-4.0", - "x": 5.429, - "y": 11.1781 - }, - { - "l": "-4.0", - "x": 5.5123, - "y": 11.1802 - }, - { - "l": "-4.0", - "x": 5.5957, - "y": 11.1826 - }, - { - "l": "-4.0", - "x": 5.679, - "y": 11.1852 - }, - { - "l": "-4.0", - "x": 5.7623, - "y": 11.1887 - }, - { - "l": "-4.0", - "x": 5.8457, - "y": 11.1926 - }, - { - "l": "-4.0", - "x": 5.929, - "y": 11.1966 - }, - { - "l": "-4.0", - "x": 6.0123, - "y": 11.2016 - }, - { - "l": "-4.0", - "x": 6.0957, - "y": 11.207 - }, - { - "l": "-4.0", - "x": 6.179, - "y": 11.2124 - }, - { - "l": "-4.0", - "x": 6.2623, - "y": 11.219 - }, - { - "l": "-4.0", - "x": 6.3457, - "y": 11.2259 - }, - { - "l": "-4.0", - "x": 6.429, - "y": 11.2327 - }, - { - "l": "-4.0", - "x": 6.5123, - "y": 11.2409 - }, - { - "l": "-4.0", - "x": 6.5957, - "y": 11.2494 - }, - { - "l": "-4.0", - "x": 6.679, - "y": 11.2575 - }, - { - "l": "-4.0", - "x": 6.7623, - "y": 11.2672 - }, - { - "l": "-4.0", - "x": 6.8457, - "y": 11.277 - }, - { - "l": "-4.0", - "x": 6.929, - "y": 11.2865 - }, - { - "l": "-4.0", - "x": 7.0123, - "y": 11.2976 - }, - { - "l": "-4.0", - "x": 7.0957, - "y": 11.3088 - }, - { - "l": "-4.0", - "x": 7.179, - "y": 11.3194 - }, - { - "l": "-4.0", - "x": 7.2623, - "y": 11.3317 - }, - { - "l": "-4.0", - "x": 7.3457, - "y": 11.3441 - }, - { - "l": "-4.0", - "x": 7.429, - "y": 11.3559 - }, - { - "l": "-4.0", - "x": 7.5123, - "y": 11.3694 - }, - { - "l": "-4.0", - "x": 7.5957, - "y": 11.3831 - }, - { - "l": "-4.0", - "x": 7.679, - "y": 11.3958 - }, - { - "l": "-4.0", - "x": 7.7623, - "y": 11.4106 - }, - { - "l": "-4.0", - "x": 7.8457, - "y": 11.4253 - }, - { - "l": "-4.0", - "x": 7.929, - "y": 11.4391 - }, - { - "l": "-4.0", - "x": 8.0123, - "y": 11.4549 - }, - { - "l": "-4.0", - "x": 8.0957, - "y": 11.4707 - }, - { - "l": "-4.0", - "x": 8.179, - "y": 11.4854 - }, - { - "l": "-4.0", - "x": 8.2623, - "y": 11.5023 - }, - { - "l": "-4.0", - "x": 8.3457, - "y": 11.5191 - }, - { - "l": "-4.0", - "x": 8.429, - "y": 11.5347 - }, - { - "l": "-4.0", - "x": 8.5123, - "y": 11.5525 - }, - { - "l": "-4.0", - "x": 8.5957, - "y": 11.5703 - }, - { - "l": "-4.0", - "x": 8.679, - "y": 11.5868 - }, - { - "l": "-4.0", - "x": 8.7623, - "y": 11.6055 - }, - { - "l": "-4.0", - "x": 8.8457, - "y": 11.6241 - }, - { - "l": "-4.0", - "x": 8.929, - "y": 11.6414 - }, - { - "l": "-4.0", - "x": 9.0123, - "y": 11.6611 - }, - { - "l": "-4.0", - "x": 9.0957, - "y": 11.6806 - }, - { - "l": "-4.0", - "x": 9.179, - "y": 11.6986 - }, - { - "l": "-4.0", - "x": 9.2623, - "y": 11.7191 - }, - { - "l": "-4.0", - "x": 9.3457, - "y": 11.7394 - }, - { - "l": "-4.0", - "x": 9.429, - "y": 11.7582 - }, - { - "l": "-4.0", - "x": 9.5123, - "y": 11.7796 - }, - { - "l": "-4.0", - "x": 9.5957, - "y": 11.8006 - }, - { - "l": "-4.0", - "x": 9.679, - "y": 11.82 - }, - { - "l": "-4.0", - "x": 9.7623, - "y": 11.842 - }, - { - "l": "-4.0", - "x": 9.8457, - "y": 11.8637 - }, - { - "l": "-4.0", - "x": 9.929, - "y": 11.8837 - }, - { - "l": "-4.0", - "x": 10.0123, - "y": 11.9065 - }, - { - "l": "-4.0", - "x": 10.0957, - "y": 11.9288 - }, - { - "l": "-4.0", - "x": 10.179, - "y": 11.9494 - }, - { - "l": "-4.0", - "x": 10.2623, - "y": 11.9728 - }, - { - "l": "-4.0", - "x": 10.3457, - "y": 11.9957 - }, - { - "l": "-4.0", - "x": 10.429, - "y": 12.017 - }, - { - "l": "-4.0", - "x": 10.5123, - "y": 12.041 - }, - { - "l": "-4.0", - "x": 10.5957, - "y": 12.0646 - }, - { - "l": "-4.0", - "x": 10.679, - "y": 12.0863 - }, - { - "l": "-4.0", - "x": 10.7623, - "y": 12.1109 - }, - { - "l": "-4.0", - "x": 10.8457, - "y": 12.1351 - }, - { - "l": "-4.0", - "x": 10.929, - "y": 12.1573 - }, - { - "l": "-4.0", - "x": 11.0123, - "y": 12.1825 - }, - { - "l": "-4.0", - "x": 11.0957, - "y": 12.2072 - }, - { - "l": "-4.0", - "x": 11.179, - "y": 12.2299 - }, - { - "l": "-4.0", - "x": 11.2623, - "y": 12.2555 - }, - { - "l": "-4.0", - "x": 11.3457, - "y": 12.2806 - }, - { - "l": "-4.0", - "x": 11.429, - "y": 12.3038 - }, - { - "l": "-4.0", - "x": 11.5123, - "y": 12.3299 - }, - { - "l": "-4.0", - "x": 11.5957, - "y": 12.3554 - }, - { - "l": "-4.0", - "x": 11.679, - "y": 12.3789 - }, - { - "l": "-4.0", - "x": 11.7623, - "y": 12.4054 - }, - { - "l": "-4.0", - "x": 11.8457, - "y": 12.4313 - }, - { - "l": "-4.0", - "x": 11.929, - "y": 12.4551 - }, - { - "l": "-4.0", - "x": 12.0123, - "y": 12.4819 - }, - { - "l": "-4.0", - "x": 12.0957, - "y": 12.5082 - }, - { - "l": "-4.0", - "x": 12.179, - "y": 12.5323 - }, - { - "l": "-4.0", - "x": 12.2623, - "y": 12.5593 - }, - { - "l": "-4.0", - "x": 12.3457, - "y": 12.5858 - }, - { - "l": "-4.0", - "x": 12.429, - "y": 12.6101 - }, - { - "l": "-4.0", - "x": 12.5123, - "y": 12.6375 - }, - { - "l": "-4.0", - "x": 12.5957, - "y": 12.6642 - }, - { - "l": "-4.0", - "x": 12.679, - "y": 12.6887 - }, - { - "l": "-4.0", - "x": 12.7623, - "y": 12.7163 - }, - { - "l": "-4.0", - "x": 12.8457, - "y": 12.7431 - }, - { - "l": "-4.0", - "x": 12.929, - "y": 12.7677 - }, - { - "l": "-4.0", - "x": 13.0123, - "y": 12.7954 - }, - { - "l": "-4.0", - "x": 13.0957, - "y": 12.8224 - }, - { - "l": "-4.0", - "x": 13.179, - "y": 12.8471 - }, - { - "l": "-4.0", - "x": 13.2623, - "y": 12.8748 - }, - { - "l": "-4.0", - "x": 13.3457, - "y": 12.9018 - }, - { - "l": "-4.0", - "x": 13.429, - "y": 12.9266 - }, - { - "l": "-4.0", - "x": 13.5123, - "y": 12.9543 - }, - { - "l": "-4.0", - "x": 13.5957, - "y": 12.9813 - }, - { - "l": "-4.0", - "x": 13.679, - "y": 13.006 - }, - { - "l": "-4.0", - "x": 13.7623, - "y": 13.0337 - }, - { - "l": "-4.0", - "x": 13.8457, - "y": 13.0607 - }, - { - "l": "-4.0", - "x": 13.929, - "y": 13.0854 - }, - { - "l": "-4.0", - "x": 14.0123, - "y": 13.113 - }, - { - "l": "-4.0", - "x": 14.0957, - "y": 13.1399 - }, - { - "l": "-4.0", - "x": 14.179, - "y": 13.1644 - }, - { - "l": "-4.0", - "x": 14.2623, - "y": 13.1919 - }, - { - "l": "-4.0", - "x": 14.3457, - "y": 13.2187 - }, - { - "l": "-4.0", - "x": 14.429, - "y": 13.2431 - }, - { - "l": "-4.0", - "x": 14.5123, - "y": 13.2704 - }, - { - "l": "-4.0", - "x": 14.5957, - "y": 13.297 - }, - { - "l": "-4.0", - "x": 14.679, - "y": 13.3213 - }, - { - "l": "-4.0", - "x": 14.7623, - "y": 13.3484 - }, - { - "l": "-4.0", - "x": 14.8457, - "y": 13.3749 - }, - { - "l": "-4.0", - "x": 14.929, - "y": 13.3989 - }, - { - "l": "-4.0", - "x": 15.0123, - "y": 13.4258 - }, - { - "l": "-4.0", - "x": 15.0957, - "y": 13.4521 - }, - { - "l": "-4.0", - "x": 15.179, - "y": 13.4759 - }, - { - "l": "-4.0", - "x": 15.2623, - "y": 13.5026 - }, - { - "l": "-4.0", - "x": 15.3457, - "y": 13.5286 - }, - { - "l": "-4.0", - "x": 15.429, - "y": 13.5523 - }, - { - "l": "-4.0", - "x": 15.5123, - "y": 13.5788 - }, - { - "l": "-4.0", - "x": 15.5957, - "y": 13.6045 - }, - { - "l": "-4.0", - "x": 15.679, - "y": 13.628 - }, - { - "l": "-4.0", - "x": 15.7623, - "y": 13.6542 - }, - { - "l": "-4.0", - "x": 15.8457, - "y": 13.6796 - }, - { - "l": "-4.0", - "x": 15.929, - "y": 13.7029 - }, - { - "l": "-4.0", - "x": 16.0123, - "y": 13.7289 - }, - { - "l": "-4.0", - "x": 16.0957, - "y": 13.7541 - }, - { - "l": "-4.0", - "x": 16.179, - "y": 13.7771 - }, - { - "l": "-4.0", - "x": 16.2623, - "y": 13.8028 - }, - { - "l": "-4.0", - "x": 16.3457, - "y": 13.8277 - }, - { - "l": "-4.0", - "x": 16.429, - "y": 13.8505 - }, - { - "l": "-4.0", - "x": 16.5123, - "y": 13.8759 - }, - { - "l": "-4.0", - "x": 16.5957, - "y": 13.9006 - }, - { - "l": "-4.0", - "x": 16.679, - "y": 13.9231 - }, - { - "l": "-4.0", - "x": 16.7623, - "y": 13.9483 - }, - { - "l": "-4.0", - "x": 16.8457, - "y": 13.9727 - }, - { - "l": "-4.0", - "x": 16.929, - "y": 13.995 - }, - { - "l": "-4.0", - "x": 17.0123, - "y": 14.0199 - }, - { - "l": "-4.0", - "x": 17.0957, - "y": 14.044 - }, - { - "l": "-4.0", - "x": 17.179, - "y": 14.066 - }, - { - "l": "-4.0", - "x": 17.2623, - "y": 14.0907 - }, - { - "l": "-4.0", - "x": 17.3457, - "y": 14.1145 - }, - { - "l": "-4.0", - "x": 17.429, - "y": 14.1364 - }, - { - "l": "-4.0", - "x": 17.5123, - "y": 14.1607 - }, - { - "l": "-4.0", - "x": 17.5957, - "y": 14.1843 - }, - { - "l": "-4.0", - "x": 17.679, - "y": 14.2059 - }, - { - "l": "-4.0", - "x": 17.7623, - "y": 14.23 - }, - { - "l": "-4.0", - "x": 17.8457, - "y": 14.2534 - }, - { - "l": "-4.0", - "x": 17.929, - "y": 14.2746 - }, - { - "l": "-4.0", - "x": 18.0123, - "y": 14.2985 - }, - { - "l": "-4.0", - "x": 18.0957, - "y": 14.3216 - }, - { - "l": "-4.0", - "x": 18.179, - "y": 14.3427 - }, - { - "l": "-4.0", - "x": 18.2623, - "y": 14.3663 - }, - { - "l": "-4.0", - "x": 18.3457, - "y": 14.3891 - }, - { - "l": "-4.0", - "x": 18.429, - "y": 14.4099 - }, - { - "l": "-4.0", - "x": 18.5123, - "y": 14.4333 - }, - { - "l": "-4.0", - "x": 18.5957, - "y": 14.4559 - }, - { - "l": "-4.0", - "x": 18.679, - "y": 14.4766 - }, - { - "l": "-4.0", - "x": 18.7623, - "y": 14.4996 - }, - { - "l": "-4.0", - "x": 18.8457, - "y": 14.4996 - } - ] - }, - { - "sds": -3.0, - "centile": 0.13498980316300932, - "data": [ - { - "l": "-3.0", - "x": 0.0, - "y": 7.9848 - }, - { - "l": "-3.0", - "x": 0.0192, - "y": 8.2562 - }, - { - "l": "-3.0", - "x": 0.0383, - "y": 8.5308 - }, - { - "l": "-3.0", - "x": 0.0575, - "y": 8.8086 - }, - { - "l": "-3.0", - "x": 0.0767, - "y": 9.0894 - }, - { - "l": "-3.0", - "x": 0.0958, - "y": 9.3055 - }, - { - "l": "-3.0", - "x": 0.115, - "y": 9.4876 - }, - { - "l": "-3.0", - "x": 0.1342, - "y": 9.6519 - }, - { - "l": "-3.0", - "x": 0.1533, - "y": 9.803 - }, - { - "l": "-3.0", - "x": 0.1725, - "y": 9.9477 - }, - { - "l": "-3.0", - "x": 0.1916, - "y": 10.1018 - }, - { - "l": "-3.0", - "x": 0.2108, - "y": 10.2502 - }, - { - "l": "-3.0", - "x": 0.23, - "y": 10.3924 - }, - { - "l": "-3.0", - "x": 0.2491, - "y": 10.5279 - }, - { - "l": "-3.0", - "x": 0.2683, - "y": 10.6552 - }, - { - "l": "-3.0", - "x": 0.2875, - "y": 10.7753 - }, - { - "l": "-3.0", - "x": 0.3066, - "y": 10.8879 - }, - { - "l": "-3.0", - "x": 0.3258, - "y": 10.9931 - }, - { - "l": "-3.0", - "x": 0.345, - "y": 11.0873 - }, - { - "l": "-3.0", - "x": 0.3641, - "y": 11.1737 - }, - { - "l": "-3.0", - "x": 0.3833, - "y": 11.2545 - }, - { - "l": "-3.0", - "x": 0.4025, - "y": 11.331 - }, - { - "l": "-3.0", - "x": 0.4216, - "y": 11.405 - }, - { - "l": "-3.0", - "x": 0.4408, - "y": 11.482 - }, - { - "l": "-3.0", - "x": 0.46, - "y": 11.5565 - }, - { - "l": "-3.0", - "x": 0.4791, - "y": 11.628 - }, - { - "l": "-3.0", - "x": 0.4983, - "y": 11.6963 - }, - { - "l": "-3.0", - "x": 0.5175, - "y": 11.7599 - }, - { - "l": "-3.0", - "x": 0.5366, - "y": 11.8197 - }, - { - "l": "-3.0", - "x": 0.5558, - "y": 11.8755 - }, - { - "l": "-3.0", - "x": 0.5749, - "y": 11.9275 - }, - { - "l": "-3.0", - "x": 0.5941, - "y": 11.9738 - }, - { - "l": "-3.0", - "x": 0.6133, - "y": 12.0159 - }, - { - "l": "-3.0", - "x": 0.6324, - "y": 12.055 - }, - { - "l": "-3.0", - "x": 0.6516, - "y": 12.0918 - }, - { - "l": "-3.0", - "x": 0.6708, - "y": 12.1269 - }, - { - "l": "-3.0", - "x": 0.6899, - "y": 12.1634 - }, - { - "l": "-3.0", - "x": 0.7091, - "y": 12.1984 - }, - { - "l": "-3.0", - "x": 0.7283, - "y": 12.2319 - }, - { - "l": "-3.0", - "x": 0.7474, - "y": 12.2637 - }, - { - "l": "-3.0", - "x": 0.7666, - "y": 12.2932 - }, - { - "l": "-3.0", - "x": 0.7858, - "y": 12.3208 - }, - { - "l": "-3.0", - "x": 0.8049, - "y": 12.3465 - }, - { - "l": "-3.0", - "x": 0.8241, - "y": 12.3704 - }, - { - "l": "-3.0", - "x": 0.8433, - "y": 12.3917 - }, - { - "l": "-3.0", - "x": 0.8624, - "y": 12.411 - }, - { - "l": "-3.0", - "x": 0.8816, - "y": 12.429 - }, - { - "l": "-3.0", - "x": 0.9008, - "y": 12.4459 - }, - { - "l": "-3.0", - "x": 0.9199, - "y": 12.4619 - }, - { - "l": "-3.0", - "x": 0.9391, - "y": 12.4787 - }, - { - "l": "-3.0", - "x": 0.9582, - "y": 12.4948 - }, - { - "l": "-3.0", - "x": 0.9774, - "y": 12.5103 - }, - { - "l": "-3.0", - "x": 0.9966, - "y": 12.525 - }, - { - "l": "-3.0", - "x": 1.0157, - "y": 12.5388 - }, - { - "l": "-3.0", - "x": 1.0349, - "y": 12.5516 - }, - { - "l": "-3.0", - "x": 1.0541, - "y": 12.5636 - }, - { - "l": "-3.0", - "x": 1.0732, - "y": 12.5747 - }, - { - "l": "-3.0", - "x": 1.0924, - "y": 12.5848 - }, - { - "l": "-3.0", - "x": 1.1116, - "y": 12.5938 - }, - { - "l": "-3.0", - "x": 1.1307, - "y": 12.6022 - }, - { - "l": "-3.0", - "x": 1.1499, - "y": 12.6101 - }, - { - "l": "-3.0", - "x": 1.1691, - "y": 12.6176 - }, - { - "l": "-3.0", - "x": 1.1882, - "y": 12.6254 - }, - { - "l": "-3.0", - "x": 1.2074, - "y": 12.6329 - }, - { - "l": "-3.0", - "x": 1.2266, - "y": 12.6401 - }, - { - "l": "-3.0", - "x": 1.2457, - "y": 12.6469 - }, - { - "l": "-3.0", - "x": 1.2649, - "y": 12.6532 - }, - { - "l": "-3.0", - "x": 1.2841, - "y": 12.6591 - }, - { - "l": "-3.0", - "x": 1.3032, - "y": 12.6646 - }, - { - "l": "-3.0", - "x": 1.3224, - "y": 12.6697 - }, - { - "l": "-3.0", - "x": 1.3415, - "y": 12.6742 - }, - { - "l": "-3.0", - "x": 1.3607, - "y": 12.6783 - }, - { - "l": "-3.0", - "x": 1.3799, - "y": 12.682 - }, - { - "l": "-3.0", - "x": 1.399, - "y": 12.6855 - }, - { - "l": "-3.0", - "x": 1.4182, - "y": 12.6887 - }, - { - "l": "-3.0", - "x": 1.4374, - "y": 12.6921 - }, - { - "l": "-3.0", - "x": 1.4565, - "y": 12.6953 - }, - { - "l": "-3.0", - "x": 1.4757, - "y": 12.6983 - }, - { - "l": "-3.0", - "x": 1.4949, - "y": 12.7011 - }, - { - "l": "-3.0", - "x": 1.514, - "y": 12.7037 - }, - { - "l": "-3.0", - "x": 1.5332, - "y": 12.706 - }, - { - "l": "-3.0", - "x": 1.5524, - "y": 12.7082 - }, - { - "l": "-3.0", - "x": 1.5715, - "y": 12.7101 - }, - { - "l": "-3.0", - "x": 1.5907, - "y": 12.7117 - }, - { - "l": "-3.0", - "x": 1.6099, - "y": 12.7132 - }, - { - "l": "-3.0", - "x": 1.629, - "y": 12.7144 - }, - { - "l": "-3.0", - "x": 1.6482, - "y": 12.7155 - }, - { - "l": "-3.0", - "x": 1.6674, - "y": 12.7164 - }, - { - "l": "-3.0", - "x": 1.6865, - "y": 12.7172 - }, - { - "l": "-3.0", - "x": 1.7057, - "y": 12.718 - }, - { - "l": "-3.0", - "x": 1.7248, - "y": 12.7186 - }, - { - "l": "-3.0", - "x": 1.744, - "y": 12.7191 - }, - { - "l": "-3.0", - "x": 1.7632, - "y": 12.7194 - }, - { - "l": "-3.0", - "x": 1.7823, - "y": 12.7195 - }, - { - "l": "-3.0", - "x": 1.8015, - "y": 12.7195 - }, - { - "l": "-3.0", - "x": 1.8207, - "y": 12.7193 - }, - { - "l": "-3.0", - "x": 1.8398, - "y": 12.7191 - }, - { - "l": "-3.0", - "x": 1.859, - "y": 12.7188 - }, - { - "l": "-3.0", - "x": 1.8782, - "y": 12.7184 - }, - { - "l": "-3.0", - "x": 1.8973, - "y": 12.7179 - }, - { - "l": "-3.0", - "x": 1.9165, - "y": 12.7172 - }, - { - "l": "-3.0", - "x": 1.9357, - "y": 12.7165 - }, - { - "l": "-3.0", - "x": 1.9548, - "y": 12.7156 - }, - { - "l": "-3.0", - "x": 1.974, - "y": 12.7146 - }, - { - "l": "-3.0", - "x": 1.9932, - "y": 12.7135 - }, - { - "l": "-3.0", - "x": 2.0123, - "y": 12.7123 - }, - { - "l": "-3.0", - "x": 2.0957, - "y": 12.7061 - }, - { - "l": "-3.0", - "x": 2.179, - "y": 12.6988 - }, - { - "l": "-3.0", - "x": 2.2623, - "y": 12.6892 - }, - { - "l": "-3.0", - "x": 2.3457, - "y": 12.6782 - }, - { - "l": "-3.0", - "x": 2.429, - "y": 12.6669 - }, - { - "l": "-3.0", - "x": 2.5123, - "y": 12.6534 - }, - { - "l": "-3.0", - "x": 2.5957, - "y": 12.6398 - }, - { - "l": "-3.0", - "x": 2.679, - "y": 12.6269 - }, - { - "l": "-3.0", - "x": 2.7623, - "y": 12.6124 - }, - { - "l": "-3.0", - "x": 2.8457, - "y": 12.5983 - }, - { - "l": "-3.0", - "x": 2.929, - "y": 12.5856 - }, - { - "l": "-3.0", - "x": 3.0123, - "y": 12.5718 - }, - { - "l": "-3.0", - "x": 3.0957, - "y": 12.5588 - }, - { - "l": "-3.0", - "x": 3.179, - "y": 12.5472 - }, - { - "l": "-3.0", - "x": 3.2623, - "y": 12.5349 - }, - { - "l": "-3.0", - "x": 3.3457, - "y": 12.5232 - }, - { - "l": "-3.0", - "x": 3.429, - "y": 12.5129 - }, - { - "l": "-3.0", - "x": 3.5123, - "y": 12.5018 - }, - { - "l": "-3.0", - "x": 3.5957, - "y": 12.4914 - }, - { - "l": "-3.0", - "x": 3.679, - "y": 12.4822 - }, - { - "l": "-3.0", - "x": 3.7623, - "y": 12.4722 - }, - { - "l": "-3.0", - "x": 3.8457, - "y": 12.4629 - }, - { - "l": "-3.0", - "x": 3.929, - "y": 12.4548 - }, - { - "l": "-3.0", - "x": 4.0123, - "y": 12.446 - }, - { - "l": "-3.0", - "x": 4.0957, - "y": 12.4378 - }, - { - "l": "-3.0", - "x": 4.179, - "y": 12.4307 - }, - { - "l": "-3.0", - "x": 4.2623, - "y": 12.423 - }, - { - "l": "-3.0", - "x": 4.3457, - "y": 12.4159 - }, - { - "l": "-3.0", - "x": 4.429, - "y": 12.4097 - }, - { - "l": "-3.0", - "x": 4.5123, - "y": 12.4031 - }, - { - "l": "-3.0", - "x": 4.5957, - "y": 12.3972 - }, - { - "l": "-3.0", - "x": 4.679, - "y": 12.3921 - }, - { - "l": "-3.0", - "x": 4.7623, - "y": 12.3869 - }, - { - "l": "-3.0", - "x": 4.8457, - "y": 12.3824 - }, - { - "l": "-3.0", - "x": 4.929, - "y": 12.3787 - }, - { - "l": "-3.0", - "x": 5.0123, - "y": 12.375 - }, - { - "l": "-3.0", - "x": 5.0957, - "y": 12.3721 - }, - { - "l": "-3.0", - "x": 5.179, - "y": 12.37 - }, - { - "l": "-3.0", - "x": 5.2623, - "y": 12.3681 - }, - { - "l": "-3.0", - "x": 5.3457, - "y": 12.367 - }, - { - "l": "-3.0", - "x": 5.429, - "y": 12.3665 - }, - { - "l": "-3.0", - "x": 5.5123, - "y": 12.3666 - }, - { - "l": "-3.0", - "x": 5.5957, - "y": 12.3673 - }, - { - "l": "-3.0", - "x": 5.679, - "y": 12.3684 - }, - { - "l": "-3.0", - "x": 5.7623, - "y": 12.3703 - }, - { - "l": "-3.0", - "x": 5.8457, - "y": 12.3727 - }, - { - "l": "-3.0", - "x": 5.929, - "y": 12.3754 - }, - { - "l": "-3.0", - "x": 6.0123, - "y": 12.3792 - }, - { - "l": "-3.0", - "x": 6.0957, - "y": 12.3833 - }, - { - "l": "-3.0", - "x": 6.179, - "y": 12.3878 - }, - { - "l": "-3.0", - "x": 6.2623, - "y": 12.3934 - }, - { - "l": "-3.0", - "x": 6.3457, - "y": 12.3994 - }, - { - "l": "-3.0", - "x": 6.429, - "y": 12.4055 - }, - { - "l": "-3.0", - "x": 6.5123, - "y": 12.413 - }, - { - "l": "-3.0", - "x": 6.5957, - "y": 12.4209 - }, - { - "l": "-3.0", - "x": 6.679, - "y": 12.4285 - }, - { - "l": "-3.0", - "x": 6.7623, - "y": 12.4378 - }, - { - "l": "-3.0", - "x": 6.8457, - "y": 12.4473 - }, - { - "l": "-3.0", - "x": 6.929, - "y": 12.4565 - }, - { - "l": "-3.0", - "x": 7.0123, - "y": 12.4674 - }, - { - "l": "-3.0", - "x": 7.0957, - "y": 12.4784 - }, - { - "l": "-3.0", - "x": 7.179, - "y": 12.489 - }, - { - "l": "-3.0", - "x": 7.2623, - "y": 12.5013 - }, - { - "l": "-3.0", - "x": 7.3457, - "y": 12.5138 - }, - { - "l": "-3.0", - "x": 7.429, - "y": 12.5257 - }, - { - "l": "-3.0", - "x": 7.5123, - "y": 12.5394 - }, - { - "l": "-3.0", - "x": 7.5957, - "y": 12.5533 - }, - { - "l": "-3.0", - "x": 7.679, - "y": 12.5664 - }, - { - "l": "-3.0", - "x": 7.7623, - "y": 12.5815 - }, - { - "l": "-3.0", - "x": 7.8457, - "y": 12.5966 - }, - { - "l": "-3.0", - "x": 7.929, - "y": 12.6108 - }, - { - "l": "-3.0", - "x": 8.0123, - "y": 12.6272 - }, - { - "l": "-3.0", - "x": 8.0957, - "y": 12.6435 - }, - { - "l": "-3.0", - "x": 8.179, - "y": 12.6587 - }, - { - "l": "-3.0", - "x": 8.2623, - "y": 12.6762 - }, - { - "l": "-3.0", - "x": 8.3457, - "y": 12.6937 - }, - { - "l": "-3.0", - "x": 8.429, - "y": 12.71 - }, - { - "l": "-3.0", - "x": 8.5123, - "y": 12.7286 - }, - { - "l": "-3.0", - "x": 8.5957, - "y": 12.7471 - }, - { - "l": "-3.0", - "x": 8.679, - "y": 12.7643 - }, - { - "l": "-3.0", - "x": 8.7623, - "y": 12.7839 - }, - { - "l": "-3.0", - "x": 8.8457, - "y": 12.8034 - }, - { - "l": "-3.0", - "x": 8.929, - "y": 12.8215 - }, - { - "l": "-3.0", - "x": 9.0123, - "y": 12.8422 - }, - { - "l": "-3.0", - "x": 9.0957, - "y": 12.8626 - }, - { - "l": "-3.0", - "x": 9.179, - "y": 12.8816 - }, - { - "l": "-3.0", - "x": 9.2623, - "y": 12.9031 - }, - { - "l": "-3.0", - "x": 9.3457, - "y": 12.9245 - }, - { - "l": "-3.0", - "x": 9.429, - "y": 12.9442 - }, - { - "l": "-3.0", - "x": 9.5123, - "y": 12.9667 - }, - { - "l": "-3.0", - "x": 9.5957, - "y": 12.9888 - }, - { - "l": "-3.0", - "x": 9.679, - "y": 13.0092 - }, - { - "l": "-3.0", - "x": 9.7623, - "y": 13.0325 - }, - { - "l": "-3.0", - "x": 9.8457, - "y": 13.0553 - }, - { - "l": "-3.0", - "x": 9.929, - "y": 13.0764 - }, - { - "l": "-3.0", - "x": 10.0123, - "y": 13.1004 - }, - { - "l": "-3.0", - "x": 10.0957, - "y": 13.124 - }, - { - "l": "-3.0", - "x": 10.179, - "y": 13.1457 - }, - { - "l": "-3.0", - "x": 10.2623, - "y": 13.1704 - }, - { - "l": "-3.0", - "x": 10.3457, - "y": 13.1946 - }, - { - "l": "-3.0", - "x": 10.429, - "y": 13.217 - }, - { - "l": "-3.0", - "x": 10.5123, - "y": 13.2424 - }, - { - "l": "-3.0", - "x": 10.5957, - "y": 13.2673 - }, - { - "l": "-3.0", - "x": 10.679, - "y": 13.2903 - }, - { - "l": "-3.0", - "x": 10.7623, - "y": 13.3163 - }, - { - "l": "-3.0", - "x": 10.8457, - "y": 13.3418 - }, - { - "l": "-3.0", - "x": 10.929, - "y": 13.3653 - }, - { - "l": "-3.0", - "x": 11.0123, - "y": 13.3919 - }, - { - "l": "-3.0", - "x": 11.0957, - "y": 13.418 - }, - { - "l": "-3.0", - "x": 11.179, - "y": 13.442 - }, - { - "l": "-3.0", - "x": 11.2623, - "y": 13.4692 - }, - { - "l": "-3.0", - "x": 11.3457, - "y": 13.4957 - }, - { - "l": "-3.0", - "x": 11.429, - "y": 13.5202 - }, - { - "l": "-3.0", - "x": 11.5123, - "y": 13.5478 - }, - { - "l": "-3.0", - "x": 11.5957, - "y": 13.5748 - }, - { - "l": "-3.0", - "x": 11.679, - "y": 13.5996 - }, - { - "l": "-3.0", - "x": 11.7623, - "y": 13.6277 - }, - { - "l": "-3.0", - "x": 11.8457, - "y": 13.655 - }, - { - "l": "-3.0", - "x": 11.929, - "y": 13.6802 - }, - { - "l": "-3.0", - "x": 12.0123, - "y": 13.7086 - }, - { - "l": "-3.0", - "x": 12.0957, - "y": 13.7364 - }, - { - "l": "-3.0", - "x": 12.179, - "y": 13.7618 - }, - { - "l": "-3.0", - "x": 12.2623, - "y": 13.7905 - }, - { - "l": "-3.0", - "x": 12.3457, - "y": 13.8185 - }, - { - "l": "-3.0", - "x": 12.429, - "y": 13.8442 - }, - { - "l": "-3.0", - "x": 12.5123, - "y": 13.8732 - }, - { - "l": "-3.0", - "x": 12.5957, - "y": 13.9014 - }, - { - "l": "-3.0", - "x": 12.679, - "y": 13.9273 - }, - { - "l": "-3.0", - "x": 12.7623, - "y": 13.9565 - }, - { - "l": "-3.0", - "x": 12.8457, - "y": 13.9849 - }, - { - "l": "-3.0", - "x": 12.929, - "y": 14.0109 - }, - { - "l": "-3.0", - "x": 13.0123, - "y": 14.0401 - }, - { - "l": "-3.0", - "x": 13.0957, - "y": 14.0687 - }, - { - "l": "-3.0", - "x": 13.179, - "y": 14.0948 - }, - { - "l": "-3.0", - "x": 13.2623, - "y": 14.1241 - }, - { - "l": "-3.0", - "x": 13.3457, - "y": 14.1527 - }, - { - "l": "-3.0", - "x": 13.429, - "y": 14.1788 - }, - { - "l": "-3.0", - "x": 13.5123, - "y": 14.2082 - }, - { - "l": "-3.0", - "x": 13.5957, - "y": 14.2367 - }, - { - "l": "-3.0", - "x": 13.679, - "y": 14.2628 - }, - { - "l": "-3.0", - "x": 13.7623, - "y": 14.2921 - }, - { - "l": "-3.0", - "x": 13.8457, - "y": 14.3206 - }, - { - "l": "-3.0", - "x": 13.929, - "y": 14.3467 - }, - { - "l": "-3.0", - "x": 14.0123, - "y": 14.3759 - }, - { - "l": "-3.0", - "x": 14.0957, - "y": 14.4042 - }, - { - "l": "-3.0", - "x": 14.179, - "y": 14.4302 - }, - { - "l": "-3.0", - "x": 14.2623, - "y": 14.4592 - }, - { - "l": "-3.0", - "x": 14.3457, - "y": 14.4875 - }, - { - "l": "-3.0", - "x": 14.429, - "y": 14.5133 - }, - { - "l": "-3.0", - "x": 14.5123, - "y": 14.5421 - }, - { - "l": "-3.0", - "x": 14.5957, - "y": 14.5702 - }, - { - "l": "-3.0", - "x": 14.679, - "y": 14.5958 - }, - { - "l": "-3.0", - "x": 14.7623, - "y": 14.6245 - }, - { - "l": "-3.0", - "x": 14.8457, - "y": 14.6523 - }, - { - "l": "-3.0", - "x": 14.929, - "y": 14.6777 - }, - { - "l": "-3.0", - "x": 15.0123, - "y": 14.7061 - }, - { - "l": "-3.0", - "x": 15.0957, - "y": 14.7338 - }, - { - "l": "-3.0", - "x": 15.179, - "y": 14.759 - }, - { - "l": "-3.0", - "x": 15.2623, - "y": 14.7871 - }, - { - "l": "-3.0", - "x": 15.3457, - "y": 14.8145 - }, - { - "l": "-3.0", - "x": 15.429, - "y": 14.8395 - }, - { - "l": "-3.0", - "x": 15.5123, - "y": 14.8674 - }, - { - "l": "-3.0", - "x": 15.5957, - "y": 14.8945 - }, - { - "l": "-3.0", - "x": 15.679, - "y": 14.9192 - }, - { - "l": "-3.0", - "x": 15.7623, - "y": 14.9469 - }, - { - "l": "-3.0", - "x": 15.8457, - "y": 14.9737 - }, - { - "l": "-3.0", - "x": 15.929, - "y": 14.9981 - }, - { - "l": "-3.0", - "x": 16.0123, - "y": 15.0256 - }, - { - "l": "-3.0", - "x": 16.0957, - "y": 15.0521 - }, - { - "l": "-3.0", - "x": 16.179, - "y": 15.0763 - }, - { - "l": "-3.0", - "x": 16.2623, - "y": 15.1034 - }, - { - "l": "-3.0", - "x": 16.3457, - "y": 15.1296 - }, - { - "l": "-3.0", - "x": 16.429, - "y": 15.1536 - }, - { - "l": "-3.0", - "x": 16.5123, - "y": 15.1803 - }, - { - "l": "-3.0", - "x": 16.5957, - "y": 15.2062 - }, - { - "l": "-3.0", - "x": 16.679, - "y": 15.23 - }, - { - "l": "-3.0", - "x": 16.7623, - "y": 15.2564 - }, - { - "l": "-3.0", - "x": 16.8457, - "y": 15.2821 - }, - { - "l": "-3.0", - "x": 16.929, - "y": 15.3055 - }, - { - "l": "-3.0", - "x": 17.0123, - "y": 15.3317 - }, - { - "l": "-3.0", - "x": 17.0957, - "y": 15.357 - }, - { - "l": "-3.0", - "x": 17.179, - "y": 15.3802 - }, - { - "l": "-3.0", - "x": 17.2623, - "y": 15.4061 - }, - { - "l": "-3.0", - "x": 17.3457, - "y": 15.4311 - }, - { - "l": "-3.0", - "x": 17.429, - "y": 15.454 - }, - { - "l": "-3.0", - "x": 17.5123, - "y": 15.4796 - }, - { - "l": "-3.0", - "x": 17.5957, - "y": 15.5044 - }, - { - "l": "-3.0", - "x": 17.679, - "y": 15.527 - }, - { - "l": "-3.0", - "x": 17.7623, - "y": 15.5523 - }, - { - "l": "-3.0", - "x": 17.8457, - "y": 15.5768 - }, - { - "l": "-3.0", - "x": 17.929, - "y": 15.5992 - }, - { - "l": "-3.0", - "x": 18.0123, - "y": 15.6242 - }, - { - "l": "-3.0", - "x": 18.0957, - "y": 15.6484 - }, - { - "l": "-3.0", - "x": 18.179, - "y": 15.6705 - }, - { - "l": "-3.0", - "x": 18.2623, - "y": 15.6953 - }, - { - "l": "-3.0", - "x": 18.3457, - "y": 15.7192 - }, - { - "l": "-3.0", - "x": 18.429, - "y": 15.741 - }, - { - "l": "-3.0", - "x": 18.5123, - "y": 15.7655 - }, - { - "l": "-3.0", - "x": 18.5957, - "y": 15.7892 - }, - { - "l": "-3.0", - "x": 18.679, - "y": 15.8108 - }, - { - "l": "-3.0", - "x": 18.7623, - "y": 15.835 - }, - { - "l": "-3.0", - "x": 18.8457, - "y": 15.835 - } - ] - }, - { - "sds": 3.0, - "centile": 99.86501019683699, - "data": [ - { - "l": "3.0", - "x": 0.0, - "y": 16.6985 - }, - { - "l": "3.0", - "x": 0.0192, - "y": 17.0423 - }, - { - "l": "3.0", - "x": 0.0383, - "y": 17.3823 - }, - { - "l": "3.0", - "x": 0.0575, - "y": 17.7186 - }, - { - "l": "3.0", - "x": 0.0767, - "y": 18.051 - }, - { - "l": "3.0", - "x": 0.0958, - "y": 18.3097 - }, - { - "l": "3.0", - "x": 0.115, - "y": 18.5302 - }, - { - "l": "3.0", - "x": 0.1342, - "y": 18.7312 - }, - { - "l": "3.0", - "x": 0.1533, - "y": 18.918 - }, - { - "l": "3.0", - "x": 0.1725, - "y": 19.0988 - }, - { - "l": "3.0", - "x": 0.1916, - "y": 19.2911 - }, - { - "l": "3.0", - "x": 0.2108, - "y": 19.4773 - }, - { - "l": "3.0", - "x": 0.23, - "y": 19.6566 - }, - { - "l": "3.0", - "x": 0.2491, - "y": 19.8281 - }, - { - "l": "3.0", - "x": 0.2683, - "y": 19.9896 - }, - { - "l": "3.0", - "x": 0.2875, - "y": 20.1424 - }, - { - "l": "3.0", - "x": 0.3066, - "y": 20.286 - }, - { - "l": "3.0", - "x": 0.3258, - "y": 20.4203 - }, - { - "l": "3.0", - "x": 0.345, - "y": 20.5401 - }, - { - "l": "3.0", - "x": 0.3641, - "y": 20.6498 - }, - { - "l": "3.0", - "x": 0.3833, - "y": 20.7524 - }, - { - "l": "3.0", - "x": 0.4025, - "y": 20.8494 - }, - { - "l": "3.0", - "x": 0.4216, - "y": 20.943 - }, - { - "l": "3.0", - "x": 0.4408, - "y": 21.0398 - }, - { - "l": "3.0", - "x": 0.46, - "y": 21.1332 - }, - { - "l": "3.0", - "x": 0.4791, - "y": 21.2225 - }, - { - "l": "3.0", - "x": 0.4983, - "y": 21.3073 - }, - { - "l": "3.0", - "x": 0.5175, - "y": 21.3858 - }, - { - "l": "3.0", - "x": 0.5366, - "y": 21.459 - }, - { - "l": "3.0", - "x": 0.5558, - "y": 21.527 - }, - { - "l": "3.0", - "x": 0.5749, - "y": 21.5899 - }, - { - "l": "3.0", - "x": 0.5941, - "y": 21.6456 - }, - { - "l": "3.0", - "x": 0.6133, - "y": 21.6958 - }, - { - "l": "3.0", - "x": 0.6324, - "y": 21.7421 - }, - { - "l": "3.0", - "x": 0.6516, - "y": 21.7851 - }, - { - "l": "3.0", - "x": 0.6708, - "y": 21.8259 - }, - { - "l": "3.0", - "x": 0.6899, - "y": 21.8678 - }, - { - "l": "3.0", - "x": 0.7091, - "y": 21.9078 - }, - { - "l": "3.0", - "x": 0.7283, - "y": 21.9456 - }, - { - "l": "3.0", - "x": 0.7474, - "y": 21.9812 - }, - { - "l": "3.0", - "x": 0.7666, - "y": 22.0139 - }, - { - "l": "3.0", - "x": 0.7858, - "y": 22.0441 - }, - { - "l": "3.0", - "x": 0.8049, - "y": 22.072 - }, - { - "l": "3.0", - "x": 0.8241, - "y": 22.0977 - }, - { - "l": "3.0", - "x": 0.8433, - "y": 22.1205 - }, - { - "l": "3.0", - "x": 0.8624, - "y": 22.141 - }, - { - "l": "3.0", - "x": 0.8816, - "y": 22.1599 - }, - { - "l": "3.0", - "x": 0.9008, - "y": 22.1775 - }, - { - "l": "3.0", - "x": 0.9199, - "y": 22.1942 - }, - { - "l": "3.0", - "x": 0.9391, - "y": 22.2115 - }, - { - "l": "3.0", - "x": 0.9582, - "y": 22.2281 - }, - { - "l": "3.0", - "x": 0.9774, - "y": 22.2439 - }, - { - "l": "3.0", - "x": 0.9966, - "y": 22.2589 - }, - { - "l": "3.0", - "x": 1.0157, - "y": 22.2728 - }, - { - "l": "3.0", - "x": 1.0349, - "y": 22.2858 - }, - { - "l": "3.0", - "x": 1.0541, - "y": 22.2978 - }, - { - "l": "3.0", - "x": 1.0732, - "y": 22.309 - }, - { - "l": "3.0", - "x": 1.0924, - "y": 22.3189 - }, - { - "l": "3.0", - "x": 1.1116, - "y": 22.3279 - }, - { - "l": "3.0", - "x": 1.1307, - "y": 22.3363 - }, - { - "l": "3.0", - "x": 1.1499, - "y": 22.3441 - }, - { - "l": "3.0", - "x": 1.1691, - "y": 22.3515 - }, - { - "l": "3.0", - "x": 1.1882, - "y": 22.3593 - }, - { - "l": "3.0", - "x": 1.2074, - "y": 22.3668 - }, - { - "l": "3.0", - "x": 1.2266, - "y": 22.374 - }, - { - "l": "3.0", - "x": 1.2457, - "y": 22.3809 - }, - { - "l": "3.0", - "x": 1.2649, - "y": 22.3874 - }, - { - "l": "3.0", - "x": 1.2841, - "y": 22.3935 - }, - { - "l": "3.0", - "x": 1.3032, - "y": 22.3992 - }, - { - "l": "3.0", - "x": 1.3224, - "y": 22.4046 - }, - { - "l": "3.0", - "x": 1.3415, - "y": 22.4096 - }, - { - "l": "3.0", - "x": 1.3607, - "y": 22.4142 - }, - { - "l": "3.0", - "x": 1.3799, - "y": 22.4186 - }, - { - "l": "3.0", - "x": 1.399, - "y": 22.4229 - }, - { - "l": "3.0", - "x": 1.4182, - "y": 22.427 - }, - { - "l": "3.0", - "x": 1.4374, - "y": 22.4314 - }, - { - "l": "3.0", - "x": 1.4565, - "y": 22.4358 - }, - { - "l": "3.0", - "x": 1.4757, - "y": 22.4401 - }, - { - "l": "3.0", - "x": 1.4949, - "y": 22.4443 - }, - { - "l": "3.0", - "x": 1.514, - "y": 22.4485 - }, - { - "l": "3.0", - "x": 1.5332, - "y": 22.4527 - }, - { - "l": "3.0", - "x": 1.5524, - "y": 22.4567 - }, - { - "l": "3.0", - "x": 1.5715, - "y": 22.4606 - }, - { - "l": "3.0", - "x": 1.5907, - "y": 22.4642 - }, - { - "l": "3.0", - "x": 1.6099, - "y": 22.4676 - }, - { - "l": "3.0", - "x": 1.629, - "y": 22.471 - }, - { - "l": "3.0", - "x": 1.6482, - "y": 22.4743 - }, - { - "l": "3.0", - "x": 1.6674, - "y": 22.4776 - }, - { - "l": "3.0", - "x": 1.6865, - "y": 22.4812 - }, - { - "l": "3.0", - "x": 1.7057, - "y": 22.4849 - }, - { - "l": "3.0", - "x": 1.7248, - "y": 22.4886 - }, - { - "l": "3.0", - "x": 1.744, - "y": 22.4924 - }, - { - "l": "3.0", - "x": 1.7632, - "y": 22.4961 - }, - { - "l": "3.0", - "x": 1.7823, - "y": 22.4999 - }, - { - "l": "3.0", - "x": 1.8015, - "y": 22.5036 - }, - { - "l": "3.0", - "x": 1.8207, - "y": 22.5073 - }, - { - "l": "3.0", - "x": 1.8398, - "y": 22.5108 - }, - { - "l": "3.0", - "x": 1.859, - "y": 22.5141 - }, - { - "l": "3.0", - "x": 1.8782, - "y": 22.5174 - }, - { - "l": "3.0", - "x": 1.8973, - "y": 22.5207 - }, - { - "l": "3.0", - "x": 1.9165, - "y": 22.5241 - }, - { - "l": "3.0", - "x": 1.9357, - "y": 22.5278 - }, - { - "l": "3.0", - "x": 1.9548, - "y": 22.5317 - }, - { - "l": "3.0", - "x": 1.974, - "y": 22.5356 - }, - { - "l": "3.0", - "x": 1.9932, - "y": 22.5396 - }, - { - "l": "3.0", - "x": 2.0123, - "y": 22.5437 - }, - { - "l": "3.0", - "x": 2.0957, - "y": 22.5607 - }, - { - "l": "3.0", - "x": 2.179, - "y": 22.5765 - }, - { - "l": "3.0", - "x": 2.2623, - "y": 22.5943 - }, - { - "l": "3.0", - "x": 2.3457, - "y": 22.6118 - }, - { - "l": "3.0", - "x": 2.429, - "y": 22.6281 - }, - { - "l": "3.0", - "x": 2.5123, - "y": 22.6469 - }, - { - "l": "3.0", - "x": 2.5957, - "y": 22.6661 - }, - { - "l": "3.0", - "x": 2.679, - "y": 22.6847 - }, - { - "l": "3.0", - "x": 2.7623, - "y": 22.707 - }, - { - "l": "3.0", - "x": 2.8457, - "y": 22.73 - }, - { - "l": "3.0", - "x": 2.929, - "y": 22.7527 - }, - { - "l": "3.0", - "x": 3.0123, - "y": 22.7798 - }, - { - "l": "3.0", - "x": 3.0957, - "y": 22.808 - }, - { - "l": "3.0", - "x": 3.179, - "y": 22.8354 - }, - { - "l": "3.0", - "x": 3.2623, - "y": 22.8678 - }, - { - "l": "3.0", - "x": 3.3457, - "y": 22.9012 - }, - { - "l": "3.0", - "x": 3.429, - "y": 22.9331 - }, - { - "l": "3.0", - "x": 3.5123, - "y": 22.9706 - }, - { - "l": "3.0", - "x": 3.5957, - "y": 23.0087 - }, - { - "l": "3.0", - "x": 3.679, - "y": 23.0452 - }, - { - "l": "3.0", - "x": 3.7623, - "y": 23.0878 - }, - { - "l": "3.0", - "x": 3.8457, - "y": 23.1311 - }, - { - "l": "3.0", - "x": 3.929, - "y": 23.1723 - }, - { - "l": "3.0", - "x": 4.0123, - "y": 23.2204 - }, - { - "l": "3.0", - "x": 4.0957, - "y": 23.2691 - }, - { - "l": "3.0", - "x": 4.179, - "y": 23.3153 - }, - { - "l": "3.0", - "x": 4.2623, - "y": 23.369 - }, - { - "l": "3.0", - "x": 4.3457, - "y": 23.4233 - }, - { - "l": "3.0", - "x": 4.429, - "y": 23.4745 - }, - { - "l": "3.0", - "x": 4.5123, - "y": 23.5341 - }, - { - "l": "3.0", - "x": 4.5957, - "y": 23.594 - }, - { - "l": "3.0", - "x": 4.679, - "y": 23.6508 - }, - { - "l": "3.0", - "x": 4.7623, - "y": 23.7166 - }, - { - "l": "3.0", - "x": 4.8457, - "y": 23.783 - }, - { - "l": "3.0", - "x": 4.929, - "y": 23.8456 - }, - { - "l": "3.0", - "x": 5.0123, - "y": 23.9181 - }, - { - "l": "3.0", - "x": 5.0957, - "y": 23.9913 - }, - { - "l": "3.0", - "x": 5.179, - "y": 24.0603 - }, - { - "l": "3.0", - "x": 5.2623, - "y": 24.1401 - }, - { - "l": "3.0", - "x": 5.3457, - "y": 24.2201 - }, - { - "l": "3.0", - "x": 5.429, - "y": 24.2957 - }, - { - "l": "3.0", - "x": 5.5123, - "y": 24.3829 - }, - { - "l": "3.0", - "x": 5.5957, - "y": 24.4703 - }, - { - "l": "3.0", - "x": 5.679, - "y": 24.5523 - }, - { - "l": "3.0", - "x": 5.7623, - "y": 24.6468 - }, - { - "l": "3.0", - "x": 5.8457, - "y": 24.7413 - }, - { - "l": "3.0", - "x": 5.929, - "y": 24.8301 - }, - { - "l": "3.0", - "x": 6.0123, - "y": 24.9324 - }, - { - "l": "3.0", - "x": 6.0957, - "y": 25.0344 - }, - { - "l": "3.0", - "x": 6.179, - "y": 25.1301 - }, - { - "l": "3.0", - "x": 6.2623, - "y": 25.2401 - }, - { - "l": "3.0", - "x": 6.3457, - "y": 25.3498 - }, - { - "l": "3.0", - "x": 6.429, - "y": 25.4526 - }, - { - "l": "3.0", - "x": 6.5123, - "y": 25.5707 - }, - { - "l": "3.0", - "x": 6.5957, - "y": 25.6882 - }, - { - "l": "3.0", - "x": 6.679, - "y": 25.798 - }, - { - "l": "3.0", - "x": 6.7623, - "y": 25.9238 - }, - { - "l": "3.0", - "x": 6.8457, - "y": 26.0489 - }, - { - "l": "3.0", - "x": 6.929, - "y": 26.1657 - }, - { - "l": "3.0", - "x": 7.0123, - "y": 26.2993 - }, - { - "l": "3.0", - "x": 7.0957, - "y": 26.4318 - }, - { - "l": "3.0", - "x": 7.179, - "y": 26.5553 - }, - { - "l": "3.0", - "x": 7.2623, - "y": 26.6963 - }, - { - "l": "3.0", - "x": 7.3457, - "y": 26.836 - }, - { - "l": "3.0", - "x": 7.429, - "y": 26.9661 - }, - { - "l": "3.0", - "x": 7.5123, - "y": 27.1145 - }, - { - "l": "3.0", - "x": 7.5957, - "y": 27.2615 - }, - { - "l": "3.0", - "x": 7.679, - "y": 27.398 - }, - { - "l": "3.0", - "x": 7.7623, - "y": 27.5536 - }, - { - "l": "3.0", - "x": 7.8457, - "y": 27.7076 - }, - { - "l": "3.0", - "x": 7.929, - "y": 27.8505 - }, - { - "l": "3.0", - "x": 8.0123, - "y": 28.0132 - }, - { - "l": "3.0", - "x": 8.0957, - "y": 28.174 - }, - { - "l": "3.0", - "x": 8.179, - "y": 28.3231 - }, - { - "l": "3.0", - "x": 8.2623, - "y": 28.4929 - }, - { - "l": "3.0", - "x": 8.3457, - "y": 28.6606 - }, - { - "l": "3.0", - "x": 8.429, - "y": 28.816 - }, - { - "l": "3.0", - "x": 8.5123, - "y": 28.9926 - }, - { - "l": "3.0", - "x": 8.5957, - "y": 29.1671 - }, - { - "l": "3.0", - "x": 8.679, - "y": 29.3286 - }, - { - "l": "3.0", - "x": 8.7623, - "y": 29.5122 - }, - { - "l": "3.0", - "x": 8.8457, - "y": 29.6933 - }, - { - "l": "3.0", - "x": 8.929, - "y": 29.861 - }, - { - "l": "3.0", - "x": 9.0123, - "y": 30.0516 - }, - { - "l": "3.0", - "x": 9.0957, - "y": 30.2396 - }, - { - "l": "3.0", - "x": 9.179, - "y": 30.4135 - }, - { - "l": "3.0", - "x": 9.2623, - "y": 30.6111 - }, - { - "l": "3.0", - "x": 9.3457, - "y": 30.8059 - }, - { - "l": "3.0", - "x": 9.429, - "y": 30.9862 - }, - { - "l": "3.0", - "x": 9.5123, - "y": 31.1909 - }, - { - "l": "3.0", - "x": 9.5957, - "y": 31.3927 - }, - { - "l": "3.0", - "x": 9.679, - "y": 31.5792 - }, - { - "l": "3.0", - "x": 9.7623, - "y": 31.7911 - }, - { - "l": "3.0", - "x": 9.8457, - "y": 32.0 - }, - { - "l": "3.0", - "x": 9.929, - "y": 32.193 - }, - { - "l": "3.0", - "x": 10.0123, - "y": 32.4123 - }, - { - "l": "3.0", - "x": 10.0957, - "y": 32.6282 - }, - { - "l": "3.0", - "x": 10.179, - "y": 32.8282 - }, - { - "l": "3.0", - "x": 10.2623, - "y": 33.055 - }, - { - "l": "3.0", - "x": 10.3457, - "y": 33.2785 - }, - { - "l": "3.0", - "x": 10.429, - "y": 33.4855 - }, - { - "l": "3.0", - "x": 10.5123, - "y": 33.7206 - }, - { - "l": "3.0", - "x": 10.5957, - "y": 33.9521 - }, - { - "l": "3.0", - "x": 10.679, - "y": 34.1665 - }, - { - "l": "3.0", - "x": 10.7623, - "y": 34.4096 - }, - { - "l": "3.0", - "x": 10.8457, - "y": 34.6495 - }, - { - "l": "3.0", - "x": 10.929, - "y": 34.8714 - }, - { - "l": "3.0", - "x": 11.0123, - "y": 35.1234 - }, - { - "l": "3.0", - "x": 11.0957, - "y": 35.372 - }, - { - "l": "3.0", - "x": 11.179, - "y": 35.6019 - }, - { - "l": "3.0", - "x": 11.2623, - "y": 35.8632 - }, - { - "l": "3.0", - "x": 11.3457, - "y": 36.1207 - }, - { - "l": "3.0", - "x": 11.429, - "y": 36.3591 - }, - { - "l": "3.0", - "x": 11.5123, - "y": 36.6299 - }, - { - "l": "3.0", - "x": 11.5957, - "y": 36.897 - }, - { - "l": "3.0", - "x": 11.679, - "y": 37.1444 - }, - { - "l": "3.0", - "x": 11.7623, - "y": 37.4253 - }, - { - "l": "3.0", - "x": 11.8457, - "y": 37.7024 - }, - { - "l": "3.0", - "x": 11.929, - "y": 37.9591 - }, - { - "l": "3.0", - "x": 12.0123, - "y": 38.2508 - }, - { - "l": "3.0", - "x": 12.0957, - "y": 38.5389 - }, - { - "l": "3.0", - "x": 12.179, - "y": 38.8055 - }, - { - "l": "3.0", - "x": 12.2623, - "y": 39.1086 - }, - { - "l": "3.0", - "x": 12.3457, - "y": 39.408 - }, - { - "l": "3.0", - "x": 12.429, - "y": 39.6854 - }, - { - "l": "3.0", - "x": 12.5123, - "y": 40.0011 - }, - { - "l": "3.0", - "x": 12.5957, - "y": 40.3127 - }, - { - "l": "3.0", - "x": 12.679, - "y": 40.6018 - }, - { - "l": "3.0", - "x": 12.7623, - "y": 40.9308 - }, - { - "l": "3.0", - "x": 12.8457, - "y": 41.2555 - }, - { - "l": "3.0", - "x": 12.929, - "y": 41.5568 - }, - { - "l": "3.0", - "x": 13.0123, - "y": 41.9 - }, - { - "l": "3.0", - "x": 13.0957, - "y": 42.2393 - }, - { - "l": "3.0", - "x": 13.179, - "y": 42.5541 - }, - { - "l": "3.0", - "x": 13.2623, - "y": 42.9127 - }, - { - "l": "3.0", - "x": 13.3457, - "y": 43.2675 - }, - { - "l": "3.0", - "x": 13.429, - "y": 43.5971 - }, - { - "l": "3.0", - "x": 13.5123, - "y": 43.9725 - }, - { - "l": "3.0", - "x": 13.5957, - "y": 44.344 - }, - { - "l": "3.0", - "x": 13.679, - "y": 44.6895 - }, - { - "l": "3.0", - "x": 13.7623, - "y": 45.0833 - }, - { - "l": "3.0", - "x": 13.8457, - "y": 45.4735 - }, - { - "l": "3.0", - "x": 13.929, - "y": 45.8361 - }, - { - "l": "3.0", - "x": 14.0123, - "y": 46.2503 - }, - { - "l": "3.0", - "x": 14.0957, - "y": 46.6606 - }, - { - "l": "3.0", - "x": 14.179, - "y": 47.0424 - }, - { - "l": "3.0", - "x": 14.2623, - "y": 47.4788 - }, - { - "l": "3.0", - "x": 14.3457, - "y": 47.9115 - }, - { - "l": "3.0", - "x": 14.429, - "y": 48.3147 - }, - { - "l": "3.0", - "x": 14.5123, - "y": 48.7756 - }, - { - "l": "3.0", - "x": 14.5957, - "y": 49.2331 - }, - { - "l": "3.0", - "x": 14.679, - "y": 49.6597 - }, - { - "l": "3.0", - "x": 14.7623, - "y": 50.148 - }, - { - "l": "3.0", - "x": 14.8457, - "y": 50.6334 - }, - { - "l": "3.0", - "x": 14.929, - "y": 51.0864 - }, - { - "l": "3.0", - "x": 15.0123, - "y": 51.6055 - }, - { - "l": "3.0", - "x": 15.0957, - "y": 52.1219 - }, - { - "l": "3.0", - "x": 15.179, - "y": 52.6045 - }, - { - "l": "3.0", - "x": 15.2623, - "y": 53.1581 - }, - { - "l": "3.0", - "x": 15.3457, - "y": 53.7101 - }, - { - "l": "3.0", - "x": 15.429, - "y": 54.2261 - }, - { - "l": "3.0", - "x": 15.5123, - "y": 54.8195 - }, - { - "l": "3.0", - "x": 15.5957, - "y": 55.4114 - }, - { - "l": "3.0", - "x": 15.679, - "y": 55.9659 - }, - { - "l": "3.0", - "x": 15.7623, - "y": 56.6042 - }, - { - "l": "3.0", - "x": 15.8457, - "y": 57.2418 - }, - { - "l": "3.0", - "x": 15.929, - "y": 57.8406 - }, - { - "l": "3.0", - "x": 16.0123, - "y": 58.5308 - }, - { - "l": "3.0", - "x": 16.0957, - "y": 59.222 - }, - { - "l": "3.0", - "x": 16.179, - "y": 59.8718 - }, - { - "l": "3.0", - "x": 16.2623, - "y": 60.6223 - }, - { - "l": "3.0", - "x": 16.3457, - "y": 61.3755 - }, - { - "l": "3.0", - "x": 16.429, - "y": 62.0851 - }, - { - "l": "3.0", - "x": 16.5123, - "y": 62.9064 - }, - { - "l": "3.0", - "x": 16.5957, - "y": 63.7325 - }, - { - "l": "3.0", - "x": 16.679, - "y": 64.513 - }, - { - "l": "3.0", - "x": 16.7623, - "y": 65.4181 - }, - { - "l": "3.0", - "x": 16.8457, - "y": 66.3313 - }, - { - "l": "3.0", - "x": 16.929, - "y": 67.1959 - }, - { - "l": "3.0", - "x": 17.0123, - "y": 68.2018 - }, - { - "l": "3.0", - "x": 17.0957, - "y": 69.2197 - }, - { - "l": "3.0", - "x": 17.179, - "y": 70.1863 - }, - { - "l": "3.0", - "x": 17.2623, - "y": 71.3143 - }, - { - "l": "3.0", - "x": 17.3457, - "y": 72.4598 - }, - { - "l": "3.0", - "x": 17.429, - "y": 73.5515 - }, - { - "l": "3.0", - "x": 17.5123, - "y": 74.8304 - }, - { - "l": "3.0", - "x": 17.5957, - "y": 76.1345 - }, - { - "l": "3.0", - "x": 17.679, - "y": 77.3828 - }, - { - "l": "3.0", - "x": 17.7623, - "y": 78.8512 - }, - { - "l": "3.0", - "x": 17.8457, - "y": 80.3562 - }, - { - "l": "3.0", - "x": 17.929, - "y": 81.8035 - }, - { - "l": "3.0", - "x": 18.0123, - "y": 83.5163 - }, - { - "l": "3.0", - "x": 18.0957, - "y": 85.2819 - }, - { - "l": "3.0", - "x": 18.179, - "y": 86.9908 - }, - { - "l": "3.0", - "x": 18.2623, - "y": 89.0257 - }, - { - "l": "3.0", - "x": 18.3457, - "y": 91.1402 - }, - { - "l": "3.0", - "x": 18.429, - "y": 93.2025 - }, - { - "l": "3.0", - "x": 18.5123, - "y": 95.6776 - }, - { - "l": "3.0", - "x": 18.5957, - "y": 98.2712 - }, - { - "l": "3.0", - "x": 18.679, - "y": 100.8279 - }, - { - "l": "3.0", - "x": 18.7623, - "y": 103.933 - }, - { - "l": "3.0", - "x": 18.8457, - "y": 103.933 - } - ] - }, - { - "sds": 3.33, - "centile": 99.95657700796184, - "data": [ - { - "l": "3.33", - "x": 0.0, - "y": 17.2123 - }, - { - "l": "3.33", - "x": 0.0192, - "y": 17.5615 - }, - { - "l": "3.33", - "x": 0.0383, - "y": 17.9064 - }, - { - "l": "3.33", - "x": 0.0575, - "y": 18.2472 - }, - { - "l": "3.33", - "x": 0.0767, - "y": 18.5837 - }, - { - "l": "3.33", - "x": 0.0958, - "y": 18.8456 - }, - { - "l": "3.33", - "x": 0.115, - "y": 19.0691 - }, - { - "l": "3.33", - "x": 0.1342, - "y": 19.2727 - }, - { - "l": "3.33", - "x": 0.1533, - "y": 19.4622 - }, - { - "l": "3.33", - "x": 0.1725, - "y": 19.6455 - }, - { - "l": "3.33", - "x": 0.1916, - "y": 19.8406 - }, - { - "l": "3.33", - "x": 0.2108, - "y": 20.0295 - }, - { - "l": "3.33", - "x": 0.23, - "y": 20.2114 - }, - { - "l": "3.33", - "x": 0.2491, - "y": 20.3854 - }, - { - "l": "3.33", - "x": 0.2683, - "y": 20.5495 - }, - { - "l": "3.33", - "x": 0.2875, - "y": 20.7045 - }, - { - "l": "3.33", - "x": 0.3066, - "y": 20.8504 - }, - { - "l": "3.33", - "x": 0.3258, - "y": 20.9868 - }, - { - "l": "3.33", - "x": 0.345, - "y": 21.1085 - }, - { - "l": "3.33", - "x": 0.3641, - "y": 21.2199 - }, - { - "l": "3.33", - "x": 0.3833, - "y": 21.324 - }, - { - "l": "3.33", - "x": 0.4025, - "y": 21.4226 - }, - { - "l": "3.33", - "x": 0.4216, - "y": 21.5177 - }, - { - "l": "3.33", - "x": 0.4408, - "y": 21.616 - }, - { - "l": "3.33", - "x": 0.46, - "y": 21.7108 - }, - { - "l": "3.33", - "x": 0.4791, - "y": 21.8015 - }, - { - "l": "3.33", - "x": 0.4983, - "y": 21.8875 - }, - { - "l": "3.33", - "x": 0.5175, - "y": 21.9672 - }, - { - "l": "3.33", - "x": 0.5366, - "y": 22.0415 - }, - { - "l": "3.33", - "x": 0.5558, - "y": 22.1106 - }, - { - "l": "3.33", - "x": 0.5749, - "y": 22.1744 - }, - { - "l": "3.33", - "x": 0.5941, - "y": 22.2309 - }, - { - "l": "3.33", - "x": 0.6133, - "y": 22.2819 - }, - { - "l": "3.33", - "x": 0.6324, - "y": 22.3288 - }, - { - "l": "3.33", - "x": 0.6516, - "y": 22.3725 - }, - { - "l": "3.33", - "x": 0.6708, - "y": 22.4139 - }, - { - "l": "3.33", - "x": 0.6899, - "y": 22.4564 - }, - { - "l": "3.33", - "x": 0.7091, - "y": 22.4969 - }, - { - "l": "3.33", - "x": 0.7283, - "y": 22.5353 - }, - { - "l": "3.33", - "x": 0.7474, - "y": 22.5714 - }, - { - "l": "3.33", - "x": 0.7666, - "y": 22.6046 - }, - { - "l": "3.33", - "x": 0.7858, - "y": 22.6353 - }, - { - "l": "3.33", - "x": 0.8049, - "y": 22.6636 - }, - { - "l": "3.33", - "x": 0.8241, - "y": 22.6897 - }, - { - "l": "3.33", - "x": 0.8433, - "y": 22.7129 - }, - { - "l": "3.33", - "x": 0.8624, - "y": 22.7338 - }, - { - "l": "3.33", - "x": 0.8816, - "y": 22.753 - }, - { - "l": "3.33", - "x": 0.9008, - "y": 22.771 - }, - { - "l": "3.33", - "x": 0.9199, - "y": 22.788 - }, - { - "l": "3.33", - "x": 0.9391, - "y": 22.8057 - }, - { - "l": "3.33", - "x": 0.9582, - "y": 22.8227 - }, - { - "l": "3.33", - "x": 0.9774, - "y": 22.8389 - }, - { - "l": "3.33", - "x": 0.9966, - "y": 22.8542 - }, - { - "l": "3.33", - "x": 1.0157, - "y": 22.8685 - }, - { - "l": "3.33", - "x": 1.0349, - "y": 22.8819 - }, - { - "l": "3.33", - "x": 1.0541, - "y": 22.8944 - }, - { - "l": "3.33", - "x": 1.0732, - "y": 22.9059 - }, - { - "l": "3.33", - "x": 1.0924, - "y": 22.9163 - }, - { - "l": "3.33", - "x": 1.1116, - "y": 22.9257 - }, - { - "l": "3.33", - "x": 1.1307, - "y": 22.9344 - }, - { - "l": "3.33", - "x": 1.1499, - "y": 22.9426 - }, - { - "l": "3.33", - "x": 1.1691, - "y": 22.9504 - }, - { - "l": "3.33", - "x": 1.1882, - "y": 22.9586 - }, - { - "l": "3.33", - "x": 1.2074, - "y": 22.9666 - }, - { - "l": "3.33", - "x": 1.2266, - "y": 22.9743 - }, - { - "l": "3.33", - "x": 1.2457, - "y": 22.9817 - }, - { - "l": "3.33", - "x": 1.2649, - "y": 22.9886 - }, - { - "l": "3.33", - "x": 1.2841, - "y": 22.9952 - }, - { - "l": "3.33", - "x": 1.3032, - "y": 23.0015 - }, - { - "l": "3.33", - "x": 1.3224, - "y": 23.0075 - }, - { - "l": "3.33", - "x": 1.3415, - "y": 23.0129 - }, - { - "l": "3.33", - "x": 1.3607, - "y": 23.0181 - }, - { - "l": "3.33", - "x": 1.3799, - "y": 23.023 - }, - { - "l": "3.33", - "x": 1.399, - "y": 23.0277 - }, - { - "l": "3.33", - "x": 1.4182, - "y": 23.0324 - }, - { - "l": "3.33", - "x": 1.4374, - "y": 23.0374 - }, - { - "l": "3.33", - "x": 1.4565, - "y": 23.0424 - }, - { - "l": "3.33", - "x": 1.4757, - "y": 23.0474 - }, - { - "l": "3.33", - "x": 1.4949, - "y": 23.0523 - }, - { - "l": "3.33", - "x": 1.514, - "y": 23.0572 - }, - { - "l": "3.33", - "x": 1.5332, - "y": 23.0621 - }, - { - "l": "3.33", - "x": 1.5524, - "y": 23.0668 - }, - { - "l": "3.33", - "x": 1.5715, - "y": 23.0714 - }, - { - "l": "3.33", - "x": 1.5907, - "y": 23.0758 - }, - { - "l": "3.33", - "x": 1.6099, - "y": 23.0799 - }, - { - "l": "3.33", - "x": 1.629, - "y": 23.0839 - }, - { - "l": "3.33", - "x": 1.6482, - "y": 23.0879 - }, - { - "l": "3.33", - "x": 1.6674, - "y": 23.092 - }, - { - "l": "3.33", - "x": 1.6865, - "y": 23.0964 - }, - { - "l": "3.33", - "x": 1.7057, - "y": 23.1009 - }, - { - "l": "3.33", - "x": 1.7248, - "y": 23.1054 - }, - { - "l": "3.33", - "x": 1.744, - "y": 23.1101 - }, - { - "l": "3.33", - "x": 1.7632, - "y": 23.1147 - }, - { - "l": "3.33", - "x": 1.7823, - "y": 23.1194 - }, - { - "l": "3.33", - "x": 1.8015, - "y": 23.1241 - }, - { - "l": "3.33", - "x": 1.8207, - "y": 23.1287 - }, - { - "l": "3.33", - "x": 1.8398, - "y": 23.1331 - }, - { - "l": "3.33", - "x": 1.859, - "y": 23.1372 - }, - { - "l": "3.33", - "x": 1.8782, - "y": 23.1414 - }, - { - "l": "3.33", - "x": 1.8973, - "y": 23.1456 - }, - { - "l": "3.33", - "x": 1.9165, - "y": 23.1499 - }, - { - "l": "3.33", - "x": 1.9357, - "y": 23.1546 - }, - { - "l": "3.33", - "x": 1.9548, - "y": 23.1595 - }, - { - "l": "3.33", - "x": 1.974, - "y": 23.1645 - }, - { - "l": "3.33", - "x": 1.9932, - "y": 23.1696 - }, - { - "l": "3.33", - "x": 2.0123, - "y": 23.1747 - }, - { - "l": "3.33", - "x": 2.0957, - "y": 23.1965 - }, - { - "l": "3.33", - "x": 2.179, - "y": 23.2169 - }, - { - "l": "3.33", - "x": 2.2623, - "y": 23.2402 - }, - { - "l": "3.33", - "x": 2.3457, - "y": 23.2631 - }, - { - "l": "3.33", - "x": 2.429, - "y": 23.2847 - }, - { - "l": "3.33", - "x": 2.5123, - "y": 23.3096 - }, - { - "l": "3.33", - "x": 2.5957, - "y": 23.3349 - }, - { - "l": "3.33", - "x": 2.679, - "y": 23.3594 - }, - { - "l": "3.33", - "x": 2.7623, - "y": 23.3884 - }, - { - "l": "3.33", - "x": 2.8457, - "y": 23.4183 - }, - { - "l": "3.33", - "x": 2.929, - "y": 23.4474 - }, - { - "l": "3.33", - "x": 3.0123, - "y": 23.4821 - }, - { - "l": "3.33", - "x": 3.0957, - "y": 23.5178 - }, - { - "l": "3.33", - "x": 3.179, - "y": 23.5522 - }, - { - "l": "3.33", - "x": 3.2623, - "y": 23.5929 - }, - { - "l": "3.33", - "x": 3.3457, - "y": 23.6344 - }, - { - "l": "3.33", - "x": 3.429, - "y": 23.674 - }, - { - "l": "3.33", - "x": 3.5123, - "y": 23.7203 - }, - { - "l": "3.33", - "x": 3.5957, - "y": 23.7674 - }, - { - "l": "3.33", - "x": 3.679, - "y": 23.8123 - }, - { - "l": "3.33", - "x": 3.7623, - "y": 23.8644 - }, - { - "l": "3.33", - "x": 3.8457, - "y": 23.9173 - }, - { - "l": "3.33", - "x": 3.929, - "y": 23.9676 - }, - { - "l": "3.33", - "x": 4.0123, - "y": 24.0261 - }, - { - "l": "3.33", - "x": 4.0957, - "y": 24.0852 - }, - { - "l": "3.33", - "x": 4.179, - "y": 24.1412 - }, - { - "l": "3.33", - "x": 4.2623, - "y": 24.2062 - }, - { - "l": "3.33", - "x": 4.3457, - "y": 24.2718 - }, - { - "l": "3.33", - "x": 4.429, - "y": 24.3337 - }, - { - "l": "3.33", - "x": 4.5123, - "y": 24.4054 - }, - { - "l": "3.33", - "x": 4.5957, - "y": 24.4775 - }, - { - "l": "3.33", - "x": 4.679, - "y": 24.5458 - }, - { - "l": "3.33", - "x": 4.7623, - "y": 24.6247 - }, - { - "l": "3.33", - "x": 4.8457, - "y": 24.7042 - }, - { - "l": "3.33", - "x": 4.929, - "y": 24.7793 - }, - { - "l": "3.33", - "x": 5.0123, - "y": 24.866 - }, - { - "l": "3.33", - "x": 5.0957, - "y": 24.9534 - }, - { - "l": "3.33", - "x": 5.179, - "y": 25.0357 - }, - { - "l": "3.33", - "x": 5.2623, - "y": 25.1309 - }, - { - "l": "3.33", - "x": 5.3457, - "y": 25.2263 - }, - { - "l": "3.33", - "x": 5.429, - "y": 25.3163 - }, - { - "l": "3.33", - "x": 5.5123, - "y": 25.4201 - }, - { - "l": "3.33", - "x": 5.5957, - "y": 25.5241 - }, - { - "l": "3.33", - "x": 5.679, - "y": 25.6216 - }, - { - "l": "3.33", - "x": 5.7623, - "y": 25.734 - }, - { - "l": "3.33", - "x": 5.8457, - "y": 25.8464 - }, - { - "l": "3.33", - "x": 5.929, - "y": 25.9519 - }, - { - "l": "3.33", - "x": 6.0123, - "y": 26.0734 - }, - { - "l": "3.33", - "x": 6.0957, - "y": 26.1947 - }, - { - "l": "3.33", - "x": 6.179, - "y": 26.3084 - }, - { - "l": "3.33", - "x": 6.2623, - "y": 26.4392 - }, - { - "l": "3.33", - "x": 6.3457, - "y": 26.5697 - }, - { - "l": "3.33", - "x": 6.429, - "y": 26.6919 - }, - { - "l": "3.33", - "x": 6.5123, - "y": 26.8323 - }, - { - "l": "3.33", - "x": 6.5957, - "y": 26.9721 - }, - { - "l": "3.33", - "x": 6.679, - "y": 27.1029 - }, - { - "l": "3.33", - "x": 6.7623, - "y": 27.2528 - }, - { - "l": "3.33", - "x": 6.8457, - "y": 27.4019 - }, - { - "l": "3.33", - "x": 6.929, - "y": 27.5413 - }, - { - "l": "3.33", - "x": 7.0123, - "y": 27.7008 - }, - { - "l": "3.33", - "x": 7.0957, - "y": 27.8591 - }, - { - "l": "3.33", - "x": 7.179, - "y": 28.0069 - }, - { - "l": "3.33", - "x": 7.2623, - "y": 28.1758 - }, - { - "l": "3.33", - "x": 7.3457, - "y": 28.3433 - }, - { - "l": "3.33", - "x": 7.429, - "y": 28.4994 - }, - { - "l": "3.33", - "x": 7.5123, - "y": 28.6777 - }, - { - "l": "3.33", - "x": 7.5957, - "y": 28.8545 - }, - { - "l": "3.33", - "x": 7.679, - "y": 29.0189 - }, - { - "l": "3.33", - "x": 7.7623, - "y": 29.2067 - }, - { - "l": "3.33", - "x": 7.8457, - "y": 29.3927 - }, - { - "l": "3.33", - "x": 7.929, - "y": 29.5655 - }, - { - "l": "3.33", - "x": 8.0123, - "y": 29.7627 - }, - { - "l": "3.33", - "x": 8.0957, - "y": 29.9578 - }, - { - "l": "3.33", - "x": 8.179, - "y": 30.1391 - }, - { - "l": "3.33", - "x": 8.2623, - "y": 30.3458 - }, - { - "l": "3.33", - "x": 8.3457, - "y": 30.5503 - }, - { - "l": "3.33", - "x": 8.429, - "y": 30.7402 - }, - { - "l": "3.33", - "x": 8.5123, - "y": 30.9564 - }, - { - "l": "3.33", - "x": 8.5957, - "y": 31.1703 - }, - { - "l": "3.33", - "x": 8.679, - "y": 31.3688 - }, - { - "l": "3.33", - "x": 8.7623, - "y": 31.5948 - }, - { - "l": "3.33", - "x": 8.8457, - "y": 31.8183 - }, - { - "l": "3.33", - "x": 8.929, - "y": 32.0256 - }, - { - "l": "3.33", - "x": 9.0123, - "y": 32.2617 - }, - { - "l": "3.33", - "x": 9.0957, - "y": 32.4951 - }, - { - "l": "3.33", - "x": 9.179, - "y": 32.7115 - }, - { - "l": "3.33", - "x": 9.2623, - "y": 32.9579 - }, - { - "l": "3.33", - "x": 9.3457, - "y": 33.2015 - }, - { - "l": "3.33", - "x": 9.429, - "y": 33.4274 - }, - { - "l": "3.33", - "x": 9.5123, - "y": 33.6846 - }, - { - "l": "3.33", - "x": 9.5957, - "y": 33.9386 - }, - { - "l": "3.33", - "x": 9.679, - "y": 34.1742 - }, - { - "l": "3.33", - "x": 9.7623, - "y": 34.4425 - }, - { - "l": "3.33", - "x": 9.8457, - "y": 34.7076 - }, - { - "l": "3.33", - "x": 9.929, - "y": 34.9532 - }, - { - "l": "3.33", - "x": 10.0123, - "y": 35.2331 - }, - { - "l": "3.33", - "x": 10.0957, - "y": 35.5096 - }, - { - "l": "3.33", - "x": 10.179, - "y": 35.7662 - }, - { - "l": "3.33", - "x": 10.2623, - "y": 36.0584 - }, - { - "l": "3.33", - "x": 10.3457, - "y": 36.3471 - }, - { - "l": "3.33", - "x": 10.429, - "y": 36.6152 - }, - { - "l": "3.33", - "x": 10.5123, - "y": 36.9207 - }, - { - "l": "3.33", - "x": 10.5957, - "y": 37.2226 - }, - { - "l": "3.33", - "x": 10.679, - "y": 37.503 - }, - { - "l": "3.33", - "x": 10.7623, - "y": 37.8221 - }, - { - "l": "3.33", - "x": 10.8457, - "y": 38.1381 - }, - { - "l": "3.33", - "x": 10.929, - "y": 38.4315 - }, - { - "l": "3.33", - "x": 11.0123, - "y": 38.7658 - }, - { - "l": "3.33", - "x": 11.0957, - "y": 39.0967 - }, - { - "l": "3.33", - "x": 11.179, - "y": 39.4041 - }, - { - "l": "3.33", - "x": 11.2623, - "y": 39.7546 - }, - { - "l": "3.33", - "x": 11.3457, - "y": 40.1015 - }, - { - "l": "3.33", - "x": 11.429, - "y": 40.424 - }, - { - "l": "3.33", - "x": 11.5123, - "y": 40.7918 - }, - { - "l": "3.33", - "x": 11.5957, - "y": 41.1563 - }, - { - "l": "3.33", - "x": 11.679, - "y": 41.4951 - }, - { - "l": "3.33", - "x": 11.7623, - "y": 41.8818 - }, - { - "l": "3.33", - "x": 11.8457, - "y": 42.2649 - }, - { - "l": "3.33", - "x": 11.929, - "y": 42.6214 - }, - { - "l": "3.33", - "x": 12.0123, - "y": 43.0286 - }, - { - "l": "3.33", - "x": 12.0957, - "y": 43.4327 - }, - { - "l": "3.33", - "x": 12.179, - "y": 43.8085 - }, - { - "l": "3.33", - "x": 12.2623, - "y": 44.2381 - }, - { - "l": "3.33", - "x": 12.3457, - "y": 44.6647 - }, - { - "l": "3.33", - "x": 12.429, - "y": 45.0621 - }, - { - "l": "3.33", - "x": 12.5123, - "y": 45.5168 - }, - { - "l": "3.33", - "x": 12.5957, - "y": 45.9683 - }, - { - "l": "3.33", - "x": 12.679, - "y": 46.3896 - }, - { - "l": "3.33", - "x": 12.7623, - "y": 46.872 - }, - { - "l": "3.33", - "x": 12.8457, - "y": 47.3512 - }, - { - "l": "3.33", - "x": 12.929, - "y": 47.7987 - }, - { - "l": "3.33", - "x": 13.0123, - "y": 48.3116 - }, - { - "l": "3.33", - "x": 13.0957, - "y": 48.8223 - }, - { - "l": "3.33", - "x": 13.179, - "y": 49.2994 - }, - { - "l": "3.33", - "x": 13.2623, - "y": 49.8469 - }, - { - "l": "3.33", - "x": 13.3457, - "y": 50.3926 - }, - { - "l": "3.33", - "x": 13.429, - "y": 50.9032 - }, - { - "l": "3.33", - "x": 13.5123, - "y": 51.4896 - }, - { - "l": "3.33", - "x": 13.5957, - "y": 52.0745 - }, - { - "l": "3.33", - "x": 13.679, - "y": 52.623 - }, - { - "l": "3.33", - "x": 13.7623, - "y": 53.2536 - }, - { - "l": "3.33", - "x": 13.8457, - "y": 53.8841 - }, - { - "l": "3.33", - "x": 13.929, - "y": 54.4752 - }, - { - "l": "3.33", - "x": 14.0123, - "y": 55.1568 - }, - { - "l": "3.33", - "x": 14.0957, - "y": 55.8387 - }, - { - "l": "3.33", - "x": 14.179, - "y": 56.4797 - }, - { - "l": "3.33", - "x": 14.2623, - "y": 57.2196 - }, - { - "l": "3.33", - "x": 14.3457, - "y": 57.9615 - }, - { - "l": "3.33", - "x": 14.429, - "y": 58.6603 - }, - { - "l": "3.33", - "x": 14.5123, - "y": 59.4683 - }, - { - "l": "3.33", - "x": 14.5957, - "y": 60.2803 - }, - { - "l": "3.33", - "x": 14.679, - "y": 61.0466 - }, - { - "l": "3.33", - "x": 14.7623, - "y": 61.9347 - }, - { - "l": "3.33", - "x": 14.8457, - "y": 62.8297 - }, - { - "l": "3.33", - "x": 14.929, - "y": 63.6763 - }, - { - "l": "3.33", - "x": 15.0123, - "y": 64.6601 - }, - { - "l": "3.33", - "x": 15.0957, - "y": 65.654 - }, - { - "l": "3.33", - "x": 15.179, - "y": 66.5967 - }, - { - "l": "3.33", - "x": 15.2623, - "y": 67.6957 - }, - { - "l": "3.33", - "x": 15.3457, - "y": 68.8103 - }, - { - "l": "3.33", - "x": 15.429, - "y": 69.8703 - }, - { - "l": "3.33", - "x": 15.5123, - "y": 71.1112 - }, - { - "l": "3.33", - "x": 15.5957, - "y": 72.3735 - }, - { - "l": "3.33", - "x": 15.679, - "y": 73.5793 - }, - { - "l": "3.33", - "x": 15.7623, - "y": 74.9962 - }, - { - "l": "3.33", - "x": 15.8457, - "y": 76.444 - }, - { - "l": "3.33", - "x": 15.929, - "y": 77.8343 - }, - { - "l": "3.33", - "x": 16.0123, - "y": 79.4752 - }, - { - "l": "3.33", - "x": 16.0957, - "y": 81.1623 - }, - { - "l": "3.33", - "x": 16.179, - "y": 82.7905 - }, - { - "l": "3.33", - "x": 16.2623, - "y": 84.7243 - }, - { - "l": "3.33", - "x": 16.3457, - "y": 86.726 - }, - { - "l": "3.33", - "x": 16.429, - "y": 88.671 - }, - { - "l": "3.33", - "x": 16.5123, - "y": 90.9988 - }, - { - "l": "3.33", - "x": 16.5957, - "y": 93.4287 - }, - { - "l": "3.33", - "x": 16.679, - "y": 95.8111 - }, - { - "l": "3.33", - "x": 16.7623, - "y": 98.6893 - }, - { - "l": "3.33", - "x": 16.8457, - "y": 101.7276 - }, - { - "l": "3.33", - "x": 16.929, - "y": 104.74 - }, - { - "l": "3.33", - "x": 17.0123, - "y": 108.4271 - }, - { - "l": "3.33", - "x": 17.0957, - "y": 112.378 - }, - { - "l": "3.33", - "x": 17.179, - "y": 116.3568 - }, - { - "l": "3.33", - "x": 17.2623, - "y": 121.3136 - }, - { - "l": "3.33", - "x": 17.3457, - "y": 126.7394 - }, - { - "l": "3.33", - "x": 17.429, - "y": 132.3298 - }, - { - "l": "3.33", - "x": 17.5123, - "y": 139.4854 - }, - { - "l": "3.33", - "x": 17.5957, - "y": 147.5775 - }, - { - "l": "3.33", - "x": 17.679, - "y": 156.2282 - }, - { - "l": "3.33", - "x": 17.7623, - "y": 167.8044 - }, - { - "l": "3.33", - "x": 17.8457, - "y": 181.6714 - }, - { - "l": "3.33", - "x": 17.929, - "y": 197.538 - }, - { - "l": "3.33", - "x": 18.0123, - "y": 220.7962 - }, - { - "l": "3.33", - "x": 18.0957, - "y": 252.4474 - }, - { - "l": "3.33", - "x": 18.179, - "y": 295.5322 - }, - { - "l": "3.33", - "x": 18.2623, - "y": 379.3975 - }, - { - "l": "3.33", - "x": 18.3457, - "y": 581.6688 - }, - { - "l": "3.33", - "x": 18.429, - "y": 4204.5954 - }, - { - "l": "3.33", - "x": 18.5123, - "y": null - }, - { - "l": "3.33", - "x": 18.5957, - "y": null - }, - { - "l": "3.33", - "x": 18.679, - "y": null - }, - { - "l": "3.33", - "x": 18.7623, - "y": null - }, - { - "l": "3.33", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": 3.67, - "centile": 99.98787247657145, - "data": [ - { - "l": "3.67", - "x": 0.0, - "y": 17.745 - }, - { - "l": "3.67", - "x": 0.0192, - "y": 18.0998 - }, - { - "l": "3.67", - "x": 0.0383, - "y": 18.45 - }, - { - "l": "3.67", - "x": 0.0575, - "y": 18.7956 - }, - { - "l": "3.67", - "x": 0.0767, - "y": 19.1365 - }, - { - "l": "3.67", - "x": 0.0958, - "y": 19.4018 - }, - { - "l": "3.67", - "x": 0.115, - "y": 19.6283 - }, - { - "l": "3.67", - "x": 0.1342, - "y": 19.8348 - }, - { - "l": "3.67", - "x": 0.1533, - "y": 20.027 - }, - { - "l": "3.67", - "x": 0.1725, - "y": 20.2131 - }, - { - "l": "3.67", - "x": 0.1916, - "y": 20.4111 - }, - { - "l": "3.67", - "x": 0.2108, - "y": 20.6028 - }, - { - "l": "3.67", - "x": 0.23, - "y": 20.7875 - }, - { - "l": "3.67", - "x": 0.2491, - "y": 20.9643 - }, - { - "l": "3.67", - "x": 0.2683, - "y": 21.1309 - }, - { - "l": "3.67", - "x": 0.2875, - "y": 21.2884 - }, - { - "l": "3.67", - "x": 0.3066, - "y": 21.4367 - }, - { - "l": "3.67", - "x": 0.3258, - "y": 21.5753 - }, - { - "l": "3.67", - "x": 0.345, - "y": 21.6989 - }, - { - "l": "3.67", - "x": 0.3641, - "y": 21.8121 - }, - { - "l": "3.67", - "x": 0.3833, - "y": 21.918 - }, - { - "l": "3.67", - "x": 0.4025, - "y": 22.0181 - }, - { - "l": "3.67", - "x": 0.4216, - "y": 22.1148 - }, - { - "l": "3.67", - "x": 0.4408, - "y": 22.2147 - }, - { - "l": "3.67", - "x": 0.46, - "y": 22.311 - }, - { - "l": "3.67", - "x": 0.4791, - "y": 22.4032 - }, - { - "l": "3.67", - "x": 0.4983, - "y": 22.4906 - }, - { - "l": "3.67", - "x": 0.5175, - "y": 22.5716 - }, - { - "l": "3.67", - "x": 0.5366, - "y": 22.6471 - }, - { - "l": "3.67", - "x": 0.5558, - "y": 22.7172 - }, - { - "l": "3.67", - "x": 0.5749, - "y": 22.7821 - }, - { - "l": "3.67", - "x": 0.5941, - "y": 22.8394 - }, - { - "l": "3.67", - "x": 0.6133, - "y": 22.8912 - }, - { - "l": "3.67", - "x": 0.6324, - "y": 22.9388 - }, - { - "l": "3.67", - "x": 0.6516, - "y": 22.9832 - }, - { - "l": "3.67", - "x": 0.6708, - "y": 23.0253 - }, - { - "l": "3.67", - "x": 0.6899, - "y": 23.0684 - }, - { - "l": "3.67", - "x": 0.7091, - "y": 23.1096 - }, - { - "l": "3.67", - "x": 0.7283, - "y": 23.1486 - }, - { - "l": "3.67", - "x": 0.7474, - "y": 23.1852 - }, - { - "l": "3.67", - "x": 0.7666, - "y": 23.219 - }, - { - "l": "3.67", - "x": 0.7858, - "y": 23.2502 - }, - { - "l": "3.67", - "x": 0.8049, - "y": 23.279 - }, - { - "l": "3.67", - "x": 0.8241, - "y": 23.3055 - }, - { - "l": "3.67", - "x": 0.8433, - "y": 23.3292 - }, - { - "l": "3.67", - "x": 0.8624, - "y": 23.3505 - }, - { - "l": "3.67", - "x": 0.8816, - "y": 23.3701 - }, - { - "l": "3.67", - "x": 0.9008, - "y": 23.3884 - }, - { - "l": "3.67", - "x": 0.9199, - "y": 23.4059 - }, - { - "l": "3.67", - "x": 0.9391, - "y": 23.424 - }, - { - "l": "3.67", - "x": 0.9582, - "y": 23.4414 - }, - { - "l": "3.67", - "x": 0.9774, - "y": 23.458 - }, - { - "l": "3.67", - "x": 0.9966, - "y": 23.4739 - }, - { - "l": "3.67", - "x": 1.0157, - "y": 23.4886 - }, - { - "l": "3.67", - "x": 1.0349, - "y": 23.5025 - }, - { - "l": "3.67", - "x": 1.0541, - "y": 23.5154 - }, - { - "l": "3.67", - "x": 1.0732, - "y": 23.5274 - }, - { - "l": "3.67", - "x": 1.0924, - "y": 23.5382 - }, - { - "l": "3.67", - "x": 1.1116, - "y": 23.548 - }, - { - "l": "3.67", - "x": 1.1307, - "y": 23.5572 - }, - { - "l": "3.67", - "x": 1.1499, - "y": 23.5658 - }, - { - "l": "3.67", - "x": 1.1691, - "y": 23.5741 - }, - { - "l": "3.67", - "x": 1.1882, - "y": 23.5828 - }, - { - "l": "3.67", - "x": 1.2074, - "y": 23.5913 - }, - { - "l": "3.67", - "x": 1.2266, - "y": 23.5996 - }, - { - "l": "3.67", - "x": 1.2457, - "y": 23.6075 - }, - { - "l": "3.67", - "x": 1.2649, - "y": 23.6151 - }, - { - "l": "3.67", - "x": 1.2841, - "y": 23.6223 - }, - { - "l": "3.67", - "x": 1.3032, - "y": 23.6291 - }, - { - "l": "3.67", - "x": 1.3224, - "y": 23.6357 - }, - { - "l": "3.67", - "x": 1.3415, - "y": 23.6418 - }, - { - "l": "3.67", - "x": 1.3607, - "y": 23.6475 - }, - { - "l": "3.67", - "x": 1.3799, - "y": 23.6529 - }, - { - "l": "3.67", - "x": 1.399, - "y": 23.6583 - }, - { - "l": "3.67", - "x": 1.4182, - "y": 23.6637 - }, - { - "l": "3.67", - "x": 1.4374, - "y": 23.6693 - }, - { - "l": "3.67", - "x": 1.4565, - "y": 23.675 - }, - { - "l": "3.67", - "x": 1.4757, - "y": 23.6808 - }, - { - "l": "3.67", - "x": 1.4949, - "y": 23.6865 - }, - { - "l": "3.67", - "x": 1.514, - "y": 23.6922 - }, - { - "l": "3.67", - "x": 1.5332, - "y": 23.6978 - }, - { - "l": "3.67", - "x": 1.5524, - "y": 23.7034 - }, - { - "l": "3.67", - "x": 1.5715, - "y": 23.7088 - }, - { - "l": "3.67", - "x": 1.5907, - "y": 23.714 - }, - { - "l": "3.67", - "x": 1.6099, - "y": 23.7188 - }, - { - "l": "3.67", - "x": 1.629, - "y": 23.7236 - }, - { - "l": "3.67", - "x": 1.6482, - "y": 23.7284 - }, - { - "l": "3.67", - "x": 1.6674, - "y": 23.7333 - }, - { - "l": "3.67", - "x": 1.6865, - "y": 23.7386 - }, - { - "l": "3.67", - "x": 1.7057, - "y": 23.7441 - }, - { - "l": "3.67", - "x": 1.7248, - "y": 23.7496 - }, - { - "l": "3.67", - "x": 1.744, - "y": 23.7552 - }, - { - "l": "3.67", - "x": 1.7632, - "y": 23.7609 - }, - { - "l": "3.67", - "x": 1.7823, - "y": 23.7667 - }, - { - "l": "3.67", - "x": 1.8015, - "y": 23.7724 - }, - { - "l": "3.67", - "x": 1.8207, - "y": 23.778 - }, - { - "l": "3.67", - "x": 1.8398, - "y": 23.7834 - }, - { - "l": "3.67", - "x": 1.859, - "y": 23.7885 - }, - { - "l": "3.67", - "x": 1.8782, - "y": 23.7937 - }, - { - "l": "3.67", - "x": 1.8973, - "y": 23.7988 - }, - { - "l": "3.67", - "x": 1.9165, - "y": 23.8042 - }, - { - "l": "3.67", - "x": 1.9357, - "y": 23.81 - }, - { - "l": "3.67", - "x": 1.9548, - "y": 23.816 - }, - { - "l": "3.67", - "x": 1.974, - "y": 23.8223 - }, - { - "l": "3.67", - "x": 1.9932, - "y": 23.8286 - }, - { - "l": "3.67", - "x": 2.0123, - "y": 23.835 - }, - { - "l": "3.67", - "x": 2.0957, - "y": 23.8622 - }, - { - "l": "3.67", - "x": 2.179, - "y": 23.8877 - }, - { - "l": "3.67", - "x": 2.2623, - "y": 23.9171 - }, - { - "l": "3.67", - "x": 2.3457, - "y": 23.9462 - }, - { - "l": "3.67", - "x": 2.429, - "y": 23.9737 - }, - { - "l": "3.67", - "x": 2.5123, - "y": 24.0054 - }, - { - "l": "3.67", - "x": 2.5957, - "y": 24.0377 - }, - { - "l": "3.67", - "x": 2.679, - "y": 24.0688 - }, - { - "l": "3.67", - "x": 2.7623, - "y": 24.1055 - }, - { - "l": "3.67", - "x": 2.8457, - "y": 24.1432 - }, - { - "l": "3.67", - "x": 2.929, - "y": 24.1796 - }, - { - "l": "3.67", - "x": 3.0123, - "y": 24.2227 - }, - { - "l": "3.67", - "x": 3.0957, - "y": 24.267 - }, - { - "l": "3.67", - "x": 3.179, - "y": 24.3094 - }, - { - "l": "3.67", - "x": 3.2623, - "y": 24.3594 - }, - { - "l": "3.67", - "x": 3.3457, - "y": 24.4102 - }, - { - "l": "3.67", - "x": 3.429, - "y": 24.4586 - }, - { - "l": "3.67", - "x": 3.5123, - "y": 24.5151 - }, - { - "l": "3.67", - "x": 3.5957, - "y": 24.5723 - }, - { - "l": "3.67", - "x": 3.679, - "y": 24.6267 - }, - { - "l": "3.67", - "x": 3.7623, - "y": 24.6899 - }, - { - "l": "3.67", - "x": 3.8457, - "y": 24.7539 - }, - { - "l": "3.67", - "x": 3.929, - "y": 24.8145 - }, - { - "l": "3.67", - "x": 4.0123, - "y": 24.885 - }, - { - "l": "3.67", - "x": 4.0957, - "y": 24.9561 - }, - { - "l": "3.67", - "x": 4.179, - "y": 25.0234 - }, - { - "l": "3.67", - "x": 4.2623, - "y": 25.1015 - }, - { - "l": "3.67", - "x": 4.3457, - "y": 25.1801 - }, - { - "l": "3.67", - "x": 4.429, - "y": 25.2542 - }, - { - "l": "3.67", - "x": 4.5123, - "y": 25.3401 - }, - { - "l": "3.67", - "x": 4.5957, - "y": 25.4264 - }, - { - "l": "3.67", - "x": 4.679, - "y": 25.508 - }, - { - "l": "3.67", - "x": 4.7623, - "y": 25.6023 - }, - { - "l": "3.67", - "x": 4.8457, - "y": 25.6972 - }, - { - "l": "3.67", - "x": 4.929, - "y": 25.7867 - }, - { - "l": "3.67", - "x": 5.0123, - "y": 25.8901 - }, - { - "l": "3.67", - "x": 5.0957, - "y": 25.9942 - }, - { - "l": "3.67", - "x": 5.179, - "y": 26.0922 - }, - { - "l": "3.67", - "x": 5.2623, - "y": 26.2055 - }, - { - "l": "3.67", - "x": 5.3457, - "y": 26.3191 - }, - { - "l": "3.67", - "x": 5.429, - "y": 26.4261 - }, - { - "l": "3.67", - "x": 5.5123, - "y": 26.5495 - }, - { - "l": "3.67", - "x": 5.5957, - "y": 26.6731 - }, - { - "l": "3.67", - "x": 5.679, - "y": 26.7892 - }, - { - "l": "3.67", - "x": 5.7623, - "y": 26.9229 - }, - { - "l": "3.67", - "x": 5.8457, - "y": 27.0565 - }, - { - "l": "3.67", - "x": 5.929, - "y": 27.1821 - }, - { - "l": "3.67", - "x": 6.0123, - "y": 27.3267 - }, - { - "l": "3.67", - "x": 6.0957, - "y": 27.471 - }, - { - "l": "3.67", - "x": 6.179, - "y": 27.6066 - }, - { - "l": "3.67", - "x": 6.2623, - "y": 27.7624 - }, - { - "l": "3.67", - "x": 6.3457, - "y": 27.9179 - }, - { - "l": "3.67", - "x": 6.429, - "y": 28.0637 - }, - { - "l": "3.67", - "x": 6.5123, - "y": 28.2314 - }, - { - "l": "3.67", - "x": 6.5957, - "y": 28.3984 - }, - { - "l": "3.67", - "x": 6.679, - "y": 28.5547 - }, - { - "l": "3.67", - "x": 6.7623, - "y": 28.7341 - }, - { - "l": "3.67", - "x": 6.8457, - "y": 28.9128 - }, - { - "l": "3.67", - "x": 6.929, - "y": 29.0799 - }, - { - "l": "3.67", - "x": 7.0123, - "y": 29.2713 - }, - { - "l": "3.67", - "x": 7.0957, - "y": 29.4617 - }, - { - "l": "3.67", - "x": 7.179, - "y": 29.6395 - }, - { - "l": "3.67", - "x": 7.2623, - "y": 29.8431 - }, - { - "l": "3.67", - "x": 7.3457, - "y": 30.0453 - }, - { - "l": "3.67", - "x": 7.429, - "y": 30.234 - }, - { - "l": "3.67", - "x": 7.5123, - "y": 30.4499 - }, - { - "l": "3.67", - "x": 7.5957, - "y": 30.6643 - }, - { - "l": "3.67", - "x": 7.679, - "y": 30.864 - }, - { - "l": "3.67", - "x": 7.7623, - "y": 31.0925 - }, - { - "l": "3.67", - "x": 7.8457, - "y": 31.3193 - }, - { - "l": "3.67", - "x": 7.929, - "y": 31.5305 - }, - { - "l": "3.67", - "x": 8.0123, - "y": 31.7717 - }, - { - "l": "3.67", - "x": 8.0957, - "y": 32.011 - }, - { - "l": "3.67", - "x": 8.179, - "y": 32.2338 - }, - { - "l": "3.67", - "x": 8.2623, - "y": 32.4884 - }, - { - "l": "3.67", - "x": 8.3457, - "y": 32.7408 - }, - { - "l": "3.67", - "x": 8.429, - "y": 32.9756 - }, - { - "l": "3.67", - "x": 8.5123, - "y": 33.2437 - }, - { - "l": "3.67", - "x": 8.5957, - "y": 33.5096 - }, - { - "l": "3.67", - "x": 8.679, - "y": 33.7569 - }, - { - "l": "3.67", - "x": 8.7623, - "y": 34.0392 - }, - { - "l": "3.67", - "x": 8.8457, - "y": 34.3191 - }, - { - "l": "3.67", - "x": 8.929, - "y": 34.5794 - }, - { - "l": "3.67", - "x": 9.0123, - "y": 34.8766 - }, - { - "l": "3.67", - "x": 9.0957, - "y": 35.1713 - }, - { - "l": "3.67", - "x": 9.179, - "y": 35.4454 - }, - { - "l": "3.67", - "x": 9.2623, - "y": 35.7583 - }, - { - "l": "3.67", - "x": 9.3457, - "y": 36.0686 - }, - { - "l": "3.67", - "x": 9.429, - "y": 36.3572 - }, - { - "l": "3.67", - "x": 9.5123, - "y": 36.6869 - }, - { - "l": "3.67", - "x": 9.5957, - "y": 37.0136 - }, - { - "l": "3.67", - "x": 9.679, - "y": 37.3176 - }, - { - "l": "3.67", - "x": 9.7623, - "y": 37.6649 - }, - { - "l": "3.67", - "x": 9.8457, - "y": 38.0095 - }, - { - "l": "3.67", - "x": 9.929, - "y": 38.3297 - }, - { - "l": "3.67", - "x": 10.0123, - "y": 38.696 - }, - { - "l": "3.67", - "x": 10.0957, - "y": 39.0593 - }, - { - "l": "3.67", - "x": 10.179, - "y": 39.3977 - }, - { - "l": "3.67", - "x": 10.2623, - "y": 39.7845 - }, - { - "l": "3.67", - "x": 10.3457, - "y": 40.1684 - }, - { - "l": "3.67", - "x": 10.429, - "y": 40.5263 - }, - { - "l": "3.67", - "x": 10.5123, - "y": 40.9358 - }, - { - "l": "3.67", - "x": 10.5957, - "y": 41.3423 - }, - { - "l": "3.67", - "x": 10.679, - "y": 41.7215 - }, - { - "l": "3.67", - "x": 10.7623, - "y": 42.1551 - }, - { - "l": "3.67", - "x": 10.8457, - "y": 42.5865 - }, - { - "l": "3.67", - "x": 10.929, - "y": 42.9889 - }, - { - "l": "3.67", - "x": 11.0123, - "y": 43.4498 - }, - { - "l": "3.67", - "x": 11.0957, - "y": 43.9084 - }, - { - "l": "3.67", - "x": 11.179, - "y": 44.3365 - }, - { - "l": "3.67", - "x": 11.2623, - "y": 44.8274 - }, - { - "l": "3.67", - "x": 11.3457, - "y": 45.316 - }, - { - "l": "3.67", - "x": 11.429, - "y": 45.7728 - }, - { - "l": "3.67", - "x": 11.5123, - "y": 46.2968 - }, - { - "l": "3.67", - "x": 11.5957, - "y": 46.8192 - }, - { - "l": "3.67", - "x": 11.679, - "y": 47.3079 - }, - { - "l": "3.67", - "x": 11.7623, - "y": 47.8691 - }, - { - "l": "3.67", - "x": 11.8457, - "y": 48.429 - }, - { - "l": "3.67", - "x": 11.929, - "y": 48.9534 - }, - { - "l": "3.67", - "x": 12.0123, - "y": 49.5566 - }, - { - "l": "3.67", - "x": 12.0957, - "y": 50.1595 - }, - { - "l": "3.67", - "x": 12.179, - "y": 50.7245 - }, - { - "l": "3.67", - "x": 12.2623, - "y": 51.3753 - }, - { - "l": "3.67", - "x": 12.3457, - "y": 52.0268 - }, - { - "l": "3.67", - "x": 12.429, - "y": 52.6385 - }, - { - "l": "3.67", - "x": 12.5123, - "y": 53.3444 - }, - { - "l": "3.67", - "x": 12.5957, - "y": 54.0517 - }, - { - "l": "3.67", - "x": 12.679, - "y": 54.7175 - }, - { - "l": "3.67", - "x": 12.7623, - "y": 55.487 - }, - { - "l": "3.67", - "x": 12.8457, - "y": 56.2591 - }, - { - "l": "3.67", - "x": 12.929, - "y": 56.9873 - }, - { - "l": "3.67", - "x": 13.0123, - "y": 57.8307 - }, - { - "l": "3.67", - "x": 13.0957, - "y": 58.6796 - }, - { - "l": "3.67", - "x": 13.179, - "y": 59.4816 - }, - { - "l": "3.67", - "x": 13.2623, - "y": 60.4126 - }, - { - "l": "3.67", - "x": 13.3457, - "y": 61.352 - }, - { - "l": "3.67", - "x": 13.429, - "y": 62.2422 - }, - { - "l": "3.67", - "x": 13.5123, - "y": 63.2777 - }, - { - "l": "3.67", - "x": 13.5957, - "y": 64.3254 - }, - { - "l": "3.67", - "x": 13.679, - "y": 65.3214 - }, - { - "l": "3.67", - "x": 13.7623, - "y": 66.4836 - }, - { - "l": "3.67", - "x": 13.8457, - "y": 67.6643 - }, - { - "l": "3.67", - "x": 13.929, - "y": 68.789 - }, - { - "l": "3.67", - "x": 14.0123, - "y": 70.1076 - }, - { - "l": "3.67", - "x": 14.0957, - "y": 71.4516 - }, - { - "l": "3.67", - "x": 14.179, - "y": 72.738 - }, - { - "l": "3.67", - "x": 14.2623, - "y": 74.2518 - }, - { - "l": "3.67", - "x": 14.3457, - "y": 75.8026 - }, - { - "l": "3.67", - "x": 14.429, - "y": 77.2942 - }, - { - "l": "3.67", - "x": 14.5123, - "y": 79.0584 - }, - { - "l": "3.67", - "x": 14.5957, - "y": 80.8761 - }, - { - "l": "3.67", - "x": 14.679, - "y": 82.6344 - }, - { - "l": "3.67", - "x": 14.7623, - "y": 84.7278 - }, - { - "l": "3.67", - "x": 14.8457, - "y": 86.9004 - }, - { - "l": "3.67", - "x": 14.929, - "y": 89.0174 - }, - { - "l": "3.67", - "x": 15.0123, - "y": 91.5584 - }, - { - "l": "3.67", - "x": 15.0957, - "y": 94.2182 - }, - { - "l": "3.67", - "x": 15.179, - "y": 96.8345 - }, - { - "l": "3.67", - "x": 15.2623, - "y": 100.0073 - }, - { - "l": "3.67", - "x": 15.3457, - "y": 103.3705 - }, - { - "l": "3.67", - "x": 15.429, - "y": 106.7178 - }, - { - "l": "3.67", - "x": 15.5123, - "y": 110.8359 - }, - { - "l": "3.67", - "x": 15.5957, - "y": 115.2696 - }, - { - "l": "3.67", - "x": 15.679, - "y": 119.7602 - }, - { - "l": "3.67", - "x": 15.7623, - "y": 125.3933 - }, - { - "l": "3.67", - "x": 15.8457, - "y": 131.6001 - }, - { - "l": "3.67", - "x": 15.929, - "y": 138.0509 - }, - { - "l": "3.67", - "x": 16.0123, - "y": 146.385 - }, - { - "l": "3.67", - "x": 16.0957, - "y": 155.9177 - }, - { - "l": "3.67", - "x": 16.179, - "y": 166.2394 - }, - { - "l": "3.67", - "x": 16.2623, - "y": 180.2792 - }, - { - "l": "3.67", - "x": 16.3457, - "y": 197.4439 - }, - { - "l": "3.67", - "x": 16.429, - "y": 217.5777 - }, - { - "l": "3.67", - "x": 16.5123, - "y": 248.126 - }, - { - "l": "3.67", - "x": 16.5957, - "y": 291.9013 - }, - { - "l": "3.67", - "x": 16.679, - "y": 356.2453 - }, - { - "l": "3.67", - "x": 16.7623, - "y": 502.3807 - }, - { - "l": "3.67", - "x": 16.8457, - "y": 1096.3772 - }, - { - "l": "3.67", - "x": 16.929, - "y": null - }, - { - "l": "3.67", - "x": 17.0123, - "y": null - }, - { - "l": "3.67", - "x": 17.0957, - "y": null - }, - { - "l": "3.67", - "x": 17.179, - "y": null - }, - { - "l": "3.67", - "x": 17.2623, - "y": null - }, - { - "l": "3.67", - "x": 17.3457, - "y": null - }, - { - "l": "3.67", - "x": 17.429, - "y": null - }, - { - "l": "3.67", - "x": 17.5123, - "y": null - }, - { - "l": "3.67", - "x": 17.5957, - "y": null - }, - { - "l": "3.67", - "x": 17.679, - "y": null - }, - { - "l": "3.67", - "x": 17.7623, - "y": null - }, - { - "l": "3.67", - "x": 17.8457, - "y": null - }, - { - "l": "3.67", - "x": 17.929, - "y": null - }, - { - "l": "3.67", - "x": 18.0123, - "y": null - }, - { - "l": "3.67", - "x": 18.0957, - "y": null - }, - { - "l": "3.67", - "x": 18.179, - "y": null - }, - { - "l": "3.67", - "x": 18.2623, - "y": null - }, - { - "l": "3.67", - "x": 18.3457, - "y": null - }, - { - "l": "3.67", - "x": 18.429, - "y": null - }, - { - "l": "3.67", - "x": 18.5123, - "y": null - }, - { - "l": "3.67", - "x": 18.5957, - "y": null - }, - { - "l": "3.67", - "x": 18.679, - "y": null - }, - { - "l": "3.67", - "x": 18.7623, - "y": null - }, - { - "l": "3.67", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": 4.0, - "centile": 99.9968328758167, - "data": [ - { - "l": "4.0", - "x": 0.0, - "y": 18.265 - }, - { - "l": "4.0", - "x": 0.0192, - "y": 18.6256 - }, - { - "l": "4.0", - "x": 0.0383, - "y": 18.981 - }, - { - "l": "4.0", - "x": 0.0575, - "y": 19.3314 - }, - { - "l": "4.0", - "x": 0.0767, - "y": 19.6766 - }, - { - "l": "4.0", - "x": 0.0958, - "y": 19.9454 - }, - { - "l": "4.0", - "x": 0.115, - "y": 20.175 - }, - { - "l": "4.0", - "x": 0.1342, - "y": 20.3843 - }, - { - "l": "4.0", - "x": 0.1533, - "y": 20.5792 - }, - { - "l": "4.0", - "x": 0.1725, - "y": 20.7681 - }, - { - "l": "4.0", - "x": 0.1916, - "y": 20.9689 - }, - { - "l": "4.0", - "x": 0.2108, - "y": 21.1635 - }, - { - "l": "4.0", - "x": 0.23, - "y": 21.351 - }, - { - "l": "4.0", - "x": 0.2491, - "y": 21.5305 - }, - { - "l": "4.0", - "x": 0.2683, - "y": 21.6997 - }, - { - "l": "4.0", - "x": 0.2875, - "y": 21.8597 - }, - { - "l": "4.0", - "x": 0.3066, - "y": 22.0103 - }, - { - "l": "4.0", - "x": 0.3258, - "y": 22.1511 - }, - { - "l": "4.0", - "x": 0.345, - "y": 22.2767 - }, - { - "l": "4.0", - "x": 0.3641, - "y": 22.3917 - }, - { - "l": "4.0", - "x": 0.3833, - "y": 22.4992 - }, - { - "l": "4.0", - "x": 0.4025, - "y": 22.601 - }, - { - "l": "4.0", - "x": 0.4216, - "y": 22.6992 - }, - { - "l": "4.0", - "x": 0.4408, - "y": 22.8008 - }, - { - "l": "4.0", - "x": 0.46, - "y": 22.8986 - }, - { - "l": "4.0", - "x": 0.4791, - "y": 22.9922 - }, - { - "l": "4.0", - "x": 0.4983, - "y": 23.0811 - }, - { - "l": "4.0", - "x": 0.5175, - "y": 23.1633 - }, - { - "l": "4.0", - "x": 0.5366, - "y": 23.2399 - }, - { - "l": "4.0", - "x": 0.5558, - "y": 23.3112 - }, - { - "l": "4.0", - "x": 0.5749, - "y": 23.377 - }, - { - "l": "4.0", - "x": 0.5941, - "y": 23.4353 - }, - { - "l": "4.0", - "x": 0.6133, - "y": 23.4879 - }, - { - "l": "4.0", - "x": 0.6324, - "y": 23.5362 - }, - { - "l": "4.0", - "x": 0.6516, - "y": 23.5813 - }, - { - "l": "4.0", - "x": 0.6708, - "y": 23.624 - }, - { - "l": "4.0", - "x": 0.6899, - "y": 23.6679 - }, - { - "l": "4.0", - "x": 0.7091, - "y": 23.7097 - }, - { - "l": "4.0", - "x": 0.7283, - "y": 23.7493 - }, - { - "l": "4.0", - "x": 0.7474, - "y": 23.7866 - }, - { - "l": "4.0", - "x": 0.7666, - "y": 23.8208 - }, - { - "l": "4.0", - "x": 0.7858, - "y": 23.8526 - }, - { - "l": "4.0", - "x": 0.8049, - "y": 23.8819 - }, - { - "l": "4.0", - "x": 0.8241, - "y": 23.909 - }, - { - "l": "4.0", - "x": 0.8433, - "y": 23.933 - }, - { - "l": "4.0", - "x": 0.8624, - "y": 23.9547 - }, - { - "l": "4.0", - "x": 0.8816, - "y": 23.9748 - }, - { - "l": "4.0", - "x": 0.9008, - "y": 23.9936 - }, - { - "l": "4.0", - "x": 0.9199, - "y": 24.0114 - }, - { - "l": "4.0", - "x": 0.9391, - "y": 24.03 - }, - { - "l": "4.0", - "x": 0.9582, - "y": 24.0479 - }, - { - "l": "4.0", - "x": 0.9774, - "y": 24.065 - }, - { - "l": "4.0", - "x": 0.9966, - "y": 24.0813 - }, - { - "l": "4.0", - "x": 1.0157, - "y": 24.0966 - }, - { - "l": "4.0", - "x": 1.0349, - "y": 24.1109 - }, - { - "l": "4.0", - "x": 1.0541, - "y": 24.1243 - }, - { - "l": "4.0", - "x": 1.0732, - "y": 24.1368 - }, - { - "l": "4.0", - "x": 1.0924, - "y": 24.1481 - }, - { - "l": "4.0", - "x": 1.1116, - "y": 24.1584 - }, - { - "l": "4.0", - "x": 1.1307, - "y": 24.168 - }, - { - "l": "4.0", - "x": 1.1499, - "y": 24.1771 - }, - { - "l": "4.0", - "x": 1.1691, - "y": 24.1859 - }, - { - "l": "4.0", - "x": 1.1882, - "y": 24.1952 - }, - { - "l": "4.0", - "x": 1.2074, - "y": 24.2042 - }, - { - "l": "4.0", - "x": 1.2266, - "y": 24.2131 - }, - { - "l": "4.0", - "x": 1.2457, - "y": 24.2216 - }, - { - "l": "4.0", - "x": 1.2649, - "y": 24.2298 - }, - { - "l": "4.0", - "x": 1.2841, - "y": 24.2377 - }, - { - "l": "4.0", - "x": 1.3032, - "y": 24.2452 - }, - { - "l": "4.0", - "x": 1.3224, - "y": 24.2524 - }, - { - "l": "4.0", - "x": 1.3415, - "y": 24.2591 - }, - { - "l": "4.0", - "x": 1.3607, - "y": 24.2654 - }, - { - "l": "4.0", - "x": 1.3799, - "y": 24.2715 - }, - { - "l": "4.0", - "x": 1.399, - "y": 24.2775 - }, - { - "l": "4.0", - "x": 1.4182, - "y": 24.2835 - }, - { - "l": "4.0", - "x": 1.4374, - "y": 24.2899 - }, - { - "l": "4.0", - "x": 1.4565, - "y": 24.2964 - }, - { - "l": "4.0", - "x": 1.4757, - "y": 24.3029 - }, - { - "l": "4.0", - "x": 1.4949, - "y": 24.3095 - }, - { - "l": "4.0", - "x": 1.514, - "y": 24.316 - }, - { - "l": "4.0", - "x": 1.5332, - "y": 24.3225 - }, - { - "l": "4.0", - "x": 1.5524, - "y": 24.3289 - }, - { - "l": "4.0", - "x": 1.5715, - "y": 24.3353 - }, - { - "l": "4.0", - "x": 1.5907, - "y": 24.3412 - }, - { - "l": "4.0", - "x": 1.6099, - "y": 24.3469 - }, - { - "l": "4.0", - "x": 1.629, - "y": 24.3525 - }, - { - "l": "4.0", - "x": 1.6482, - "y": 24.3582 - }, - { - "l": "4.0", - "x": 1.6674, - "y": 24.364 - }, - { - "l": "4.0", - "x": 1.6865, - "y": 24.3702 - }, - { - "l": "4.0", - "x": 1.7057, - "y": 24.3766 - }, - { - "l": "4.0", - "x": 1.7248, - "y": 24.3832 - }, - { - "l": "4.0", - "x": 1.744, - "y": 24.3899 - }, - { - "l": "4.0", - "x": 1.7632, - "y": 24.3967 - }, - { - "l": "4.0", - "x": 1.7823, - "y": 24.4035 - }, - { - "l": "4.0", - "x": 1.8015, - "y": 24.4103 - }, - { - "l": "4.0", - "x": 1.8207, - "y": 24.4171 - }, - { - "l": "4.0", - "x": 1.8398, - "y": 24.4235 - }, - { - "l": "4.0", - "x": 1.859, - "y": 24.4297 - }, - { - "l": "4.0", - "x": 1.8782, - "y": 24.4358 - }, - { - "l": "4.0", - "x": 1.8973, - "y": 24.4421 - }, - { - "l": "4.0", - "x": 1.9165, - "y": 24.4485 - }, - { - "l": "4.0", - "x": 1.9357, - "y": 24.4555 - }, - { - "l": "4.0", - "x": 1.9548, - "y": 24.4628 - }, - { - "l": "4.0", - "x": 1.974, - "y": 24.4703 - }, - { - "l": "4.0", - "x": 1.9932, - "y": 24.4779 - }, - { - "l": "4.0", - "x": 2.0123, - "y": 24.4856 - }, - { - "l": "4.0", - "x": 2.0957, - "y": 24.5185 - }, - { - "l": "4.0", - "x": 2.179, - "y": 24.5495 - }, - { - "l": "4.0", - "x": 2.2623, - "y": 24.5852 - }, - { - "l": "4.0", - "x": 2.3457, - "y": 24.6209 - }, - { - "l": "4.0", - "x": 2.429, - "y": 24.6546 - }, - { - "l": "4.0", - "x": 2.5123, - "y": 24.6936 - }, - { - "l": "4.0", - "x": 2.5957, - "y": 24.7333 - }, - { - "l": "4.0", - "x": 2.679, - "y": 24.7713 - }, - { - "l": "4.0", - "x": 2.7623, - "y": 24.8162 - }, - { - "l": "4.0", - "x": 2.8457, - "y": 24.8621 - }, - { - "l": "4.0", - "x": 2.929, - "y": 24.9063 - }, - { - "l": "4.0", - "x": 3.0123, - "y": 24.9584 - }, - { - "l": "4.0", - "x": 3.0957, - "y": 25.0117 - }, - { - "l": "4.0", - "x": 3.179, - "y": 25.0628 - }, - { - "l": "4.0", - "x": 3.2623, - "y": 25.1226 - }, - { - "l": "4.0", - "x": 3.3457, - "y": 25.1835 - }, - { - "l": "4.0", - "x": 3.429, - "y": 25.2412 - }, - { - "l": "4.0", - "x": 3.5123, - "y": 25.3086 - }, - { - "l": "4.0", - "x": 3.5957, - "y": 25.3766 - }, - { - "l": "4.0", - "x": 3.679, - "y": 25.4413 - }, - { - "l": "4.0", - "x": 3.7623, - "y": 25.5163 - }, - { - "l": "4.0", - "x": 3.8457, - "y": 25.5922 - }, - { - "l": "4.0", - "x": 3.929, - "y": 25.664 - }, - { - "l": "4.0", - "x": 4.0123, - "y": 25.7475 - }, - { - "l": "4.0", - "x": 4.0957, - "y": 25.8316 - }, - { - "l": "4.0", - "x": 4.179, - "y": 25.9111 - }, - { - "l": "4.0", - "x": 4.2623, - "y": 26.0033 - }, - { - "l": "4.0", - "x": 4.3457, - "y": 26.0961 - }, - { - "l": "4.0", - "x": 4.429, - "y": 26.1836 - }, - { - "l": "4.0", - "x": 4.5123, - "y": 26.2848 - }, - { - "l": "4.0", - "x": 4.5957, - "y": 26.3866 - }, - { - "l": "4.0", - "x": 4.679, - "y": 26.4827 - }, - { - "l": "4.0", - "x": 4.7623, - "y": 26.5938 - }, - { - "l": "4.0", - "x": 4.8457, - "y": 26.7056 - }, - { - "l": "4.0", - "x": 4.929, - "y": 26.811 - }, - { - "l": "4.0", - "x": 5.0123, - "y": 26.9328 - }, - { - "l": "4.0", - "x": 5.0957, - "y": 27.0553 - }, - { - "l": "4.0", - "x": 5.179, - "y": 27.1706 - }, - { - "l": "4.0", - "x": 5.2623, - "y": 27.304 - }, - { - "l": "4.0", - "x": 5.3457, - "y": 27.4376 - }, - { - "l": "4.0", - "x": 5.429, - "y": 27.5635 - }, - { - "l": "4.0", - "x": 5.5123, - "y": 27.7089 - }, - { - "l": "4.0", - "x": 5.5957, - "y": 27.8544 - }, - { - "l": "4.0", - "x": 5.679, - "y": 27.9911 - }, - { - "l": "4.0", - "x": 5.7623, - "y": 28.1486 - }, - { - "l": "4.0", - "x": 5.8457, - "y": 28.3062 - }, - { - "l": "4.0", - "x": 5.929, - "y": 28.4543 - }, - { - "l": "4.0", - "x": 6.0123, - "y": 28.6249 - }, - { - "l": "4.0", - "x": 6.0957, - "y": 28.7954 - }, - { - "l": "4.0", - "x": 6.179, - "y": 28.9555 - }, - { - "l": "4.0", - "x": 6.2623, - "y": 29.1398 - }, - { - "l": "4.0", - "x": 6.3457, - "y": 29.3239 - }, - { - "l": "4.0", - "x": 6.429, - "y": 29.4966 - }, - { - "l": "4.0", - "x": 6.5123, - "y": 29.6954 - }, - { - "l": "4.0", - "x": 6.5957, - "y": 29.8936 - }, - { - "l": "4.0", - "x": 6.679, - "y": 30.0794 - }, - { - "l": "4.0", - "x": 6.7623, - "y": 30.2928 - }, - { - "l": "4.0", - "x": 6.8457, - "y": 30.5056 - }, - { - "l": "4.0", - "x": 6.929, - "y": 30.7049 - }, - { - "l": "4.0", - "x": 7.0123, - "y": 30.9336 - }, - { - "l": "4.0", - "x": 7.0957, - "y": 31.1614 - }, - { - "l": "4.0", - "x": 7.179, - "y": 31.3744 - }, - { - "l": "4.0", - "x": 7.2623, - "y": 31.6187 - }, - { - "l": "4.0", - "x": 7.3457, - "y": 31.8618 - }, - { - "l": "4.0", - "x": 7.429, - "y": 32.0891 - }, - { - "l": "4.0", - "x": 7.5123, - "y": 32.3496 - }, - { - "l": "4.0", - "x": 7.5957, - "y": 32.6088 - }, - { - "l": "4.0", - "x": 7.679, - "y": 32.8508 - }, - { - "l": "4.0", - "x": 7.7623, - "y": 33.1281 - }, - { - "l": "4.0", - "x": 7.8457, - "y": 33.4039 - }, - { - "l": "4.0", - "x": 7.929, - "y": 33.6614 - }, - { - "l": "4.0", - "x": 8.0123, - "y": 33.9562 - }, - { - "l": "4.0", - "x": 8.0957, - "y": 34.2493 - }, - { - "l": "4.0", - "x": 8.179, - "y": 34.5229 - }, - { - "l": "4.0", - "x": 8.2623, - "y": 34.8362 - }, - { - "l": "4.0", - "x": 8.3457, - "y": 35.1477 - }, - { - "l": "4.0", - "x": 8.429, - "y": 35.4382 - }, - { - "l": "4.0", - "x": 8.5123, - "y": 35.7709 - }, - { - "l": "4.0", - "x": 8.5957, - "y": 36.1017 - }, - { - "l": "4.0", - "x": 8.679, - "y": 36.4104 - }, - { - "l": "4.0", - "x": 8.7623, - "y": 36.7637 - }, - { - "l": "4.0", - "x": 8.8457, - "y": 37.1151 - }, - { - "l": "4.0", - "x": 8.929, - "y": 37.4429 - }, - { - "l": "4.0", - "x": 9.0123, - "y": 37.8185 - }, - { - "l": "4.0", - "x": 9.0957, - "y": 38.1921 - }, - { - "l": "4.0", - "x": 9.179, - "y": 38.5408 - }, - { - "l": "4.0", - "x": 9.2623, - "y": 38.9402 - }, - { - "l": "4.0", - "x": 9.3457, - "y": 39.3377 - }, - { - "l": "4.0", - "x": 9.429, - "y": 39.709 - }, - { - "l": "4.0", - "x": 9.5123, - "y": 40.1345 - }, - { - "l": "4.0", - "x": 9.5957, - "y": 40.558 - }, - { - "l": "4.0", - "x": 9.679, - "y": 40.9536 - }, - { - "l": "4.0", - "x": 9.7623, - "y": 41.4075 - }, - { - "l": "4.0", - "x": 9.8457, - "y": 41.8597 - }, - { - "l": "4.0", - "x": 9.929, - "y": 42.2819 - }, - { - "l": "4.0", - "x": 10.0123, - "y": 42.7669 - }, - { - "l": "4.0", - "x": 10.0957, - "y": 43.2503 - }, - { - "l": "4.0", - "x": 10.179, - "y": 43.7027 - }, - { - "l": "4.0", - "x": 10.2623, - "y": 44.2223 - }, - { - "l": "4.0", - "x": 10.3457, - "y": 44.7407 - }, - { - "l": "4.0", - "x": 10.429, - "y": 45.2264 - }, - { - "l": "4.0", - "x": 10.5123, - "y": 45.7852 - }, - { - "l": "4.0", - "x": 10.5957, - "y": 46.3431 - }, - { - "l": "4.0", - "x": 10.679, - "y": 46.8665 - }, - { - "l": "4.0", - "x": 10.7623, - "y": 47.4685 - }, - { - "l": "4.0", - "x": 10.8457, - "y": 48.0711 - }, - { - "l": "4.0", - "x": 10.929, - "y": 48.6368 - }, - { - "l": "4.0", - "x": 11.0123, - "y": 49.2888 - }, - { - "l": "4.0", - "x": 11.0957, - "y": 49.942 - }, - { - "l": "4.0", - "x": 11.179, - "y": 50.5561 - }, - { - "l": "4.0", - "x": 11.2623, - "y": 51.2652 - }, - { - "l": "4.0", - "x": 11.3457, - "y": 51.9765 - }, - { - "l": "4.0", - "x": 11.429, - "y": 52.6463 - }, - { - "l": "4.0", - "x": 11.5123, - "y": 53.421 - }, - { - "l": "4.0", - "x": 11.5957, - "y": 54.1998 - }, - { - "l": "4.0", - "x": 11.679, - "y": 54.9344 - }, - { - "l": "4.0", - "x": 11.7623, - "y": 55.7856 - }, - { - "l": "4.0", - "x": 11.8457, - "y": 56.643 - }, - { - "l": "4.0", - "x": 11.929, - "y": 57.4536 - }, - { - "l": "4.0", - "x": 12.0123, - "y": 58.3951 - }, - { - "l": "4.0", - "x": 12.0957, - "y": 59.3462 - }, - { - "l": "4.0", - "x": 12.179, - "y": 60.247 - }, - { - "l": "4.0", - "x": 12.2623, - "y": 61.2963 - }, - { - "l": "4.0", - "x": 12.3457, - "y": 62.3593 - }, - { - "l": "4.0", - "x": 12.429, - "y": 63.3695 - }, - { - "l": "4.0", - "x": 12.5123, - "y": 64.5499 - }, - { - "l": "4.0", - "x": 12.5957, - "y": 65.7493 - }, - { - "l": "4.0", - "x": 12.679, - "y": 66.8936 - }, - { - "l": "4.0", - "x": 12.7623, - "y": 68.2355 - }, - { - "l": "4.0", - "x": 12.8457, - "y": 69.6036 - }, - { - "l": "4.0", - "x": 12.929, - "y": 70.9144 - }, - { - "l": "4.0", - "x": 13.0123, - "y": 72.4581 - }, - { - "l": "4.0", - "x": 13.0957, - "y": 74.0409 - }, - { - "l": "4.0", - "x": 13.179, - "y": 75.5639 - }, - { - "l": "4.0", - "x": 13.2623, - "y": 77.367 - }, - { - "l": "4.0", - "x": 13.3457, - "y": 79.2264 - }, - { - "l": "4.0", - "x": 13.429, - "y": 81.0267 - }, - { - "l": "4.0", - "x": 13.5123, - "y": 83.171 - }, - { - "l": "4.0", - "x": 13.5957, - "y": 85.3975 - }, - { - "l": "4.0", - "x": 13.679, - "y": 87.5698 - }, - { - "l": "4.0", - "x": 13.7623, - "y": 90.1779 - }, - { - "l": "4.0", - "x": 13.8457, - "y": 92.9123 - }, - { - "l": "4.0", - "x": 13.929, - "y": 95.6021 - }, - { - "l": "4.0", - "x": 14.0123, - "y": 98.8674 - }, - { - "l": "4.0", - "x": 14.0957, - "y": 102.3301 - }, - { - "l": "4.0", - "x": 14.179, - "y": 105.7803 - }, - { - "l": "4.0", - "x": 14.2623, - "y": 110.0256 - }, - { - "l": "4.0", - "x": 14.3457, - "y": 114.6009 - }, - { - "l": "4.0", - "x": 14.429, - "y": 119.2383 - }, - { - "l": "4.0", - "x": 14.5123, - "y": 125.0565 - }, - { - "l": "4.0", - "x": 14.5957, - "y": 131.4729 - }, - { - "l": "4.0", - "x": 14.679, - "y": 138.1407 - }, - { - "l": "4.0", - "x": 14.7623, - "y": 146.7582 - }, - { - "l": "4.0", - "x": 14.8457, - "y": 156.6118 - }, - { - "l": "4.0", - "x": 14.929, - "y": 167.2763 - }, - { - "l": "4.0", - "x": 15.0123, - "y": 181.7698 - }, - { - "l": "4.0", - "x": 15.0957, - "y": 199.4389 - }, - { - "l": "4.0", - "x": 15.179, - "y": 220.102 - }, - { - "l": "4.0", - "x": 15.2623, - "y": 251.2639 - }, - { - "l": "4.0", - "x": 15.3457, - "y": 295.4292 - }, - { - "l": "4.0", - "x": 15.429, - "y": 359.0082 - }, - { - "l": "4.0", - "x": 15.5123, - "y": 496.2936 - }, - { - "l": "4.0", - "x": 15.5957, - "y": 935.8131 - }, - { - "l": "4.0", - "x": 15.679, - "y": null - }, - { - "l": "4.0", - "x": 15.7623, - "y": null - }, - { - "l": "4.0", - "x": 15.8457, - "y": null - }, - { - "l": "4.0", - "x": 15.929, - "y": null - }, - { - "l": "4.0", - "x": 16.0123, - "y": null - }, - { - "l": "4.0", - "x": 16.0957, - "y": null - }, - { - "l": "4.0", - "x": 16.179, - "y": null - }, - { - "l": "4.0", - "x": 16.2623, - "y": null - }, - { - "l": "4.0", - "x": 16.3457, - "y": null - }, - { - "l": "4.0", - "x": 16.429, - "y": null - }, - { - "l": "4.0", - "x": 16.5123, - "y": null - }, - { - "l": "4.0", - "x": 16.5957, - "y": null - }, - { - "l": "4.0", - "x": 16.679, - "y": null - }, - { - "l": "4.0", - "x": 16.7623, - "y": null - }, - { - "l": "4.0", - "x": 16.8457, - "y": null - }, - { - "l": "4.0", - "x": 16.929, - "y": null - }, - { - "l": "4.0", - "x": 17.0123, - "y": null - }, - { - "l": "4.0", - "x": 17.0957, - "y": null - }, - { - "l": "4.0", - "x": 17.179, - "y": null - }, - { - "l": "4.0", - "x": 17.2623, - "y": null - }, - { - "l": "4.0", - "x": 17.3457, - "y": null - }, - { - "l": "4.0", - "x": 17.429, - "y": null - }, - { - "l": "4.0", - "x": 17.5123, - "y": null - }, - { - "l": "4.0", - "x": 17.5957, - "y": null - }, - { - "l": "4.0", - "x": 17.679, - "y": null - }, - { - "l": "4.0", - "x": 17.7623, - "y": null - }, - { - "l": "4.0", - "x": 17.8457, - "y": null - }, - { - "l": "4.0", - "x": 17.929, - "y": null - }, - { - "l": "4.0", - "x": 18.0123, - "y": null - }, - { - "l": "4.0", - "x": 18.0957, - "y": null - }, - { - "l": "4.0", - "x": 18.179, - "y": null - }, - { - "l": "4.0", - "x": 18.2623, - "y": null - }, - { - "l": "4.0", - "x": 18.3457, - "y": null - }, - { - "l": "4.0", - "x": 18.429, - "y": null - }, - { - "l": "4.0", - "x": 18.5123, - "y": null - }, - { - "l": "4.0", - "x": 18.5957, - "y": null - }, - { - "l": "4.0", - "x": 18.679, - "y": null - }, - { - "l": "4.0", - "x": 18.7623, - "y": null - }, - { - "l": "4.0", - "x": 18.8457, - "y": null - } - ] - } - ] - }, - "female": null - } - } - ] -}; - -var trisomy21BMIFemaleSDSData = { - "centile_data": [ - { - "trisomy-21": { - "male": null, - "female": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -5.0, - "centile": 2.866515718791933e-05, - "data": [ - { - "l": "-5.0", - "x": 0.0, - "y": 7.3777 - }, - { - "l": "-5.0", - "x": 0.0192, - "y": 7.55 - }, - { - "l": "-5.0", - "x": 0.0383, - "y": 7.7232 - }, - { - "l": "-5.0", - "x": 0.0575, - "y": 7.8975 - }, - { - "l": "-5.0", - "x": 0.0767, - "y": 8.0726 - }, - { - "l": "-5.0", - "x": 0.0958, - "y": 8.2179 - }, - { - "l": "-5.0", - "x": 0.115, - "y": 8.348 - }, - { - "l": "-5.0", - "x": 0.1342, - "y": 8.4708 - }, - { - "l": "-5.0", - "x": 0.1533, - "y": 8.5886 - }, - { - "l": "-5.0", - "x": 0.1725, - "y": 8.7054 - }, - { - "l": "-5.0", - "x": 0.1916, - "y": 8.8303 - }, - { - "l": "-5.0", - "x": 0.2108, - "y": 8.9534 - }, - { - "l": "-5.0", - "x": 0.23, - "y": 9.0738 - }, - { - "l": "-5.0", - "x": 0.2491, - "y": 9.1906 - }, - { - "l": "-5.0", - "x": 0.2683, - "y": 9.3017 - }, - { - "l": "-5.0", - "x": 0.2875, - "y": 9.408 - }, - { - "l": "-5.0", - "x": 0.3066, - "y": 9.5089 - }, - { - "l": "-5.0", - "x": 0.3258, - "y": 9.6042 - }, - { - "l": "-5.0", - "x": 0.345, - "y": 9.6898 - }, - { - "l": "-5.0", - "x": 0.3641, - "y": 9.7687 - }, - { - "l": "-5.0", - "x": 0.3833, - "y": 9.8431 - }, - { - "l": "-5.0", - "x": 0.4025, - "y": 9.9139 - }, - { - "l": "-5.0", - "x": 0.4216, - "y": 9.9826 - }, - { - "l": "-5.0", - "x": 0.4408, - "y": 10.0537 - }, - { - "l": "-5.0", - "x": 0.46, - "y": 10.1226 - }, - { - "l": "-5.0", - "x": 0.4791, - "y": 10.1888 - }, - { - "l": "-5.0", - "x": 0.4983, - "y": 10.2519 - }, - { - "l": "-5.0", - "x": 0.5175, - "y": 10.3105 - }, - { - "l": "-5.0", - "x": 0.5366, - "y": 10.3653 - }, - { - "l": "-5.0", - "x": 0.5558, - "y": 10.4165 - }, - { - "l": "-5.0", - "x": 0.5749, - "y": 10.4641 - }, - { - "l": "-5.0", - "x": 0.5941, - "y": 10.5066 - }, - { - "l": "-5.0", - "x": 0.6133, - "y": 10.5452 - }, - { - "l": "-5.0", - "x": 0.6324, - "y": 10.5811 - }, - { - "l": "-5.0", - "x": 0.6516, - "y": 10.6149 - }, - { - "l": "-5.0", - "x": 0.6708, - "y": 10.6473 - }, - { - "l": "-5.0", - "x": 0.6899, - "y": 10.6811 - }, - { - "l": "-5.0", - "x": 0.7091, - "y": 10.7136 - }, - { - "l": "-5.0", - "x": 0.7283, - "y": 10.7448 - }, - { - "l": "-5.0", - "x": 0.7474, - "y": 10.7744 - }, - { - "l": "-5.0", - "x": 0.7666, - "y": 10.802 - }, - { - "l": "-5.0", - "x": 0.7858, - "y": 10.8279 - }, - { - "l": "-5.0", - "x": 0.8049, - "y": 10.852 - }, - { - "l": "-5.0", - "x": 0.8241, - "y": 10.8743 - }, - { - "l": "-5.0", - "x": 0.8433, - "y": 10.8942 - }, - { - "l": "-5.0", - "x": 0.8624, - "y": 10.9123 - }, - { - "l": "-5.0", - "x": 0.8816, - "y": 10.9289 - }, - { - "l": "-5.0", - "x": 0.9008, - "y": 10.9445 - }, - { - "l": "-5.0", - "x": 0.9199, - "y": 10.9593 - }, - { - "l": "-5.0", - "x": 0.9391, - "y": 10.9746 - }, - { - "l": "-5.0", - "x": 0.9582, - "y": 10.9893 - }, - { - "l": "-5.0", - "x": 0.9774, - "y": 11.0032 - }, - { - "l": "-5.0", - "x": 0.9966, - "y": 11.0163 - }, - { - "l": "-5.0", - "x": 1.0157, - "y": 11.0283 - }, - { - "l": "-5.0", - "x": 1.0349, - "y": 11.0394 - }, - { - "l": "-5.0", - "x": 1.0541, - "y": 11.0496 - }, - { - "l": "-5.0", - "x": 1.0732, - "y": 11.059 - }, - { - "l": "-5.0", - "x": 1.0924, - "y": 11.0674 - }, - { - "l": "-5.0", - "x": 1.1116, - "y": 11.0749 - }, - { - "l": "-5.0", - "x": 1.1307, - "y": 11.0817 - }, - { - "l": "-5.0", - "x": 1.1499, - "y": 11.0882 - }, - { - "l": "-5.0", - "x": 1.1691, - "y": 11.0943 - }, - { - "l": "-5.0", - "x": 1.1882, - "y": 11.1007 - }, - { - "l": "-5.0", - "x": 1.2074, - "y": 11.1069 - }, - { - "l": "-5.0", - "x": 1.2266, - "y": 11.1129 - }, - { - "l": "-5.0", - "x": 1.2457, - "y": 11.1186 - }, - { - "l": "-5.0", - "x": 1.2649, - "y": 11.124 - }, - { - "l": "-5.0", - "x": 1.2841, - "y": 11.1291 - }, - { - "l": "-5.0", - "x": 1.3032, - "y": 11.1339 - }, - { - "l": "-5.0", - "x": 1.3224, - "y": 11.1384 - }, - { - "l": "-5.0", - "x": 1.3415, - "y": 11.1424 - }, - { - "l": "-5.0", - "x": 1.3607, - "y": 11.1462 - }, - { - "l": "-5.0", - "x": 1.3799, - "y": 11.1497 - }, - { - "l": "-5.0", - "x": 1.399, - "y": 11.1531 - }, - { - "l": "-5.0", - "x": 1.4182, - "y": 11.1564 - }, - { - "l": "-5.0", - "x": 1.4374, - "y": 11.1599 - }, - { - "l": "-5.0", - "x": 1.4565, - "y": 11.1633 - }, - { - "l": "-5.0", - "x": 1.4757, - "y": 11.1666 - }, - { - "l": "-5.0", - "x": 1.4949, - "y": 11.1699 - }, - { - "l": "-5.0", - "x": 1.514, - "y": 11.173 - }, - { - "l": "-5.0", - "x": 1.5332, - "y": 11.176 - }, - { - "l": "-5.0", - "x": 1.5524, - "y": 11.1789 - }, - { - "l": "-5.0", - "x": 1.5715, - "y": 11.1817 - }, - { - "l": "-5.0", - "x": 1.5907, - "y": 11.1842 - }, - { - "l": "-5.0", - "x": 1.6099, - "y": 11.1866 - }, - { - "l": "-5.0", - "x": 1.629, - "y": 11.1888 - }, - { - "l": "-5.0", - "x": 1.6482, - "y": 11.191 - }, - { - "l": "-5.0", - "x": 1.6674, - "y": 11.1932 - }, - { - "l": "-5.0", - "x": 1.6865, - "y": 11.1954 - }, - { - "l": "-5.0", - "x": 1.7057, - "y": 11.1977 - }, - { - "l": "-5.0", - "x": 1.7248, - "y": 11.1999 - }, - { - "l": "-5.0", - "x": 1.744, - "y": 11.2022 - }, - { - "l": "-5.0", - "x": 1.7632, - "y": 11.2043 - }, - { - "l": "-5.0", - "x": 1.7823, - "y": 11.2064 - }, - { - "l": "-5.0", - "x": 1.8015, - "y": 11.2084 - }, - { - "l": "-5.0", - "x": 1.8207, - "y": 11.2103 - }, - { - "l": "-5.0", - "x": 1.8398, - "y": 11.2121 - }, - { - "l": "-5.0", - "x": 1.859, - "y": 11.2138 - }, - { - "l": "-5.0", - "x": 1.8782, - "y": 11.2155 - }, - { - "l": "-5.0", - "x": 1.8973, - "y": 11.2171 - }, - { - "l": "-5.0", - "x": 1.9165, - "y": 11.2188 - }, - { - "l": "-5.0", - "x": 1.9357, - "y": 11.2205 - }, - { - "l": "-5.0", - "x": 1.9548, - "y": 11.2223 - }, - { - "l": "-5.0", - "x": 1.974, - "y": 11.2241 - }, - { - "l": "-5.0", - "x": 1.9932, - "y": 11.2259 - }, - { - "l": "-5.0", - "x": 2.0123, - "y": 11.2276 - }, - { - "l": "-5.0", - "x": 2.0957, - "y": 11.235 - }, - { - "l": "-5.0", - "x": 2.179, - "y": 11.2417 - }, - { - "l": "-5.0", - "x": 2.2623, - "y": 11.2491 - }, - { - "l": "-5.0", - "x": 2.3457, - "y": 11.2562 - }, - { - "l": "-5.0", - "x": 2.429, - "y": 11.2626 - }, - { - "l": "-5.0", - "x": 2.5123, - "y": 11.2696 - }, - { - "l": "-5.0", - "x": 2.5957, - "y": 11.2762 - }, - { - "l": "-5.0", - "x": 2.679, - "y": 11.282 - }, - { - "l": "-5.0", - "x": 2.7623, - "y": 11.288 - }, - { - "l": "-5.0", - "x": 2.8457, - "y": 11.2934 - }, - { - "l": "-5.0", - "x": 2.929, - "y": 11.2976 - }, - { - "l": "-5.0", - "x": 3.0123, - "y": 11.3014 - }, - { - "l": "-5.0", - "x": 3.0957, - "y": 11.3042 - }, - { - "l": "-5.0", - "x": 3.179, - "y": 11.3057 - }, - { - "l": "-5.0", - "x": 3.2623, - "y": 11.3062 - }, - { - "l": "-5.0", - "x": 3.3457, - "y": 11.3054 - }, - { - "l": "-5.0", - "x": 3.429, - "y": 11.3035 - }, - { - "l": "-5.0", - "x": 3.5123, - "y": 11.2999 - }, - { - "l": "-5.0", - "x": 3.5957, - "y": 11.295 - }, - { - "l": "-5.0", - "x": 3.679, - "y": 11.2894 - }, - { - "l": "-5.0", - "x": 3.7623, - "y": 11.2818 - }, - { - "l": "-5.0", - "x": 3.8457, - "y": 11.2733 - }, - { - "l": "-5.0", - "x": 3.929, - "y": 11.2644 - }, - { - "l": "-5.0", - "x": 4.0123, - "y": 11.2536 - }, - { - "l": "-5.0", - "x": 4.0957, - "y": 11.2421 - }, - { - "l": "-5.0", - "x": 4.179, - "y": 11.2308 - }, - { - "l": "-5.0", - "x": 4.2623, - "y": 11.2173 - }, - { - "l": "-5.0", - "x": 4.3457, - "y": 11.2035 - }, - { - "l": "-5.0", - "x": 4.429, - "y": 11.1904 - }, - { - "l": "-5.0", - "x": 4.5123, - "y": 11.1752 - }, - { - "l": "-5.0", - "x": 4.5957, - "y": 11.16 - }, - { - "l": "-5.0", - "x": 4.679, - "y": 11.1459 - }, - { - "l": "-5.0", - "x": 4.7623, - "y": 11.1299 - }, - { - "l": "-5.0", - "x": 4.8457, - "y": 11.1143 - }, - { - "l": "-5.0", - "x": 4.929, - "y": 11.1 - }, - { - "l": "-5.0", - "x": 5.0123, - "y": 11.0839 - }, - { - "l": "-5.0", - "x": 5.0957, - "y": 11.0684 - }, - { - "l": "-5.0", - "x": 5.179, - "y": 11.0543 - }, - { - "l": "-5.0", - "x": 5.2623, - "y": 11.0387 - }, - { - "l": "-5.0", - "x": 5.3457, - "y": 11.0237 - }, - { - "l": "-5.0", - "x": 5.429, - "y": 11.0103 - }, - { - "l": "-5.0", - "x": 5.5123, - "y": 10.9955 - }, - { - "l": "-5.0", - "x": 5.5957, - "y": 10.9816 - }, - { - "l": "-5.0", - "x": 5.679, - "y": 10.9693 - }, - { - "l": "-5.0", - "x": 5.7623, - "y": 10.9558 - }, - { - "l": "-5.0", - "x": 5.8457, - "y": 10.9432 - }, - { - "l": "-5.0", - "x": 5.929, - "y": 10.9321 - }, - { - "l": "-5.0", - "x": 6.0123, - "y": 10.9201 - }, - { - "l": "-5.0", - "x": 6.0957, - "y": 10.9088 - }, - { - "l": "-5.0", - "x": 6.179, - "y": 10.899 - }, - { - "l": "-5.0", - "x": 6.2623, - "y": 10.8884 - }, - { - "l": "-5.0", - "x": 6.3457, - "y": 10.8786 - }, - { - "l": "-5.0", - "x": 6.429, - "y": 10.87 - }, - { - "l": "-5.0", - "x": 6.5123, - "y": 10.861 - }, - { - "l": "-5.0", - "x": 6.5957, - "y": 10.8526 - }, - { - "l": "-5.0", - "x": 6.679, - "y": 10.8455 - }, - { - "l": "-5.0", - "x": 6.7623, - "y": 10.8379 - }, - { - "l": "-5.0", - "x": 6.8457, - "y": 10.831 - }, - { - "l": "-5.0", - "x": 6.929, - "y": 10.8252 - }, - { - "l": "-5.0", - "x": 7.0123, - "y": 10.8191 - }, - { - "l": "-5.0", - "x": 7.0957, - "y": 10.8136 - }, - { - "l": "-5.0", - "x": 7.179, - "y": 10.8089 - }, - { - "l": "-5.0", - "x": 7.2623, - "y": 10.8041 - }, - { - "l": "-5.0", - "x": 7.3457, - "y": 10.7997 - }, - { - "l": "-5.0", - "x": 7.429, - "y": 10.7961 - }, - { - "l": "-5.0", - "x": 7.5123, - "y": 10.7923 - }, - { - "l": "-5.0", - "x": 7.5957, - "y": 10.7888 - }, - { - "l": "-5.0", - "x": 7.679, - "y": 10.7859 - }, - { - "l": "-5.0", - "x": 7.7623, - "y": 10.7829 - }, - { - "l": "-5.0", - "x": 7.8457, - "y": 10.7803 - }, - { - "l": "-5.0", - "x": 7.929, - "y": 10.778 - }, - { - "l": "-5.0", - "x": 8.0123, - "y": 10.7757 - }, - { - "l": "-5.0", - "x": 8.0957, - "y": 10.7736 - }, - { - "l": "-5.0", - "x": 8.179, - "y": 10.7718 - }, - { - "l": "-5.0", - "x": 8.2623, - "y": 10.77 - }, - { - "l": "-5.0", - "x": 8.3457, - "y": 10.7683 - }, - { - "l": "-5.0", - "x": 8.429, - "y": 10.7669 - }, - { - "l": "-5.0", - "x": 8.5123, - "y": 10.7653 - }, - { - "l": "-5.0", - "x": 8.5957, - "y": 10.7639 - }, - { - "l": "-5.0", - "x": 8.679, - "y": 10.7627 - }, - { - "l": "-5.0", - "x": 8.7623, - "y": 10.7614 - }, - { - "l": "-5.0", - "x": 8.8457, - "y": 10.7601 - }, - { - "l": "-5.0", - "x": 8.929, - "y": 10.759 - }, - { - "l": "-5.0", - "x": 9.0123, - "y": 10.7577 - }, - { - "l": "-5.0", - "x": 9.0957, - "y": 10.7565 - }, - { - "l": "-5.0", - "x": 9.179, - "y": 10.7553 - }, - { - "l": "-5.0", - "x": 9.2623, - "y": 10.754 - }, - { - "l": "-5.0", - "x": 9.3457, - "y": 10.7527 - }, - { - "l": "-5.0", - "x": 9.429, - "y": 10.7514 - }, - { - "l": "-5.0", - "x": 9.5123, - "y": 10.7499 - }, - { - "l": "-5.0", - "x": 9.5957, - "y": 10.7484 - }, - { - "l": "-5.0", - "x": 9.679, - "y": 10.7469 - }, - { - "l": "-5.0", - "x": 9.7623, - "y": 10.7452 - }, - { - "l": "-5.0", - "x": 9.8457, - "y": 10.7434 - }, - { - "l": "-5.0", - "x": 9.929, - "y": 10.7417 - }, - { - "l": "-5.0", - "x": 10.0123, - "y": 10.7396 - }, - { - "l": "-5.0", - "x": 10.0957, - "y": 10.7375 - }, - { - "l": "-5.0", - "x": 10.179, - "y": 10.7355 - }, - { - "l": "-5.0", - "x": 10.2623, - "y": 10.7332 - }, - { - "l": "-5.0", - "x": 10.3457, - "y": 10.7307 - }, - { - "l": "-5.0", - "x": 10.429, - "y": 10.7284 - }, - { - "l": "-5.0", - "x": 10.5123, - "y": 10.7256 - }, - { - "l": "-5.0", - "x": 10.5957, - "y": 10.7228 - }, - { - "l": "-5.0", - "x": 10.679, - "y": 10.7201 - }, - { - "l": "-5.0", - "x": 10.7623, - "y": 10.7169 - }, - { - "l": "-5.0", - "x": 10.8457, - "y": 10.7137 - }, - { - "l": "-5.0", - "x": 10.929, - "y": 10.7106 - }, - { - "l": "-5.0", - "x": 11.0123, - "y": 10.7069 - }, - { - "l": "-5.0", - "x": 11.0957, - "y": 10.7032 - }, - { - "l": "-5.0", - "x": 11.179, - "y": 10.6996 - }, - { - "l": "-5.0", - "x": 11.2623, - "y": 10.6955 - }, - { - "l": "-5.0", - "x": 11.3457, - "y": 10.6912 - }, - { - "l": "-5.0", - "x": 11.429, - "y": 10.6871 - }, - { - "l": "-5.0", - "x": 11.5123, - "y": 10.6823 - }, - { - "l": "-5.0", - "x": 11.5957, - "y": 10.6775 - }, - { - "l": "-5.0", - "x": 11.679, - "y": 10.6729 - }, - { - "l": "-5.0", - "x": 11.7623, - "y": 10.6674 - }, - { - "l": "-5.0", - "x": 11.8457, - "y": 10.6619 - }, - { - "l": "-5.0", - "x": 11.929, - "y": 10.6567 - }, - { - "l": "-5.0", - "x": 12.0123, - "y": 10.6506 - }, - { - "l": "-5.0", - "x": 12.0957, - "y": 10.6444 - }, - { - "l": "-5.0", - "x": 12.179, - "y": 10.6385 - }, - { - "l": "-5.0", - "x": 12.2623, - "y": 10.6317 - }, - { - "l": "-5.0", - "x": 12.3457, - "y": 10.6248 - }, - { - "l": "-5.0", - "x": 12.429, - "y": 10.6182 - }, - { - "l": "-5.0", - "x": 12.5123, - "y": 10.6107 - }, - { - "l": "-5.0", - "x": 12.5957, - "y": 10.603 - }, - { - "l": "-5.0", - "x": 12.679, - "y": 10.5958 - }, - { - "l": "-5.0", - "x": 12.7623, - "y": 10.5874 - }, - { - "l": "-5.0", - "x": 12.8457, - "y": 10.579 - }, - { - "l": "-5.0", - "x": 12.929, - "y": 10.5711 - }, - { - "l": "-5.0", - "x": 13.0123, - "y": 10.562 - }, - { - "l": "-5.0", - "x": 13.0957, - "y": 10.5528 - }, - { - "l": "-5.0", - "x": 13.179, - "y": 10.5442 - }, - { - "l": "-5.0", - "x": 13.2623, - "y": 10.5343 - }, - { - "l": "-5.0", - "x": 13.3457, - "y": 10.5243 - }, - { - "l": "-5.0", - "x": 13.429, - "y": 10.515 - }, - { - "l": "-5.0", - "x": 13.5123, - "y": 10.5042 - }, - { - "l": "-5.0", - "x": 13.5957, - "y": 10.4935 - }, - { - "l": "-5.0", - "x": 13.679, - "y": 10.4834 - }, - { - "l": "-5.0", - "x": 13.7623, - "y": 10.4718 - }, - { - "l": "-5.0", - "x": 13.8457, - "y": 10.4602 - }, - { - "l": "-5.0", - "x": 13.929, - "y": 10.4493 - }, - { - "l": "-5.0", - "x": 14.0123, - "y": 10.4368 - }, - { - "l": "-5.0", - "x": 14.0957, - "y": 10.4244 - }, - { - "l": "-5.0", - "x": 14.179, - "y": 10.4128 - }, - { - "l": "-5.0", - "x": 14.2623, - "y": 10.3994 - }, - { - "l": "-5.0", - "x": 14.3457, - "y": 10.3861 - }, - { - "l": "-5.0", - "x": 14.429, - "y": 10.3737 - }, - { - "l": "-5.0", - "x": 14.5123, - "y": 10.3594 - }, - { - "l": "-5.0", - "x": 14.5957, - "y": 10.3452 - }, - { - "l": "-5.0", - "x": 14.679, - "y": 10.332 - }, - { - "l": "-5.0", - "x": 14.7623, - "y": 10.3168 - }, - { - "l": "-5.0", - "x": 14.8457, - "y": 10.3017 - }, - { - "l": "-5.0", - "x": 14.929, - "y": 10.2877 - }, - { - "l": "-5.0", - "x": 15.0123, - "y": 10.2715 - }, - { - "l": "-5.0", - "x": 15.0957, - "y": 10.2556 - }, - { - "l": "-5.0", - "x": 15.179, - "y": 10.2407 - }, - { - "l": "-5.0", - "x": 15.2623, - "y": 10.2237 - }, - { - "l": "-5.0", - "x": 15.3457, - "y": 10.2068 - }, - { - "l": "-5.0", - "x": 15.429, - "y": 10.1911 - }, - { - "l": "-5.0", - "x": 15.5123, - "y": 10.1731 - }, - { - "l": "-5.0", - "x": 15.5957, - "y": 10.1554 - }, - { - "l": "-5.0", - "x": 15.679, - "y": 10.1388 - }, - { - "l": "-5.0", - "x": 15.7623, - "y": 10.1199 - }, - { - "l": "-5.0", - "x": 15.8457, - "y": 10.1012 - }, - { - "l": "-5.0", - "x": 15.929, - "y": 10.0838 - }, - { - "l": "-5.0", - "x": 16.0123, - "y": 10.064 - }, - { - "l": "-5.0", - "x": 16.0957, - "y": 10.0444 - }, - { - "l": "-5.0", - "x": 16.179, - "y": 10.0262 - }, - { - "l": "-5.0", - "x": 16.2623, - "y": 10.0054 - }, - { - "l": "-5.0", - "x": 16.3457, - "y": 9.9849 - }, - { - "l": "-5.0", - "x": 16.429, - "y": 9.9658 - }, - { - "l": "-5.0", - "x": 16.5123, - "y": 9.9441 - }, - { - "l": "-5.0", - "x": 16.5957, - "y": 9.9227 - }, - { - "l": "-5.0", - "x": 16.679, - "y": 9.9028 - }, - { - "l": "-5.0", - "x": 16.7623, - "y": 9.8802 - }, - { - "l": "-5.0", - "x": 16.8457, - "y": 9.8578 - }, - { - "l": "-5.0", - "x": 16.929, - "y": 9.8371 - }, - { - "l": "-5.0", - "x": 17.0123, - "y": 9.8136 - }, - { - "l": "-5.0", - "x": 17.0957, - "y": 9.7903 - }, - { - "l": "-5.0", - "x": 17.179, - "y": 9.7688 - }, - { - "l": "-5.0", - "x": 17.2623, - "y": 9.7443 - }, - { - "l": "-5.0", - "x": 17.3457, - "y": 9.7202 - }, - { - "l": "-5.0", - "x": 17.429, - "y": 9.6979 - }, - { - "l": "-5.0", - "x": 17.5123, - "y": 9.6725 - }, - { - "l": "-5.0", - "x": 17.5957, - "y": 9.6475 - }, - { - "l": "-5.0", - "x": 17.679, - "y": 9.6243 - }, - { - "l": "-5.0", - "x": 17.7623, - "y": 9.598 - }, - { - "l": "-5.0", - "x": 17.8457, - "y": 9.5721 - }, - { - "l": "-5.0", - "x": 17.929, - "y": 9.5482 - }, - { - "l": "-5.0", - "x": 18.0123, - "y": 9.521 - }, - { - "l": "-5.0", - "x": 18.0957, - "y": 9.4943 - }, - { - "l": "-5.0", - "x": 18.179, - "y": 9.4695 - }, - { - "l": "-5.0", - "x": 18.2623, - "y": 9.4415 - }, - { - "l": "-5.0", - "x": 18.3457, - "y": 9.4139 - }, - { - "l": "-5.0", - "x": 18.429, - "y": 9.3884 - }, - { - "l": "-5.0", - "x": 18.5123, - "y": 9.3595 - }, - { - "l": "-5.0", - "x": 18.5957, - "y": 9.331 - }, - { - "l": "-5.0", - "x": 18.679, - "y": 9.3046 - }, - { - "l": "-5.0", - "x": 18.7623, - "y": 9.2748 - }, - { - "l": "-5.0", - "x": 18.8457, - "y": 9.2748 - } - ] - }, - { - "sds": -4.0, - "centile": 0.003167124183311986, - "data": [ - { - "l": "-4.0", - "x": 0.0, - "y": 8.1207 - }, - { - "l": "-4.0", - "x": 0.0192, - "y": 8.3017 - }, - { - "l": "-4.0", - "x": 0.0383, - "y": 8.4835 - }, - { - "l": "-4.0", - "x": 0.0575, - "y": 8.6661 - }, - { - "l": "-4.0", - "x": 0.0767, - "y": 8.8495 - }, - { - "l": "-4.0", - "x": 0.0958, - "y": 9.002 - }, - { - "l": "-4.0", - "x": 0.115, - "y": 9.139 - }, - { - "l": "-4.0", - "x": 0.1342, - "y": 9.2684 - }, - { - "l": "-4.0", - "x": 0.1533, - "y": 9.3927 - }, - { - "l": "-4.0", - "x": 0.1725, - "y": 9.5159 - }, - { - "l": "-4.0", - "x": 0.1916, - "y": 9.6478 - }, - { - "l": "-4.0", - "x": 0.2108, - "y": 9.7778 - }, - { - "l": "-4.0", - "x": 0.23, - "y": 9.9049 - }, - { - "l": "-4.0", - "x": 0.2491, - "y": 10.0282 - }, - { - "l": "-4.0", - "x": 0.2683, - "y": 10.1455 - }, - { - "l": "-4.0", - "x": 0.2875, - "y": 10.2576 - }, - { - "l": "-4.0", - "x": 0.3066, - "y": 10.3642 - }, - { - "l": "-4.0", - "x": 0.3258, - "y": 10.4646 - }, - { - "l": "-4.0", - "x": 0.345, - "y": 10.5548 - }, - { - "l": "-4.0", - "x": 0.3641, - "y": 10.638 - }, - { - "l": "-4.0", - "x": 0.3833, - "y": 10.7162 - }, - { - "l": "-4.0", - "x": 0.4025, - "y": 10.7906 - }, - { - "l": "-4.0", - "x": 0.4216, - "y": 10.8628 - }, - { - "l": "-4.0", - "x": 0.4408, - "y": 10.9374 - }, - { - "l": "-4.0", - "x": 0.46, - "y": 11.0096 - }, - { - "l": "-4.0", - "x": 0.4791, - "y": 11.0788 - }, - { - "l": "-4.0", - "x": 0.4983, - "y": 11.1448 - }, - { - "l": "-4.0", - "x": 0.5175, - "y": 11.2058 - }, - { - "l": "-4.0", - "x": 0.5366, - "y": 11.2628 - }, - { - "l": "-4.0", - "x": 0.5558, - "y": 11.3161 - }, - { - "l": "-4.0", - "x": 0.5749, - "y": 11.3654 - }, - { - "l": "-4.0", - "x": 0.5941, - "y": 11.4093 - }, - { - "l": "-4.0", - "x": 0.6133, - "y": 11.4492 - }, - { - "l": "-4.0", - "x": 0.6324, - "y": 11.4862 - }, - { - "l": "-4.0", - "x": 0.6516, - "y": 11.521 - }, - { - "l": "-4.0", - "x": 0.6708, - "y": 11.5542 - }, - { - "l": "-4.0", - "x": 0.6899, - "y": 11.5887 - }, - { - "l": "-4.0", - "x": 0.7091, - "y": 11.6219 - }, - { - "l": "-4.0", - "x": 0.7283, - "y": 11.6537 - }, - { - "l": "-4.0", - "x": 0.7474, - "y": 11.6837 - }, - { - "l": "-4.0", - "x": 0.7666, - "y": 11.7117 - }, - { - "l": "-4.0", - "x": 0.7858, - "y": 11.7377 - }, - { - "l": "-4.0", - "x": 0.8049, - "y": 11.7619 - }, - { - "l": "-4.0", - "x": 0.8241, - "y": 11.7842 - }, - { - "l": "-4.0", - "x": 0.8433, - "y": 11.8041 - }, - { - "l": "-4.0", - "x": 0.8624, - "y": 11.822 - }, - { - "l": "-4.0", - "x": 0.8816, - "y": 11.8384 - }, - { - "l": "-4.0", - "x": 0.9008, - "y": 11.8538 - }, - { - "l": "-4.0", - "x": 0.9199, - "y": 11.8682 - }, - { - "l": "-4.0", - "x": 0.9391, - "y": 11.8831 - }, - { - "l": "-4.0", - "x": 0.9582, - "y": 11.8973 - }, - { - "l": "-4.0", - "x": 0.9774, - "y": 11.9106 - }, - { - "l": "-4.0", - "x": 0.9966, - "y": 11.9231 - }, - { - "l": "-4.0", - "x": 1.0157, - "y": 11.9345 - }, - { - "l": "-4.0", - "x": 1.0349, - "y": 11.9449 - }, - { - "l": "-4.0", - "x": 1.0541, - "y": 11.9543 - }, - { - "l": "-4.0", - "x": 1.0732, - "y": 11.963 - }, - { - "l": "-4.0", - "x": 1.0924, - "y": 11.9706 - }, - { - "l": "-4.0", - "x": 1.1116, - "y": 11.9773 - }, - { - "l": "-4.0", - "x": 1.1307, - "y": 11.9835 - }, - { - "l": "-4.0", - "x": 1.1499, - "y": 11.9892 - }, - { - "l": "-4.0", - "x": 1.1691, - "y": 11.9945 - }, - { - "l": "-4.0", - "x": 1.1882, - "y": 12.0 - }, - { - "l": "-4.0", - "x": 1.2074, - "y": 12.0053 - }, - { - "l": "-4.0", - "x": 1.2266, - "y": 12.0104 - }, - { - "l": "-4.0", - "x": 1.2457, - "y": 12.0152 - }, - { - "l": "-4.0", - "x": 1.2649, - "y": 12.0196 - }, - { - "l": "-4.0", - "x": 1.2841, - "y": 12.0238 - }, - { - "l": "-4.0", - "x": 1.3032, - "y": 12.0277 - }, - { - "l": "-4.0", - "x": 1.3224, - "y": 12.0313 - }, - { - "l": "-4.0", - "x": 1.3415, - "y": 12.0345 - }, - { - "l": "-4.0", - "x": 1.3607, - "y": 12.0375 - }, - { - "l": "-4.0", - "x": 1.3799, - "y": 12.0402 - }, - { - "l": "-4.0", - "x": 1.399, - "y": 12.0428 - }, - { - "l": "-4.0", - "x": 1.4182, - "y": 12.0453 - }, - { - "l": "-4.0", - "x": 1.4374, - "y": 12.0479 - }, - { - "l": "-4.0", - "x": 1.4565, - "y": 12.0505 - }, - { - "l": "-4.0", - "x": 1.4757, - "y": 12.0529 - }, - { - "l": "-4.0", - "x": 1.4949, - "y": 12.0553 - }, - { - "l": "-4.0", - "x": 1.514, - "y": 12.0576 - }, - { - "l": "-4.0", - "x": 1.5332, - "y": 12.0597 - }, - { - "l": "-4.0", - "x": 1.5524, - "y": 12.0618 - }, - { - "l": "-4.0", - "x": 1.5715, - "y": 12.0637 - }, - { - "l": "-4.0", - "x": 1.5907, - "y": 12.0655 - }, - { - "l": "-4.0", - "x": 1.6099, - "y": 12.0671 - }, - { - "l": "-4.0", - "x": 1.629, - "y": 12.0687 - }, - { - "l": "-4.0", - "x": 1.6482, - "y": 12.0702 - }, - { - "l": "-4.0", - "x": 1.6674, - "y": 12.0717 - }, - { - "l": "-4.0", - "x": 1.6865, - "y": 12.0732 - }, - { - "l": "-4.0", - "x": 1.7057, - "y": 12.0747 - }, - { - "l": "-4.0", - "x": 1.7248, - "y": 12.0762 - }, - { - "l": "-4.0", - "x": 1.744, - "y": 12.0777 - }, - { - "l": "-4.0", - "x": 1.7632, - "y": 12.0791 - }, - { - "l": "-4.0", - "x": 1.7823, - "y": 12.0804 - }, - { - "l": "-4.0", - "x": 1.8015, - "y": 12.0817 - }, - { - "l": "-4.0", - "x": 1.8207, - "y": 12.083 - }, - { - "l": "-4.0", - "x": 1.8398, - "y": 12.0842 - }, - { - "l": "-4.0", - "x": 1.859, - "y": 12.0853 - }, - { - "l": "-4.0", - "x": 1.8782, - "y": 12.0864 - }, - { - "l": "-4.0", - "x": 1.8973, - "y": 12.0874 - }, - { - "l": "-4.0", - "x": 1.9165, - "y": 12.0885 - }, - { - "l": "-4.0", - "x": 1.9357, - "y": 12.0897 - }, - { - "l": "-4.0", - "x": 1.9548, - "y": 12.0908 - }, - { - "l": "-4.0", - "x": 1.974, - "y": 12.092 - }, - { - "l": "-4.0", - "x": 1.9932, - "y": 12.0933 - }, - { - "l": "-4.0", - "x": 2.0123, - "y": 12.0945 - }, - { - "l": "-4.0", - "x": 2.0957, - "y": 12.0996 - }, - { - "l": "-4.0", - "x": 2.179, - "y": 12.1044 - }, - { - "l": "-4.0", - "x": 2.2623, - "y": 12.11 - }, - { - "l": "-4.0", - "x": 2.3457, - "y": 12.1156 - }, - { - "l": "-4.0", - "x": 2.429, - "y": 12.1208 - }, - { - "l": "-4.0", - "x": 2.5123, - "y": 12.1267 - }, - { - "l": "-4.0", - "x": 2.5957, - "y": 12.1324 - }, - { - "l": "-4.0", - "x": 2.679, - "y": 12.1376 - }, - { - "l": "-4.0", - "x": 2.7623, - "y": 12.1431 - }, - { - "l": "-4.0", - "x": 2.8457, - "y": 12.1481 - }, - { - "l": "-4.0", - "x": 2.929, - "y": 12.1522 - }, - { - "l": "-4.0", - "x": 3.0123, - "y": 12.156 - }, - { - "l": "-4.0", - "x": 3.0957, - "y": 12.1588 - }, - { - "l": "-4.0", - "x": 3.179, - "y": 12.1606 - }, - { - "l": "-4.0", - "x": 3.2623, - "y": 12.1614 - }, - { - "l": "-4.0", - "x": 3.3457, - "y": 12.1611 - }, - { - "l": "-4.0", - "x": 3.429, - "y": 12.1596 - }, - { - "l": "-4.0", - "x": 3.5123, - "y": 12.1566 - }, - { - "l": "-4.0", - "x": 3.5957, - "y": 12.1524 - }, - { - "l": "-4.0", - "x": 3.679, - "y": 12.1474 - }, - { - "l": "-4.0", - "x": 3.7623, - "y": 12.1407 - }, - { - "l": "-4.0", - "x": 3.8457, - "y": 12.1331 - }, - { - "l": "-4.0", - "x": 3.929, - "y": 12.1252 - }, - { - "l": "-4.0", - "x": 4.0123, - "y": 12.1154 - }, - { - "l": "-4.0", - "x": 4.0957, - "y": 12.105 - }, - { - "l": "-4.0", - "x": 4.179, - "y": 12.0948 - }, - { - "l": "-4.0", - "x": 4.2623, - "y": 12.0827 - }, - { - "l": "-4.0", - "x": 4.3457, - "y": 12.0703 - }, - { - "l": "-4.0", - "x": 4.429, - "y": 12.0585 - }, - { - "l": "-4.0", - "x": 4.5123, - "y": 12.0449 - }, - { - "l": "-4.0", - "x": 4.5957, - "y": 12.0314 - }, - { - "l": "-4.0", - "x": 4.679, - "y": 12.0189 - }, - { - "l": "-4.0", - "x": 4.7623, - "y": 12.0049 - }, - { - "l": "-4.0", - "x": 4.8457, - "y": 11.9912 - }, - { - "l": "-4.0", - "x": 4.929, - "y": 11.9789 - }, - { - "l": "-4.0", - "x": 5.0123, - "y": 11.9651 - }, - { - "l": "-4.0", - "x": 5.0957, - "y": 11.9519 - }, - { - "l": "-4.0", - "x": 5.179, - "y": 11.9401 - }, - { - "l": "-4.0", - "x": 5.2623, - "y": 11.9271 - }, - { - "l": "-4.0", - "x": 5.3457, - "y": 11.9149 - }, - { - "l": "-4.0", - "x": 5.429, - "y": 11.9041 - }, - { - "l": "-4.0", - "x": 5.5123, - "y": 11.8924 - }, - { - "l": "-4.0", - "x": 5.5957, - "y": 11.8816 - }, - { - "l": "-4.0", - "x": 5.679, - "y": 11.8722 - }, - { - "l": "-4.0", - "x": 5.7623, - "y": 11.8622 - }, - { - "l": "-4.0", - "x": 5.8457, - "y": 11.8531 - }, - { - "l": "-4.0", - "x": 5.929, - "y": 11.8453 - }, - { - "l": "-4.0", - "x": 6.0123, - "y": 11.8372 - }, - { - "l": "-4.0", - "x": 6.0957, - "y": 11.8299 - }, - { - "l": "-4.0", - "x": 6.179, - "y": 11.8237 - }, - { - "l": "-4.0", - "x": 6.2623, - "y": 11.8174 - }, - { - "l": "-4.0", - "x": 6.3457, - "y": 11.8118 - }, - { - "l": "-4.0", - "x": 6.429, - "y": 11.8073 - }, - { - "l": "-4.0", - "x": 6.5123, - "y": 11.8029 - }, - { - "l": "-4.0", - "x": 6.5957, - "y": 11.7993 - }, - { - "l": "-4.0", - "x": 6.679, - "y": 11.7965 - }, - { - "l": "-4.0", - "x": 6.7623, - "y": 11.794 - }, - { - "l": "-4.0", - "x": 6.8457, - "y": 11.7921 - }, - { - "l": "-4.0", - "x": 6.929, - "y": 11.791 - }, - { - "l": "-4.0", - "x": 7.0123, - "y": 11.7903 - }, - { - "l": "-4.0", - "x": 7.0957, - "y": 11.7902 - }, - { - "l": "-4.0", - "x": 7.179, - "y": 11.7906 - }, - { - "l": "-4.0", - "x": 7.2623, - "y": 11.7916 - }, - { - "l": "-4.0", - "x": 7.3457, - "y": 11.793 - }, - { - "l": "-4.0", - "x": 7.429, - "y": 11.7947 - }, - { - "l": "-4.0", - "x": 7.5123, - "y": 11.797 - }, - { - "l": "-4.0", - "x": 7.5957, - "y": 11.7996 - }, - { - "l": "-4.0", - "x": 7.679, - "y": 11.8024 - }, - { - "l": "-4.0", - "x": 7.7623, - "y": 11.8059 - }, - { - "l": "-4.0", - "x": 7.8457, - "y": 11.8096 - }, - { - "l": "-4.0", - "x": 7.929, - "y": 11.8132 - }, - { - "l": "-4.0", - "x": 8.0123, - "y": 11.8177 - }, - { - "l": "-4.0", - "x": 8.0957, - "y": 11.8222 - }, - { - "l": "-4.0", - "x": 8.179, - "y": 11.8267 - }, - { - "l": "-4.0", - "x": 8.2623, - "y": 11.8319 - }, - { - "l": "-4.0", - "x": 8.3457, - "y": 11.8371 - }, - { - "l": "-4.0", - "x": 8.429, - "y": 11.8422 - }, - { - "l": "-4.0", - "x": 8.5123, - "y": 11.8479 - }, - { - "l": "-4.0", - "x": 8.5957, - "y": 11.8537 - }, - { - "l": "-4.0", - "x": 8.679, - "y": 11.8592 - }, - { - "l": "-4.0", - "x": 8.7623, - "y": 11.8654 - }, - { - "l": "-4.0", - "x": 8.8457, - "y": 11.8716 - }, - { - "l": "-4.0", - "x": 8.929, - "y": 11.8773 - }, - { - "l": "-4.0", - "x": 9.0123, - "y": 11.8839 - }, - { - "l": "-4.0", - "x": 9.0957, - "y": 11.8903 - }, - { - "l": "-4.0", - "x": 9.179, - "y": 11.8963 - }, - { - "l": "-4.0", - "x": 9.2623, - "y": 11.903 - }, - { - "l": "-4.0", - "x": 9.3457, - "y": 11.9095 - }, - { - "l": "-4.0", - "x": 9.429, - "y": 11.9155 - }, - { - "l": "-4.0", - "x": 9.5123, - "y": 11.9223 - }, - { - "l": "-4.0", - "x": 9.5957, - "y": 11.9288 - }, - { - "l": "-4.0", - "x": 9.679, - "y": 11.9348 - }, - { - "l": "-4.0", - "x": 9.7623, - "y": 11.9415 - }, - { - "l": "-4.0", - "x": 9.8457, - "y": 11.9479 - }, - { - "l": "-4.0", - "x": 9.929, - "y": 11.9538 - }, - { - "l": "-4.0", - "x": 10.0123, - "y": 11.9604 - }, - { - "l": "-4.0", - "x": 10.0957, - "y": 11.9667 - }, - { - "l": "-4.0", - "x": 10.179, - "y": 11.9725 - }, - { - "l": "-4.0", - "x": 10.2623, - "y": 11.9788 - }, - { - "l": "-4.0", - "x": 10.3457, - "y": 11.985 - }, - { - "l": "-4.0", - "x": 10.429, - "y": 11.9906 - }, - { - "l": "-4.0", - "x": 10.5123, - "y": 11.9967 - }, - { - "l": "-4.0", - "x": 10.5957, - "y": 12.0026 - }, - { - "l": "-4.0", - "x": 10.679, - "y": 12.008 - }, - { - "l": "-4.0", - "x": 10.7623, - "y": 12.0138 - }, - { - "l": "-4.0", - "x": 10.8457, - "y": 12.0194 - }, - { - "l": "-4.0", - "x": 10.929, - "y": 12.0245 - }, - { - "l": "-4.0", - "x": 11.0123, - "y": 12.03 - }, - { - "l": "-4.0", - "x": 11.0957, - "y": 12.0353 - }, - { - "l": "-4.0", - "x": 11.179, - "y": 12.0399 - }, - { - "l": "-4.0", - "x": 11.2623, - "y": 12.0451 - }, - { - "l": "-4.0", - "x": 11.3457, - "y": 12.0499 - }, - { - "l": "-4.0", - "x": 11.429, - "y": 12.0541 - }, - { - "l": "-4.0", - "x": 11.5123, - "y": 12.0588 - }, - { - "l": "-4.0", - "x": 11.5957, - "y": 12.0631 - }, - { - "l": "-4.0", - "x": 11.679, - "y": 12.0669 - }, - { - "l": "-4.0", - "x": 11.7623, - "y": 12.071 - }, - { - "l": "-4.0", - "x": 11.8457, - "y": 12.0747 - }, - { - "l": "-4.0", - "x": 11.929, - "y": 12.078 - }, - { - "l": "-4.0", - "x": 12.0123, - "y": 12.0814 - }, - { - "l": "-4.0", - "x": 12.0957, - "y": 12.0846 - }, - { - "l": "-4.0", - "x": 12.179, - "y": 12.0873 - }, - { - "l": "-4.0", - "x": 12.2623, - "y": 12.0901 - }, - { - "l": "-4.0", - "x": 12.3457, - "y": 12.0925 - }, - { - "l": "-4.0", - "x": 12.429, - "y": 12.0946 - }, - { - "l": "-4.0", - "x": 12.5123, - "y": 12.0967 - }, - { - "l": "-4.0", - "x": 12.5957, - "y": 12.0985 - }, - { - "l": "-4.0", - "x": 12.679, - "y": 12.1 - }, - { - "l": "-4.0", - "x": 12.7623, - "y": 12.1013 - }, - { - "l": "-4.0", - "x": 12.8457, - "y": 12.1024 - }, - { - "l": "-4.0", - "x": 12.929, - "y": 12.1032 - }, - { - "l": "-4.0", - "x": 13.0123, - "y": 12.1039 - }, - { - "l": "-4.0", - "x": 13.0957, - "y": 12.1042 - }, - { - "l": "-4.0", - "x": 13.179, - "y": 12.1043 - }, - { - "l": "-4.0", - "x": 13.2623, - "y": 12.1042 - }, - { - "l": "-4.0", - "x": 13.3457, - "y": 12.1038 - }, - { - "l": "-4.0", - "x": 13.429, - "y": 12.1032 - }, - { - "l": "-4.0", - "x": 13.5123, - "y": 12.1023 - }, - { - "l": "-4.0", - "x": 13.5957, - "y": 12.1011 - }, - { - "l": "-4.0", - "x": 13.679, - "y": 12.0998 - }, - { - "l": "-4.0", - "x": 13.7623, - "y": 12.0981 - }, - { - "l": "-4.0", - "x": 13.8457, - "y": 12.0961 - }, - { - "l": "-4.0", - "x": 13.929, - "y": 12.094 - }, - { - "l": "-4.0", - "x": 14.0123, - "y": 12.0914 - }, - { - "l": "-4.0", - "x": 14.0957, - "y": 12.0886 - }, - { - "l": "-4.0", - "x": 14.179, - "y": 12.0857 - }, - { - "l": "-4.0", - "x": 14.2623, - "y": 12.0822 - }, - { - "l": "-4.0", - "x": 14.3457, - "y": 12.0786 - }, - { - "l": "-4.0", - "x": 14.429, - "y": 12.0749 - }, - { - "l": "-4.0", - "x": 14.5123, - "y": 12.0705 - }, - { - "l": "-4.0", - "x": 14.5957, - "y": 12.066 - }, - { - "l": "-4.0", - "x": 14.679, - "y": 12.0616 - }, - { - "l": "-4.0", - "x": 14.7623, - "y": 12.0563 - }, - { - "l": "-4.0", - "x": 14.8457, - "y": 12.0508 - }, - { - "l": "-4.0", - "x": 14.929, - "y": 12.0456 - }, - { - "l": "-4.0", - "x": 15.0123, - "y": 12.0394 - }, - { - "l": "-4.0", - "x": 15.0957, - "y": 12.0331 - }, - { - "l": "-4.0", - "x": 15.179, - "y": 12.027 - }, - { - "l": "-4.0", - "x": 15.2623, - "y": 12.0199 - }, - { - "l": "-4.0", - "x": 15.3457, - "y": 12.0126 - }, - { - "l": "-4.0", - "x": 15.429, - "y": 12.0057 - }, - { - "l": "-4.0", - "x": 15.5123, - "y": 11.9976 - }, - { - "l": "-4.0", - "x": 15.5957, - "y": 11.9895 - }, - { - "l": "-4.0", - "x": 15.679, - "y": 11.9818 - }, - { - "l": "-4.0", - "x": 15.7623, - "y": 11.9728 - }, - { - "l": "-4.0", - "x": 15.8457, - "y": 11.9637 - }, - { - "l": "-4.0", - "x": 15.929, - "y": 11.9552 - }, - { - "l": "-4.0", - "x": 16.0123, - "y": 11.9452 - }, - { - "l": "-4.0", - "x": 16.0957, - "y": 11.9353 - }, - { - "l": "-4.0", - "x": 16.179, - "y": 11.9259 - }, - { - "l": "-4.0", - "x": 16.2623, - "y": 11.915 - }, - { - "l": "-4.0", - "x": 16.3457, - "y": 11.9041 - }, - { - "l": "-4.0", - "x": 16.429, - "y": 11.8939 - }, - { - "l": "-4.0", - "x": 16.5123, - "y": 11.882 - }, - { - "l": "-4.0", - "x": 16.5957, - "y": 11.8703 - }, - { - "l": "-4.0", - "x": 16.679, - "y": 11.8592 - }, - { - "l": "-4.0", - "x": 16.7623, - "y": 11.8465 - }, - { - "l": "-4.0", - "x": 16.8457, - "y": 11.8338 - }, - { - "l": "-4.0", - "x": 16.929, - "y": 11.8219 - }, - { - "l": "-4.0", - "x": 17.0123, - "y": 11.8083 - }, - { - "l": "-4.0", - "x": 17.0957, - "y": 11.7947 - }, - { - "l": "-4.0", - "x": 17.179, - "y": 11.782 - }, - { - "l": "-4.0", - "x": 17.2623, - "y": 11.7674 - }, - { - "l": "-4.0", - "x": 17.3457, - "y": 11.7529 - }, - { - "l": "-4.0", - "x": 17.429, - "y": 11.7394 - }, - { - "l": "-4.0", - "x": 17.5123, - "y": 11.724 - }, - { - "l": "-4.0", - "x": 17.5957, - "y": 11.7086 - }, - { - "l": "-4.0", - "x": 17.679, - "y": 11.6943 - }, - { - "l": "-4.0", - "x": 17.7623, - "y": 11.6779 - }, - { - "l": "-4.0", - "x": 17.8457, - "y": 11.6617 - }, - { - "l": "-4.0", - "x": 17.929, - "y": 11.6466 - }, - { - "l": "-4.0", - "x": 18.0123, - "y": 11.6294 - }, - { - "l": "-4.0", - "x": 18.0957, - "y": 11.6122 - }, - { - "l": "-4.0", - "x": 18.179, - "y": 11.5963 - }, - { - "l": "-4.0", - "x": 18.2623, - "y": 11.5782 - }, - { - "l": "-4.0", - "x": 18.3457, - "y": 11.5603 - }, - { - "l": "-4.0", - "x": 18.429, - "y": 11.5436 - }, - { - "l": "-4.0", - "x": 18.5123, - "y": 11.5246 - }, - { - "l": "-4.0", - "x": 18.5957, - "y": 11.5058 - }, - { - "l": "-4.0", - "x": 18.679, - "y": 11.4883 - }, - { - "l": "-4.0", - "x": 18.7623, - "y": 11.4684 - }, - { - "l": "-4.0", - "x": 18.8457, - "y": 11.4684 - } - ] - }, - { - "sds": -3.0, - "centile": 0.13498980316300932, - "data": [ - { - "l": "-3.0", - "x": 0.0, - "y": 8.9608 - }, - { - "l": "-3.0", - "x": 0.0192, - "y": 9.1518 - }, - { - "l": "-3.0", - "x": 0.0383, - "y": 9.3434 - }, - { - "l": "-3.0", - "x": 0.0575, - "y": 9.5356 - }, - { - "l": "-3.0", - "x": 0.0767, - "y": 9.7285 - }, - { - "l": "-3.0", - "x": 0.0958, - "y": 9.8894 - }, - { - "l": "-3.0", - "x": 0.115, - "y": 10.0342 - }, - { - "l": "-3.0", - "x": 0.1342, - "y": 10.1712 - }, - { - "l": "-3.0", - "x": 0.1533, - "y": 10.3029 - }, - { - "l": "-3.0", - "x": 0.1725, - "y": 10.4337 - }, - { - "l": "-3.0", - "x": 0.1916, - "y": 10.5736 - }, - { - "l": "-3.0", - "x": 0.2108, - "y": 10.7115 - }, - { - "l": "-3.0", - "x": 0.23, - "y": 10.8464 - }, - { - "l": "-3.0", - "x": 0.2491, - "y": 10.9773 - }, - { - "l": "-3.0", - "x": 0.2683, - "y": 11.1019 - }, - { - "l": "-3.0", - "x": 0.2875, - "y": 11.2209 - }, - { - "l": "-3.0", - "x": 0.3066, - "y": 11.3339 - }, - { - "l": "-3.0", - "x": 0.3258, - "y": 11.4404 - }, - { - "l": "-3.0", - "x": 0.345, - "y": 11.5361 - }, - { - "l": "-3.0", - "x": 0.3641, - "y": 11.6241 - }, - { - "l": "-3.0", - "x": 0.3833, - "y": 11.7069 - }, - { - "l": "-3.0", - "x": 0.4025, - "y": 11.7857 - }, - { - "l": "-3.0", - "x": 0.4216, - "y": 11.8619 - }, - { - "l": "-3.0", - "x": 0.4408, - "y": 11.9406 - }, - { - "l": "-3.0", - "x": 0.46, - "y": 12.0167 - }, - { - "l": "-3.0", - "x": 0.4791, - "y": 12.0897 - }, - { - "l": "-3.0", - "x": 0.4983, - "y": 12.159 - }, - { - "l": "-3.0", - "x": 0.5175, - "y": 12.2231 - }, - { - "l": "-3.0", - "x": 0.5366, - "y": 12.2828 - }, - { - "l": "-3.0", - "x": 0.5558, - "y": 12.3385 - }, - { - "l": "-3.0", - "x": 0.5749, - "y": 12.39 - }, - { - "l": "-3.0", - "x": 0.5941, - "y": 12.4359 - }, - { - "l": "-3.0", - "x": 0.6133, - "y": 12.4774 - }, - { - "l": "-3.0", - "x": 0.6324, - "y": 12.5158 - }, - { - "l": "-3.0", - "x": 0.6516, - "y": 12.5517 - }, - { - "l": "-3.0", - "x": 0.6708, - "y": 12.5861 - }, - { - "l": "-3.0", - "x": 0.6899, - "y": 12.6216 - }, - { - "l": "-3.0", - "x": 0.7091, - "y": 12.6558 - }, - { - "l": "-3.0", - "x": 0.7283, - "y": 12.6883 - }, - { - "l": "-3.0", - "x": 0.7474, - "y": 12.7191 - }, - { - "l": "-3.0", - "x": 0.7666, - "y": 12.7476 - }, - { - "l": "-3.0", - "x": 0.7858, - "y": 12.774 - }, - { - "l": "-3.0", - "x": 0.8049, - "y": 12.7985 - }, - { - "l": "-3.0", - "x": 0.8241, - "y": 12.821 - }, - { - "l": "-3.0", - "x": 0.8433, - "y": 12.8409 - }, - { - "l": "-3.0", - "x": 0.8624, - "y": 12.8588 - }, - { - "l": "-3.0", - "x": 0.8816, - "y": 12.8752 - }, - { - "l": "-3.0", - "x": 0.9008, - "y": 12.8904 - }, - { - "l": "-3.0", - "x": 0.9199, - "y": 12.9046 - }, - { - "l": "-3.0", - "x": 0.9391, - "y": 12.9191 - }, - { - "l": "-3.0", - "x": 0.9582, - "y": 12.9329 - }, - { - "l": "-3.0", - "x": 0.9774, - "y": 12.9458 - }, - { - "l": "-3.0", - "x": 0.9966, - "y": 12.9578 - }, - { - "l": "-3.0", - "x": 1.0157, - "y": 12.9686 - }, - { - "l": "-3.0", - "x": 1.0349, - "y": 12.9783 - }, - { - "l": "-3.0", - "x": 1.0541, - "y": 12.9871 - }, - { - "l": "-3.0", - "x": 1.0732, - "y": 12.995 - }, - { - "l": "-3.0", - "x": 1.0924, - "y": 13.0019 - }, - { - "l": "-3.0", - "x": 1.1116, - "y": 13.008 - }, - { - "l": "-3.0", - "x": 1.1307, - "y": 13.0134 - }, - { - "l": "-3.0", - "x": 1.1499, - "y": 13.0183 - }, - { - "l": "-3.0", - "x": 1.1691, - "y": 13.0229 - }, - { - "l": "-3.0", - "x": 1.1882, - "y": 13.0275 - }, - { - "l": "-3.0", - "x": 1.2074, - "y": 13.032 - }, - { - "l": "-3.0", - "x": 1.2266, - "y": 13.0361 - }, - { - "l": "-3.0", - "x": 1.2457, - "y": 13.04 - }, - { - "l": "-3.0", - "x": 1.2649, - "y": 13.0436 - }, - { - "l": "-3.0", - "x": 1.2841, - "y": 13.0468 - }, - { - "l": "-3.0", - "x": 1.3032, - "y": 13.0498 - }, - { - "l": "-3.0", - "x": 1.3224, - "y": 13.0525 - }, - { - "l": "-3.0", - "x": 1.3415, - "y": 13.0549 - }, - { - "l": "-3.0", - "x": 1.3607, - "y": 13.0571 - }, - { - "l": "-3.0", - "x": 1.3799, - "y": 13.059 - }, - { - "l": "-3.0", - "x": 1.399, - "y": 13.0608 - }, - { - "l": "-3.0", - "x": 1.4182, - "y": 13.0626 - }, - { - "l": "-3.0", - "x": 1.4374, - "y": 13.0643 - }, - { - "l": "-3.0", - "x": 1.4565, - "y": 13.066 - }, - { - "l": "-3.0", - "x": 1.4757, - "y": 13.0676 - }, - { - "l": "-3.0", - "x": 1.4949, - "y": 13.0691 - }, - { - "l": "-3.0", - "x": 1.514, - "y": 13.0705 - }, - { - "l": "-3.0", - "x": 1.5332, - "y": 13.0718 - }, - { - "l": "-3.0", - "x": 1.5524, - "y": 13.073 - }, - { - "l": "-3.0", - "x": 1.5715, - "y": 13.0741 - }, - { - "l": "-3.0", - "x": 1.5907, - "y": 13.0752 - }, - { - "l": "-3.0", - "x": 1.6099, - "y": 13.0761 - }, - { - "l": "-3.0", - "x": 1.629, - "y": 13.077 - }, - { - "l": "-3.0", - "x": 1.6482, - "y": 13.0778 - }, - { - "l": "-3.0", - "x": 1.6674, - "y": 13.0786 - }, - { - "l": "-3.0", - "x": 1.6865, - "y": 13.0794 - }, - { - "l": "-3.0", - "x": 1.7057, - "y": 13.0801 - }, - { - "l": "-3.0", - "x": 1.7248, - "y": 13.0809 - }, - { - "l": "-3.0", - "x": 1.744, - "y": 13.0816 - }, - { - "l": "-3.0", - "x": 1.7632, - "y": 13.0823 - }, - { - "l": "-3.0", - "x": 1.7823, - "y": 13.083 - }, - { - "l": "-3.0", - "x": 1.8015, - "y": 13.0836 - }, - { - "l": "-3.0", - "x": 1.8207, - "y": 13.0842 - }, - { - "l": "-3.0", - "x": 1.8398, - "y": 13.0847 - }, - { - "l": "-3.0", - "x": 1.859, - "y": 13.0853 - }, - { - "l": "-3.0", - "x": 1.8782, - "y": 13.0858 - }, - { - "l": "-3.0", - "x": 1.8973, - "y": 13.0863 - }, - { - "l": "-3.0", - "x": 1.9165, - "y": 13.0869 - }, - { - "l": "-3.0", - "x": 1.9357, - "y": 13.0874 - }, - { - "l": "-3.0", - "x": 1.9548, - "y": 13.0881 - }, - { - "l": "-3.0", - "x": 1.974, - "y": 13.0887 - }, - { - "l": "-3.0", - "x": 1.9932, - "y": 13.0893 - }, - { - "l": "-3.0", - "x": 2.0123, - "y": 13.09 - }, - { - "l": "-3.0", - "x": 2.0957, - "y": 13.093 - }, - { - "l": "-3.0", - "x": 2.179, - "y": 13.0962 - }, - { - "l": "-3.0", - "x": 2.2623, - "y": 13.1002 - }, - { - "l": "-3.0", - "x": 2.3457, - "y": 13.1044 - }, - { - "l": "-3.0", - "x": 2.429, - "y": 13.1087 - }, - { - "l": "-3.0", - "x": 2.5123, - "y": 13.1137 - }, - { - "l": "-3.0", - "x": 2.5957, - "y": 13.1189 - }, - { - "l": "-3.0", - "x": 2.679, - "y": 13.1237 - }, - { - "l": "-3.0", - "x": 2.7623, - "y": 13.1291 - }, - { - "l": "-3.0", - "x": 2.8457, - "y": 13.1342 - }, - { - "l": "-3.0", - "x": 2.929, - "y": 13.1385 - }, - { - "l": "-3.0", - "x": 3.0123, - "y": 13.1426 - }, - { - "l": "-3.0", - "x": 3.0957, - "y": 13.146 - }, - { - "l": "-3.0", - "x": 3.179, - "y": 13.1484 - }, - { - "l": "-3.0", - "x": 3.2623, - "y": 13.15 - }, - { - "l": "-3.0", - "x": 3.3457, - "y": 13.1506 - }, - { - "l": "-3.0", - "x": 3.429, - "y": 13.15 - }, - { - "l": "-3.0", - "x": 3.5123, - "y": 13.1482 - }, - { - "l": "-3.0", - "x": 3.5957, - "y": 13.1452 - }, - { - "l": "-3.0", - "x": 3.679, - "y": 13.1413 - }, - { - "l": "-3.0", - "x": 3.7623, - "y": 13.136 - }, - { - "l": "-3.0", - "x": 3.8457, - "y": 13.1298 - }, - { - "l": "-3.0", - "x": 3.929, - "y": 13.1232 - }, - { - "l": "-3.0", - "x": 4.0123, - "y": 13.1151 - }, - { - "l": "-3.0", - "x": 4.0957, - "y": 13.1064 - }, - { - "l": "-3.0", - "x": 4.179, - "y": 13.0979 - }, - { - "l": "-3.0", - "x": 4.2623, - "y": 13.0877 - }, - { - "l": "-3.0", - "x": 4.3457, - "y": 13.0773 - }, - { - "l": "-3.0", - "x": 4.429, - "y": 13.0674 - }, - { - "l": "-3.0", - "x": 4.5123, - "y": 13.0561 - }, - { - "l": "-3.0", - "x": 4.5957, - "y": 13.0449 - }, - { - "l": "-3.0", - "x": 4.679, - "y": 13.0347 - }, - { - "l": "-3.0", - "x": 4.7623, - "y": 13.0233 - }, - { - "l": "-3.0", - "x": 4.8457, - "y": 13.0123 - }, - { - "l": "-3.0", - "x": 4.929, - "y": 13.0025 - }, - { - "l": "-3.0", - "x": 5.0123, - "y": 12.9919 - }, - { - "l": "-3.0", - "x": 5.0957, - "y": 12.9818 - }, - { - "l": "-3.0", - "x": 5.179, - "y": 12.973 - }, - { - "l": "-3.0", - "x": 5.2623, - "y": 12.9635 - }, - { - "l": "-3.0", - "x": 5.3457, - "y": 12.9548 - }, - { - "l": "-3.0", - "x": 5.429, - "y": 12.9474 - }, - { - "l": "-3.0", - "x": 5.5123, - "y": 12.9397 - }, - { - "l": "-3.0", - "x": 5.5957, - "y": 12.9329 - }, - { - "l": "-3.0", - "x": 5.679, - "y": 12.9273 - }, - { - "l": "-3.0", - "x": 5.7623, - "y": 12.9218 - }, - { - "l": "-3.0", - "x": 5.8457, - "y": 12.9172 - }, - { - "l": "-3.0", - "x": 5.929, - "y": 12.9137 - }, - { - "l": "-3.0", - "x": 6.0123, - "y": 12.9105 - }, - { - "l": "-3.0", - "x": 6.0957, - "y": 12.9081 - }, - { - "l": "-3.0", - "x": 6.179, - "y": 12.9066 - }, - { - "l": "-3.0", - "x": 6.2623, - "y": 12.9057 - }, - { - "l": "-3.0", - "x": 6.3457, - "y": 12.9056 - }, - { - "l": "-3.0", - "x": 6.429, - "y": 12.9062 - }, - { - "l": "-3.0", - "x": 6.5123, - "y": 12.9077 - }, - { - "l": "-3.0", - "x": 6.5957, - "y": 12.9099 - }, - { - "l": "-3.0", - "x": 6.679, - "y": 12.9126 - }, - { - "l": "-3.0", - "x": 6.7623, - "y": 12.9164 - }, - { - "l": "-3.0", - "x": 6.8457, - "y": 12.9209 - }, - { - "l": "-3.0", - "x": 6.929, - "y": 12.9257 - }, - { - "l": "-3.0", - "x": 7.0123, - "y": 12.9318 - }, - { - "l": "-3.0", - "x": 7.0957, - "y": 12.9385 - }, - { - "l": "-3.0", - "x": 7.179, - "y": 12.9452 - }, - { - "l": "-3.0", - "x": 7.2623, - "y": 12.9534 - }, - { - "l": "-3.0", - "x": 7.3457, - "y": 12.9619 - }, - { - "l": "-3.0", - "x": 7.429, - "y": 12.9703 - }, - { - "l": "-3.0", - "x": 7.5123, - "y": 12.9803 - }, - { - "l": "-3.0", - "x": 7.5957, - "y": 12.9905 - }, - { - "l": "-3.0", - "x": 7.679, - "y": 13.0003 - }, - { - "l": "-3.0", - "x": 7.7623, - "y": 13.0118 - }, - { - "l": "-3.0", - "x": 7.8457, - "y": 13.0234 - }, - { - "l": "-3.0", - "x": 7.929, - "y": 13.0344 - }, - { - "l": "-3.0", - "x": 8.0123, - "y": 13.0473 - }, - { - "l": "-3.0", - "x": 8.0957, - "y": 13.0601 - }, - { - "l": "-3.0", - "x": 8.179, - "y": 13.0722 - }, - { - "l": "-3.0", - "x": 8.2623, - "y": 13.0862 - }, - { - "l": "-3.0", - "x": 8.3457, - "y": 13.1001 - }, - { - "l": "-3.0", - "x": 8.429, - "y": 13.1131 - }, - { - "l": "-3.0", - "x": 8.5123, - "y": 13.1279 - }, - { - "l": "-3.0", - "x": 8.5957, - "y": 13.1427 - }, - { - "l": "-3.0", - "x": 8.679, - "y": 13.1564 - }, - { - "l": "-3.0", - "x": 8.7623, - "y": 13.172 - }, - { - "l": "-3.0", - "x": 8.8457, - "y": 13.1874 - }, - { - "l": "-3.0", - "x": 8.929, - "y": 13.2017 - }, - { - "l": "-3.0", - "x": 9.0123, - "y": 13.2179 - }, - { - "l": "-3.0", - "x": 9.0957, - "y": 13.2339 - }, - { - "l": "-3.0", - "x": 9.179, - "y": 13.2486 - }, - { - "l": "-3.0", - "x": 9.2623, - "y": 13.2653 - }, - { - "l": "-3.0", - "x": 9.3457, - "y": 13.2816 - }, - { - "l": "-3.0", - "x": 9.429, - "y": 13.2966 - }, - { - "l": "-3.0", - "x": 9.5123, - "y": 13.3136 - }, - { - "l": "-3.0", - "x": 9.5957, - "y": 13.3301 - }, - { - "l": "-3.0", - "x": 9.679, - "y": 13.3454 - }, - { - "l": "-3.0", - "x": 9.7623, - "y": 13.3625 - }, - { - "l": "-3.0", - "x": 9.8457, - "y": 13.3792 - }, - { - "l": "-3.0", - "x": 9.929, - "y": 13.3945 - }, - { - "l": "-3.0", - "x": 10.0123, - "y": 13.4117 - }, - { - "l": "-3.0", - "x": 10.0957, - "y": 13.4285 - }, - { - "l": "-3.0", - "x": 10.179, - "y": 13.4439 - }, - { - "l": "-3.0", - "x": 10.2623, - "y": 13.4612 - }, - { - "l": "-3.0", - "x": 10.3457, - "y": 13.478 - }, - { - "l": "-3.0", - "x": 10.429, - "y": 13.4934 - }, - { - "l": "-3.0", - "x": 10.5123, - "y": 13.5106 - }, - { - "l": "-3.0", - "x": 10.5957, - "y": 13.5274 - }, - { - "l": "-3.0", - "x": 10.679, - "y": 13.5427 - }, - { - "l": "-3.0", - "x": 10.7623, - "y": 13.5598 - }, - { - "l": "-3.0", - "x": 10.8457, - "y": 13.5764 - }, - { - "l": "-3.0", - "x": 10.929, - "y": 13.5916 - }, - { - "l": "-3.0", - "x": 11.0123, - "y": 13.6086 - }, - { - "l": "-3.0", - "x": 11.0957, - "y": 13.625 - }, - { - "l": "-3.0", - "x": 11.179, - "y": 13.64 - }, - { - "l": "-3.0", - "x": 11.2623, - "y": 13.6567 - }, - { - "l": "-3.0", - "x": 11.3457, - "y": 13.6729 - }, - { - "l": "-3.0", - "x": 11.429, - "y": 13.6875 - }, - { - "l": "-3.0", - "x": 11.5123, - "y": 13.7039 - }, - { - "l": "-3.0", - "x": 11.5957, - "y": 13.7197 - }, - { - "l": "-3.0", - "x": 11.679, - "y": 13.734 - }, - { - "l": "-3.0", - "x": 11.7623, - "y": 13.7499 - }, - { - "l": "-3.0", - "x": 11.8457, - "y": 13.7653 - }, - { - "l": "-3.0", - "x": 11.929, - "y": 13.7792 - }, - { - "l": "-3.0", - "x": 12.0123, - "y": 13.7946 - }, - { - "l": "-3.0", - "x": 12.0957, - "y": 13.8095 - }, - { - "l": "-3.0", - "x": 12.179, - "y": 13.8229 - }, - { - "l": "-3.0", - "x": 12.2623, - "y": 13.8378 - }, - { - "l": "-3.0", - "x": 12.3457, - "y": 13.852 - }, - { - "l": "-3.0", - "x": 12.429, - "y": 13.8649 - }, - { - "l": "-3.0", - "x": 12.5123, - "y": 13.8792 - }, - { - "l": "-3.0", - "x": 12.5957, - "y": 13.8929 - }, - { - "l": "-3.0", - "x": 12.679, - "y": 13.9052 - }, - { - "l": "-3.0", - "x": 12.7623, - "y": 13.9189 - }, - { - "l": "-3.0", - "x": 12.8457, - "y": 13.9319 - }, - { - "l": "-3.0", - "x": 12.929, - "y": 13.9437 - }, - { - "l": "-3.0", - "x": 13.0123, - "y": 13.9567 - }, - { - "l": "-3.0", - "x": 13.0957, - "y": 13.969 - }, - { - "l": "-3.0", - "x": 13.179, - "y": 13.9802 - }, - { - "l": "-3.0", - "x": 13.2623, - "y": 13.9925 - }, - { - "l": "-3.0", - "x": 13.3457, - "y": 14.0042 - }, - { - "l": "-3.0", - "x": 13.429, - "y": 14.0146 - }, - { - "l": "-3.0", - "x": 13.5123, - "y": 14.0262 - }, - { - "l": "-3.0", - "x": 13.5957, - "y": 14.0371 - }, - { - "l": "-3.0", - "x": 13.679, - "y": 14.0469 - }, - { - "l": "-3.0", - "x": 13.7623, - "y": 14.0577 - }, - { - "l": "-3.0", - "x": 13.8457, - "y": 14.0679 - }, - { - "l": "-3.0", - "x": 13.929, - "y": 14.077 - }, - { - "l": "-3.0", - "x": 14.0123, - "y": 14.0869 - }, - { - "l": "-3.0", - "x": 14.0957, - "y": 14.0963 - }, - { - "l": "-3.0", - "x": 14.179, - "y": 14.1047 - }, - { - "l": "-3.0", - "x": 14.2623, - "y": 14.1138 - }, - { - "l": "-3.0", - "x": 14.3457, - "y": 14.1224 - }, - { - "l": "-3.0", - "x": 14.429, - "y": 14.13 - }, - { - "l": "-3.0", - "x": 14.5123, - "y": 14.1382 - }, - { - "l": "-3.0", - "x": 14.5957, - "y": 14.1459 - }, - { - "l": "-3.0", - "x": 14.679, - "y": 14.1528 - }, - { - "l": "-3.0", - "x": 14.7623, - "y": 14.1602 - }, - { - "l": "-3.0", - "x": 14.8457, - "y": 14.1671 - }, - { - "l": "-3.0", - "x": 14.929, - "y": 14.1731 - }, - { - "l": "-3.0", - "x": 15.0123, - "y": 14.1796 - }, - { - "l": "-3.0", - "x": 15.0957, - "y": 14.1857 - }, - { - "l": "-3.0", - "x": 15.179, - "y": 14.1909 - }, - { - "l": "-3.0", - "x": 15.2623, - "y": 14.1965 - }, - { - "l": "-3.0", - "x": 15.3457, - "y": 14.2017 - }, - { - "l": "-3.0", - "x": 15.429, - "y": 14.2061 - }, - { - "l": "-3.0", - "x": 15.5123, - "y": 14.2108 - }, - { - "l": "-3.0", - "x": 15.5957, - "y": 14.2151 - }, - { - "l": "-3.0", - "x": 15.679, - "y": 14.2188 - }, - { - "l": "-3.0", - "x": 15.7623, - "y": 14.2226 - }, - { - "l": "-3.0", - "x": 15.8457, - "y": 14.226 - }, - { - "l": "-3.0", - "x": 15.929, - "y": 14.2288 - }, - { - "l": "-3.0", - "x": 16.0123, - "y": 14.2317 - }, - { - "l": "-3.0", - "x": 16.0957, - "y": 14.2343 - }, - { - "l": "-3.0", - "x": 16.179, - "y": 14.2363 - }, - { - "l": "-3.0", - "x": 16.2623, - "y": 14.2383 - }, - { - "l": "-3.0", - "x": 16.3457, - "y": 14.2399 - }, - { - "l": "-3.0", - "x": 16.429, - "y": 14.2412 - }, - { - "l": "-3.0", - "x": 16.5123, - "y": 14.2423 - }, - { - "l": "-3.0", - "x": 16.5957, - "y": 14.2431 - }, - { - "l": "-3.0", - "x": 16.679, - "y": 14.2435 - }, - { - "l": "-3.0", - "x": 16.7623, - "y": 14.2437 - }, - { - "l": "-3.0", - "x": 16.8457, - "y": 14.2436 - }, - { - "l": "-3.0", - "x": 16.929, - "y": 14.2433 - }, - { - "l": "-3.0", - "x": 17.0123, - "y": 14.2426 - }, - { - "l": "-3.0", - "x": 17.0957, - "y": 14.2417 - }, - { - "l": "-3.0", - "x": 17.179, - "y": 14.2406 - }, - { - "l": "-3.0", - "x": 17.2623, - "y": 14.239 - }, - { - "l": "-3.0", - "x": 17.3457, - "y": 14.2372 - }, - { - "l": "-3.0", - "x": 17.429, - "y": 14.2353 - }, - { - "l": "-3.0", - "x": 17.5123, - "y": 14.2329 - }, - { - "l": "-3.0", - "x": 17.5957, - "y": 14.2303 - }, - { - "l": "-3.0", - "x": 17.679, - "y": 14.2277 - }, - { - "l": "-3.0", - "x": 17.7623, - "y": 14.2244 - }, - { - "l": "-3.0", - "x": 17.8457, - "y": 14.2209 - }, - { - "l": "-3.0", - "x": 17.929, - "y": 14.2175 - }, - { - "l": "-3.0", - "x": 18.0123, - "y": 14.2134 - }, - { - "l": "-3.0", - "x": 18.0957, - "y": 14.2091 - }, - { - "l": "-3.0", - "x": 18.179, - "y": 14.205 - }, - { - "l": "-3.0", - "x": 18.2623, - "y": 14.2001 - }, - { - "l": "-3.0", - "x": 18.3457, - "y": 14.195 - }, - { - "l": "-3.0", - "x": 18.429, - "y": 14.1901 - }, - { - "l": "-3.0", - "x": 18.5123, - "y": 14.1844 - }, - { - "l": "-3.0", - "x": 18.5957, - "y": 14.1785 - }, - { - "l": "-3.0", - "x": 18.679, - "y": 14.1728 - }, - { - "l": "-3.0", - "x": 18.7623, - "y": 14.1662 - }, - { - "l": "-3.0", - "x": 18.8457, - "y": 14.1662 - } - ] - }, - { - "sds": 3.0, - "centile": 99.86501019683699, - "data": [ - { - "l": "3.0", - "x": 0.0, - "y": 17.1872 - }, - { - "l": "3.0", - "x": 0.0192, - "y": 17.4976 - }, - { - "l": "3.0", - "x": 0.0383, - "y": 17.8071 - }, - { - "l": "3.0", - "x": 0.0575, - "y": 18.1158 - }, - { - "l": "3.0", - "x": 0.0767, - "y": 18.4236 - }, - { - "l": "3.0", - "x": 0.0958, - "y": 18.6856 - }, - { - "l": "3.0", - "x": 0.115, - "y": 18.925 - }, - { - "l": "3.0", - "x": 0.1342, - "y": 19.1539 - }, - { - "l": "3.0", - "x": 0.1533, - "y": 19.3764 - }, - { - "l": "3.0", - "x": 0.1725, - "y": 19.5988 - }, - { - "l": "3.0", - "x": 0.1916, - "y": 19.8372 - }, - { - "l": "3.0", - "x": 0.2108, - "y": 20.0734 - }, - { - "l": "3.0", - "x": 0.23, - "y": 20.3056 - }, - { - "l": "3.0", - "x": 0.2491, - "y": 20.5319 - }, - { - "l": "3.0", - "x": 0.2683, - "y": 20.7479 - }, - { - "l": "3.0", - "x": 0.2875, - "y": 20.9551 - }, - { - "l": "3.0", - "x": 0.3066, - "y": 21.1526 - }, - { - "l": "3.0", - "x": 0.3258, - "y": 21.3393 - }, - { - "l": "3.0", - "x": 0.345, - "y": 21.5069 - }, - { - "l": "3.0", - "x": 0.3641, - "y": 21.6615 - }, - { - "l": "3.0", - "x": 0.3833, - "y": 21.8072 - }, - { - "l": "3.0", - "x": 0.4025, - "y": 21.946 - }, - { - "l": "3.0", - "x": 0.4216, - "y": 22.0806 - }, - { - "l": "3.0", - "x": 0.4408, - "y": 22.2196 - }, - { - "l": "3.0", - "x": 0.46, - "y": 22.3541 - }, - { - "l": "3.0", - "x": 0.4791, - "y": 22.4831 - }, - { - "l": "3.0", - "x": 0.4983, - "y": 22.6058 - }, - { - "l": "3.0", - "x": 0.5175, - "y": 22.7193 - }, - { - "l": "3.0", - "x": 0.5366, - "y": 22.8254 - }, - { - "l": "3.0", - "x": 0.5558, - "y": 22.9242 - }, - { - "l": "3.0", - "x": 0.5749, - "y": 23.0158 - }, - { - "l": "3.0", - "x": 0.5941, - "y": 23.0973 - }, - { - "l": "3.0", - "x": 0.6133, - "y": 23.1712 - }, - { - "l": "3.0", - "x": 0.6324, - "y": 23.2396 - }, - { - "l": "3.0", - "x": 0.6516, - "y": 23.3038 - }, - { - "l": "3.0", - "x": 0.6708, - "y": 23.365 - }, - { - "l": "3.0", - "x": 0.6899, - "y": 23.4286 - }, - { - "l": "3.0", - "x": 0.7091, - "y": 23.4896 - }, - { - "l": "3.0", - "x": 0.7283, - "y": 23.5478 - }, - { - "l": "3.0", - "x": 0.7474, - "y": 23.6029 - }, - { - "l": "3.0", - "x": 0.7666, - "y": 23.6539 - }, - { - "l": "3.0", - "x": 0.7858, - "y": 23.7012 - }, - { - "l": "3.0", - "x": 0.8049, - "y": 23.7452 - }, - { - "l": "3.0", - "x": 0.8241, - "y": 23.7857 - }, - { - "l": "3.0", - "x": 0.8433, - "y": 23.8217 - }, - { - "l": "3.0", - "x": 0.8624, - "y": 23.854 - }, - { - "l": "3.0", - "x": 0.8816, - "y": 23.8836 - }, - { - "l": "3.0", - "x": 0.9008, - "y": 23.911 - }, - { - "l": "3.0", - "x": 0.9199, - "y": 23.9368 - }, - { - "l": "3.0", - "x": 0.9391, - "y": 23.9634 - }, - { - "l": "3.0", - "x": 0.9582, - "y": 23.9885 - }, - { - "l": "3.0", - "x": 0.9774, - "y": 24.0122 - }, - { - "l": "3.0", - "x": 0.9966, - "y": 24.0342 - }, - { - "l": "3.0", - "x": 1.0157, - "y": 24.0541 - }, - { - "l": "3.0", - "x": 1.0349, - "y": 24.0721 - }, - { - "l": "3.0", - "x": 1.0541, - "y": 24.0886 - }, - { - "l": "3.0", - "x": 1.0732, - "y": 24.1035 - }, - { - "l": "3.0", - "x": 1.0924, - "y": 24.1166 - }, - { - "l": "3.0", - "x": 1.1116, - "y": 24.1281 - }, - { - "l": "3.0", - "x": 1.1307, - "y": 24.1386 - }, - { - "l": "3.0", - "x": 1.1499, - "y": 24.1483 - }, - { - "l": "3.0", - "x": 1.1691, - "y": 24.1574 - }, - { - "l": "3.0", - "x": 1.1882, - "y": 24.1668 - }, - { - "l": "3.0", - "x": 1.2074, - "y": 24.1759 - }, - { - "l": "3.0", - "x": 1.2266, - "y": 24.1845 - }, - { - "l": "3.0", - "x": 1.2457, - "y": 24.1927 - }, - { - "l": "3.0", - "x": 1.2649, - "y": 24.2005 - }, - { - "l": "3.0", - "x": 1.2841, - "y": 24.2078 - }, - { - "l": "3.0", - "x": 1.3032, - "y": 24.2148 - }, - { - "l": "3.0", - "x": 1.3224, - "y": 24.2213 - }, - { - "l": "3.0", - "x": 1.3415, - "y": 24.2272 - }, - { - "l": "3.0", - "x": 1.3607, - "y": 24.2327 - }, - { - "l": "3.0", - "x": 1.3799, - "y": 24.2379 - }, - { - "l": "3.0", - "x": 1.399, - "y": 24.2429 - }, - { - "l": "3.0", - "x": 1.4182, - "y": 24.2478 - }, - { - "l": "3.0", - "x": 1.4374, - "y": 24.2531 - }, - { - "l": "3.0", - "x": 1.4565, - "y": 24.2584 - }, - { - "l": "3.0", - "x": 1.4757, - "y": 24.2637 - }, - { - "l": "3.0", - "x": 1.4949, - "y": 24.2689 - }, - { - "l": "3.0", - "x": 1.514, - "y": 24.2741 - }, - { - "l": "3.0", - "x": 1.5332, - "y": 24.2792 - }, - { - "l": "3.0", - "x": 1.5524, - "y": 24.2842 - }, - { - "l": "3.0", - "x": 1.5715, - "y": 24.289 - }, - { - "l": "3.0", - "x": 1.5907, - "y": 24.2936 - }, - { - "l": "3.0", - "x": 1.6099, - "y": 24.298 - }, - { - "l": "3.0", - "x": 1.629, - "y": 24.3023 - }, - { - "l": "3.0", - "x": 1.6482, - "y": 24.3066 - }, - { - "l": "3.0", - "x": 1.6674, - "y": 24.311 - }, - { - "l": "3.0", - "x": 1.6865, - "y": 24.3157 - }, - { - "l": "3.0", - "x": 1.7057, - "y": 24.3206 - }, - { - "l": "3.0", - "x": 1.7248, - "y": 24.3256 - }, - { - "l": "3.0", - "x": 1.744, - "y": 24.3307 - }, - { - "l": "3.0", - "x": 1.7632, - "y": 24.3358 - }, - { - "l": "3.0", - "x": 1.7823, - "y": 24.3409 - }, - { - "l": "3.0", - "x": 1.8015, - "y": 24.346 - }, - { - "l": "3.0", - "x": 1.8207, - "y": 24.3511 - }, - { - "l": "3.0", - "x": 1.8398, - "y": 24.3561 - }, - { - "l": "3.0", - "x": 1.859, - "y": 24.3609 - }, - { - "l": "3.0", - "x": 1.8782, - "y": 24.3657 - }, - { - "l": "3.0", - "x": 1.8973, - "y": 24.3706 - }, - { - "l": "3.0", - "x": 1.9165, - "y": 24.3757 - }, - { - "l": "3.0", - "x": 1.9357, - "y": 24.3813 - }, - { - "l": "3.0", - "x": 1.9548, - "y": 24.3872 - }, - { - "l": "3.0", - "x": 1.974, - "y": 24.3932 - }, - { - "l": "3.0", - "x": 1.9932, - "y": 24.3995 - }, - { - "l": "3.0", - "x": 2.0123, - "y": 24.4059 - }, - { - "l": "3.0", - "x": 2.0957, - "y": 24.4341 - }, - { - "l": "3.0", - "x": 2.179, - "y": 24.4625 - }, - { - "l": "3.0", - "x": 2.2623, - "y": 24.4969 - }, - { - "l": "3.0", - "x": 2.3457, - "y": 24.5332 - }, - { - "l": "3.0", - "x": 2.429, - "y": 24.5688 - }, - { - "l": "3.0", - "x": 2.5123, - "y": 24.6112 - }, - { - "l": "3.0", - "x": 2.5957, - "y": 24.655 - }, - { - "l": "3.0", - "x": 2.679, - "y": 24.697 - }, - { - "l": "3.0", - "x": 2.7623, - "y": 24.746 - }, - { - "l": "3.0", - "x": 2.8457, - "y": 24.7952 - }, - { - "l": "3.0", - "x": 2.929, - "y": 24.8411 - }, - { - "l": "3.0", - "x": 3.0123, - "y": 24.8939 - }, - { - "l": "3.0", - "x": 3.0957, - "y": 24.9453 - }, - { - "l": "3.0", - "x": 3.179, - "y": 24.9926 - }, - { - "l": "3.0", - "x": 3.2623, - "y": 25.0454 - }, - { - "l": "3.0", - "x": 3.3457, - "y": 25.0965 - }, - { - "l": "3.0", - "x": 3.429, - "y": 25.1426 - }, - { - "l": "3.0", - "x": 3.5123, - "y": 25.1936 - }, - { - "l": "3.0", - "x": 3.5957, - "y": 25.2425 - }, - { - "l": "3.0", - "x": 3.679, - "y": 25.2866 - }, - { - "l": "3.0", - "x": 3.7623, - "y": 25.3352 - }, - { - "l": "3.0", - "x": 3.8457, - "y": 25.3822 - }, - { - "l": "3.0", - "x": 3.929, - "y": 25.4248 - }, - { - "l": "3.0", - "x": 4.0123, - "y": 25.4724 - }, - { - "l": "3.0", - "x": 4.0957, - "y": 25.5185 - }, - { - "l": "3.0", - "x": 4.179, - "y": 25.5607 - }, - { - "l": "3.0", - "x": 4.2623, - "y": 25.6086 - }, - { - "l": "3.0", - "x": 4.3457, - "y": 25.6554 - }, - { - "l": "3.0", - "x": 4.429, - "y": 25.6987 - }, - { - "l": "3.0", - "x": 4.5123, - "y": 25.7481 - }, - { - "l": "3.0", - "x": 4.5957, - "y": 25.7972 - }, - { - "l": "3.0", - "x": 4.679, - "y": 25.8433 - }, - { - "l": "3.0", - "x": 4.7623, - "y": 25.8965 - }, - { - "l": "3.0", - "x": 4.8457, - "y": 25.9499 - }, - { - "l": "3.0", - "x": 4.929, - "y": 26.0003 - }, - { - "l": "3.0", - "x": 5.0123, - "y": 26.0589 - }, - { - "l": "3.0", - "x": 5.0957, - "y": 26.1178 - }, - { - "l": "3.0", - "x": 5.179, - "y": 26.1735 - }, - { - "l": "3.0", - "x": 5.2623, - "y": 26.2382 - }, - { - "l": "3.0", - "x": 5.3457, - "y": 26.3035 - }, - { - "l": "3.0", - "x": 5.429, - "y": 26.3653 - }, - { - "l": "3.0", - "x": 5.5123, - "y": 26.4372 - }, - { - "l": "3.0", - "x": 5.5957, - "y": 26.5096 - }, - { - "l": "3.0", - "x": 5.679, - "y": 26.5782 - }, - { - "l": "3.0", - "x": 5.7623, - "y": 26.6577 - }, - { - "l": "3.0", - "x": 5.8457, - "y": 26.7376 - }, - { - "l": "3.0", - "x": 5.929, - "y": 26.813 - }, - { - "l": "3.0", - "x": 6.0123, - "y": 26.9002 - }, - { - "l": "3.0", - "x": 6.0957, - "y": 26.9875 - }, - { - "l": "3.0", - "x": 6.179, - "y": 27.0697 - }, - { - "l": "3.0", - "x": 6.2623, - "y": 27.1644 - }, - { - "l": "3.0", - "x": 6.3457, - "y": 27.2591 - }, - { - "l": "3.0", - "x": 6.429, - "y": 27.3481 - }, - { - "l": "3.0", - "x": 6.5123, - "y": 27.4503 - }, - { - "l": "3.0", - "x": 6.5957, - "y": 27.5523 - }, - { - "l": "3.0", - "x": 6.679, - "y": 27.6479 - }, - { - "l": "3.0", - "x": 6.7623, - "y": 27.7575 - }, - { - "l": "3.0", - "x": 6.8457, - "y": 27.8666 - }, - { - "l": "3.0", - "x": 6.929, - "y": 27.9686 - }, - { - "l": "3.0", - "x": 7.0123, - "y": 28.0853 - }, - { - "l": "3.0", - "x": 7.0957, - "y": 28.2011 - }, - { - "l": "3.0", - "x": 7.179, - "y": 28.3091 - }, - { - "l": "3.0", - "x": 7.2623, - "y": 28.4324 - }, - { - "l": "3.0", - "x": 7.3457, - "y": 28.5544 - }, - { - "l": "3.0", - "x": 7.429, - "y": 28.6678 - }, - { - "l": "3.0", - "x": 7.5123, - "y": 28.797 - }, - { - "l": "3.0", - "x": 7.5957, - "y": 28.9245 - }, - { - "l": "3.0", - "x": 7.679, - "y": 29.0428 - }, - { - "l": "3.0", - "x": 7.7623, - "y": 29.1773 - }, - { - "l": "3.0", - "x": 7.8457, - "y": 29.3099 - }, - { - "l": "3.0", - "x": 7.929, - "y": 29.4326 - }, - { - "l": "3.0", - "x": 8.0123, - "y": 29.5719 - }, - { - "l": "3.0", - "x": 8.0957, - "y": 29.7091 - }, - { - "l": "3.0", - "x": 8.179, - "y": 29.8359 - }, - { - "l": "3.0", - "x": 8.2623, - "y": 29.9795 - }, - { - "l": "3.0", - "x": 8.3457, - "y": 30.1207 - }, - { - "l": "3.0", - "x": 8.429, - "y": 30.251 - }, - { - "l": "3.0", - "x": 8.5123, - "y": 30.3985 - }, - { - "l": "3.0", - "x": 8.5957, - "y": 30.5433 - }, - { - "l": "3.0", - "x": 8.679, - "y": 30.6767 - }, - { - "l": "3.0", - "x": 8.7623, - "y": 30.8276 - }, - { - "l": "3.0", - "x": 8.8457, - "y": 30.9755 - }, - { - "l": "3.0", - "x": 8.929, - "y": 31.1117 - }, - { - "l": "3.0", - "x": 9.0123, - "y": 31.2656 - }, - { - "l": "3.0", - "x": 9.0957, - "y": 31.4162 - }, - { - "l": "3.0", - "x": 9.179, - "y": 31.5548 - }, - { - "l": "3.0", - "x": 9.2623, - "y": 31.7112 - }, - { - "l": "3.0", - "x": 9.3457, - "y": 31.8642 - }, - { - "l": "3.0", - "x": 9.429, - "y": 32.0049 - }, - { - "l": "3.0", - "x": 9.5123, - "y": 32.1634 - }, - { - "l": "3.0", - "x": 9.5957, - "y": 32.3185 - }, - { - "l": "3.0", - "x": 9.679, - "y": 32.4609 - }, - { - "l": "3.0", - "x": 9.7623, - "y": 32.6214 - }, - { - "l": "3.0", - "x": 9.8457, - "y": 32.7783 - }, - { - "l": "3.0", - "x": 9.929, - "y": 32.9224 - }, - { - "l": "3.0", - "x": 10.0123, - "y": 33.0846 - }, - { - "l": "3.0", - "x": 10.0957, - "y": 33.2432 - }, - { - "l": "3.0", - "x": 10.179, - "y": 33.3887 - }, - { - "l": "3.0", - "x": 10.2623, - "y": 33.5526 - }, - { - "l": "3.0", - "x": 10.3457, - "y": 33.7127 - }, - { - "l": "3.0", - "x": 10.429, - "y": 33.8596 - }, - { - "l": "3.0", - "x": 10.5123, - "y": 34.0249 - }, - { - "l": "3.0", - "x": 10.5957, - "y": 34.1863 - }, - { - "l": "3.0", - "x": 10.679, - "y": 34.3344 - }, - { - "l": "3.0", - "x": 10.7623, - "y": 34.5011 - }, - { - "l": "3.0", - "x": 10.8457, - "y": 34.6637 - }, - { - "l": "3.0", - "x": 10.929, - "y": 34.8128 - }, - { - "l": "3.0", - "x": 11.0123, - "y": 34.9805 - }, - { - "l": "3.0", - "x": 11.0957, - "y": 35.1441 - }, - { - "l": "3.0", - "x": 11.179, - "y": 35.294 - }, - { - "l": "3.0", - "x": 11.2623, - "y": 35.4626 - }, - { - "l": "3.0", - "x": 11.3457, - "y": 35.627 - }, - { - "l": "3.0", - "x": 11.429, - "y": 35.7777 - }, - { - "l": "3.0", - "x": 11.5123, - "y": 35.9469 - }, - { - "l": "3.0", - "x": 11.5957, - "y": 36.1119 - }, - { - "l": "3.0", - "x": 11.679, - "y": 36.2631 - }, - { - "l": "3.0", - "x": 11.7623, - "y": 36.4328 - }, - { - "l": "3.0", - "x": 11.8457, - "y": 36.5982 - }, - { - "l": "3.0", - "x": 11.929, - "y": 36.7496 - }, - { - "l": "3.0", - "x": 12.0123, - "y": 36.9196 - }, - { - "l": "3.0", - "x": 12.0957, - "y": 37.0852 - }, - { - "l": "3.0", - "x": 12.179, - "y": 37.2368 - }, - { - "l": "3.0", - "x": 12.2623, - "y": 37.4069 - }, - { - "l": "3.0", - "x": 12.3457, - "y": 37.5725 - }, - { - "l": "3.0", - "x": 12.429, - "y": 37.7241 - }, - { - "l": "3.0", - "x": 12.5123, - "y": 37.8942 - }, - { - "l": "3.0", - "x": 12.5957, - "y": 38.0598 - }, - { - "l": "3.0", - "x": 12.679, - "y": 38.2112 - }, - { - "l": "3.0", - "x": 12.7623, - "y": 38.3811 - }, - { - "l": "3.0", - "x": 12.8457, - "y": 38.5465 - }, - { - "l": "3.0", - "x": 12.929, - "y": 38.6977 - }, - { - "l": "3.0", - "x": 13.0123, - "y": 38.8673 - }, - { - "l": "3.0", - "x": 13.0957, - "y": 39.0324 - }, - { - "l": "3.0", - "x": 13.179, - "y": 39.1833 - }, - { - "l": "3.0", - "x": 13.2623, - "y": 39.3525 - }, - { - "l": "3.0", - "x": 13.3457, - "y": 39.517 - }, - { - "l": "3.0", - "x": 13.429, - "y": 39.6674 - }, - { - "l": "3.0", - "x": 13.5123, - "y": 39.8361 - }, - { - "l": "3.0", - "x": 13.5957, - "y": 40.0 - }, - { - "l": "3.0", - "x": 13.679, - "y": 40.1499 - }, - { - "l": "3.0", - "x": 13.7623, - "y": 40.3178 - }, - { - "l": "3.0", - "x": 13.8457, - "y": 40.481 - }, - { - "l": "3.0", - "x": 13.929, - "y": 40.6301 - }, - { - "l": "3.0", - "x": 14.0123, - "y": 40.7972 - }, - { - "l": "3.0", - "x": 14.0957, - "y": 40.9596 - }, - { - "l": "3.0", - "x": 14.179, - "y": 41.1079 - }, - { - "l": "3.0", - "x": 14.2623, - "y": 41.2741 - }, - { - "l": "3.0", - "x": 14.3457, - "y": 41.4355 - }, - { - "l": "3.0", - "x": 14.429, - "y": 41.5829 - }, - { - "l": "3.0", - "x": 14.5123, - "y": 41.7481 - }, - { - "l": "3.0", - "x": 14.5957, - "y": 41.9085 - }, - { - "l": "3.0", - "x": 14.679, - "y": 42.0549 - }, - { - "l": "3.0", - "x": 14.7623, - "y": 42.2189 - }, - { - "l": "3.0", - "x": 14.8457, - "y": 42.3782 - }, - { - "l": "3.0", - "x": 14.929, - "y": 42.5237 - }, - { - "l": "3.0", - "x": 15.0123, - "y": 42.6866 - }, - { - "l": "3.0", - "x": 15.0957, - "y": 42.8446 - }, - { - "l": "3.0", - "x": 15.179, - "y": 42.989 - }, - { - "l": "3.0", - "x": 15.2623, - "y": 43.1506 - }, - { - "l": "3.0", - "x": 15.3457, - "y": 43.3076 - }, - { - "l": "3.0", - "x": 15.429, - "y": 43.4509 - }, - { - "l": "3.0", - "x": 15.5123, - "y": 43.6113 - }, - { - "l": "3.0", - "x": 15.5957, - "y": 43.7669 - }, - { - "l": "3.0", - "x": 15.679, - "y": 43.909 - }, - { - "l": "3.0", - "x": 15.7623, - "y": 44.0682 - }, - { - "l": "3.0", - "x": 15.8457, - "y": 44.2226 - }, - { - "l": "3.0", - "x": 15.929, - "y": 44.3636 - }, - { - "l": "3.0", - "x": 16.0123, - "y": 44.5214 - }, - { - "l": "3.0", - "x": 16.0957, - "y": 44.6747 - }, - { - "l": "3.0", - "x": 16.179, - "y": 44.8145 - }, - { - "l": "3.0", - "x": 16.2623, - "y": 44.9711 - }, - { - "l": "3.0", - "x": 16.3457, - "y": 45.123 - }, - { - "l": "3.0", - "x": 16.429, - "y": 45.2617 - }, - { - "l": "3.0", - "x": 16.5123, - "y": 45.417 - }, - { - "l": "3.0", - "x": 16.5957, - "y": 45.5677 - }, - { - "l": "3.0", - "x": 16.679, - "y": 45.7051 - }, - { - "l": "3.0", - "x": 16.7623, - "y": 45.8591 - }, - { - "l": "3.0", - "x": 16.8457, - "y": 46.0085 - }, - { - "l": "3.0", - "x": 16.929, - "y": 46.1449 - }, - { - "l": "3.0", - "x": 17.0123, - "y": 46.2976 - }, - { - "l": "3.0", - "x": 17.0957, - "y": 46.4458 - }, - { - "l": "3.0", - "x": 17.179, - "y": 46.581 - }, - { - "l": "3.0", - "x": 17.2623, - "y": 46.7324 - }, - { - "l": "3.0", - "x": 17.3457, - "y": 46.8794 - }, - { - "l": "3.0", - "x": 17.429, - "y": 47.0135 - }, - { - "l": "3.0", - "x": 17.5123, - "y": 47.1637 - }, - { - "l": "3.0", - "x": 17.5957, - "y": 47.3094 - }, - { - "l": "3.0", - "x": 17.679, - "y": 47.4424 - }, - { - "l": "3.0", - "x": 17.7623, - "y": 47.5915 - }, - { - "l": "3.0", - "x": 17.8457, - "y": 47.736 - }, - { - "l": "3.0", - "x": 17.929, - "y": 47.8679 - }, - { - "l": "3.0", - "x": 18.0123, - "y": 48.0156 - }, - { - "l": "3.0", - "x": 18.0957, - "y": 48.1591 - }, - { - "l": "3.0", - "x": 18.179, - "y": 48.29 - }, - { - "l": "3.0", - "x": 18.2623, - "y": 48.4363 - }, - { - "l": "3.0", - "x": 18.3457, - "y": 48.5786 - }, - { - "l": "3.0", - "x": 18.429, - "y": 48.7085 - }, - { - "l": "3.0", - "x": 18.5123, - "y": 48.8537 - }, - { - "l": "3.0", - "x": 18.5957, - "y": 48.9949 - }, - { - "l": "3.0", - "x": 18.679, - "y": 49.1239 - }, - { - "l": "3.0", - "x": 18.7623, - "y": 49.2683 - }, - { - "l": "3.0", - "x": 18.8457, - "y": 49.2683 - } - ] - }, - { - "sds": 3.33, - "centile": 99.95657700796184, - "data": [ - { - "l": "3.33", - "x": 0.0, - "y": 17.8759 - }, - { - "l": "3.33", - "x": 0.0192, - "y": 18.1986 - }, - { - "l": "3.33", - "x": 0.0383, - "y": 18.5204 - }, - { - "l": "3.33", - "x": 0.0575, - "y": 18.8413 - }, - { - "l": "3.33", - "x": 0.0767, - "y": 19.1612 - }, - { - "l": "3.33", - "x": 0.0958, - "y": 19.4338 - }, - { - "l": "3.33", - "x": 0.115, - "y": 19.6831 - }, - { - "l": "3.33", - "x": 0.1342, - "y": 19.9216 - }, - { - "l": "3.33", - "x": 0.1533, - "y": 20.1536 - }, - { - "l": "3.33", - "x": 0.1725, - "y": 20.3856 - }, - { - "l": "3.33", - "x": 0.1916, - "y": 20.6344 - }, - { - "l": "3.33", - "x": 0.2108, - "y": 20.881 - }, - { - "l": "3.33", - "x": 0.23, - "y": 21.1235 - }, - { - "l": "3.33", - "x": 0.2491, - "y": 21.36 - }, - { - "l": "3.33", - "x": 0.2683, - "y": 21.586 - }, - { - "l": "3.33", - "x": 0.2875, - "y": 21.8028 - }, - { - "l": "3.33", - "x": 0.3066, - "y": 22.0095 - }, - { - "l": "3.33", - "x": 0.3258, - "y": 22.2051 - }, - { - "l": "3.33", - "x": 0.345, - "y": 22.3807 - }, - { - "l": "3.33", - "x": 0.3641, - "y": 22.5429 - }, - { - "l": "3.33", - "x": 0.3833, - "y": 22.6958 - }, - { - "l": "3.33", - "x": 0.4025, - "y": 22.8415 - }, - { - "l": "3.33", - "x": 0.4216, - "y": 22.9829 - }, - { - "l": "3.33", - "x": 0.4408, - "y": 23.1291 - }, - { - "l": "3.33", - "x": 0.46, - "y": 23.2706 - }, - { - "l": "3.33", - "x": 0.4791, - "y": 23.4065 - }, - { - "l": "3.33", - "x": 0.4983, - "y": 23.5359 - }, - { - "l": "3.33", - "x": 0.5175, - "y": 23.6557 - }, - { - "l": "3.33", - "x": 0.5366, - "y": 23.7677 - }, - { - "l": "3.33", - "x": 0.5558, - "y": 23.8723 - }, - { - "l": "3.33", - "x": 0.5749, - "y": 23.9692 - }, - { - "l": "3.33", - "x": 0.5941, - "y": 24.0556 - }, - { - "l": "3.33", - "x": 0.6133, - "y": 24.134 - }, - { - "l": "3.33", - "x": 0.6324, - "y": 24.2068 - }, - { - "l": "3.33", - "x": 0.6516, - "y": 24.2751 - }, - { - "l": "3.33", - "x": 0.6708, - "y": 24.3404 - }, - { - "l": "3.33", - "x": 0.6899, - "y": 24.4083 - }, - { - "l": "3.33", - "x": 0.7091, - "y": 24.4735 - }, - { - "l": "3.33", - "x": 0.7283, - "y": 24.5358 - }, - { - "l": "3.33", - "x": 0.7474, - "y": 24.595 - }, - { - "l": "3.33", - "x": 0.7666, - "y": 24.6498 - }, - { - "l": "3.33", - "x": 0.7858, - "y": 24.7008 - }, - { - "l": "3.33", - "x": 0.8049, - "y": 24.7483 - }, - { - "l": "3.33", - "x": 0.8241, - "y": 24.7922 - }, - { - "l": "3.33", - "x": 0.8433, - "y": 24.8312 - }, - { - "l": "3.33", - "x": 0.8624, - "y": 24.8664 - }, - { - "l": "3.33", - "x": 0.8816, - "y": 24.8988 - }, - { - "l": "3.33", - "x": 0.9008, - "y": 24.9289 - }, - { - "l": "3.33", - "x": 0.9199, - "y": 24.9573 - }, - { - "l": "3.33", - "x": 0.9391, - "y": 24.9866 - }, - { - "l": "3.33", - "x": 0.9582, - "y": 25.0145 - }, - { - "l": "3.33", - "x": 0.9774, - "y": 25.0408 - }, - { - "l": "3.33", - "x": 0.9966, - "y": 25.0655 - }, - { - "l": "3.33", - "x": 1.0157, - "y": 25.0879 - }, - { - "l": "3.33", - "x": 1.0349, - "y": 25.1084 - }, - { - "l": "3.33", - "x": 1.0541, - "y": 25.1272 - }, - { - "l": "3.33", - "x": 1.0732, - "y": 25.1444 - }, - { - "l": "3.33", - "x": 1.0924, - "y": 25.1596 - }, - { - "l": "3.33", - "x": 1.1116, - "y": 25.1731 - }, - { - "l": "3.33", - "x": 1.1307, - "y": 25.1855 - }, - { - "l": "3.33", - "x": 1.1499, - "y": 25.197 - }, - { - "l": "3.33", - "x": 1.1691, - "y": 25.2079 - }, - { - "l": "3.33", - "x": 1.1882, - "y": 25.2194 - }, - { - "l": "3.33", - "x": 1.2074, - "y": 25.2304 - }, - { - "l": "3.33", - "x": 1.2266, - "y": 25.2411 - }, - { - "l": "3.33", - "x": 1.2457, - "y": 25.2514 - }, - { - "l": "3.33", - "x": 1.2649, - "y": 25.2611 - }, - { - "l": "3.33", - "x": 1.2841, - "y": 25.2704 - }, - { - "l": "3.33", - "x": 1.3032, - "y": 25.2793 - }, - { - "l": "3.33", - "x": 1.3224, - "y": 25.2876 - }, - { - "l": "3.33", - "x": 1.3415, - "y": 25.2953 - }, - { - "l": "3.33", - "x": 1.3607, - "y": 25.3025 - }, - { - "l": "3.33", - "x": 1.3799, - "y": 25.3093 - }, - { - "l": "3.33", - "x": 1.399, - "y": 25.316 - }, - { - "l": "3.33", - "x": 1.4182, - "y": 25.3226 - }, - { - "l": "3.33", - "x": 1.4374, - "y": 25.3297 - }, - { - "l": "3.33", - "x": 1.4565, - "y": 25.3369 - }, - { - "l": "3.33", - "x": 1.4757, - "y": 25.344 - }, - { - "l": "3.33", - "x": 1.4949, - "y": 25.3511 - }, - { - "l": "3.33", - "x": 1.514, - "y": 25.3582 - }, - { - "l": "3.33", - "x": 1.5332, - "y": 25.3651 - }, - { - "l": "3.33", - "x": 1.5524, - "y": 25.372 - }, - { - "l": "3.33", - "x": 1.5715, - "y": 25.3786 - }, - { - "l": "3.33", - "x": 1.5907, - "y": 25.385 - }, - { - "l": "3.33", - "x": 1.6099, - "y": 25.391 - }, - { - "l": "3.33", - "x": 1.629, - "y": 25.3969 - }, - { - "l": "3.33", - "x": 1.6482, - "y": 25.4028 - }, - { - "l": "3.33", - "x": 1.6674, - "y": 25.4089 - }, - { - "l": "3.33", - "x": 1.6865, - "y": 25.4154 - }, - { - "l": "3.33", - "x": 1.7057, - "y": 25.4221 - }, - { - "l": "3.33", - "x": 1.7248, - "y": 25.429 - }, - { - "l": "3.33", - "x": 1.744, - "y": 25.4359 - }, - { - "l": "3.33", - "x": 1.7632, - "y": 25.4429 - }, - { - "l": "3.33", - "x": 1.7823, - "y": 25.4499 - }, - { - "l": "3.33", - "x": 1.8015, - "y": 25.4569 - }, - { - "l": "3.33", - "x": 1.8207, - "y": 25.4639 - }, - { - "l": "3.33", - "x": 1.8398, - "y": 25.4706 - }, - { - "l": "3.33", - "x": 1.859, - "y": 25.477 - }, - { - "l": "3.33", - "x": 1.8782, - "y": 25.4835 - }, - { - "l": "3.33", - "x": 1.8973, - "y": 25.4901 - }, - { - "l": "3.33", - "x": 1.9165, - "y": 25.4969 - }, - { - "l": "3.33", - "x": 1.9357, - "y": 25.5044 - }, - { - "l": "3.33", - "x": 1.9548, - "y": 25.5121 - }, - { - "l": "3.33", - "x": 1.974, - "y": 25.5201 - }, - { - "l": "3.33", - "x": 1.9932, - "y": 25.5283 - }, - { - "l": "3.33", - "x": 2.0123, - "y": 25.5367 - }, - { - "l": "3.33", - "x": 2.0957, - "y": 25.5733 - }, - { - "l": "3.33", - "x": 2.179, - "y": 25.6095 - }, - { - "l": "3.33", - "x": 2.2623, - "y": 25.6528 - }, - { - "l": "3.33", - "x": 2.3457, - "y": 25.6979 - }, - { - "l": "3.33", - "x": 2.429, - "y": 25.7418 - }, - { - "l": "3.33", - "x": 2.5123, - "y": 25.7937 - }, - { - "l": "3.33", - "x": 2.5957, - "y": 25.8469 - }, - { - "l": "3.33", - "x": 2.679, - "y": 25.8977 - }, - { - "l": "3.33", - "x": 2.7623, - "y": 25.9567 - }, - { - "l": "3.33", - "x": 2.8457, - "y": 26.0157 - }, - { - "l": "3.33", - "x": 2.929, - "y": 26.0707 - }, - { - "l": "3.33", - "x": 3.0123, - "y": 26.1338 - }, - { - "l": "3.33", - "x": 3.0957, - "y": 26.1953 - }, - { - "l": "3.33", - "x": 3.179, - "y": 26.2518 - }, - { - "l": "3.33", - "x": 3.2623, - "y": 26.3151 - }, - { - "l": "3.33", - "x": 3.3457, - "y": 26.3762 - }, - { - "l": "3.33", - "x": 3.429, - "y": 26.4316 - }, - { - "l": "3.33", - "x": 3.5123, - "y": 26.493 - }, - { - "l": "3.33", - "x": 3.5957, - "y": 26.5519 - }, - { - "l": "3.33", - "x": 3.679, - "y": 26.605 - }, - { - "l": "3.33", - "x": 3.7623, - "y": 26.6639 - }, - { - "l": "3.33", - "x": 3.8457, - "y": 26.7208 - }, - { - "l": "3.33", - "x": 3.929, - "y": 26.7724 - }, - { - "l": "3.33", - "x": 4.0123, - "y": 26.8301 - }, - { - "l": "3.33", - "x": 4.0957, - "y": 26.8861 - }, - { - "l": "3.33", - "x": 4.179, - "y": 26.9373 - }, - { - "l": "3.33", - "x": 4.2623, - "y": 26.9953 - }, - { - "l": "3.33", - "x": 4.3457, - "y": 27.052 - }, - { - "l": "3.33", - "x": 4.429, - "y": 27.1045 - }, - { - "l": "3.33", - "x": 4.5123, - "y": 27.1641 - }, - { - "l": "3.33", - "x": 4.5957, - "y": 27.2232 - }, - { - "l": "3.33", - "x": 4.679, - "y": 27.2786 - }, - { - "l": "3.33", - "x": 4.7623, - "y": 27.3423 - }, - { - "l": "3.33", - "x": 4.8457, - "y": 27.406 - }, - { - "l": "3.33", - "x": 4.929, - "y": 27.466 - }, - { - "l": "3.33", - "x": 5.0123, - "y": 27.5354 - }, - { - "l": "3.33", - "x": 5.0957, - "y": 27.605 - }, - { - "l": "3.33", - "x": 5.179, - "y": 27.6706 - }, - { - "l": "3.33", - "x": 5.2623, - "y": 27.7465 - }, - { - "l": "3.33", - "x": 5.3457, - "y": 27.8229 - }, - { - "l": "3.33", - "x": 5.429, - "y": 27.895 - }, - { - "l": "3.33", - "x": 5.5123, - "y": 27.9785 - }, - { - "l": "3.33", - "x": 5.5957, - "y": 28.0624 - }, - { - "l": "3.33", - "x": 5.679, - "y": 28.1416 - }, - { - "l": "3.33", - "x": 5.7623, - "y": 28.2332 - }, - { - "l": "3.33", - "x": 5.8457, - "y": 28.325 - }, - { - "l": "3.33", - "x": 5.929, - "y": 28.4114 - }, - { - "l": "3.33", - "x": 6.0123, - "y": 28.511 - }, - { - "l": "3.33", - "x": 6.0957, - "y": 28.6106 - }, - { - "l": "3.33", - "x": 6.179, - "y": 28.7041 - }, - { - "l": "3.33", - "x": 6.2623, - "y": 28.8117 - }, - { - "l": "3.33", - "x": 6.3457, - "y": 28.9189 - }, - { - "l": "3.33", - "x": 6.429, - "y": 29.0195 - }, - { - "l": "3.33", - "x": 6.5123, - "y": 29.1349 - }, - { - "l": "3.33", - "x": 6.5957, - "y": 29.2499 - }, - { - "l": "3.33", - "x": 6.679, - "y": 29.3574 - }, - { - "l": "3.33", - "x": 6.7623, - "y": 29.4805 - }, - { - "l": "3.33", - "x": 6.8457, - "y": 29.6028 - }, - { - "l": "3.33", - "x": 6.929, - "y": 29.7169 - }, - { - "l": "3.33", - "x": 7.0123, - "y": 29.8473 - }, - { - "l": "3.33", - "x": 7.0957, - "y": 29.9767 - }, - { - "l": "3.33", - "x": 7.179, - "y": 30.097 - }, - { - "l": "3.33", - "x": 7.2623, - "y": 30.2342 - }, - { - "l": "3.33", - "x": 7.3457, - "y": 30.3699 - }, - { - "l": "3.33", - "x": 7.429, - "y": 30.4959 - }, - { - "l": "3.33", - "x": 7.5123, - "y": 30.6391 - }, - { - "l": "3.33", - "x": 7.5957, - "y": 30.7804 - }, - { - "l": "3.33", - "x": 7.679, - "y": 30.9114 - }, - { - "l": "3.33", - "x": 7.7623, - "y": 31.0601 - }, - { - "l": "3.33", - "x": 7.8457, - "y": 31.2065 - }, - { - "l": "3.33", - "x": 7.929, - "y": 31.342 - }, - { - "l": "3.33", - "x": 8.0123, - "y": 31.4956 - }, - { - "l": "3.33", - "x": 8.0957, - "y": 31.6466 - }, - { - "l": "3.33", - "x": 8.179, - "y": 31.7862 - }, - { - "l": "3.33", - "x": 8.2623, - "y": 31.9441 - }, - { - "l": "3.33", - "x": 8.3457, - "y": 32.0992 - }, - { - "l": "3.33", - "x": 8.429, - "y": 32.2423 - }, - { - "l": "3.33", - "x": 8.5123, - "y": 32.4041 - }, - { - "l": "3.33", - "x": 8.5957, - "y": 32.5628 - }, - { - "l": "3.33", - "x": 8.679, - "y": 32.709 - }, - { - "l": "3.33", - "x": 8.7623, - "y": 32.8741 - }, - { - "l": "3.33", - "x": 8.8457, - "y": 33.0359 - }, - { - "l": "3.33", - "x": 8.929, - "y": 33.1848 - }, - { - "l": "3.33", - "x": 9.0123, - "y": 33.3529 - }, - { - "l": "3.33", - "x": 9.0957, - "y": 33.5173 - }, - { - "l": "3.33", - "x": 9.179, - "y": 33.6686 - }, - { - "l": "3.33", - "x": 9.2623, - "y": 33.839 - }, - { - "l": "3.33", - "x": 9.3457, - "y": 34.0057 - }, - { - "l": "3.33", - "x": 9.429, - "y": 34.1589 - }, - { - "l": "3.33", - "x": 9.5123, - "y": 34.3315 - }, - { - "l": "3.33", - "x": 9.5957, - "y": 34.5001 - }, - { - "l": "3.33", - "x": 9.679, - "y": 34.655 - }, - { - "l": "3.33", - "x": 9.7623, - "y": 34.8294 - }, - { - "l": "3.33", - "x": 9.8457, - "y": 34.9998 - }, - { - "l": "3.33", - "x": 9.929, - "y": 35.1562 - }, - { - "l": "3.33", - "x": 10.0123, - "y": 35.3322 - }, - { - "l": "3.33", - "x": 10.0957, - "y": 35.5042 - }, - { - "l": "3.33", - "x": 10.179, - "y": 35.662 - }, - { - "l": "3.33", - "x": 10.2623, - "y": 35.8396 - }, - { - "l": "3.33", - "x": 10.3457, - "y": 36.013 - }, - { - "l": "3.33", - "x": 10.429, - "y": 36.1721 - }, - { - "l": "3.33", - "x": 10.5123, - "y": 36.3511 - }, - { - "l": "3.33", - "x": 10.5957, - "y": 36.5257 - }, - { - "l": "3.33", - "x": 10.679, - "y": 36.6859 - }, - { - "l": "3.33", - "x": 10.7623, - "y": 36.8661 - }, - { - "l": "3.33", - "x": 10.8457, - "y": 37.0419 - }, - { - "l": "3.33", - "x": 10.929, - "y": 37.2031 - }, - { - "l": "3.33", - "x": 11.0123, - "y": 37.3843 - }, - { - "l": "3.33", - "x": 11.0957, - "y": 37.561 - }, - { - "l": "3.33", - "x": 11.179, - "y": 37.7229 - }, - { - "l": "3.33", - "x": 11.2623, - "y": 37.9049 - }, - { - "l": "3.33", - "x": 11.3457, - "y": 38.0823 - }, - { - "l": "3.33", - "x": 11.429, - "y": 38.2449 - }, - { - "l": "3.33", - "x": 11.5123, - "y": 38.4275 - }, - { - "l": "3.33", - "x": 11.5957, - "y": 38.6055 - }, - { - "l": "3.33", - "x": 11.679, - "y": 38.7684 - }, - { - "l": "3.33", - "x": 11.7623, - "y": 38.9515 - }, - { - "l": "3.33", - "x": 11.8457, - "y": 39.1297 - }, - { - "l": "3.33", - "x": 11.929, - "y": 39.2929 - }, - { - "l": "3.33", - "x": 12.0123, - "y": 39.4761 - }, - { - "l": "3.33", - "x": 12.0957, - "y": 39.6546 - }, - { - "l": "3.33", - "x": 12.179, - "y": 39.8178 - }, - { - "l": "3.33", - "x": 12.2623, - "y": 40.001 - }, - { - "l": "3.33", - "x": 12.3457, - "y": 40.1794 - }, - { - "l": "3.33", - "x": 12.429, - "y": 40.3426 - }, - { - "l": "3.33", - "x": 12.5123, - "y": 40.5257 - }, - { - "l": "3.33", - "x": 12.5957, - "y": 40.7039 - }, - { - "l": "3.33", - "x": 12.679, - "y": 40.8669 - }, - { - "l": "3.33", - "x": 12.7623, - "y": 41.0498 - }, - { - "l": "3.33", - "x": 12.8457, - "y": 41.2277 - }, - { - "l": "3.33", - "x": 12.929, - "y": 41.3904 - }, - { - "l": "3.33", - "x": 13.0123, - "y": 41.5729 - }, - { - "l": "3.33", - "x": 13.0957, - "y": 41.7504 - }, - { - "l": "3.33", - "x": 13.179, - "y": 41.9126 - }, - { - "l": "3.33", - "x": 13.2623, - "y": 42.0946 - }, - { - "l": "3.33", - "x": 13.3457, - "y": 42.2715 - }, - { - "l": "3.33", - "x": 13.429, - "y": 42.4333 - }, - { - "l": "3.33", - "x": 13.5123, - "y": 42.6146 - }, - { - "l": "3.33", - "x": 13.5957, - "y": 42.7908 - }, - { - "l": "3.33", - "x": 13.679, - "y": 42.9518 - }, - { - "l": "3.33", - "x": 13.7623, - "y": 43.1323 - }, - { - "l": "3.33", - "x": 13.8457, - "y": 43.3077 - }, - { - "l": "3.33", - "x": 13.929, - "y": 43.4679 - }, - { - "l": "3.33", - "x": 14.0123, - "y": 43.6474 - }, - { - "l": "3.33", - "x": 14.0957, - "y": 43.8218 - }, - { - "l": "3.33", - "x": 14.179, - "y": 43.9811 - }, - { - "l": "3.33", - "x": 14.2623, - "y": 44.1595 - }, - { - "l": "3.33", - "x": 14.3457, - "y": 44.3328 - }, - { - "l": "3.33", - "x": 14.429, - "y": 44.4911 - }, - { - "l": "3.33", - "x": 14.5123, - "y": 44.6684 - }, - { - "l": "3.33", - "x": 14.5957, - "y": 44.8406 - }, - { - "l": "3.33", - "x": 14.679, - "y": 44.9977 - }, - { - "l": "3.33", - "x": 14.7623, - "y": 45.1737 - }, - { - "l": "3.33", - "x": 14.8457, - "y": 45.3446 - }, - { - "l": "3.33", - "x": 14.929, - "y": 45.5006 - }, - { - "l": "3.33", - "x": 15.0123, - "y": 45.6753 - }, - { - "l": "3.33", - "x": 15.0957, - "y": 45.8449 - }, - { - "l": "3.33", - "x": 15.179, - "y": 45.9996 - }, - { - "l": "3.33", - "x": 15.2623, - "y": 46.1729 - }, - { - "l": "3.33", - "x": 15.3457, - "y": 46.3412 - }, - { - "l": "3.33", - "x": 15.429, - "y": 46.4948 - }, - { - "l": "3.33", - "x": 15.5123, - "y": 46.6668 - }, - { - "l": "3.33", - "x": 15.5957, - "y": 46.8334 - }, - { - "l": "3.33", - "x": 15.679, - "y": 46.9857 - }, - { - "l": "3.33", - "x": 15.7623, - "y": 47.1561 - }, - { - "l": "3.33", - "x": 15.8457, - "y": 47.3216 - }, - { - "l": "3.33", - "x": 15.929, - "y": 47.4726 - }, - { - "l": "3.33", - "x": 16.0123, - "y": 47.6416 - }, - { - "l": "3.33", - "x": 16.0957, - "y": 47.8056 - }, - { - "l": "3.33", - "x": 16.179, - "y": 47.9553 - }, - { - "l": "3.33", - "x": 16.2623, - "y": 48.1229 - }, - { - "l": "3.33", - "x": 16.3457, - "y": 48.2854 - }, - { - "l": "3.33", - "x": 16.429, - "y": 48.4338 - }, - { - "l": "3.33", - "x": 16.5123, - "y": 48.6 - }, - { - "l": "3.33", - "x": 16.5957, - "y": 48.7611 - }, - { - "l": "3.33", - "x": 16.679, - "y": 48.9081 - }, - { - "l": "3.33", - "x": 16.7623, - "y": 49.0727 - }, - { - "l": "3.33", - "x": 16.8457, - "y": 49.2324 - }, - { - "l": "3.33", - "x": 16.929, - "y": 49.3782 - }, - { - "l": "3.33", - "x": 17.0123, - "y": 49.5413 - }, - { - "l": "3.33", - "x": 17.0957, - "y": 49.6997 - }, - { - "l": "3.33", - "x": 17.179, - "y": 49.8441 - }, - { - "l": "3.33", - "x": 17.2623, - "y": 50.0058 - }, - { - "l": "3.33", - "x": 17.3457, - "y": 50.1628 - }, - { - "l": "3.33", - "x": 17.429, - "y": 50.306 - }, - { - "l": "3.33", - "x": 17.5123, - "y": 50.4663 - }, - { - "l": "3.33", - "x": 17.5957, - "y": 50.6219 - }, - { - "l": "3.33", - "x": 17.679, - "y": 50.7638 - }, - { - "l": "3.33", - "x": 17.7623, - "y": 50.9229 - }, - { - "l": "3.33", - "x": 17.8457, - "y": 51.077 - }, - { - "l": "3.33", - "x": 17.929, - "y": 51.2177 - }, - { - "l": "3.33", - "x": 18.0123, - "y": 51.3752 - }, - { - "l": "3.33", - "x": 18.0957, - "y": 51.5283 - }, - { - "l": "3.33", - "x": 18.179, - "y": 51.6678 - }, - { - "l": "3.33", - "x": 18.2623, - "y": 51.8238 - }, - { - "l": "3.33", - "x": 18.3457, - "y": 51.9754 - }, - { - "l": "3.33", - "x": 18.429, - "y": 52.1138 - }, - { - "l": "3.33", - "x": 18.5123, - "y": 52.2685 - }, - { - "l": "3.33", - "x": 18.5957, - "y": 52.4189 - }, - { - "l": "3.33", - "x": 18.679, - "y": 52.5563 - }, - { - "l": "3.33", - "x": 18.7623, - "y": 52.71 - }, - { - "l": "3.33", - "x": 18.8457, - "y": 52.71 - } - ] - }, - { - "sds": 3.67, - "centile": 99.98787247657145, - "data": [ - { - "l": "3.67", - "x": 0.0, - "y": 18.6223 - }, - { - "l": "3.67", - "x": 0.0192, - "y": 18.9589 - }, - { - "l": "3.67", - "x": 0.0383, - "y": 19.2945 - }, - { - "l": "3.67", - "x": 0.0575, - "y": 19.6291 - }, - { - "l": "3.67", - "x": 0.0767, - "y": 19.9627 - }, - { - "l": "3.67", - "x": 0.0958, - "y": 20.2472 - }, - { - "l": "3.67", - "x": 0.115, - "y": 20.5075 - }, - { - "l": "3.67", - "x": 0.1342, - "y": 20.7569 - }, - { - "l": "3.67", - "x": 0.1533, - "y": 20.9995 - }, - { - "l": "3.67", - "x": 0.1725, - "y": 21.2423 - }, - { - "l": "3.67", - "x": 0.1916, - "y": 21.5028 - }, - { - "l": "3.67", - "x": 0.2108, - "y": 21.7611 - }, - { - "l": "3.67", - "x": 0.23, - "y": 22.0153 - }, - { - "l": "3.67", - "x": 0.2491, - "y": 22.2633 - }, - { - "l": "3.67", - "x": 0.2683, - "y": 22.5004 - }, - { - "l": "3.67", - "x": 0.2875, - "y": 22.7281 - }, - { - "l": "3.67", - "x": 0.3066, - "y": 22.9453 - }, - { - "l": "3.67", - "x": 0.3258, - "y": 23.151 - }, - { - "l": "3.67", - "x": 0.345, - "y": 23.3357 - }, - { - "l": "3.67", - "x": 0.3641, - "y": 23.5064 - }, - { - "l": "3.67", - "x": 0.3833, - "y": 23.6675 - }, - { - "l": "3.67", - "x": 0.4025, - "y": 23.8212 - }, - { - "l": "3.67", - "x": 0.4216, - "y": 23.9704 - }, - { - "l": "3.67", - "x": 0.4408, - "y": 24.1248 - }, - { - "l": "3.67", - "x": 0.46, - "y": 24.2744 - }, - { - "l": "3.67", - "x": 0.4791, - "y": 24.4182 - }, - { - "l": "3.67", - "x": 0.4983, - "y": 24.5552 - }, - { - "l": "3.67", - "x": 0.5175, - "y": 24.6823 - }, - { - "l": "3.67", - "x": 0.5366, - "y": 24.8013 - }, - { - "l": "3.67", - "x": 0.5558, - "y": 24.9125 - }, - { - "l": "3.67", - "x": 0.5749, - "y": 25.0157 - }, - { - "l": "3.67", - "x": 0.5941, - "y": 25.1078 - }, - { - "l": "3.67", - "x": 0.6133, - "y": 25.1916 - }, - { - "l": "3.67", - "x": 0.6324, - "y": 25.2694 - }, - { - "l": "3.67", - "x": 0.6516, - "y": 25.3426 - }, - { - "l": "3.67", - "x": 0.6708, - "y": 25.4127 - }, - { - "l": "3.67", - "x": 0.6899, - "y": 25.4856 - }, - { - "l": "3.67", - "x": 0.7091, - "y": 25.5559 - }, - { - "l": "3.67", - "x": 0.7283, - "y": 25.6231 - }, - { - "l": "3.67", - "x": 0.7474, - "y": 25.687 - }, - { - "l": "3.67", - "x": 0.7666, - "y": 25.7465 - }, - { - "l": "3.67", - "x": 0.7858, - "y": 25.802 - }, - { - "l": "3.67", - "x": 0.8049, - "y": 25.8537 - }, - { - "l": "3.67", - "x": 0.8241, - "y": 25.9017 - }, - { - "l": "3.67", - "x": 0.8433, - "y": 25.9444 - }, - { - "l": "3.67", - "x": 0.8624, - "y": 25.9831 - }, - { - "l": "3.67", - "x": 0.8816, - "y": 26.0188 - }, - { - "l": "3.67", - "x": 0.9008, - "y": 26.0521 - }, - { - "l": "3.67", - "x": 0.9199, - "y": 26.0837 - }, - { - "l": "3.67", - "x": 0.9391, - "y": 26.1164 - }, - { - "l": "3.67", - "x": 0.9582, - "y": 26.1477 - }, - { - "l": "3.67", - "x": 0.9774, - "y": 26.1774 - }, - { - "l": "3.67", - "x": 0.9966, - "y": 26.2054 - }, - { - "l": "3.67", - "x": 1.0157, - "y": 26.231 - }, - { - "l": "3.67", - "x": 1.0349, - "y": 26.2546 - }, - { - "l": "3.67", - "x": 1.0541, - "y": 26.2763 - }, - { - "l": "3.67", - "x": 1.0732, - "y": 26.2964 - }, - { - "l": "3.67", - "x": 1.0924, - "y": 26.3142 - }, - { - "l": "3.67", - "x": 1.1116, - "y": 26.3302 - }, - { - "l": "3.67", - "x": 1.1307, - "y": 26.345 - }, - { - "l": "3.67", - "x": 1.1499, - "y": 26.3589 - }, - { - "l": "3.67", - "x": 1.1691, - "y": 26.3722 - }, - { - "l": "3.67", - "x": 1.1882, - "y": 26.3862 - }, - { - "l": "3.67", - "x": 1.2074, - "y": 26.3998 - }, - { - "l": "3.67", - "x": 1.2266, - "y": 26.4131 - }, - { - "l": "3.67", - "x": 1.2457, - "y": 26.4259 - }, - { - "l": "3.67", - "x": 1.2649, - "y": 26.4382 - }, - { - "l": "3.67", - "x": 1.2841, - "y": 26.45 - }, - { - "l": "3.67", - "x": 1.3032, - "y": 26.4614 - }, - { - "l": "3.67", - "x": 1.3224, - "y": 26.4722 - }, - { - "l": "3.67", - "x": 1.3415, - "y": 26.4822 - }, - { - "l": "3.67", - "x": 1.3607, - "y": 26.4915 - }, - { - "l": "3.67", - "x": 1.3799, - "y": 26.5005 - }, - { - "l": "3.67", - "x": 1.399, - "y": 26.5093 - }, - { - "l": "3.67", - "x": 1.4182, - "y": 26.518 - }, - { - "l": "3.67", - "x": 1.4374, - "y": 26.5275 - }, - { - "l": "3.67", - "x": 1.4565, - "y": 26.537 - }, - { - "l": "3.67", - "x": 1.4757, - "y": 26.5466 - }, - { - "l": "3.67", - "x": 1.4949, - "y": 26.5561 - }, - { - "l": "3.67", - "x": 1.514, - "y": 26.5656 - }, - { - "l": "3.67", - "x": 1.5332, - "y": 26.575 - }, - { - "l": "3.67", - "x": 1.5524, - "y": 26.5842 - }, - { - "l": "3.67", - "x": 1.5715, - "y": 26.5933 - }, - { - "l": "3.67", - "x": 1.5907, - "y": 26.6018 - }, - { - "l": "3.67", - "x": 1.6099, - "y": 26.6099 - }, - { - "l": "3.67", - "x": 1.629, - "y": 26.6179 - }, - { - "l": "3.67", - "x": 1.6482, - "y": 26.626 - }, - { - "l": "3.67", - "x": 1.6674, - "y": 26.6342 - }, - { - "l": "3.67", - "x": 1.6865, - "y": 26.643 - }, - { - "l": "3.67", - "x": 1.7057, - "y": 26.6521 - }, - { - "l": "3.67", - "x": 1.7248, - "y": 26.6614 - }, - { - "l": "3.67", - "x": 1.744, - "y": 26.6708 - }, - { - "l": "3.67", - "x": 1.7632, - "y": 26.6802 - }, - { - "l": "3.67", - "x": 1.7823, - "y": 26.6897 - }, - { - "l": "3.67", - "x": 1.8015, - "y": 26.6991 - }, - { - "l": "3.67", - "x": 1.8207, - "y": 26.7085 - }, - { - "l": "3.67", - "x": 1.8398, - "y": 26.7174 - }, - { - "l": "3.67", - "x": 1.859, - "y": 26.7261 - }, - { - "l": "3.67", - "x": 1.8782, - "y": 26.7347 - }, - { - "l": "3.67", - "x": 1.8973, - "y": 26.7435 - }, - { - "l": "3.67", - "x": 1.9165, - "y": 26.7525 - }, - { - "l": "3.67", - "x": 1.9357, - "y": 26.7623 - }, - { - "l": "3.67", - "x": 1.9548, - "y": 26.7725 - }, - { - "l": "3.67", - "x": 1.974, - "y": 26.783 - }, - { - "l": "3.67", - "x": 1.9932, - "y": 26.7937 - }, - { - "l": "3.67", - "x": 2.0123, - "y": 26.8046 - }, - { - "l": "3.67", - "x": 2.0957, - "y": 26.852 - }, - { - "l": "3.67", - "x": 2.179, - "y": 26.8981 - }, - { - "l": "3.67", - "x": 2.2623, - "y": 26.9529 - }, - { - "l": "3.67", - "x": 2.3457, - "y": 27.0093 - }, - { - "l": "3.67", - "x": 2.429, - "y": 27.0637 - }, - { - "l": "3.67", - "x": 2.5123, - "y": 27.1277 - }, - { - "l": "3.67", - "x": 2.5957, - "y": 27.1928 - }, - { - "l": "3.67", - "x": 2.679, - "y": 27.2547 - }, - { - "l": "3.67", - "x": 2.7623, - "y": 27.3264 - }, - { - "l": "3.67", - "x": 2.8457, - "y": 27.3977 - }, - { - "l": "3.67", - "x": 2.929, - "y": 27.4642 - }, - { - "l": "3.67", - "x": 3.0123, - "y": 27.5403 - }, - { - "l": "3.67", - "x": 3.0957, - "y": 27.6145 - }, - { - "l": "3.67", - "x": 3.179, - "y": 27.6826 - }, - { - "l": "3.67", - "x": 3.2623, - "y": 27.7589 - }, - { - "l": "3.67", - "x": 3.3457, - "y": 27.8327 - }, - { - "l": "3.67", - "x": 3.429, - "y": 27.8997 - }, - { - "l": "3.67", - "x": 3.5123, - "y": 27.9739 - }, - { - "l": "3.67", - "x": 3.5957, - "y": 28.0453 - }, - { - "l": "3.67", - "x": 3.679, - "y": 28.1099 - }, - { - "l": "3.67", - "x": 3.7623, - "y": 28.1814 - }, - { - "l": "3.67", - "x": 3.8457, - "y": 28.2506 - }, - { - "l": "3.67", - "x": 3.929, - "y": 28.3135 - }, - { - "l": "3.67", - "x": 4.0123, - "y": 28.3838 - }, - { - "l": "3.67", - "x": 4.0957, - "y": 28.452 - }, - { - "l": "3.67", - "x": 4.179, - "y": 28.5143 - }, - { - "l": "3.67", - "x": 4.2623, - "y": 28.5849 - }, - { - "l": "3.67", - "x": 4.3457, - "y": 28.6538 - }, - { - "l": "3.67", - "x": 4.429, - "y": 28.7174 - }, - { - "l": "3.67", - "x": 4.5123, - "y": 28.7896 - }, - { - "l": "3.67", - "x": 4.5957, - "y": 28.861 - }, - { - "l": "3.67", - "x": 4.679, - "y": 28.9277 - }, - { - "l": "3.67", - "x": 4.7623, - "y": 29.0042 - }, - { - "l": "3.67", - "x": 4.8457, - "y": 29.0805 - }, - { - "l": "3.67", - "x": 4.929, - "y": 29.1521 - }, - { - "l": "3.67", - "x": 5.0123, - "y": 29.2346 - }, - { - "l": "3.67", - "x": 5.0957, - "y": 29.3172 - }, - { - "l": "3.67", - "x": 5.179, - "y": 29.3948 - }, - { - "l": "3.67", - "x": 5.2623, - "y": 29.4842 - }, - { - "l": "3.67", - "x": 5.3457, - "y": 29.5739 - }, - { - "l": "3.67", - "x": 5.429, - "y": 29.6583 - }, - { - "l": "3.67", - "x": 5.5123, - "y": 29.7559 - }, - { - "l": "3.67", - "x": 5.5957, - "y": 29.8535 - }, - { - "l": "3.67", - "x": 5.679, - "y": 29.9453 - }, - { - "l": "3.67", - "x": 5.7623, - "y": 30.0513 - }, - { - "l": "3.67", - "x": 5.8457, - "y": 30.1572 - }, - { - "l": "3.67", - "x": 5.929, - "y": 30.2567 - }, - { - "l": "3.67", - "x": 6.0123, - "y": 30.371 - }, - { - "l": "3.67", - "x": 6.0957, - "y": 30.485 - }, - { - "l": "3.67", - "x": 6.179, - "y": 30.5919 - }, - { - "l": "3.67", - "x": 6.2623, - "y": 30.7145 - }, - { - "l": "3.67", - "x": 6.3457, - "y": 30.8365 - }, - { - "l": "3.67", - "x": 6.429, - "y": 30.9508 - }, - { - "l": "3.67", - "x": 6.5123, - "y": 31.0815 - }, - { - "l": "3.67", - "x": 6.5957, - "y": 31.2116 - }, - { - "l": "3.67", - "x": 6.679, - "y": 31.3329 - }, - { - "l": "3.67", - "x": 6.7623, - "y": 31.4717 - }, - { - "l": "3.67", - "x": 6.8457, - "y": 31.6093 - }, - { - "l": "3.67", - "x": 6.929, - "y": 31.7375 - }, - { - "l": "3.67", - "x": 7.0123, - "y": 31.8838 - }, - { - "l": "3.67", - "x": 7.0957, - "y": 32.0285 - }, - { - "l": "3.67", - "x": 7.179, - "y": 32.1631 - }, - { - "l": "3.67", - "x": 7.2623, - "y": 32.3163 - }, - { - "l": "3.67", - "x": 7.3457, - "y": 32.4676 - }, - { - "l": "3.67", - "x": 7.429, - "y": 32.6078 - }, - { - "l": "3.67", - "x": 7.5123, - "y": 32.7672 - }, - { - "l": "3.67", - "x": 7.5957, - "y": 32.9241 - }, - { - "l": "3.67", - "x": 7.679, - "y": 33.0694 - }, - { - "l": "3.67", - "x": 7.7623, - "y": 33.2342 - }, - { - "l": "3.67", - "x": 7.8457, - "y": 33.3962 - }, - { - "l": "3.67", - "x": 7.929, - "y": 33.546 - }, - { - "l": "3.67", - "x": 8.0123, - "y": 33.7157 - }, - { - "l": "3.67", - "x": 8.0957, - "y": 33.8823 - }, - { - "l": "3.67", - "x": 8.179, - "y": 34.0362 - }, - { - "l": "3.67", - "x": 8.2623, - "y": 34.2101 - }, - { - "l": "3.67", - "x": 8.3457, - "y": 34.3807 - }, - { - "l": "3.67", - "x": 8.429, - "y": 34.5379 - }, - { - "l": "3.67", - "x": 8.5123, - "y": 34.7157 - }, - { - "l": "3.67", - "x": 8.5957, - "y": 34.8897 - }, - { - "l": "3.67", - "x": 8.679, - "y": 35.05 - }, - { - "l": "3.67", - "x": 8.7623, - "y": 35.2308 - }, - { - "l": "3.67", - "x": 8.8457, - "y": 35.4079 - }, - { - "l": "3.67", - "x": 8.929, - "y": 35.5707 - }, - { - "l": "3.67", - "x": 9.0123, - "y": 35.7543 - }, - { - "l": "3.67", - "x": 9.0957, - "y": 35.9338 - }, - { - "l": "3.67", - "x": 9.179, - "y": 36.0988 - }, - { - "l": "3.67", - "x": 9.2623, - "y": 36.2846 - }, - { - "l": "3.67", - "x": 9.3457, - "y": 36.4662 - }, - { - "l": "3.67", - "x": 9.429, - "y": 36.6329 - }, - { - "l": "3.67", - "x": 9.5123, - "y": 36.8206 - }, - { - "l": "3.67", - "x": 9.5957, - "y": 37.0039 - }, - { - "l": "3.67", - "x": 9.679, - "y": 37.1721 - }, - { - "l": "3.67", - "x": 9.7623, - "y": 37.3615 - }, - { - "l": "3.67", - "x": 9.8457, - "y": 37.5463 - }, - { - "l": "3.67", - "x": 9.929, - "y": 37.7159 - }, - { - "l": "3.67", - "x": 10.0123, - "y": 37.9068 - }, - { - "l": "3.67", - "x": 10.0957, - "y": 38.093 - }, - { - "l": "3.67", - "x": 10.179, - "y": 38.2639 - }, - { - "l": "3.67", - "x": 10.2623, - "y": 38.4561 - }, - { - "l": "3.67", - "x": 10.3457, - "y": 38.6437 - }, - { - "l": "3.67", - "x": 10.429, - "y": 38.8156 - }, - { - "l": "3.67", - "x": 10.5123, - "y": 39.0091 - }, - { - "l": "3.67", - "x": 10.5957, - "y": 39.1978 - }, - { - "l": "3.67", - "x": 10.679, - "y": 39.3708 - }, - { - "l": "3.67", - "x": 10.7623, - "y": 39.5652 - }, - { - "l": "3.67", - "x": 10.8457, - "y": 39.7549 - }, - { - "l": "3.67", - "x": 10.929, - "y": 39.9287 - }, - { - "l": "3.67", - "x": 11.0123, - "y": 40.1241 - }, - { - "l": "3.67", - "x": 11.0957, - "y": 40.3145 - }, - { - "l": "3.67", - "x": 11.179, - "y": 40.489 - }, - { - "l": "3.67", - "x": 11.2623, - "y": 40.6851 - }, - { - "l": "3.67", - "x": 11.3457, - "y": 40.8762 - }, - { - "l": "3.67", - "x": 11.429, - "y": 41.0511 - }, - { - "l": "3.67", - "x": 11.5123, - "y": 41.2477 - }, - { - "l": "3.67", - "x": 11.5957, - "y": 41.4392 - }, - { - "l": "3.67", - "x": 11.679, - "y": 41.6145 - }, - { - "l": "3.67", - "x": 11.7623, - "y": 41.8114 - }, - { - "l": "3.67", - "x": 11.8457, - "y": 42.003 - }, - { - "l": "3.67", - "x": 11.929, - "y": 42.1785 - }, - { - "l": "3.67", - "x": 12.0123, - "y": 42.3754 - }, - { - "l": "3.67", - "x": 12.0957, - "y": 42.5671 - }, - { - "l": "3.67", - "x": 12.179, - "y": 42.7425 - }, - { - "l": "3.67", - "x": 12.2623, - "y": 42.9393 - }, - { - "l": "3.67", - "x": 12.3457, - "y": 43.1308 - }, - { - "l": "3.67", - "x": 12.429, - "y": 43.306 - }, - { - "l": "3.67", - "x": 12.5123, - "y": 43.5026 - }, - { - "l": "3.67", - "x": 12.5957, - "y": 43.6939 - }, - { - "l": "3.67", - "x": 12.679, - "y": 43.8688 - }, - { - "l": "3.67", - "x": 12.7623, - "y": 44.065 - }, - { - "l": "3.67", - "x": 12.8457, - "y": 44.2559 - }, - { - "l": "3.67", - "x": 12.929, - "y": 44.4304 - }, - { - "l": "3.67", - "x": 13.0123, - "y": 44.6261 - }, - { - "l": "3.67", - "x": 13.0957, - "y": 44.8165 - }, - { - "l": "3.67", - "x": 13.179, - "y": 44.9904 - }, - { - "l": "3.67", - "x": 13.2623, - "y": 45.1855 - }, - { - "l": "3.67", - "x": 13.3457, - "y": 45.3751 - }, - { - "l": "3.67", - "x": 13.429, - "y": 45.5485 - }, - { - "l": "3.67", - "x": 13.5123, - "y": 45.7427 - }, - { - "l": "3.67", - "x": 13.5957, - "y": 45.9316 - }, - { - "l": "3.67", - "x": 13.679, - "y": 46.1041 - }, - { - "l": "3.67", - "x": 13.7623, - "y": 46.2974 - }, - { - "l": "3.67", - "x": 13.8457, - "y": 46.4851 - }, - { - "l": "3.67", - "x": 13.929, - "y": 46.6567 - }, - { - "l": "3.67", - "x": 14.0123, - "y": 46.8489 - }, - { - "l": "3.67", - "x": 14.0957, - "y": 47.0356 - }, - { - "l": "3.67", - "x": 14.179, - "y": 47.2061 - }, - { - "l": "3.67", - "x": 14.2623, - "y": 47.397 - }, - { - "l": "3.67", - "x": 14.3457, - "y": 47.5824 - }, - { - "l": "3.67", - "x": 14.429, - "y": 47.7518 - }, - { - "l": "3.67", - "x": 14.5123, - "y": 47.9413 - }, - { - "l": "3.67", - "x": 14.5957, - "y": 48.1255 - }, - { - "l": "3.67", - "x": 14.679, - "y": 48.2935 - }, - { - "l": "3.67", - "x": 14.7623, - "y": 48.4816 - }, - { - "l": "3.67", - "x": 14.8457, - "y": 48.6643 - }, - { - "l": "3.67", - "x": 14.929, - "y": 48.831 - }, - { - "l": "3.67", - "x": 15.0123, - "y": 49.0178 - }, - { - "l": "3.67", - "x": 15.0957, - "y": 49.1988 - }, - { - "l": "3.67", - "x": 15.179, - "y": 49.3642 - }, - { - "l": "3.67", - "x": 15.2623, - "y": 49.5492 - }, - { - "l": "3.67", - "x": 15.3457, - "y": 49.7289 - }, - { - "l": "3.67", - "x": 15.429, - "y": 49.8929 - }, - { - "l": "3.67", - "x": 15.5123, - "y": 50.0765 - }, - { - "l": "3.67", - "x": 15.5957, - "y": 50.2543 - }, - { - "l": "3.67", - "x": 15.679, - "y": 50.4167 - }, - { - "l": "3.67", - "x": 15.7623, - "y": 50.5986 - }, - { - "l": "3.67", - "x": 15.8457, - "y": 50.7751 - }, - { - "l": "3.67", - "x": 15.929, - "y": 50.936 - }, - { - "l": "3.67", - "x": 16.0123, - "y": 51.1162 - }, - { - "l": "3.67", - "x": 16.0957, - "y": 51.2911 - }, - { - "l": "3.67", - "x": 16.179, - "y": 51.4506 - }, - { - "l": "3.67", - "x": 16.2623, - "y": 51.6292 - }, - { - "l": "3.67", - "x": 16.3457, - "y": 51.8023 - }, - { - "l": "3.67", - "x": 16.429, - "y": 51.9604 - }, - { - "l": "3.67", - "x": 16.5123, - "y": 52.1373 - }, - { - "l": "3.67", - "x": 16.5957, - "y": 52.3088 - }, - { - "l": "3.67", - "x": 16.679, - "y": 52.4653 - }, - { - "l": "3.67", - "x": 16.7623, - "y": 52.6405 - }, - { - "l": "3.67", - "x": 16.8457, - "y": 52.8105 - }, - { - "l": "3.67", - "x": 16.929, - "y": 52.9655 - }, - { - "l": "3.67", - "x": 17.0123, - "y": 53.139 - }, - { - "l": "3.67", - "x": 17.0957, - "y": 53.3074 - }, - { - "l": "3.67", - "x": 17.179, - "y": 53.461 - }, - { - "l": "3.67", - "x": 17.2623, - "y": 53.6329 - }, - { - "l": "3.67", - "x": 17.3457, - "y": 53.7996 - }, - { - "l": "3.67", - "x": 17.429, - "y": 53.9518 - }, - { - "l": "3.67", - "x": 17.5123, - "y": 54.1221 - }, - { - "l": "3.67", - "x": 17.5957, - "y": 54.2873 - }, - { - "l": "3.67", - "x": 17.679, - "y": 54.438 - }, - { - "l": "3.67", - "x": 17.7623, - "y": 54.6069 - }, - { - "l": "3.67", - "x": 17.8457, - "y": 54.7705 - }, - { - "l": "3.67", - "x": 17.929, - "y": 54.9197 - }, - { - "l": "3.67", - "x": 18.0123, - "y": 55.0868 - }, - { - "l": "3.67", - "x": 18.0957, - "y": 55.2492 - }, - { - "l": "3.67", - "x": 18.179, - "y": 55.3971 - }, - { - "l": "3.67", - "x": 18.2623, - "y": 55.5625 - }, - { - "l": "3.67", - "x": 18.3457, - "y": 55.7232 - }, - { - "l": "3.67", - "x": 18.429, - "y": 55.8699 - }, - { - "l": "3.67", - "x": 18.5123, - "y": 56.0338 - }, - { - "l": "3.67", - "x": 18.5957, - "y": 56.1931 - }, - { - "l": "3.67", - "x": 18.679, - "y": 56.3387 - }, - { - "l": "3.67", - "x": 18.7623, - "y": 56.5015 - }, - { - "l": "3.67", - "x": 18.8457, - "y": 56.5015 - } - ] - }, - { - "sds": 4.0, - "centile": 99.9968328758167, - "data": [ - { - "l": "4.0", - "x": 0.0, - "y": 19.3848 - }, - { - "l": "4.0", - "x": 0.0192, - "y": 19.7361 - }, - { - "l": "4.0", - "x": 0.0383, - "y": 20.0863 - }, - { - "l": "4.0", - "x": 0.0575, - "y": 20.4354 - }, - { - "l": "4.0", - "x": 0.0767, - "y": 20.7835 - }, - { - "l": "4.0", - "x": 0.0958, - "y": 21.0806 - }, - { - "l": "4.0", - "x": 0.115, - "y": 21.3528 - }, - { - "l": "4.0", - "x": 0.1342, - "y": 21.6135 - }, - { - "l": "4.0", - "x": 0.1533, - "y": 21.8674 - }, - { - "l": "4.0", - "x": 0.1725, - "y": 22.1217 - }, - { - "l": "4.0", - "x": 0.1916, - "y": 22.3946 - }, - { - "l": "4.0", - "x": 0.2108, - "y": 22.6654 - }, - { - "l": "4.0", - "x": 0.23, - "y": 22.9319 - }, - { - "l": "4.0", - "x": 0.2491, - "y": 23.1922 - }, - { - "l": "4.0", - "x": 0.2683, - "y": 23.4413 - }, - { - "l": "4.0", - "x": 0.2875, - "y": 23.6805 - }, - { - "l": "4.0", - "x": 0.3066, - "y": 23.909 - }, - { - "l": "4.0", - "x": 0.3258, - "y": 24.1254 - }, - { - "l": "4.0", - "x": 0.345, - "y": 24.32 - }, - { - "l": "4.0", - "x": 0.3641, - "y": 24.4999 - }, - { - "l": "4.0", - "x": 0.3833, - "y": 24.6698 - }, - { - "l": "4.0", - "x": 0.4025, - "y": 24.832 - }, - { - "l": "4.0", - "x": 0.4216, - "y": 24.9897 - }, - { - "l": "4.0", - "x": 0.4408, - "y": 25.153 - }, - { - "l": "4.0", - "x": 0.46, - "y": 25.3113 - }, - { - "l": "4.0", - "x": 0.4791, - "y": 25.4636 - }, - { - "l": "4.0", - "x": 0.4983, - "y": 25.609 - }, - { - "l": "4.0", - "x": 0.5175, - "y": 25.744 - }, - { - "l": "4.0", - "x": 0.5366, - "y": 25.8707 - }, - { - "l": "4.0", - "x": 0.5558, - "y": 25.9891 - }, - { - "l": "4.0", - "x": 0.5749, - "y": 26.0993 - }, - { - "l": "4.0", - "x": 0.5941, - "y": 26.1977 - }, - { - "l": "4.0", - "x": 0.6133, - "y": 26.2873 - }, - { - "l": "4.0", - "x": 0.6324, - "y": 26.3707 - }, - { - "l": "4.0", - "x": 0.6516, - "y": 26.4493 - }, - { - "l": "4.0", - "x": 0.6708, - "y": 26.5248 - }, - { - "l": "4.0", - "x": 0.6899, - "y": 26.6034 - }, - { - "l": "4.0", - "x": 0.7091, - "y": 26.6792 - }, - { - "l": "4.0", - "x": 0.7283, - "y": 26.752 - }, - { - "l": "4.0", - "x": 0.7474, - "y": 26.8213 - }, - { - "l": "4.0", - "x": 0.7666, - "y": 26.886 - }, - { - "l": "4.0", - "x": 0.7858, - "y": 26.9465 - }, - { - "l": "4.0", - "x": 0.8049, - "y": 27.0031 - }, - { - "l": "4.0", - "x": 0.8241, - "y": 27.0557 - }, - { - "l": "4.0", - "x": 0.8433, - "y": 27.1027 - }, - { - "l": "4.0", - "x": 0.8624, - "y": 27.1454 - }, - { - "l": "4.0", - "x": 0.8816, - "y": 27.1849 - }, - { - "l": "4.0", - "x": 0.9008, - "y": 27.222 - }, - { - "l": "4.0", - "x": 0.9199, - "y": 27.2573 - }, - { - "l": "4.0", - "x": 0.9391, - "y": 27.2939 - }, - { - "l": "4.0", - "x": 0.9582, - "y": 27.3292 - }, - { - "l": "4.0", - "x": 0.9774, - "y": 27.3628 - }, - { - "l": "4.0", - "x": 0.9966, - "y": 27.3946 - }, - { - "l": "4.0", - "x": 1.0157, - "y": 27.4239 - }, - { - "l": "4.0", - "x": 1.0349, - "y": 27.4511 - }, - { - "l": "4.0", - "x": 1.0541, - "y": 27.4764 - }, - { - "l": "4.0", - "x": 1.0732, - "y": 27.4998 - }, - { - "l": "4.0", - "x": 1.0924, - "y": 27.5207 - }, - { - "l": "4.0", - "x": 1.1116, - "y": 27.5397 - }, - { - "l": "4.0", - "x": 1.1307, - "y": 27.5574 - }, - { - "l": "4.0", - "x": 1.1499, - "y": 27.5741 - }, - { - "l": "4.0", - "x": 1.1691, - "y": 27.5902 - }, - { - "l": "4.0", - "x": 1.1882, - "y": 27.6072 - }, - { - "l": "4.0", - "x": 1.2074, - "y": 27.624 - }, - { - "l": "4.0", - "x": 1.2266, - "y": 27.6403 - }, - { - "l": "4.0", - "x": 1.2457, - "y": 27.6563 - }, - { - "l": "4.0", - "x": 1.2649, - "y": 27.6717 - }, - { - "l": "4.0", - "x": 1.2841, - "y": 27.6865 - }, - { - "l": "4.0", - "x": 1.3032, - "y": 27.7008 - }, - { - "l": "4.0", - "x": 1.3224, - "y": 27.7146 - }, - { - "l": "4.0", - "x": 1.3415, - "y": 27.7273 - }, - { - "l": "4.0", - "x": 1.3607, - "y": 27.7393 - }, - { - "l": "4.0", - "x": 1.3799, - "y": 27.7508 - }, - { - "l": "4.0", - "x": 1.399, - "y": 27.7622 - }, - { - "l": "4.0", - "x": 1.4182, - "y": 27.7736 - }, - { - "l": "4.0", - "x": 1.4374, - "y": 27.7859 - }, - { - "l": "4.0", - "x": 1.4565, - "y": 27.7983 - }, - { - "l": "4.0", - "x": 1.4757, - "y": 27.8109 - }, - { - "l": "4.0", - "x": 1.4949, - "y": 27.8234 - }, - { - "l": "4.0", - "x": 1.514, - "y": 27.8358 - }, - { - "l": "4.0", - "x": 1.5332, - "y": 27.8481 - }, - { - "l": "4.0", - "x": 1.5524, - "y": 27.8602 - }, - { - "l": "4.0", - "x": 1.5715, - "y": 27.8721 - }, - { - "l": "4.0", - "x": 1.5907, - "y": 27.8834 - }, - { - "l": "4.0", - "x": 1.6099, - "y": 27.8941 - }, - { - "l": "4.0", - "x": 1.629, - "y": 27.9047 - }, - { - "l": "4.0", - "x": 1.6482, - "y": 27.9153 - }, - { - "l": "4.0", - "x": 1.6674, - "y": 27.9261 - }, - { - "l": "4.0", - "x": 1.6865, - "y": 27.9377 - }, - { - "l": "4.0", - "x": 1.7057, - "y": 27.9498 - }, - { - "l": "4.0", - "x": 1.7248, - "y": 27.962 - }, - { - "l": "4.0", - "x": 1.744, - "y": 27.9743 - }, - { - "l": "4.0", - "x": 1.7632, - "y": 27.9867 - }, - { - "l": "4.0", - "x": 1.7823, - "y": 27.9992 - }, - { - "l": "4.0", - "x": 1.8015, - "y": 28.0115 - }, - { - "l": "4.0", - "x": 1.8207, - "y": 28.0238 - }, - { - "l": "4.0", - "x": 1.8398, - "y": 28.0355 - }, - { - "l": "4.0", - "x": 1.859, - "y": 28.0468 - }, - { - "l": "4.0", - "x": 1.8782, - "y": 28.058 - }, - { - "l": "4.0", - "x": 1.8973, - "y": 28.0694 - }, - { - "l": "4.0", - "x": 1.9165, - "y": 28.0811 - }, - { - "l": "4.0", - "x": 1.9357, - "y": 28.0937 - }, - { - "l": "4.0", - "x": 1.9548, - "y": 28.107 - }, - { - "l": "4.0", - "x": 1.974, - "y": 28.1205 - }, - { - "l": "4.0", - "x": 1.9932, - "y": 28.1343 - }, - { - "l": "4.0", - "x": 2.0123, - "y": 28.1482 - }, - { - "l": "4.0", - "x": 2.0957, - "y": 28.2086 - }, - { - "l": "4.0", - "x": 2.179, - "y": 28.2668 - }, - { - "l": "4.0", - "x": 2.2623, - "y": 28.3353 - }, - { - "l": "4.0", - "x": 2.3457, - "y": 28.4054 - }, - { - "l": "4.0", - "x": 2.429, - "y": 28.4724 - }, - { - "l": "4.0", - "x": 2.5123, - "y": 28.5509 - }, - { - "l": "4.0", - "x": 2.5957, - "y": 28.6303 - }, - { - "l": "4.0", - "x": 2.679, - "y": 28.7055 - }, - { - "l": "4.0", - "x": 2.7623, - "y": 28.7922 - }, - { - "l": "4.0", - "x": 2.8457, - "y": 28.8784 - }, - { - "l": "4.0", - "x": 2.929, - "y": 28.9585 - }, - { - "l": "4.0", - "x": 3.0123, - "y": 29.0502 - }, - { - "l": "4.0", - "x": 3.0957, - "y": 29.1394 - }, - { - "l": "4.0", - "x": 3.179, - "y": 29.2213 - }, - { - "l": "4.0", - "x": 3.2623, - "y": 29.3131 - }, - { - "l": "4.0", - "x": 3.3457, - "y": 29.402 - }, - { - "l": "4.0", - "x": 3.429, - "y": 29.4826 - }, - { - "l": "4.0", - "x": 3.5123, - "y": 29.5722 - }, - { - "l": "4.0", - "x": 3.5957, - "y": 29.6584 - }, - { - "l": "4.0", - "x": 3.679, - "y": 29.7365 - }, - { - "l": "4.0", - "x": 3.7623, - "y": 29.823 - }, - { - "l": "4.0", - "x": 3.8457, - "y": 29.9067 - }, - { - "l": "4.0", - "x": 3.929, - "y": 29.9829 - }, - { - "l": "4.0", - "x": 4.0123, - "y": 30.0679 - }, - { - "l": "4.0", - "x": 4.0957, - "y": 30.1504 - }, - { - "l": "4.0", - "x": 4.179, - "y": 30.2258 - }, - { - "l": "4.0", - "x": 4.2623, - "y": 30.3111 - }, - { - "l": "4.0", - "x": 4.3457, - "y": 30.3943 - }, - { - "l": "4.0", - "x": 4.429, - "y": 30.4709 - }, - { - "l": "4.0", - "x": 4.5123, - "y": 30.5578 - }, - { - "l": "4.0", - "x": 4.5957, - "y": 30.6436 - }, - { - "l": "4.0", - "x": 4.679, - "y": 30.7234 - }, - { - "l": "4.0", - "x": 4.7623, - "y": 30.8148 - }, - { - "l": "4.0", - "x": 4.8457, - "y": 30.9056 - }, - { - "l": "4.0", - "x": 4.929, - "y": 30.9906 - }, - { - "l": "4.0", - "x": 5.0123, - "y": 31.0883 - }, - { - "l": "4.0", - "x": 5.0957, - "y": 31.1856 - }, - { - "l": "4.0", - "x": 5.179, - "y": 31.2769 - }, - { - "l": "4.0", - "x": 5.2623, - "y": 31.3819 - }, - { - "l": "4.0", - "x": 5.3457, - "y": 31.4868 - }, - { - "l": "4.0", - "x": 5.429, - "y": 31.5852 - }, - { - "l": "4.0", - "x": 5.5123, - "y": 31.6987 - }, - { - "l": "4.0", - "x": 5.5957, - "y": 31.8119 - }, - { - "l": "4.0", - "x": 5.679, - "y": 31.9181 - }, - { - "l": "4.0", - "x": 5.7623, - "y": 32.0403 - }, - { - "l": "4.0", - "x": 5.8457, - "y": 32.1621 - }, - { - "l": "4.0", - "x": 5.929, - "y": 32.2762 - }, - { - "l": "4.0", - "x": 6.0123, - "y": 32.407 - }, - { - "l": "4.0", - "x": 6.0957, - "y": 32.5372 - }, - { - "l": "4.0", - "x": 6.179, - "y": 32.6589 - }, - { - "l": "4.0", - "x": 6.2623, - "y": 32.7983 - }, - { - "l": "4.0", - "x": 6.3457, - "y": 32.9367 - }, - { - "l": "4.0", - "x": 6.429, - "y": 33.0661 - }, - { - "l": "4.0", - "x": 6.5123, - "y": 33.2138 - }, - { - "l": "4.0", - "x": 6.5957, - "y": 33.3605 - }, - { - "l": "4.0", - "x": 6.679, - "y": 33.4971 - }, - { - "l": "4.0", - "x": 6.7623, - "y": 33.653 - }, - { - "l": "4.0", - "x": 6.8457, - "y": 33.8073 - }, - { - "l": "4.0", - "x": 6.929, - "y": 33.9509 - }, - { - "l": "4.0", - "x": 7.0123, - "y": 34.1144 - }, - { - "l": "4.0", - "x": 7.0957, - "y": 34.276 - }, - { - "l": "4.0", - "x": 7.179, - "y": 34.426 - }, - { - "l": "4.0", - "x": 7.2623, - "y": 34.5965 - }, - { - "l": "4.0", - "x": 7.3457, - "y": 34.7646 - }, - { - "l": "4.0", - "x": 7.429, - "y": 34.9202 - }, - { - "l": "4.0", - "x": 7.5123, - "y": 35.0967 - }, - { - "l": "4.0", - "x": 7.5957, - "y": 35.2704 - }, - { - "l": "4.0", - "x": 7.679, - "y": 35.431 - }, - { - "l": "4.0", - "x": 7.7623, - "y": 35.6128 - }, - { - "l": "4.0", - "x": 7.8457, - "y": 35.7915 - }, - { - "l": "4.0", - "x": 7.929, - "y": 35.9565 - }, - { - "l": "4.0", - "x": 8.0123, - "y": 36.143 - }, - { - "l": "4.0", - "x": 8.0957, - "y": 36.3262 - }, - { - "l": "4.0", - "x": 8.179, - "y": 36.4949 - }, - { - "l": "4.0", - "x": 8.2623, - "y": 36.6856 - }, - { - "l": "4.0", - "x": 8.3457, - "y": 36.8724 - }, - { - "l": "4.0", - "x": 8.429, - "y": 37.0444 - }, - { - "l": "4.0", - "x": 8.5123, - "y": 37.2386 - }, - { - "l": "4.0", - "x": 8.5957, - "y": 37.4287 - }, - { - "l": "4.0", - "x": 8.679, - "y": 37.6034 - }, - { - "l": "4.0", - "x": 8.7623, - "y": 37.8004 - }, - { - "l": "4.0", - "x": 8.8457, - "y": 37.9931 - }, - { - "l": "4.0", - "x": 8.929, - "y": 38.1702 - }, - { - "l": "4.0", - "x": 9.0123, - "y": 38.3697 - }, - { - "l": "4.0", - "x": 9.0957, - "y": 38.5646 - }, - { - "l": "4.0", - "x": 9.179, - "y": 38.7435 - }, - { - "l": "4.0", - "x": 9.2623, - "y": 38.9449 - }, - { - "l": "4.0", - "x": 9.3457, - "y": 39.1415 - }, - { - "l": "4.0", - "x": 9.429, - "y": 39.3219 - }, - { - "l": "4.0", - "x": 9.5123, - "y": 39.5248 - }, - { - "l": "4.0", - "x": 9.5957, - "y": 39.7229 - }, - { - "l": "4.0", - "x": 9.679, - "y": 39.9045 - }, - { - "l": "4.0", - "x": 9.7623, - "y": 40.1088 - }, - { - "l": "4.0", - "x": 9.8457, - "y": 40.3081 - }, - { - "l": "4.0", - "x": 9.929, - "y": 40.4908 - }, - { - "l": "4.0", - "x": 10.0123, - "y": 40.6963 - }, - { - "l": "4.0", - "x": 10.0957, - "y": 40.8967 - }, - { - "l": "4.0", - "x": 10.179, - "y": 41.0805 - }, - { - "l": "4.0", - "x": 10.2623, - "y": 41.2871 - }, - { - "l": "4.0", - "x": 10.3457, - "y": 41.4886 - }, - { - "l": "4.0", - "x": 10.429, - "y": 41.6732 - }, - { - "l": "4.0", - "x": 10.5123, - "y": 41.8808 - }, - { - "l": "4.0", - "x": 10.5957, - "y": 42.0832 - }, - { - "l": "4.0", - "x": 10.679, - "y": 42.2687 - }, - { - "l": "4.0", - "x": 10.7623, - "y": 42.4772 - }, - { - "l": "4.0", - "x": 10.8457, - "y": 42.6804 - }, - { - "l": "4.0", - "x": 10.929, - "y": 42.8665 - }, - { - "l": "4.0", - "x": 11.0123, - "y": 43.0757 - }, - { - "l": "4.0", - "x": 11.0957, - "y": 43.2795 - }, - { - "l": "4.0", - "x": 11.179, - "y": 43.4661 - }, - { - "l": "4.0", - "x": 11.2623, - "y": 43.6758 - }, - { - "l": "4.0", - "x": 11.3457, - "y": 43.8801 - }, - { - "l": "4.0", - "x": 11.429, - "y": 44.0671 - }, - { - "l": "4.0", - "x": 11.5123, - "y": 44.2771 - }, - { - "l": "4.0", - "x": 11.5957, - "y": 44.4816 - }, - { - "l": "4.0", - "x": 11.679, - "y": 44.6688 - }, - { - "l": "4.0", - "x": 11.7623, - "y": 44.879 - }, - { - "l": "4.0", - "x": 11.8457, - "y": 45.0836 - }, - { - "l": "4.0", - "x": 11.929, - "y": 45.2707 - }, - { - "l": "4.0", - "x": 12.0123, - "y": 45.4808 - }, - { - "l": "4.0", - "x": 12.0957, - "y": 45.6853 - }, - { - "l": "4.0", - "x": 12.179, - "y": 45.8723 - }, - { - "l": "4.0", - "x": 12.2623, - "y": 46.0821 - }, - { - "l": "4.0", - "x": 12.3457, - "y": 46.2862 - }, - { - "l": "4.0", - "x": 12.429, - "y": 46.4729 - }, - { - "l": "4.0", - "x": 12.5123, - "y": 46.6823 - }, - { - "l": "4.0", - "x": 12.5957, - "y": 46.8861 - }, - { - "l": "4.0", - "x": 12.679, - "y": 47.0723 - }, - { - "l": "4.0", - "x": 12.7623, - "y": 47.2813 - }, - { - "l": "4.0", - "x": 12.8457, - "y": 47.4845 - }, - { - "l": "4.0", - "x": 12.929, - "y": 47.6702 - }, - { - "l": "4.0", - "x": 13.0123, - "y": 47.8785 - }, - { - "l": "4.0", - "x": 13.0957, - "y": 48.081 - }, - { - "l": "4.0", - "x": 13.179, - "y": 48.2661 - }, - { - "l": "4.0", - "x": 13.2623, - "y": 48.4736 - }, - { - "l": "4.0", - "x": 13.3457, - "y": 48.6753 - }, - { - "l": "4.0", - "x": 13.429, - "y": 48.8597 - }, - { - "l": "4.0", - "x": 13.5123, - "y": 49.0662 - }, - { - "l": "4.0", - "x": 13.5957, - "y": 49.2669 - }, - { - "l": "4.0", - "x": 13.679, - "y": 49.4503 - }, - { - "l": "4.0", - "x": 13.7623, - "y": 49.6558 - }, - { - "l": "4.0", - "x": 13.8457, - "y": 49.8553 - }, - { - "l": "4.0", - "x": 13.929, - "y": 50.0375 - }, - { - "l": "4.0", - "x": 14.0123, - "y": 50.2417 - }, - { - "l": "4.0", - "x": 14.0957, - "y": 50.4399 - }, - { - "l": "4.0", - "x": 14.179, - "y": 50.6209 - }, - { - "l": "4.0", - "x": 14.2623, - "y": 50.8236 - }, - { - "l": "4.0", - "x": 14.3457, - "y": 51.0205 - }, - { - "l": "4.0", - "x": 14.429, - "y": 51.2001 - }, - { - "l": "4.0", - "x": 14.5123, - "y": 51.4013 - }, - { - "l": "4.0", - "x": 14.5957, - "y": 51.5967 - }, - { - "l": "4.0", - "x": 14.679, - "y": 51.7749 - }, - { - "l": "4.0", - "x": 14.7623, - "y": 51.9744 - }, - { - "l": "4.0", - "x": 14.8457, - "y": 52.168 - }, - { - "l": "4.0", - "x": 14.929, - "y": 52.3448 - }, - { - "l": "4.0", - "x": 15.0123, - "y": 52.5427 - }, - { - "l": "4.0", - "x": 15.0957, - "y": 52.7345 - }, - { - "l": "4.0", - "x": 15.179, - "y": 52.9097 - }, - { - "l": "4.0", - "x": 15.2623, - "y": 53.1057 - }, - { - "l": "4.0", - "x": 15.3457, - "y": 53.2959 - }, - { - "l": "4.0", - "x": 15.429, - "y": 53.4697 - }, - { - "l": "4.0", - "x": 15.5123, - "y": 53.6639 - }, - { - "l": "4.0", - "x": 15.5957, - "y": 53.8521 - }, - { - "l": "4.0", - "x": 15.679, - "y": 54.024 - }, - { - "l": "4.0", - "x": 15.7623, - "y": 54.2164 - }, - { - "l": "4.0", - "x": 15.8457, - "y": 54.403 - }, - { - "l": "4.0", - "x": 15.929, - "y": 54.5732 - }, - { - "l": "4.0", - "x": 16.0123, - "y": 54.7637 - }, - { - "l": "4.0", - "x": 16.0957, - "y": 54.9486 - }, - { - "l": "4.0", - "x": 16.179, - "y": 55.1172 - }, - { - "l": "4.0", - "x": 16.2623, - "y": 55.3058 - }, - { - "l": "4.0", - "x": 16.3457, - "y": 55.4887 - }, - { - "l": "4.0", - "x": 16.429, - "y": 55.6556 - }, - { - "l": "4.0", - "x": 16.5123, - "y": 55.8424 - }, - { - "l": "4.0", - "x": 16.5957, - "y": 56.0235 - }, - { - "l": "4.0", - "x": 16.679, - "y": 56.1886 - }, - { - "l": "4.0", - "x": 16.7623, - "y": 56.3734 - }, - { - "l": "4.0", - "x": 16.8457, - "y": 56.5527 - }, - { - "l": "4.0", - "x": 16.929, - "y": 56.7163 - }, - { - "l": "4.0", - "x": 17.0123, - "y": 56.8992 - }, - { - "l": "4.0", - "x": 17.0957, - "y": 57.0767 - }, - { - "l": "4.0", - "x": 17.179, - "y": 57.2385 - }, - { - "l": "4.0", - "x": 17.2623, - "y": 57.4196 - }, - { - "l": "4.0", - "x": 17.3457, - "y": 57.5953 - }, - { - "l": "4.0", - "x": 17.429, - "y": 57.7556 - }, - { - "l": "4.0", - "x": 17.5123, - "y": 57.9349 - }, - { - "l": "4.0", - "x": 17.5957, - "y": 58.1088 - }, - { - "l": "4.0", - "x": 17.679, - "y": 58.2674 - }, - { - "l": "4.0", - "x": 17.7623, - "y": 58.4451 - }, - { - "l": "4.0", - "x": 17.8457, - "y": 58.6172 - }, - { - "l": "4.0", - "x": 17.929, - "y": 58.7741 - }, - { - "l": "4.0", - "x": 18.0123, - "y": 58.9499 - }, - { - "l": "4.0", - "x": 18.0957, - "y": 59.1205 - }, - { - "l": "4.0", - "x": 18.179, - "y": 59.276 - }, - { - "l": "4.0", - "x": 18.2623, - "y": 59.4498 - }, - { - "l": "4.0", - "x": 18.3457, - "y": 59.6186 - }, - { - "l": "4.0", - "x": 18.429, - "y": 59.7727 - }, - { - "l": "4.0", - "x": 18.5123, - "y": 59.9448 - }, - { - "l": "4.0", - "x": 18.5957, - "y": 60.112 - }, - { - "l": "4.0", - "x": 18.679, - "y": 60.2649 - }, - { - "l": "4.0", - "x": 18.7623, - "y": 60.4358 - }, - { - "l": "4.0", - "x": 18.8457, - "y": 60.4358 - } - ] - } - ] - } - } - } - ] -}; - -/* -Age padding is in years, so guides the x axis scale used to calculate the optimum x domains -For the purposes of working out age padding around points on a chart: - - prem is <= 0.03832991 years (2 weeks corrected or 42 weeks gestation) - - infant is <=1 years - - small child is <= 4 years - - bigger child is > 4 -If the number of measurement points provided exceeds the min padding as stipulated below, the chart will move to -the next chart scale type -*/ -var totalMinPadding = { - prem: 0.3, - infant: 0.6, - smallChild: 1.9, - biggerChild: 5.4, -}; - -var allXTickValues = [ - -0.33, - -0.32580424366872, - -0.3066392881587953, - -0.2874743326488706, - -0.2683093771389459, - -0.2491444216290212, - -0.2299794661190965, - -0.21081451060917178, - -0.19164955509924708, - -0.17248459958932238, - -0.15331964407939766, - -0.13415468856947296, - -0.11498973305954825, - -0.09582477754962354, - -0.07665982203969883, - -0.057494866529774126, - -0.038329911019849415, - -0.019164955509924708, - 0, - 0.019164955509924708, - 0.038329911019849415, - 0.07665982203969883, - 0.08333333333333333, - 0.11498973305954825, - 0.15331964407939766, - 0.16666666666666666, - 0.19164955509924708, - 0.2299794661190965, - 0.25, - 0.2683093771389459, - 0.3066392881587953, - 0.3333333333333333, - 0.34496919917864477, - 0.38329911019849416, - 0.4166666666666667, - 0.42162902121834356, - 0.459958932238193, - 0.4982888432580424, - 0.5, - 0.5366187542778919, - 0.5749486652977412, - 0.5833333333333334, - 0.6132785763175906, - 0.65160848733744, - 0.6666666666666666, - 0.6899383983572895, - 0.7282683093771389, - 0.75, - 0.7665982203969883, - 0.8049281314168377, - 0.8333333333333334, - 0.8432580424366871, - 0.8815879534565366, - 0.9166666666666666, - 0.919917864476386, - 0.9582477754962354, - 1, - 1.08333333333333333, - 1.16666666666666666, - 1.25, - 1.3333333333333333, - 1.5, - 1.75, - 2, - 2.25, - 2.5, - 2.75, - 3, - 3.25, - 3.5, - 3.75, - 4, - 4.5, - 5, - 5.5, - 6, - 6.5, - 7, - 7.5, - 8, - 8.5, - 9, - 9.5, - 10, - 10.5, - 11, - 11.5, - 12, - 12.5, - 13, - 13.5, - 14, - 14.5, - 15, - 15.5, - 16, - 16.5, - 17, - 17.5, - 18, - 18.5, - 19, - 19.5, - 20, -]; -function getTickValuesForChartScaling(chartScaleType) { - var tickValuesForChartScaling = []; - for (var _i = 0, allXTickValues_5 = allXTickValues; _i < allXTickValues_5.length; _i++) { - var element = allXTickValues_5[_i]; - switch (chartScaleType) { - case 'prem': - tickValuesForChartScaling.push(element); - break; - case 'infant': - if (element < 1) { - if (Number.isInteger(element) || - Number.isInteger(Number((element * 12).toFixed(2))) === false || - element === -0.33) { - tickValuesForChartScaling.push(element); - } - } - else { - tickValuesForChartScaling.push(element); - } - break; - case 'smallChild': - if (Number.isInteger(element) || - element === -0.32580424366872 || - element === -0.19164955509924708 || - element === -0.057494866529774126 || - Number.isInteger(Number((element * 4).toFixed(2)))) { - tickValuesForChartScaling.push(element); - } - break; - case 'biggerChild': - if (Number.isInteger(element) || element === -0.32580424366872 || Number.isInteger(element * 2)) { - tickValuesForChartScaling.push(element); - } - break; - default: - console.error('getTickValuesForChartScaling did not pick up a valid chartScaleType'); - } - } - return tickValuesForChartScaling; -} -var premXTickValues = []; -for (var _i = 0, allXTickValues_1 = allXTickValues; _i < allXTickValues_1.length; _i++) { - var element = allXTickValues_1[_i]; - if (element < 1) { - premXTickValues.push(element); - } - else { - break; - } -} -var infantXTickValues = []; -for (var _a = 0, allXTickValues_2 = allXTickValues; _a < allXTickValues_2.length; _a++) { - var element = allXTickValues_2[_a]; - if (element < 3) { - if ((element < 0 && Math.round(element * 52) % 2 === 0) || element > 0.02 || element === 0) { - infantXTickValues.push(element); - } - } - else { - break; - } -} -var smallChildXTickValues = []; -for (var _b = 0, allXTickValues_3 = allXTickValues; _b < allXTickValues_3.length; _b++) { - var element = allXTickValues_3[_b]; - if (element <= 7) { - if (Number.isInteger(Number((element * 4).toFixed(4)))) { - smallChildXTickValues.push(element); - } - } - else { - break; - } -} -var biggerChildXTickValues = []; -for (var _c = 0, allXTickValues_4 = allXTickValues; _c < allXTickValues_4.length; _c++) { - var element = allXTickValues_4[_c]; - if (Number.isInteger(Number((element * 2).toFixed(4)))) { - biggerChildXTickValues.push(element); - } -} -var tailoredXTickValues = { - prem: premXTickValues, - infant: infantXTickValues, - smallChild: smallChildXTickValues, - biggerChild: biggerChildXTickValues, -}; - -// deep copy variables -// note: this is only copies enumerable properties -var deepCopyArray = function (oldArray) { - var copyArray = []; - oldArray.forEach(function (element) { - if (Array.isArray(element)) { - copyArray.push(deepCopyArray(element)); - } - else { - if (typeof element === 'object' && element !== null) { - copyArray.push(deepCopyObject(element)); - } - else { - copyArray.push(element); - } - } - }); - return copyArray; -}; -var deepCopyObject = function (oldObject) { - var tempObject = {}; - for (var key in oldObject) { - var value = oldObject[key]; - if (Array.isArray(value)) { - tempObject[key] = deepCopyArray(value); - } - else { - if (typeof value === 'object' && value !== null) { - tempObject[key] = deepCopyObject(value); - } - else { - tempObject[key] = value; - } - } - } - return tempObject; -}; -var deepCopy = function (input) { - if (Array.isArray(input)) { - return deepCopyArray(input); - } - else if (typeof input === 'object' && input !== null) { - return deepCopyObject(input); - } - else { - return input; - } -}; - -var trisomy21HeightMaleCentileData = { - "centile_data": [ - { - "trisomy-21": { - "male": { - "height": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 0.0, - "y": 42.845 - }, - { - "l": "0.4", - "x": 0.0192, - "y": 43.4089 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 43.9731 - }, - { - "l": "0.4", - "x": 0.0575, - "y": 44.5377 - }, - { - "l": "0.4", - "x": 0.0767, - "y": 45.1028 - }, - { - "l": "0.4", - "x": 0.0958, - "y": 45.6205 - }, - { - "l": "0.4", - "x": 0.115, - "y": 46.1176 - }, - { - "l": "0.4", - "x": 0.1342, - "y": 46.6087 - }, - { - "l": "0.4", - "x": 0.1533, - "y": 47.0995 - }, - { - "l": "0.4", - "x": 0.1725, - "y": 47.5997 - }, - { - "l": "0.4", - "x": 0.1916, - "y": 48.1352 - }, - { - "l": "0.4", - "x": 0.2108, - "y": 48.675 - }, - { - "l": "0.4", - "x": 0.23, - "y": 49.2154 - }, - { - "l": "0.4", - "x": 0.2491, - "y": 49.7524 - }, - { - "l": "0.4", - "x": 0.2683, - "y": 50.2796 - }, - { - "l": "0.4", - "x": 0.2875, - "y": 50.7964 - }, - { - "l": "0.4", - "x": 0.3066, - "y": 51.2998 - }, - { - "l": "0.4", - "x": 0.3258, - "y": 51.7868 - }, - { - "l": "0.4", - "x": 0.345, - "y": 52.2339 - }, - { - "l": "0.4", - "x": 0.3641, - "y": 52.6577 - }, - { - "l": "0.4", - "x": 0.3833, - "y": 53.0689 - }, - { - "l": "0.4", - "x": 0.4025, - "y": 53.4726 - }, - { - "l": "0.4", - "x": 0.4216, - "y": 53.8762 - }, - { - "l": "0.4", - "x": 0.4408, - "y": 54.304 - }, - { - "l": "0.4", - "x": 0.46, - "y": 54.7296 - }, - { - "l": "0.4", - "x": 0.4791, - "y": 55.15 - }, - { - "l": "0.4", - "x": 0.4983, - "y": 55.5624 - }, - { - "l": "0.4", - "x": 0.5175, - "y": 55.9602 - }, - { - "l": "0.4", - "x": 0.5366, - "y": 56.3449 - }, - { - "l": "0.4", - "x": 0.5558, - "y": 56.7154 - }, - { - "l": "0.4", - "x": 0.5749, - "y": 57.0701 - }, - { - "l": "0.4", - "x": 0.5941, - "y": 57.3939 - }, - { - "l": "0.4", - "x": 0.6133, - "y": 57.6971 - }, - { - "l": "0.4", - "x": 0.6324, - "y": 57.9889 - }, - { - "l": "0.4", - "x": 0.6516, - "y": 58.2733 - }, - { - "l": "0.4", - "x": 0.6708, - "y": 58.5554 - }, - { - "l": "0.4", - "x": 0.6899, - "y": 58.8554 - }, - { - "l": "0.4", - "x": 0.7091, - "y": 59.1535 - }, - { - "l": "0.4", - "x": 0.7283, - "y": 59.4483 - }, - { - "l": "0.4", - "x": 0.7474, - "y": 59.7379 - }, - { - "l": "0.4", - "x": 0.7666, - "y": 60.0193 - }, - { - "l": "0.4", - "x": 0.7858, - "y": 60.2926 - }, - { - "l": "0.4", - "x": 0.8049, - "y": 60.557 - }, - { - "l": "0.4", - "x": 0.8241, - "y": 60.8115 - }, - { - "l": "0.4", - "x": 0.8433, - "y": 61.046 - }, - { - "l": "0.4", - "x": 0.8624, - "y": 61.2666 - }, - { - "l": "0.4", - "x": 0.8816, - "y": 61.4805 - }, - { - "l": "0.4", - "x": 0.9008, - "y": 61.6905 - }, - { - "l": "0.4", - "x": 0.9199, - "y": 61.8997 - }, - { - "l": "0.4", - "x": 0.9391, - "y": 62.1241 - }, - { - "l": "0.4", - "x": 0.9582, - "y": 62.3489 - }, - { - "l": "0.4", - "x": 0.9774, - "y": 62.5727 - }, - { - "l": "0.4", - "x": 0.9966, - "y": 62.7942 - }, - { - "l": "0.4", - "x": 1.0157, - "y": 63.0113 - }, - { - "l": "0.4", - "x": 1.0349, - "y": 63.2238 - }, - { - "l": "0.4", - "x": 1.0541, - "y": 63.4309 - }, - { - "l": "0.4", - "x": 1.0732, - "y": 63.6315 - }, - { - "l": "0.4", - "x": 1.0924, - "y": 63.818 - }, - { - "l": "0.4", - "x": 1.1116, - "y": 63.9941 - }, - { - "l": "0.4", - "x": 1.1307, - "y": 64.1659 - }, - { - "l": "0.4", - "x": 1.1499, - "y": 64.3358 - }, - { - "l": "0.4", - "x": 1.1691, - "y": 64.5061 - }, - { - "l": "0.4", - "x": 1.1882, - "y": 64.6893 - }, - { - "l": "0.4", - "x": 1.2074, - "y": 64.8743 - }, - { - "l": "0.4", - "x": 1.2266, - "y": 65.0596 - }, - { - "l": "0.4", - "x": 1.2457, - "y": 65.2441 - }, - { - "l": "0.4", - "x": 1.2649, - "y": 65.4263 - }, - { - "l": "0.4", - "x": 1.2841, - "y": 65.6056 - }, - { - "l": "0.4", - "x": 1.3032, - "y": 65.7811 - }, - { - "l": "0.4", - "x": 1.3224, - "y": 65.952 - }, - { - "l": "0.4", - "x": 1.3415, - "y": 66.1118 - }, - { - "l": "0.4", - "x": 1.3607, - "y": 66.2627 - }, - { - "l": "0.4", - "x": 1.3799, - "y": 66.4105 - }, - { - "l": "0.4", - "x": 1.399, - "y": 66.5569 - }, - { - "l": "0.4", - "x": 1.4182, - "y": 66.7041 - }, - { - "l": "0.4", - "x": 1.4374, - "y": 66.862 - }, - { - "l": "0.4", - "x": 1.4565, - "y": 67.0223 - }, - { - "l": "0.4", - "x": 1.4757, - "y": 67.1832 - }, - { - "l": "0.4", - "x": 1.4949, - "y": 67.3436 - }, - { - "l": "0.4", - "x": 1.514, - "y": 67.5023 - }, - { - "l": "0.4", - "x": 1.5332, - "y": 67.6588 - }, - { - "l": "0.4", - "x": 1.5524, - "y": 67.8122 - }, - { - "l": "0.4", - "x": 1.5715, - "y": 67.9619 - }, - { - "l": "0.4", - "x": 1.5907, - "y": 68.1023 - }, - { - "l": "0.4", - "x": 1.6099, - "y": 68.2348 - }, - { - "l": "0.4", - "x": 1.629, - "y": 68.3646 - }, - { - "l": "0.4", - "x": 1.6482, - "y": 68.4934 - }, - { - "l": "0.4", - "x": 1.6674, - "y": 68.623 - }, - { - "l": "0.4", - "x": 1.6865, - "y": 68.7618 - }, - { - "l": "0.4", - "x": 1.7057, - "y": 68.9033 - }, - { - "l": "0.4", - "x": 1.7248, - "y": 69.0455 - }, - { - "l": "0.4", - "x": 1.744, - "y": 69.1876 - }, - { - "l": "0.4", - "x": 1.7632, - "y": 69.3285 - }, - { - "l": "0.4", - "x": 1.7823, - "y": 69.4676 - }, - { - "l": "0.4", - "x": 1.8015, - "y": 69.6042 - }, - { - "l": "0.4", - "x": 1.8207, - "y": 69.7377 - }, - { - "l": "0.4", - "x": 1.8398, - "y": 69.8635 - }, - { - "l": "0.4", - "x": 1.859, - "y": 69.9819 - }, - { - "l": "0.4", - "x": 1.8782, - "y": 70.0981 - }, - { - "l": "0.4", - "x": 1.8973, - "y": 70.2136 - }, - { - "l": "0.4", - "x": 1.9165, - "y": 70.3299 - }, - { - "l": "0.4", - "x": 1.9357, - "y": 70.4544 - }, - { - "l": "0.4", - "x": 1.9548, - "y": 70.5819 - }, - { - "l": "0.4", - "x": 1.974, - "y": 70.7104 - }, - { - "l": "0.4", - "x": 1.9932, - "y": 70.839 - }, - { - "l": "0.4", - "x": 2.0123, - "y": 70.9669 - }, - { - "l": "0.4", - "x": 2.0957, - "y": 71.4939 - }, - { - "l": "0.4", - "x": 2.179, - "y": 71.964 - }, - { - "l": "0.4", - "x": 2.2623, - "y": 72.48 - }, - { - "l": "0.4", - "x": 2.3457, - "y": 72.9715 - }, - { - "l": "0.4", - "x": 2.429, - "y": 73.4127 - }, - { - "l": "0.4", - "x": 2.5123, - "y": 73.9 - }, - { - "l": "0.4", - "x": 2.5957, - "y": 74.367 - }, - { - "l": "0.4", - "x": 2.679, - "y": 74.7881 - }, - { - "l": "0.4", - "x": 2.7623, - "y": 75.254 - }, - { - "l": "0.4", - "x": 2.8457, - "y": 75.7012 - }, - { - "l": "0.4", - "x": 2.929, - "y": 76.1049 - }, - { - "l": "0.4", - "x": 3.0123, - "y": 76.5528 - }, - { - "l": "0.4", - "x": 3.0957, - "y": 76.9847 - }, - { - "l": "0.4", - "x": 3.179, - "y": 77.3766 - }, - { - "l": "0.4", - "x": 3.2623, - "y": 77.8139 - }, - { - "l": "0.4", - "x": 3.3457, - "y": 78.2374 - }, - { - "l": "0.4", - "x": 3.429, - "y": 78.6235 - }, - { - "l": "0.4", - "x": 3.5123, - "y": 79.0555 - }, - { - "l": "0.4", - "x": 3.5957, - "y": 79.4753 - }, - { - "l": "0.4", - "x": 3.679, - "y": 79.859 - }, - { - "l": "0.4", - "x": 3.7623, - "y": 80.2898 - }, - { - "l": "0.4", - "x": 3.8457, - "y": 80.71 - }, - { - "l": "0.4", - "x": 3.929, - "y": 81.0958 - }, - { - "l": "0.4", - "x": 4.0123, - "y": 81.5302 - }, - { - "l": "0.4", - "x": 4.0957, - "y": 81.9545 - }, - { - "l": "0.4", - "x": 4.179, - "y": 82.3439 - }, - { - "l": "0.4", - "x": 4.2623, - "y": 82.7818 - }, - { - "l": "0.4", - "x": 4.3457, - "y": 83.2088 - }, - { - "l": "0.4", - "x": 4.429, - "y": 83.6 - }, - { - "l": "0.4", - "x": 4.5123, - "y": 84.0401 - }, - { - "l": "0.4", - "x": 4.5957, - "y": 84.4703 - }, - { - "l": "0.4", - "x": 4.679, - "y": 84.866 - }, - { - "l": "0.4", - "x": 4.7623, - "y": 85.3125 - }, - { - "l": "0.4", - "x": 4.8457, - "y": 85.7493 - }, - { - "l": "0.4", - "x": 4.929, - "y": 86.1508 - }, - { - "l": "0.4", - "x": 5.0123, - "y": 86.6025 - }, - { - "l": "0.4", - "x": 5.0957, - "y": 87.0433 - }, - { - "l": "0.4", - "x": 5.179, - "y": 87.4471 - }, - { - "l": "0.4", - "x": 5.2623, - "y": 87.9005 - }, - { - "l": "0.4", - "x": 5.3457, - "y": 88.3413 - }, - { - "l": "0.4", - "x": 5.429, - "y": 88.7438 - }, - { - "l": "0.4", - "x": 5.5123, - "y": 89.1942 - }, - { - "l": "0.4", - "x": 5.5957, - "y": 89.6312 - }, - { - "l": "0.4", - "x": 5.679, - "y": 90.0293 - }, - { - "l": "0.4", - "x": 5.7623, - "y": 90.4742 - }, - { - "l": "0.4", - "x": 5.8457, - "y": 90.9051 - }, - { - "l": "0.4", - "x": 5.929, - "y": 91.2976 - }, - { - "l": "0.4", - "x": 6.0123, - "y": 91.7361 - }, - { - "l": "0.4", - "x": 6.0957, - "y": 92.161 - }, - { - "l": "0.4", - "x": 6.179, - "y": 92.5479 - }, - { - "l": "0.4", - "x": 6.2623, - "y": 92.9799 - }, - { - "l": "0.4", - "x": 6.3457, - "y": 93.3983 - }, - { - "l": "0.4", - "x": 6.429, - "y": 93.7788 - }, - { - "l": "0.4", - "x": 6.5123, - "y": 94.2037 - }, - { - "l": "0.4", - "x": 6.5957, - "y": 94.6149 - }, - { - "l": "0.4", - "x": 6.679, - "y": 94.989 - }, - { - "l": "0.4", - "x": 6.7623, - "y": 95.4061 - }, - { - "l": "0.4", - "x": 6.8457, - "y": 95.8093 - }, - { - "l": "0.4", - "x": 6.929, - "y": 96.1752 - }, - { - "l": "0.4", - "x": 7.0123, - "y": 96.5825 - }, - { - "l": "0.4", - "x": 7.0957, - "y": 96.9753 - }, - { - "l": "0.4", - "x": 7.179, - "y": 97.3312 - }, - { - "l": "0.4", - "x": 7.2623, - "y": 97.7269 - }, - { - "l": "0.4", - "x": 7.3457, - "y": 98.1083 - }, - { - "l": "0.4", - "x": 7.429, - "y": 98.454 - }, - { - "l": "0.4", - "x": 7.5123, - "y": 98.8384 - }, - { - "l": "0.4", - "x": 7.5957, - "y": 99.2094 - }, - { - "l": "0.4", - "x": 7.679, - "y": 99.5462 - }, - { - "l": "0.4", - "x": 7.7623, - "y": 99.9216 - }, - { - "l": "0.4", - "x": 7.8457, - "y": 100.2846 - }, - { - "l": "0.4", - "x": 7.929, - "y": 100.6147 - }, - { - "l": "0.4", - "x": 8.0123, - "y": 100.9834 - }, - { - "l": "0.4", - "x": 8.0957, - "y": 101.3407 - }, - { - "l": "0.4", - "x": 8.179, - "y": 101.6665 - }, - { - "l": "0.4", - "x": 8.2623, - "y": 102.031 - }, - { - "l": "0.4", - "x": 8.3457, - "y": 102.3847 - }, - { - "l": "0.4", - "x": 8.429, - "y": 102.7075 - }, - { - "l": "0.4", - "x": 8.5123, - "y": 103.0692 - }, - { - "l": "0.4", - "x": 8.5957, - "y": 103.4211 - }, - { - "l": "0.4", - "x": 8.679, - "y": 103.7436 - }, - { - "l": "0.4", - "x": 8.7623, - "y": 104.1064 - }, - { - "l": "0.4", - "x": 8.8457, - "y": 104.4612 - }, - { - "l": "0.4", - "x": 8.929, - "y": 104.7876 - }, - { - "l": "0.4", - "x": 9.0123, - "y": 105.1564 - }, - { - "l": "0.4", - "x": 9.0957, - "y": 105.5178 - }, - { - "l": "0.4", - "x": 9.179, - "y": 105.8508 - }, - { - "l": "0.4", - "x": 9.2623, - "y": 106.227 - }, - { - "l": "0.4", - "x": 9.3457, - "y": 106.5957 - }, - { - "l": "0.4", - "x": 9.429, - "y": 106.9352 - }, - { - "l": "0.4", - "x": 9.5123, - "y": 107.3184 - }, - { - "l": "0.4", - "x": 9.5957, - "y": 107.6936 - }, - { - "l": "0.4", - "x": 9.679, - "y": 108.0388 - }, - { - "l": "0.4", - "x": 9.7623, - "y": 108.4286 - }, - { - "l": "0.4", - "x": 9.8457, - "y": 108.8106 - }, - { - "l": "0.4", - "x": 9.929, - "y": 109.1626 - }, - { - "l": "0.4", - "x": 10.0123, - "y": 109.5613 - }, - { - "l": "0.4", - "x": 10.0957, - "y": 109.9532 - }, - { - "l": "0.4", - "x": 10.179, - "y": 110.3155 - }, - { - "l": "0.4", - "x": 10.2623, - "y": 110.7264 - }, - { - "l": "0.4", - "x": 10.3457, - "y": 111.1307 - }, - { - "l": "0.4", - "x": 10.429, - "y": 111.5048 - }, - { - "l": "0.4", - "x": 10.5123, - "y": 111.929 - }, - { - "l": "0.4", - "x": 10.5957, - "y": 112.3464 - }, - { - "l": "0.4", - "x": 10.679, - "y": 112.7326 - }, - { - "l": "0.4", - "x": 10.7623, - "y": 113.1702 - }, - { - "l": "0.4", - "x": 10.8457, - "y": 113.6011 - }, - { - "l": "0.4", - "x": 10.929, - "y": 113.9994 - }, - { - "l": "0.4", - "x": 11.0123, - "y": 114.451 - }, - { - "l": "0.4", - "x": 11.0957, - "y": 114.8952 - }, - { - "l": "0.4", - "x": 11.179, - "y": 115.3059 - }, - { - "l": "0.4", - "x": 11.2623, - "y": 115.7716 - }, - { - "l": "0.4", - "x": 11.3457, - "y": 116.2298 - }, - { - "l": "0.4", - "x": 11.429, - "y": 116.6532 - }, - { - "l": "0.4", - "x": 11.5123, - "y": 117.1326 - }, - { - "l": "0.4", - "x": 11.5957, - "y": 117.6032 - }, - { - "l": "0.4", - "x": 11.679, - "y": 118.037 - }, - { - "l": "0.4", - "x": 11.7623, - "y": 118.5269 - }, - { - "l": "0.4", - "x": 11.8457, - "y": 119.007 - }, - { - "l": "0.4", - "x": 11.929, - "y": 119.4488 - }, - { - "l": "0.4", - "x": 12.0123, - "y": 119.9473 - }, - { - "l": "0.4", - "x": 12.0957, - "y": 120.4345 - }, - { - "l": "0.4", - "x": 12.179, - "y": 120.8815 - }, - { - "l": "0.4", - "x": 12.2623, - "y": 121.3841 - }, - { - "l": "0.4", - "x": 12.3457, - "y": 121.8735 - }, - { - "l": "0.4", - "x": 12.429, - "y": 122.3207 - }, - { - "l": "0.4", - "x": 12.5123, - "y": 122.8214 - }, - { - "l": "0.4", - "x": 12.5957, - "y": 123.3066 - }, - { - "l": "0.4", - "x": 12.679, - "y": 123.7479 - }, - { - "l": "0.4", - "x": 12.7623, - "y": 124.2391 - }, - { - "l": "0.4", - "x": 12.8457, - "y": 124.7131 - }, - { - "l": "0.4", - "x": 12.929, - "y": 125.1415 - }, - { - "l": "0.4", - "x": 13.0123, - "y": 125.6164 - }, - { - "l": "0.4", - "x": 13.0957, - "y": 126.0725 - }, - { - "l": "0.4", - "x": 13.179, - "y": 126.4835 - }, - { - "l": "0.4", - "x": 13.2623, - "y": 126.9382 - }, - { - "l": "0.4", - "x": 13.3457, - "y": 127.3737 - }, - { - "l": "0.4", - "x": 13.429, - "y": 127.7651 - }, - { - "l": "0.4", - "x": 13.5123, - "y": 128.1972 - }, - { - "l": "0.4", - "x": 13.5957, - "y": 128.6099 - }, - { - "l": "0.4", - "x": 13.679, - "y": 128.9789 - }, - { - "l": "0.4", - "x": 13.7623, - "y": 129.3845 - }, - { - "l": "0.4", - "x": 13.8457, - "y": 129.7691 - }, - { - "l": "0.4", - "x": 13.929, - "y": 130.113 - }, - { - "l": "0.4", - "x": 14.0123, - "y": 130.4883 - }, - { - "l": "0.4", - "x": 14.0957, - "y": 130.8431 - }, - { - "l": "0.4", - "x": 14.179, - "y": 131.158 - }, - { - "l": "0.4", - "x": 14.2623, - "y": 131.5014 - }, - { - "l": "0.4", - "x": 14.3457, - "y": 131.8252 - }, - { - "l": "0.4", - "x": 14.429, - "y": 132.112 - }, - { - "l": "0.4", - "x": 14.5123, - "y": 132.4242 - }, - { - "l": "0.4", - "x": 14.5957, - "y": 132.7185 - }, - { - "l": "0.4", - "x": 14.679, - "y": 132.9786 - }, - { - "l": "0.4", - "x": 14.7623, - "y": 133.2612 - }, - { - "l": "0.4", - "x": 14.8457, - "y": 133.5271 - }, - { - "l": "0.4", - "x": 14.929, - "y": 133.7615 - }, - { - "l": "0.4", - "x": 15.0123, - "y": 134.0155 - }, - { - "l": "0.4", - "x": 15.0957, - "y": 134.2566 - }, - { - "l": "0.4", - "x": 15.179, - "y": 134.4685 - }, - { - "l": "0.4", - "x": 15.2623, - "y": 134.6986 - }, - { - "l": "0.4", - "x": 15.3457, - "y": 134.915 - }, - { - "l": "0.4", - "x": 15.429, - "y": 135.1072 - }, - { - "l": "0.4", - "x": 15.5123, - "y": 135.3154 - }, - { - "l": "0.4", - "x": 15.5957, - "y": 135.5123 - }, - { - "l": "0.4", - "x": 15.679, - "y": 135.6861 - }, - { - "l": "0.4", - "x": 15.7623, - "y": 135.8746 - }, - { - "l": "0.4", - "x": 15.8457, - "y": 136.0539 - }, - { - "l": "0.4", - "x": 15.929, - "y": 136.2115 - }, - { - "l": "0.4", - "x": 16.0123, - "y": 136.3829 - }, - { - "l": "0.4", - "x": 16.0957, - "y": 136.5441 - }, - { - "l": "0.4", - "x": 16.179, - "y": 136.6868 - }, - { - "l": "0.4", - "x": 16.2623, - "y": 136.8426 - }, - { - "l": "0.4", - "x": 16.3457, - "y": 136.9894 - }, - { - "l": "0.4", - "x": 16.429, - "y": 137.1202 - }, - { - "l": "0.4", - "x": 16.5123, - "y": 137.2622 - }, - { - "l": "0.4", - "x": 16.5957, - "y": 137.3966 - }, - { - "l": "0.4", - "x": 16.679, - "y": 137.5161 - }, - { - "l": "0.4", - "x": 16.7623, - "y": 137.6465 - }, - { - "l": "0.4", - "x": 16.8457, - "y": 137.77 - }, - { - "l": "0.4", - "x": 16.929, - "y": 137.8798 - }, - { - "l": "0.4", - "x": 17.0123, - "y": 137.9997 - }, - { - "l": "0.4", - "x": 17.0957, - "y": 138.1125 - }, - { - "l": "0.4", - "x": 17.179, - "y": 138.2135 - }, - { - "l": "0.4", - "x": 17.2623, - "y": 138.3248 - }, - { - "l": "0.4", - "x": 17.3457, - "y": 138.4288 - }, - { - "l": "0.4", - "x": 17.429, - "y": 138.5227 - }, - { - "l": "0.4", - "x": 17.5123, - "y": 138.6252 - }, - { - "l": "0.4", - "x": 17.5957, - "y": 138.7217 - }, - { - "l": "0.4", - "x": 17.679, - "y": 138.8073 - }, - { - "l": "0.4", - "x": 17.7623, - "y": 138.9026 - }, - { - "l": "0.4", - "x": 17.8457, - "y": 138.9918 - }, - { - "l": "0.4", - "x": 17.929, - "y": 139.0711 - }, - { - "l": "0.4", - "x": 18.0123, - "y": 139.1575 - }, - { - "l": "0.4", - "x": 18.0957, - "y": 139.2391 - }, - { - "l": "0.4", - "x": 18.179, - "y": 139.3114 - }, - { - "l": "0.4", - "x": 18.2623, - "y": 139.3911 - }, - { - "l": "0.4", - "x": 18.3457, - "y": 139.4645 - }, - { - "l": "0.4", - "x": 18.429, - "y": 139.5299 - }, - { - "l": "0.4", - "x": 18.5123, - "y": 139.6034 - }, - { - "l": "0.4", - "x": 18.5957, - "y": 139.6743 - }, - { - "l": "0.4", - "x": 18.679, - "y": 139.7348 - }, - { - "l": "0.4", - "x": 18.7623, - "y": 139.8014 - }, - { - "l": "0.4", - "x": 18.8457, - "y": 139.8638 - }, - { - "l": "0.4", - "x": 18.929, - "y": 139.9193 - }, - { - "l": "0.4", - "x": 19.0123, - "y": 139.9775 - }, - { - "l": "0.4", - "x": 19.0957, - "y": 140.0344 - }, - { - "l": "0.4", - "x": 19.179, - "y": 140.0853 - }, - { - "l": "0.4", - "x": 19.2623, - "y": 140.1346 - }, - { - "l": "0.4", - "x": 19.3457, - "y": 140.1824 - }, - { - "l": "0.4", - "x": 19.429, - "y": 140.2263 - }, - { - "l": "0.4", - "x": 19.5123, - "y": 140.2755 - }, - { - "l": "0.4", - "x": 19.5957, - "y": 140.3234 - }, - { - "l": "0.4", - "x": 19.679, - "y": 140.3653 - }, - { - "l": "0.4", - "x": 19.7623, - "y": 140.4071 - }, - { - "l": "0.4", - "x": 19.8457, - "y": 140.4469 - }, - { - "l": "0.4", - "x": 19.929, - "y": 140.4803 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 0.0, - "y": 44.5094 - }, - { - "l": "2.0", - "x": 0.0192, - "y": 45.0903 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 45.6714 - }, - { - "l": "2.0", - "x": 0.0575, - "y": 46.253 - }, - { - "l": "2.0", - "x": 0.0767, - "y": 46.8348 - }, - { - "l": "2.0", - "x": 0.0958, - "y": 47.3677 - }, - { - "l": "2.0", - "x": 0.115, - "y": 47.8794 - }, - { - "l": "2.0", - "x": 0.1342, - "y": 48.3848 - }, - { - "l": "2.0", - "x": 0.1533, - "y": 48.8897 - }, - { - "l": "2.0", - "x": 0.1725, - "y": 49.4043 - }, - { - "l": "2.0", - "x": 0.1916, - "y": 49.9551 - }, - { - "l": "2.0", - "x": 0.2108, - "y": 50.5102 - }, - { - "l": "2.0", - "x": 0.23, - "y": 51.0657 - }, - { - "l": "2.0", - "x": 0.2491, - "y": 51.6177 - }, - { - "l": "2.0", - "x": 0.2683, - "y": 52.1595 - }, - { - "l": "2.0", - "x": 0.2875, - "y": 52.6905 - }, - { - "l": "2.0", - "x": 0.3066, - "y": 53.2076 - }, - { - "l": "2.0", - "x": 0.3258, - "y": 53.7077 - }, - { - "l": "2.0", - "x": 0.345, - "y": 54.1667 - }, - { - "l": "2.0", - "x": 0.3641, - "y": 54.6017 - }, - { - "l": "2.0", - "x": 0.3833, - "y": 55.0237 - }, - { - "l": "2.0", - "x": 0.4025, - "y": 55.4379 - }, - { - "l": "2.0", - "x": 0.4216, - "y": 55.8519 - }, - { - "l": "2.0", - "x": 0.4408, - "y": 56.2906 - }, - { - "l": "2.0", - "x": 0.46, - "y": 56.727 - }, - { - "l": "2.0", - "x": 0.4791, - "y": 57.1579 - }, - { - "l": "2.0", - "x": 0.4983, - "y": 57.5805 - }, - { - "l": "2.0", - "x": 0.5175, - "y": 57.988 - }, - { - "l": "2.0", - "x": 0.5366, - "y": 58.3821 - }, - { - "l": "2.0", - "x": 0.5558, - "y": 58.7614 - }, - { - "l": "2.0", - "x": 0.5749, - "y": 59.1246 - }, - { - "l": "2.0", - "x": 0.5941, - "y": 59.4559 - }, - { - "l": "2.0", - "x": 0.6133, - "y": 59.7662 - }, - { - "l": "2.0", - "x": 0.6324, - "y": 60.0647 - }, - { - "l": "2.0", - "x": 0.6516, - "y": 60.3557 - }, - { - "l": "2.0", - "x": 0.6708, - "y": 60.6442 - }, - { - "l": "2.0", - "x": 0.6899, - "y": 60.9509 - }, - { - "l": "2.0", - "x": 0.7091, - "y": 61.2557 - }, - { - "l": "2.0", - "x": 0.7283, - "y": 61.557 - }, - { - "l": "2.0", - "x": 0.7474, - "y": 61.8531 - }, - { - "l": "2.0", - "x": 0.7666, - "y": 62.1406 - }, - { - "l": "2.0", - "x": 0.7858, - "y": 62.4199 - }, - { - "l": "2.0", - "x": 0.8049, - "y": 62.6901 - }, - { - "l": "2.0", - "x": 0.8241, - "y": 62.9501 - }, - { - "l": "2.0", - "x": 0.8433, - "y": 63.1897 - }, - { - "l": "2.0", - "x": 0.8624, - "y": 63.4151 - }, - { - "l": "2.0", - "x": 0.8816, - "y": 63.6335 - }, - { - "l": "2.0", - "x": 0.9008, - "y": 63.8481 - }, - { - "l": "2.0", - "x": 0.9199, - "y": 64.0619 - }, - { - "l": "2.0", - "x": 0.9391, - "y": 64.2911 - }, - { - "l": "2.0", - "x": 0.9582, - "y": 64.5208 - }, - { - "l": "2.0", - "x": 0.9774, - "y": 64.7494 - }, - { - "l": "2.0", - "x": 0.9966, - "y": 64.9757 - }, - { - "l": "2.0", - "x": 1.0157, - "y": 65.1977 - }, - { - "l": "2.0", - "x": 1.0349, - "y": 65.4148 - }, - { - "l": "2.0", - "x": 1.0541, - "y": 65.6264 - }, - { - "l": "2.0", - "x": 1.0732, - "y": 65.8316 - }, - { - "l": "2.0", - "x": 1.0924, - "y": 66.0222 - }, - { - "l": "2.0", - "x": 1.1116, - "y": 66.2022 - }, - { - "l": "2.0", - "x": 1.1307, - "y": 66.3779 - }, - { - "l": "2.0", - "x": 1.1499, - "y": 66.5517 - }, - { - "l": "2.0", - "x": 1.1691, - "y": 66.7259 - }, - { - "l": "2.0", - "x": 1.1882, - "y": 66.9133 - }, - { - "l": "2.0", - "x": 1.2074, - "y": 67.1027 - }, - { - "l": "2.0", - "x": 1.2266, - "y": 67.2923 - }, - { - "l": "2.0", - "x": 1.2457, - "y": 67.4812 - }, - { - "l": "2.0", - "x": 1.2649, - "y": 67.6677 - }, - { - "l": "2.0", - "x": 1.2841, - "y": 67.8513 - }, - { - "l": "2.0", - "x": 1.3032, - "y": 68.0311 - }, - { - "l": "2.0", - "x": 1.3224, - "y": 68.2061 - }, - { - "l": "2.0", - "x": 1.3415, - "y": 68.3699 - }, - { - "l": "2.0", - "x": 1.3607, - "y": 68.5246 - }, - { - "l": "2.0", - "x": 1.3799, - "y": 68.676 - }, - { - "l": "2.0", - "x": 1.399, - "y": 68.8262 - }, - { - "l": "2.0", - "x": 1.4182, - "y": 68.9771 - }, - { - "l": "2.0", - "x": 1.4374, - "y": 69.139 - }, - { - "l": "2.0", - "x": 1.4565, - "y": 69.3035 - }, - { - "l": "2.0", - "x": 1.4757, - "y": 69.4685 - }, - { - "l": "2.0", - "x": 1.4949, - "y": 69.6331 - }, - { - "l": "2.0", - "x": 1.514, - "y": 69.7961 - }, - { - "l": "2.0", - "x": 1.5332, - "y": 69.9567 - }, - { - "l": "2.0", - "x": 1.5524, - "y": 70.1143 - }, - { - "l": "2.0", - "x": 1.5715, - "y": 70.2679 - }, - { - "l": "2.0", - "x": 1.5907, - "y": 70.4122 - }, - { - "l": "2.0", - "x": 1.6099, - "y": 70.5484 - }, - { - "l": "2.0", - "x": 1.629, - "y": 70.6817 - }, - { - "l": "2.0", - "x": 1.6482, - "y": 70.8141 - }, - { - "l": "2.0", - "x": 1.6674, - "y": 70.9473 - }, - { - "l": "2.0", - "x": 1.6865, - "y": 71.09 - }, - { - "l": "2.0", - "x": 1.7057, - "y": 71.2356 - }, - { - "l": "2.0", - "x": 1.7248, - "y": 71.3819 - }, - { - "l": "2.0", - "x": 1.744, - "y": 71.528 - }, - { - "l": "2.0", - "x": 1.7632, - "y": 71.673 - }, - { - "l": "2.0", - "x": 1.7823, - "y": 71.8161 - }, - { - "l": "2.0", - "x": 1.8015, - "y": 71.9568 - }, - { - "l": "2.0", - "x": 1.8207, - "y": 72.0942 - }, - { - "l": "2.0", - "x": 1.8398, - "y": 72.2237 - }, - { - "l": "2.0", - "x": 1.859, - "y": 72.3457 - }, - { - "l": "2.0", - "x": 1.8782, - "y": 72.4654 - }, - { - "l": "2.0", - "x": 1.8973, - "y": 72.5844 - }, - { - "l": "2.0", - "x": 1.9165, - "y": 72.7042 - }, - { - "l": "2.0", - "x": 1.9357, - "y": 72.8325 - }, - { - "l": "2.0", - "x": 1.9548, - "y": 72.964 - }, - { - "l": "2.0", - "x": 1.974, - "y": 73.0964 - }, - { - "l": "2.0", - "x": 1.9932, - "y": 73.229 - }, - { - "l": "2.0", - "x": 2.0123, - "y": 73.3609 - }, - { - "l": "2.0", - "x": 2.0957, - "y": 73.9046 - }, - { - "l": "2.0", - "x": 2.179, - "y": 74.39 - }, - { - "l": "2.0", - "x": 2.2623, - "y": 74.923 - }, - { - "l": "2.0", - "x": 2.3457, - "y": 75.4311 - }, - { - "l": "2.0", - "x": 2.429, - "y": 75.8876 - }, - { - "l": "2.0", - "x": 2.5123, - "y": 76.3919 - }, - { - "l": "2.0", - "x": 2.5957, - "y": 76.8756 - }, - { - "l": "2.0", - "x": 2.679, - "y": 77.3119 - }, - { - "l": "2.0", - "x": 2.7623, - "y": 77.795 - }, - { - "l": "2.0", - "x": 2.8457, - "y": 78.2588 - }, - { - "l": "2.0", - "x": 2.929, - "y": 78.6778 - }, - { - "l": "2.0", - "x": 3.0123, - "y": 79.1429 - }, - { - "l": "2.0", - "x": 3.0957, - "y": 79.5915 - }, - { - "l": "2.0", - "x": 3.179, - "y": 79.9989 - }, - { - "l": "2.0", - "x": 3.2623, - "y": 80.4537 - }, - { - "l": "2.0", - "x": 3.3457, - "y": 80.8944 - }, - { - "l": "2.0", - "x": 3.429, - "y": 81.2962 - }, - { - "l": "2.0", - "x": 3.5123, - "y": 81.7462 - }, - { - "l": "2.0", - "x": 3.5957, - "y": 82.1836 - }, - { - "l": "2.0", - "x": 3.679, - "y": 82.5835 - }, - { - "l": "2.0", - "x": 3.7623, - "y": 83.0328 - }, - { - "l": "2.0", - "x": 3.8457, - "y": 83.4712 - }, - { - "l": "2.0", - "x": 3.929, - "y": 83.8739 - }, - { - "l": "2.0", - "x": 4.0123, - "y": 84.3275 - }, - { - "l": "2.0", - "x": 4.0957, - "y": 84.7707 - }, - { - "l": "2.0", - "x": 4.179, - "y": 85.1775 - }, - { - "l": "2.0", - "x": 4.2623, - "y": 85.6353 - }, - { - "l": "2.0", - "x": 4.3457, - "y": 86.0818 - }, - { - "l": "2.0", - "x": 4.429, - "y": 86.4911 - }, - { - "l": "2.0", - "x": 4.5123, - "y": 86.9517 - }, - { - "l": "2.0", - "x": 4.5957, - "y": 87.4021 - }, - { - "l": "2.0", - "x": 4.679, - "y": 87.8165 - }, - { - "l": "2.0", - "x": 4.7623, - "y": 88.2842 - }, - { - "l": "2.0", - "x": 4.8457, - "y": 88.742 - }, - { - "l": "2.0", - "x": 4.929, - "y": 89.1627 - }, - { - "l": "2.0", - "x": 5.0123, - "y": 89.6364 - }, - { - "l": "2.0", - "x": 5.0957, - "y": 90.0987 - }, - { - "l": "2.0", - "x": 5.179, - "y": 90.5224 - }, - { - "l": "2.0", - "x": 5.2623, - "y": 90.9982 - }, - { - "l": "2.0", - "x": 5.3457, - "y": 91.4609 - }, - { - "l": "2.0", - "x": 5.429, - "y": 91.8835 - }, - { - "l": "2.0", - "x": 5.5123, - "y": 92.3565 - }, - { - "l": "2.0", - "x": 5.5957, - "y": 92.8155 - }, - { - "l": "2.0", - "x": 5.679, - "y": 93.2339 - }, - { - "l": "2.0", - "x": 5.7623, - "y": 93.7014 - }, - { - "l": "2.0", - "x": 5.8457, - "y": 94.1543 - }, - { - "l": "2.0", - "x": 5.929, - "y": 94.567 - }, - { - "l": "2.0", - "x": 6.0123, - "y": 95.028 - }, - { - "l": "2.0", - "x": 6.0957, - "y": 95.4748 - }, - { - "l": "2.0", - "x": 6.179, - "y": 95.8817 - }, - { - "l": "2.0", - "x": 6.2623, - "y": 96.336 - }, - { - "l": "2.0", - "x": 6.3457, - "y": 96.776 - }, - { - "l": "2.0", - "x": 6.429, - "y": 97.1763 - }, - { - "l": "2.0", - "x": 6.5123, - "y": 97.6231 - }, - { - "l": "2.0", - "x": 6.5957, - "y": 98.0556 - }, - { - "l": "2.0", - "x": 6.679, - "y": 98.4489 - }, - { - "l": "2.0", - "x": 6.7623, - "y": 98.8876 - }, - { - "l": "2.0", - "x": 6.8457, - "y": 99.3116 - }, - { - "l": "2.0", - "x": 6.929, - "y": 99.6963 - }, - { - "l": "2.0", - "x": 7.0123, - "y": 100.1244 - }, - { - "l": "2.0", - "x": 7.0957, - "y": 100.5373 - }, - { - "l": "2.0", - "x": 7.179, - "y": 100.9114 - }, - { - "l": "2.0", - "x": 7.2623, - "y": 101.3272 - }, - { - "l": "2.0", - "x": 7.3457, - "y": 101.728 - }, - { - "l": "2.0", - "x": 7.429, - "y": 102.0911 - }, - { - "l": "2.0", - "x": 7.5123, - "y": 102.495 - }, - { - "l": "2.0", - "x": 7.5957, - "y": 102.8847 - }, - { - "l": "2.0", - "x": 7.679, - "y": 103.2384 - }, - { - "l": "2.0", - "x": 7.7623, - "y": 103.6325 - }, - { - "l": "2.0", - "x": 7.8457, - "y": 104.0136 - }, - { - "l": "2.0", - "x": 7.929, - "y": 104.3601 - }, - { - "l": "2.0", - "x": 8.0123, - "y": 104.747 - }, - { - "l": "2.0", - "x": 8.0957, - "y": 105.1219 - }, - { - "l": "2.0", - "x": 8.179, - "y": 105.4636 - }, - { - "l": "2.0", - "x": 8.2623, - "y": 105.8459 - }, - { - "l": "2.0", - "x": 8.3457, - "y": 106.2168 - }, - { - "l": "2.0", - "x": 8.429, - "y": 106.5551 - }, - { - "l": "2.0", - "x": 8.5123, - "y": 106.9341 - }, - { - "l": "2.0", - "x": 8.5957, - "y": 107.3027 - }, - { - "l": "2.0", - "x": 8.679, - "y": 107.6404 - }, - { - "l": "2.0", - "x": 8.7623, - "y": 108.0202 - }, - { - "l": "2.0", - "x": 8.8457, - "y": 108.3915 - }, - { - "l": "2.0", - "x": 8.929, - "y": 108.7329 - }, - { - "l": "2.0", - "x": 9.0123, - "y": 109.1186 - }, - { - "l": "2.0", - "x": 9.0957, - "y": 109.4963 - }, - { - "l": "2.0", - "x": 9.179, - "y": 109.8442 - }, - { - "l": "2.0", - "x": 9.2623, - "y": 110.2371 - }, - { - "l": "2.0", - "x": 9.3457, - "y": 110.622 - }, - { - "l": "2.0", - "x": 9.429, - "y": 110.9763 - }, - { - "l": "2.0", - "x": 9.5123, - "y": 111.376 - }, - { - "l": "2.0", - "x": 9.5957, - "y": 111.7671 - }, - { - "l": "2.0", - "x": 9.679, - "y": 112.1268 - }, - { - "l": "2.0", - "x": 9.7623, - "y": 112.5327 - }, - { - "l": "2.0", - "x": 9.8457, - "y": 112.9304 - }, - { - "l": "2.0", - "x": 9.929, - "y": 113.2965 - }, - { - "l": "2.0", - "x": 10.0123, - "y": 113.711 - }, - { - "l": "2.0", - "x": 10.0957, - "y": 114.1182 - }, - { - "l": "2.0", - "x": 10.179, - "y": 114.4944 - }, - { - "l": "2.0", - "x": 10.2623, - "y": 114.9209 - }, - { - "l": "2.0", - "x": 10.3457, - "y": 115.3402 - }, - { - "l": "2.0", - "x": 10.429, - "y": 115.728 - }, - { - "l": "2.0", - "x": 10.5123, - "y": 116.1673 - }, - { - "l": "2.0", - "x": 10.5957, - "y": 116.5994 - }, - { - "l": "2.0", - "x": 10.679, - "y": 116.9988 - }, - { - "l": "2.0", - "x": 10.7623, - "y": 117.4511 - }, - { - "l": "2.0", - "x": 10.8457, - "y": 117.8961 - }, - { - "l": "2.0", - "x": 10.929, - "y": 118.3072 - }, - { - "l": "2.0", - "x": 11.0123, - "y": 118.773 - }, - { - "l": "2.0", - "x": 11.0957, - "y": 119.2307 - }, - { - "l": "2.0", - "x": 11.179, - "y": 119.6536 - }, - { - "l": "2.0", - "x": 11.2623, - "y": 120.1327 - }, - { - "l": "2.0", - "x": 11.3457, - "y": 120.6037 - }, - { - "l": "2.0", - "x": 11.429, - "y": 121.0386 - }, - { - "l": "2.0", - "x": 11.5123, - "y": 121.5306 - }, - { - "l": "2.0", - "x": 11.5957, - "y": 122.0132 - }, - { - "l": "2.0", - "x": 11.679, - "y": 122.4577 - }, - { - "l": "2.0", - "x": 11.7623, - "y": 122.9593 - }, - { - "l": "2.0", - "x": 11.8457, - "y": 123.4503 - }, - { - "l": "2.0", - "x": 11.929, - "y": 123.9018 - }, - { - "l": "2.0", - "x": 12.0123, - "y": 124.4108 - }, - { - "l": "2.0", - "x": 12.0957, - "y": 124.9079 - }, - { - "l": "2.0", - "x": 12.179, - "y": 125.3635 - }, - { - "l": "2.0", - "x": 12.2623, - "y": 125.8754 - }, - { - "l": "2.0", - "x": 12.3457, - "y": 126.3734 - }, - { - "l": "2.0", - "x": 12.429, - "y": 126.828 - }, - { - "l": "2.0", - "x": 12.5123, - "y": 127.3366 - }, - { - "l": "2.0", - "x": 12.5957, - "y": 127.8291 - }, - { - "l": "2.0", - "x": 12.679, - "y": 128.2766 - }, - { - "l": "2.0", - "x": 12.7623, - "y": 128.7744 - }, - { - "l": "2.0", - "x": 12.8457, - "y": 129.2543 - }, - { - "l": "2.0", - "x": 12.929, - "y": 129.6877 - }, - { - "l": "2.0", - "x": 13.0123, - "y": 130.1678 - }, - { - "l": "2.0", - "x": 13.0957, - "y": 130.6284 - }, - { - "l": "2.0", - "x": 13.179, - "y": 131.0433 - }, - { - "l": "2.0", - "x": 13.2623, - "y": 131.5018 - }, - { - "l": "2.0", - "x": 13.3457, - "y": 131.9409 - }, - { - "l": "2.0", - "x": 13.429, - "y": 132.335 - }, - { - "l": "2.0", - "x": 13.5123, - "y": 132.7699 - }, - { - "l": "2.0", - "x": 13.5957, - "y": 133.1851 - }, - { - "l": "2.0", - "x": 13.679, - "y": 133.556 - }, - { - "l": "2.0", - "x": 13.7623, - "y": 133.9635 - }, - { - "l": "2.0", - "x": 13.8457, - "y": 134.3497 - }, - { - "l": "2.0", - "x": 13.929, - "y": 134.6948 - }, - { - "l": "2.0", - "x": 14.0123, - "y": 135.0712 - }, - { - "l": "2.0", - "x": 14.0957, - "y": 135.4269 - }, - { - "l": "2.0", - "x": 14.179, - "y": 135.7425 - }, - { - "l": "2.0", - "x": 14.2623, - "y": 136.0864 - }, - { - "l": "2.0", - "x": 14.3457, - "y": 136.4105 - }, - { - "l": "2.0", - "x": 14.429, - "y": 136.6976 - }, - { - "l": "2.0", - "x": 14.5123, - "y": 137.0099 - }, - { - "l": "2.0", - "x": 14.5957, - "y": 137.3042 - }, - { - "l": "2.0", - "x": 14.679, - "y": 137.5641 - }, - { - "l": "2.0", - "x": 14.7623, - "y": 137.8465 - }, - { - "l": "2.0", - "x": 14.8457, - "y": 138.1122 - }, - { - "l": "2.0", - "x": 14.929, - "y": 138.3463 - }, - { - "l": "2.0", - "x": 15.0123, - "y": 138.6 - }, - { - "l": "2.0", - "x": 15.0957, - "y": 138.8406 - }, - { - "l": "2.0", - "x": 15.179, - "y": 139.0521 - }, - { - "l": "2.0", - "x": 15.2623, - "y": 139.2817 - }, - { - "l": "2.0", - "x": 15.3457, - "y": 139.4976 - }, - { - "l": "2.0", - "x": 15.429, - "y": 139.6893 - }, - { - "l": "2.0", - "x": 15.5123, - "y": 139.897 - }, - { - "l": "2.0", - "x": 15.5957, - "y": 140.0933 - }, - { - "l": "2.0", - "x": 15.679, - "y": 140.2666 - }, - { - "l": "2.0", - "x": 15.7623, - "y": 140.4546 - }, - { - "l": "2.0", - "x": 15.8457, - "y": 140.6332 - }, - { - "l": "2.0", - "x": 15.929, - "y": 140.7904 - }, - { - "l": "2.0", - "x": 16.0123, - "y": 140.9611 - }, - { - "l": "2.0", - "x": 16.0957, - "y": 141.1217 - }, - { - "l": "2.0", - "x": 16.179, - "y": 141.2639 - }, - { - "l": "2.0", - "x": 16.2623, - "y": 141.4192 - }, - { - "l": "2.0", - "x": 16.3457, - "y": 141.5655 - }, - { - "l": "2.0", - "x": 16.429, - "y": 141.6957 - }, - { - "l": "2.0", - "x": 16.5123, - "y": 141.8372 - }, - { - "l": "2.0", - "x": 16.5957, - "y": 141.9711 - }, - { - "l": "2.0", - "x": 16.679, - "y": 142.0901 - }, - { - "l": "2.0", - "x": 16.7623, - "y": 142.22 - }, - { - "l": "2.0", - "x": 16.8457, - "y": 142.343 - }, - { - "l": "2.0", - "x": 16.929, - "y": 142.4523 - }, - { - "l": "2.0", - "x": 17.0123, - "y": 142.5717 - }, - { - "l": "2.0", - "x": 17.0957, - "y": 142.684 - }, - { - "l": "2.0", - "x": 17.179, - "y": 142.7846 - }, - { - "l": "2.0", - "x": 17.2623, - "y": 142.8954 - }, - { - "l": "2.0", - "x": 17.3457, - "y": 142.999 - }, - { - "l": "2.0", - "x": 17.429, - "y": 143.0925 - }, - { - "l": "2.0", - "x": 17.5123, - "y": 143.1945 - }, - { - "l": "2.0", - "x": 17.5957, - "y": 143.2906 - }, - { - "l": "2.0", - "x": 17.679, - "y": 143.3758 - }, - { - "l": "2.0", - "x": 17.7623, - "y": 143.4707 - }, - { - "l": "2.0", - "x": 17.8457, - "y": 143.5595 - }, - { - "l": "2.0", - "x": 17.929, - "y": 143.6384 - }, - { - "l": "2.0", - "x": 18.0123, - "y": 143.7244 - }, - { - "l": "2.0", - "x": 18.0957, - "y": 143.8056 - }, - { - "l": "2.0", - "x": 18.179, - "y": 143.8776 - }, - { - "l": "2.0", - "x": 18.2623, - "y": 143.9569 - }, - { - "l": "2.0", - "x": 18.3457, - "y": 144.03 - }, - { - "l": "2.0", - "x": 18.429, - "y": 144.095 - }, - { - "l": "2.0", - "x": 18.5123, - "y": 144.1682 - }, - { - "l": "2.0", - "x": 18.5957, - "y": 144.2388 - }, - { - "l": "2.0", - "x": 18.679, - "y": 144.299 - }, - { - "l": "2.0", - "x": 18.7623, - "y": 144.3652 - }, - { - "l": "2.0", - "x": 18.8457, - "y": 144.4273 - }, - { - "l": "2.0", - "x": 18.929, - "y": 144.4826 - }, - { - "l": "2.0", - "x": 19.0123, - "y": 144.5404 - }, - { - "l": "2.0", - "x": 19.0957, - "y": 144.5971 - }, - { - "l": "2.0", - "x": 19.179, - "y": 144.6477 - }, - { - "l": "2.0", - "x": 19.2623, - "y": 144.6967 - }, - { - "l": "2.0", - "x": 19.3457, - "y": 144.7444 - }, - { - "l": "2.0", - "x": 19.429, - "y": 144.7879 - }, - { - "l": "2.0", - "x": 19.5123, - "y": 144.8369 - }, - { - "l": "2.0", - "x": 19.5957, - "y": 144.8845 - }, - { - "l": "2.0", - "x": 19.679, - "y": 144.9263 - }, - { - "l": "2.0", - "x": 19.7623, - "y": 144.9678 - }, - { - "l": "2.0", - "x": 19.8457, - "y": 145.0075 - }, - { - "l": "2.0", - "x": 19.929, - "y": 145.0407 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 0.0, - "y": 46.1737 - }, - { - "l": "9.0", - "x": 0.0192, - "y": 46.7716 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 47.3698 - }, - { - "l": "9.0", - "x": 0.0575, - "y": 47.9682 - }, - { - "l": "9.0", - "x": 0.0767, - "y": 48.5668 - }, - { - "l": "9.0", - "x": 0.0958, - "y": 49.1149 - }, - { - "l": "9.0", - "x": 0.115, - "y": 49.6411 - }, - { - "l": "9.0", - "x": 0.1342, - "y": 50.1608 - }, - { - "l": "9.0", - "x": 0.1533, - "y": 50.68 - }, - { - "l": "9.0", - "x": 0.1725, - "y": 51.209 - }, - { - "l": "9.0", - "x": 0.1916, - "y": 51.775 - }, - { - "l": "9.0", - "x": 0.2108, - "y": 52.3454 - }, - { - "l": "9.0", - "x": 0.23, - "y": 52.9161 - }, - { - "l": "9.0", - "x": 0.2491, - "y": 53.483 - }, - { - "l": "9.0", - "x": 0.2683, - "y": 54.0394 - }, - { - "l": "9.0", - "x": 0.2875, - "y": 54.5845 - }, - { - "l": "9.0", - "x": 0.3066, - "y": 55.1153 - }, - { - "l": "9.0", - "x": 0.3258, - "y": 55.6285 - }, - { - "l": "9.0", - "x": 0.345, - "y": 56.0995 - }, - { - "l": "9.0", - "x": 0.3641, - "y": 56.5457 - }, - { - "l": "9.0", - "x": 0.3833, - "y": 56.9785 - }, - { - "l": "9.0", - "x": 0.4025, - "y": 57.4032 - }, - { - "l": "9.0", - "x": 0.4216, - "y": 57.8276 - }, - { - "l": "9.0", - "x": 0.4408, - "y": 58.2773 - }, - { - "l": "9.0", - "x": 0.46, - "y": 58.7244 - }, - { - "l": "9.0", - "x": 0.4791, - "y": 59.1659 - }, - { - "l": "9.0", - "x": 0.4983, - "y": 59.5986 - }, - { - "l": "9.0", - "x": 0.5175, - "y": 60.0159 - }, - { - "l": "9.0", - "x": 0.5366, - "y": 60.4192 - }, - { - "l": "9.0", - "x": 0.5558, - "y": 60.8075 - }, - { - "l": "9.0", - "x": 0.5749, - "y": 61.179 - }, - { - "l": "9.0", - "x": 0.5941, - "y": 61.518 - }, - { - "l": "9.0", - "x": 0.6133, - "y": 61.8353 - }, - { - "l": "9.0", - "x": 0.6324, - "y": 62.1405 - }, - { - "l": "9.0", - "x": 0.6516, - "y": 62.438 - }, - { - "l": "9.0", - "x": 0.6708, - "y": 62.7329 - }, - { - "l": "9.0", - "x": 0.6899, - "y": 63.0464 - }, - { - "l": "9.0", - "x": 0.7091, - "y": 63.3579 - }, - { - "l": "9.0", - "x": 0.7283, - "y": 63.6658 - }, - { - "l": "9.0", - "x": 0.7474, - "y": 63.9682 - }, - { - "l": "9.0", - "x": 0.7666, - "y": 64.262 - }, - { - "l": "9.0", - "x": 0.7858, - "y": 64.5472 - }, - { - "l": "9.0", - "x": 0.8049, - "y": 64.8231 - }, - { - "l": "9.0", - "x": 0.8241, - "y": 65.0887 - }, - { - "l": "9.0", - "x": 0.8433, - "y": 65.3334 - }, - { - "l": "9.0", - "x": 0.8624, - "y": 65.5635 - }, - { - "l": "9.0", - "x": 0.8816, - "y": 65.7866 - }, - { - "l": "9.0", - "x": 0.9008, - "y": 66.0057 - }, - { - "l": "9.0", - "x": 0.9199, - "y": 66.224 - }, - { - "l": "9.0", - "x": 0.9391, - "y": 66.4581 - }, - { - "l": "9.0", - "x": 0.9582, - "y": 66.6927 - }, - { - "l": "9.0", - "x": 0.9774, - "y": 66.9262 - }, - { - "l": "9.0", - "x": 0.9966, - "y": 67.1573 - }, - { - "l": "9.0", - "x": 1.0157, - "y": 67.384 - }, - { - "l": "9.0", - "x": 1.0349, - "y": 67.6058 - }, - { - "l": "9.0", - "x": 1.0541, - "y": 67.822 - }, - { - "l": "9.0", - "x": 1.0732, - "y": 68.0316 - }, - { - "l": "9.0", - "x": 1.0924, - "y": 68.2264 - }, - { - "l": "9.0", - "x": 1.1116, - "y": 68.4104 - }, - { - "l": "9.0", - "x": 1.1307, - "y": 68.5899 - }, - { - "l": "9.0", - "x": 1.1499, - "y": 68.7676 - }, - { - "l": "9.0", - "x": 1.1691, - "y": 68.9458 - }, - { - "l": "9.0", - "x": 1.1882, - "y": 69.1374 - }, - { - "l": "9.0", - "x": 1.2074, - "y": 69.331 - }, - { - "l": "9.0", - "x": 1.2266, - "y": 69.525 - }, - { - "l": "9.0", - "x": 1.2457, - "y": 69.7182 - }, - { - "l": "9.0", - "x": 1.2649, - "y": 69.9091 - }, - { - "l": "9.0", - "x": 1.2841, - "y": 70.097 - }, - { - "l": "9.0", - "x": 1.3032, - "y": 70.281 - }, - { - "l": "9.0", - "x": 1.3224, - "y": 70.4603 - }, - { - "l": "9.0", - "x": 1.3415, - "y": 70.6279 - }, - { - "l": "9.0", - "x": 1.3607, - "y": 70.7864 - }, - { - "l": "9.0", - "x": 1.3799, - "y": 70.9415 - }, - { - "l": "9.0", - "x": 1.399, - "y": 71.0954 - }, - { - "l": "9.0", - "x": 1.4182, - "y": 71.2501 - }, - { - "l": "9.0", - "x": 1.4374, - "y": 71.4161 - }, - { - "l": "9.0", - "x": 1.4565, - "y": 71.5846 - }, - { - "l": "9.0", - "x": 1.4757, - "y": 71.7538 - }, - { - "l": "9.0", - "x": 1.4949, - "y": 71.9227 - }, - { - "l": "9.0", - "x": 1.514, - "y": 72.0898 - }, - { - "l": "9.0", - "x": 1.5332, - "y": 72.2546 - }, - { - "l": "9.0", - "x": 1.5524, - "y": 72.4163 - }, - { - "l": "9.0", - "x": 1.5715, - "y": 72.574 - }, - { - "l": "9.0", - "x": 1.5907, - "y": 72.7221 - }, - { - "l": "9.0", - "x": 1.6099, - "y": 72.8619 - }, - { - "l": "9.0", - "x": 1.629, - "y": 72.9988 - }, - { - "l": "9.0", - "x": 1.6482, - "y": 73.1348 - }, - { - "l": "9.0", - "x": 1.6674, - "y": 73.2716 - }, - { - "l": "9.0", - "x": 1.6865, - "y": 73.4183 - }, - { - "l": "9.0", - "x": 1.7057, - "y": 73.5678 - }, - { - "l": "9.0", - "x": 1.7248, - "y": 73.7182 - }, - { - "l": "9.0", - "x": 1.744, - "y": 73.8685 - }, - { - "l": "9.0", - "x": 1.7632, - "y": 74.0175 - }, - { - "l": "9.0", - "x": 1.7823, - "y": 74.1647 - }, - { - "l": "9.0", - "x": 1.8015, - "y": 74.3093 - }, - { - "l": "9.0", - "x": 1.8207, - "y": 74.4507 - }, - { - "l": "9.0", - "x": 1.8398, - "y": 74.5839 - }, - { - "l": "9.0", - "x": 1.859, - "y": 74.7095 - }, - { - "l": "9.0", - "x": 1.8782, - "y": 74.8327 - }, - { - "l": "9.0", - "x": 1.8973, - "y": 74.9551 - }, - { - "l": "9.0", - "x": 1.9165, - "y": 75.0785 - }, - { - "l": "9.0", - "x": 1.9357, - "y": 75.2106 - }, - { - "l": "9.0", - "x": 1.9548, - "y": 75.346 - }, - { - "l": "9.0", - "x": 1.974, - "y": 75.4824 - }, - { - "l": "9.0", - "x": 1.9932, - "y": 75.619 - }, - { - "l": "9.0", - "x": 2.0123, - "y": 75.7549 - }, - { - "l": "9.0", - "x": 2.0957, - "y": 76.3153 - }, - { - "l": "9.0", - "x": 2.179, - "y": 76.8159 - }, - { - "l": "9.0", - "x": 2.2623, - "y": 77.3661 - }, - { - "l": "9.0", - "x": 2.3457, - "y": 77.8908 - }, - { - "l": "9.0", - "x": 2.429, - "y": 78.3624 - }, - { - "l": "9.0", - "x": 2.5123, - "y": 78.8838 - }, - { - "l": "9.0", - "x": 2.5957, - "y": 79.3841 - }, - { - "l": "9.0", - "x": 2.679, - "y": 79.8357 - }, - { - "l": "9.0", - "x": 2.7623, - "y": 80.3359 - }, - { - "l": "9.0", - "x": 2.8457, - "y": 80.8164 - }, - { - "l": "9.0", - "x": 2.929, - "y": 81.2507 - }, - { - "l": "9.0", - "x": 3.0123, - "y": 81.733 - }, - { - "l": "9.0", - "x": 3.0957, - "y": 82.1984 - }, - { - "l": "9.0", - "x": 3.179, - "y": 82.6213 - }, - { - "l": "9.0", - "x": 3.2623, - "y": 83.0934 - }, - { - "l": "9.0", - "x": 3.3457, - "y": 83.5513 - }, - { - "l": "9.0", - "x": 3.429, - "y": 83.9689 - }, - { - "l": "9.0", - "x": 3.5123, - "y": 84.4368 - }, - { - "l": "9.0", - "x": 3.5957, - "y": 84.8918 - }, - { - "l": "9.0", - "x": 3.679, - "y": 85.3081 - }, - { - "l": "9.0", - "x": 3.7623, - "y": 85.7758 - }, - { - "l": "9.0", - "x": 3.8457, - "y": 86.2324 - }, - { - "l": "9.0", - "x": 3.929, - "y": 86.6519 - }, - { - "l": "9.0", - "x": 4.0123, - "y": 87.1247 - }, - { - "l": "9.0", - "x": 4.0957, - "y": 87.5868 - }, - { - "l": "9.0", - "x": 4.179, - "y": 88.0112 - }, - { - "l": "9.0", - "x": 4.2623, - "y": 88.4889 - }, - { - "l": "9.0", - "x": 4.3457, - "y": 88.9549 - }, - { - "l": "9.0", - "x": 4.429, - "y": 89.3822 - }, - { - "l": "9.0", - "x": 4.5123, - "y": 89.8633 - }, - { - "l": "9.0", - "x": 4.5957, - "y": 90.3339 - }, - { - "l": "9.0", - "x": 4.679, - "y": 90.767 - }, - { - "l": "9.0", - "x": 4.7623, - "y": 91.2559 - }, - { - "l": "9.0", - "x": 4.8457, - "y": 91.7346 - }, - { - "l": "9.0", - "x": 4.929, - "y": 92.1747 - }, - { - "l": "9.0", - "x": 5.0123, - "y": 92.6703 - }, - { - "l": "9.0", - "x": 5.0957, - "y": 93.1541 - }, - { - "l": "9.0", - "x": 5.179, - "y": 93.5976 - }, - { - "l": "9.0", - "x": 5.2623, - "y": 94.0958 - }, - { - "l": "9.0", - "x": 5.3457, - "y": 94.5804 - }, - { - "l": "9.0", - "x": 5.429, - "y": 95.0232 - }, - { - "l": "9.0", - "x": 5.5123, - "y": 95.5188 - }, - { - "l": "9.0", - "x": 5.5957, - "y": 95.9999 - }, - { - "l": "9.0", - "x": 5.679, - "y": 96.4384 - }, - { - "l": "9.0", - "x": 5.7623, - "y": 96.9286 - }, - { - "l": "9.0", - "x": 5.8457, - "y": 97.4036 - }, - { - "l": "9.0", - "x": 5.929, - "y": 97.8363 - }, - { - "l": "9.0", - "x": 6.0123, - "y": 98.3199 - }, - { - "l": "9.0", - "x": 6.0957, - "y": 98.7886 - }, - { - "l": "9.0", - "x": 6.179, - "y": 99.2155 - }, - { - "l": "9.0", - "x": 6.2623, - "y": 99.6921 - }, - { - "l": "9.0", - "x": 6.3457, - "y": 100.1538 - }, - { - "l": "9.0", - "x": 6.429, - "y": 100.5737 - }, - { - "l": "9.0", - "x": 6.5123, - "y": 101.0425 - }, - { - "l": "9.0", - "x": 6.5957, - "y": 101.4962 - }, - { - "l": "9.0", - "x": 6.679, - "y": 101.9089 - }, - { - "l": "9.0", - "x": 6.7623, - "y": 102.3691 - }, - { - "l": "9.0", - "x": 6.8457, - "y": 102.8138 - }, - { - "l": "9.0", - "x": 6.929, - "y": 103.2173 - }, - { - "l": "9.0", - "x": 7.0123, - "y": 103.6663 - }, - { - "l": "9.0", - "x": 7.0957, - "y": 104.0993 - }, - { - "l": "9.0", - "x": 7.179, - "y": 104.4915 - }, - { - "l": "9.0", - "x": 7.2623, - "y": 104.9274 - }, - { - "l": "9.0", - "x": 7.3457, - "y": 105.3477 - }, - { - "l": "9.0", - "x": 7.429, - "y": 105.7283 - }, - { - "l": "9.0", - "x": 7.5123, - "y": 106.1516 - }, - { - "l": "9.0", - "x": 7.5957, - "y": 106.5599 - }, - { - "l": "9.0", - "x": 7.679, - "y": 106.9305 - }, - { - "l": "9.0", - "x": 7.7623, - "y": 107.3434 - }, - { - "l": "9.0", - "x": 7.8457, - "y": 107.7427 - }, - { - "l": "9.0", - "x": 7.929, - "y": 108.1056 - }, - { - "l": "9.0", - "x": 8.0123, - "y": 108.5107 - }, - { - "l": "9.0", - "x": 8.0957, - "y": 108.9031 - }, - { - "l": "9.0", - "x": 8.179, - "y": 109.2608 - }, - { - "l": "9.0", - "x": 8.2623, - "y": 109.6608 - }, - { - "l": "9.0", - "x": 8.3457, - "y": 110.0488 - }, - { - "l": "9.0", - "x": 8.429, - "y": 110.4027 - }, - { - "l": "9.0", - "x": 8.5123, - "y": 110.7989 - }, - { - "l": "9.0", - "x": 8.5957, - "y": 111.1843 - }, - { - "l": "9.0", - "x": 8.679, - "y": 111.5372 - }, - { - "l": "9.0", - "x": 8.7623, - "y": 111.934 - }, - { - "l": "9.0", - "x": 8.8457, - "y": 112.3217 - }, - { - "l": "9.0", - "x": 8.929, - "y": 112.6782 - }, - { - "l": "9.0", - "x": 9.0123, - "y": 113.0807 - }, - { - "l": "9.0", - "x": 9.0957, - "y": 113.4749 - }, - { - "l": "9.0", - "x": 9.179, - "y": 113.8377 - }, - { - "l": "9.0", - "x": 9.2623, - "y": 114.2473 - }, - { - "l": "9.0", - "x": 9.3457, - "y": 114.6484 - }, - { - "l": "9.0", - "x": 9.429, - "y": 115.0174 - }, - { - "l": "9.0", - "x": 9.5123, - "y": 115.4336 - }, - { - "l": "9.0", - "x": 9.5957, - "y": 115.8406 - }, - { - "l": "9.0", - "x": 9.679, - "y": 116.2148 - }, - { - "l": "9.0", - "x": 9.7623, - "y": 116.6368 - }, - { - "l": "9.0", - "x": 9.8457, - "y": 117.0501 - }, - { - "l": "9.0", - "x": 9.929, - "y": 117.4304 - }, - { - "l": "9.0", - "x": 10.0123, - "y": 117.8607 - }, - { - "l": "9.0", - "x": 10.0957, - "y": 118.2832 - }, - { - "l": "9.0", - "x": 10.179, - "y": 118.6733 - }, - { - "l": "9.0", - "x": 10.2623, - "y": 119.1153 - }, - { - "l": "9.0", - "x": 10.3457, - "y": 119.5497 - }, - { - "l": "9.0", - "x": 10.429, - "y": 119.9511 - }, - { - "l": "9.0", - "x": 10.5123, - "y": 120.4056 - }, - { - "l": "9.0", - "x": 10.5957, - "y": 120.8523 - }, - { - "l": "9.0", - "x": 10.679, - "y": 121.265 - }, - { - "l": "9.0", - "x": 10.7623, - "y": 121.732 - }, - { - "l": "9.0", - "x": 10.8457, - "y": 122.1912 - }, - { - "l": "9.0", - "x": 10.929, - "y": 122.615 - }, - { - "l": "9.0", - "x": 11.0123, - "y": 123.0949 - }, - { - "l": "9.0", - "x": 11.0957, - "y": 123.5662 - }, - { - "l": "9.0", - "x": 11.179, - "y": 124.0012 - }, - { - "l": "9.0", - "x": 11.2623, - "y": 124.4938 - }, - { - "l": "9.0", - "x": 11.3457, - "y": 124.9776 - }, - { - "l": "9.0", - "x": 11.429, - "y": 125.424 - }, - { - "l": "9.0", - "x": 11.5123, - "y": 125.9287 - }, - { - "l": "9.0", - "x": 11.5957, - "y": 126.4233 - }, - { - "l": "9.0", - "x": 11.679, - "y": 126.8784 - }, - { - "l": "9.0", - "x": 11.7623, - "y": 127.3916 - }, - { - "l": "9.0", - "x": 11.8457, - "y": 127.8937 - }, - { - "l": "9.0", - "x": 11.929, - "y": 128.3549 - }, - { - "l": "9.0", - "x": 12.0123, - "y": 128.8743 - }, - { - "l": "9.0", - "x": 12.0957, - "y": 129.3812 - }, - { - "l": "9.0", - "x": 12.179, - "y": 129.8455 - }, - { - "l": "9.0", - "x": 12.2623, - "y": 130.3667 - }, - { - "l": "9.0", - "x": 12.3457, - "y": 130.8732 - }, - { - "l": "9.0", - "x": 12.429, - "y": 131.3354 - }, - { - "l": "9.0", - "x": 12.5123, - "y": 131.8519 - }, - { - "l": "9.0", - "x": 12.5957, - "y": 132.3517 - }, - { - "l": "9.0", - "x": 12.679, - "y": 132.8054 - }, - { - "l": "9.0", - "x": 12.7623, - "y": 133.3096 - }, - { - "l": "9.0", - "x": 12.8457, - "y": 133.7955 - }, - { - "l": "9.0", - "x": 12.929, - "y": 134.2339 - }, - { - "l": "9.0", - "x": 13.0123, - "y": 134.7191 - }, - { - "l": "9.0", - "x": 13.0957, - "y": 135.1844 - }, - { - "l": "9.0", - "x": 13.179, - "y": 135.6031 - }, - { - "l": "9.0", - "x": 13.2623, - "y": 136.0655 - }, - { - "l": "9.0", - "x": 13.3457, - "y": 136.508 - }, - { - "l": "9.0", - "x": 13.429, - "y": 136.905 - }, - { - "l": "9.0", - "x": 13.5123, - "y": 137.3427 - }, - { - "l": "9.0", - "x": 13.5957, - "y": 137.7603 - }, - { - "l": "9.0", - "x": 13.679, - "y": 138.1331 - }, - { - "l": "9.0", - "x": 13.7623, - "y": 138.5425 - }, - { - "l": "9.0", - "x": 13.8457, - "y": 138.9302 - }, - { - "l": "9.0", - "x": 13.929, - "y": 139.2766 - }, - { - "l": "9.0", - "x": 14.0123, - "y": 139.6542 - }, - { - "l": "9.0", - "x": 14.0957, - "y": 140.0107 - }, - { - "l": "9.0", - "x": 14.179, - "y": 140.3269 - }, - { - "l": "9.0", - "x": 14.2623, - "y": 140.6713 - }, - { - "l": "9.0", - "x": 14.3457, - "y": 140.9959 - }, - { - "l": "9.0", - "x": 14.429, - "y": 141.2832 - }, - { - "l": "9.0", - "x": 14.5123, - "y": 141.5956 - }, - { - "l": "9.0", - "x": 14.5957, - "y": 141.8898 - }, - { - "l": "9.0", - "x": 14.679, - "y": 142.1497 - }, - { - "l": "9.0", - "x": 14.7623, - "y": 142.4319 - }, - { - "l": "9.0", - "x": 14.8457, - "y": 142.6973 - }, - { - "l": "9.0", - "x": 14.929, - "y": 142.9311 - }, - { - "l": "9.0", - "x": 15.0123, - "y": 143.1844 - }, - { - "l": "9.0", - "x": 15.0957, - "y": 143.4247 - }, - { - "l": "9.0", - "x": 15.179, - "y": 143.6357 - }, - { - "l": "9.0", - "x": 15.2623, - "y": 143.8648 - }, - { - "l": "9.0", - "x": 15.3457, - "y": 144.0802 - }, - { - "l": "9.0", - "x": 15.429, - "y": 144.2714 - }, - { - "l": "9.0", - "x": 15.5123, - "y": 144.4786 - }, - { - "l": "9.0", - "x": 15.5957, - "y": 144.6743 - }, - { - "l": "9.0", - "x": 15.679, - "y": 144.8471 - }, - { - "l": "9.0", - "x": 15.7623, - "y": 145.0345 - }, - { - "l": "9.0", - "x": 15.8457, - "y": 145.2126 - }, - { - "l": "9.0", - "x": 15.929, - "y": 145.3692 - }, - { - "l": "9.0", - "x": 16.0123, - "y": 145.5394 - }, - { - "l": "9.0", - "x": 16.0957, - "y": 145.6994 - }, - { - "l": "9.0", - "x": 16.179, - "y": 145.8411 - }, - { - "l": "9.0", - "x": 16.2623, - "y": 145.9958 - }, - { - "l": "9.0", - "x": 16.3457, - "y": 146.1416 - }, - { - "l": "9.0", - "x": 16.429, - "y": 146.2713 - }, - { - "l": "9.0", - "x": 16.5123, - "y": 146.4122 - }, - { - "l": "9.0", - "x": 16.5957, - "y": 146.5456 - }, - { - "l": "9.0", - "x": 16.679, - "y": 146.6641 - }, - { - "l": "9.0", - "x": 16.7623, - "y": 146.7935 - }, - { - "l": "9.0", - "x": 16.8457, - "y": 146.916 - }, - { - "l": "9.0", - "x": 16.929, - "y": 147.0248 - }, - { - "l": "9.0", - "x": 17.0123, - "y": 147.1437 - }, - { - "l": "9.0", - "x": 17.0957, - "y": 147.2556 - }, - { - "l": "9.0", - "x": 17.179, - "y": 147.3557 - }, - { - "l": "9.0", - "x": 17.2623, - "y": 147.4661 - }, - { - "l": "9.0", - "x": 17.3457, - "y": 147.5692 - }, - { - "l": "9.0", - "x": 17.429, - "y": 147.6623 - }, - { - "l": "9.0", - "x": 17.5123, - "y": 147.7639 - }, - { - "l": "9.0", - "x": 17.5957, - "y": 147.8595 - }, - { - "l": "9.0", - "x": 17.679, - "y": 147.9443 - }, - { - "l": "9.0", - "x": 17.7623, - "y": 148.0387 - }, - { - "l": "9.0", - "x": 17.8457, - "y": 148.1271 - }, - { - "l": "9.0", - "x": 17.929, - "y": 148.2057 - }, - { - "l": "9.0", - "x": 18.0123, - "y": 148.2913 - }, - { - "l": "9.0", - "x": 18.0957, - "y": 148.3722 - }, - { - "l": "9.0", - "x": 18.179, - "y": 148.4438 - }, - { - "l": "9.0", - "x": 18.2623, - "y": 148.5227 - }, - { - "l": "9.0", - "x": 18.3457, - "y": 148.5954 - }, - { - "l": "9.0", - "x": 18.429, - "y": 148.6601 - }, - { - "l": "9.0", - "x": 18.5123, - "y": 148.733 - }, - { - "l": "9.0", - "x": 18.5957, - "y": 148.8032 - }, - { - "l": "9.0", - "x": 18.679, - "y": 148.8631 - }, - { - "l": "9.0", - "x": 18.7623, - "y": 148.929 - }, - { - "l": "9.0", - "x": 18.8457, - "y": 148.9908 - }, - { - "l": "9.0", - "x": 18.929, - "y": 149.0458 - }, - { - "l": "9.0", - "x": 19.0123, - "y": 149.1033 - }, - { - "l": "9.0", - "x": 19.0957, - "y": 149.1597 - }, - { - "l": "9.0", - "x": 19.179, - "y": 149.2102 - }, - { - "l": "9.0", - "x": 19.2623, - "y": 149.2589 - }, - { - "l": "9.0", - "x": 19.3457, - "y": 149.3063 - }, - { - "l": "9.0", - "x": 19.429, - "y": 149.3496 - }, - { - "l": "9.0", - "x": 19.5123, - "y": 149.3983 - }, - { - "l": "9.0", - "x": 19.5957, - "y": 149.4457 - }, - { - "l": "9.0", - "x": 19.679, - "y": 149.4873 - }, - { - "l": "9.0", - "x": 19.7623, - "y": 149.5286 - }, - { - "l": "9.0", - "x": 19.8457, - "y": 149.568 - }, - { - "l": "9.0", - "x": 19.929, - "y": 149.6011 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 0.0, - "y": 47.838 - }, - { - "l": "25.0", - "x": 0.0192, - "y": 48.453 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 49.0682 - }, - { - "l": "25.0", - "x": 0.0575, - "y": 49.6834 - }, - { - "l": "25.0", - "x": 0.0767, - "y": 50.2987 - }, - { - "l": "25.0", - "x": 0.0958, - "y": 50.8621 - }, - { - "l": "25.0", - "x": 0.115, - "y": 51.4029 - }, - { - "l": "25.0", - "x": 0.1342, - "y": 51.9369 - }, - { - "l": "25.0", - "x": 0.1533, - "y": 52.4702 - }, - { - "l": "25.0", - "x": 0.1725, - "y": 53.0136 - }, - { - "l": "25.0", - "x": 0.1916, - "y": 53.5948 - }, - { - "l": "25.0", - "x": 0.2108, - "y": 54.1805 - }, - { - "l": "25.0", - "x": 0.23, - "y": 54.7664 - }, - { - "l": "25.0", - "x": 0.2491, - "y": 55.3483 - }, - { - "l": "25.0", - "x": 0.2683, - "y": 55.9193 - }, - { - "l": "25.0", - "x": 0.2875, - "y": 56.4785 - }, - { - "l": "25.0", - "x": 0.3066, - "y": 57.023 - }, - { - "l": "25.0", - "x": 0.3258, - "y": 57.5493 - }, - { - "l": "25.0", - "x": 0.345, - "y": 58.0322 - }, - { - "l": "25.0", - "x": 0.3641, - "y": 58.4896 - }, - { - "l": "25.0", - "x": 0.3833, - "y": 58.9332 - }, - { - "l": "25.0", - "x": 0.4025, - "y": 59.3685 - }, - { - "l": "25.0", - "x": 0.4216, - "y": 59.8033 - }, - { - "l": "25.0", - "x": 0.4408, - "y": 60.2639 - }, - { - "l": "25.0", - "x": 0.46, - "y": 60.7218 - }, - { - "l": "25.0", - "x": 0.4791, - "y": 61.1738 - }, - { - "l": "25.0", - "x": 0.4983, - "y": 61.6168 - }, - { - "l": "25.0", - "x": 0.5175, - "y": 62.0437 - }, - { - "l": "25.0", - "x": 0.5366, - "y": 62.4564 - }, - { - "l": "25.0", - "x": 0.5558, - "y": 62.8535 - }, - { - "l": "25.0", - "x": 0.5749, - "y": 63.2335 - }, - { - "l": "25.0", - "x": 0.5941, - "y": 63.5801 - }, - { - "l": "25.0", - "x": 0.6133, - "y": 63.9045 - }, - { - "l": "25.0", - "x": 0.6324, - "y": 64.2164 - }, - { - "l": "25.0", - "x": 0.6516, - "y": 64.5203 - }, - { - "l": "25.0", - "x": 0.6708, - "y": 64.8217 - }, - { - "l": "25.0", - "x": 0.6899, - "y": 65.1419 - }, - { - "l": "25.0", - "x": 0.7091, - "y": 65.4601 - }, - { - "l": "25.0", - "x": 0.7283, - "y": 65.7745 - }, - { - "l": "25.0", - "x": 0.7474, - "y": 66.0834 - }, - { - "l": "25.0", - "x": 0.7666, - "y": 66.3833 - }, - { - "l": "25.0", - "x": 0.7858, - "y": 66.6745 - }, - { - "l": "25.0", - "x": 0.8049, - "y": 66.9562 - }, - { - "l": "25.0", - "x": 0.8241, - "y": 67.2273 - }, - { - "l": "25.0", - "x": 0.8433, - "y": 67.477 - }, - { - "l": "25.0", - "x": 0.8624, - "y": 67.712 - }, - { - "l": "25.0", - "x": 0.8816, - "y": 67.9397 - }, - { - "l": "25.0", - "x": 0.9008, - "y": 68.1633 - }, - { - "l": "25.0", - "x": 0.9199, - "y": 68.3861 - }, - { - "l": "25.0", - "x": 0.9391, - "y": 68.6252 - }, - { - "l": "25.0", - "x": 0.9582, - "y": 68.8645 - }, - { - "l": "25.0", - "x": 0.9774, - "y": 69.1029 - }, - { - "l": "25.0", - "x": 0.9966, - "y": 69.3389 - }, - { - "l": "25.0", - "x": 1.0157, - "y": 69.5704 - }, - { - "l": "25.0", - "x": 1.0349, - "y": 69.7969 - }, - { - "l": "25.0", - "x": 1.0541, - "y": 70.0176 - }, - { - "l": "25.0", - "x": 1.0732, - "y": 70.2317 - }, - { - "l": "25.0", - "x": 1.0924, - "y": 70.4306 - }, - { - "l": "25.0", - "x": 1.1116, - "y": 70.6185 - }, - { - "l": "25.0", - "x": 1.1307, - "y": 70.802 - }, - { - "l": "25.0", - "x": 1.1499, - "y": 70.9835 - }, - { - "l": "25.0", - "x": 1.1691, - "y": 71.1656 - }, - { - "l": "25.0", - "x": 1.1882, - "y": 71.3614 - }, - { - "l": "25.0", - "x": 1.2074, - "y": 71.5594 - }, - { - "l": "25.0", - "x": 1.2266, - "y": 71.7577 - }, - { - "l": "25.0", - "x": 1.2457, - "y": 71.9553 - }, - { - "l": "25.0", - "x": 1.2649, - "y": 72.1505 - }, - { - "l": "25.0", - "x": 1.2841, - "y": 72.3427 - }, - { - "l": "25.0", - "x": 1.3032, - "y": 72.531 - }, - { - "l": "25.0", - "x": 1.3224, - "y": 72.7145 - }, - { - "l": "25.0", - "x": 1.3415, - "y": 72.886 - }, - { - "l": "25.0", - "x": 1.3607, - "y": 73.0482 - }, - { - "l": "25.0", - "x": 1.3799, - "y": 73.207 - }, - { - "l": "25.0", - "x": 1.399, - "y": 73.3646 - }, - { - "l": "25.0", - "x": 1.4182, - "y": 73.523 - }, - { - "l": "25.0", - "x": 1.4374, - "y": 73.6931 - }, - { - "l": "25.0", - "x": 1.4565, - "y": 73.8658 - }, - { - "l": "25.0", - "x": 1.4757, - "y": 74.0392 - }, - { - "l": "25.0", - "x": 1.4949, - "y": 74.2122 - }, - { - "l": "25.0", - "x": 1.514, - "y": 74.3836 - }, - { - "l": "25.0", - "x": 1.5332, - "y": 74.5525 - }, - { - "l": "25.0", - "x": 1.5524, - "y": 74.7183 - }, - { - "l": "25.0", - "x": 1.5715, - "y": 74.8801 - }, - { - "l": "25.0", - "x": 1.5907, - "y": 75.032 - }, - { - "l": "25.0", - "x": 1.6099, - "y": 75.1754 - }, - { - "l": "25.0", - "x": 1.629, - "y": 75.3159 - }, - { - "l": "25.0", - "x": 1.6482, - "y": 75.4555 - }, - { - "l": "25.0", - "x": 1.6674, - "y": 75.596 - }, - { - "l": "25.0", - "x": 1.6865, - "y": 75.7465 - }, - { - "l": "25.0", - "x": 1.7057, - "y": 75.9001 - }, - { - "l": "25.0", - "x": 1.7248, - "y": 76.0545 - }, - { - "l": "25.0", - "x": 1.744, - "y": 76.2089 - }, - { - "l": "25.0", - "x": 1.7632, - "y": 76.362 - }, - { - "l": "25.0", - "x": 1.7823, - "y": 76.5132 - }, - { - "l": "25.0", - "x": 1.8015, - "y": 76.6619 - }, - { - "l": "25.0", - "x": 1.8207, - "y": 76.8072 - }, - { - "l": "25.0", - "x": 1.8398, - "y": 76.9442 - }, - { - "l": "25.0", - "x": 1.859, - "y": 77.0733 - }, - { - "l": "25.0", - "x": 1.8782, - "y": 77.1999 - }, - { - "l": "25.0", - "x": 1.8973, - "y": 77.3259 - }, - { - "l": "25.0", - "x": 1.9165, - "y": 77.4528 - }, - { - "l": "25.0", - "x": 1.9357, - "y": 77.5887 - }, - { - "l": "25.0", - "x": 1.9548, - "y": 77.7281 - }, - { - "l": "25.0", - "x": 1.974, - "y": 77.8684 - }, - { - "l": "25.0", - "x": 1.9932, - "y": 78.009 - }, - { - "l": "25.0", - "x": 2.0123, - "y": 78.1489 - }, - { - "l": "25.0", - "x": 2.0957, - "y": 78.726 - }, - { - "l": "25.0", - "x": 2.179, - "y": 79.2419 - }, - { - "l": "25.0", - "x": 2.2623, - "y": 79.8092 - }, - { - "l": "25.0", - "x": 2.3457, - "y": 80.3505 - }, - { - "l": "25.0", - "x": 2.429, - "y": 80.8373 - }, - { - "l": "25.0", - "x": 2.5123, - "y": 81.3758 - }, - { - "l": "25.0", - "x": 2.5957, - "y": 81.8927 - }, - { - "l": "25.0", - "x": 2.679, - "y": 82.3595 - }, - { - "l": "25.0", - "x": 2.7623, - "y": 82.8768 - }, - { - "l": "25.0", - "x": 2.8457, - "y": 83.374 - }, - { - "l": "25.0", - "x": 2.929, - "y": 83.8235 - }, - { - "l": "25.0", - "x": 3.0123, - "y": 84.323 - }, - { - "l": "25.0", - "x": 3.0957, - "y": 84.8053 - }, - { - "l": "25.0", - "x": 3.179, - "y": 85.2436 - }, - { - "l": "25.0", - "x": 3.2623, - "y": 85.7332 - }, - { - "l": "25.0", - "x": 3.3457, - "y": 86.2082 - }, - { - "l": "25.0", - "x": 3.429, - "y": 86.6416 - }, - { - "l": "25.0", - "x": 3.5123, - "y": 87.1274 - }, - { - "l": "25.0", - "x": 3.5957, - "y": 87.6001 - }, - { - "l": "25.0", - "x": 3.679, - "y": 88.0326 - }, - { - "l": "25.0", - "x": 3.7623, - "y": 88.5188 - }, - { - "l": "25.0", - "x": 3.8457, - "y": 88.9936 - }, - { - "l": "25.0", - "x": 3.929, - "y": 89.43 - }, - { - "l": "25.0", - "x": 4.0123, - "y": 89.922 - }, - { - "l": "25.0", - "x": 4.0957, - "y": 90.403 - }, - { - "l": "25.0", - "x": 4.179, - "y": 90.8449 - }, - { - "l": "25.0", - "x": 4.2623, - "y": 91.3424 - }, - { - "l": "25.0", - "x": 4.3457, - "y": 91.8279 - }, - { - "l": "25.0", - "x": 4.429, - "y": 92.2733 - }, - { - "l": "25.0", - "x": 4.5123, - "y": 92.7749 - }, - { - "l": "25.0", - "x": 4.5957, - "y": 93.2657 - }, - { - "l": "25.0", - "x": 4.679, - "y": 93.7174 - }, - { - "l": "25.0", - "x": 4.7623, - "y": 94.2276 - }, - { - "l": "25.0", - "x": 4.8457, - "y": 94.7273 - }, - { - "l": "25.0", - "x": 4.929, - "y": 95.1867 - }, - { - "l": "25.0", - "x": 5.0123, - "y": 95.7042 - }, - { - "l": "25.0", - "x": 5.0957, - "y": 96.2095 - }, - { - "l": "25.0", - "x": 5.179, - "y": 96.6729 - }, - { - "l": "25.0", - "x": 5.2623, - "y": 97.1935 - }, - { - "l": "25.0", - "x": 5.3457, - "y": 97.7 - }, - { - "l": "25.0", - "x": 5.429, - "y": 98.1629 - }, - { - "l": "25.0", - "x": 5.5123, - "y": 98.6811 - }, - { - "l": "25.0", - "x": 5.5957, - "y": 99.1843 - }, - { - "l": "25.0", - "x": 5.679, - "y": 99.643 - }, - { - "l": "25.0", - "x": 5.7623, - "y": 100.1558 - }, - { - "l": "25.0", - "x": 5.8457, - "y": 100.6528 - }, - { - "l": "25.0", - "x": 5.929, - "y": 101.1057 - }, - { - "l": "25.0", - "x": 6.0123, - "y": 101.6118 - }, - { - "l": "25.0", - "x": 6.0957, - "y": 102.1024 - }, - { - "l": "25.0", - "x": 6.179, - "y": 102.5492 - }, - { - "l": "25.0", - "x": 6.2623, - "y": 103.0482 - }, - { - "l": "25.0", - "x": 6.3457, - "y": 103.5315 - }, - { - "l": "25.0", - "x": 6.429, - "y": 103.9711 - }, - { - "l": "25.0", - "x": 6.5123, - "y": 104.4619 - }, - { - "l": "25.0", - "x": 6.5957, - "y": 104.9369 - }, - { - "l": "25.0", - "x": 6.679, - "y": 105.3689 - }, - { - "l": "25.0", - "x": 6.7623, - "y": 105.8506 - }, - { - "l": "25.0", - "x": 6.8457, - "y": 106.316 - }, - { - "l": "25.0", - "x": 6.929, - "y": 106.7383 - }, - { - "l": "25.0", - "x": 7.0123, - "y": 107.2082 - }, - { - "l": "25.0", - "x": 7.0957, - "y": 107.6613 - }, - { - "l": "25.0", - "x": 7.179, - "y": 108.0717 - }, - { - "l": "25.0", - "x": 7.2623, - "y": 108.5277 - }, - { - "l": "25.0", - "x": 7.3457, - "y": 108.9673 - }, - { - "l": "25.0", - "x": 7.429, - "y": 109.3655 - }, - { - "l": "25.0", - "x": 7.5123, - "y": 109.8082 - }, - { - "l": "25.0", - "x": 7.5957, - "y": 110.2352 - }, - { - "l": "25.0", - "x": 7.679, - "y": 110.6227 - }, - { - "l": "25.0", - "x": 7.7623, - "y": 111.0544 - }, - { - "l": "25.0", - "x": 7.8457, - "y": 111.4717 - }, - { - "l": "25.0", - "x": 7.929, - "y": 111.851 - }, - { - "l": "25.0", - "x": 8.0123, - "y": 112.2743 - }, - { - "l": "25.0", - "x": 8.0957, - "y": 112.6844 - }, - { - "l": "25.0", - "x": 8.179, - "y": 113.0579 - }, - { - "l": "25.0", - "x": 8.2623, - "y": 113.4757 - }, - { - "l": "25.0", - "x": 8.3457, - "y": 113.8808 - }, - { - "l": "25.0", - "x": 8.429, - "y": 114.2502 - }, - { - "l": "25.0", - "x": 8.5123, - "y": 114.6638 - }, - { - "l": "25.0", - "x": 8.5957, - "y": 115.0659 - }, - { - "l": "25.0", - "x": 8.679, - "y": 115.434 - }, - { - "l": "25.0", - "x": 8.7623, - "y": 115.8478 - }, - { - "l": "25.0", - "x": 8.8457, - "y": 116.252 - }, - { - "l": "25.0", - "x": 8.929, - "y": 116.6235 - }, - { - "l": "25.0", - "x": 9.0123, - "y": 117.0429 - }, - { - "l": "25.0", - "x": 9.0957, - "y": 117.4534 - }, - { - "l": "25.0", - "x": 9.179, - "y": 117.8311 - }, - { - "l": "25.0", - "x": 9.2623, - "y": 118.2574 - }, - { - "l": "25.0", - "x": 9.3457, - "y": 118.6748 - }, - { - "l": "25.0", - "x": 9.429, - "y": 119.0585 - }, - { - "l": "25.0", - "x": 9.5123, - "y": 119.4912 - }, - { - "l": "25.0", - "x": 9.5957, - "y": 119.9141 - }, - { - "l": "25.0", - "x": 9.679, - "y": 120.3028 - }, - { - "l": "25.0", - "x": 9.7623, - "y": 120.7409 - }, - { - "l": "25.0", - "x": 9.8457, - "y": 121.1698 - }, - { - "l": "25.0", - "x": 9.929, - "y": 121.5643 - }, - { - "l": "25.0", - "x": 10.0123, - "y": 122.0104 - }, - { - "l": "25.0", - "x": 10.0957, - "y": 122.4482 - }, - { - "l": "25.0", - "x": 10.179, - "y": 122.8523 - }, - { - "l": "25.0", - "x": 10.2623, - "y": 123.3098 - }, - { - "l": "25.0", - "x": 10.3457, - "y": 123.7592 - }, - { - "l": "25.0", - "x": 10.429, - "y": 124.1742 - }, - { - "l": "25.0", - "x": 10.5123, - "y": 124.6439 - }, - { - "l": "25.0", - "x": 10.5957, - "y": 125.1053 - }, - { - "l": "25.0", - "x": 10.679, - "y": 125.5312 - }, - { - "l": "25.0", - "x": 10.7623, - "y": 126.0129 - }, - { - "l": "25.0", - "x": 10.8457, - "y": 126.4862 - }, - { - "l": "25.0", - "x": 10.929, - "y": 126.9228 - }, - { - "l": "25.0", - "x": 11.0123, - "y": 127.4169 - }, - { - "l": "25.0", - "x": 11.0957, - "y": 127.9016 - }, - { - "l": "25.0", - "x": 11.179, - "y": 128.3489 - }, - { - "l": "25.0", - "x": 11.2623, - "y": 128.8549 - }, - { - "l": "25.0", - "x": 11.3457, - "y": 129.3515 - }, - { - "l": "25.0", - "x": 11.429, - "y": 129.8095 - }, - { - "l": "25.0", - "x": 11.5123, - "y": 130.3267 - }, - { - "l": "25.0", - "x": 11.5957, - "y": 130.8333 - }, - { - "l": "25.0", - "x": 11.679, - "y": 131.2991 - }, - { - "l": "25.0", - "x": 11.7623, - "y": 131.824 - }, - { - "l": "25.0", - "x": 11.8457, - "y": 132.337 - }, - { - "l": "25.0", - "x": 11.929, - "y": 132.8079 - }, - { - "l": "25.0", - "x": 12.0123, - "y": 133.3379 - }, - { - "l": "25.0", - "x": 12.0957, - "y": 133.8546 - }, - { - "l": "25.0", - "x": 12.179, - "y": 134.3275 - }, - { - "l": "25.0", - "x": 12.2623, - "y": 134.858 - }, - { - "l": "25.0", - "x": 12.3457, - "y": 135.3731 - }, - { - "l": "25.0", - "x": 12.429, - "y": 135.8427 - }, - { - "l": "25.0", - "x": 12.5123, - "y": 136.3671 - }, - { - "l": "25.0", - "x": 12.5957, - "y": 136.8742 - }, - { - "l": "25.0", - "x": 12.679, - "y": 137.3341 - }, - { - "l": "25.0", - "x": 12.7623, - "y": 137.8449 - }, - { - "l": "25.0", - "x": 12.8457, - "y": 138.3367 - }, - { - "l": "25.0", - "x": 12.929, - "y": 138.78 - }, - { - "l": "25.0", - "x": 13.0123, - "y": 139.2705 - }, - { - "l": "25.0", - "x": 13.0957, - "y": 139.7403 - }, - { - "l": "25.0", - "x": 13.179, - "y": 140.1628 - }, - { - "l": "25.0", - "x": 13.2623, - "y": 140.6292 - }, - { - "l": "25.0", - "x": 13.3457, - "y": 141.0751 - }, - { - "l": "25.0", - "x": 13.429, - "y": 141.4749 - }, - { - "l": "25.0", - "x": 13.5123, - "y": 141.9154 - }, - { - "l": "25.0", - "x": 13.5957, - "y": 142.3355 - }, - { - "l": "25.0", - "x": 13.679, - "y": 142.7103 - }, - { - "l": "25.0", - "x": 13.7623, - "y": 143.1215 - }, - { - "l": "25.0", - "x": 13.8457, - "y": 143.5108 - }, - { - "l": "25.0", - "x": 13.929, - "y": 143.8584 - }, - { - "l": "25.0", - "x": 14.0123, - "y": 144.2371 - }, - { - "l": "25.0", - "x": 14.0957, - "y": 144.5946 - }, - { - "l": "25.0", - "x": 14.179, - "y": 144.9114 - }, - { - "l": "25.0", - "x": 14.2623, - "y": 145.2563 - }, - { - "l": "25.0", - "x": 14.3457, - "y": 145.5812 - }, - { - "l": "25.0", - "x": 14.429, - "y": 145.8687 - }, - { - "l": "25.0", - "x": 14.5123, - "y": 146.1812 - }, - { - "l": "25.0", - "x": 14.5957, - "y": 146.4755 - }, - { - "l": "25.0", - "x": 14.679, - "y": 146.7353 - }, - { - "l": "25.0", - "x": 14.7623, - "y": 147.0173 - }, - { - "l": "25.0", - "x": 14.8457, - "y": 147.2824 - }, - { - "l": "25.0", - "x": 14.929, - "y": 147.516 - }, - { - "l": "25.0", - "x": 15.0123, - "y": 147.7688 - }, - { - "l": "25.0", - "x": 15.0957, - "y": 148.0087 - }, - { - "l": "25.0", - "x": 15.179, - "y": 148.2193 - }, - { - "l": "25.0", - "x": 15.2623, - "y": 148.4479 - }, - { - "l": "25.0", - "x": 15.3457, - "y": 148.6628 - }, - { - "l": "25.0", - "x": 15.429, - "y": 148.8536 - }, - { - "l": "25.0", - "x": 15.5123, - "y": 149.0601 - }, - { - "l": "25.0", - "x": 15.5957, - "y": 149.2553 - }, - { - "l": "25.0", - "x": 15.679, - "y": 149.4276 - }, - { - "l": "25.0", - "x": 15.7623, - "y": 149.6144 - }, - { - "l": "25.0", - "x": 15.8457, - "y": 149.7919 - }, - { - "l": "25.0", - "x": 15.929, - "y": 149.948 - }, - { - "l": "25.0", - "x": 16.0123, - "y": 150.1176 - }, - { - "l": "25.0", - "x": 16.0957, - "y": 150.2771 - }, - { - "l": "25.0", - "x": 16.179, - "y": 150.4183 - }, - { - "l": "25.0", - "x": 16.2623, - "y": 150.5724 - }, - { - "l": "25.0", - "x": 16.3457, - "y": 150.7176 - }, - { - "l": "25.0", - "x": 16.429, - "y": 150.8469 - }, - { - "l": "25.0", - "x": 16.5123, - "y": 150.9872 - }, - { - "l": "25.0", - "x": 16.5957, - "y": 151.12 - }, - { - "l": "25.0", - "x": 16.679, - "y": 151.2382 - }, - { - "l": "25.0", - "x": 16.7623, - "y": 151.3669 - }, - { - "l": "25.0", - "x": 16.8457, - "y": 151.489 - }, - { - "l": "25.0", - "x": 16.929, - "y": 151.5974 - }, - { - "l": "25.0", - "x": 17.0123, - "y": 151.7158 - }, - { - "l": "25.0", - "x": 17.0957, - "y": 151.8271 - }, - { - "l": "25.0", - "x": 17.179, - "y": 151.9269 - }, - { - "l": "25.0", - "x": 17.2623, - "y": 152.0367 - }, - { - "l": "25.0", - "x": 17.3457, - "y": 152.1394 - }, - { - "l": "25.0", - "x": 17.429, - "y": 152.2321 - }, - { - "l": "25.0", - "x": 17.5123, - "y": 152.3332 - }, - { - "l": "25.0", - "x": 17.5957, - "y": 152.4284 - }, - { - "l": "25.0", - "x": 17.679, - "y": 152.5128 - }, - { - "l": "25.0", - "x": 17.7623, - "y": 152.6068 - }, - { - "l": "25.0", - "x": 17.8457, - "y": 152.6948 - }, - { - "l": "25.0", - "x": 17.929, - "y": 152.773 - }, - { - "l": "25.0", - "x": 18.0123, - "y": 152.8582 - }, - { - "l": "25.0", - "x": 18.0957, - "y": 152.9387 - }, - { - "l": "25.0", - "x": 18.179, - "y": 153.0099 - }, - { - "l": "25.0", - "x": 18.2623, - "y": 153.0885 - }, - { - "l": "25.0", - "x": 18.3457, - "y": 153.1609 - }, - { - "l": "25.0", - "x": 18.429, - "y": 153.2253 - }, - { - "l": "25.0", - "x": 18.5123, - "y": 153.2978 - }, - { - "l": "25.0", - "x": 18.5957, - "y": 153.3676 - }, - { - "l": "25.0", - "x": 18.679, - "y": 153.4273 - }, - { - "l": "25.0", - "x": 18.7623, - "y": 153.4928 - }, - { - "l": "25.0", - "x": 18.8457, - "y": 153.5543 - }, - { - "l": "25.0", - "x": 18.929, - "y": 153.609 - }, - { - "l": "25.0", - "x": 19.0123, - "y": 153.6663 - }, - { - "l": "25.0", - "x": 19.0957, - "y": 153.7224 - }, - { - "l": "25.0", - "x": 19.179, - "y": 153.7726 - }, - { - "l": "25.0", - "x": 19.2623, - "y": 153.8211 - }, - { - "l": "25.0", - "x": 19.3457, - "y": 153.8682 - }, - { - "l": "25.0", - "x": 19.429, - "y": 153.9113 - }, - { - "l": "25.0", - "x": 19.5123, - "y": 153.9598 - }, - { - "l": "25.0", - "x": 19.5957, - "y": 154.0069 - }, - { - "l": "25.0", - "x": 19.679, - "y": 154.0482 - }, - { - "l": "25.0", - "x": 19.7623, - "y": 154.0894 - }, - { - "l": "25.0", - "x": 19.8457, - "y": 154.1286 - }, - { - "l": "25.0", - "x": 19.929, - "y": 154.1615 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 0.0, - "y": 49.5024 - }, - { - "l": "50.0", - "x": 0.0192, - "y": 50.1344 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 50.7665 - }, - { - "l": "50.0", - "x": 0.0575, - "y": 51.3986 - }, - { - "l": "50.0", - "x": 0.0767, - "y": 52.0307 - }, - { - "l": "50.0", - "x": 0.0958, - "y": 52.6093 - }, - { - "l": "50.0", - "x": 0.115, - "y": 53.1647 - }, - { - "l": "50.0", - "x": 0.1342, - "y": 53.7129 - }, - { - "l": "50.0", - "x": 0.1533, - "y": 54.2605 - }, - { - "l": "50.0", - "x": 0.1725, - "y": 54.8182 - }, - { - "l": "50.0", - "x": 0.1916, - "y": 55.4147 - }, - { - "l": "50.0", - "x": 0.2108, - "y": 56.0157 - }, - { - "l": "50.0", - "x": 0.23, - "y": 56.6168 - }, - { - "l": "50.0", - "x": 0.2491, - "y": 57.2136 - }, - { - "l": "50.0", - "x": 0.2683, - "y": 57.7991 - }, - { - "l": "50.0", - "x": 0.2875, - "y": 58.3726 - }, - { - "l": "50.0", - "x": 0.3066, - "y": 58.9307 - }, - { - "l": "50.0", - "x": 0.3258, - "y": 59.4701 - }, - { - "l": "50.0", - "x": 0.345, - "y": 59.965 - }, - { - "l": "50.0", - "x": 0.3641, - "y": 60.4336 - }, - { - "l": "50.0", - "x": 0.3833, - "y": 60.888 - }, - { - "l": "50.0", - "x": 0.4025, - "y": 61.3338 - }, - { - "l": "50.0", - "x": 0.4216, - "y": 61.779 - }, - { - "l": "50.0", - "x": 0.4408, - "y": 62.2505 - }, - { - "l": "50.0", - "x": 0.46, - "y": 62.7192 - }, - { - "l": "50.0", - "x": 0.4791, - "y": 63.1817 - }, - { - "l": "50.0", - "x": 0.4983, - "y": 63.6349 - }, - { - "l": "50.0", - "x": 0.5175, - "y": 64.0716 - }, - { - "l": "50.0", - "x": 0.5366, - "y": 64.4936 - }, - { - "l": "50.0", - "x": 0.5558, - "y": 64.8996 - }, - { - "l": "50.0", - "x": 0.5749, - "y": 65.2879 - }, - { - "l": "50.0", - "x": 0.5941, - "y": 65.6421 - }, - { - "l": "50.0", - "x": 0.6133, - "y": 65.9736 - }, - { - "l": "50.0", - "x": 0.6324, - "y": 66.2922 - }, - { - "l": "50.0", - "x": 0.6516, - "y": 66.6027 - }, - { - "l": "50.0", - "x": 0.6708, - "y": 66.9104 - }, - { - "l": "50.0", - "x": 0.6899, - "y": 67.2374 - }, - { - "l": "50.0", - "x": 0.7091, - "y": 67.5623 - }, - { - "l": "50.0", - "x": 0.7283, - "y": 67.8832 - }, - { - "l": "50.0", - "x": 0.7474, - "y": 68.1985 - }, - { - "l": "50.0", - "x": 0.7666, - "y": 68.5046 - }, - { - "l": "50.0", - "x": 0.7858, - "y": 68.8018 - }, - { - "l": "50.0", - "x": 0.8049, - "y": 69.0893 - }, - { - "l": "50.0", - "x": 0.8241, - "y": 69.3659 - }, - { - "l": "50.0", - "x": 0.8433, - "y": 69.6207 - }, - { - "l": "50.0", - "x": 0.8624, - "y": 69.8605 - }, - { - "l": "50.0", - "x": 0.8816, - "y": 70.0928 - }, - { - "l": "50.0", - "x": 0.9008, - "y": 70.3209 - }, - { - "l": "50.0", - "x": 0.9199, - "y": 70.5483 - }, - { - "l": "50.0", - "x": 0.9391, - "y": 70.7922 - }, - { - "l": "50.0", - "x": 0.9582, - "y": 71.0364 - }, - { - "l": "50.0", - "x": 0.9774, - "y": 71.2797 - }, - { - "l": "50.0", - "x": 0.9966, - "y": 71.5205 - }, - { - "l": "50.0", - "x": 1.0157, - "y": 71.7567 - }, - { - "l": "50.0", - "x": 1.0349, - "y": 71.9879 - }, - { - "l": "50.0", - "x": 1.0541, - "y": 72.2132 - }, - { - "l": "50.0", - "x": 1.0732, - "y": 72.4317 - }, - { - "l": "50.0", - "x": 1.0924, - "y": 72.6348 - }, - { - "l": "50.0", - "x": 1.1116, - "y": 72.8267 - }, - { - "l": "50.0", - "x": 1.1307, - "y": 73.014 - }, - { - "l": "50.0", - "x": 1.1499, - "y": 73.1994 - }, - { - "l": "50.0", - "x": 1.1691, - "y": 73.3854 - }, - { - "l": "50.0", - "x": 1.1882, - "y": 73.5855 - }, - { - "l": "50.0", - "x": 1.2074, - "y": 73.7877 - }, - { - "l": "50.0", - "x": 1.2266, - "y": 73.9904 - }, - { - "l": "50.0", - "x": 1.2457, - "y": 74.1923 - }, - { - "l": "50.0", - "x": 1.2649, - "y": 74.3919 - }, - { - "l": "50.0", - "x": 1.2841, - "y": 74.5884 - }, - { - "l": "50.0", - "x": 1.3032, - "y": 74.781 - }, - { - "l": "50.0", - "x": 1.3224, - "y": 74.9686 - }, - { - "l": "50.0", - "x": 1.3415, - "y": 75.1441 - }, - { - "l": "50.0", - "x": 1.3607, - "y": 75.3101 - }, - { - "l": "50.0", - "x": 1.3799, - "y": 75.4726 - }, - { - "l": "50.0", - "x": 1.399, - "y": 75.6338 - }, - { - "l": "50.0", - "x": 1.4182, - "y": 75.796 - }, - { - "l": "50.0", - "x": 1.4374, - "y": 75.9701 - }, - { - "l": "50.0", - "x": 1.4565, - "y": 76.147 - }, - { - "l": "50.0", - "x": 1.4757, - "y": 76.3245 - }, - { - "l": "50.0", - "x": 1.4949, - "y": 76.5017 - }, - { - "l": "50.0", - "x": 1.514, - "y": 76.6773 - }, - { - "l": "50.0", - "x": 1.5332, - "y": 76.8504 - }, - { - "l": "50.0", - "x": 1.5524, - "y": 77.0203 - }, - { - "l": "50.0", - "x": 1.5715, - "y": 77.1862 - }, - { - "l": "50.0", - "x": 1.5907, - "y": 77.3419 - }, - { - "l": "50.0", - "x": 1.6099, - "y": 77.4889 - }, - { - "l": "50.0", - "x": 1.629, - "y": 77.633 - }, - { - "l": "50.0", - "x": 1.6482, - "y": 77.7762 - }, - { - "l": "50.0", - "x": 1.6674, - "y": 77.9203 - }, - { - "l": "50.0", - "x": 1.6865, - "y": 78.0748 - }, - { - "l": "50.0", - "x": 1.7057, - "y": 78.2324 - }, - { - "l": "50.0", - "x": 1.7248, - "y": 78.3909 - }, - { - "l": "50.0", - "x": 1.744, - "y": 78.5493 - }, - { - "l": "50.0", - "x": 1.7632, - "y": 78.7065 - }, - { - "l": "50.0", - "x": 1.7823, - "y": 78.8618 - }, - { - "l": "50.0", - "x": 1.8015, - "y": 79.0145 - }, - { - "l": "50.0", - "x": 1.8207, - "y": 79.1637 - }, - { - "l": "50.0", - "x": 1.8398, - "y": 79.3044 - }, - { - "l": "50.0", - "x": 1.859, - "y": 79.437 - }, - { - "l": "50.0", - "x": 1.8782, - "y": 79.5672 - }, - { - "l": "50.0", - "x": 1.8973, - "y": 79.6967 - }, - { - "l": "50.0", - "x": 1.9165, - "y": 79.8271 - }, - { - "l": "50.0", - "x": 1.9357, - "y": 79.9669 - }, - { - "l": "50.0", - "x": 1.9548, - "y": 80.1101 - }, - { - "l": "50.0", - "x": 1.974, - "y": 80.2544 - }, - { - "l": "50.0", - "x": 1.9932, - "y": 80.399 - }, - { - "l": "50.0", - "x": 2.0123, - "y": 80.543 - }, - { - "l": "50.0", - "x": 2.0957, - "y": 81.1367 - }, - { - "l": "50.0", - "x": 2.179, - "y": 81.6679 - }, - { - "l": "50.0", - "x": 2.2623, - "y": 82.2522 - }, - { - "l": "50.0", - "x": 2.3457, - "y": 82.8101 - }, - { - "l": "50.0", - "x": 2.429, - "y": 83.3122 - }, - { - "l": "50.0", - "x": 2.5123, - "y": 83.8677 - }, - { - "l": "50.0", - "x": 2.5957, - "y": 84.4012 - }, - { - "l": "50.0", - "x": 2.679, - "y": 84.8833 - }, - { - "l": "50.0", - "x": 2.7623, - "y": 85.4177 - }, - { - "l": "50.0", - "x": 2.8457, - "y": 85.9316 - }, - { - "l": "50.0", - "x": 2.929, - "y": 86.3964 - }, - { - "l": "50.0", - "x": 3.0123, - "y": 86.9131 - }, - { - "l": "50.0", - "x": 3.0957, - "y": 87.4121 - }, - { - "l": "50.0", - "x": 3.179, - "y": 87.8659 - }, - { - "l": "50.0", - "x": 3.2623, - "y": 88.373 - }, - { - "l": "50.0", - "x": 3.3457, - "y": 88.8651 - }, - { - "l": "50.0", - "x": 3.429, - "y": 89.3144 - }, - { - "l": "50.0", - "x": 3.5123, - "y": 89.8181 - }, - { - "l": "50.0", - "x": 3.5957, - "y": 90.3083 - }, - { - "l": "50.0", - "x": 3.679, - "y": 90.7571 - }, - { - "l": "50.0", - "x": 3.7623, - "y": 91.2618 - }, - { - "l": "50.0", - "x": 3.8457, - "y": 91.7548 - }, - { - "l": "50.0", - "x": 3.929, - "y": 92.2081 - }, - { - "l": "50.0", - "x": 4.0123, - "y": 92.7192 - }, - { - "l": "50.0", - "x": 4.0957, - "y": 93.2191 - }, - { - "l": "50.0", - "x": 4.179, - "y": 93.6785 - }, - { - "l": "50.0", - "x": 4.2623, - "y": 94.1959 - }, - { - "l": "50.0", - "x": 4.3457, - "y": 94.701 - }, - { - "l": "50.0", - "x": 4.429, - "y": 95.1644 - }, - { - "l": "50.0", - "x": 4.5123, - "y": 95.6865 - }, - { - "l": "50.0", - "x": 4.5957, - "y": 96.1975 - }, - { - "l": "50.0", - "x": 4.679, - "y": 96.6679 - }, - { - "l": "50.0", - "x": 4.7623, - "y": 97.1993 - }, - { - "l": "50.0", - "x": 4.8457, - "y": 97.7199 - }, - { - "l": "50.0", - "x": 4.929, - "y": 98.1987 - }, - { - "l": "50.0", - "x": 5.0123, - "y": 98.7381 - }, - { - "l": "50.0", - "x": 5.0957, - "y": 99.2649 - }, - { - "l": "50.0", - "x": 5.179, - "y": 99.7481 - }, - { - "l": "50.0", - "x": 5.2623, - "y": 100.2911 - }, - { - "l": "50.0", - "x": 5.3457, - "y": 100.8196 - }, - { - "l": "50.0", - "x": 5.429, - "y": 101.3026 - }, - { - "l": "50.0", - "x": 5.5123, - "y": 101.8434 - }, - { - "l": "50.0", - "x": 5.5957, - "y": 102.3686 - }, - { - "l": "50.0", - "x": 5.679, - "y": 102.8476 - }, - { - "l": "50.0", - "x": 5.7623, - "y": 103.3831 - }, - { - "l": "50.0", - "x": 5.8457, - "y": 103.902 - }, - { - "l": "50.0", - "x": 5.929, - "y": 104.375 - }, - { - "l": "50.0", - "x": 6.0123, - "y": 104.9037 - }, - { - "l": "50.0", - "x": 6.0957, - "y": 105.4162 - }, - { - "l": "50.0", - "x": 6.179, - "y": 105.883 - }, - { - "l": "50.0", - "x": 6.2623, - "y": 106.4043 - }, - { - "l": "50.0", - "x": 6.3457, - "y": 106.9092 - }, - { - "l": "50.0", - "x": 6.429, - "y": 107.3685 - }, - { - "l": "50.0", - "x": 6.5123, - "y": 107.8813 - }, - { - "l": "50.0", - "x": 6.5957, - "y": 108.3776 - }, - { - "l": "50.0", - "x": 6.679, - "y": 108.8289 - }, - { - "l": "50.0", - "x": 6.7623, - "y": 109.332 - }, - { - "l": "50.0", - "x": 6.8457, - "y": 109.8182 - }, - { - "l": "50.0", - "x": 6.929, - "y": 110.2593 - }, - { - "l": "50.0", - "x": 7.0123, - "y": 110.7501 - }, - { - "l": "50.0", - "x": 7.0957, - "y": 111.2233 - }, - { - "l": "50.0", - "x": 7.179, - "y": 111.6518 - }, - { - "l": "50.0", - "x": 7.2623, - "y": 112.128 - }, - { - "l": "50.0", - "x": 7.3457, - "y": 112.587 - }, - { - "l": "50.0", - "x": 7.429, - "y": 113.0026 - }, - { - "l": "50.0", - "x": 7.5123, - "y": 113.4648 - }, - { - "l": "50.0", - "x": 7.5957, - "y": 113.9105 - }, - { - "l": "50.0", - "x": 7.679, - "y": 114.3149 - }, - { - "l": "50.0", - "x": 7.7623, - "y": 114.7653 - }, - { - "l": "50.0", - "x": 7.8457, - "y": 115.2007 - }, - { - "l": "50.0", - "x": 7.929, - "y": 115.5964 - }, - { - "l": "50.0", - "x": 8.0123, - "y": 116.0379 - }, - { - "l": "50.0", - "x": 8.0957, - "y": 116.4656 - }, - { - "l": "50.0", - "x": 8.179, - "y": 116.8551 - }, - { - "l": "50.0", - "x": 8.2623, - "y": 117.2906 - }, - { - "l": "50.0", - "x": 8.3457, - "y": 117.7128 - }, - { - "l": "50.0", - "x": 8.429, - "y": 118.0978 - }, - { - "l": "50.0", - "x": 8.5123, - "y": 118.5286 - }, - { - "l": "50.0", - "x": 8.5957, - "y": 118.9475 - }, - { - "l": "50.0", - "x": 8.679, - "y": 119.3308 - }, - { - "l": "50.0", - "x": 8.7623, - "y": 119.7616 - }, - { - "l": "50.0", - "x": 8.8457, - "y": 120.1823 - }, - { - "l": "50.0", - "x": 8.929, - "y": 120.5688 - }, - { - "l": "50.0", - "x": 9.0123, - "y": 121.005 - }, - { - "l": "50.0", - "x": 9.0957, - "y": 121.4319 - }, - { - "l": "50.0", - "x": 9.179, - "y": 121.8246 - }, - { - "l": "50.0", - "x": 9.2623, - "y": 122.2676 - }, - { - "l": "50.0", - "x": 9.3457, - "y": 122.7011 - }, - { - "l": "50.0", - "x": 9.429, - "y": 123.0996 - }, - { - "l": "50.0", - "x": 9.5123, - "y": 123.5487 - }, - { - "l": "50.0", - "x": 9.5957, - "y": 123.9876 - }, - { - "l": "50.0", - "x": 9.679, - "y": 124.3907 - }, - { - "l": "50.0", - "x": 9.7623, - "y": 124.8451 - }, - { - "l": "50.0", - "x": 9.8457, - "y": 125.2895 - }, - { - "l": "50.0", - "x": 9.929, - "y": 125.6982 - }, - { - "l": "50.0", - "x": 10.0123, - "y": 126.1601 - }, - { - "l": "50.0", - "x": 10.0957, - "y": 126.6132 - }, - { - "l": "50.0", - "x": 10.179, - "y": 127.0312 - }, - { - "l": "50.0", - "x": 10.2623, - "y": 127.5043 - }, - { - "l": "50.0", - "x": 10.3457, - "y": 127.9687 - }, - { - "l": "50.0", - "x": 10.429, - "y": 128.3973 - }, - { - "l": "50.0", - "x": 10.5123, - "y": 128.8822 - }, - { - "l": "50.0", - "x": 10.5957, - "y": 129.3582 - }, - { - "l": "50.0", - "x": 10.679, - "y": 129.7973 - }, - { - "l": "50.0", - "x": 10.7623, - "y": 130.2938 - }, - { - "l": "50.0", - "x": 10.8457, - "y": 130.7812 - }, - { - "l": "50.0", - "x": 10.929, - "y": 131.2307 - }, - { - "l": "50.0", - "x": 11.0123, - "y": 131.7388 - }, - { - "l": "50.0", - "x": 11.0957, - "y": 132.2371 - }, - { - "l": "50.0", - "x": 11.179, - "y": 132.6965 - }, - { - "l": "50.0", - "x": 11.2623, - "y": 133.216 - }, - { - "l": "50.0", - "x": 11.3457, - "y": 133.7255 - }, - { - "l": "50.0", - "x": 11.429, - "y": 134.1949 - }, - { - "l": "50.0", - "x": 11.5123, - "y": 134.7248 - }, - { - "l": "50.0", - "x": 11.5957, - "y": 135.2433 - }, - { - "l": "50.0", - "x": 11.679, - "y": 135.7198 - }, - { - "l": "50.0", - "x": 11.7623, - "y": 136.2563 - }, - { - "l": "50.0", - "x": 11.8457, - "y": 136.7803 - }, - { - "l": "50.0", - "x": 11.929, - "y": 137.2609 - }, - { - "l": "50.0", - "x": 12.0123, - "y": 137.8014 - }, - { - "l": "50.0", - "x": 12.0957, - "y": 138.328 - }, - { - "l": "50.0", - "x": 12.179, - "y": 138.8095 - }, - { - "l": "50.0", - "x": 12.2623, - "y": 139.3492 - }, - { - "l": "50.0", - "x": 12.3457, - "y": 139.873 - }, - { - "l": "50.0", - "x": 12.429, - "y": 140.35 - }, - { - "l": "50.0", - "x": 12.5123, - "y": 140.8824 - }, - { - "l": "50.0", - "x": 12.5957, - "y": 141.3967 - }, - { - "l": "50.0", - "x": 12.679, - "y": 141.8629 - }, - { - "l": "50.0", - "x": 12.7623, - "y": 142.3801 - }, - { - "l": "50.0", - "x": 12.8457, - "y": 142.8779 - }, - { - "l": "50.0", - "x": 12.929, - "y": 143.3262 - }, - { - "l": "50.0", - "x": 13.0123, - "y": 143.8218 - }, - { - "l": "50.0", - "x": 13.0957, - "y": 144.2962 - }, - { - "l": "50.0", - "x": 13.179, - "y": 144.7226 - }, - { - "l": "50.0", - "x": 13.2623, - "y": 145.1929 - }, - { - "l": "50.0", - "x": 13.3457, - "y": 145.6422 - }, - { - "l": "50.0", - "x": 13.429, - "y": 146.0448 - }, - { - "l": "50.0", - "x": 13.5123, - "y": 146.4882 - }, - { - "l": "50.0", - "x": 13.5957, - "y": 146.9107 - }, - { - "l": "50.0", - "x": 13.679, - "y": 147.2874 - }, - { - "l": "50.0", - "x": 13.7623, - "y": 147.7006 - }, - { - "l": "50.0", - "x": 13.8457, - "y": 148.0914 - }, - { - "l": "50.0", - "x": 13.929, - "y": 148.4403 - }, - { - "l": "50.0", - "x": 14.0123, - "y": 148.82 - }, - { - "l": "50.0", - "x": 14.0957, - "y": 149.1784 - }, - { - "l": "50.0", - "x": 14.179, - "y": 149.4959 - }, - { - "l": "50.0", - "x": 14.2623, - "y": 149.8413 - }, - { - "l": "50.0", - "x": 14.3457, - "y": 150.1666 - }, - { - "l": "50.0", - "x": 14.429, - "y": 150.4543 - }, - { - "l": "50.0", - "x": 14.5123, - "y": 150.7669 - }, - { - "l": "50.0", - "x": 14.5957, - "y": 151.0612 - }, - { - "l": "50.0", - "x": 14.679, - "y": 151.3208 - }, - { - "l": "50.0", - "x": 14.7623, - "y": 151.6027 - }, - { - "l": "50.0", - "x": 14.8457, - "y": 151.8675 - }, - { - "l": "50.0", - "x": 14.929, - "y": 152.1008 - }, - { - "l": "50.0", - "x": 15.0123, - "y": 152.3533 - }, - { - "l": "50.0", - "x": 15.0957, - "y": 152.5927 - }, - { - "l": "50.0", - "x": 15.179, - "y": 152.8029 - }, - { - "l": "50.0", - "x": 15.2623, - "y": 153.031 - }, - { - "l": "50.0", - "x": 15.3457, - "y": 153.2454 - }, - { - "l": "50.0", - "x": 15.429, - "y": 153.4357 - }, - { - "l": "50.0", - "x": 15.5123, - "y": 153.6417 - }, - { - "l": "50.0", - "x": 15.5957, - "y": 153.8363 - }, - { - "l": "50.0", - "x": 15.679, - "y": 154.0081 - }, - { - "l": "50.0", - "x": 15.7623, - "y": 154.1943 - }, - { - "l": "50.0", - "x": 15.8457, - "y": 154.3713 - }, - { - "l": "50.0", - "x": 15.929, - "y": 154.5268 - }, - { - "l": "50.0", - "x": 16.0123, - "y": 154.6959 - }, - { - "l": "50.0", - "x": 16.0957, - "y": 154.8548 - }, - { - "l": "50.0", - "x": 16.179, - "y": 154.9955 - }, - { - "l": "50.0", - "x": 16.2623, - "y": 155.149 - }, - { - "l": "50.0", - "x": 16.3457, - "y": 155.2937 - }, - { - "l": "50.0", - "x": 16.429, - "y": 155.4224 - }, - { - "l": "50.0", - "x": 16.5123, - "y": 155.5622 - }, - { - "l": "50.0", - "x": 16.5957, - "y": 155.6945 - }, - { - "l": "50.0", - "x": 16.679, - "y": 155.8122 - }, - { - "l": "50.0", - "x": 16.7623, - "y": 155.9404 - }, - { - "l": "50.0", - "x": 16.8457, - "y": 156.062 - }, - { - "l": "50.0", - "x": 16.929, - "y": 156.1699 - }, - { - "l": "50.0", - "x": 17.0123, - "y": 156.2878 - }, - { - "l": "50.0", - "x": 17.0957, - "y": 156.3987 - }, - { - "l": "50.0", - "x": 17.179, - "y": 156.498 - }, - { - "l": "50.0", - "x": 17.2623, - "y": 156.6073 - }, - { - "l": "50.0", - "x": 17.3457, - "y": 156.7095 - }, - { - "l": "50.0", - "x": 17.429, - "y": 156.8019 - }, - { - "l": "50.0", - "x": 17.5123, - "y": 156.9025 - }, - { - "l": "50.0", - "x": 17.5957, - "y": 156.9973 - }, - { - "l": "50.0", - "x": 17.679, - "y": 157.0813 - }, - { - "l": "50.0", - "x": 17.7623, - "y": 157.1749 - }, - { - "l": "50.0", - "x": 17.8457, - "y": 157.2625 - }, - { - "l": "50.0", - "x": 17.929, - "y": 157.3403 - }, - { - "l": "50.0", - "x": 18.0123, - "y": 157.4251 - }, - { - "l": "50.0", - "x": 18.0957, - "y": 157.5052 - }, - { - "l": "50.0", - "x": 18.179, - "y": 157.5761 - }, - { - "l": "50.0", - "x": 18.2623, - "y": 157.6543 - }, - { - "l": "50.0", - "x": 18.3457, - "y": 157.7263 - }, - { - "l": "50.0", - "x": 18.429, - "y": 157.7904 - }, - { - "l": "50.0", - "x": 18.5123, - "y": 157.8626 - }, - { - "l": "50.0", - "x": 18.5957, - "y": 157.9321 - }, - { - "l": "50.0", - "x": 18.679, - "y": 157.9914 - }, - { - "l": "50.0", - "x": 18.7623, - "y": 158.0566 - }, - { - "l": "50.0", - "x": 18.8457, - "y": 158.1178 - }, - { - "l": "50.0", - "x": 18.929, - "y": 158.1723 - }, - { - "l": "50.0", - "x": 19.0123, - "y": 158.2292 - }, - { - "l": "50.0", - "x": 19.0957, - "y": 158.2851 - }, - { - "l": "50.0", - "x": 19.179, - "y": 158.335 - }, - { - "l": "50.0", - "x": 19.2623, - "y": 158.3832 - }, - { - "l": "50.0", - "x": 19.3457, - "y": 158.4301 - }, - { - "l": "50.0", - "x": 19.429, - "y": 158.473 - }, - { - "l": "50.0", - "x": 19.5123, - "y": 158.5212 - }, - { - "l": "50.0", - "x": 19.5957, - "y": 158.5681 - }, - { - "l": "50.0", - "x": 19.679, - "y": 158.6092 - }, - { - "l": "50.0", - "x": 19.7623, - "y": 158.6501 - }, - { - "l": "50.0", - "x": 19.8457, - "y": 158.6892 - }, - { - "l": "50.0", - "x": 19.929, - "y": 158.7219 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 0.0, - "y": 51.1667 - }, - { - "l": "75.0", - "x": 0.0192, - "y": 51.8158 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 52.4649 - }, - { - "l": "75.0", - "x": 0.0575, - "y": 53.1138 - }, - { - "l": "75.0", - "x": 0.0767, - "y": 53.7626 - }, - { - "l": "75.0", - "x": 0.0958, - "y": 54.3565 - }, - { - "l": "75.0", - "x": 0.115, - "y": 54.9264 - }, - { - "l": "75.0", - "x": 0.1342, - "y": 55.489 - }, - { - "l": "75.0", - "x": 0.1533, - "y": 56.0507 - }, - { - "l": "75.0", - "x": 0.1725, - "y": 56.6228 - }, - { - "l": "75.0", - "x": 0.1916, - "y": 57.2346 - }, - { - "l": "75.0", - "x": 0.2108, - "y": 57.8509 - }, - { - "l": "75.0", - "x": 0.23, - "y": 58.4671 - }, - { - "l": "75.0", - "x": 0.2491, - "y": 59.0789 - }, - { - "l": "75.0", - "x": 0.2683, - "y": 59.679 - }, - { - "l": "75.0", - "x": 0.2875, - "y": 60.2666 - }, - { - "l": "75.0", - "x": 0.3066, - "y": 60.8384 - }, - { - "l": "75.0", - "x": 0.3258, - "y": 61.391 - }, - { - "l": "75.0", - "x": 0.345, - "y": 61.8978 - }, - { - "l": "75.0", - "x": 0.3641, - "y": 62.3776 - }, - { - "l": "75.0", - "x": 0.3833, - "y": 62.8428 - }, - { - "l": "75.0", - "x": 0.4025, - "y": 63.2991 - }, - { - "l": "75.0", - "x": 0.4216, - "y": 63.7547 - }, - { - "l": "75.0", - "x": 0.4408, - "y": 64.2372 - }, - { - "l": "75.0", - "x": 0.46, - "y": 64.7166 - }, - { - "l": "75.0", - "x": 0.4791, - "y": 65.1896 - }, - { - "l": "75.0", - "x": 0.4983, - "y": 65.653 - }, - { - "l": "75.0", - "x": 0.5175, - "y": 66.0995 - }, - { - "l": "75.0", - "x": 0.5366, - "y": 66.5308 - }, - { - "l": "75.0", - "x": 0.5558, - "y": 66.9456 - }, - { - "l": "75.0", - "x": 0.5749, - "y": 67.3424 - }, - { - "l": "75.0", - "x": 0.5941, - "y": 67.7042 - }, - { - "l": "75.0", - "x": 0.6133, - "y": 68.0427 - }, - { - "l": "75.0", - "x": 0.6324, - "y": 68.3681 - }, - { - "l": "75.0", - "x": 0.6516, - "y": 68.685 - }, - { - "l": "75.0", - "x": 0.6708, - "y": 68.9992 - }, - { - "l": "75.0", - "x": 0.6899, - "y": 69.3329 - }, - { - "l": "75.0", - "x": 0.7091, - "y": 69.6645 - }, - { - "l": "75.0", - "x": 0.7283, - "y": 69.992 - }, - { - "l": "75.0", - "x": 0.7474, - "y": 70.3136 - }, - { - "l": "75.0", - "x": 0.7666, - "y": 70.626 - }, - { - "l": "75.0", - "x": 0.7858, - "y": 70.9291 - }, - { - "l": "75.0", - "x": 0.8049, - "y": 71.2223 - }, - { - "l": "75.0", - "x": 0.8241, - "y": 71.5045 - }, - { - "l": "75.0", - "x": 0.8433, - "y": 71.7644 - }, - { - "l": "75.0", - "x": 0.8624, - "y": 72.0089 - }, - { - "l": "75.0", - "x": 0.8816, - "y": 72.2458 - }, - { - "l": "75.0", - "x": 0.9008, - "y": 72.4785 - }, - { - "l": "75.0", - "x": 0.9199, - "y": 72.7104 - }, - { - "l": "75.0", - "x": 0.9391, - "y": 72.9592 - }, - { - "l": "75.0", - "x": 0.9582, - "y": 73.2083 - }, - { - "l": "75.0", - "x": 0.9774, - "y": 73.4564 - }, - { - "l": "75.0", - "x": 0.9966, - "y": 73.7021 - }, - { - "l": "75.0", - "x": 1.0157, - "y": 73.943 - }, - { - "l": "75.0", - "x": 1.0349, - "y": 74.1789 - }, - { - "l": "75.0", - "x": 1.0541, - "y": 74.4088 - }, - { - "l": "75.0", - "x": 1.0732, - "y": 74.6317 - }, - { - "l": "75.0", - "x": 1.0924, - "y": 74.839 - }, - { - "l": "75.0", - "x": 1.1116, - "y": 75.0348 - }, - { - "l": "75.0", - "x": 1.1307, - "y": 75.226 - }, - { - "l": "75.0", - "x": 1.1499, - "y": 75.4153 - }, - { - "l": "75.0", - "x": 1.1691, - "y": 75.6052 - }, - { - "l": "75.0", - "x": 1.1882, - "y": 75.8095 - }, - { - "l": "75.0", - "x": 1.2074, - "y": 76.0161 - }, - { - "l": "75.0", - "x": 1.2266, - "y": 76.2231 - }, - { - "l": "75.0", - "x": 1.2457, - "y": 76.4294 - }, - { - "l": "75.0", - "x": 1.2649, - "y": 76.6333 - }, - { - "l": "75.0", - "x": 1.2841, - "y": 76.8342 - }, - { - "l": "75.0", - "x": 1.3032, - "y": 77.031 - }, - { - "l": "75.0", - "x": 1.3224, - "y": 77.2228 - }, - { - "l": "75.0", - "x": 1.3415, - "y": 77.4022 - }, - { - "l": "75.0", - "x": 1.3607, - "y": 77.5719 - }, - { - "l": "75.0", - "x": 1.3799, - "y": 77.7381 - }, - { - "l": "75.0", - "x": 1.399, - "y": 77.9031 - }, - { - "l": "75.0", - "x": 1.4182, - "y": 78.069 - }, - { - "l": "75.0", - "x": 1.4374, - "y": 78.2471 - }, - { - "l": "75.0", - "x": 1.4565, - "y": 78.4281 - }, - { - "l": "75.0", - "x": 1.4757, - "y": 78.6099 - }, - { - "l": "75.0", - "x": 1.4949, - "y": 78.7913 - }, - { - "l": "75.0", - "x": 1.514, - "y": 78.971 - }, - { - "l": "75.0", - "x": 1.5332, - "y": 79.1483 - }, - { - "l": "75.0", - "x": 1.5524, - "y": 79.3223 - }, - { - "l": "75.0", - "x": 1.5715, - "y": 79.4922 - }, - { - "l": "75.0", - "x": 1.5907, - "y": 79.6518 - }, - { - "l": "75.0", - "x": 1.6099, - "y": 79.8024 - }, - { - "l": "75.0", - "x": 1.629, - "y": 79.9501 - }, - { - "l": "75.0", - "x": 1.6482, - "y": 80.0969 - }, - { - "l": "75.0", - "x": 1.6674, - "y": 80.2446 - }, - { - "l": "75.0", - "x": 1.6865, - "y": 80.403 - }, - { - "l": "75.0", - "x": 1.7057, - "y": 80.5646 - }, - { - "l": "75.0", - "x": 1.7248, - "y": 80.7272 - }, - { - "l": "75.0", - "x": 1.744, - "y": 80.8897 - }, - { - "l": "75.0", - "x": 1.7632, - "y": 81.051 - }, - { - "l": "75.0", - "x": 1.7823, - "y": 81.2104 - }, - { - "l": "75.0", - "x": 1.8015, - "y": 81.367 - }, - { - "l": "75.0", - "x": 1.8207, - "y": 81.5202 - }, - { - "l": "75.0", - "x": 1.8398, - "y": 81.6647 - }, - { - "l": "75.0", - "x": 1.859, - "y": 81.8008 - }, - { - "l": "75.0", - "x": 1.8782, - "y": 81.9345 - }, - { - "l": "75.0", - "x": 1.8973, - "y": 82.0674 - }, - { - "l": "75.0", - "x": 1.9165, - "y": 82.2014 - }, - { - "l": "75.0", - "x": 1.9357, - "y": 82.345 - }, - { - "l": "75.0", - "x": 1.9548, - "y": 82.4921 - }, - { - "l": "75.0", - "x": 1.974, - "y": 82.6404 - }, - { - "l": "75.0", - "x": 1.9932, - "y": 82.789 - }, - { - "l": "75.0", - "x": 2.0123, - "y": 82.937 - }, - { - "l": "75.0", - "x": 2.0957, - "y": 83.5475 - }, - { - "l": "75.0", - "x": 2.179, - "y": 84.0939 - }, - { - "l": "75.0", - "x": 2.2623, - "y": 84.6953 - }, - { - "l": "75.0", - "x": 2.3457, - "y": 85.2698 - }, - { - "l": "75.0", - "x": 2.429, - "y": 85.787 - }, - { - "l": "75.0", - "x": 2.5123, - "y": 86.3596 - }, - { - "l": "75.0", - "x": 2.5957, - "y": 86.9098 - }, - { - "l": "75.0", - "x": 2.679, - "y": 87.4071 - }, - { - "l": "75.0", - "x": 2.7623, - "y": 87.9586 - }, - { - "l": "75.0", - "x": 2.8457, - "y": 88.4892 - }, - { - "l": "75.0", - "x": 2.929, - "y": 88.9693 - }, - { - "l": "75.0", - "x": 3.0123, - "y": 89.5032 - }, - { - "l": "75.0", - "x": 3.0957, - "y": 90.019 - }, - { - "l": "75.0", - "x": 3.179, - "y": 90.4882 - }, - { - "l": "75.0", - "x": 3.2623, - "y": 91.0128 - }, - { - "l": "75.0", - "x": 3.3457, - "y": 91.522 - }, - { - "l": "75.0", - "x": 3.429, - "y": 91.9871 - }, - { - "l": "75.0", - "x": 3.5123, - "y": 92.5087 - }, - { - "l": "75.0", - "x": 3.5957, - "y": 93.0166 - }, - { - "l": "75.0", - "x": 3.679, - "y": 93.4817 - }, - { - "l": "75.0", - "x": 3.7623, - "y": 94.0048 - }, - { - "l": "75.0", - "x": 3.8457, - "y": 94.516 - }, - { - "l": "75.0", - "x": 3.929, - "y": 94.9861 - }, - { - "l": "75.0", - "x": 4.0123, - "y": 95.5165 - }, - { - "l": "75.0", - "x": 4.0957, - "y": 96.0353 - }, - { - "l": "75.0", - "x": 4.179, - "y": 96.5122 - }, - { - "l": "75.0", - "x": 4.2623, - "y": 97.0494 - }, - { - "l": "75.0", - "x": 4.3457, - "y": 97.574 - }, - { - "l": "75.0", - "x": 4.429, - "y": 98.0555 - }, - { - "l": "75.0", - "x": 4.5123, - "y": 98.5981 - }, - { - "l": "75.0", - "x": 4.5957, - "y": 99.1292 - }, - { - "l": "75.0", - "x": 4.679, - "y": 99.6184 - }, - { - "l": "75.0", - "x": 4.7623, - "y": 100.171 - }, - { - "l": "75.0", - "x": 4.8457, - "y": 100.7125 - }, - { - "l": "75.0", - "x": 4.929, - "y": 101.2107 - }, - { - "l": "75.0", - "x": 5.0123, - "y": 101.772 - }, - { - "l": "75.0", - "x": 5.0957, - "y": 102.3203 - }, - { - "l": "75.0", - "x": 5.179, - "y": 102.8234 - }, - { - "l": "75.0", - "x": 5.2623, - "y": 103.3888 - }, - { - "l": "75.0", - "x": 5.3457, - "y": 103.9391 - }, - { - "l": "75.0", - "x": 5.429, - "y": 104.4422 - }, - { - "l": "75.0", - "x": 5.5123, - "y": 105.0058 - }, - { - "l": "75.0", - "x": 5.5957, - "y": 105.553 - }, - { - "l": "75.0", - "x": 5.679, - "y": 106.0521 - }, - { - "l": "75.0", - "x": 5.7623, - "y": 106.6103 - }, - { - "l": "75.0", - "x": 5.8457, - "y": 107.1513 - }, - { - "l": "75.0", - "x": 5.929, - "y": 107.6444 - }, - { - "l": "75.0", - "x": 6.0123, - "y": 108.1957 - }, - { - "l": "75.0", - "x": 6.0957, - "y": 108.73 - }, - { - "l": "75.0", - "x": 6.179, - "y": 109.2168 - }, - { - "l": "75.0", - "x": 6.2623, - "y": 109.7604 - }, - { - "l": "75.0", - "x": 6.3457, - "y": 110.287 - }, - { - "l": "75.0", - "x": 6.429, - "y": 110.766 - }, - { - "l": "75.0", - "x": 6.5123, - "y": 111.3007 - }, - { - "l": "75.0", - "x": 6.5957, - "y": 111.8182 - }, - { - "l": "75.0", - "x": 6.679, - "y": 112.2888 - }, - { - "l": "75.0", - "x": 6.7623, - "y": 112.8135 - }, - { - "l": "75.0", - "x": 6.8457, - "y": 113.3205 - }, - { - "l": "75.0", - "x": 6.929, - "y": 113.7803 - }, - { - "l": "75.0", - "x": 7.0123, - "y": 114.292 - }, - { - "l": "75.0", - "x": 7.0957, - "y": 114.7852 - }, - { - "l": "75.0", - "x": 7.179, - "y": 115.232 - }, - { - "l": "75.0", - "x": 7.2623, - "y": 115.7283 - }, - { - "l": "75.0", - "x": 7.3457, - "y": 116.2067 - }, - { - "l": "75.0", - "x": 7.429, - "y": 116.6398 - }, - { - "l": "75.0", - "x": 7.5123, - "y": 117.1213 - }, - { - "l": "75.0", - "x": 7.5957, - "y": 117.5857 - }, - { - "l": "75.0", - "x": 7.679, - "y": 118.007 - }, - { - "l": "75.0", - "x": 7.7623, - "y": 118.4762 - }, - { - "l": "75.0", - "x": 7.8457, - "y": 118.9298 - }, - { - "l": "75.0", - "x": 7.929, - "y": 119.3418 - }, - { - "l": "75.0", - "x": 8.0123, - "y": 119.8015 - }, - { - "l": "75.0", - "x": 8.0957, - "y": 120.2468 - }, - { - "l": "75.0", - "x": 8.179, - "y": 120.6523 - }, - { - "l": "75.0", - "x": 8.2623, - "y": 121.1055 - }, - { - "l": "75.0", - "x": 8.3457, - "y": 121.5449 - }, - { - "l": "75.0", - "x": 8.429, - "y": 121.9453 - }, - { - "l": "75.0", - "x": 8.5123, - "y": 122.3935 - }, - { - "l": "75.0", - "x": 8.5957, - "y": 122.829 - }, - { - "l": "75.0", - "x": 8.679, - "y": 123.2276 - }, - { - "l": "75.0", - "x": 8.7623, - "y": 123.6753 - }, - { - "l": "75.0", - "x": 8.8457, - "y": 124.1125 - }, - { - "l": "75.0", - "x": 8.929, - "y": 124.5141 - }, - { - "l": "75.0", - "x": 9.0123, - "y": 124.9672 - }, - { - "l": "75.0", - "x": 9.0957, - "y": 125.4104 - }, - { - "l": "75.0", - "x": 9.179, - "y": 125.818 - }, - { - "l": "75.0", - "x": 9.2623, - "y": 126.2777 - }, - { - "l": "75.0", - "x": 9.3457, - "y": 126.7275 - }, - { - "l": "75.0", - "x": 9.429, - "y": 127.1407 - }, - { - "l": "75.0", - "x": 9.5123, - "y": 127.6063 - }, - { - "l": "75.0", - "x": 9.5957, - "y": 128.0611 - }, - { - "l": "75.0", - "x": 9.679, - "y": 128.4787 - }, - { - "l": "75.0", - "x": 9.7623, - "y": 128.9492 - }, - { - "l": "75.0", - "x": 9.8457, - "y": 129.4092 - }, - { - "l": "75.0", - "x": 9.929, - "y": 129.8321 - }, - { - "l": "75.0", - "x": 10.0123, - "y": 130.3098 - }, - { - "l": "75.0", - "x": 10.0957, - "y": 130.7782 - }, - { - "l": "75.0", - "x": 10.179, - "y": 131.2101 - }, - { - "l": "75.0", - "x": 10.2623, - "y": 131.6987 - }, - { - "l": "75.0", - "x": 10.3457, - "y": 132.1782 - }, - { - "l": "75.0", - "x": 10.429, - "y": 132.6205 - }, - { - "l": "75.0", - "x": 10.5123, - "y": 133.1205 - }, - { - "l": "75.0", - "x": 10.5957, - "y": 133.6111 - }, - { - "l": "75.0", - "x": 10.679, - "y": 134.0635 - }, - { - "l": "75.0", - "x": 10.7623, - "y": 134.5747 - }, - { - "l": "75.0", - "x": 10.8457, - "y": 135.0763 - }, - { - "l": "75.0", - "x": 10.929, - "y": 135.5385 - }, - { - "l": "75.0", - "x": 11.0123, - "y": 136.0607 - }, - { - "l": "75.0", - "x": 11.0957, - "y": 136.5726 - }, - { - "l": "75.0", - "x": 11.179, - "y": 137.0442 - }, - { - "l": "75.0", - "x": 11.2623, - "y": 137.5771 - }, - { - "l": "75.0", - "x": 11.3457, - "y": 138.0994 - }, - { - "l": "75.0", - "x": 11.429, - "y": 138.5803 - }, - { - "l": "75.0", - "x": 11.5123, - "y": 139.1228 - }, - { - "l": "75.0", - "x": 11.5957, - "y": 139.6534 - }, - { - "l": "75.0", - "x": 11.679, - "y": 140.1405 - }, - { - "l": "75.0", - "x": 11.7623, - "y": 140.6887 - }, - { - "l": "75.0", - "x": 11.8457, - "y": 141.2236 - }, - { - "l": "75.0", - "x": 11.929, - "y": 141.7139 - }, - { - "l": "75.0", - "x": 12.0123, - "y": 142.265 - }, - { - "l": "75.0", - "x": 12.0957, - "y": 142.8013 - }, - { - "l": "75.0", - "x": 12.179, - "y": 143.2915 - }, - { - "l": "75.0", - "x": 12.2623, - "y": 143.8405 - }, - { - "l": "75.0", - "x": 12.3457, - "y": 144.3728 - }, - { - "l": "75.0", - "x": 12.429, - "y": 144.8573 - }, - { - "l": "75.0", - "x": 12.5123, - "y": 145.3976 - }, - { - "l": "75.0", - "x": 12.5957, - "y": 145.9192 - }, - { - "l": "75.0", - "x": 12.679, - "y": 146.3916 - }, - { - "l": "75.0", - "x": 12.7623, - "y": 146.9154 - }, - { - "l": "75.0", - "x": 12.8457, - "y": 147.4191 - }, - { - "l": "75.0", - "x": 12.929, - "y": 147.8724 - }, - { - "l": "75.0", - "x": 13.0123, - "y": 148.3731 - }, - { - "l": "75.0", - "x": 13.0957, - "y": 148.8522 - }, - { - "l": "75.0", - "x": 13.179, - "y": 149.2824 - }, - { - "l": "75.0", - "x": 13.2623, - "y": 149.7566 - }, - { - "l": "75.0", - "x": 13.3457, - "y": 150.2093 - }, - { - "l": "75.0", - "x": 13.429, - "y": 150.6147 - }, - { - "l": "75.0", - "x": 13.5123, - "y": 151.0609 - }, - { - "l": "75.0", - "x": 13.5957, - "y": 151.4859 - }, - { - "l": "75.0", - "x": 13.679, - "y": 151.8645 - }, - { - "l": "75.0", - "x": 13.7623, - "y": 152.2796 - }, - { - "l": "75.0", - "x": 13.8457, - "y": 152.672 - }, - { - "l": "75.0", - "x": 13.929, - "y": 153.0221 - }, - { - "l": "75.0", - "x": 14.0123, - "y": 153.403 - }, - { - "l": "75.0", - "x": 14.0957, - "y": 153.7622 - }, - { - "l": "75.0", - "x": 14.179, - "y": 154.0803 - }, - { - "l": "75.0", - "x": 14.2623, - "y": 154.4263 - }, - { - "l": "75.0", - "x": 14.3457, - "y": 154.752 - }, - { - "l": "75.0", - "x": 14.429, - "y": 155.0398 - }, - { - "l": "75.0", - "x": 14.5123, - "y": 155.3526 - }, - { - "l": "75.0", - "x": 14.5957, - "y": 155.6468 - }, - { - "l": "75.0", - "x": 14.679, - "y": 155.9064 - }, - { - "l": "75.0", - "x": 14.7623, - "y": 156.188 - }, - { - "l": "75.0", - "x": 14.8457, - "y": 156.4527 - }, - { - "l": "75.0", - "x": 14.929, - "y": 156.6856 - }, - { - "l": "75.0", - "x": 15.0123, - "y": 156.9377 - }, - { - "l": "75.0", - "x": 15.0957, - "y": 157.1767 - }, - { - "l": "75.0", - "x": 15.179, - "y": 157.3865 - }, - { - "l": "75.0", - "x": 15.2623, - "y": 157.6141 - }, - { - "l": "75.0", - "x": 15.3457, - "y": 157.828 - }, - { - "l": "75.0", - "x": 15.429, - "y": 158.0178 - }, - { - "l": "75.0", - "x": 15.5123, - "y": 158.2232 - }, - { - "l": "75.0", - "x": 15.5957, - "y": 158.4173 - }, - { - "l": "75.0", - "x": 15.679, - "y": 158.5886 - }, - { - "l": "75.0", - "x": 15.7623, - "y": 158.7742 - }, - { - "l": "75.0", - "x": 15.8457, - "y": 158.9506 - }, - { - "l": "75.0", - "x": 15.929, - "y": 159.1057 - }, - { - "l": "75.0", - "x": 16.0123, - "y": 159.2741 - }, - { - "l": "75.0", - "x": 16.0957, - "y": 159.4325 - }, - { - "l": "75.0", - "x": 16.179, - "y": 159.5726 - }, - { - "l": "75.0", - "x": 16.2623, - "y": 159.7256 - }, - { - "l": "75.0", - "x": 16.3457, - "y": 159.8697 - }, - { - "l": "75.0", - "x": 16.429, - "y": 159.998 - }, - { - "l": "75.0", - "x": 16.5123, - "y": 160.1372 - }, - { - "l": "75.0", - "x": 16.5957, - "y": 160.269 - }, - { - "l": "75.0", - "x": 16.679, - "y": 160.3862 - }, - { - "l": "75.0", - "x": 16.7623, - "y": 160.5139 - }, - { - "l": "75.0", - "x": 16.8457, - "y": 160.6349 - }, - { - "l": "75.0", - "x": 16.929, - "y": 160.7424 - }, - { - "l": "75.0", - "x": 17.0123, - "y": 160.8598 - }, - { - "l": "75.0", - "x": 17.0957, - "y": 160.9702 - }, - { - "l": "75.0", - "x": 17.179, - "y": 161.0691 - }, - { - "l": "75.0", - "x": 17.2623, - "y": 161.178 - }, - { - "l": "75.0", - "x": 17.3457, - "y": 161.2797 - }, - { - "l": "75.0", - "x": 17.429, - "y": 161.3716 - }, - { - "l": "75.0", - "x": 17.5123, - "y": 161.4719 - }, - { - "l": "75.0", - "x": 17.5957, - "y": 161.5662 - }, - { - "l": "75.0", - "x": 17.679, - "y": 161.6498 - }, - { - "l": "75.0", - "x": 17.7623, - "y": 161.743 - }, - { - "l": "75.0", - "x": 17.8457, - "y": 161.8301 - }, - { - "l": "75.0", - "x": 17.929, - "y": 161.9076 - }, - { - "l": "75.0", - "x": 18.0123, - "y": 161.992 - }, - { - "l": "75.0", - "x": 18.0957, - "y": 162.0717 - }, - { - "l": "75.0", - "x": 18.179, - "y": 162.1423 - }, - { - "l": "75.0", - "x": 18.2623, - "y": 162.2201 - }, - { - "l": "75.0", - "x": 18.3457, - "y": 162.2918 - }, - { - "l": "75.0", - "x": 18.429, - "y": 162.3555 - }, - { - "l": "75.0", - "x": 18.5123, - "y": 162.4273 - }, - { - "l": "75.0", - "x": 18.5957, - "y": 162.4965 - }, - { - "l": "75.0", - "x": 18.679, - "y": 162.5556 - }, - { - "l": "75.0", - "x": 18.7623, - "y": 162.6205 - }, - { - "l": "75.0", - "x": 18.8457, - "y": 162.6813 - }, - { - "l": "75.0", - "x": 18.929, - "y": 162.7355 - }, - { - "l": "75.0", - "x": 19.0123, - "y": 162.7922 - }, - { - "l": "75.0", - "x": 19.0957, - "y": 162.8477 - }, - { - "l": "75.0", - "x": 19.179, - "y": 162.8974 - }, - { - "l": "75.0", - "x": 19.2623, - "y": 162.9454 - }, - { - "l": "75.0", - "x": 19.3457, - "y": 162.992 - }, - { - "l": "75.0", - "x": 19.429, - "y": 163.0347 - }, - { - "l": "75.0", - "x": 19.5123, - "y": 163.0827 - }, - { - "l": "75.0", - "x": 19.5957, - "y": 163.1293 - }, - { - "l": "75.0", - "x": 19.679, - "y": 163.1702 - }, - { - "l": "75.0", - "x": 19.7623, - "y": 163.2109 - }, - { - "l": "75.0", - "x": 19.8457, - "y": 163.2497 - }, - { - "l": "75.0", - "x": 19.929, - "y": 163.2823 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 0.0, - "y": 52.831 - }, - { - "l": "91.0", - "x": 0.0192, - "y": 53.4972 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 54.1632 - }, - { - "l": "91.0", - "x": 0.0575, - "y": 54.829 - }, - { - "l": "91.0", - "x": 0.0767, - "y": 55.4946 - }, - { - "l": "91.0", - "x": 0.0958, - "y": 56.1037 - }, - { - "l": "91.0", - "x": 0.115, - "y": 56.6882 - }, - { - "l": "91.0", - "x": 0.1342, - "y": 57.2651 - }, - { - "l": "91.0", - "x": 0.1533, - "y": 57.841 - }, - { - "l": "91.0", - "x": 0.1725, - "y": 58.4274 - }, - { - "l": "91.0", - "x": 0.1916, - "y": 59.0545 - }, - { - "l": "91.0", - "x": 0.2108, - "y": 59.6861 - }, - { - "l": "91.0", - "x": 0.23, - "y": 60.3175 - }, - { - "l": "91.0", - "x": 0.2491, - "y": 60.9442 - }, - { - "l": "91.0", - "x": 0.2683, - "y": 61.5589 - }, - { - "l": "91.0", - "x": 0.2875, - "y": 62.1606 - }, - { - "l": "91.0", - "x": 0.3066, - "y": 62.7461 - }, - { - "l": "91.0", - "x": 0.3258, - "y": 63.3118 - }, - { - "l": "91.0", - "x": 0.345, - "y": 63.8305 - }, - { - "l": "91.0", - "x": 0.3641, - "y": 64.3216 - }, - { - "l": "91.0", - "x": 0.3833, - "y": 64.7976 - }, - { - "l": "91.0", - "x": 0.4025, - "y": 65.2644 - }, - { - "l": "91.0", - "x": 0.4216, - "y": 65.7305 - }, - { - "l": "91.0", - "x": 0.4408, - "y": 66.2238 - }, - { - "l": "91.0", - "x": 0.46, - "y": 66.714 - }, - { - "l": "91.0", - "x": 0.4791, - "y": 67.1975 - }, - { - "l": "91.0", - "x": 0.4983, - "y": 67.6712 - }, - { - "l": "91.0", - "x": 0.5175, - "y": 68.1273 - }, - { - "l": "91.0", - "x": 0.5366, - "y": 68.5679 - }, - { - "l": "91.0", - "x": 0.5558, - "y": 68.9917 - }, - { - "l": "91.0", - "x": 0.5749, - "y": 69.3969 - }, - { - "l": "91.0", - "x": 0.5941, - "y": 69.7662 - }, - { - "l": "91.0", - "x": 0.6133, - "y": 70.1118 - }, - { - "l": "91.0", - "x": 0.6324, - "y": 70.4439 - }, - { - "l": "91.0", - "x": 0.6516, - "y": 70.7674 - }, - { - "l": "91.0", - "x": 0.6708, - "y": 71.0879 - }, - { - "l": "91.0", - "x": 0.6899, - "y": 71.4284 - }, - { - "l": "91.0", - "x": 0.7091, - "y": 71.7667 - }, - { - "l": "91.0", - "x": 0.7283, - "y": 72.1007 - }, - { - "l": "91.0", - "x": 0.7474, - "y": 72.4288 - }, - { - "l": "91.0", - "x": 0.7666, - "y": 72.7473 - }, - { - "l": "91.0", - "x": 0.7858, - "y": 73.0564 - }, - { - "l": "91.0", - "x": 0.8049, - "y": 73.3554 - }, - { - "l": "91.0", - "x": 0.8241, - "y": 73.6431 - }, - { - "l": "91.0", - "x": 0.8433, - "y": 73.9081 - }, - { - "l": "91.0", - "x": 0.8624, - "y": 74.1574 - }, - { - "l": "91.0", - "x": 0.8816, - "y": 74.3989 - }, - { - "l": "91.0", - "x": 0.9008, - "y": 74.6362 - }, - { - "l": "91.0", - "x": 0.9199, - "y": 74.8726 - }, - { - "l": "91.0", - "x": 0.9391, - "y": 75.1262 - }, - { - "l": "91.0", - "x": 0.9582, - "y": 75.3802 - }, - { - "l": "91.0", - "x": 0.9774, - "y": 75.6332 - }, - { - "l": "91.0", - "x": 0.9966, - "y": 75.8836 - }, - { - "l": "91.0", - "x": 1.0157, - "y": 76.1294 - }, - { - "l": "91.0", - "x": 1.0349, - "y": 76.3699 - }, - { - "l": "91.0", - "x": 1.0541, - "y": 76.6044 - }, - { - "l": "91.0", - "x": 1.0732, - "y": 76.8318 - }, - { - "l": "91.0", - "x": 1.0924, - "y": 77.0432 - }, - { - "l": "91.0", - "x": 1.1116, - "y": 77.243 - }, - { - "l": "91.0", - "x": 1.1307, - "y": 77.4381 - }, - { - "l": "91.0", - "x": 1.1499, - "y": 77.6312 - }, - { - "l": "91.0", - "x": 1.1691, - "y": 77.825 - }, - { - "l": "91.0", - "x": 1.1882, - "y": 78.0336 - }, - { - "l": "91.0", - "x": 1.2074, - "y": 78.2444 - }, - { - "l": "91.0", - "x": 1.2266, - "y": 78.4558 - }, - { - "l": "91.0", - "x": 1.2457, - "y": 78.6664 - }, - { - "l": "91.0", - "x": 1.2649, - "y": 78.8747 - }, - { - "l": "91.0", - "x": 1.2841, - "y": 79.0799 - }, - { - "l": "91.0", - "x": 1.3032, - "y": 79.281 - }, - { - "l": "91.0", - "x": 1.3224, - "y": 79.4769 - }, - { - "l": "91.0", - "x": 1.3415, - "y": 79.6603 - }, - { - "l": "91.0", - "x": 1.3607, - "y": 79.8337 - }, - { - "l": "91.0", - "x": 1.3799, - "y": 80.0036 - }, - { - "l": "91.0", - "x": 1.399, - "y": 80.1723 - }, - { - "l": "91.0", - "x": 1.4182, - "y": 80.342 - }, - { - "l": "91.0", - "x": 1.4374, - "y": 80.5242 - }, - { - "l": "91.0", - "x": 1.4565, - "y": 80.7093 - }, - { - "l": "91.0", - "x": 1.4757, - "y": 80.8952 - }, - { - "l": "91.0", - "x": 1.4949, - "y": 81.0808 - }, - { - "l": "91.0", - "x": 1.514, - "y": 81.2648 - }, - { - "l": "91.0", - "x": 1.5332, - "y": 81.4462 - }, - { - "l": "91.0", - "x": 1.5524, - "y": 81.6244 - }, - { - "l": "91.0", - "x": 1.5715, - "y": 81.7983 - }, - { - "l": "91.0", - "x": 1.5907, - "y": 81.9617 - }, - { - "l": "91.0", - "x": 1.6099, - "y": 82.116 - }, - { - "l": "91.0", - "x": 1.629, - "y": 82.2672 - }, - { - "l": "91.0", - "x": 1.6482, - "y": 82.4176 - }, - { - "l": "91.0", - "x": 1.6674, - "y": 82.569 - }, - { - "l": "91.0", - "x": 1.6865, - "y": 82.7313 - }, - { - "l": "91.0", - "x": 1.7057, - "y": 82.8969 - }, - { - "l": "91.0", - "x": 1.7248, - "y": 83.0635 - }, - { - "l": "91.0", - "x": 1.744, - "y": 83.2301 - }, - { - "l": "91.0", - "x": 1.7632, - "y": 83.3955 - }, - { - "l": "91.0", - "x": 1.7823, - "y": 83.5589 - }, - { - "l": "91.0", - "x": 1.8015, - "y": 83.7196 - }, - { - "l": "91.0", - "x": 1.8207, - "y": 83.8767 - }, - { - "l": "91.0", - "x": 1.8398, - "y": 84.0249 - }, - { - "l": "91.0", - "x": 1.859, - "y": 84.1646 - }, - { - "l": "91.0", - "x": 1.8782, - "y": 84.3017 - }, - { - "l": "91.0", - "x": 1.8973, - "y": 84.4382 - }, - { - "l": "91.0", - "x": 1.9165, - "y": 84.5757 - }, - { - "l": "91.0", - "x": 1.9357, - "y": 84.7231 - }, - { - "l": "91.0", - "x": 1.9548, - "y": 84.8742 - }, - { - "l": "91.0", - "x": 1.974, - "y": 85.0264 - }, - { - "l": "91.0", - "x": 1.9932, - "y": 85.1791 - }, - { - "l": "91.0", - "x": 2.0123, - "y": 85.331 - }, - { - "l": "91.0", - "x": 2.0957, - "y": 85.9582 - }, - { - "l": "91.0", - "x": 2.179, - "y": 86.5198 - }, - { - "l": "91.0", - "x": 2.2623, - "y": 87.1383 - }, - { - "l": "91.0", - "x": 2.3457, - "y": 87.7295 - }, - { - "l": "91.0", - "x": 2.429, - "y": 88.2619 - }, - { - "l": "91.0", - "x": 2.5123, - "y": 88.8515 - }, - { - "l": "91.0", - "x": 2.5957, - "y": 89.4184 - }, - { - "l": "91.0", - "x": 2.679, - "y": 89.9309 - }, - { - "l": "91.0", - "x": 2.7623, - "y": 90.4996 - }, - { - "l": "91.0", - "x": 2.8457, - "y": 91.0468 - }, - { - "l": "91.0", - "x": 2.929, - "y": 91.5422 - }, - { - "l": "91.0", - "x": 3.0123, - "y": 92.0932 - }, - { - "l": "91.0", - "x": 3.0957, - "y": 92.6258 - }, - { - "l": "91.0", - "x": 3.179, - "y": 93.1105 - }, - { - "l": "91.0", - "x": 3.2623, - "y": 93.6526 - }, - { - "l": "91.0", - "x": 3.3457, - "y": 94.1789 - }, - { - "l": "91.0", - "x": 3.429, - "y": 94.6598 - }, - { - "l": "91.0", - "x": 3.5123, - "y": 95.1994 - }, - { - "l": "91.0", - "x": 3.5957, - "y": 95.7248 - }, - { - "l": "91.0", - "x": 3.679, - "y": 96.2062 - }, - { - "l": "91.0", - "x": 3.7623, - "y": 96.7478 - }, - { - "l": "91.0", - "x": 3.8457, - "y": 97.2771 - }, - { - "l": "91.0", - "x": 3.929, - "y": 97.7642 - }, - { - "l": "91.0", - "x": 4.0123, - "y": 98.3137 - }, - { - "l": "91.0", - "x": 4.0957, - "y": 98.8514 - }, - { - "l": "91.0", - "x": 4.179, - "y": 99.3458 - }, - { - "l": "91.0", - "x": 4.2623, - "y": 99.9029 - }, - { - "l": "91.0", - "x": 4.3457, - "y": 100.4471 - }, - { - "l": "91.0", - "x": 4.429, - "y": 100.9466 - }, - { - "l": "91.0", - "x": 4.5123, - "y": 101.5097 - }, - { - "l": "91.0", - "x": 4.5957, - "y": 102.061 - }, - { - "l": "91.0", - "x": 4.679, - "y": 102.5689 - }, - { - "l": "91.0", - "x": 4.7623, - "y": 103.1428 - }, - { - "l": "91.0", - "x": 4.8457, - "y": 103.7052 - }, - { - "l": "91.0", - "x": 4.929, - "y": 104.2227 - }, - { - "l": "91.0", - "x": 5.0123, - "y": 104.8059 - }, - { - "l": "91.0", - "x": 5.0957, - "y": 105.3758 - }, - { - "l": "91.0", - "x": 5.179, - "y": 105.8986 - }, - { - "l": "91.0", - "x": 5.2623, - "y": 106.4865 - }, - { - "l": "91.0", - "x": 5.3457, - "y": 107.0587 - }, - { - "l": "91.0", - "x": 5.429, - "y": 107.5819 - }, - { - "l": "91.0", - "x": 5.5123, - "y": 108.1681 - }, - { - "l": "91.0", - "x": 5.5957, - "y": 108.7374 - }, - { - "l": "91.0", - "x": 5.679, - "y": 109.2567 - }, - { - "l": "91.0", - "x": 5.7623, - "y": 109.8375 - }, - { - "l": "91.0", - "x": 5.8457, - "y": 110.4005 - }, - { - "l": "91.0", - "x": 5.929, - "y": 110.9138 - }, - { - "l": "91.0", - "x": 6.0123, - "y": 111.4876 - }, - { - "l": "91.0", - "x": 6.0957, - "y": 112.0438 - }, - { - "l": "91.0", - "x": 6.179, - "y": 112.5506 - }, - { - "l": "91.0", - "x": 6.2623, - "y": 113.1165 - }, - { - "l": "91.0", - "x": 6.3457, - "y": 113.6647 - }, - { - "l": "91.0", - "x": 6.429, - "y": 114.1634 - }, - { - "l": "91.0", - "x": 6.5123, - "y": 114.7201 - }, - { - "l": "91.0", - "x": 6.5957, - "y": 115.2589 - }, - { - "l": "91.0", - "x": 6.679, - "y": 115.7488 - }, - { - "l": "91.0", - "x": 6.7623, - "y": 116.295 - }, - { - "l": "91.0", - "x": 6.8457, - "y": 116.8227 - }, - { - "l": "91.0", - "x": 6.929, - "y": 117.3014 - }, - { - "l": "91.0", - "x": 7.0123, - "y": 117.8339 - }, - { - "l": "91.0", - "x": 7.0957, - "y": 118.3472 - }, - { - "l": "91.0", - "x": 7.179, - "y": 118.8121 - }, - { - "l": "91.0", - "x": 7.2623, - "y": 119.3286 - }, - { - "l": "91.0", - "x": 7.3457, - "y": 119.8263 - }, - { - "l": "91.0", - "x": 7.429, - "y": 120.277 - }, - { - "l": "91.0", - "x": 7.5123, - "y": 120.7779 - }, - { - "l": "91.0", - "x": 7.5957, - "y": 121.261 - }, - { - "l": "91.0", - "x": 7.679, - "y": 121.6992 - }, - { - "l": "91.0", - "x": 7.7623, - "y": 122.1872 - }, - { - "l": "91.0", - "x": 7.8457, - "y": 122.6588 - }, - { - "l": "91.0", - "x": 7.929, - "y": 123.0872 - }, - { - "l": "91.0", - "x": 8.0123, - "y": 123.5652 - }, - { - "l": "91.0", - "x": 8.0957, - "y": 124.028 - }, - { - "l": "91.0", - "x": 8.179, - "y": 124.4494 - }, - { - "l": "91.0", - "x": 8.2623, - "y": 124.9204 - }, - { - "l": "91.0", - "x": 8.3457, - "y": 125.3769 - }, - { - "l": "91.0", - "x": 8.429, - "y": 125.7929 - }, - { - "l": "91.0", - "x": 8.5123, - "y": 126.2583 - }, - { - "l": "91.0", - "x": 8.5957, - "y": 126.7106 - }, - { - "l": "91.0", - "x": 8.679, - "y": 127.1243 - }, - { - "l": "91.0", - "x": 8.7623, - "y": 127.5891 - }, - { - "l": "91.0", - "x": 8.8457, - "y": 128.0428 - }, - { - "l": "91.0", - "x": 8.929, - "y": 128.4594 - }, - { - "l": "91.0", - "x": 9.0123, - "y": 128.9293 - }, - { - "l": "91.0", - "x": 9.0957, - "y": 129.3889 - }, - { - "l": "91.0", - "x": 9.179, - "y": 129.8114 - }, - { - "l": "91.0", - "x": 9.2623, - "y": 130.2879 - }, - { - "l": "91.0", - "x": 9.3457, - "y": 130.7538 - }, - { - "l": "91.0", - "x": 9.429, - "y": 131.1818 - }, - { - "l": "91.0", - "x": 9.5123, - "y": 131.6639 - }, - { - "l": "91.0", - "x": 9.5957, - "y": 132.1346 - }, - { - "l": "91.0", - "x": 9.679, - "y": 132.5667 - }, - { - "l": "91.0", - "x": 9.7623, - "y": 133.0533 - }, - { - "l": "91.0", - "x": 9.8457, - "y": 133.5289 - }, - { - "l": "91.0", - "x": 9.929, - "y": 133.9659 - }, - { - "l": "91.0", - "x": 10.0123, - "y": 134.4595 - }, - { - "l": "91.0", - "x": 10.0957, - "y": 134.9432 - }, - { - "l": "91.0", - "x": 10.179, - "y": 135.3891 - }, - { - "l": "91.0", - "x": 10.2623, - "y": 135.8932 - }, - { - "l": "91.0", - "x": 10.3457, - "y": 136.3877 - }, - { - "l": "91.0", - "x": 10.429, - "y": 136.8436 - }, - { - "l": "91.0", - "x": 10.5123, - "y": 137.3588 - }, - { - "l": "91.0", - "x": 10.5957, - "y": 137.8641 - }, - { - "l": "91.0", - "x": 10.679, - "y": 138.3297 - }, - { - "l": "91.0", - "x": 10.7623, - "y": 138.8556 - }, - { - "l": "91.0", - "x": 10.8457, - "y": 139.3713 - }, - { - "l": "91.0", - "x": 10.929, - "y": 139.8463 - }, - { - "l": "91.0", - "x": 11.0123, - "y": 140.3827 - }, - { - "l": "91.0", - "x": 11.0957, - "y": 140.9081 - }, - { - "l": "91.0", - "x": 11.179, - "y": 141.3919 - }, - { - "l": "91.0", - "x": 11.2623, - "y": 141.9382 - }, - { - "l": "91.0", - "x": 11.3457, - "y": 142.4733 - }, - { - "l": "91.0", - "x": 11.429, - "y": 142.9657 - }, - { - "l": "91.0", - "x": 11.5123, - "y": 143.5209 - }, - { - "l": "91.0", - "x": 11.5957, - "y": 144.0634 - }, - { - "l": "91.0", - "x": 11.679, - "y": 144.5613 - }, - { - "l": "91.0", - "x": 11.7623, - "y": 145.121 - }, - { - "l": "91.0", - "x": 11.8457, - "y": 145.667 - }, - { - "l": "91.0", - "x": 11.929, - "y": 146.167 - }, - { - "l": "91.0", - "x": 12.0123, - "y": 146.7285 - }, - { - "l": "91.0", - "x": 12.0957, - "y": 147.2747 - }, - { - "l": "91.0", - "x": 12.179, - "y": 147.7736 - }, - { - "l": "91.0", - "x": 12.2623, - "y": 148.3318 - }, - { - "l": "91.0", - "x": 12.3457, - "y": 148.8727 - }, - { - "l": "91.0", - "x": 12.429, - "y": 149.3647 - }, - { - "l": "91.0", - "x": 12.5123, - "y": 149.9129 - }, - { - "l": "91.0", - "x": 12.5957, - "y": 150.4417 - }, - { - "l": "91.0", - "x": 12.679, - "y": 150.9203 - }, - { - "l": "91.0", - "x": 12.7623, - "y": 151.4507 - }, - { - "l": "91.0", - "x": 12.8457, - "y": 151.9603 - }, - { - "l": "91.0", - "x": 12.929, - "y": 152.4186 - }, - { - "l": "91.0", - "x": 13.0123, - "y": 152.9245 - }, - { - "l": "91.0", - "x": 13.0957, - "y": 153.4081 - }, - { - "l": "91.0", - "x": 13.179, - "y": 153.8422 - }, - { - "l": "91.0", - "x": 13.2623, - "y": 154.3203 - }, - { - "l": "91.0", - "x": 13.3457, - "y": 154.7765 - }, - { - "l": "91.0", - "x": 13.429, - "y": 155.1847 - }, - { - "l": "91.0", - "x": 13.5123, - "y": 155.6337 - }, - { - "l": "91.0", - "x": 13.5957, - "y": 156.061 - }, - { - "l": "91.0", - "x": 13.679, - "y": 156.4416 - }, - { - "l": "91.0", - "x": 13.7623, - "y": 156.8586 - }, - { - "l": "91.0", - "x": 13.8457, - "y": 157.2526 - }, - { - "l": "91.0", - "x": 13.929, - "y": 157.6039 - }, - { - "l": "91.0", - "x": 14.0123, - "y": 157.9859 - }, - { - "l": "91.0", - "x": 14.0957, - "y": 158.346 - }, - { - "l": "91.0", - "x": 14.179, - "y": 158.6648 - }, - { - "l": "91.0", - "x": 14.2623, - "y": 159.0113 - }, - { - "l": "91.0", - "x": 14.3457, - "y": 159.3373 - }, - { - "l": "91.0", - "x": 14.429, - "y": 159.6254 - }, - { - "l": "91.0", - "x": 14.5123, - "y": 159.9382 - }, - { - "l": "91.0", - "x": 14.5957, - "y": 160.2325 - }, - { - "l": "91.0", - "x": 14.679, - "y": 160.492 - }, - { - "l": "91.0", - "x": 14.7623, - "y": 160.7734 - }, - { - "l": "91.0", - "x": 14.8457, - "y": 161.0378 - }, - { - "l": "91.0", - "x": 14.929, - "y": 161.2704 - }, - { - "l": "91.0", - "x": 15.0123, - "y": 161.5221 - }, - { - "l": "91.0", - "x": 15.0957, - "y": 161.7607 - }, - { - "l": "91.0", - "x": 15.179, - "y": 161.9701 - }, - { - "l": "91.0", - "x": 15.2623, - "y": 162.1972 - }, - { - "l": "91.0", - "x": 15.3457, - "y": 162.4106 - }, - { - "l": "91.0", - "x": 15.429, - "y": 162.5999 - }, - { - "l": "91.0", - "x": 15.5123, - "y": 162.8048 - }, - { - "l": "91.0", - "x": 15.5957, - "y": 162.9983 - }, - { - "l": "91.0", - "x": 15.679, - "y": 163.1691 - }, - { - "l": "91.0", - "x": 15.7623, - "y": 163.3541 - }, - { - "l": "91.0", - "x": 15.8457, - "y": 163.53 - }, - { - "l": "91.0", - "x": 15.929, - "y": 163.6845 - }, - { - "l": "91.0", - "x": 16.0123, - "y": 163.8523 - }, - { - "l": "91.0", - "x": 16.0957, - "y": 164.0102 - }, - { - "l": "91.0", - "x": 16.179, - "y": 164.1498 - }, - { - "l": "91.0", - "x": 16.2623, - "y": 164.3022 - }, - { - "l": "91.0", - "x": 16.3457, - "y": 164.4458 - }, - { - "l": "91.0", - "x": 16.429, - "y": 164.5736 - }, - { - "l": "91.0", - "x": 16.5123, - "y": 164.7123 - }, - { - "l": "91.0", - "x": 16.5957, - "y": 164.8435 - }, - { - "l": "91.0", - "x": 16.679, - "y": 164.9602 - }, - { - "l": "91.0", - "x": 16.7623, - "y": 165.0874 - }, - { - "l": "91.0", - "x": 16.8457, - "y": 165.2079 - }, - { - "l": "91.0", - "x": 16.929, - "y": 165.315 - }, - { - "l": "91.0", - "x": 17.0123, - "y": 165.4319 - }, - { - "l": "91.0", - "x": 17.0957, - "y": 165.5418 - }, - { - "l": "91.0", - "x": 17.179, - "y": 165.6402 - }, - { - "l": "91.0", - "x": 17.2623, - "y": 165.7486 - }, - { - "l": "91.0", - "x": 17.3457, - "y": 165.8499 - }, - { - "l": "91.0", - "x": 17.429, - "y": 165.9414 - }, - { - "l": "91.0", - "x": 17.5123, - "y": 166.0412 - }, - { - "l": "91.0", - "x": 17.5957, - "y": 166.1351 - }, - { - "l": "91.0", - "x": 17.679, - "y": 166.2183 - }, - { - "l": "91.0", - "x": 17.7623, - "y": 166.3111 - }, - { - "l": "91.0", - "x": 17.8457, - "y": 166.3978 - }, - { - "l": "91.0", - "x": 17.929, - "y": 166.4749 - }, - { - "l": "91.0", - "x": 18.0123, - "y": 166.5589 - }, - { - "l": "91.0", - "x": 18.0957, - "y": 166.6382 - }, - { - "l": "91.0", - "x": 18.179, - "y": 166.7085 - }, - { - "l": "91.0", - "x": 18.2623, - "y": 166.7859 - }, - { - "l": "91.0", - "x": 18.3457, - "y": 166.8572 - }, - { - "l": "91.0", - "x": 18.429, - "y": 166.9207 - }, - { - "l": "91.0", - "x": 18.5123, - "y": 166.9921 - }, - { - "l": "91.0", - "x": 18.5957, - "y": 167.061 - }, - { - "l": "91.0", - "x": 18.679, - "y": 167.1197 - }, - { - "l": "91.0", - "x": 18.7623, - "y": 167.1843 - }, - { - "l": "91.0", - "x": 18.8457, - "y": 167.2448 - }, - { - "l": "91.0", - "x": 18.929, - "y": 167.2987 - }, - { - "l": "91.0", - "x": 19.0123, - "y": 167.3551 - }, - { - "l": "91.0", - "x": 19.0957, - "y": 167.4104 - }, - { - "l": "91.0", - "x": 19.179, - "y": 167.4598 - }, - { - "l": "91.0", - "x": 19.2623, - "y": 167.5075 - }, - { - "l": "91.0", - "x": 19.3457, - "y": 167.5539 - }, - { - "l": "91.0", - "x": 19.429, - "y": 167.5964 - }, - { - "l": "91.0", - "x": 19.5123, - "y": 167.6441 - }, - { - "l": "91.0", - "x": 19.5957, - "y": 167.6905 - }, - { - "l": "91.0", - "x": 19.679, - "y": 167.7312 - }, - { - "l": "91.0", - "x": 19.7623, - "y": 167.7717 - }, - { - "l": "91.0", - "x": 19.8457, - "y": 167.8103 - }, - { - "l": "91.0", - "x": 19.929, - "y": 167.8427 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 0.0, - "y": 54.4953 - }, - { - "l": "98.0", - "x": 0.0192, - "y": 55.1786 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 55.8616 - }, - { - "l": "98.0", - "x": 0.0575, - "y": 56.5442 - }, - { - "l": "98.0", - "x": 0.0767, - "y": 57.2266 - }, - { - "l": "98.0", - "x": 0.0958, - "y": 57.8509 - }, - { - "l": "98.0", - "x": 0.115, - "y": 58.45 - }, - { - "l": "98.0", - "x": 0.1342, - "y": 59.0411 - }, - { - "l": "98.0", - "x": 0.1533, - "y": 59.6312 - }, - { - "l": "98.0", - "x": 0.1725, - "y": 60.232 - }, - { - "l": "98.0", - "x": 0.1916, - "y": 60.8744 - }, - { - "l": "98.0", - "x": 0.2108, - "y": 61.5212 - }, - { - "l": "98.0", - "x": 0.23, - "y": 62.1678 - }, - { - "l": "98.0", - "x": 0.2491, - "y": 62.8095 - }, - { - "l": "98.0", - "x": 0.2683, - "y": 63.4388 - }, - { - "l": "98.0", - "x": 0.2875, - "y": 64.0547 - }, - { - "l": "98.0", - "x": 0.3066, - "y": 64.6538 - }, - { - "l": "98.0", - "x": 0.3258, - "y": 65.2326 - }, - { - "l": "98.0", - "x": 0.345, - "y": 65.7633 - }, - { - "l": "98.0", - "x": 0.3641, - "y": 66.2656 - }, - { - "l": "98.0", - "x": 0.3833, - "y": 66.7524 - }, - { - "l": "98.0", - "x": 0.4025, - "y": 67.2297 - }, - { - "l": "98.0", - "x": 0.4216, - "y": 67.7062 - }, - { - "l": "98.0", - "x": 0.4408, - "y": 68.2105 - }, - { - "l": "98.0", - "x": 0.46, - "y": 68.7114 - }, - { - "l": "98.0", - "x": 0.4791, - "y": 69.2055 - }, - { - "l": "98.0", - "x": 0.4983, - "y": 69.6893 - }, - { - "l": "98.0", - "x": 0.5175, - "y": 70.1552 - }, - { - "l": "98.0", - "x": 0.5366, - "y": 70.6051 - }, - { - "l": "98.0", - "x": 0.5558, - "y": 71.0377 - }, - { - "l": "98.0", - "x": 0.5749, - "y": 71.4513 - }, - { - "l": "98.0", - "x": 0.5941, - "y": 71.8283 - }, - { - "l": "98.0", - "x": 0.6133, - "y": 72.1809 - }, - { - "l": "98.0", - "x": 0.6324, - "y": 72.5198 - }, - { - "l": "98.0", - "x": 0.6516, - "y": 72.8497 - }, - { - "l": "98.0", - "x": 0.6708, - "y": 73.1767 - }, - { - "l": "98.0", - "x": 0.6899, - "y": 73.524 - }, - { - "l": "98.0", - "x": 0.7091, - "y": 73.8688 - }, - { - "l": "98.0", - "x": 0.7283, - "y": 74.2095 - }, - { - "l": "98.0", - "x": 0.7474, - "y": 74.5439 - }, - { - "l": "98.0", - "x": 0.7666, - "y": 74.8686 - }, - { - "l": "98.0", - "x": 0.7858, - "y": 75.1838 - }, - { - "l": "98.0", - "x": 0.8049, - "y": 75.4885 - }, - { - "l": "98.0", - "x": 0.8241, - "y": 75.7817 - }, - { - "l": "98.0", - "x": 0.8433, - "y": 76.0518 - }, - { - "l": "98.0", - "x": 0.8624, - "y": 76.3058 - }, - { - "l": "98.0", - "x": 0.8816, - "y": 76.552 - }, - { - "l": "98.0", - "x": 0.9008, - "y": 76.7938 - }, - { - "l": "98.0", - "x": 0.9199, - "y": 77.0347 - }, - { - "l": "98.0", - "x": 0.9391, - "y": 77.2932 - }, - { - "l": "98.0", - "x": 0.9582, - "y": 77.5521 - }, - { - "l": "98.0", - "x": 0.9774, - "y": 77.8099 - }, - { - "l": "98.0", - "x": 0.9966, - "y": 78.0652 - }, - { - "l": "98.0", - "x": 1.0157, - "y": 78.3157 - }, - { - "l": "98.0", - "x": 1.0349, - "y": 78.5609 - }, - { - "l": "98.0", - "x": 1.0541, - "y": 78.8 - }, - { - "l": "98.0", - "x": 1.0732, - "y": 79.0318 - }, - { - "l": "98.0", - "x": 1.0924, - "y": 79.2474 - }, - { - "l": "98.0", - "x": 1.1116, - "y": 79.4511 - }, - { - "l": "98.0", - "x": 1.1307, - "y": 79.6501 - }, - { - "l": "98.0", - "x": 1.1499, - "y": 79.8471 - }, - { - "l": "98.0", - "x": 1.1691, - "y": 80.0448 - }, - { - "l": "98.0", - "x": 1.1882, - "y": 80.2576 - }, - { - "l": "98.0", - "x": 1.2074, - "y": 80.4728 - }, - { - "l": "98.0", - "x": 1.2266, - "y": 80.6885 - }, - { - "l": "98.0", - "x": 1.2457, - "y": 80.9035 - }, - { - "l": "98.0", - "x": 1.2649, - "y": 81.1161 - }, - { - "l": "98.0", - "x": 1.2841, - "y": 81.3256 - }, - { - "l": "98.0", - "x": 1.3032, - "y": 81.5309 - }, - { - "l": "98.0", - "x": 1.3224, - "y": 81.7311 - }, - { - "l": "98.0", - "x": 1.3415, - "y": 81.9184 - }, - { - "l": "98.0", - "x": 1.3607, - "y": 82.0955 - }, - { - "l": "98.0", - "x": 1.3799, - "y": 82.2692 - }, - { - "l": "98.0", - "x": 1.399, - "y": 82.4415 - }, - { - "l": "98.0", - "x": 1.4182, - "y": 82.6149 - }, - { - "l": "98.0", - "x": 1.4374, - "y": 82.8012 - }, - { - "l": "98.0", - "x": 1.4565, - "y": 82.9904 - }, - { - "l": "98.0", - "x": 1.4757, - "y": 83.1805 - }, - { - "l": "98.0", - "x": 1.4949, - "y": 83.3704 - }, - { - "l": "98.0", - "x": 1.514, - "y": 83.5585 - }, - { - "l": "98.0", - "x": 1.5332, - "y": 83.7441 - }, - { - "l": "98.0", - "x": 1.5524, - "y": 83.9264 - }, - { - "l": "98.0", - "x": 1.5715, - "y": 84.1044 - }, - { - "l": "98.0", - "x": 1.5907, - "y": 84.2716 - }, - { - "l": "98.0", - "x": 1.6099, - "y": 84.4295 - }, - { - "l": "98.0", - "x": 1.629, - "y": 84.5844 - }, - { - "l": "98.0", - "x": 1.6482, - "y": 84.7383 - }, - { - "l": "98.0", - "x": 1.6674, - "y": 84.8933 - }, - { - "l": "98.0", - "x": 1.6865, - "y": 85.0595 - }, - { - "l": "98.0", - "x": 1.7057, - "y": 85.2292 - }, - { - "l": "98.0", - "x": 1.7248, - "y": 85.3998 - }, - { - "l": "98.0", - "x": 1.744, - "y": 85.5705 - }, - { - "l": "98.0", - "x": 1.7632, - "y": 85.74 - }, - { - "l": "98.0", - "x": 1.7823, - "y": 85.9075 - }, - { - "l": "98.0", - "x": 1.8015, - "y": 86.0722 - }, - { - "l": "98.0", - "x": 1.8207, - "y": 86.2332 - }, - { - "l": "98.0", - "x": 1.8398, - "y": 86.3852 - }, - { - "l": "98.0", - "x": 1.859, - "y": 86.5284 - }, - { - "l": "98.0", - "x": 1.8782, - "y": 86.669 - }, - { - "l": "98.0", - "x": 1.8973, - "y": 86.8089 - }, - { - "l": "98.0", - "x": 1.9165, - "y": 86.9501 - }, - { - "l": "98.0", - "x": 1.9357, - "y": 87.1012 - }, - { - "l": "98.0", - "x": 1.9548, - "y": 87.2562 - }, - { - "l": "98.0", - "x": 1.974, - "y": 87.4124 - }, - { - "l": "98.0", - "x": 1.9932, - "y": 87.5691 - }, - { - "l": "98.0", - "x": 2.0123, - "y": 87.725 - }, - { - "l": "98.0", - "x": 2.0957, - "y": 88.3689 - }, - { - "l": "98.0", - "x": 2.179, - "y": 88.9458 - }, - { - "l": "98.0", - "x": 2.2623, - "y": 89.5814 - }, - { - "l": "98.0", - "x": 2.3457, - "y": 90.1891 - }, - { - "l": "98.0", - "x": 2.429, - "y": 90.7367 - }, - { - "l": "98.0", - "x": 2.5123, - "y": 91.3434 - }, - { - "l": "98.0", - "x": 2.5957, - "y": 91.9269 - }, - { - "l": "98.0", - "x": 2.679, - "y": 92.4546 - }, - { - "l": "98.0", - "x": 2.7623, - "y": 93.0405 - }, - { - "l": "98.0", - "x": 2.8457, - "y": 93.6044 - }, - { - "l": "98.0", - "x": 2.929, - "y": 94.1151 - }, - { - "l": "98.0", - "x": 3.0123, - "y": 94.6833 - }, - { - "l": "98.0", - "x": 3.0957, - "y": 95.2327 - }, - { - "l": "98.0", - "x": 3.179, - "y": 95.7328 - }, - { - "l": "98.0", - "x": 3.2623, - "y": 96.2923 - }, - { - "l": "98.0", - "x": 3.3457, - "y": 96.8358 - }, - { - "l": "98.0", - "x": 3.429, - "y": 97.3326 - }, - { - "l": "98.0", - "x": 3.5123, - "y": 97.89 - }, - { - "l": "98.0", - "x": 3.5957, - "y": 98.4331 - }, - { - "l": "98.0", - "x": 3.679, - "y": 98.9307 - }, - { - "l": "98.0", - "x": 3.7623, - "y": 99.4907 - }, - { - "l": "98.0", - "x": 3.8457, - "y": 100.0383 - }, - { - "l": "98.0", - "x": 3.929, - "y": 100.5423 - }, - { - "l": "98.0", - "x": 4.0123, - "y": 101.1109 - }, - { - "l": "98.0", - "x": 4.0957, - "y": 101.6676 - }, - { - "l": "98.0", - "x": 4.179, - "y": 102.1795 - }, - { - "l": "98.0", - "x": 4.2623, - "y": 102.7565 - }, - { - "l": "98.0", - "x": 4.3457, - "y": 103.3201 - }, - { - "l": "98.0", - "x": 4.429, - "y": 103.8378 - }, - { - "l": "98.0", - "x": 4.5123, - "y": 104.4213 - }, - { - "l": "98.0", - "x": 4.5957, - "y": 104.9928 - }, - { - "l": "98.0", - "x": 4.679, - "y": 105.5194 - }, - { - "l": "98.0", - "x": 4.7623, - "y": 106.1145 - }, - { - "l": "98.0", - "x": 4.8457, - "y": 106.6978 - }, - { - "l": "98.0", - "x": 4.929, - "y": 107.2347 - }, - { - "l": "98.0", - "x": 5.0123, - "y": 107.8398 - }, - { - "l": "98.0", - "x": 5.0957, - "y": 108.4312 - }, - { - "l": "98.0", - "x": 5.179, - "y": 108.9739 - }, - { - "l": "98.0", - "x": 5.2623, - "y": 109.5841 - }, - { - "l": "98.0", - "x": 5.3457, - "y": 110.1783 - }, - { - "l": "98.0", - "x": 5.429, - "y": 110.7216 - }, - { - "l": "98.0", - "x": 5.5123, - "y": 111.3304 - }, - { - "l": "98.0", - "x": 5.5957, - "y": 111.9217 - }, - { - "l": "98.0", - "x": 5.679, - "y": 112.4612 - }, - { - "l": "98.0", - "x": 5.7623, - "y": 113.0647 - }, - { - "l": "98.0", - "x": 5.8457, - "y": 113.6497 - }, - { - "l": "98.0", - "x": 5.929, - "y": 114.1831 - }, - { - "l": "98.0", - "x": 6.0123, - "y": 114.7795 - }, - { - "l": "98.0", - "x": 6.0957, - "y": 115.3576 - }, - { - "l": "98.0", - "x": 6.179, - "y": 115.8843 - }, - { - "l": "98.0", - "x": 6.2623, - "y": 116.4726 - }, - { - "l": "98.0", - "x": 6.3457, - "y": 117.0425 - }, - { - "l": "98.0", - "x": 6.429, - "y": 117.5608 - }, - { - "l": "98.0", - "x": 6.5123, - "y": 118.1395 - }, - { - "l": "98.0", - "x": 6.5957, - "y": 118.6995 - }, - { - "l": "98.0", - "x": 6.679, - "y": 119.2088 - }, - { - "l": "98.0", - "x": 6.7623, - "y": 119.7765 - }, - { - "l": "98.0", - "x": 6.8457, - "y": 120.3249 - }, - { - "l": "98.0", - "x": 6.929, - "y": 120.8224 - }, - { - "l": "98.0", - "x": 7.0123, - "y": 121.3758 - }, - { - "l": "98.0", - "x": 7.0957, - "y": 121.9092 - }, - { - "l": "98.0", - "x": 7.179, - "y": 122.3923 - }, - { - "l": "98.0", - "x": 7.2623, - "y": 122.9289 - }, - { - "l": "98.0", - "x": 7.3457, - "y": 123.446 - }, - { - "l": "98.0", - "x": 7.429, - "y": 123.9141 - }, - { - "l": "98.0", - "x": 7.5123, - "y": 124.4345 - }, - { - "l": "98.0", - "x": 7.5957, - "y": 124.9362 - }, - { - "l": "98.0", - "x": 7.679, - "y": 125.3913 - }, - { - "l": "98.0", - "x": 7.7623, - "y": 125.8981 - }, - { - "l": "98.0", - "x": 7.8457, - "y": 126.3878 - }, - { - "l": "98.0", - "x": 7.929, - "y": 126.8326 - }, - { - "l": "98.0", - "x": 8.0123, - "y": 127.3288 - }, - { - "l": "98.0", - "x": 8.0957, - "y": 127.8092 - }, - { - "l": "98.0", - "x": 8.179, - "y": 128.2466 - }, - { - "l": "98.0", - "x": 8.2623, - "y": 128.7353 - }, - { - "l": "98.0", - "x": 8.3457, - "y": 129.2089 - }, - { - "l": "98.0", - "x": 8.429, - "y": 129.6405 - }, - { - "l": "98.0", - "x": 8.5123, - "y": 130.1232 - }, - { - "l": "98.0", - "x": 8.5957, - "y": 130.5922 - }, - { - "l": "98.0", - "x": 8.679, - "y": 131.0211 - }, - { - "l": "98.0", - "x": 8.7623, - "y": 131.5029 - }, - { - "l": "98.0", - "x": 8.8457, - "y": 131.9731 - }, - { - "l": "98.0", - "x": 8.929, - "y": 132.4047 - }, - { - "l": "98.0", - "x": 9.0123, - "y": 132.8915 - }, - { - "l": "98.0", - "x": 9.0957, - "y": 133.3674 - }, - { - "l": "98.0", - "x": 9.179, - "y": 133.8049 - }, - { - "l": "98.0", - "x": 9.2623, - "y": 134.298 - }, - { - "l": "98.0", - "x": 9.3457, - "y": 134.7802 - }, - { - "l": "98.0", - "x": 9.429, - "y": 135.223 - }, - { - "l": "98.0", - "x": 9.5123, - "y": 135.7215 - }, - { - "l": "98.0", - "x": 9.5957, - "y": 136.2082 - }, - { - "l": "98.0", - "x": 9.679, - "y": 136.6547 - }, - { - "l": "98.0", - "x": 9.7623, - "y": 137.1574 - }, - { - "l": "98.0", - "x": 9.8457, - "y": 137.6486 - }, - { - "l": "98.0", - "x": 9.929, - "y": 138.0998 - }, - { - "l": "98.0", - "x": 10.0123, - "y": 138.6092 - }, - { - "l": "98.0", - "x": 10.0957, - "y": 139.1082 - }, - { - "l": "98.0", - "x": 10.179, - "y": 139.568 - }, - { - "l": "98.0", - "x": 10.2623, - "y": 140.0877 - }, - { - "l": "98.0", - "x": 10.3457, - "y": 140.5972 - }, - { - "l": "98.0", - "x": 10.429, - "y": 141.0667 - }, - { - "l": "98.0", - "x": 10.5123, - "y": 141.5972 - }, - { - "l": "98.0", - "x": 10.5957, - "y": 142.117 - }, - { - "l": "98.0", - "x": 10.679, - "y": 142.5959 - }, - { - "l": "98.0", - "x": 10.7623, - "y": 143.1365 - }, - { - "l": "98.0", - "x": 10.8457, - "y": 143.6664 - }, - { - "l": "98.0", - "x": 10.929, - "y": 144.1541 - }, - { - "l": "98.0", - "x": 11.0123, - "y": 144.7046 - }, - { - "l": "98.0", - "x": 11.0957, - "y": 145.2436 - }, - { - "l": "98.0", - "x": 11.179, - "y": 145.7395 - }, - { - "l": "98.0", - "x": 11.2623, - "y": 146.2993 - }, - { - "l": "98.0", - "x": 11.3457, - "y": 146.8472 - }, - { - "l": "98.0", - "x": 11.429, - "y": 147.3512 - }, - { - "l": "98.0", - "x": 11.5123, - "y": 147.919 - }, - { - "l": "98.0", - "x": 11.5957, - "y": 148.4735 - }, - { - "l": "98.0", - "x": 11.679, - "y": 148.982 - }, - { - "l": "98.0", - "x": 11.7623, - "y": 149.5534 - }, - { - "l": "98.0", - "x": 11.8457, - "y": 150.1103 - }, - { - "l": "98.0", - "x": 11.929, - "y": 150.62 - }, - { - "l": "98.0", - "x": 12.0123, - "y": 151.192 - }, - { - "l": "98.0", - "x": 12.0957, - "y": 151.7481 - }, - { - "l": "98.0", - "x": 12.179, - "y": 152.2556 - }, - { - "l": "98.0", - "x": 12.2623, - "y": 152.8231 - }, - { - "l": "98.0", - "x": 12.3457, - "y": 153.3726 - }, - { - "l": "98.0", - "x": 12.429, - "y": 153.872 - }, - { - "l": "98.0", - "x": 12.5123, - "y": 154.4282 - }, - { - "l": "98.0", - "x": 12.5957, - "y": 154.9643 - }, - { - "l": "98.0", - "x": 12.679, - "y": 155.4491 - }, - { - "l": "98.0", - "x": 12.7623, - "y": 155.9859 - }, - { - "l": "98.0", - "x": 12.8457, - "y": 156.5015 - }, - { - "l": "98.0", - "x": 12.929, - "y": 156.9648 - }, - { - "l": "98.0", - "x": 13.0123, - "y": 157.4758 - }, - { - "l": "98.0", - "x": 13.0957, - "y": 157.9641 - }, - { - "l": "98.0", - "x": 13.179, - "y": 158.4019 - }, - { - "l": "98.0", - "x": 13.2623, - "y": 158.884 - }, - { - "l": "98.0", - "x": 13.3457, - "y": 159.3436 - }, - { - "l": "98.0", - "x": 13.429, - "y": 159.7546 - }, - { - "l": "98.0", - "x": 13.5123, - "y": 160.2064 - }, - { - "l": "98.0", - "x": 13.5957, - "y": 160.6362 - }, - { - "l": "98.0", - "x": 13.679, - "y": 161.0188 - }, - { - "l": "98.0", - "x": 13.7623, - "y": 161.4376 - }, - { - "l": "98.0", - "x": 13.8457, - "y": 161.8332 - }, - { - "l": "98.0", - "x": 13.929, - "y": 162.1857 - }, - { - "l": "98.0", - "x": 14.0123, - "y": 162.5689 - }, - { - "l": "98.0", - "x": 14.0957, - "y": 162.9299 - }, - { - "l": "98.0", - "x": 14.179, - "y": 163.2492 - }, - { - "l": "98.0", - "x": 14.2623, - "y": 163.5963 - }, - { - "l": "98.0", - "x": 14.3457, - "y": 163.9227 - }, - { - "l": "98.0", - "x": 14.429, - "y": 164.211 - }, - { - "l": "98.0", - "x": 14.5123, - "y": 164.5239 - }, - { - "l": "98.0", - "x": 14.5957, - "y": 164.8181 - }, - { - "l": "98.0", - "x": 14.679, - "y": 165.0775 - }, - { - "l": "98.0", - "x": 14.7623, - "y": 165.3588 - }, - { - "l": "98.0", - "x": 14.8457, - "y": 165.6229 - }, - { - "l": "98.0", - "x": 14.929, - "y": 165.8552 - }, - { - "l": "98.0", - "x": 15.0123, - "y": 166.1066 - }, - { - "l": "98.0", - "x": 15.0957, - "y": 166.3447 - }, - { - "l": "98.0", - "x": 15.179, - "y": 166.5538 - }, - { - "l": "98.0", - "x": 15.2623, - "y": 166.7803 - }, - { - "l": "98.0", - "x": 15.3457, - "y": 166.9932 - }, - { - "l": "98.0", - "x": 15.429, - "y": 167.182 - }, - { - "l": "98.0", - "x": 15.5123, - "y": 167.3864 - }, - { - "l": "98.0", - "x": 15.5957, - "y": 167.5793 - }, - { - "l": "98.0", - "x": 15.679, - "y": 167.7496 - }, - { - "l": "98.0", - "x": 15.7623, - "y": 167.9341 - }, - { - "l": "98.0", - "x": 15.8457, - "y": 168.1093 - }, - { - "l": "98.0", - "x": 15.929, - "y": 168.2633 - }, - { - "l": "98.0", - "x": 16.0123, - "y": 168.4306 - }, - { - "l": "98.0", - "x": 16.0957, - "y": 168.5879 - }, - { - "l": "98.0", - "x": 16.179, - "y": 168.727 - }, - { - "l": "98.0", - "x": 16.2623, - "y": 168.8788 - }, - { - "l": "98.0", - "x": 16.3457, - "y": 169.0219 - }, - { - "l": "98.0", - "x": 16.429, - "y": 169.1491 - }, - { - "l": "98.0", - "x": 16.5123, - "y": 169.2873 - }, - { - "l": "98.0", - "x": 16.5957, - "y": 169.418 - }, - { - "l": "98.0", - "x": 16.679, - "y": 169.5342 - }, - { - "l": "98.0", - "x": 16.7623, - "y": 169.6609 - }, - { - "l": "98.0", - "x": 16.8457, - "y": 169.7809 - }, - { - "l": "98.0", - "x": 16.929, - "y": 169.8875 - }, - { - "l": "98.0", - "x": 17.0123, - "y": 170.0039 - }, - { - "l": "98.0", - "x": 17.0957, - "y": 170.1134 - }, - { - "l": "98.0", - "x": 17.179, - "y": 170.2114 - }, - { - "l": "98.0", - "x": 17.2623, - "y": 170.3193 - }, - { - "l": "98.0", - "x": 17.3457, - "y": 170.4201 - }, - { - "l": "98.0", - "x": 17.429, - "y": 170.5112 - }, - { - "l": "98.0", - "x": 17.5123, - "y": 170.6105 - }, - { - "l": "98.0", - "x": 17.5957, - "y": 170.704 - }, - { - "l": "98.0", - "x": 17.679, - "y": 170.7868 - }, - { - "l": "98.0", - "x": 17.7623, - "y": 170.8791 - }, - { - "l": "98.0", - "x": 17.8457, - "y": 170.9655 - }, - { - "l": "98.0", - "x": 17.929, - "y": 171.0422 - }, - { - "l": "98.0", - "x": 18.0123, - "y": 171.1258 - }, - { - "l": "98.0", - "x": 18.0957, - "y": 171.2048 - }, - { - "l": "98.0", - "x": 18.179, - "y": 171.2747 - }, - { - "l": "98.0", - "x": 18.2623, - "y": 171.3517 - }, - { - "l": "98.0", - "x": 18.3457, - "y": 171.4227 - }, - { - "l": "98.0", - "x": 18.429, - "y": 171.4858 - }, - { - "l": "98.0", - "x": 18.5123, - "y": 171.5569 - }, - { - "l": "98.0", - "x": 18.5957, - "y": 171.6254 - }, - { - "l": "98.0", - "x": 18.679, - "y": 171.6839 - }, - { - "l": "98.0", - "x": 18.7623, - "y": 171.7481 - }, - { - "l": "98.0", - "x": 18.8457, - "y": 171.8083 - }, - { - "l": "98.0", - "x": 18.929, - "y": 171.862 - }, - { - "l": "98.0", - "x": 19.0123, - "y": 171.9181 - }, - { - "l": "98.0", - "x": 19.0957, - "y": 171.9731 - }, - { - "l": "98.0", - "x": 19.179, - "y": 172.0222 - }, - { - "l": "98.0", - "x": 19.2623, - "y": 172.0697 - }, - { - "l": "98.0", - "x": 19.3457, - "y": 172.1158 - }, - { - "l": "98.0", - "x": 19.429, - "y": 172.1581 - }, - { - "l": "98.0", - "x": 19.5123, - "y": 172.2055 - }, - { - "l": "98.0", - "x": 19.5957, - "y": 172.2517 - }, - { - "l": "98.0", - "x": 19.679, - "y": 172.2922 - }, - { - "l": "98.0", - "x": 19.7623, - "y": 172.3324 - }, - { - "l": "98.0", - "x": 19.8457, - "y": 172.3708 - }, - { - "l": "98.0", - "x": 19.929, - "y": 172.4031 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 0.0, - "y": 56.1597 - }, - { - "l": "99.6", - "x": 0.0192, - "y": 56.86 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 57.5599 - }, - { - "l": "99.6", - "x": 0.0575, - "y": 58.2594 - }, - { - "l": "99.6", - "x": 0.0767, - "y": 58.9585 - }, - { - "l": "99.6", - "x": 0.0958, - "y": 59.5982 - }, - { - "l": "99.6", - "x": 0.115, - "y": 60.2118 - }, - { - "l": "99.6", - "x": 0.1342, - "y": 60.8172 - }, - { - "l": "99.6", - "x": 0.1533, - "y": 61.4215 - }, - { - "l": "99.6", - "x": 0.1725, - "y": 62.0367 - }, - { - "l": "99.6", - "x": 0.1916, - "y": 62.6943 - }, - { - "l": "99.6", - "x": 0.2108, - "y": 63.3564 - }, - { - "l": "99.6", - "x": 0.23, - "y": 64.0182 - }, - { - "l": "99.6", - "x": 0.2491, - "y": 64.6748 - }, - { - "l": "99.6", - "x": 0.2683, - "y": 65.3186 - }, - { - "l": "99.6", - "x": 0.2875, - "y": 65.9487 - }, - { - "l": "99.6", - "x": 0.3066, - "y": 66.5615 - }, - { - "l": "99.6", - "x": 0.3258, - "y": 67.1534 - }, - { - "l": "99.6", - "x": 0.345, - "y": 67.6961 - }, - { - "l": "99.6", - "x": 0.3641, - "y": 68.2096 - }, - { - "l": "99.6", - "x": 0.3833, - "y": 68.7072 - }, - { - "l": "99.6", - "x": 0.4025, - "y": 69.195 - }, - { - "l": "99.6", - "x": 0.4216, - "y": 69.6819 - }, - { - "l": "99.6", - "x": 0.4408, - "y": 70.1971 - }, - { - "l": "99.6", - "x": 0.46, - "y": 70.7088 - }, - { - "l": "99.6", - "x": 0.4791, - "y": 71.2134 - }, - { - "l": "99.6", - "x": 0.4983, - "y": 71.7074 - }, - { - "l": "99.6", - "x": 0.5175, - "y": 72.1831 - }, - { - "l": "99.6", - "x": 0.5366, - "y": 72.6423 - }, - { - "l": "99.6", - "x": 0.5558, - "y": 73.0838 - }, - { - "l": "99.6", - "x": 0.5749, - "y": 73.5058 - }, - { - "l": "99.6", - "x": 0.5941, - "y": 73.8904 - }, - { - "l": "99.6", - "x": 0.6133, - "y": 74.25 - }, - { - "l": "99.6", - "x": 0.6324, - "y": 74.5956 - }, - { - "l": "99.6", - "x": 0.6516, - "y": 74.9321 - }, - { - "l": "99.6", - "x": 0.6708, - "y": 75.2654 - }, - { - "l": "99.6", - "x": 0.6899, - "y": 75.6195 - }, - { - "l": "99.6", - "x": 0.7091, - "y": 75.971 - }, - { - "l": "99.6", - "x": 0.7283, - "y": 76.3182 - }, - { - "l": "99.6", - "x": 0.7474, - "y": 76.6591 - }, - { - "l": "99.6", - "x": 0.7666, - "y": 76.99 - }, - { - "l": "99.6", - "x": 0.7858, - "y": 77.3111 - }, - { - "l": "99.6", - "x": 0.8049, - "y": 77.6216 - }, - { - "l": "99.6", - "x": 0.8241, - "y": 77.9203 - }, - { - "l": "99.6", - "x": 0.8433, - "y": 78.1954 - }, - { - "l": "99.6", - "x": 0.8624, - "y": 78.4543 - }, - { - "l": "99.6", - "x": 0.8816, - "y": 78.7051 - }, - { - "l": "99.6", - "x": 0.9008, - "y": 78.9514 - }, - { - "l": "99.6", - "x": 0.9199, - "y": 79.1969 - }, - { - "l": "99.6", - "x": 0.9391, - "y": 79.4602 - }, - { - "l": "99.6", - "x": 0.9582, - "y": 79.724 - }, - { - "l": "99.6", - "x": 0.9774, - "y": 79.9867 - }, - { - "l": "99.6", - "x": 0.9966, - "y": 80.2468 - }, - { - "l": "99.6", - "x": 1.0157, - "y": 80.502 - }, - { - "l": "99.6", - "x": 1.0349, - "y": 80.7519 - }, - { - "l": "99.6", - "x": 1.0541, - "y": 80.9955 - }, - { - "l": "99.6", - "x": 1.0732, - "y": 81.2318 - }, - { - "l": "99.6", - "x": 1.0924, - "y": 81.4516 - }, - { - "l": "99.6", - "x": 1.1116, - "y": 81.6593 - }, - { - "l": "99.6", - "x": 1.1307, - "y": 81.8621 - }, - { - "l": "99.6", - "x": 1.1499, - "y": 82.063 - }, - { - "l": "99.6", - "x": 1.1691, - "y": 82.2646 - }, - { - "l": "99.6", - "x": 1.1882, - "y": 82.4817 - }, - { - "l": "99.6", - "x": 1.2074, - "y": 82.7012 - }, - { - "l": "99.6", - "x": 1.2266, - "y": 82.9212 - }, - { - "l": "99.6", - "x": 1.2457, - "y": 83.1406 - }, - { - "l": "99.6", - "x": 1.2649, - "y": 83.3575 - }, - { - "l": "99.6", - "x": 1.2841, - "y": 83.5713 - }, - { - "l": "99.6", - "x": 1.3032, - "y": 83.7809 - }, - { - "l": "99.6", - "x": 1.3224, - "y": 83.9852 - }, - { - "l": "99.6", - "x": 1.3415, - "y": 84.1765 - }, - { - "l": "99.6", - "x": 1.3607, - "y": 84.3574 - }, - { - "l": "99.6", - "x": 1.3799, - "y": 84.5347 - }, - { - "l": "99.6", - "x": 1.399, - "y": 84.7107 - }, - { - "l": "99.6", - "x": 1.4182, - "y": 84.8879 - }, - { - "l": "99.6", - "x": 1.4374, - "y": 85.0782 - }, - { - "l": "99.6", - "x": 1.4565, - "y": 85.2716 - }, - { - "l": "99.6", - "x": 1.4757, - "y": 85.4659 - }, - { - "l": "99.6", - "x": 1.4949, - "y": 85.6599 - }, - { - "l": "99.6", - "x": 1.514, - "y": 85.8522 - }, - { - "l": "99.6", - "x": 1.5332, - "y": 86.042 - }, - { - "l": "99.6", - "x": 1.5524, - "y": 86.2284 - }, - { - "l": "99.6", - "x": 1.5715, - "y": 86.4104 - }, - { - "l": "99.6", - "x": 1.5907, - "y": 86.5815 - }, - { - "l": "99.6", - "x": 1.6099, - "y": 86.743 - }, - { - "l": "99.6", - "x": 1.629, - "y": 86.9015 - }, - { - "l": "99.6", - "x": 1.6482, - "y": 87.059 - }, - { - "l": "99.6", - "x": 1.6674, - "y": 87.2176 - }, - { - "l": "99.6", - "x": 1.6865, - "y": 87.3878 - }, - { - "l": "99.6", - "x": 1.7057, - "y": 87.5614 - }, - { - "l": "99.6", - "x": 1.7248, - "y": 87.7362 - }, - { - "l": "99.6", - "x": 1.744, - "y": 87.911 - }, - { - "l": "99.6", - "x": 1.7632, - "y": 88.0845 - }, - { - "l": "99.6", - "x": 1.7823, - "y": 88.256 - }, - { - "l": "99.6", - "x": 1.8015, - "y": 88.4247 - }, - { - "l": "99.6", - "x": 1.8207, - "y": 88.5897 - }, - { - "l": "99.6", - "x": 1.8398, - "y": 88.7454 - }, - { - "l": "99.6", - "x": 1.859, - "y": 88.8922 - }, - { - "l": "99.6", - "x": 1.8782, - "y": 89.0363 - }, - { - "l": "99.6", - "x": 1.8973, - "y": 89.1797 - }, - { - "l": "99.6", - "x": 1.9165, - "y": 89.3244 - }, - { - "l": "99.6", - "x": 1.9357, - "y": 89.4793 - }, - { - "l": "99.6", - "x": 1.9548, - "y": 89.6382 - }, - { - "l": "99.6", - "x": 1.974, - "y": 89.7985 - }, - { - "l": "99.6", - "x": 1.9932, - "y": 89.9591 - }, - { - "l": "99.6", - "x": 2.0123, - "y": 90.119 - }, - { - "l": "99.6", - "x": 2.0957, - "y": 90.7796 - }, - { - "l": "99.6", - "x": 2.179, - "y": 91.3718 - }, - { - "l": "99.6", - "x": 2.2623, - "y": 92.0245 - }, - { - "l": "99.6", - "x": 2.3457, - "y": 92.6488 - }, - { - "l": "99.6", - "x": 2.429, - "y": 93.2116 - }, - { - "l": "99.6", - "x": 2.5123, - "y": 93.8354 - }, - { - "l": "99.6", - "x": 2.5957, - "y": 94.4355 - }, - { - "l": "99.6", - "x": 2.679, - "y": 94.9784 - }, - { - "l": "99.6", - "x": 2.7623, - "y": 95.5814 - }, - { - "l": "99.6", - "x": 2.8457, - "y": 96.1621 - }, - { - "l": "99.6", - "x": 2.929, - "y": 96.6879 - }, - { - "l": "99.6", - "x": 3.0123, - "y": 97.2734 - }, - { - "l": "99.6", - "x": 3.0957, - "y": 97.8396 - }, - { - "l": "99.6", - "x": 3.179, - "y": 98.3551 - }, - { - "l": "99.6", - "x": 3.2623, - "y": 98.9321 - }, - { - "l": "99.6", - "x": 3.3457, - "y": 99.4927 - }, - { - "l": "99.6", - "x": 3.429, - "y": 100.0053 - }, - { - "l": "99.6", - "x": 3.5123, - "y": 100.5807 - }, - { - "l": "99.6", - "x": 3.5957, - "y": 101.1413 - }, - { - "l": "99.6", - "x": 3.679, - "y": 101.6553 - }, - { - "l": "99.6", - "x": 3.7623, - "y": 102.2337 - }, - { - "l": "99.6", - "x": 3.8457, - "y": 102.7995 - }, - { - "l": "99.6", - "x": 3.929, - "y": 103.3203 - }, - { - "l": "99.6", - "x": 4.0123, - "y": 103.9082 - }, - { - "l": "99.6", - "x": 4.0957, - "y": 104.4837 - }, - { - "l": "99.6", - "x": 4.179, - "y": 105.0131 - }, - { - "l": "99.6", - "x": 4.2623, - "y": 105.61 - }, - { - "l": "99.6", - "x": 4.3457, - "y": 106.1932 - }, - { - "l": "99.6", - "x": 4.429, - "y": 106.7289 - }, - { - "l": "99.6", - "x": 4.5123, - "y": 107.3329 - }, - { - "l": "99.6", - "x": 4.5957, - "y": 107.9246 - }, - { - "l": "99.6", - "x": 4.679, - "y": 108.4698 - }, - { - "l": "99.6", - "x": 4.7623, - "y": 109.0862 - }, - { - "l": "99.6", - "x": 4.8457, - "y": 109.6905 - }, - { - "l": "99.6", - "x": 4.929, - "y": 110.2467 - }, - { - "l": "99.6", - "x": 5.0123, - "y": 110.8737 - }, - { - "l": "99.6", - "x": 5.0957, - "y": 111.4866 - }, - { - "l": "99.6", - "x": 5.179, - "y": 112.0492 - }, - { - "l": "99.6", - "x": 5.2623, - "y": 112.6818 - }, - { - "l": "99.6", - "x": 5.3457, - "y": 113.2979 - }, - { - "l": "99.6", - "x": 5.429, - "y": 113.8613 - }, - { - "l": "99.6", - "x": 5.5123, - "y": 114.4927 - }, - { - "l": "99.6", - "x": 5.5957, - "y": 115.1061 - }, - { - "l": "99.6", - "x": 5.679, - "y": 115.6658 - }, - { - "l": "99.6", - "x": 5.7623, - "y": 116.2919 - }, - { - "l": "99.6", - "x": 5.8457, - "y": 116.899 - }, - { - "l": "99.6", - "x": 5.929, - "y": 117.4525 - }, - { - "l": "99.6", - "x": 6.0123, - "y": 118.0714 - }, - { - "l": "99.6", - "x": 6.0957, - "y": 118.6714 - }, - { - "l": "99.6", - "x": 6.179, - "y": 119.2181 - }, - { - "l": "99.6", - "x": 6.2623, - "y": 119.8287 - }, - { - "l": "99.6", - "x": 6.3457, - "y": 120.4202 - }, - { - "l": "99.6", - "x": 6.429, - "y": 120.9582 - }, - { - "l": "99.6", - "x": 6.5123, - "y": 121.5589 - }, - { - "l": "99.6", - "x": 6.5957, - "y": 122.1402 - }, - { - "l": "99.6", - "x": 6.679, - "y": 122.6687 - }, - { - "l": "99.6", - "x": 6.7623, - "y": 123.258 - }, - { - "l": "99.6", - "x": 6.8457, - "y": 123.8272 - }, - { - "l": "99.6", - "x": 6.929, - "y": 124.3434 - }, - { - "l": "99.6", - "x": 7.0123, - "y": 124.9177 - }, - { - "l": "99.6", - "x": 7.0957, - "y": 125.4712 - }, - { - "l": "99.6", - "x": 7.179, - "y": 125.9724 - }, - { - "l": "99.6", - "x": 7.2623, - "y": 126.5292 - }, - { - "l": "99.6", - "x": 7.3457, - "y": 127.0657 - }, - { - "l": "99.6", - "x": 7.429, - "y": 127.5513 - }, - { - "l": "99.6", - "x": 7.5123, - "y": 128.0911 - }, - { - "l": "99.6", - "x": 7.5957, - "y": 128.6115 - }, - { - "l": "99.6", - "x": 7.679, - "y": 129.0835 - }, - { - "l": "99.6", - "x": 7.7623, - "y": 129.609 - }, - { - "l": "99.6", - "x": 7.8457, - "y": 130.1168 - }, - { - "l": "99.6", - "x": 7.929, - "y": 130.578 - }, - { - "l": "99.6", - "x": 8.0123, - "y": 131.0924 - }, - { - "l": "99.6", - "x": 8.0957, - "y": 131.5904 - }, - { - "l": "99.6", - "x": 8.179, - "y": 132.0437 - }, - { - "l": "99.6", - "x": 8.2623, - "y": 132.5502 - }, - { - "l": "99.6", - "x": 8.3457, - "y": 133.041 - }, - { - "l": "99.6", - "x": 8.429, - "y": 133.488 - }, - { - "l": "99.6", - "x": 8.5123, - "y": 133.9881 - }, - { - "l": "99.6", - "x": 8.5957, - "y": 134.4738 - }, - { - "l": "99.6", - "x": 8.679, - "y": 134.9179 - }, - { - "l": "99.6", - "x": 8.7623, - "y": 135.4167 - }, - { - "l": "99.6", - "x": 8.8457, - "y": 135.9033 - }, - { - "l": "99.6", - "x": 8.929, - "y": 136.35 - }, - { - "l": "99.6", - "x": 9.0123, - "y": 136.8536 - }, - { - "l": "99.6", - "x": 9.0957, - "y": 137.3459 - }, - { - "l": "99.6", - "x": 9.179, - "y": 137.7983 - }, - { - "l": "99.6", - "x": 9.2623, - "y": 138.3082 - }, - { - "l": "99.6", - "x": 9.3457, - "y": 138.8066 - }, - { - "l": "99.6", - "x": 9.429, - "y": 139.2641 - }, - { - "l": "99.6", - "x": 9.5123, - "y": 139.7791 - }, - { - "l": "99.6", - "x": 9.5957, - "y": 140.2817 - }, - { - "l": "99.6", - "x": 9.679, - "y": 140.7427 - }, - { - "l": "99.6", - "x": 9.7623, - "y": 141.2615 - }, - { - "l": "99.6", - "x": 9.8457, - "y": 141.7683 - }, - { - "l": "99.6", - "x": 9.929, - "y": 142.2337 - }, - { - "l": "99.6", - "x": 10.0123, - "y": 142.7589 - }, - { - "l": "99.6", - "x": 10.0957, - "y": 143.2733 - }, - { - "l": "99.6", - "x": 10.179, - "y": 143.7469 - }, - { - "l": "99.6", - "x": 10.2623, - "y": 144.2822 - }, - { - "l": "99.6", - "x": 10.3457, - "y": 144.8067 - }, - { - "l": "99.6", - "x": 10.429, - "y": 145.2898 - }, - { - "l": "99.6", - "x": 10.5123, - "y": 145.8355 - }, - { - "l": "99.6", - "x": 10.5957, - "y": 146.3699 - }, - { - "l": "99.6", - "x": 10.679, - "y": 146.8621 - }, - { - "l": "99.6", - "x": 10.7623, - "y": 147.4174 - }, - { - "l": "99.6", - "x": 10.8457, - "y": 147.9614 - }, - { - "l": "99.6", - "x": 10.929, - "y": 148.4619 - }, - { - "l": "99.6", - "x": 11.0123, - "y": 149.0266 - }, - { - "l": "99.6", - "x": 11.0957, - "y": 149.579 - }, - { - "l": "99.6", - "x": 11.179, - "y": 150.0872 - }, - { - "l": "99.6", - "x": 11.2623, - "y": 150.6604 - }, - { - "l": "99.6", - "x": 11.3457, - "y": 151.2212 - }, - { - "l": "99.6", - "x": 11.429, - "y": 151.7366 - }, - { - "l": "99.6", - "x": 11.5123, - "y": 152.317 - }, - { - "l": "99.6", - "x": 11.5957, - "y": 152.8835 - }, - { - "l": "99.6", - "x": 11.679, - "y": 153.4027 - }, - { - "l": "99.6", - "x": 11.7623, - "y": 153.9857 - }, - { - "l": "99.6", - "x": 11.8457, - "y": 154.5536 - }, - { - "l": "99.6", - "x": 11.929, - "y": 155.073 - }, - { - "l": "99.6", - "x": 12.0123, - "y": 155.6556 - }, - { - "l": "99.6", - "x": 12.0957, - "y": 156.2215 - }, - { - "l": "99.6", - "x": 12.179, - "y": 156.7376 - }, - { - "l": "99.6", - "x": 12.2623, - "y": 157.3144 - }, - { - "l": "99.6", - "x": 12.3457, - "y": 157.8724 - }, - { - "l": "99.6", - "x": 12.429, - "y": 158.3793 - }, - { - "l": "99.6", - "x": 12.5123, - "y": 158.9434 - }, - { - "l": "99.6", - "x": 12.5957, - "y": 159.4868 - }, - { - "l": "99.6", - "x": 12.679, - "y": 159.9778 - }, - { - "l": "99.6", - "x": 12.7623, - "y": 160.5212 - }, - { - "l": "99.6", - "x": 12.8457, - "y": 161.0427 - }, - { - "l": "99.6", - "x": 12.929, - "y": 161.5109 - }, - { - "l": "99.6", - "x": 13.0123, - "y": 162.0272 - }, - { - "l": "99.6", - "x": 13.0957, - "y": 162.52 - }, - { - "l": "99.6", - "x": 13.179, - "y": 162.9617 - }, - { - "l": "99.6", - "x": 13.2623, - "y": 163.4476 - }, - { - "l": "99.6", - "x": 13.3457, - "y": 163.9107 - }, - { - "l": "99.6", - "x": 13.429, - "y": 164.3245 - }, - { - "l": "99.6", - "x": 13.5123, - "y": 164.7792 - }, - { - "l": "99.6", - "x": 13.5957, - "y": 165.2114 - }, - { - "l": "99.6", - "x": 13.679, - "y": 165.5959 - }, - { - "l": "99.6", - "x": 13.7623, - "y": 166.0167 - }, - { - "l": "99.6", - "x": 13.8457, - "y": 166.4138 - }, - { - "l": "99.6", - "x": 13.929, - "y": 166.7675 - }, - { - "l": "99.6", - "x": 14.0123, - "y": 167.1518 - }, - { - "l": "99.6", - "x": 14.0957, - "y": 167.5137 - }, - { - "l": "99.6", - "x": 14.179, - "y": 167.8337 - }, - { - "l": "99.6", - "x": 14.2623, - "y": 168.1813 - }, - { - "l": "99.6", - "x": 14.3457, - "y": 168.508 - }, - { - "l": "99.6", - "x": 14.429, - "y": 168.7965 - }, - { - "l": "99.6", - "x": 14.5123, - "y": 169.1096 - }, - { - "l": "99.6", - "x": 14.5957, - "y": 169.4038 - }, - { - "l": "99.6", - "x": 14.679, - "y": 169.6631 - }, - { - "l": "99.6", - "x": 14.7623, - "y": 169.9441 - }, - { - "l": "99.6", - "x": 14.8457, - "y": 170.208 - }, - { - "l": "99.6", - "x": 14.929, - "y": 170.44 - }, - { - "l": "99.6", - "x": 15.0123, - "y": 170.691 - }, - { - "l": "99.6", - "x": 15.0957, - "y": 170.9288 - }, - { - "l": "99.6", - "x": 15.179, - "y": 171.1374 - }, - { - "l": "99.6", - "x": 15.2623, - "y": 171.3634 - }, - { - "l": "99.6", - "x": 15.3457, - "y": 171.5758 - }, - { - "l": "99.6", - "x": 15.429, - "y": 171.7641 - }, - { - "l": "99.6", - "x": 15.5123, - "y": 171.9679 - }, - { - "l": "99.6", - "x": 15.5957, - "y": 172.1603 - }, - { - "l": "99.6", - "x": 15.679, - "y": 172.3301 - }, - { - "l": "99.6", - "x": 15.7623, - "y": 172.514 - }, - { - "l": "99.6", - "x": 15.8457, - "y": 172.6887 - }, - { - "l": "99.6", - "x": 15.929, - "y": 172.8422 - }, - { - "l": "99.6", - "x": 16.0123, - "y": 173.0088 - }, - { - "l": "99.6", - "x": 16.0957, - "y": 173.1655 - }, - { - "l": "99.6", - "x": 16.179, - "y": 173.3042 - }, - { - "l": "99.6", - "x": 16.2623, - "y": 173.4554 - }, - { - "l": "99.6", - "x": 16.3457, - "y": 173.5979 - }, - { - "l": "99.6", - "x": 16.429, - "y": 173.7247 - }, - { - "l": "99.6", - "x": 16.5123, - "y": 173.8623 - }, - { - "l": "99.6", - "x": 16.5957, - "y": 173.9925 - }, - { - "l": "99.6", - "x": 16.679, - "y": 174.1082 - }, - { - "l": "99.6", - "x": 16.7623, - "y": 174.2344 - }, - { - "l": "99.6", - "x": 16.8457, - "y": 174.3539 - }, - { - "l": "99.6", - "x": 16.929, - "y": 174.46 - }, - { - "l": "99.6", - "x": 17.0123, - "y": 174.5759 - }, - { - "l": "99.6", - "x": 17.0957, - "y": 174.6849 - }, - { - "l": "99.6", - "x": 17.179, - "y": 174.7825 - }, - { - "l": "99.6", - "x": 17.2623, - "y": 174.8899 - }, - { - "l": "99.6", - "x": 17.3457, - "y": 174.9903 - }, - { - "l": "99.6", - "x": 17.429, - "y": 175.081 - }, - { - "l": "99.6", - "x": 17.5123, - "y": 175.1798 - }, - { - "l": "99.6", - "x": 17.5957, - "y": 175.2729 - }, - { - "l": "99.6", - "x": 17.679, - "y": 175.3553 - }, - { - "l": "99.6", - "x": 17.7623, - "y": 175.4472 - }, - { - "l": "99.6", - "x": 17.8457, - "y": 175.5332 - }, - { - "l": "99.6", - "x": 17.929, - "y": 175.6095 - }, - { - "l": "99.6", - "x": 18.0123, - "y": 175.6927 - }, - { - "l": "99.6", - "x": 18.0957, - "y": 175.7713 - }, - { - "l": "99.6", - "x": 18.179, - "y": 175.8408 - }, - { - "l": "99.6", - "x": 18.2623, - "y": 175.9175 - }, - { - "l": "99.6", - "x": 18.3457, - "y": 175.9881 - }, - { - "l": "99.6", - "x": 18.429, - "y": 176.051 - }, - { - "l": "99.6", - "x": 18.5123, - "y": 176.1217 - }, - { - "l": "99.6", - "x": 18.5957, - "y": 176.1898 - }, - { - "l": "99.6", - "x": 18.679, - "y": 176.248 - }, - { - "l": "99.6", - "x": 18.7623, - "y": 176.3119 - }, - { - "l": "99.6", - "x": 18.8457, - "y": 176.3718 - }, - { - "l": "99.6", - "x": 18.929, - "y": 176.4252 - }, - { - "l": "99.6", - "x": 19.0123, - "y": 176.481 - }, - { - "l": "99.6", - "x": 19.0957, - "y": 176.5357 - }, - { - "l": "99.6", - "x": 19.179, - "y": 176.5846 - }, - { - "l": "99.6", - "x": 19.2623, - "y": 176.6318 - }, - { - "l": "99.6", - "x": 19.3457, - "y": 176.6778 - }, - { - "l": "99.6", - "x": 19.429, - "y": 176.7198 - }, - { - "l": "99.6", - "x": 19.5123, - "y": 176.767 - }, - { - "l": "99.6", - "x": 19.5957, - "y": 176.8129 - }, - { - "l": "99.6", - "x": 19.679, - "y": 176.8532 - }, - { - "l": "99.6", - "x": 19.7623, - "y": 176.8932 - }, - { - "l": "99.6", - "x": 19.8457, - "y": 176.9314 - }, - { - "l": "99.6", - "x": 19.929, - "y": 176.9634 - } - ] - } - ], - "weight": null, - "ofc": null, - "bmi": null - }, - "female": null - } - } - ] -}; - -var trisomy21HeightFemaleCentileData = { - "centile_data": [ - { - "trisomy-21": { - "male": null, - "female": { - "height": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 0.0, - "y": 43.2313 - }, - { - "l": "0.4", - "x": 0.0192, - "y": 43.7169 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 44.2027 - }, - { - "l": "0.4", - "x": 0.0575, - "y": 44.6888 - }, - { - "l": "0.4", - "x": 0.0767, - "y": 45.175 - }, - { - "l": "0.4", - "x": 0.0958, - "y": 45.6196 - }, - { - "l": "0.4", - "x": 0.115, - "y": 46.0465 - }, - { - "l": "0.4", - "x": 0.1342, - "y": 46.4685 - }, - { - "l": "0.4", - "x": 0.1533, - "y": 46.8907 - }, - { - "l": "0.4", - "x": 0.1725, - "y": 47.3218 - }, - { - "l": "0.4", - "x": 0.1916, - "y": 47.7844 - }, - { - "l": "0.4", - "x": 0.2108, - "y": 48.2519 - }, - { - "l": "0.4", - "x": 0.23, - "y": 48.7211 - }, - { - "l": "0.4", - "x": 0.2491, - "y": 49.1889 - }, - { - "l": "0.4", - "x": 0.2683, - "y": 49.6505 - }, - { - "l": "0.4", - "x": 0.2875, - "y": 50.1047 - }, - { - "l": "0.4", - "x": 0.3066, - "y": 50.5489 - }, - { - "l": "0.4", - "x": 0.3258, - "y": 50.9803 - }, - { - "l": "0.4", - "x": 0.345, - "y": 51.3778 - }, - { - "l": "0.4", - "x": 0.3641, - "y": 51.7565 - }, - { - "l": "0.4", - "x": 0.3833, - "y": 52.126 - }, - { - "l": "0.4", - "x": 0.4025, - "y": 52.4909 - }, - { - "l": "0.4", - "x": 0.4216, - "y": 52.858 - }, - { - "l": "0.4", - "x": 0.4408, - "y": 53.2491 - }, - { - "l": "0.4", - "x": 0.46, - "y": 53.6405 - }, - { - "l": "0.4", - "x": 0.4791, - "y": 54.0295 - }, - { - "l": "0.4", - "x": 0.4983, - "y": 54.4135 - }, - { - "l": "0.4", - "x": 0.5175, - "y": 54.7876 - }, - { - "l": "0.4", - "x": 0.5366, - "y": 55.1522 - }, - { - "l": "0.4", - "x": 0.5558, - "y": 55.5057 - }, - { - "l": "0.4", - "x": 0.5749, - "y": 55.8463 - }, - { - "l": "0.4", - "x": 0.5941, - "y": 56.1591 - }, - { - "l": "0.4", - "x": 0.6133, - "y": 56.454 - }, - { - "l": "0.4", - "x": 0.6324, - "y": 56.7397 - }, - { - "l": "0.4", - "x": 0.6516, - "y": 57.0198 - }, - { - "l": "0.4", - "x": 0.6708, - "y": 57.2992 - }, - { - "l": "0.4", - "x": 0.6899, - "y": 57.597 - }, - { - "l": "0.4", - "x": 0.7091, - "y": 57.894 - }, - { - "l": "0.4", - "x": 0.7283, - "y": 58.1885 - }, - { - "l": "0.4", - "x": 0.7474, - "y": 58.4785 - }, - { - "l": "0.4", - "x": 0.7666, - "y": 58.7608 - }, - { - "l": "0.4", - "x": 0.7858, - "y": 59.0355 - }, - { - "l": "0.4", - "x": 0.8049, - "y": 59.3015 - }, - { - "l": "0.4", - "x": 0.8241, - "y": 59.5578 - }, - { - "l": "0.4", - "x": 0.8433, - "y": 59.794 - }, - { - "l": "0.4", - "x": 0.8624, - "y": 60.0162 - }, - { - "l": "0.4", - "x": 0.8816, - "y": 60.2315 - }, - { - "l": "0.4", - "x": 0.9008, - "y": 60.443 - }, - { - "l": "0.4", - "x": 0.9199, - "y": 60.6536 - }, - { - "l": "0.4", - "x": 0.9391, - "y": 60.8792 - }, - { - "l": "0.4", - "x": 0.9582, - "y": 61.105 - }, - { - "l": "0.4", - "x": 0.9774, - "y": 61.3295 - }, - { - "l": "0.4", - "x": 0.9966, - "y": 61.5516 - }, - { - "l": "0.4", - "x": 1.0157, - "y": 61.769 - }, - { - "l": "0.4", - "x": 1.0349, - "y": 61.9814 - }, - { - "l": "0.4", - "x": 1.0541, - "y": 62.1881 - }, - { - "l": "0.4", - "x": 1.0732, - "y": 62.3883 - }, - { - "l": "0.4", - "x": 1.0924, - "y": 62.574 - }, - { - "l": "0.4", - "x": 1.1116, - "y": 62.7492 - }, - { - "l": "0.4", - "x": 1.1307, - "y": 62.9199 - }, - { - "l": "0.4", - "x": 1.1499, - "y": 63.0884 - }, - { - "l": "0.4", - "x": 1.1691, - "y": 63.257 - }, - { - "l": "0.4", - "x": 1.1882, - "y": 63.4379 - }, - { - "l": "0.4", - "x": 1.2074, - "y": 63.6203 - }, - { - "l": "0.4", - "x": 1.2266, - "y": 63.8027 - }, - { - "l": "0.4", - "x": 1.2457, - "y": 63.9841 - }, - { - "l": "0.4", - "x": 1.2649, - "y": 64.1628 - }, - { - "l": "0.4", - "x": 1.2841, - "y": 64.3383 - }, - { - "l": "0.4", - "x": 1.3032, - "y": 64.5099 - }, - { - "l": "0.4", - "x": 1.3224, - "y": 64.6768 - }, - { - "l": "0.4", - "x": 1.3415, - "y": 64.8326 - }, - { - "l": "0.4", - "x": 1.3607, - "y": 64.9796 - }, - { - "l": "0.4", - "x": 1.3799, - "y": 65.1233 - }, - { - "l": "0.4", - "x": 1.399, - "y": 65.2655 - }, - { - "l": "0.4", - "x": 1.4182, - "y": 65.4083 - }, - { - "l": "0.4", - "x": 1.4374, - "y": 65.5614 - }, - { - "l": "0.4", - "x": 1.4565, - "y": 65.7166 - }, - { - "l": "0.4", - "x": 1.4757, - "y": 65.8722 - }, - { - "l": "0.4", - "x": 1.4949, - "y": 66.0273 - }, - { - "l": "0.4", - "x": 1.514, - "y": 66.1803 - }, - { - "l": "0.4", - "x": 1.5332, - "y": 66.3309 - }, - { - "l": "0.4", - "x": 1.5524, - "y": 66.4785 - }, - { - "l": "0.4", - "x": 1.5715, - "y": 66.6222 - }, - { - "l": "0.4", - "x": 1.5907, - "y": 66.7571 - }, - { - "l": "0.4", - "x": 1.6099, - "y": 66.8841 - }, - { - "l": "0.4", - "x": 1.629, - "y": 67.0085 - }, - { - "l": "0.4", - "x": 1.6482, - "y": 67.132 - }, - { - "l": "0.4", - "x": 1.6674, - "y": 67.2562 - }, - { - "l": "0.4", - "x": 1.6865, - "y": 67.3893 - }, - { - "l": "0.4", - "x": 1.7057, - "y": 67.5251 - }, - { - "l": "0.4", - "x": 1.7248, - "y": 67.6617 - }, - { - "l": "0.4", - "x": 1.744, - "y": 67.7982 - }, - { - "l": "0.4", - "x": 1.7632, - "y": 67.9339 - }, - { - "l": "0.4", - "x": 1.7823, - "y": 68.0679 - }, - { - "l": "0.4", - "x": 1.8015, - "y": 68.1998 - }, - { - "l": "0.4", - "x": 1.8207, - "y": 68.3288 - }, - { - "l": "0.4", - "x": 1.8398, - "y": 68.4506 - }, - { - "l": "0.4", - "x": 1.859, - "y": 68.5654 - }, - { - "l": "0.4", - "x": 1.8782, - "y": 68.6783 - }, - { - "l": "0.4", - "x": 1.8973, - "y": 68.7907 - }, - { - "l": "0.4", - "x": 1.9165, - "y": 68.9041 - }, - { - "l": "0.4", - "x": 1.9357, - "y": 69.0256 - }, - { - "l": "0.4", - "x": 1.9548, - "y": 69.1502 - }, - { - "l": "0.4", - "x": 1.974, - "y": 69.2758 - }, - { - "l": "0.4", - "x": 1.9932, - "y": 69.4018 - }, - { - "l": "0.4", - "x": 2.0123, - "y": 69.5273 - }, - { - "l": "0.4", - "x": 2.0957, - "y": 70.0458 - }, - { - "l": "0.4", - "x": 2.179, - "y": 70.5106 - }, - { - "l": "0.4", - "x": 2.2623, - "y": 71.0233 - }, - { - "l": "0.4", - "x": 2.3457, - "y": 71.5145 - }, - { - "l": "0.4", - "x": 2.429, - "y": 71.9581 - }, - { - "l": "0.4", - "x": 2.5123, - "y": 72.4505 - }, - { - "l": "0.4", - "x": 2.5957, - "y": 72.9251 - }, - { - "l": "0.4", - "x": 2.679, - "y": 73.3551 - }, - { - "l": "0.4", - "x": 2.7623, - "y": 73.8331 - }, - { - "l": "0.4", - "x": 2.8457, - "y": 74.2937 - }, - { - "l": "0.4", - "x": 2.929, - "y": 74.7109 - }, - { - "l": "0.4", - "x": 3.0123, - "y": 75.1754 - }, - { - "l": "0.4", - "x": 3.0957, - "y": 75.6241 - }, - { - "l": "0.4", - "x": 3.179, - "y": 76.0323 - }, - { - "l": "0.4", - "x": 3.2623, - "y": 76.4889 - }, - { - "l": "0.4", - "x": 3.3457, - "y": 76.9325 - }, - { - "l": "0.4", - "x": 3.429, - "y": 77.3381 - }, - { - "l": "0.4", - "x": 3.5123, - "y": 77.7933 - }, - { - "l": "0.4", - "x": 3.5957, - "y": 78.2368 - }, - { - "l": "0.4", - "x": 3.679, - "y": 78.6432 - }, - { - "l": "0.4", - "x": 3.7623, - "y": 79.1 - }, - { - "l": "0.4", - "x": 3.8457, - "y": 79.5452 - }, - { - "l": "0.4", - "x": 3.929, - "y": 79.953 - }, - { - "l": "0.4", - "x": 4.0123, - "y": 80.4108 - }, - { - "l": "0.4", - "x": 4.0957, - "y": 80.8565 - }, - { - "l": "0.4", - "x": 4.179, - "y": 81.2645 - }, - { - "l": "0.4", - "x": 4.2623, - "y": 81.7226 - }, - { - "l": "0.4", - "x": 4.3457, - "y": 82.1691 - }, - { - "l": "0.4", - "x": 4.429, - "y": 82.5783 - }, - { - "l": "0.4", - "x": 4.5123, - "y": 83.0383 - }, - { - "l": "0.4", - "x": 4.5957, - "y": 83.4866 - }, - { - "l": "0.4", - "x": 4.679, - "y": 83.8971 - }, - { - "l": "0.4", - "x": 4.7623, - "y": 84.3577 - }, - { - "l": "0.4", - "x": 4.8457, - "y": 84.8057 - }, - { - "l": "0.4", - "x": 4.929, - "y": 85.2149 - }, - { - "l": "0.4", - "x": 5.0123, - "y": 85.673 - }, - { - "l": "0.4", - "x": 5.0957, - "y": 86.1175 - }, - { - "l": "0.4", - "x": 5.179, - "y": 86.5229 - }, - { - "l": "0.4", - "x": 5.2623, - "y": 86.9768 - }, - { - "l": "0.4", - "x": 5.3457, - "y": 87.4175 - }, - { - "l": "0.4", - "x": 5.429, - "y": 87.8196 - }, - { - "l": "0.4", - "x": 5.5123, - "y": 88.2698 - }, - { - "l": "0.4", - "x": 5.5957, - "y": 88.7065 - }, - { - "l": "0.4", - "x": 5.679, - "y": 89.1047 - }, - { - "l": "0.4", - "x": 5.7623, - "y": 89.5502 - }, - { - "l": "0.4", - "x": 5.8457, - "y": 89.9821 - }, - { - "l": "0.4", - "x": 5.929, - "y": 90.3756 - }, - { - "l": "0.4", - "x": 6.0123, - "y": 90.8156 - }, - { - "l": "0.4", - "x": 6.0957, - "y": 91.2425 - }, - { - "l": "0.4", - "x": 6.179, - "y": 91.6319 - }, - { - "l": "0.4", - "x": 6.2623, - "y": 92.0678 - }, - { - "l": "0.4", - "x": 6.3457, - "y": 92.491 - }, - { - "l": "0.4", - "x": 6.429, - "y": 92.8775 - }, - { - "l": "0.4", - "x": 6.5123, - "y": 93.3106 - }, - { - "l": "0.4", - "x": 6.5957, - "y": 93.7316 - }, - { - "l": "0.4", - "x": 6.679, - "y": 94.1165 - }, - { - "l": "0.4", - "x": 6.7623, - "y": 94.5484 - }, - { - "l": "0.4", - "x": 6.8457, - "y": 94.9689 - }, - { - "l": "0.4", - "x": 6.929, - "y": 95.3535 - }, - { - "l": "0.4", - "x": 7.0123, - "y": 95.7852 - }, - { - "l": "0.4", - "x": 7.0957, - "y": 96.2054 - }, - { - "l": "0.4", - "x": 7.179, - "y": 96.5896 - }, - { - "l": "0.4", - "x": 7.2623, - "y": 97.0207 - }, - { - "l": "0.4", - "x": 7.3457, - "y": 97.4398 - }, - { - "l": "0.4", - "x": 7.429, - "y": 97.8227 - }, - { - "l": "0.4", - "x": 7.5123, - "y": 98.2515 - }, - { - "l": "0.4", - "x": 7.5957, - "y": 98.6676 - }, - { - "l": "0.4", - "x": 7.679, - "y": 99.0473 - }, - { - "l": "0.4", - "x": 7.7623, - "y": 99.4724 - }, - { - "l": "0.4", - "x": 7.8457, - "y": 99.8854 - }, - { - "l": "0.4", - "x": 7.929, - "y": 100.2628 - }, - { - "l": "0.4", - "x": 8.0123, - "y": 100.6864 - }, - { - "l": "0.4", - "x": 8.0957, - "y": 101.099 - }, - { - "l": "0.4", - "x": 8.179, - "y": 101.4769 - }, - { - "l": "0.4", - "x": 8.2623, - "y": 101.9016 - }, - { - "l": "0.4", - "x": 8.3457, - "y": 102.3158 - }, - { - "l": "0.4", - "x": 8.429, - "y": 102.6953 - }, - { - "l": "0.4", - "x": 8.5123, - "y": 103.1217 - }, - { - "l": "0.4", - "x": 8.5957, - "y": 103.5371 - }, - { - "l": "0.4", - "x": 8.679, - "y": 103.9173 - }, - { - "l": "0.4", - "x": 8.7623, - "y": 104.3441 - }, - { - "l": "0.4", - "x": 8.8457, - "y": 104.7598 - }, - { - "l": "0.4", - "x": 8.929, - "y": 105.1401 - }, - { - "l": "0.4", - "x": 9.0123, - "y": 105.5669 - }, - { - "l": "0.4", - "x": 9.0957, - "y": 105.9826 - }, - { - "l": "0.4", - "x": 9.179, - "y": 106.3631 - }, - { - "l": "0.4", - "x": 9.2623, - "y": 106.7904 - }, - { - "l": "0.4", - "x": 9.3457, - "y": 107.2065 - }, - { - "l": "0.4", - "x": 9.429, - "y": 107.5874 - }, - { - "l": "0.4", - "x": 9.5123, - "y": 108.0152 - }, - { - "l": "0.4", - "x": 9.5957, - "y": 108.4319 - }, - { - "l": "0.4", - "x": 9.679, - "y": 108.8136 - }, - { - "l": "0.4", - "x": 9.7623, - "y": 109.2426 - }, - { - "l": "0.4", - "x": 9.8457, - "y": 109.6609 - }, - { - "l": "0.4", - "x": 9.929, - "y": 110.0444 - }, - { - "l": "0.4", - "x": 10.0123, - "y": 110.4755 - }, - { - "l": "0.4", - "x": 10.0957, - "y": 110.8957 - }, - { - "l": "0.4", - "x": 10.179, - "y": 111.2805 - }, - { - "l": "0.4", - "x": 10.2623, - "y": 111.7127 - }, - { - "l": "0.4", - "x": 10.3457, - "y": 112.1335 - }, - { - "l": "0.4", - "x": 10.429, - "y": 112.5184 - }, - { - "l": "0.4", - "x": 10.5123, - "y": 112.9502 - }, - { - "l": "0.4", - "x": 10.5957, - "y": 113.37 - }, - { - "l": "0.4", - "x": 10.679, - "y": 113.7532 - }, - { - "l": "0.4", - "x": 10.7623, - "y": 114.182 - }, - { - "l": "0.4", - "x": 10.8457, - "y": 114.5978 - }, - { - "l": "0.4", - "x": 10.929, - "y": 114.9762 - }, - { - "l": "0.4", - "x": 11.0123, - "y": 115.3986 - }, - { - "l": "0.4", - "x": 11.0957, - "y": 115.8067 - }, - { - "l": "0.4", - "x": 11.179, - "y": 116.1767 - }, - { - "l": "0.4", - "x": 11.2623, - "y": 116.5874 - }, - { - "l": "0.4", - "x": 11.3457, - "y": 116.9829 - }, - { - "l": "0.4", - "x": 11.429, - "y": 117.3393 - }, - { - "l": "0.4", - "x": 11.5123, - "y": 117.7332 - }, - { - "l": "0.4", - "x": 11.5957, - "y": 118.1101 - }, - { - "l": "0.4", - "x": 11.679, - "y": 118.4486 - }, - { - "l": "0.4", - "x": 11.7623, - "y": 118.8213 - }, - { - "l": "0.4", - "x": 11.8457, - "y": 119.1768 - }, - { - "l": "0.4", - "x": 11.929, - "y": 119.495 - }, - { - "l": "0.4", - "x": 12.0123, - "y": 119.8445 - }, - { - "l": "0.4", - "x": 12.0957, - "y": 120.1768 - }, - { - "l": "0.4", - "x": 12.179, - "y": 120.4732 - }, - { - "l": "0.4", - "x": 12.2623, - "y": 120.7988 - }, - { - "l": "0.4", - "x": 12.3457, - "y": 121.1075 - }, - { - "l": "0.4", - "x": 12.429, - "y": 121.3827 - }, - { - "l": "0.4", - "x": 12.5123, - "y": 121.6839 - }, - { - "l": "0.4", - "x": 12.5957, - "y": 121.9692 - }, - { - "l": "0.4", - "x": 12.679, - "y": 122.2243 - }, - { - "l": "0.4", - "x": 12.7623, - "y": 122.503 - }, - { - "l": "0.4", - "x": 12.8457, - "y": 122.7667 - }, - { - "l": "0.4", - "x": 12.929, - "y": 123.0027 - }, - { - "l": "0.4", - "x": 13.0123, - "y": 123.2604 - }, - { - "l": "0.4", - "x": 13.0957, - "y": 123.5043 - }, - { - "l": "0.4", - "x": 13.179, - "y": 123.7216 - }, - { - "l": "0.4", - "x": 13.2623, - "y": 123.9592 - }, - { - "l": "0.4", - "x": 13.3457, - "y": 124.1838 - }, - { - "l": "0.4", - "x": 13.429, - "y": 124.383 - }, - { - "l": "0.4", - "x": 13.5123, - "y": 124.6005 - }, - { - "l": "0.4", - "x": 13.5957, - "y": 124.806 - }, - { - "l": "0.4", - "x": 13.679, - "y": 124.9877 - }, - { - "l": "0.4", - "x": 13.7623, - "y": 125.1856 - }, - { - "l": "0.4", - "x": 13.8457, - "y": 125.373 - }, - { - "l": "0.4", - "x": 13.929, - "y": 125.5384 - }, - { - "l": "0.4", - "x": 14.0123, - "y": 125.7181 - }, - { - "l": "0.4", - "x": 14.0957, - "y": 125.8873 - }, - { - "l": "0.4", - "x": 14.179, - "y": 126.0367 - }, - { - "l": "0.4", - "x": 14.2623, - "y": 126.1986 - }, - { - "l": "0.4", - "x": 14.3457, - "y": 126.3507 - }, - { - "l": "0.4", - "x": 14.429, - "y": 126.4847 - }, - { - "l": "0.4", - "x": 14.5123, - "y": 126.6298 - }, - { - "l": "0.4", - "x": 14.5957, - "y": 126.7654 - }, - { - "l": "0.4", - "x": 14.679, - "y": 126.8859 - }, - { - "l": "0.4", - "x": 14.7623, - "y": 127.0154 - }, - { - "l": "0.4", - "x": 14.8457, - "y": 127.1365 - }, - { - "l": "0.4", - "x": 14.929, - "y": 127.243 - }, - { - "l": "0.4", - "x": 15.0123, - "y": 127.3569 - }, - { - "l": "0.4", - "x": 15.0957, - "y": 127.4649 - }, - { - "l": "0.4", - "x": 15.179, - "y": 127.5587 - }, - { - "l": "0.4", - "x": 15.2623, - "y": 127.6598 - }, - { - "l": "0.4", - "x": 15.3457, - "y": 127.7538 - }, - { - "l": "0.4", - "x": 15.429, - "y": 127.8347 - }, - { - "l": "0.4", - "x": 15.5123, - "y": 127.9227 - }, - { - "l": "0.4", - "x": 15.5957, - "y": 128.0071 - }, - { - "l": "0.4", - "x": 15.679, - "y": 128.0792 - }, - { - "l": "0.4", - "x": 15.7623, - "y": 128.1569 - }, - { - "l": "0.4", - "x": 15.8457, - "y": 128.2293 - }, - { - "l": "0.4", - "x": 15.929, - "y": 128.2931 - }, - { - "l": "0.4", - "x": 16.0123, - "y": 128.362 - }, - { - "l": "0.4", - "x": 16.0957, - "y": 128.4262 - }, - { - "l": "0.4", - "x": 16.179, - "y": 128.4827 - }, - { - "l": "0.4", - "x": 16.2623, - "y": 128.5437 - }, - { - "l": "0.4", - "x": 16.3457, - "y": 128.6012 - }, - { - "l": "0.4", - "x": 16.429, - "y": 128.6514 - }, - { - "l": "0.4", - "x": 16.5123, - "y": 128.7051 - }, - { - "l": "0.4", - "x": 16.5957, - "y": 128.7566 - }, - { - "l": "0.4", - "x": 16.679, - "y": 128.8018 - }, - { - "l": "0.4", - "x": 16.7623, - "y": 128.8506 - }, - { - "l": "0.4", - "x": 16.8457, - "y": 128.8966 - }, - { - "l": "0.4", - "x": 16.929, - "y": 128.9375 - }, - { - "l": "0.4", - "x": 17.0123, - "y": 128.9824 - }, - { - "l": "0.4", - "x": 17.0957, - "y": 129.0253 - }, - { - "l": "0.4", - "x": 17.179, - "y": 129.0639 - }, - { - "l": "0.4", - "x": 17.2623, - "y": 129.1067 - }, - { - "l": "0.4", - "x": 17.3457, - "y": 129.1478 - }, - { - "l": "0.4", - "x": 17.429, - "y": 129.1853 - }, - { - "l": "0.4", - "x": 17.5123, - "y": 129.2269 - }, - { - "l": "0.4", - "x": 17.5957, - "y": 129.2674 - }, - { - "l": "0.4", - "x": 17.679, - "y": 129.3043 - }, - { - "l": "0.4", - "x": 17.7623, - "y": 129.3457 - }, - { - "l": "0.4", - "x": 17.8457, - "y": 129.3861 - }, - { - "l": "0.4", - "x": 17.929, - "y": 129.423 - }, - { - "l": "0.4", - "x": 18.0123, - "y": 129.4648 - }, - { - "l": "0.4", - "x": 18.0957, - "y": 129.5057 - }, - { - "l": "0.4", - "x": 18.179, - "y": 129.5432 - }, - { - "l": "0.4", - "x": 18.2623, - "y": 129.5854 - }, - { - "l": "0.4", - "x": 18.3457, - "y": 129.627 - }, - { - "l": "0.4", - "x": 18.429, - "y": 129.6654 - }, - { - "l": "0.4", - "x": 18.5123, - "y": 129.7086 - }, - { - "l": "0.4", - "x": 18.5957, - "y": 129.7511 - }, - { - "l": "0.4", - "x": 18.679, - "y": 129.7903 - }, - { - "l": "0.4", - "x": 18.7623, - "y": 129.8343 - }, - { - "l": "0.4", - "x": 18.8457, - "y": 129.8773 - }, - { - "l": "0.4", - "x": 18.929, - "y": 129.9166 - }, - { - "l": "0.4", - "x": 19.0123, - "y": 129.9608 - }, - { - "l": "0.4", - "x": 19.0957, - "y": 130.0041 - }, - { - "l": "0.4", - "x": 19.179, - "y": 130.0434 - }, - { - "l": "0.4", - "x": 19.2623, - "y": 130.0851 - }, - { - "l": "0.4", - "x": 19.3457, - "y": 130.1258 - }, - { - "l": "0.4", - "x": 19.429, - "y": 130.163 - }, - { - "l": "0.4", - "x": 19.5123, - "y": 130.2047 - }, - { - "l": "0.4", - "x": 19.5957, - "y": 130.2455 - }, - { - "l": "0.4", - "x": 19.679, - "y": 130.2827 - }, - { - "l": "0.4", - "x": 19.7623, - "y": 130.3244 - }, - { - "l": "0.4", - "x": 19.8457, - "y": 130.3651 - }, - { - "l": "0.4", - "x": 19.929, - "y": 130.4024 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 0.0, - "y": 44.7866 - }, - { - "l": "2.0", - "x": 0.0192, - "y": 45.287 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 45.7876 - }, - { - "l": "2.0", - "x": 0.0575, - "y": 46.2883 - }, - { - "l": "2.0", - "x": 0.0767, - "y": 46.7892 - }, - { - "l": "2.0", - "x": 0.0958, - "y": 47.2471 - }, - { - "l": "2.0", - "x": 0.115, - "y": 47.6868 - }, - { - "l": "2.0", - "x": 0.1342, - "y": 48.1213 - }, - { - "l": "2.0", - "x": 0.1533, - "y": 48.556 - }, - { - "l": "2.0", - "x": 0.1725, - "y": 48.9999 - }, - { - "l": "2.0", - "x": 0.1916, - "y": 49.4761 - }, - { - "l": "2.0", - "x": 0.2108, - "y": 49.9574 - }, - { - "l": "2.0", - "x": 0.23, - "y": 50.4403 - }, - { - "l": "2.0", - "x": 0.2491, - "y": 50.9216 - }, - { - "l": "2.0", - "x": 0.2683, - "y": 51.3967 - }, - { - "l": "2.0", - "x": 0.2875, - "y": 51.864 - }, - { - "l": "2.0", - "x": 0.3066, - "y": 52.3209 - }, - { - "l": "2.0", - "x": 0.3258, - "y": 52.7647 - }, - { - "l": "2.0", - "x": 0.345, - "y": 53.1735 - }, - { - "l": "2.0", - "x": 0.3641, - "y": 53.5629 - }, - { - "l": "2.0", - "x": 0.3833, - "y": 53.9429 - }, - { - "l": "2.0", - "x": 0.4025, - "y": 54.3182 - }, - { - "l": "2.0", - "x": 0.4216, - "y": 54.6956 - }, - { - "l": "2.0", - "x": 0.4408, - "y": 55.0976 - }, - { - "l": "2.0", - "x": 0.46, - "y": 55.4999 - }, - { - "l": "2.0", - "x": 0.4791, - "y": 55.8998 - }, - { - "l": "2.0", - "x": 0.4983, - "y": 56.2944 - }, - { - "l": "2.0", - "x": 0.5175, - "y": 56.6789 - }, - { - "l": "2.0", - "x": 0.5366, - "y": 57.0535 - }, - { - "l": "2.0", - "x": 0.5558, - "y": 57.4167 - }, - { - "l": "2.0", - "x": 0.5749, - "y": 57.7667 - }, - { - "l": "2.0", - "x": 0.5941, - "y": 58.088 - }, - { - "l": "2.0", - "x": 0.6133, - "y": 58.391 - }, - { - "l": "2.0", - "x": 0.6324, - "y": 58.6844 - }, - { - "l": "2.0", - "x": 0.6516, - "y": 58.9722 - }, - { - "l": "2.0", - "x": 0.6708, - "y": 59.2591 - }, - { - "l": "2.0", - "x": 0.6899, - "y": 59.5649 - }, - { - "l": "2.0", - "x": 0.7091, - "y": 59.8699 - }, - { - "l": "2.0", - "x": 0.7283, - "y": 60.1723 - }, - { - "l": "2.0", - "x": 0.7474, - "y": 60.4702 - }, - { - "l": "2.0", - "x": 0.7666, - "y": 60.7601 - }, - { - "l": "2.0", - "x": 0.7858, - "y": 61.0421 - }, - { - "l": "2.0", - "x": 0.8049, - "y": 61.3153 - }, - { - "l": "2.0", - "x": 0.8241, - "y": 61.5785 - }, - { - "l": "2.0", - "x": 0.8433, - "y": 61.8211 - }, - { - "l": "2.0", - "x": 0.8624, - "y": 62.0492 - }, - { - "l": "2.0", - "x": 0.8816, - "y": 62.2703 - }, - { - "l": "2.0", - "x": 0.9008, - "y": 62.4875 - }, - { - "l": "2.0", - "x": 0.9199, - "y": 62.7037 - }, - { - "l": "2.0", - "x": 0.9391, - "y": 62.9355 - }, - { - "l": "2.0", - "x": 0.9582, - "y": 63.1673 - }, - { - "l": "2.0", - "x": 0.9774, - "y": 63.398 - }, - { - "l": "2.0", - "x": 0.9966, - "y": 63.6261 - }, - { - "l": "2.0", - "x": 1.0157, - "y": 63.8494 - }, - { - "l": "2.0", - "x": 1.0349, - "y": 64.0677 - }, - { - "l": "2.0", - "x": 1.0541, - "y": 64.2801 - }, - { - "l": "2.0", - "x": 1.0732, - "y": 64.4857 - }, - { - "l": "2.0", - "x": 1.0924, - "y": 64.6766 - }, - { - "l": "2.0", - "x": 1.1116, - "y": 64.8566 - }, - { - "l": "2.0", - "x": 1.1307, - "y": 65.032 - }, - { - "l": "2.0", - "x": 1.1499, - "y": 65.2052 - }, - { - "l": "2.0", - "x": 1.1691, - "y": 65.3785 - }, - { - "l": "2.0", - "x": 1.1882, - "y": 65.5645 - }, - { - "l": "2.0", - "x": 1.2074, - "y": 65.7522 - }, - { - "l": "2.0", - "x": 1.2266, - "y": 65.9398 - }, - { - "l": "2.0", - "x": 1.2457, - "y": 66.1263 - }, - { - "l": "2.0", - "x": 1.2649, - "y": 66.3101 - }, - { - "l": "2.0", - "x": 1.2841, - "y": 66.4907 - }, - { - "l": "2.0", - "x": 1.3032, - "y": 66.6673 - }, - { - "l": "2.0", - "x": 1.3224, - "y": 66.839 - }, - { - "l": "2.0", - "x": 1.3415, - "y": 66.9994 - }, - { - "l": "2.0", - "x": 1.3607, - "y": 67.1507 - }, - { - "l": "2.0", - "x": 1.3799, - "y": 67.2986 - }, - { - "l": "2.0", - "x": 1.399, - "y": 67.4451 - }, - { - "l": "2.0", - "x": 1.4182, - "y": 67.5921 - }, - { - "l": "2.0", - "x": 1.4374, - "y": 67.7498 - }, - { - "l": "2.0", - "x": 1.4565, - "y": 67.9098 - }, - { - "l": "2.0", - "x": 1.4757, - "y": 68.0701 - }, - { - "l": "2.0", - "x": 1.4949, - "y": 68.2299 - }, - { - "l": "2.0", - "x": 1.514, - "y": 68.3876 - }, - { - "l": "2.0", - "x": 1.5332, - "y": 68.5429 - }, - { - "l": "2.0", - "x": 1.5524, - "y": 68.6951 - }, - { - "l": "2.0", - "x": 1.5715, - "y": 68.8433 - }, - { - "l": "2.0", - "x": 1.5907, - "y": 68.9824 - }, - { - "l": "2.0", - "x": 1.6099, - "y": 69.1135 - }, - { - "l": "2.0", - "x": 1.629, - "y": 69.2418 - }, - { - "l": "2.0", - "x": 1.6482, - "y": 69.3693 - }, - { - "l": "2.0", - "x": 1.6674, - "y": 69.4975 - }, - { - "l": "2.0", - "x": 1.6865, - "y": 69.6349 - }, - { - "l": "2.0", - "x": 1.7057, - "y": 69.7751 - }, - { - "l": "2.0", - "x": 1.7248, - "y": 69.9162 - }, - { - "l": "2.0", - "x": 1.744, - "y": 70.0573 - }, - { - "l": "2.0", - "x": 1.7632, - "y": 70.1975 - }, - { - "l": "2.0", - "x": 1.7823, - "y": 70.336 - }, - { - "l": "2.0", - "x": 1.8015, - "y": 70.4723 - }, - { - "l": "2.0", - "x": 1.8207, - "y": 70.6057 - }, - { - "l": "2.0", - "x": 1.8398, - "y": 70.7317 - }, - { - "l": "2.0", - "x": 1.859, - "y": 70.8505 - }, - { - "l": "2.0", - "x": 1.8782, - "y": 70.9673 - }, - { - "l": "2.0", - "x": 1.8973, - "y": 71.0836 - }, - { - "l": "2.0", - "x": 1.9165, - "y": 71.201 - }, - { - "l": "2.0", - "x": 1.9357, - "y": 71.3267 - }, - { - "l": "2.0", - "x": 1.9548, - "y": 71.4558 - }, - { - "l": "2.0", - "x": 1.974, - "y": 71.5859 - }, - { - "l": "2.0", - "x": 1.9932, - "y": 71.7164 - }, - { - "l": "2.0", - "x": 2.0123, - "y": 71.8465 - }, - { - "l": "2.0", - "x": 2.0957, - "y": 72.384 - }, - { - "l": "2.0", - "x": 2.179, - "y": 72.8663 - }, - { - "l": "2.0", - "x": 2.2623, - "y": 73.3987 - }, - { - "l": "2.0", - "x": 2.3457, - "y": 73.9092 - }, - { - "l": "2.0", - "x": 2.429, - "y": 74.3705 - }, - { - "l": "2.0", - "x": 2.5123, - "y": 74.8829 - }, - { - "l": "2.0", - "x": 2.5957, - "y": 75.3771 - }, - { - "l": "2.0", - "x": 2.679, - "y": 75.825 - }, - { - "l": "2.0", - "x": 2.7623, - "y": 76.3233 - }, - { - "l": "2.0", - "x": 2.8457, - "y": 76.8036 - }, - { - "l": "2.0", - "x": 2.929, - "y": 77.2389 - }, - { - "l": "2.0", - "x": 3.0123, - "y": 77.7236 - }, - { - "l": "2.0", - "x": 3.0957, - "y": 78.192 - }, - { - "l": "2.0", - "x": 3.179, - "y": 78.6184 - }, - { - "l": "2.0", - "x": 3.2623, - "y": 79.0954 - }, - { - "l": "2.0", - "x": 3.3457, - "y": 79.5589 - }, - { - "l": "2.0", - "x": 3.429, - "y": 79.9828 - }, - { - "l": "2.0", - "x": 3.5123, - "y": 80.4586 - }, - { - "l": "2.0", - "x": 3.5957, - "y": 80.9223 - }, - { - "l": "2.0", - "x": 3.679, - "y": 81.3472 - }, - { - "l": "2.0", - "x": 3.7623, - "y": 81.8248 - }, - { - "l": "2.0", - "x": 3.8457, - "y": 82.2905 - }, - { - "l": "2.0", - "x": 3.929, - "y": 82.717 - }, - { - "l": "2.0", - "x": 4.0123, - "y": 83.1958 - }, - { - "l": "2.0", - "x": 4.0957, - "y": 83.662 - }, - { - "l": "2.0", - "x": 4.179, - "y": 84.0888 - }, - { - "l": "2.0", - "x": 4.2623, - "y": 84.5681 - }, - { - "l": "2.0", - "x": 4.3457, - "y": 85.0352 - }, - { - "l": "2.0", - "x": 4.429, - "y": 85.4633 - }, - { - "l": "2.0", - "x": 4.5123, - "y": 85.9445 - }, - { - "l": "2.0", - "x": 4.5957, - "y": 86.4135 - }, - { - "l": "2.0", - "x": 4.679, - "y": 86.8429 - }, - { - "l": "2.0", - "x": 4.7623, - "y": 87.3248 - }, - { - "l": "2.0", - "x": 4.8457, - "y": 87.7934 - }, - { - "l": "2.0", - "x": 4.929, - "y": 88.2214 - }, - { - "l": "2.0", - "x": 5.0123, - "y": 88.7004 - }, - { - "l": "2.0", - "x": 5.0957, - "y": 89.1653 - }, - { - "l": "2.0", - "x": 5.179, - "y": 89.5893 - }, - { - "l": "2.0", - "x": 5.2623, - "y": 90.0638 - }, - { - "l": "2.0", - "x": 5.3457, - "y": 90.5245 - }, - { - "l": "2.0", - "x": 5.429, - "y": 90.9448 - }, - { - "l": "2.0", - "x": 5.5123, - "y": 91.4153 - }, - { - "l": "2.0", - "x": 5.5957, - "y": 91.8718 - }, - { - "l": "2.0", - "x": 5.679, - "y": 92.2878 - }, - { - "l": "2.0", - "x": 5.7623, - "y": 92.7532 - }, - { - "l": "2.0", - "x": 5.8457, - "y": 93.2044 - }, - { - "l": "2.0", - "x": 5.929, - "y": 93.6153 - }, - { - "l": "2.0", - "x": 6.0123, - "y": 94.0749 - }, - { - "l": "2.0", - "x": 6.0957, - "y": 94.5207 - }, - { - "l": "2.0", - "x": 6.179, - "y": 94.9272 - }, - { - "l": "2.0", - "x": 6.2623, - "y": 95.3823 - }, - { - "l": "2.0", - "x": 6.3457, - "y": 95.8242 - }, - { - "l": "2.0", - "x": 6.429, - "y": 96.2276 - }, - { - "l": "2.0", - "x": 6.5123, - "y": 96.6796 - }, - { - "l": "2.0", - "x": 6.5957, - "y": 97.1189 - }, - { - "l": "2.0", - "x": 6.679, - "y": 97.5206 - }, - { - "l": "2.0", - "x": 6.7623, - "y": 97.9712 - }, - { - "l": "2.0", - "x": 6.8457, - "y": 98.4099 - }, - { - "l": "2.0", - "x": 6.929, - "y": 98.8112 - }, - { - "l": "2.0", - "x": 7.0123, - "y": 99.2615 - }, - { - "l": "2.0", - "x": 7.0957, - "y": 99.6996 - }, - { - "l": "2.0", - "x": 7.179, - "y": 100.1003 - }, - { - "l": "2.0", - "x": 7.2623, - "y": 100.5498 - }, - { - "l": "2.0", - "x": 7.3457, - "y": 100.9867 - }, - { - "l": "2.0", - "x": 7.429, - "y": 101.3858 - }, - { - "l": "2.0", - "x": 7.5123, - "y": 101.8326 - }, - { - "l": "2.0", - "x": 7.5957, - "y": 102.2662 - }, - { - "l": "2.0", - "x": 7.679, - "y": 102.6617 - }, - { - "l": "2.0", - "x": 7.7623, - "y": 103.1045 - }, - { - "l": "2.0", - "x": 7.8457, - "y": 103.5345 - }, - { - "l": "2.0", - "x": 7.929, - "y": 103.9274 - }, - { - "l": "2.0", - "x": 8.0123, - "y": 104.3682 - }, - { - "l": "2.0", - "x": 8.0957, - "y": 104.7974 - }, - { - "l": "2.0", - "x": 8.179, - "y": 105.1904 - }, - { - "l": "2.0", - "x": 8.2623, - "y": 105.6319 - }, - { - "l": "2.0", - "x": 8.3457, - "y": 106.0622 - }, - { - "l": "2.0", - "x": 8.429, - "y": 106.4564 - }, - { - "l": "2.0", - "x": 8.5123, - "y": 106.899 - }, - { - "l": "2.0", - "x": 8.5957, - "y": 107.3301 - }, - { - "l": "2.0", - "x": 8.679, - "y": 107.7244 - }, - { - "l": "2.0", - "x": 8.7623, - "y": 108.1669 - }, - { - "l": "2.0", - "x": 8.8457, - "y": 108.5976 - }, - { - "l": "2.0", - "x": 8.929, - "y": 108.9915 - }, - { - "l": "2.0", - "x": 9.0123, - "y": 109.4333 - }, - { - "l": "2.0", - "x": 9.0957, - "y": 109.8633 - }, - { - "l": "2.0", - "x": 9.179, - "y": 110.2567 - }, - { - "l": "2.0", - "x": 9.2623, - "y": 110.6982 - }, - { - "l": "2.0", - "x": 9.3457, - "y": 111.1278 - }, - { - "l": "2.0", - "x": 9.429, - "y": 111.5208 - }, - { - "l": "2.0", - "x": 9.5123, - "y": 111.9619 - }, - { - "l": "2.0", - "x": 9.5957, - "y": 112.3913 - }, - { - "l": "2.0", - "x": 9.679, - "y": 112.7843 - }, - { - "l": "2.0", - "x": 9.7623, - "y": 113.2256 - }, - { - "l": "2.0", - "x": 9.8457, - "y": 113.6557 - }, - { - "l": "2.0", - "x": 9.929, - "y": 114.0496 - }, - { - "l": "2.0", - "x": 10.0123, - "y": 114.4922 - }, - { - "l": "2.0", - "x": 10.0957, - "y": 114.9231 - }, - { - "l": "2.0", - "x": 10.179, - "y": 115.3174 - }, - { - "l": "2.0", - "x": 10.2623, - "y": 115.7599 - }, - { - "l": "2.0", - "x": 10.3457, - "y": 116.1903 - }, - { - "l": "2.0", - "x": 10.429, - "y": 116.5838 - }, - { - "l": "2.0", - "x": 10.5123, - "y": 117.0247 - }, - { - "l": "2.0", - "x": 10.5957, - "y": 117.453 - }, - { - "l": "2.0", - "x": 10.679, - "y": 117.8436 - }, - { - "l": "2.0", - "x": 10.7623, - "y": 118.2803 - }, - { - "l": "2.0", - "x": 10.8457, - "y": 118.7033 - }, - { - "l": "2.0", - "x": 10.929, - "y": 119.088 - }, - { - "l": "2.0", - "x": 11.0123, - "y": 119.517 - }, - { - "l": "2.0", - "x": 11.0957, - "y": 119.9311 - }, - { - "l": "2.0", - "x": 11.179, - "y": 120.3063 - }, - { - "l": "2.0", - "x": 11.2623, - "y": 120.7224 - }, - { - "l": "2.0", - "x": 11.3457, - "y": 121.1227 - }, - { - "l": "2.0", - "x": 11.429, - "y": 121.4832 - }, - { - "l": "2.0", - "x": 11.5123, - "y": 121.8812 - }, - { - "l": "2.0", - "x": 11.5957, - "y": 122.2618 - }, - { - "l": "2.0", - "x": 11.679, - "y": 122.6032 - }, - { - "l": "2.0", - "x": 11.7623, - "y": 122.9791 - }, - { - "l": "2.0", - "x": 11.8457, - "y": 123.3371 - }, - { - "l": "2.0", - "x": 11.929, - "y": 123.6575 - }, - { - "l": "2.0", - "x": 12.0123, - "y": 124.0091 - }, - { - "l": "2.0", - "x": 12.0957, - "y": 124.3431 - }, - { - "l": "2.0", - "x": 12.179, - "y": 124.641 - }, - { - "l": "2.0", - "x": 12.2623, - "y": 124.968 - }, - { - "l": "2.0", - "x": 12.3457, - "y": 125.2777 - }, - { - "l": "2.0", - "x": 12.429, - "y": 125.5538 - }, - { - "l": "2.0", - "x": 12.5123, - "y": 125.8558 - }, - { - "l": "2.0", - "x": 12.5957, - "y": 126.1416 - }, - { - "l": "2.0", - "x": 12.679, - "y": 126.3972 - }, - { - "l": "2.0", - "x": 12.7623, - "y": 126.6762 - }, - { - "l": "2.0", - "x": 12.8457, - "y": 126.9401 - }, - { - "l": "2.0", - "x": 12.929, - "y": 127.1762 - }, - { - "l": "2.0", - "x": 13.0123, - "y": 127.434 - }, - { - "l": "2.0", - "x": 13.0957, - "y": 127.6777 - }, - { - "l": "2.0", - "x": 13.179, - "y": 127.895 - }, - { - "l": "2.0", - "x": 13.2623, - "y": 128.1324 - }, - { - "l": "2.0", - "x": 13.3457, - "y": 128.3567 - }, - { - "l": "2.0", - "x": 13.429, - "y": 128.5557 - }, - { - "l": "2.0", - "x": 13.5123, - "y": 128.7728 - }, - { - "l": "2.0", - "x": 13.5957, - "y": 128.978 - }, - { - "l": "2.0", - "x": 13.679, - "y": 129.1593 - }, - { - "l": "2.0", - "x": 13.7623, - "y": 129.3568 - }, - { - "l": "2.0", - "x": 13.8457, - "y": 129.5438 - }, - { - "l": "2.0", - "x": 13.929, - "y": 129.7087 - }, - { - "l": "2.0", - "x": 14.0123, - "y": 129.888 - }, - { - "l": "2.0", - "x": 14.0957, - "y": 130.0567 - }, - { - "l": "2.0", - "x": 14.179, - "y": 130.2056 - }, - { - "l": "2.0", - "x": 14.2623, - "y": 130.3671 - }, - { - "l": "2.0", - "x": 14.3457, - "y": 130.5187 - }, - { - "l": "2.0", - "x": 14.429, - "y": 130.6523 - }, - { - "l": "2.0", - "x": 14.5123, - "y": 130.7968 - }, - { - "l": "2.0", - "x": 14.5957, - "y": 130.932 - }, - { - "l": "2.0", - "x": 14.679, - "y": 131.052 - }, - { - "l": "2.0", - "x": 14.7623, - "y": 131.181 - }, - { - "l": "2.0", - "x": 14.8457, - "y": 131.3018 - }, - { - "l": "2.0", - "x": 14.929, - "y": 131.4078 - }, - { - "l": "2.0", - "x": 15.0123, - "y": 131.5213 - }, - { - "l": "2.0", - "x": 15.0957, - "y": 131.6289 - }, - { - "l": "2.0", - "x": 15.179, - "y": 131.7223 - }, - { - "l": "2.0", - "x": 15.2623, - "y": 131.823 - }, - { - "l": "2.0", - "x": 15.3457, - "y": 131.9165 - }, - { - "l": "2.0", - "x": 15.429, - "y": 131.9971 - }, - { - "l": "2.0", - "x": 15.5123, - "y": 132.0847 - }, - { - "l": "2.0", - "x": 15.5957, - "y": 132.1688 - }, - { - "l": "2.0", - "x": 15.679, - "y": 132.2405 - }, - { - "l": "2.0", - "x": 15.7623, - "y": 132.318 - }, - { - "l": "2.0", - "x": 15.8457, - "y": 132.39 - }, - { - "l": "2.0", - "x": 15.929, - "y": 132.4535 - }, - { - "l": "2.0", - "x": 16.0123, - "y": 132.5221 - }, - { - "l": "2.0", - "x": 16.0957, - "y": 132.586 - }, - { - "l": "2.0", - "x": 16.179, - "y": 132.6423 - }, - { - "l": "2.0", - "x": 16.2623, - "y": 132.703 - }, - { - "l": "2.0", - "x": 16.3457, - "y": 132.7603 - }, - { - "l": "2.0", - "x": 16.429, - "y": 132.8102 - }, - { - "l": "2.0", - "x": 16.5123, - "y": 132.8637 - }, - { - "l": "2.0", - "x": 16.5957, - "y": 132.9149 - }, - { - "l": "2.0", - "x": 16.679, - "y": 132.9599 - }, - { - "l": "2.0", - "x": 16.7623, - "y": 133.0084 - }, - { - "l": "2.0", - "x": 16.8457, - "y": 133.0542 - }, - { - "l": "2.0", - "x": 16.929, - "y": 133.0949 - }, - { - "l": "2.0", - "x": 17.0123, - "y": 133.1396 - }, - { - "l": "2.0", - "x": 17.0957, - "y": 133.1823 - }, - { - "l": "2.0", - "x": 17.179, - "y": 133.2207 - }, - { - "l": "2.0", - "x": 17.2623, - "y": 133.2633 - }, - { - "l": "2.0", - "x": 17.3457, - "y": 133.3042 - }, - { - "l": "2.0", - "x": 17.429, - "y": 133.3415 - }, - { - "l": "2.0", - "x": 17.5123, - "y": 133.3829 - }, - { - "l": "2.0", - "x": 17.5957, - "y": 133.4232 - }, - { - "l": "2.0", - "x": 17.679, - "y": 133.4599 - }, - { - "l": "2.0", - "x": 17.7623, - "y": 133.5011 - }, - { - "l": "2.0", - "x": 17.8457, - "y": 133.5413 - }, - { - "l": "2.0", - "x": 17.929, - "y": 133.578 - }, - { - "l": "2.0", - "x": 18.0123, - "y": 133.6196 - }, - { - "l": "2.0", - "x": 18.0957, - "y": 133.6603 - }, - { - "l": "2.0", - "x": 18.179, - "y": 133.6976 - }, - { - "l": "2.0", - "x": 18.2623, - "y": 133.7396 - }, - { - "l": "2.0", - "x": 18.3457, - "y": 133.781 - }, - { - "l": "2.0", - "x": 18.429, - "y": 133.8191 - }, - { - "l": "2.0", - "x": 18.5123, - "y": 133.8621 - }, - { - "l": "2.0", - "x": 18.5957, - "y": 133.9044 - }, - { - "l": "2.0", - "x": 18.679, - "y": 133.9434 - }, - { - "l": "2.0", - "x": 18.7623, - "y": 133.9872 - }, - { - "l": "2.0", - "x": 18.8457, - "y": 134.0299 - }, - { - "l": "2.0", - "x": 18.929, - "y": 134.0691 - }, - { - "l": "2.0", - "x": 19.0123, - "y": 134.113 - }, - { - "l": "2.0", - "x": 19.0957, - "y": 134.1561 - }, - { - "l": "2.0", - "x": 19.179, - "y": 134.1951 - }, - { - "l": "2.0", - "x": 19.2623, - "y": 134.2367 - }, - { - "l": "2.0", - "x": 19.3457, - "y": 134.2771 - }, - { - "l": "2.0", - "x": 19.429, - "y": 134.3141 - }, - { - "l": "2.0", - "x": 19.5123, - "y": 134.3556 - }, - { - "l": "2.0", - "x": 19.5957, - "y": 134.3962 - }, - { - "l": "2.0", - "x": 19.679, - "y": 134.4331 - }, - { - "l": "2.0", - "x": 19.7623, - "y": 134.4747 - }, - { - "l": "2.0", - "x": 19.8457, - "y": 134.5151 - }, - { - "l": "2.0", - "x": 19.929, - "y": 134.5522 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 0.0, - "y": 46.3419 - }, - { - "l": "9.0", - "x": 0.0192, - "y": 46.8571 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 47.3725 - }, - { - "l": "9.0", - "x": 0.0575, - "y": 47.8879 - }, - { - "l": "9.0", - "x": 0.0767, - "y": 48.4034 - }, - { - "l": "9.0", - "x": 0.0958, - "y": 48.8747 - }, - { - "l": "9.0", - "x": 0.115, - "y": 49.3271 - }, - { - "l": "9.0", - "x": 0.1342, - "y": 49.7741 - }, - { - "l": "9.0", - "x": 0.1533, - "y": 50.2214 - }, - { - "l": "9.0", - "x": 0.1725, - "y": 50.678 - }, - { - "l": "9.0", - "x": 0.1916, - "y": 51.1679 - }, - { - "l": "9.0", - "x": 0.2108, - "y": 51.6628 - }, - { - "l": "9.0", - "x": 0.23, - "y": 52.1595 - }, - { - "l": "9.0", - "x": 0.2491, - "y": 52.6544 - }, - { - "l": "9.0", - "x": 0.2683, - "y": 53.1428 - }, - { - "l": "9.0", - "x": 0.2875, - "y": 53.6233 - }, - { - "l": "9.0", - "x": 0.3066, - "y": 54.093 - }, - { - "l": "9.0", - "x": 0.3258, - "y": 54.549 - }, - { - "l": "9.0", - "x": 0.345, - "y": 54.9693 - }, - { - "l": "9.0", - "x": 0.3641, - "y": 55.3694 - }, - { - "l": "9.0", - "x": 0.3833, - "y": 55.7599 - }, - { - "l": "9.0", - "x": 0.4025, - "y": 56.1454 - }, - { - "l": "9.0", - "x": 0.4216, - "y": 56.5332 - }, - { - "l": "9.0", - "x": 0.4408, - "y": 56.9462 - }, - { - "l": "9.0", - "x": 0.46, - "y": 57.3594 - }, - { - "l": "9.0", - "x": 0.4791, - "y": 57.7701 - }, - { - "l": "9.0", - "x": 0.4983, - "y": 58.1754 - }, - { - "l": "9.0", - "x": 0.5175, - "y": 58.5702 - }, - { - "l": "9.0", - "x": 0.5366, - "y": 58.9549 - }, - { - "l": "9.0", - "x": 0.5558, - "y": 59.3278 - }, - { - "l": "9.0", - "x": 0.5749, - "y": 59.687 - }, - { - "l": "9.0", - "x": 0.5941, - "y": 60.0169 - }, - { - "l": "9.0", - "x": 0.6133, - "y": 60.3279 - }, - { - "l": "9.0", - "x": 0.6324, - "y": 60.6291 - }, - { - "l": "9.0", - "x": 0.6516, - "y": 60.9245 - }, - { - "l": "9.0", - "x": 0.6708, - "y": 61.219 - }, - { - "l": "9.0", - "x": 0.6899, - "y": 61.5328 - }, - { - "l": "9.0", - "x": 0.7091, - "y": 61.8459 - }, - { - "l": "9.0", - "x": 0.7283, - "y": 62.1562 - }, - { - "l": "9.0", - "x": 0.7474, - "y": 62.4619 - }, - { - "l": "9.0", - "x": 0.7666, - "y": 62.7594 - }, - { - "l": "9.0", - "x": 0.7858, - "y": 63.0488 - }, - { - "l": "9.0", - "x": 0.8049, - "y": 63.3291 - }, - { - "l": "9.0", - "x": 0.8241, - "y": 63.5992 - }, - { - "l": "9.0", - "x": 0.8433, - "y": 63.8481 - }, - { - "l": "9.0", - "x": 0.8624, - "y": 64.0822 - }, - { - "l": "9.0", - "x": 0.8816, - "y": 64.3091 - }, - { - "l": "9.0", - "x": 0.9008, - "y": 64.532 - }, - { - "l": "9.0", - "x": 0.9199, - "y": 64.7539 - }, - { - "l": "9.0", - "x": 0.9391, - "y": 64.9917 - }, - { - "l": "9.0", - "x": 0.9582, - "y": 65.2297 - }, - { - "l": "9.0", - "x": 0.9774, - "y": 65.4665 - }, - { - "l": "9.0", - "x": 0.9966, - "y": 65.7006 - }, - { - "l": "9.0", - "x": 1.0157, - "y": 65.9299 - }, - { - "l": "9.0", - "x": 1.0349, - "y": 66.1539 - }, - { - "l": "9.0", - "x": 1.0541, - "y": 66.372 - }, - { - "l": "9.0", - "x": 1.0732, - "y": 66.5831 - }, - { - "l": "9.0", - "x": 1.0924, - "y": 66.7791 - }, - { - "l": "9.0", - "x": 1.1116, - "y": 66.964 - }, - { - "l": "9.0", - "x": 1.1307, - "y": 67.1442 - }, - { - "l": "9.0", - "x": 1.1499, - "y": 67.322 - }, - { - "l": "9.0", - "x": 1.1691, - "y": 67.5001 - }, - { - "l": "9.0", - "x": 1.1882, - "y": 67.6912 - }, - { - "l": "9.0", - "x": 1.2074, - "y": 67.884 - }, - { - "l": "9.0", - "x": 1.2266, - "y": 68.0768 - }, - { - "l": "9.0", - "x": 1.2457, - "y": 68.2684 - }, - { - "l": "9.0", - "x": 1.2649, - "y": 68.4574 - }, - { - "l": "9.0", - "x": 1.2841, - "y": 68.6431 - }, - { - "l": "9.0", - "x": 1.3032, - "y": 68.8246 - }, - { - "l": "9.0", - "x": 1.3224, - "y": 69.0012 - }, - { - "l": "9.0", - "x": 1.3415, - "y": 69.1661 - }, - { - "l": "9.0", - "x": 1.3607, - "y": 69.3218 - }, - { - "l": "9.0", - "x": 1.3799, - "y": 69.4739 - }, - { - "l": "9.0", - "x": 1.399, - "y": 69.6246 - }, - { - "l": "9.0", - "x": 1.4182, - "y": 69.7759 - }, - { - "l": "9.0", - "x": 1.4374, - "y": 69.9383 - }, - { - "l": "9.0", - "x": 1.4565, - "y": 70.1029 - }, - { - "l": "9.0", - "x": 1.4757, - "y": 70.268 - }, - { - "l": "9.0", - "x": 1.4949, - "y": 70.4324 - }, - { - "l": "9.0", - "x": 1.514, - "y": 70.5949 - }, - { - "l": "9.0", - "x": 1.5332, - "y": 70.7549 - }, - { - "l": "9.0", - "x": 1.5524, - "y": 70.9116 - }, - { - "l": "9.0", - "x": 1.5715, - "y": 71.0644 - }, - { - "l": "9.0", - "x": 1.5907, - "y": 71.2077 - }, - { - "l": "9.0", - "x": 1.6099, - "y": 71.3428 - }, - { - "l": "9.0", - "x": 1.629, - "y": 71.4752 - }, - { - "l": "9.0", - "x": 1.6482, - "y": 71.6065 - }, - { - "l": "9.0", - "x": 1.6674, - "y": 71.7388 - }, - { - "l": "9.0", - "x": 1.6865, - "y": 71.8805 - }, - { - "l": "9.0", - "x": 1.7057, - "y": 72.0252 - }, - { - "l": "9.0", - "x": 1.7248, - "y": 72.1708 - }, - { - "l": "9.0", - "x": 1.744, - "y": 72.3164 - }, - { - "l": "9.0", - "x": 1.7632, - "y": 72.4611 - }, - { - "l": "9.0", - "x": 1.7823, - "y": 72.6041 - }, - { - "l": "9.0", - "x": 1.8015, - "y": 72.7449 - }, - { - "l": "9.0", - "x": 1.8207, - "y": 72.8827 - }, - { - "l": "9.0", - "x": 1.8398, - "y": 73.0128 - }, - { - "l": "9.0", - "x": 1.859, - "y": 73.1356 - }, - { - "l": "9.0", - "x": 1.8782, - "y": 73.2563 - }, - { - "l": "9.0", - "x": 1.8973, - "y": 73.3765 - }, - { - "l": "9.0", - "x": 1.9165, - "y": 73.4978 - }, - { - "l": "9.0", - "x": 1.9357, - "y": 73.6279 - }, - { - "l": "9.0", - "x": 1.9548, - "y": 73.7614 - }, - { - "l": "9.0", - "x": 1.974, - "y": 73.896 - }, - { - "l": "9.0", - "x": 1.9932, - "y": 74.031 - }, - { - "l": "9.0", - "x": 2.0123, - "y": 74.1656 - }, - { - "l": "9.0", - "x": 2.0957, - "y": 74.7222 - }, - { - "l": "9.0", - "x": 2.179, - "y": 75.222 - }, - { - "l": "9.0", - "x": 2.2623, - "y": 75.7741 - }, - { - "l": "9.0", - "x": 2.3457, - "y": 76.3039 - }, - { - "l": "9.0", - "x": 2.429, - "y": 76.7829 - }, - { - "l": "9.0", - "x": 2.5123, - "y": 77.3154 - }, - { - "l": "9.0", - "x": 2.5957, - "y": 77.8291 - }, - { - "l": "9.0", - "x": 2.679, - "y": 78.295 - }, - { - "l": "9.0", - "x": 2.7623, - "y": 78.8135 - }, - { - "l": "9.0", - "x": 2.8457, - "y": 79.3135 - }, - { - "l": "9.0", - "x": 2.929, - "y": 79.7668 - }, - { - "l": "9.0", - "x": 3.0123, - "y": 80.2718 - }, - { - "l": "9.0", - "x": 3.0957, - "y": 80.76 - }, - { - "l": "9.0", - "x": 3.179, - "y": 81.2045 - }, - { - "l": "9.0", - "x": 3.2623, - "y": 81.7019 - }, - { - "l": "9.0", - "x": 3.3457, - "y": 82.1853 - }, - { - "l": "9.0", - "x": 3.429, - "y": 82.6275 - }, - { - "l": "9.0", - "x": 3.5123, - "y": 83.1239 - }, - { - "l": "9.0", - "x": 3.5957, - "y": 83.6078 - }, - { - "l": "9.0", - "x": 3.679, - "y": 84.0512 - }, - { - "l": "9.0", - "x": 3.7623, - "y": 84.5497 - }, - { - "l": "9.0", - "x": 3.8457, - "y": 85.0358 - }, - { - "l": "9.0", - "x": 3.929, - "y": 85.4809 - }, - { - "l": "9.0", - "x": 4.0123, - "y": 85.9808 - }, - { - "l": "9.0", - "x": 4.0957, - "y": 86.4676 - }, - { - "l": "9.0", - "x": 4.179, - "y": 86.9131 - }, - { - "l": "9.0", - "x": 4.2623, - "y": 87.4136 - }, - { - "l": "9.0", - "x": 4.3457, - "y": 87.9013 - }, - { - "l": "9.0", - "x": 4.429, - "y": 88.3482 - }, - { - "l": "9.0", - "x": 4.5123, - "y": 88.8507 - }, - { - "l": "9.0", - "x": 4.5957, - "y": 89.3404 - }, - { - "l": "9.0", - "x": 4.679, - "y": 89.7887 - }, - { - "l": "9.0", - "x": 4.7623, - "y": 90.2918 - }, - { - "l": "9.0", - "x": 4.8457, - "y": 90.7811 - }, - { - "l": "9.0", - "x": 4.929, - "y": 91.2278 - }, - { - "l": "9.0", - "x": 5.0123, - "y": 91.7279 - }, - { - "l": "9.0", - "x": 5.0957, - "y": 92.2131 - }, - { - "l": "9.0", - "x": 5.179, - "y": 92.6556 - }, - { - "l": "9.0", - "x": 5.2623, - "y": 93.1508 - }, - { - "l": "9.0", - "x": 5.3457, - "y": 93.6315 - }, - { - "l": "9.0", - "x": 5.429, - "y": 94.0701 - }, - { - "l": "9.0", - "x": 5.5123, - "y": 94.5609 - }, - { - "l": "9.0", - "x": 5.5957, - "y": 95.037 - }, - { - "l": "9.0", - "x": 5.679, - "y": 95.4709 - }, - { - "l": "9.0", - "x": 5.7623, - "y": 95.9562 - }, - { - "l": "9.0", - "x": 5.8457, - "y": 96.4266 - }, - { - "l": "9.0", - "x": 5.929, - "y": 96.8551 - }, - { - "l": "9.0", - "x": 6.0123, - "y": 97.3342 - }, - { - "l": "9.0", - "x": 6.0957, - "y": 97.7988 - }, - { - "l": "9.0", - "x": 6.179, - "y": 98.2226 - }, - { - "l": "9.0", - "x": 6.2623, - "y": 98.6969 - }, - { - "l": "9.0", - "x": 6.3457, - "y": 99.1574 - }, - { - "l": "9.0", - "x": 6.429, - "y": 99.5777 - }, - { - "l": "9.0", - "x": 6.5123, - "y": 100.0486 - }, - { - "l": "9.0", - "x": 6.5957, - "y": 100.5063 - }, - { - "l": "9.0", - "x": 6.679, - "y": 100.9247 - }, - { - "l": "9.0", - "x": 6.7623, - "y": 101.394 - }, - { - "l": "9.0", - "x": 6.8457, - "y": 101.8509 - }, - { - "l": "9.0", - "x": 6.929, - "y": 102.2688 - }, - { - "l": "9.0", - "x": 7.0123, - "y": 102.7377 - }, - { - "l": "9.0", - "x": 7.0957, - "y": 103.1938 - }, - { - "l": "9.0", - "x": 7.179, - "y": 103.611 - }, - { - "l": "9.0", - "x": 7.2623, - "y": 104.0788 - }, - { - "l": "9.0", - "x": 7.3457, - "y": 104.5336 - }, - { - "l": "9.0", - "x": 7.429, - "y": 104.9489 - }, - { - "l": "9.0", - "x": 7.5123, - "y": 105.4138 - }, - { - "l": "9.0", - "x": 7.5957, - "y": 105.8649 - }, - { - "l": "9.0", - "x": 7.679, - "y": 106.2762 - }, - { - "l": "9.0", - "x": 7.7623, - "y": 106.7366 - }, - { - "l": "9.0", - "x": 7.8457, - "y": 107.1837 - }, - { - "l": "9.0", - "x": 7.929, - "y": 107.592 - }, - { - "l": "9.0", - "x": 8.0123, - "y": 108.05 - }, - { - "l": "9.0", - "x": 8.0957, - "y": 108.4958 - }, - { - "l": "9.0", - "x": 8.179, - "y": 108.9038 - }, - { - "l": "9.0", - "x": 8.2623, - "y": 109.3621 - }, - { - "l": "9.0", - "x": 8.3457, - "y": 109.8086 - }, - { - "l": "9.0", - "x": 8.429, - "y": 110.2174 - }, - { - "l": "9.0", - "x": 8.5123, - "y": 110.6763 - }, - { - "l": "9.0", - "x": 8.5957, - "y": 111.1231 - }, - { - "l": "9.0", - "x": 8.679, - "y": 111.5316 - }, - { - "l": "9.0", - "x": 8.7623, - "y": 111.9898 - }, - { - "l": "9.0", - "x": 8.8457, - "y": 112.4355 - }, - { - "l": "9.0", - "x": 8.929, - "y": 112.8429 - }, - { - "l": "9.0", - "x": 9.0123, - "y": 113.2997 - }, - { - "l": "9.0", - "x": 9.0957, - "y": 113.744 - }, - { - "l": "9.0", - "x": 9.179, - "y": 114.1502 - }, - { - "l": "9.0", - "x": 9.2623, - "y": 114.6059 - }, - { - "l": "9.0", - "x": 9.3457, - "y": 115.0491 - }, - { - "l": "9.0", - "x": 9.429, - "y": 115.4542 - }, - { - "l": "9.0", - "x": 9.5123, - "y": 115.9086 - }, - { - "l": "9.0", - "x": 9.5957, - "y": 116.3507 - }, - { - "l": "9.0", - "x": 9.679, - "y": 116.755 - }, - { - "l": "9.0", - "x": 9.7623, - "y": 117.2087 - }, - { - "l": "9.0", - "x": 9.8457, - "y": 117.6505 - }, - { - "l": "9.0", - "x": 9.929, - "y": 118.0548 - }, - { - "l": "9.0", - "x": 10.0123, - "y": 118.5088 - }, - { - "l": "9.0", - "x": 10.0957, - "y": 118.9504 - }, - { - "l": "9.0", - "x": 10.179, - "y": 119.3543 - }, - { - "l": "9.0", - "x": 10.2623, - "y": 119.8071 - }, - { - "l": "9.0", - "x": 10.3457, - "y": 120.2472 - }, - { - "l": "9.0", - "x": 10.429, - "y": 120.6491 - }, - { - "l": "9.0", - "x": 10.5123, - "y": 121.0992 - }, - { - "l": "9.0", - "x": 10.5957, - "y": 121.536 - }, - { - "l": "9.0", - "x": 10.679, - "y": 121.934 - }, - { - "l": "9.0", - "x": 10.7623, - "y": 122.3785 - }, - { - "l": "9.0", - "x": 10.8457, - "y": 122.8088 - }, - { - "l": "9.0", - "x": 10.929, - "y": 123.1998 - }, - { - "l": "9.0", - "x": 11.0123, - "y": 123.6354 - }, - { - "l": "9.0", - "x": 11.0957, - "y": 124.0556 - }, - { - "l": "9.0", - "x": 11.179, - "y": 124.4359 - }, - { - "l": "9.0", - "x": 11.2623, - "y": 124.8573 - }, - { - "l": "9.0", - "x": 11.3457, - "y": 125.2624 - }, - { - "l": "9.0", - "x": 11.429, - "y": 125.627 - }, - { - "l": "9.0", - "x": 11.5123, - "y": 126.0291 - }, - { - "l": "9.0", - "x": 11.5957, - "y": 126.4134 - }, - { - "l": "9.0", - "x": 11.679, - "y": 126.7579 - }, - { - "l": "9.0", - "x": 11.7623, - "y": 127.1368 - }, - { - "l": "9.0", - "x": 11.8457, - "y": 127.4975 - }, - { - "l": "9.0", - "x": 11.929, - "y": 127.82 - }, - { - "l": "9.0", - "x": 12.0123, - "y": 128.1737 - }, - { - "l": "9.0", - "x": 12.0957, - "y": 128.5095 - }, - { - "l": "9.0", - "x": 12.179, - "y": 128.8088 - }, - { - "l": "9.0", - "x": 12.2623, - "y": 129.1372 - }, - { - "l": "9.0", - "x": 12.3457, - "y": 129.448 - }, - { - "l": "9.0", - "x": 12.429, - "y": 129.7249 - }, - { - "l": "9.0", - "x": 12.5123, - "y": 130.0276 - }, - { - "l": "9.0", - "x": 12.5957, - "y": 130.3141 - }, - { - "l": "9.0", - "x": 12.679, - "y": 130.57 - }, - { - "l": "9.0", - "x": 12.7623, - "y": 130.8494 - }, - { - "l": "9.0", - "x": 12.8457, - "y": 131.1135 - }, - { - "l": "9.0", - "x": 12.929, - "y": 131.3497 - }, - { - "l": "9.0", - "x": 13.0123, - "y": 131.6075 - }, - { - "l": "9.0", - "x": 13.0957, - "y": 131.8512 - }, - { - "l": "9.0", - "x": 13.179, - "y": 132.0684 - }, - { - "l": "9.0", - "x": 13.2623, - "y": 132.3055 - }, - { - "l": "9.0", - "x": 13.3457, - "y": 132.5296 - }, - { - "l": "9.0", - "x": 13.429, - "y": 132.7284 - }, - { - "l": "9.0", - "x": 13.5123, - "y": 132.9451 - }, - { - "l": "9.0", - "x": 13.5957, - "y": 133.15 - }, - { - "l": "9.0", - "x": 13.679, - "y": 133.331 - }, - { - "l": "9.0", - "x": 13.7623, - "y": 133.528 - }, - { - "l": "9.0", - "x": 13.8457, - "y": 133.7145 - }, - { - "l": "9.0", - "x": 13.929, - "y": 133.8791 - }, - { - "l": "9.0", - "x": 14.0123, - "y": 134.0578 - }, - { - "l": "9.0", - "x": 14.0957, - "y": 134.2261 - }, - { - "l": "9.0", - "x": 14.179, - "y": 134.3746 - }, - { - "l": "9.0", - "x": 14.2623, - "y": 134.5356 - }, - { - "l": "9.0", - "x": 14.3457, - "y": 134.6867 - }, - { - "l": "9.0", - "x": 14.429, - "y": 134.8198 - }, - { - "l": "9.0", - "x": 14.5123, - "y": 134.9639 - }, - { - "l": "9.0", - "x": 14.5957, - "y": 135.0986 - }, - { - "l": "9.0", - "x": 14.679, - "y": 135.2182 - }, - { - "l": "9.0", - "x": 14.7623, - "y": 135.3467 - }, - { - "l": "9.0", - "x": 14.8457, - "y": 135.467 - }, - { - "l": "9.0", - "x": 14.929, - "y": 135.5727 - }, - { - "l": "9.0", - "x": 15.0123, - "y": 135.6857 - }, - { - "l": "9.0", - "x": 15.0957, - "y": 135.7929 - }, - { - "l": "9.0", - "x": 15.179, - "y": 135.8859 - }, - { - "l": "9.0", - "x": 15.2623, - "y": 135.9862 - }, - { - "l": "9.0", - "x": 15.3457, - "y": 136.0793 - }, - { - "l": "9.0", - "x": 15.429, - "y": 136.1596 - }, - { - "l": "9.0", - "x": 15.5123, - "y": 136.2468 - }, - { - "l": "9.0", - "x": 15.5957, - "y": 136.3305 - }, - { - "l": "9.0", - "x": 15.679, - "y": 136.4019 - }, - { - "l": "9.0", - "x": 15.7623, - "y": 136.479 - }, - { - "l": "9.0", - "x": 15.8457, - "y": 136.5507 - }, - { - "l": "9.0", - "x": 15.929, - "y": 136.614 - }, - { - "l": "9.0", - "x": 16.0123, - "y": 136.6823 - }, - { - "l": "9.0", - "x": 16.0957, - "y": 136.7458 - }, - { - "l": "9.0", - "x": 16.179, - "y": 136.8018 - }, - { - "l": "9.0", - "x": 16.2623, - "y": 136.8623 - }, - { - "l": "9.0", - "x": 16.3457, - "y": 136.9193 - }, - { - "l": "9.0", - "x": 16.429, - "y": 136.9689 - }, - { - "l": "9.0", - "x": 16.5123, - "y": 137.0222 - }, - { - "l": "9.0", - "x": 16.5957, - "y": 137.0731 - }, - { - "l": "9.0", - "x": 16.679, - "y": 137.118 - }, - { - "l": "9.0", - "x": 16.7623, - "y": 137.1663 - }, - { - "l": "9.0", - "x": 16.8457, - "y": 137.2118 - }, - { - "l": "9.0", - "x": 16.929, - "y": 137.2523 - }, - { - "l": "9.0", - "x": 17.0123, - "y": 137.2968 - }, - { - "l": "9.0", - "x": 17.0957, - "y": 137.3392 - }, - { - "l": "9.0", - "x": 17.179, - "y": 137.3775 - }, - { - "l": "9.0", - "x": 17.2623, - "y": 137.4198 - }, - { - "l": "9.0", - "x": 17.3457, - "y": 137.4606 - }, - { - "l": "9.0", - "x": 17.429, - "y": 137.4977 - }, - { - "l": "9.0", - "x": 17.5123, - "y": 137.5389 - }, - { - "l": "9.0", - "x": 17.5957, - "y": 137.579 - }, - { - "l": "9.0", - "x": 17.679, - "y": 137.6155 - }, - { - "l": "9.0", - "x": 17.7623, - "y": 137.6565 - }, - { - "l": "9.0", - "x": 17.8457, - "y": 137.6964 - }, - { - "l": "9.0", - "x": 17.929, - "y": 137.733 - }, - { - "l": "9.0", - "x": 18.0123, - "y": 137.7744 - }, - { - "l": "9.0", - "x": 18.0957, - "y": 137.8149 - }, - { - "l": "9.0", - "x": 18.179, - "y": 137.852 - }, - { - "l": "9.0", - "x": 18.2623, - "y": 137.8938 - }, - { - "l": "9.0", - "x": 18.3457, - "y": 137.9349 - }, - { - "l": "9.0", - "x": 18.429, - "y": 137.9729 - }, - { - "l": "9.0", - "x": 18.5123, - "y": 138.0157 - }, - { - "l": "9.0", - "x": 18.5957, - "y": 138.0577 - }, - { - "l": "9.0", - "x": 18.679, - "y": 138.0965 - }, - { - "l": "9.0", - "x": 18.7623, - "y": 138.1401 - }, - { - "l": "9.0", - "x": 18.8457, - "y": 138.1826 - }, - { - "l": "9.0", - "x": 18.929, - "y": 138.2215 - }, - { - "l": "9.0", - "x": 19.0123, - "y": 138.2652 - }, - { - "l": "9.0", - "x": 19.0957, - "y": 138.308 - }, - { - "l": "9.0", - "x": 19.179, - "y": 138.3469 - }, - { - "l": "9.0", - "x": 19.2623, - "y": 138.3882 - }, - { - "l": "9.0", - "x": 19.3457, - "y": 138.4284 - }, - { - "l": "9.0", - "x": 19.429, - "y": 138.4652 - }, - { - "l": "9.0", - "x": 19.5123, - "y": 138.5065 - }, - { - "l": "9.0", - "x": 19.5957, - "y": 138.5468 - }, - { - "l": "9.0", - "x": 19.679, - "y": 138.5836 - }, - { - "l": "9.0", - "x": 19.7623, - "y": 138.6249 - }, - { - "l": "9.0", - "x": 19.8457, - "y": 138.6651 - }, - { - "l": "9.0", - "x": 19.929, - "y": 138.7021 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 0.0, - "y": 47.8973 - }, - { - "l": "25.0", - "x": 0.0192, - "y": 48.4273 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 48.9573 - }, - { - "l": "25.0", - "x": 0.0575, - "y": 49.4874 - }, - { - "l": "25.0", - "x": 0.0767, - "y": 50.0176 - }, - { - "l": "25.0", - "x": 0.0958, - "y": 50.5022 - }, - { - "l": "25.0", - "x": 0.115, - "y": 50.9673 - }, - { - "l": "25.0", - "x": 0.1342, - "y": 51.427 - }, - { - "l": "25.0", - "x": 0.1533, - "y": 51.8868 - }, - { - "l": "25.0", - "x": 0.1725, - "y": 52.3561 - }, - { - "l": "25.0", - "x": 0.1916, - "y": 52.8596 - }, - { - "l": "25.0", - "x": 0.2108, - "y": 53.3683 - }, - { - "l": "25.0", - "x": 0.23, - "y": 53.8786 - }, - { - "l": "25.0", - "x": 0.2491, - "y": 54.3872 - }, - { - "l": "25.0", - "x": 0.2683, - "y": 54.889 - }, - { - "l": "25.0", - "x": 0.2875, - "y": 55.3825 - }, - { - "l": "25.0", - "x": 0.3066, - "y": 55.865 - }, - { - "l": "25.0", - "x": 0.3258, - "y": 56.3334 - }, - { - "l": "25.0", - "x": 0.345, - "y": 56.765 - }, - { - "l": "25.0", - "x": 0.3641, - "y": 57.1759 - }, - { - "l": "25.0", - "x": 0.3833, - "y": 57.5768 - }, - { - "l": "25.0", - "x": 0.4025, - "y": 57.9727 - }, - { - "l": "25.0", - "x": 0.4216, - "y": 58.3707 - }, - { - "l": "25.0", - "x": 0.4408, - "y": 58.7947 - }, - { - "l": "25.0", - "x": 0.46, - "y": 59.2189 - }, - { - "l": "25.0", - "x": 0.4791, - "y": 59.6403 - }, - { - "l": "25.0", - "x": 0.4983, - "y": 60.0563 - }, - { - "l": "25.0", - "x": 0.5175, - "y": 60.4615 - }, - { - "l": "25.0", - "x": 0.5366, - "y": 60.8562 - }, - { - "l": "25.0", - "x": 0.5558, - "y": 61.2388 - }, - { - "l": "25.0", - "x": 0.5749, - "y": 61.6074 - }, - { - "l": "25.0", - "x": 0.5941, - "y": 61.9459 - }, - { - "l": "25.0", - "x": 0.6133, - "y": 62.2649 - }, - { - "l": "25.0", - "x": 0.6324, - "y": 62.5738 - }, - { - "l": "25.0", - "x": 0.6516, - "y": 62.8768 - }, - { - "l": "25.0", - "x": 0.6708, - "y": 63.1789 - }, - { - "l": "25.0", - "x": 0.6899, - "y": 63.5008 - }, - { - "l": "25.0", - "x": 0.7091, - "y": 63.8219 - }, - { - "l": "25.0", - "x": 0.7283, - "y": 64.1401 - }, - { - "l": "25.0", - "x": 0.7474, - "y": 64.4536 - }, - { - "l": "25.0", - "x": 0.7666, - "y": 64.7587 - }, - { - "l": "25.0", - "x": 0.7858, - "y": 65.0555 - }, - { - "l": "25.0", - "x": 0.8049, - "y": 65.3429 - }, - { - "l": "25.0", - "x": 0.8241, - "y": 65.6199 - }, - { - "l": "25.0", - "x": 0.8433, - "y": 65.8751 - }, - { - "l": "25.0", - "x": 0.8624, - "y": 66.1152 - }, - { - "l": "25.0", - "x": 0.8816, - "y": 66.3479 - }, - { - "l": "25.0", - "x": 0.9008, - "y": 66.5765 - }, - { - "l": "25.0", - "x": 0.9199, - "y": 66.8041 - }, - { - "l": "25.0", - "x": 0.9391, - "y": 67.048 - }, - { - "l": "25.0", - "x": 0.9582, - "y": 67.2921 - }, - { - "l": "25.0", - "x": 0.9774, - "y": 67.535 - }, - { - "l": "25.0", - "x": 0.9966, - "y": 67.7751 - }, - { - "l": "25.0", - "x": 1.0157, - "y": 68.0103 - }, - { - "l": "25.0", - "x": 1.0349, - "y": 68.2402 - }, - { - "l": "25.0", - "x": 1.0541, - "y": 68.4639 - }, - { - "l": "25.0", - "x": 1.0732, - "y": 68.6805 - }, - { - "l": "25.0", - "x": 1.0924, - "y": 68.8817 - }, - { - "l": "25.0", - "x": 1.1116, - "y": 69.0714 - }, - { - "l": "25.0", - "x": 1.1307, - "y": 69.2563 - }, - { - "l": "25.0", - "x": 1.1499, - "y": 69.4389 - }, - { - "l": "25.0", - "x": 1.1691, - "y": 69.6217 - }, - { - "l": "25.0", - "x": 1.1882, - "y": 69.8179 - }, - { - "l": "25.0", - "x": 1.2074, - "y": 70.0158 - }, - { - "l": "25.0", - "x": 1.2266, - "y": 70.2138 - }, - { - "l": "25.0", - "x": 1.2457, - "y": 70.4106 - }, - { - "l": "25.0", - "x": 1.2649, - "y": 70.6047 - }, - { - "l": "25.0", - "x": 1.2841, - "y": 70.7954 - }, - { - "l": "25.0", - "x": 1.3032, - "y": 70.982 - }, - { - "l": "25.0", - "x": 1.3224, - "y": 71.1634 - }, - { - "l": "25.0", - "x": 1.3415, - "y": 71.3329 - }, - { - "l": "25.0", - "x": 1.3607, - "y": 71.4928 - }, - { - "l": "25.0", - "x": 1.3799, - "y": 71.6493 - }, - { - "l": "25.0", - "x": 1.399, - "y": 71.8042 - }, - { - "l": "25.0", - "x": 1.4182, - "y": 71.9598 - }, - { - "l": "25.0", - "x": 1.4374, - "y": 72.1267 - }, - { - "l": "25.0", - "x": 1.4565, - "y": 72.296 - }, - { - "l": "25.0", - "x": 1.4757, - "y": 72.4658 - }, - { - "l": "25.0", - "x": 1.4949, - "y": 72.635 - }, - { - "l": "25.0", - "x": 1.514, - "y": 72.8022 - }, - { - "l": "25.0", - "x": 1.5332, - "y": 72.9669 - }, - { - "l": "25.0", - "x": 1.5524, - "y": 73.1282 - }, - { - "l": "25.0", - "x": 1.5715, - "y": 73.2855 - }, - { - "l": "25.0", - "x": 1.5907, - "y": 73.433 - }, - { - "l": "25.0", - "x": 1.6099, - "y": 73.5722 - }, - { - "l": "25.0", - "x": 1.629, - "y": 73.7085 - }, - { - "l": "25.0", - "x": 1.6482, - "y": 73.8438 - }, - { - "l": "25.0", - "x": 1.6674, - "y": 73.98 - }, - { - "l": "25.0", - "x": 1.6865, - "y": 74.1262 - }, - { - "l": "25.0", - "x": 1.7057, - "y": 74.2753 - }, - { - "l": "25.0", - "x": 1.7248, - "y": 74.4253 - }, - { - "l": "25.0", - "x": 1.744, - "y": 74.5755 - }, - { - "l": "25.0", - "x": 1.7632, - "y": 74.7247 - }, - { - "l": "25.0", - "x": 1.7823, - "y": 74.8722 - }, - { - "l": "25.0", - "x": 1.8015, - "y": 75.0175 - }, - { - "l": "25.0", - "x": 1.8207, - "y": 75.1596 - }, - { - "l": "25.0", - "x": 1.8398, - "y": 75.2939 - }, - { - "l": "25.0", - "x": 1.859, - "y": 75.4206 - }, - { - "l": "25.0", - "x": 1.8782, - "y": 75.5452 - }, - { - "l": "25.0", - "x": 1.8973, - "y": 75.6694 - }, - { - "l": "25.0", - "x": 1.9165, - "y": 75.7947 - }, - { - "l": "25.0", - "x": 1.9357, - "y": 75.9291 - }, - { - "l": "25.0", - "x": 1.9548, - "y": 76.0669 - }, - { - "l": "25.0", - "x": 1.974, - "y": 76.2061 - }, - { - "l": "25.0", - "x": 1.9932, - "y": 76.3457 - }, - { - "l": "25.0", - "x": 2.0123, - "y": 76.4847 - }, - { - "l": "25.0", - "x": 2.0957, - "y": 77.0604 - }, - { - "l": "25.0", - "x": 2.179, - "y": 77.5777 - }, - { - "l": "25.0", - "x": 2.2623, - "y": 78.1496 - }, - { - "l": "25.0", - "x": 2.3457, - "y": 78.6986 - }, - { - "l": "25.0", - "x": 2.429, - "y": 79.1954 - }, - { - "l": "25.0", - "x": 2.5123, - "y": 79.7478 - }, - { - "l": "25.0", - "x": 2.5957, - "y": 80.2811 - }, - { - "l": "25.0", - "x": 2.679, - "y": 80.765 - }, - { - "l": "25.0", - "x": 2.7623, - "y": 81.3037 - }, - { - "l": "25.0", - "x": 2.8457, - "y": 81.8234 - }, - { - "l": "25.0", - "x": 2.929, - "y": 82.2948 - }, - { - "l": "25.0", - "x": 3.0123, - "y": 82.82 - }, - { - "l": "25.0", - "x": 3.0957, - "y": 83.328 - }, - { - "l": "25.0", - "x": 3.179, - "y": 83.7906 - }, - { - "l": "25.0", - "x": 3.2623, - "y": 84.3084 - }, - { - "l": "25.0", - "x": 3.3457, - "y": 84.8117 - }, - { - "l": "25.0", - "x": 3.429, - "y": 85.2722 - }, - { - "l": "25.0", - "x": 3.5123, - "y": 85.7893 - }, - { - "l": "25.0", - "x": 3.5957, - "y": 86.2932 - }, - { - "l": "25.0", - "x": 3.679, - "y": 86.7552 - }, - { - "l": "25.0", - "x": 3.7623, - "y": 87.2746 - }, - { - "l": "25.0", - "x": 3.8457, - "y": 87.781 - }, - { - "l": "25.0", - "x": 3.929, - "y": 88.2449 - }, - { - "l": "25.0", - "x": 4.0123, - "y": 88.7658 - }, - { - "l": "25.0", - "x": 4.0957, - "y": 89.2731 - }, - { - "l": "25.0", - "x": 4.179, - "y": 89.7374 - }, - { - "l": "25.0", - "x": 4.2623, - "y": 90.259 - }, - { - "l": "25.0", - "x": 4.3457, - "y": 90.7674 - }, - { - "l": "25.0", - "x": 4.429, - "y": 91.2332 - }, - { - "l": "25.0", - "x": 4.5123, - "y": 91.7569 - }, - { - "l": "25.0", - "x": 4.5957, - "y": 92.2673 - }, - { - "l": "25.0", - "x": 4.679, - "y": 92.7345 - }, - { - "l": "25.0", - "x": 4.7623, - "y": 93.2588 - }, - { - "l": "25.0", - "x": 4.8457, - "y": 93.7687 - }, - { - "l": "25.0", - "x": 4.929, - "y": 94.2343 - }, - { - "l": "25.0", - "x": 5.0123, - "y": 94.7554 - }, - { - "l": "25.0", - "x": 5.0957, - "y": 95.2609 - }, - { - "l": "25.0", - "x": 5.179, - "y": 95.7219 - }, - { - "l": "25.0", - "x": 5.2623, - "y": 96.2378 - }, - { - "l": "25.0", - "x": 5.3457, - "y": 96.7385 - }, - { - "l": "25.0", - "x": 5.429, - "y": 97.1953 - }, - { - "l": "25.0", - "x": 5.5123, - "y": 97.7064 - }, - { - "l": "25.0", - "x": 5.5957, - "y": 98.2022 - }, - { - "l": "25.0", - "x": 5.679, - "y": 98.654 - }, - { - "l": "25.0", - "x": 5.7623, - "y": 99.1592 - }, - { - "l": "25.0", - "x": 5.8457, - "y": 99.6489 - }, - { - "l": "25.0", - "x": 5.929, - "y": 100.0949 - }, - { - "l": "25.0", - "x": 6.0123, - "y": 100.5935 - }, - { - "l": "25.0", - "x": 6.0957, - "y": 101.077 - }, - { - "l": "25.0", - "x": 6.179, - "y": 101.518 - }, - { - "l": "25.0", - "x": 6.2623, - "y": 102.0114 - }, - { - "l": "25.0", - "x": 6.3457, - "y": 102.4905 - }, - { - "l": "25.0", - "x": 6.429, - "y": 102.9278 - }, - { - "l": "25.0", - "x": 6.5123, - "y": 103.4176 - }, - { - "l": "25.0", - "x": 6.5957, - "y": 103.8937 - }, - { - "l": "25.0", - "x": 6.679, - "y": 104.3288 - }, - { - "l": "25.0", - "x": 6.7623, - "y": 104.8169 - }, - { - "l": "25.0", - "x": 6.8457, - "y": 105.292 - }, - { - "l": "25.0", - "x": 6.929, - "y": 105.7264 - }, - { - "l": "25.0", - "x": 7.0123, - "y": 106.2139 - }, - { - "l": "25.0", - "x": 7.0957, - "y": 106.6881 - }, - { - "l": "25.0", - "x": 7.179, - "y": 107.1217 - }, - { - "l": "25.0", - "x": 7.2623, - "y": 107.6079 - }, - { - "l": "25.0", - "x": 7.3457, - "y": 108.0805 - }, - { - "l": "25.0", - "x": 7.429, - "y": 108.5119 - }, - { - "l": "25.0", - "x": 7.5123, - "y": 108.995 - }, - { - "l": "25.0", - "x": 7.5957, - "y": 109.4635 - }, - { - "l": "25.0", - "x": 7.679, - "y": 109.8907 - }, - { - "l": "25.0", - "x": 7.7623, - "y": 110.3687 - }, - { - "l": "25.0", - "x": 7.8457, - "y": 110.8328 - }, - { - "l": "25.0", - "x": 7.929, - "y": 111.2566 - }, - { - "l": "25.0", - "x": 8.0123, - "y": 111.7318 - }, - { - "l": "25.0", - "x": 8.0957, - "y": 112.1942 - }, - { - "l": "25.0", - "x": 8.179, - "y": 112.6173 - }, - { - "l": "25.0", - "x": 8.2623, - "y": 113.0924 - }, - { - "l": "25.0", - "x": 8.3457, - "y": 113.555 - }, - { - "l": "25.0", - "x": 8.429, - "y": 113.9785 - }, - { - "l": "25.0", - "x": 8.5123, - "y": 114.4537 - }, - { - "l": "25.0", - "x": 8.5957, - "y": 114.9161 - }, - { - "l": "25.0", - "x": 8.679, - "y": 115.3387 - }, - { - "l": "25.0", - "x": 8.7623, - "y": 115.8126 - }, - { - "l": "25.0", - "x": 8.8457, - "y": 116.2733 - }, - { - "l": "25.0", - "x": 8.929, - "y": 116.6943 - }, - { - "l": "25.0", - "x": 9.0123, - "y": 117.166 - }, - { - "l": "25.0", - "x": 9.0957, - "y": 117.6247 - }, - { - "l": "25.0", - "x": 9.179, - "y": 118.0438 - }, - { - "l": "25.0", - "x": 9.2623, - "y": 118.5136 - }, - { - "l": "25.0", - "x": 9.3457, - "y": 118.9703 - }, - { - "l": "25.0", - "x": 9.429, - "y": 119.3876 - }, - { - "l": "25.0", - "x": 9.5123, - "y": 119.8553 - }, - { - "l": "25.0", - "x": 9.5957, - "y": 120.31 - }, - { - "l": "25.0", - "x": 9.679, - "y": 120.7256 - }, - { - "l": "25.0", - "x": 9.7623, - "y": 121.1917 - }, - { - "l": "25.0", - "x": 9.8457, - "y": 121.6453 - }, - { - "l": "25.0", - "x": 9.929, - "y": 122.06 - }, - { - "l": "25.0", - "x": 10.0123, - "y": 122.5254 - }, - { - "l": "25.0", - "x": 10.0957, - "y": 122.9778 - }, - { - "l": "25.0", - "x": 10.179, - "y": 123.3912 - }, - { - "l": "25.0", - "x": 10.2623, - "y": 123.8543 - }, - { - "l": "25.0", - "x": 10.3457, - "y": 124.304 - }, - { - "l": "25.0", - "x": 10.429, - "y": 124.7145 - }, - { - "l": "25.0", - "x": 10.5123, - "y": 125.1737 - }, - { - "l": "25.0", - "x": 10.5957, - "y": 125.619 - }, - { - "l": "25.0", - "x": 10.679, - "y": 126.0244 - }, - { - "l": "25.0", - "x": 10.7623, - "y": 126.4768 - }, - { - "l": "25.0", - "x": 10.8457, - "y": 126.9144 - }, - { - "l": "25.0", - "x": 10.929, - "y": 127.3116 - }, - { - "l": "25.0", - "x": 11.0123, - "y": 127.7538 - }, - { - "l": "25.0", - "x": 11.0957, - "y": 128.18 - }, - { - "l": "25.0", - "x": 11.179, - "y": 128.5655 - }, - { - "l": "25.0", - "x": 11.2623, - "y": 128.9923 - }, - { - "l": "25.0", - "x": 11.3457, - "y": 129.4022 - }, - { - "l": "25.0", - "x": 11.429, - "y": 129.7708 - }, - { - "l": "25.0", - "x": 11.5123, - "y": 130.1771 - }, - { - "l": "25.0", - "x": 11.5957, - "y": 130.5651 - }, - { - "l": "25.0", - "x": 11.679, - "y": 130.9126 - }, - { - "l": "25.0", - "x": 11.7623, - "y": 131.2945 - }, - { - "l": "25.0", - "x": 11.8457, - "y": 131.6578 - }, - { - "l": "25.0", - "x": 11.929, - "y": 131.9824 - }, - { - "l": "25.0", - "x": 12.0123, - "y": 132.3383 - }, - { - "l": "25.0", - "x": 12.0957, - "y": 132.6759 - }, - { - "l": "25.0", - "x": 12.179, - "y": 132.9766 - }, - { - "l": "25.0", - "x": 12.2623, - "y": 133.3063 - }, - { - "l": "25.0", - "x": 12.3457, - "y": 133.6183 - }, - { - "l": "25.0", - "x": 12.429, - "y": 133.896 - }, - { - "l": "25.0", - "x": 12.5123, - "y": 134.1995 - }, - { - "l": "25.0", - "x": 12.5957, - "y": 134.4865 - }, - { - "l": "25.0", - "x": 12.679, - "y": 134.7429 - }, - { - "l": "25.0", - "x": 12.7623, - "y": 135.0226 - }, - { - "l": "25.0", - "x": 12.8457, - "y": 135.287 - }, - { - "l": "25.0", - "x": 12.929, - "y": 135.5232 - }, - { - "l": "25.0", - "x": 13.0123, - "y": 135.781 - }, - { - "l": "25.0", - "x": 13.0957, - "y": 136.0247 - }, - { - "l": "25.0", - "x": 13.179, - "y": 136.2417 - }, - { - "l": "25.0", - "x": 13.2623, - "y": 136.4787 - }, - { - "l": "25.0", - "x": 13.3457, - "y": 136.7025 - }, - { - "l": "25.0", - "x": 13.429, - "y": 136.901 - }, - { - "l": "25.0", - "x": 13.5123, - "y": 137.1174 - }, - { - "l": "25.0", - "x": 13.5957, - "y": 137.3219 - }, - { - "l": "25.0", - "x": 13.679, - "y": 137.5026 - }, - { - "l": "25.0", - "x": 13.7623, - "y": 137.6992 - }, - { - "l": "25.0", - "x": 13.8457, - "y": 137.8853 - }, - { - "l": "25.0", - "x": 13.929, - "y": 138.0494 - }, - { - "l": "25.0", - "x": 14.0123, - "y": 138.2277 - }, - { - "l": "25.0", - "x": 14.0957, - "y": 138.3955 - }, - { - "l": "25.0", - "x": 14.179, - "y": 138.5435 - }, - { - "l": "25.0", - "x": 14.2623, - "y": 138.704 - }, - { - "l": "25.0", - "x": 14.3457, - "y": 138.8547 - }, - { - "l": "25.0", - "x": 14.429, - "y": 138.9874 - }, - { - "l": "25.0", - "x": 14.5123, - "y": 139.131 - }, - { - "l": "25.0", - "x": 14.5957, - "y": 139.2651 - }, - { - "l": "25.0", - "x": 14.679, - "y": 139.3843 - }, - { - "l": "25.0", - "x": 14.7623, - "y": 139.5124 - }, - { - "l": "25.0", - "x": 14.8457, - "y": 139.6322 - }, - { - "l": "25.0", - "x": 14.929, - "y": 139.7375 - }, - { - "l": "25.0", - "x": 15.0123, - "y": 139.8501 - }, - { - "l": "25.0", - "x": 15.0957, - "y": 139.9568 - }, - { - "l": "25.0", - "x": 15.179, - "y": 140.0494 - }, - { - "l": "25.0", - "x": 15.2623, - "y": 140.1493 - }, - { - "l": "25.0", - "x": 15.3457, - "y": 140.2421 - }, - { - "l": "25.0", - "x": 15.429, - "y": 140.322 - }, - { - "l": "25.0", - "x": 15.5123, - "y": 140.4088 - }, - { - "l": "25.0", - "x": 15.5957, - "y": 140.4922 - }, - { - "l": "25.0", - "x": 15.679, - "y": 140.5633 - }, - { - "l": "25.0", - "x": 15.7623, - "y": 140.64 - }, - { - "l": "25.0", - "x": 15.8457, - "y": 140.7114 - }, - { - "l": "25.0", - "x": 15.929, - "y": 140.7744 - }, - { - "l": "25.0", - "x": 16.0123, - "y": 140.8424 - }, - { - "l": "25.0", - "x": 16.0957, - "y": 140.9056 - }, - { - "l": "25.0", - "x": 16.179, - "y": 140.9614 - }, - { - "l": "25.0", - "x": 16.2623, - "y": 141.0216 - }, - { - "l": "25.0", - "x": 16.3457, - "y": 141.0783 - }, - { - "l": "25.0", - "x": 16.429, - "y": 141.1277 - }, - { - "l": "25.0", - "x": 16.5123, - "y": 141.1807 - }, - { - "l": "25.0", - "x": 16.5957, - "y": 141.2314 - }, - { - "l": "25.0", - "x": 16.679, - "y": 141.276 - }, - { - "l": "25.0", - "x": 16.7623, - "y": 141.3241 - }, - { - "l": "25.0", - "x": 16.8457, - "y": 141.3694 - }, - { - "l": "25.0", - "x": 16.929, - "y": 141.4097 - }, - { - "l": "25.0", - "x": 17.0123, - "y": 141.454 - }, - { - "l": "25.0", - "x": 17.0957, - "y": 141.4962 - }, - { - "l": "25.0", - "x": 17.179, - "y": 141.5343 - }, - { - "l": "25.0", - "x": 17.2623, - "y": 141.5764 - }, - { - "l": "25.0", - "x": 17.3457, - "y": 141.617 - }, - { - "l": "25.0", - "x": 17.429, - "y": 141.6539 - }, - { - "l": "25.0", - "x": 17.5123, - "y": 141.6949 - }, - { - "l": "25.0", - "x": 17.5957, - "y": 141.7348 - }, - { - "l": "25.0", - "x": 17.679, - "y": 141.7711 - }, - { - "l": "25.0", - "x": 17.7623, - "y": 141.8119 - }, - { - "l": "25.0", - "x": 17.8457, - "y": 141.8516 - }, - { - "l": "25.0", - "x": 17.929, - "y": 141.888 - }, - { - "l": "25.0", - "x": 18.0123, - "y": 141.9291 - }, - { - "l": "25.0", - "x": 18.0957, - "y": 141.9695 - }, - { - "l": "25.0", - "x": 18.179, - "y": 142.0064 - }, - { - "l": "25.0", - "x": 18.2623, - "y": 142.0479 - }, - { - "l": "25.0", - "x": 18.3457, - "y": 142.0889 - }, - { - "l": "25.0", - "x": 18.429, - "y": 142.1266 - }, - { - "l": "25.0", - "x": 18.5123, - "y": 142.1692 - }, - { - "l": "25.0", - "x": 18.5957, - "y": 142.211 - }, - { - "l": "25.0", - "x": 18.679, - "y": 142.2496 - }, - { - "l": "25.0", - "x": 18.7623, - "y": 142.293 - }, - { - "l": "25.0", - "x": 18.8457, - "y": 142.3352 - }, - { - "l": "25.0", - "x": 18.929, - "y": 142.374 - }, - { - "l": "25.0", - "x": 19.0123, - "y": 142.4174 - }, - { - "l": "25.0", - "x": 19.0957, - "y": 142.46 - }, - { - "l": "25.0", - "x": 19.179, - "y": 142.4987 - }, - { - "l": "25.0", - "x": 19.2623, - "y": 142.5398 - }, - { - "l": "25.0", - "x": 19.3457, - "y": 142.5797 - }, - { - "l": "25.0", - "x": 19.429, - "y": 142.6163 - }, - { - "l": "25.0", - "x": 19.5123, - "y": 142.6574 - }, - { - "l": "25.0", - "x": 19.5957, - "y": 142.6975 - }, - { - "l": "25.0", - "x": 19.679, - "y": 142.7341 - }, - { - "l": "25.0", - "x": 19.7623, - "y": 142.7752 - }, - { - "l": "25.0", - "x": 19.8457, - "y": 142.8152 - }, - { - "l": "25.0", - "x": 19.929, - "y": 142.8519 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 0.0, - "y": 49.4526 - }, - { - "l": "50.0", - "x": 0.0192, - "y": 49.9974 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 50.5422 - }, - { - "l": "50.0", - "x": 0.0575, - "y": 51.087 - }, - { - "l": "50.0", - "x": 0.0767, - "y": 51.6318 - }, - { - "l": "50.0", - "x": 0.0958, - "y": 52.1297 - }, - { - "l": "50.0", - "x": 0.115, - "y": 52.6076 - }, - { - "l": "50.0", - "x": 0.1342, - "y": 53.0798 - }, - { - "l": "50.0", - "x": 0.1533, - "y": 53.5521 - }, - { - "l": "50.0", - "x": 0.1725, - "y": 54.0342 - }, - { - "l": "50.0", - "x": 0.1916, - "y": 54.5514 - }, - { - "l": "50.0", - "x": 0.2108, - "y": 55.0737 - }, - { - "l": "50.0", - "x": 0.23, - "y": 55.5978 - }, - { - "l": "50.0", - "x": 0.2491, - "y": 56.1199 - }, - { - "l": "50.0", - "x": 0.2683, - "y": 56.6351 - }, - { - "l": "50.0", - "x": 0.2875, - "y": 57.1418 - }, - { - "l": "50.0", - "x": 0.3066, - "y": 57.637 - }, - { - "l": "50.0", - "x": 0.3258, - "y": 58.1178 - }, - { - "l": "50.0", - "x": 0.345, - "y": 58.5607 - }, - { - "l": "50.0", - "x": 0.3641, - "y": 58.9824 - }, - { - "l": "50.0", - "x": 0.3833, - "y": 59.3937 - }, - { - "l": "50.0", - "x": 0.4025, - "y": 59.7999 - }, - { - "l": "50.0", - "x": 0.4216, - "y": 60.2083 - }, - { - "l": "50.0", - "x": 0.4408, - "y": 60.6433 - }, - { - "l": "50.0", - "x": 0.46, - "y": 61.0783 - }, - { - "l": "50.0", - "x": 0.4791, - "y": 61.5106 - }, - { - "l": "50.0", - "x": 0.4983, - "y": 61.9373 - }, - { - "l": "50.0", - "x": 0.5175, - "y": 62.3528 - }, - { - "l": "50.0", - "x": 0.5366, - "y": 62.7576 - }, - { - "l": "50.0", - "x": 0.5558, - "y": 63.1499 - }, - { - "l": "50.0", - "x": 0.5749, - "y": 63.5278 - }, - { - "l": "50.0", - "x": 0.5941, - "y": 63.8748 - }, - { - "l": "50.0", - "x": 0.6133, - "y": 64.2019 - }, - { - "l": "50.0", - "x": 0.6324, - "y": 64.5186 - }, - { - "l": "50.0", - "x": 0.6516, - "y": 64.8292 - }, - { - "l": "50.0", - "x": 0.6708, - "y": 65.1388 - }, - { - "l": "50.0", - "x": 0.6899, - "y": 65.4687 - }, - { - "l": "50.0", - "x": 0.7091, - "y": 65.7978 - }, - { - "l": "50.0", - "x": 0.7283, - "y": 66.124 - }, - { - "l": "50.0", - "x": 0.7474, - "y": 66.4453 - }, - { - "l": "50.0", - "x": 0.7666, - "y": 66.758 - }, - { - "l": "50.0", - "x": 0.7858, - "y": 67.0621 - }, - { - "l": "50.0", - "x": 0.8049, - "y": 67.3568 - }, - { - "l": "50.0", - "x": 0.8241, - "y": 67.6406 - }, - { - "l": "50.0", - "x": 0.8433, - "y": 67.9022 - }, - { - "l": "50.0", - "x": 0.8624, - "y": 68.1483 - }, - { - "l": "50.0", - "x": 0.8816, - "y": 68.3867 - }, - { - "l": "50.0", - "x": 0.9008, - "y": 68.621 - }, - { - "l": "50.0", - "x": 0.9199, - "y": 68.8543 - }, - { - "l": "50.0", - "x": 0.9391, - "y": 69.1043 - }, - { - "l": "50.0", - "x": 0.9582, - "y": 69.3545 - }, - { - "l": "50.0", - "x": 0.9774, - "y": 69.6034 - }, - { - "l": "50.0", - "x": 0.9966, - "y": 69.8497 - }, - { - "l": "50.0", - "x": 1.0157, - "y": 70.0908 - }, - { - "l": "50.0", - "x": 1.0349, - "y": 70.3264 - }, - { - "l": "50.0", - "x": 1.0541, - "y": 70.5558 - }, - { - "l": "50.0", - "x": 1.0732, - "y": 70.7779 - }, - { - "l": "50.0", - "x": 1.0924, - "y": 70.9842 - }, - { - "l": "50.0", - "x": 1.1116, - "y": 71.1788 - }, - { - "l": "50.0", - "x": 1.1307, - "y": 71.3685 - }, - { - "l": "50.0", - "x": 1.1499, - "y": 71.5557 - }, - { - "l": "50.0", - "x": 1.1691, - "y": 71.7433 - }, - { - "l": "50.0", - "x": 1.1882, - "y": 71.9446 - }, - { - "l": "50.0", - "x": 1.2074, - "y": 72.1477 - }, - { - "l": "50.0", - "x": 1.2266, - "y": 72.3508 - }, - { - "l": "50.0", - "x": 1.2457, - "y": 72.5528 - }, - { - "l": "50.0", - "x": 1.2649, - "y": 72.752 - }, - { - "l": "50.0", - "x": 1.2841, - "y": 72.9478 - }, - { - "l": "50.0", - "x": 1.3032, - "y": 73.1393 - }, - { - "l": "50.0", - "x": 1.3224, - "y": 73.3256 - }, - { - "l": "50.0", - "x": 1.3415, - "y": 73.4996 - }, - { - "l": "50.0", - "x": 1.3607, - "y": 73.6639 - }, - { - "l": "50.0", - "x": 1.3799, - "y": 73.8246 - }, - { - "l": "50.0", - "x": 1.399, - "y": 73.9838 - }, - { - "l": "50.0", - "x": 1.4182, - "y": 74.1436 - }, - { - "l": "50.0", - "x": 1.4374, - "y": 74.3151 - }, - { - "l": "50.0", - "x": 1.4565, - "y": 74.4892 - }, - { - "l": "50.0", - "x": 1.4757, - "y": 74.6637 - }, - { - "l": "50.0", - "x": 1.4949, - "y": 74.8376 - }, - { - "l": "50.0", - "x": 1.514, - "y": 75.0096 - }, - { - "l": "50.0", - "x": 1.5332, - "y": 75.1788 - }, - { - "l": "50.0", - "x": 1.5524, - "y": 75.3448 - }, - { - "l": "50.0", - "x": 1.5715, - "y": 75.5065 - }, - { - "l": "50.0", - "x": 1.5907, - "y": 75.6583 - }, - { - "l": "50.0", - "x": 1.6099, - "y": 75.8015 - }, - { - "l": "50.0", - "x": 1.629, - "y": 75.9418 - }, - { - "l": "50.0", - "x": 1.6482, - "y": 76.0811 - }, - { - "l": "50.0", - "x": 1.6674, - "y": 76.2213 - }, - { - "l": "50.0", - "x": 1.6865, - "y": 76.3718 - }, - { - "l": "50.0", - "x": 1.7057, - "y": 76.5253 - }, - { - "l": "50.0", - "x": 1.7248, - "y": 76.6799 - }, - { - "l": "50.0", - "x": 1.744, - "y": 76.8345 - }, - { - "l": "50.0", - "x": 1.7632, - "y": 76.9883 - }, - { - "l": "50.0", - "x": 1.7823, - "y": 77.1403 - }, - { - "l": "50.0", - "x": 1.8015, - "y": 77.29 - }, - { - "l": "50.0", - "x": 1.8207, - "y": 77.4366 - }, - { - "l": "50.0", - "x": 1.8398, - "y": 77.575 - }, - { - "l": "50.0", - "x": 1.859, - "y": 77.7057 - }, - { - "l": "50.0", - "x": 1.8782, - "y": 77.8342 - }, - { - "l": "50.0", - "x": 1.8973, - "y": 77.9623 - }, - { - "l": "50.0", - "x": 1.9165, - "y": 78.0916 - }, - { - "l": "50.0", - "x": 1.9357, - "y": 78.2302 - }, - { - "l": "50.0", - "x": 1.9548, - "y": 78.3725 - }, - { - "l": "50.0", - "x": 1.974, - "y": 78.5162 - }, - { - "l": "50.0", - "x": 1.9932, - "y": 78.6603 - }, - { - "l": "50.0", - "x": 2.0123, - "y": 78.8039 - }, - { - "l": "50.0", - "x": 2.0957, - "y": 79.3986 - }, - { - "l": "50.0", - "x": 2.179, - "y": 79.9334 - }, - { - "l": "50.0", - "x": 2.2623, - "y": 80.525 - }, - { - "l": "50.0", - "x": 2.3457, - "y": 81.0933 - }, - { - "l": "50.0", - "x": 2.429, - "y": 81.6078 - }, - { - "l": "50.0", - "x": 2.5123, - "y": 82.1802 - }, - { - "l": "50.0", - "x": 2.5957, - "y": 82.7331 - }, - { - "l": "50.0", - "x": 2.679, - "y": 83.2349 - }, - { - "l": "50.0", - "x": 2.7623, - "y": 83.7938 - }, - { - "l": "50.0", - "x": 2.8457, - "y": 84.3333 - }, - { - "l": "50.0", - "x": 2.929, - "y": 84.8227 - }, - { - "l": "50.0", - "x": 3.0123, - "y": 85.3682 - }, - { - "l": "50.0", - "x": 3.0957, - "y": 85.896 - }, - { - "l": "50.0", - "x": 3.179, - "y": 86.3767 - }, - { - "l": "50.0", - "x": 3.2623, - "y": 86.9149 - }, - { - "l": "50.0", - "x": 3.3457, - "y": 87.4381 - }, - { - "l": "50.0", - "x": 3.429, - "y": 87.9169 - }, - { - "l": "50.0", - "x": 3.5123, - "y": 88.4546 - }, - { - "l": "50.0", - "x": 3.5957, - "y": 88.9787 - }, - { - "l": "50.0", - "x": 3.679, - "y": 89.4592 - }, - { - "l": "50.0", - "x": 3.7623, - "y": 89.9995 - }, - { - "l": "50.0", - "x": 3.8457, - "y": 90.5263 - }, - { - "l": "50.0", - "x": 3.929, - "y": 91.0089 - }, - { - "l": "50.0", - "x": 4.0123, - "y": 91.5508 - }, - { - "l": "50.0", - "x": 4.0957, - "y": 92.0786 - }, - { - "l": "50.0", - "x": 4.179, - "y": 92.5618 - }, - { - "l": "50.0", - "x": 4.2623, - "y": 93.1045 - }, - { - "l": "50.0", - "x": 4.3457, - "y": 93.6334 - }, - { - "l": "50.0", - "x": 4.429, - "y": 94.1182 - }, - { - "l": "50.0", - "x": 4.5123, - "y": 94.6631 - }, - { - "l": "50.0", - "x": 4.5957, - "y": 95.1941 - }, - { - "l": "50.0", - "x": 4.679, - "y": 95.6803 - }, - { - "l": "50.0", - "x": 4.7623, - "y": 96.2259 - }, - { - "l": "50.0", - "x": 4.8457, - "y": 96.7564 - }, - { - "l": "50.0", - "x": 4.929, - "y": 97.2407 - }, - { - "l": "50.0", - "x": 5.0123, - "y": 97.7828 - }, - { - "l": "50.0", - "x": 5.0957, - "y": 98.3087 - }, - { - "l": "50.0", - "x": 5.179, - "y": 98.7883 - }, - { - "l": "50.0", - "x": 5.2623, - "y": 99.3248 - }, - { - "l": "50.0", - "x": 5.3457, - "y": 99.8456 - }, - { - "l": "50.0", - "x": 5.429, - "y": 100.3205 - }, - { - "l": "50.0", - "x": 5.5123, - "y": 100.852 - }, - { - "l": "50.0", - "x": 5.5957, - "y": 101.3674 - }, - { - "l": "50.0", - "x": 5.679, - "y": 101.8371 - }, - { - "l": "50.0", - "x": 5.7623, - "y": 102.3622 - }, - { - "l": "50.0", - "x": 5.8457, - "y": 102.8712 - }, - { - "l": "50.0", - "x": 5.929, - "y": 103.3346 - }, - { - "l": "50.0", - "x": 6.0123, - "y": 103.8528 - }, - { - "l": "50.0", - "x": 6.0957, - "y": 104.3552 - }, - { - "l": "50.0", - "x": 6.179, - "y": 104.8133 - }, - { - "l": "50.0", - "x": 6.2623, - "y": 105.326 - }, - { - "l": "50.0", - "x": 6.3457, - "y": 105.8237 - }, - { - "l": "50.0", - "x": 6.429, - "y": 106.2779 - }, - { - "l": "50.0", - "x": 6.5123, - "y": 106.7867 - }, - { - "l": "50.0", - "x": 6.5957, - "y": 107.2811 - }, - { - "l": "50.0", - "x": 6.679, - "y": 107.733 - }, - { - "l": "50.0", - "x": 6.7623, - "y": 108.2397 - }, - { - "l": "50.0", - "x": 6.8457, - "y": 108.733 - }, - { - "l": "50.0", - "x": 6.929, - "y": 109.1841 - }, - { - "l": "50.0", - "x": 7.0123, - "y": 109.6901 - }, - { - "l": "50.0", - "x": 7.0957, - "y": 110.1823 - }, - { - "l": "50.0", - "x": 7.179, - "y": 110.6323 - }, - { - "l": "50.0", - "x": 7.2623, - "y": 111.137 - }, - { - "l": "50.0", - "x": 7.3457, - "y": 111.6274 - }, - { - "l": "50.0", - "x": 7.429, - "y": 112.075 - }, - { - "l": "50.0", - "x": 7.5123, - "y": 112.5762 - }, - { - "l": "50.0", - "x": 7.5957, - "y": 113.0621 - }, - { - "l": "50.0", - "x": 7.679, - "y": 113.5052 - }, - { - "l": "50.0", - "x": 7.7623, - "y": 114.0009 - }, - { - "l": "50.0", - "x": 7.8457, - "y": 114.4819 - }, - { - "l": "50.0", - "x": 7.929, - "y": 114.9212 - }, - { - "l": "50.0", - "x": 8.0123, - "y": 115.4136 - }, - { - "l": "50.0", - "x": 8.0957, - "y": 115.8926 - }, - { - "l": "50.0", - "x": 8.179, - "y": 116.3308 - }, - { - "l": "50.0", - "x": 8.2623, - "y": 116.8226 - }, - { - "l": "50.0", - "x": 8.3457, - "y": 117.3014 - }, - { - "l": "50.0", - "x": 8.429, - "y": 117.7396 - }, - { - "l": "50.0", - "x": 8.5123, - "y": 118.231 - }, - { - "l": "50.0", - "x": 8.5957, - "y": 118.7091 - }, - { - "l": "50.0", - "x": 8.679, - "y": 119.1459 - }, - { - "l": "50.0", - "x": 8.7623, - "y": 119.6354 - }, - { - "l": "50.0", - "x": 8.8457, - "y": 120.1112 - }, - { - "l": "50.0", - "x": 8.929, - "y": 120.5457 - }, - { - "l": "50.0", - "x": 9.0123, - "y": 121.0324 - }, - { - "l": "50.0", - "x": 9.0957, - "y": 121.5054 - }, - { - "l": "50.0", - "x": 9.179, - "y": 121.9373 - }, - { - "l": "50.0", - "x": 9.2623, - "y": 122.4214 - }, - { - "l": "50.0", - "x": 9.3457, - "y": 122.8916 - }, - { - "l": "50.0", - "x": 9.429, - "y": 123.321 - }, - { - "l": "50.0", - "x": 9.5123, - "y": 123.802 - }, - { - "l": "50.0", - "x": 9.5957, - "y": 124.2694 - }, - { - "l": "50.0", - "x": 9.679, - "y": 124.6963 - }, - { - "l": "50.0", - "x": 9.7623, - "y": 125.1748 - }, - { - "l": "50.0", - "x": 9.8457, - "y": 125.64 - }, - { - "l": "50.0", - "x": 9.929, - "y": 126.0652 - }, - { - "l": "50.0", - "x": 10.0123, - "y": 126.542 - }, - { - "l": "50.0", - "x": 10.0957, - "y": 127.0052 - }, - { - "l": "50.0", - "x": 10.179, - "y": 127.428 - }, - { - "l": "50.0", - "x": 10.2623, - "y": 127.9014 - }, - { - "l": "50.0", - "x": 10.3457, - "y": 128.3609 - }, - { - "l": "50.0", - "x": 10.429, - "y": 128.7798 - }, - { - "l": "50.0", - "x": 10.5123, - "y": 129.2481 - }, - { - "l": "50.0", - "x": 10.5957, - "y": 129.702 - }, - { - "l": "50.0", - "x": 10.679, - "y": 130.1148 - }, - { - "l": "50.0", - "x": 10.7623, - "y": 130.5751 - }, - { - "l": "50.0", - "x": 10.8457, - "y": 131.0199 - }, - { - "l": "50.0", - "x": 10.929, - "y": 131.4234 - }, - { - "l": "50.0", - "x": 11.0123, - "y": 131.8722 - }, - { - "l": "50.0", - "x": 11.0957, - "y": 132.3045 - }, - { - "l": "50.0", - "x": 11.179, - "y": 132.6951 - }, - { - "l": "50.0", - "x": 11.2623, - "y": 133.1272 - }, - { - "l": "50.0", - "x": 11.3457, - "y": 133.542 - }, - { - "l": "50.0", - "x": 11.429, - "y": 133.9146 - }, - { - "l": "50.0", - "x": 11.5123, - "y": 134.3251 - }, - { - "l": "50.0", - "x": 11.5957, - "y": 134.7167 - }, - { - "l": "50.0", - "x": 11.679, - "y": 135.0672 - }, - { - "l": "50.0", - "x": 11.7623, - "y": 135.4522 - }, - { - "l": "50.0", - "x": 11.8457, - "y": 135.8182 - }, - { - "l": "50.0", - "x": 11.929, - "y": 136.1449 - }, - { - "l": "50.0", - "x": 12.0123, - "y": 136.5029 - }, - { - "l": "50.0", - "x": 12.0957, - "y": 136.8423 - }, - { - "l": "50.0", - "x": 12.179, - "y": 137.1444 - }, - { - "l": "50.0", - "x": 12.2623, - "y": 137.4755 - }, - { - "l": "50.0", - "x": 12.3457, - "y": 137.7885 - }, - { - "l": "50.0", - "x": 12.429, - "y": 138.0671 - }, - { - "l": "50.0", - "x": 12.5123, - "y": 138.3714 - }, - { - "l": "50.0", - "x": 12.5957, - "y": 138.659 - }, - { - "l": "50.0", - "x": 12.679, - "y": 138.9158 - }, - { - "l": "50.0", - "x": 12.7623, - "y": 139.1958 - }, - { - "l": "50.0", - "x": 12.8457, - "y": 139.4604 - }, - { - "l": "50.0", - "x": 12.929, - "y": 139.6967 - }, - { - "l": "50.0", - "x": 13.0123, - "y": 139.9546 - }, - { - "l": "50.0", - "x": 13.0957, - "y": 140.1982 - }, - { - "l": "50.0", - "x": 13.179, - "y": 140.4151 - }, - { - "l": "50.0", - "x": 13.2623, - "y": 140.6519 - }, - { - "l": "50.0", - "x": 13.3457, - "y": 140.8755 - }, - { - "l": "50.0", - "x": 13.429, - "y": 141.0737 - }, - { - "l": "50.0", - "x": 13.5123, - "y": 141.2898 - }, - { - "l": "50.0", - "x": 13.5957, - "y": 141.4939 - }, - { - "l": "50.0", - "x": 13.679, - "y": 141.6742 - }, - { - "l": "50.0", - "x": 13.7623, - "y": 141.8704 - }, - { - "l": "50.0", - "x": 13.8457, - "y": 142.056 - }, - { - "l": "50.0", - "x": 13.929, - "y": 142.2198 - }, - { - "l": "50.0", - "x": 14.0123, - "y": 142.3976 - }, - { - "l": "50.0", - "x": 14.0957, - "y": 142.5649 - }, - { - "l": "50.0", - "x": 14.179, - "y": 142.7125 - }, - { - "l": "50.0", - "x": 14.2623, - "y": 142.8725 - }, - { - "l": "50.0", - "x": 14.3457, - "y": 143.0227 - }, - { - "l": "50.0", - "x": 14.429, - "y": 143.1549 - }, - { - "l": "50.0", - "x": 14.5123, - "y": 143.298 - }, - { - "l": "50.0", - "x": 14.5957, - "y": 143.4317 - }, - { - "l": "50.0", - "x": 14.679, - "y": 143.5505 - }, - { - "l": "50.0", - "x": 14.7623, - "y": 143.6781 - }, - { - "l": "50.0", - "x": 14.8457, - "y": 143.7975 - }, - { - "l": "50.0", - "x": 14.929, - "y": 143.9023 - }, - { - "l": "50.0", - "x": 15.0123, - "y": 144.0144 - }, - { - "l": "50.0", - "x": 15.0957, - "y": 144.1208 - }, - { - "l": "50.0", - "x": 15.179, - "y": 144.213 - }, - { - "l": "50.0", - "x": 15.2623, - "y": 144.3125 - }, - { - "l": "50.0", - "x": 15.3457, - "y": 144.4048 - }, - { - "l": "50.0", - "x": 15.429, - "y": 144.4844 - }, - { - "l": "50.0", - "x": 15.5123, - "y": 144.5709 - }, - { - "l": "50.0", - "x": 15.5957, - "y": 144.6539 - }, - { - "l": "50.0", - "x": 15.679, - "y": 144.7247 - }, - { - "l": "50.0", - "x": 15.7623, - "y": 144.8011 - }, - { - "l": "50.0", - "x": 15.8457, - "y": 144.8721 - }, - { - "l": "50.0", - "x": 15.929, - "y": 144.9348 - }, - { - "l": "50.0", - "x": 16.0123, - "y": 145.0025 - }, - { - "l": "50.0", - "x": 16.0957, - "y": 145.0655 - }, - { - "l": "50.0", - "x": 16.179, - "y": 145.121 - }, - { - "l": "50.0", - "x": 16.2623, - "y": 145.1808 - }, - { - "l": "50.0", - "x": 16.3457, - "y": 145.2373 - }, - { - "l": "50.0", - "x": 16.429, - "y": 145.2865 - }, - { - "l": "50.0", - "x": 16.5123, - "y": 145.3392 - }, - { - "l": "50.0", - "x": 16.5957, - "y": 145.3897 - }, - { - "l": "50.0", - "x": 16.679, - "y": 145.4341 - }, - { - "l": "50.0", - "x": 16.7623, - "y": 145.4819 - }, - { - "l": "50.0", - "x": 16.8457, - "y": 145.527 - }, - { - "l": "50.0", - "x": 16.929, - "y": 145.5672 - }, - { - "l": "50.0", - "x": 17.0123, - "y": 145.6112 - }, - { - "l": "50.0", - "x": 17.0957, - "y": 145.6532 - }, - { - "l": "50.0", - "x": 17.179, - "y": 145.6911 - }, - { - "l": "50.0", - "x": 17.2623, - "y": 145.733 - }, - { - "l": "50.0", - "x": 17.3457, - "y": 145.7734 - }, - { - "l": "50.0", - "x": 17.429, - "y": 145.8101 - }, - { - "l": "50.0", - "x": 17.5123, - "y": 145.8509 - }, - { - "l": "50.0", - "x": 17.5957, - "y": 145.8905 - }, - { - "l": "50.0", - "x": 17.679, - "y": 145.9267 - }, - { - "l": "50.0", - "x": 17.7623, - "y": 145.9673 - }, - { - "l": "50.0", - "x": 17.8457, - "y": 146.0068 - }, - { - "l": "50.0", - "x": 17.929, - "y": 146.043 - }, - { - "l": "50.0", - "x": 18.0123, - "y": 146.0839 - }, - { - "l": "50.0", - "x": 18.0957, - "y": 146.124 - }, - { - "l": "50.0", - "x": 18.179, - "y": 146.1608 - }, - { - "l": "50.0", - "x": 18.2623, - "y": 146.2021 - }, - { - "l": "50.0", - "x": 18.3457, - "y": 146.2429 - }, - { - "l": "50.0", - "x": 18.429, - "y": 146.2804 - }, - { - "l": "50.0", - "x": 18.5123, - "y": 146.3227 - }, - { - "l": "50.0", - "x": 18.5957, - "y": 146.3643 - }, - { - "l": "50.0", - "x": 18.679, - "y": 146.4027 - }, - { - "l": "50.0", - "x": 18.7623, - "y": 146.4458 - }, - { - "l": "50.0", - "x": 18.8457, - "y": 146.4879 - }, - { - "l": "50.0", - "x": 18.929, - "y": 146.5264 - }, - { - "l": "50.0", - "x": 19.0123, - "y": 146.5696 - }, - { - "l": "50.0", - "x": 19.0957, - "y": 146.612 - }, - { - "l": "50.0", - "x": 19.179, - "y": 146.6504 - }, - { - "l": "50.0", - "x": 19.2623, - "y": 146.6913 - }, - { - "l": "50.0", - "x": 19.3457, - "y": 146.7311 - }, - { - "l": "50.0", - "x": 19.429, - "y": 146.7675 - }, - { - "l": "50.0", - "x": 19.5123, - "y": 146.8083 - }, - { - "l": "50.0", - "x": 19.5957, - "y": 146.8482 - }, - { - "l": "50.0", - "x": 19.679, - "y": 146.8846 - }, - { - "l": "50.0", - "x": 19.7623, - "y": 146.9254 - }, - { - "l": "50.0", - "x": 19.8457, - "y": 146.9652 - }, - { - "l": "50.0", - "x": 19.929, - "y": 147.0017 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 0.0, - "y": 51.008 - }, - { - "l": "75.0", - "x": 0.0192, - "y": 51.5675 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 52.1271 - }, - { - "l": "75.0", - "x": 0.0575, - "y": 52.6865 - }, - { - "l": "75.0", - "x": 0.0767, - "y": 53.246 - }, - { - "l": "75.0", - "x": 0.0958, - "y": 53.7572 - }, - { - "l": "75.0", - "x": 0.115, - "y": 54.2479 - }, - { - "l": "75.0", - "x": 0.1342, - "y": 54.7327 - }, - { - "l": "75.0", - "x": 0.1533, - "y": 55.2175 - }, - { - "l": "75.0", - "x": 0.1725, - "y": 55.7124 - }, - { - "l": "75.0", - "x": 0.1916, - "y": 56.2431 - }, - { - "l": "75.0", - "x": 0.2108, - "y": 56.7792 - }, - { - "l": "75.0", - "x": 0.23, - "y": 57.3169 - }, - { - "l": "75.0", - "x": 0.2491, - "y": 57.8527 - }, - { - "l": "75.0", - "x": 0.2683, - "y": 58.3813 - }, - { - "l": "75.0", - "x": 0.2875, - "y": 58.9011 - }, - { - "l": "75.0", - "x": 0.3066, - "y": 59.409 - }, - { - "l": "75.0", - "x": 0.3258, - "y": 59.9022 - }, - { - "l": "75.0", - "x": 0.345, - "y": 60.3564 - }, - { - "l": "75.0", - "x": 0.3641, - "y": 60.7889 - }, - { - "l": "75.0", - "x": 0.3833, - "y": 61.2107 - }, - { - "l": "75.0", - "x": 0.4025, - "y": 61.6272 - }, - { - "l": "75.0", - "x": 0.4216, - "y": 62.0459 - }, - { - "l": "75.0", - "x": 0.4408, - "y": 62.4918 - }, - { - "l": "75.0", - "x": 0.46, - "y": 62.9378 - }, - { - "l": "75.0", - "x": 0.4791, - "y": 63.3809 - }, - { - "l": "75.0", - "x": 0.4983, - "y": 63.8182 - }, - { - "l": "75.0", - "x": 0.5175, - "y": 64.2441 - }, - { - "l": "75.0", - "x": 0.5366, - "y": 64.6589 - }, - { - "l": "75.0", - "x": 0.5558, - "y": 65.0609 - }, - { - "l": "75.0", - "x": 0.5749, - "y": 65.4482 - }, - { - "l": "75.0", - "x": 0.5941, - "y": 65.8037 - }, - { - "l": "75.0", - "x": 0.6133, - "y": 66.1388 - }, - { - "l": "75.0", - "x": 0.6324, - "y": 66.4633 - }, - { - "l": "75.0", - "x": 0.6516, - "y": 66.7815 - }, - { - "l": "75.0", - "x": 0.6708, - "y": 67.0987 - }, - { - "l": "75.0", - "x": 0.6899, - "y": 67.4367 - }, - { - "l": "75.0", - "x": 0.7091, - "y": 67.7738 - }, - { - "l": "75.0", - "x": 0.7283, - "y": 68.1079 - }, - { - "l": "75.0", - "x": 0.7474, - "y": 68.437 - }, - { - "l": "75.0", - "x": 0.7666, - "y": 68.7573 - }, - { - "l": "75.0", - "x": 0.7858, - "y": 69.0688 - }, - { - "l": "75.0", - "x": 0.8049, - "y": 69.3706 - }, - { - "l": "75.0", - "x": 0.8241, - "y": 69.6613 - }, - { - "l": "75.0", - "x": 0.8433, - "y": 69.9292 - }, - { - "l": "75.0", - "x": 0.8624, - "y": 70.1813 - }, - { - "l": "75.0", - "x": 0.8816, - "y": 70.4255 - }, - { - "l": "75.0", - "x": 0.9008, - "y": 70.6655 - }, - { - "l": "75.0", - "x": 0.9199, - "y": 70.9045 - }, - { - "l": "75.0", - "x": 0.9391, - "y": 71.1606 - }, - { - "l": "75.0", - "x": 0.9582, - "y": 71.4169 - }, - { - "l": "75.0", - "x": 0.9774, - "y": 71.6719 - }, - { - "l": "75.0", - "x": 0.9966, - "y": 71.9242 - }, - { - "l": "75.0", - "x": 1.0157, - "y": 72.1712 - }, - { - "l": "75.0", - "x": 1.0349, - "y": 72.4126 - }, - { - "l": "75.0", - "x": 1.0541, - "y": 72.6477 - }, - { - "l": "75.0", - "x": 1.0732, - "y": 72.8754 - }, - { - "l": "75.0", - "x": 1.0924, - "y": 73.0868 - }, - { - "l": "75.0", - "x": 1.1116, - "y": 73.2862 - }, - { - "l": "75.0", - "x": 1.1307, - "y": 73.4806 - }, - { - "l": "75.0", - "x": 1.1499, - "y": 73.6726 - }, - { - "l": "75.0", - "x": 1.1691, - "y": 73.8649 - }, - { - "l": "75.0", - "x": 1.1882, - "y": 74.0712 - }, - { - "l": "75.0", - "x": 1.2074, - "y": 74.2795 - }, - { - "l": "75.0", - "x": 1.2266, - "y": 74.4878 - }, - { - "l": "75.0", - "x": 1.2457, - "y": 74.695 - }, - { - "l": "75.0", - "x": 1.2649, - "y": 74.8993 - }, - { - "l": "75.0", - "x": 1.2841, - "y": 75.1002 - }, - { - "l": "75.0", - "x": 1.3032, - "y": 75.2967 - }, - { - "l": "75.0", - "x": 1.3224, - "y": 75.4878 - }, - { - "l": "75.0", - "x": 1.3415, - "y": 75.6664 - }, - { - "l": "75.0", - "x": 1.3607, - "y": 75.835 - }, - { - "l": "75.0", - "x": 1.3799, - "y": 75.9999 - }, - { - "l": "75.0", - "x": 1.399, - "y": 76.1633 - }, - { - "l": "75.0", - "x": 1.4182, - "y": 76.3274 - }, - { - "l": "75.0", - "x": 1.4374, - "y": 76.5036 - }, - { - "l": "75.0", - "x": 1.4565, - "y": 76.6823 - }, - { - "l": "75.0", - "x": 1.4757, - "y": 76.8615 - }, - { - "l": "75.0", - "x": 1.4949, - "y": 77.0402 - }, - { - "l": "75.0", - "x": 1.514, - "y": 77.2169 - }, - { - "l": "75.0", - "x": 1.5332, - "y": 77.3908 - }, - { - "l": "75.0", - "x": 1.5524, - "y": 77.5613 - }, - { - "l": "75.0", - "x": 1.5715, - "y": 77.7276 - }, - { - "l": "75.0", - "x": 1.5907, - "y": 77.8837 - }, - { - "l": "75.0", - "x": 1.6099, - "y": 78.0308 - }, - { - "l": "75.0", - "x": 1.629, - "y": 78.1751 - }, - { - "l": "75.0", - "x": 1.6482, - "y": 78.3184 - }, - { - "l": "75.0", - "x": 1.6674, - "y": 78.4626 - }, - { - "l": "75.0", - "x": 1.6865, - "y": 78.6174 - }, - { - "l": "75.0", - "x": 1.7057, - "y": 78.7754 - }, - { - "l": "75.0", - "x": 1.7248, - "y": 78.9344 - }, - { - "l": "75.0", - "x": 1.744, - "y": 79.0936 - }, - { - "l": "75.0", - "x": 1.7632, - "y": 79.2519 - }, - { - "l": "75.0", - "x": 1.7823, - "y": 79.4084 - }, - { - "l": "75.0", - "x": 1.8015, - "y": 79.5626 - }, - { - "l": "75.0", - "x": 1.8207, - "y": 79.7135 - }, - { - "l": "75.0", - "x": 1.8398, - "y": 79.8561 - }, - { - "l": "75.0", - "x": 1.859, - "y": 79.9908 - }, - { - "l": "75.0", - "x": 1.8782, - "y": 80.1232 - }, - { - "l": "75.0", - "x": 1.8973, - "y": 80.2552 - }, - { - "l": "75.0", - "x": 1.9165, - "y": 80.3885 - }, - { - "l": "75.0", - "x": 1.9357, - "y": 80.5314 - }, - { - "l": "75.0", - "x": 1.9548, - "y": 80.6781 - }, - { - "l": "75.0", - "x": 1.974, - "y": 80.8262 - }, - { - "l": "75.0", - "x": 1.9932, - "y": 80.9749 - }, - { - "l": "75.0", - "x": 2.0123, - "y": 81.123 - }, - { - "l": "75.0", - "x": 2.0957, - "y": 81.7368 - }, - { - "l": "75.0", - "x": 2.179, - "y": 82.2891 - }, - { - "l": "75.0", - "x": 2.2623, - "y": 82.9004 - }, - { - "l": "75.0", - "x": 2.3457, - "y": 83.488 - }, - { - "l": "75.0", - "x": 2.429, - "y": 84.0202 - }, - { - "l": "75.0", - "x": 2.5123, - "y": 84.6127 - }, - { - "l": "75.0", - "x": 2.5957, - "y": 85.1851 - }, - { - "l": "75.0", - "x": 2.679, - "y": 85.7049 - }, - { - "l": "75.0", - "x": 2.7623, - "y": 86.284 - }, - { - "l": "75.0", - "x": 2.8457, - "y": 86.8432 - }, - { - "l": "75.0", - "x": 2.929, - "y": 87.3507 - }, - { - "l": "75.0", - "x": 3.0123, - "y": 87.9165 - }, - { - "l": "75.0", - "x": 3.0957, - "y": 88.464 - }, - { - "l": "75.0", - "x": 3.179, - "y": 88.9628 - }, - { - "l": "75.0", - "x": 3.2623, - "y": 89.5213 - }, - { - "l": "75.0", - "x": 3.3457, - "y": 90.0645 - }, - { - "l": "75.0", - "x": 3.429, - "y": 90.5616 - }, - { - "l": "75.0", - "x": 3.5123, - "y": 91.1199 - }, - { - "l": "75.0", - "x": 3.5957, - "y": 91.6642 - }, - { - "l": "75.0", - "x": 3.679, - "y": 92.1632 - }, - { - "l": "75.0", - "x": 3.7623, - "y": 92.7243 - }, - { - "l": "75.0", - "x": 3.8457, - "y": 93.2716 - }, - { - "l": "75.0", - "x": 3.929, - "y": 93.7728 - }, - { - "l": "75.0", - "x": 4.0123, - "y": 94.3358 - }, - { - "l": "75.0", - "x": 4.0957, - "y": 94.8841 - }, - { - "l": "75.0", - "x": 4.179, - "y": 95.3861 - }, - { - "l": "75.0", - "x": 4.2623, - "y": 95.9499 - }, - { - "l": "75.0", - "x": 4.3457, - "y": 96.4995 - }, - { - "l": "75.0", - "x": 4.429, - "y": 97.0031 - }, - { - "l": "75.0", - "x": 4.5123, - "y": 97.5693 - }, - { - "l": "75.0", - "x": 4.5957, - "y": 98.121 - }, - { - "l": "75.0", - "x": 4.679, - "y": 98.6261 - }, - { - "l": "75.0", - "x": 4.7623, - "y": 99.1929 - }, - { - "l": "75.0", - "x": 4.8457, - "y": 99.744 - }, - { - "l": "75.0", - "x": 4.929, - "y": 100.2472 - }, - { - "l": "75.0", - "x": 5.0123, - "y": 100.8103 - }, - { - "l": "75.0", - "x": 5.0957, - "y": 101.3566 - }, - { - "l": "75.0", - "x": 5.179, - "y": 101.8546 - }, - { - "l": "75.0", - "x": 5.2623, - "y": 102.4118 - }, - { - "l": "75.0", - "x": 5.3457, - "y": 102.9526 - }, - { - "l": "75.0", - "x": 5.429, - "y": 103.4457 - }, - { - "l": "75.0", - "x": 5.5123, - "y": 103.9975 - }, - { - "l": "75.0", - "x": 5.5957, - "y": 104.5326 - }, - { - "l": "75.0", - "x": 5.679, - "y": 105.0202 - }, - { - "l": "75.0", - "x": 5.7623, - "y": 105.5652 - }, - { - "l": "75.0", - "x": 5.8457, - "y": 106.0934 - }, - { - "l": "75.0", - "x": 5.929, - "y": 106.5744 - }, - { - "l": "75.0", - "x": 6.0123, - "y": 107.1121 - }, - { - "l": "75.0", - "x": 6.0957, - "y": 107.6334 - }, - { - "l": "75.0", - "x": 6.179, - "y": 108.1087 - }, - { - "l": "75.0", - "x": 6.2623, - "y": 108.6406 - }, - { - "l": "75.0", - "x": 6.3457, - "y": 109.1569 - }, - { - "l": "75.0", - "x": 6.429, - "y": 109.628 - }, - { - "l": "75.0", - "x": 6.5123, - "y": 110.1557 - }, - { - "l": "75.0", - "x": 6.5957, - "y": 110.6685 - }, - { - "l": "75.0", - "x": 6.679, - "y": 111.1371 - }, - { - "l": "75.0", - "x": 6.7623, - "y": 111.6626 - }, - { - "l": "75.0", - "x": 6.8457, - "y": 112.174 - }, - { - "l": "75.0", - "x": 6.929, - "y": 112.6417 - }, - { - "l": "75.0", - "x": 7.0123, - "y": 113.1663 - }, - { - "l": "75.0", - "x": 7.0957, - "y": 113.6766 - }, - { - "l": "75.0", - "x": 7.179, - "y": 114.143 - }, - { - "l": "75.0", - "x": 7.2623, - "y": 114.666 - }, - { - "l": "75.0", - "x": 7.3457, - "y": 115.1742 - }, - { - "l": "75.0", - "x": 7.429, - "y": 115.6381 - }, - { - "l": "75.0", - "x": 7.5123, - "y": 116.1573 - }, - { - "l": "75.0", - "x": 7.5957, - "y": 116.6608 - }, - { - "l": "75.0", - "x": 7.679, - "y": 117.1196 - }, - { - "l": "75.0", - "x": 7.7623, - "y": 117.633 - }, - { - "l": "75.0", - "x": 7.8457, - "y": 118.1311 - }, - { - "l": "75.0", - "x": 7.929, - "y": 118.5857 - }, - { - "l": "75.0", - "x": 8.0123, - "y": 119.0953 - }, - { - "l": "75.0", - "x": 8.0957, - "y": 119.5909 - }, - { - "l": "75.0", - "x": 8.179, - "y": 120.0442 - }, - { - "l": "75.0", - "x": 8.2623, - "y": 120.5528 - }, - { - "l": "75.0", - "x": 8.3457, - "y": 121.0478 - }, - { - "l": "75.0", - "x": 8.429, - "y": 121.5006 - }, - { - "l": "75.0", - "x": 8.5123, - "y": 122.0084 - }, - { - "l": "75.0", - "x": 8.5957, - "y": 122.5021 - }, - { - "l": "75.0", - "x": 8.679, - "y": 122.953 - }, - { - "l": "75.0", - "x": 8.7623, - "y": 123.4582 - }, - { - "l": "75.0", - "x": 8.8457, - "y": 123.949 - }, - { - "l": "75.0", - "x": 8.929, - "y": 124.3971 - }, - { - "l": "75.0", - "x": 9.0123, - "y": 124.8987 - }, - { - "l": "75.0", - "x": 9.0957, - "y": 125.386 - }, - { - "l": "75.0", - "x": 9.179, - "y": 125.8309 - }, - { - "l": "75.0", - "x": 9.2623, - "y": 126.3291 - }, - { - "l": "75.0", - "x": 9.3457, - "y": 126.8129 - }, - { - "l": "75.0", - "x": 9.429, - "y": 127.2544 - }, - { - "l": "75.0", - "x": 9.5123, - "y": 127.7487 - }, - { - "l": "75.0", - "x": 9.5957, - "y": 128.2288 - }, - { - "l": "75.0", - "x": 9.679, - "y": 128.667 - }, - { - "l": "75.0", - "x": 9.7623, - "y": 129.1578 - }, - { - "l": "75.0", - "x": 9.8457, - "y": 129.6348 - }, - { - "l": "75.0", - "x": 9.929, - "y": 130.0705 - }, - { - "l": "75.0", - "x": 10.0123, - "y": 130.5586 - }, - { - "l": "75.0", - "x": 10.0957, - "y": 131.0325 - }, - { - "l": "75.0", - "x": 10.179, - "y": 131.4649 - }, - { - "l": "75.0", - "x": 10.2623, - "y": 131.9486 - }, - { - "l": "75.0", - "x": 10.3457, - "y": 132.4177 - }, - { - "l": "75.0", - "x": 10.429, - "y": 132.8452 - }, - { - "l": "75.0", - "x": 10.5123, - "y": 133.3226 - }, - { - "l": "75.0", - "x": 10.5957, - "y": 133.7849 - }, - { - "l": "75.0", - "x": 10.679, - "y": 134.2052 - }, - { - "l": "75.0", - "x": 10.7623, - "y": 134.6733 - }, - { - "l": "75.0", - "x": 10.8457, - "y": 135.1255 - }, - { - "l": "75.0", - "x": 10.929, - "y": 135.5352 - }, - { - "l": "75.0", - "x": 11.0123, - "y": 135.9907 - }, - { - "l": "75.0", - "x": 11.0957, - "y": 136.4289 - }, - { - "l": "75.0", - "x": 11.179, - "y": 136.8247 - }, - { - "l": "75.0", - "x": 11.2623, - "y": 137.2621 - }, - { - "l": "75.0", - "x": 11.3457, - "y": 137.6818 - }, - { - "l": "75.0", - "x": 11.429, - "y": 138.0585 - }, - { - "l": "75.0", - "x": 11.5123, - "y": 138.4731 - }, - { - "l": "75.0", - "x": 11.5957, - "y": 138.8684 - }, - { - "l": "75.0", - "x": 11.679, - "y": 139.2219 - }, - { - "l": "75.0", - "x": 11.7623, - "y": 139.6099 - }, - { - "l": "75.0", - "x": 11.8457, - "y": 139.9785 - }, - { - "l": "75.0", - "x": 11.929, - "y": 140.3074 - }, - { - "l": "75.0", - "x": 12.0123, - "y": 140.6675 - }, - { - "l": "75.0", - "x": 12.0957, - "y": 141.0087 - }, - { - "l": "75.0", - "x": 12.179, - "y": 141.3122 - }, - { - "l": "75.0", - "x": 12.2623, - "y": 141.6447 - }, - { - "l": "75.0", - "x": 12.3457, - "y": 141.9588 - }, - { - "l": "75.0", - "x": 12.429, - "y": 142.2382 - }, - { - "l": "75.0", - "x": 12.5123, - "y": 142.5433 - }, - { - "l": "75.0", - "x": 12.5957, - "y": 142.8315 - }, - { - "l": "75.0", - "x": 12.679, - "y": 143.0887 - }, - { - "l": "75.0", - "x": 12.7623, - "y": 143.369 - }, - { - "l": "75.0", - "x": 12.8457, - "y": 143.6338 - }, - { - "l": "75.0", - "x": 12.929, - "y": 143.8702 - }, - { - "l": "75.0", - "x": 13.0123, - "y": 144.1281 - }, - { - "l": "75.0", - "x": 13.0957, - "y": 144.3717 - }, - { - "l": "75.0", - "x": 13.179, - "y": 144.5884 - }, - { - "l": "75.0", - "x": 13.2623, - "y": 144.8251 - }, - { - "l": "75.0", - "x": 13.3457, - "y": 145.0484 - }, - { - "l": "75.0", - "x": 13.429, - "y": 145.2464 - }, - { - "l": "75.0", - "x": 13.5123, - "y": 145.4621 - }, - { - "l": "75.0", - "x": 13.5957, - "y": 145.6659 - }, - { - "l": "75.0", - "x": 13.679, - "y": 145.8458 - }, - { - "l": "75.0", - "x": 13.7623, - "y": 146.0416 - }, - { - "l": "75.0", - "x": 13.8457, - "y": 146.2268 - }, - { - "l": "75.0", - "x": 13.929, - "y": 146.3901 - }, - { - "l": "75.0", - "x": 14.0123, - "y": 146.5674 - }, - { - "l": "75.0", - "x": 14.0957, - "y": 146.7343 - }, - { - "l": "75.0", - "x": 14.179, - "y": 146.8815 - }, - { - "l": "75.0", - "x": 14.2623, - "y": 147.041 - }, - { - "l": "75.0", - "x": 14.3457, - "y": 147.1907 - }, - { - "l": "75.0", - "x": 14.429, - "y": 147.3225 - }, - { - "l": "75.0", - "x": 14.5123, - "y": 147.4651 - }, - { - "l": "75.0", - "x": 14.5957, - "y": 147.5983 - }, - { - "l": "75.0", - "x": 14.679, - "y": 147.7167 - }, - { - "l": "75.0", - "x": 14.7623, - "y": 147.8438 - }, - { - "l": "75.0", - "x": 14.8457, - "y": 147.9627 - }, - { - "l": "75.0", - "x": 14.929, - "y": 148.0672 - }, - { - "l": "75.0", - "x": 15.0123, - "y": 148.1788 - }, - { - "l": "75.0", - "x": 15.0957, - "y": 148.2847 - }, - { - "l": "75.0", - "x": 15.179, - "y": 148.3766 - }, - { - "l": "75.0", - "x": 15.2623, - "y": 148.4756 - }, - { - "l": "75.0", - "x": 15.3457, - "y": 148.5676 - }, - { - "l": "75.0", - "x": 15.429, - "y": 148.6468 - }, - { - "l": "75.0", - "x": 15.5123, - "y": 148.7329 - }, - { - "l": "75.0", - "x": 15.5957, - "y": 148.8156 - }, - { - "l": "75.0", - "x": 15.679, - "y": 148.886 - }, - { - "l": "75.0", - "x": 15.7623, - "y": 148.9621 - }, - { - "l": "75.0", - "x": 15.8457, - "y": 149.0328 - }, - { - "l": "75.0", - "x": 15.929, - "y": 149.0952 - }, - { - "l": "75.0", - "x": 16.0123, - "y": 149.1626 - }, - { - "l": "75.0", - "x": 16.0957, - "y": 149.2253 - }, - { - "l": "75.0", - "x": 16.179, - "y": 149.2805 - }, - { - "l": "75.0", - "x": 16.2623, - "y": 149.3401 - }, - { - "l": "75.0", - "x": 16.3457, - "y": 149.3963 - }, - { - "l": "75.0", - "x": 16.429, - "y": 149.4453 - }, - { - "l": "75.0", - "x": 16.5123, - "y": 149.4978 - }, - { - "l": "75.0", - "x": 16.5957, - "y": 149.548 - }, - { - "l": "75.0", - "x": 16.679, - "y": 149.5922 - }, - { - "l": "75.0", - "x": 16.7623, - "y": 149.6398 - }, - { - "l": "75.0", - "x": 16.8457, - "y": 149.6846 - }, - { - "l": "75.0", - "x": 16.929, - "y": 149.7246 - }, - { - "l": "75.0", - "x": 17.0123, - "y": 149.7684 - }, - { - "l": "75.0", - "x": 17.0957, - "y": 149.8102 - }, - { - "l": "75.0", - "x": 17.179, - "y": 149.8479 - }, - { - "l": "75.0", - "x": 17.2623, - "y": 149.8896 - }, - { - "l": "75.0", - "x": 17.3457, - "y": 149.9297 - }, - { - "l": "75.0", - "x": 17.429, - "y": 149.9663 - }, - { - "l": "75.0", - "x": 17.5123, - "y": 150.0069 - }, - { - "l": "75.0", - "x": 17.5957, - "y": 150.0463 - }, - { - "l": "75.0", - "x": 17.679, - "y": 150.0823 - }, - { - "l": "75.0", - "x": 17.7623, - "y": 150.1227 - }, - { - "l": "75.0", - "x": 17.8457, - "y": 150.162 - }, - { - "l": "75.0", - "x": 17.929, - "y": 150.1981 - }, - { - "l": "75.0", - "x": 18.0123, - "y": 150.2387 - }, - { - "l": "75.0", - "x": 18.0957, - "y": 150.2786 - }, - { - "l": "75.0", - "x": 18.179, - "y": 150.3152 - }, - { - "l": "75.0", - "x": 18.2623, - "y": 150.3563 - }, - { - "l": "75.0", - "x": 18.3457, - "y": 150.3968 - }, - { - "l": "75.0", - "x": 18.429, - "y": 150.4342 - }, - { - "l": "75.0", - "x": 18.5123, - "y": 150.4763 - }, - { - "l": "75.0", - "x": 18.5957, - "y": 150.5176 - }, - { - "l": "75.0", - "x": 18.679, - "y": 150.5558 - }, - { - "l": "75.0", - "x": 18.7623, - "y": 150.5987 - }, - { - "l": "75.0", - "x": 18.8457, - "y": 150.6405 - }, - { - "l": "75.0", - "x": 18.929, - "y": 150.6788 - }, - { - "l": "75.0", - "x": 19.0123, - "y": 150.7218 - }, - { - "l": "75.0", - "x": 19.0957, - "y": 150.764 - }, - { - "l": "75.0", - "x": 19.179, - "y": 150.8022 - }, - { - "l": "75.0", - "x": 19.2623, - "y": 150.8428 - }, - { - "l": "75.0", - "x": 19.3457, - "y": 150.8824 - }, - { - "l": "75.0", - "x": 19.429, - "y": 150.9186 - }, - { - "l": "75.0", - "x": 19.5123, - "y": 150.9592 - }, - { - "l": "75.0", - "x": 19.5957, - "y": 150.9988 - }, - { - "l": "75.0", - "x": 19.679, - "y": 151.035 - }, - { - "l": "75.0", - "x": 19.7623, - "y": 151.0756 - }, - { - "l": "75.0", - "x": 19.8457, - "y": 151.1152 - }, - { - "l": "75.0", - "x": 19.929, - "y": 151.1515 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 0.0, - "y": 52.5633 - }, - { - "l": "91.0", - "x": 0.0192, - "y": 53.1377 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 53.7119 - }, - { - "l": "91.0", - "x": 0.0575, - "y": 54.2861 - }, - { - "l": "91.0", - "x": 0.0767, - "y": 54.8602 - }, - { - "l": "91.0", - "x": 0.0958, - "y": 55.3848 - }, - { - "l": "91.0", - "x": 0.115, - "y": 55.8882 - }, - { - "l": "91.0", - "x": 0.1342, - "y": 56.3855 - }, - { - "l": "91.0", - "x": 0.1533, - "y": 56.8829 - }, - { - "l": "91.0", - "x": 0.1725, - "y": 57.3905 - }, - { - "l": "91.0", - "x": 0.1916, - "y": 57.9348 - }, - { - "l": "91.0", - "x": 0.2108, - "y": 58.4846 - }, - { - "l": "91.0", - "x": 0.23, - "y": 59.0361 - }, - { - "l": "91.0", - "x": 0.2491, - "y": 59.5855 - }, - { - "l": "91.0", - "x": 0.2683, - "y": 60.1274 - }, - { - "l": "91.0", - "x": 0.2875, - "y": 60.6603 - }, - { - "l": "91.0", - "x": 0.3066, - "y": 61.1811 - }, - { - "l": "91.0", - "x": 0.3258, - "y": 61.6866 - }, - { - "l": "91.0", - "x": 0.345, - "y": 62.1521 - }, - { - "l": "91.0", - "x": 0.3641, - "y": 62.5953 - }, - { - "l": "91.0", - "x": 0.3833, - "y": 63.0276 - }, - { - "l": "91.0", - "x": 0.4025, - "y": 63.4544 - }, - { - "l": "91.0", - "x": 0.4216, - "y": 63.8835 - }, - { - "l": "91.0", - "x": 0.4408, - "y": 64.3403 - }, - { - "l": "91.0", - "x": 0.46, - "y": 64.7973 - }, - { - "l": "91.0", - "x": 0.4791, - "y": 65.2512 - }, - { - "l": "91.0", - "x": 0.4983, - "y": 65.6992 - }, - { - "l": "91.0", - "x": 0.5175, - "y": 66.1354 - }, - { - "l": "91.0", - "x": 0.5366, - "y": 66.5602 - }, - { - "l": "91.0", - "x": 0.5558, - "y": 66.972 - }, - { - "l": "91.0", - "x": 0.5749, - "y": 67.3686 - }, - { - "l": "91.0", - "x": 0.5941, - "y": 67.7326 - }, - { - "l": "91.0", - "x": 0.6133, - "y": 68.0758 - }, - { - "l": "91.0", - "x": 0.6324, - "y": 68.408 - }, - { - "l": "91.0", - "x": 0.6516, - "y": 68.7338 - }, - { - "l": "91.0", - "x": 0.6708, - "y": 69.0585 - }, - { - "l": "91.0", - "x": 0.6899, - "y": 69.4046 - }, - { - "l": "91.0", - "x": 0.7091, - "y": 69.7497 - }, - { - "l": "91.0", - "x": 0.7283, - "y": 70.0918 - }, - { - "l": "91.0", - "x": 0.7474, - "y": 70.4287 - }, - { - "l": "91.0", - "x": 0.7666, - "y": 70.7566 - }, - { - "l": "91.0", - "x": 0.7858, - "y": 71.0755 - }, - { - "l": "91.0", - "x": 0.8049, - "y": 71.3844 - }, - { - "l": "91.0", - "x": 0.8241, - "y": 71.682 - }, - { - "l": "91.0", - "x": 0.8433, - "y": 71.9562 - }, - { - "l": "91.0", - "x": 0.8624, - "y": 72.2143 - }, - { - "l": "91.0", - "x": 0.8816, - "y": 72.4643 - }, - { - "l": "91.0", - "x": 0.9008, - "y": 72.71 - }, - { - "l": "91.0", - "x": 0.9199, - "y": 72.9546 - }, - { - "l": "91.0", - "x": 0.9391, - "y": 73.2168 - }, - { - "l": "91.0", - "x": 0.9582, - "y": 73.4793 - }, - { - "l": "91.0", - "x": 0.9774, - "y": 73.7404 - }, - { - "l": "91.0", - "x": 0.9966, - "y": 73.9987 - }, - { - "l": "91.0", - "x": 1.0157, - "y": 74.2516 - }, - { - "l": "91.0", - "x": 1.0349, - "y": 74.4989 - }, - { - "l": "91.0", - "x": 1.0541, - "y": 74.7396 - }, - { - "l": "91.0", - "x": 1.0732, - "y": 74.9728 - }, - { - "l": "91.0", - "x": 1.0924, - "y": 75.1893 - }, - { - "l": "91.0", - "x": 1.1116, - "y": 75.3936 - }, - { - "l": "91.0", - "x": 1.1307, - "y": 75.5927 - }, - { - "l": "91.0", - "x": 1.1499, - "y": 75.7894 - }, - { - "l": "91.0", - "x": 1.1691, - "y": 75.9864 - }, - { - "l": "91.0", - "x": 1.1882, - "y": 76.1979 - }, - { - "l": "91.0", - "x": 1.2074, - "y": 76.4113 - }, - { - "l": "91.0", - "x": 1.2266, - "y": 76.6248 - }, - { - "l": "91.0", - "x": 1.2457, - "y": 76.8372 - }, - { - "l": "91.0", - "x": 1.2649, - "y": 77.0467 - }, - { - "l": "91.0", - "x": 1.2841, - "y": 77.2525 - }, - { - "l": "91.0", - "x": 1.3032, - "y": 77.454 - }, - { - "l": "91.0", - "x": 1.3224, - "y": 77.65 - }, - { - "l": "91.0", - "x": 1.3415, - "y": 77.8332 - }, - { - "l": "91.0", - "x": 1.3607, - "y": 78.0061 - }, - { - "l": "91.0", - "x": 1.3799, - "y": 78.1752 - }, - { - "l": "91.0", - "x": 1.399, - "y": 78.3429 - }, - { - "l": "91.0", - "x": 1.4182, - "y": 78.5113 - }, - { - "l": "91.0", - "x": 1.4374, - "y": 78.692 - }, - { - "l": "91.0", - "x": 1.4565, - "y": 78.8754 - }, - { - "l": "91.0", - "x": 1.4757, - "y": 79.0594 - }, - { - "l": "91.0", - "x": 1.4949, - "y": 79.2428 - }, - { - "l": "91.0", - "x": 1.514, - "y": 79.4242 - }, - { - "l": "91.0", - "x": 1.5332, - "y": 79.6028 - }, - { - "l": "91.0", - "x": 1.5524, - "y": 79.7779 - }, - { - "l": "91.0", - "x": 1.5715, - "y": 79.9487 - }, - { - "l": "91.0", - "x": 1.5907, - "y": 80.109 - }, - { - "l": "91.0", - "x": 1.6099, - "y": 80.2602 - }, - { - "l": "91.0", - "x": 1.629, - "y": 80.4084 - }, - { - "l": "91.0", - "x": 1.6482, - "y": 80.5557 - }, - { - "l": "91.0", - "x": 1.6674, - "y": 80.7039 - }, - { - "l": "91.0", - "x": 1.6865, - "y": 80.863 - }, - { - "l": "91.0", - "x": 1.7057, - "y": 81.0255 - }, - { - "l": "91.0", - "x": 1.7248, - "y": 81.189 - }, - { - "l": "91.0", - "x": 1.744, - "y": 81.3527 - }, - { - "l": "91.0", - "x": 1.7632, - "y": 81.5155 - }, - { - "l": "91.0", - "x": 1.7823, - "y": 81.6765 - }, - { - "l": "91.0", - "x": 1.8015, - "y": 81.8351 - }, - { - "l": "91.0", - "x": 1.8207, - "y": 81.9905 - }, - { - "l": "91.0", - "x": 1.8398, - "y": 82.1372 - }, - { - "l": "91.0", - "x": 1.859, - "y": 82.2758 - }, - { - "l": "91.0", - "x": 1.8782, - "y": 82.4122 - }, - { - "l": "91.0", - "x": 1.8973, - "y": 82.5481 - }, - { - "l": "91.0", - "x": 1.9165, - "y": 82.6853 - }, - { - "l": "91.0", - "x": 1.9357, - "y": 82.8326 - }, - { - "l": "91.0", - "x": 1.9548, - "y": 82.9837 - }, - { - "l": "91.0", - "x": 1.974, - "y": 83.1363 - }, - { - "l": "91.0", - "x": 1.9932, - "y": 83.2895 - }, - { - "l": "91.0", - "x": 2.0123, - "y": 83.4422 - }, - { - "l": "91.0", - "x": 2.0957, - "y": 84.075 - }, - { - "l": "91.0", - "x": 2.179, - "y": 84.6448 - }, - { - "l": "91.0", - "x": 2.2623, - "y": 85.2758 - }, - { - "l": "91.0", - "x": 2.3457, - "y": 85.8827 - }, - { - "l": "91.0", - "x": 2.429, - "y": 86.4327 - }, - { - "l": "91.0", - "x": 2.5123, - "y": 87.0451 - }, - { - "l": "91.0", - "x": 2.5957, - "y": 87.6371 - }, - { - "l": "91.0", - "x": 2.679, - "y": 88.1749 - }, - { - "l": "91.0", - "x": 2.7623, - "y": 88.7742 - }, - { - "l": "91.0", - "x": 2.8457, - "y": 89.3531 - }, - { - "l": "91.0", - "x": 2.929, - "y": 89.8786 - }, - { - "l": "91.0", - "x": 3.0123, - "y": 90.4647 - }, - { - "l": "91.0", - "x": 3.0957, - "y": 91.0319 - }, - { - "l": "91.0", - "x": 3.179, - "y": 91.5489 - }, - { - "l": "91.0", - "x": 3.2623, - "y": 92.1278 - }, - { - "l": "91.0", - "x": 3.3457, - "y": 92.6909 - }, - { - "l": "91.0", - "x": 3.429, - "y": 93.2063 - }, - { - "l": "91.0", - "x": 3.5123, - "y": 93.7852 - }, - { - "l": "91.0", - "x": 3.5957, - "y": 94.3497 - }, - { - "l": "91.0", - "x": 3.679, - "y": 94.8672 - }, - { - "l": "91.0", - "x": 3.7623, - "y": 95.4492 - }, - { - "l": "91.0", - "x": 3.8457, - "y": 96.0168 - }, - { - "l": "91.0", - "x": 3.929, - "y": 96.5368 - }, - { - "l": "91.0", - "x": 4.0123, - "y": 97.1208 - }, - { - "l": "91.0", - "x": 4.0957, - "y": 97.6897 - }, - { - "l": "91.0", - "x": 4.179, - "y": 98.2104 - }, - { - "l": "91.0", - "x": 4.2623, - "y": 98.7954 - }, - { - "l": "91.0", - "x": 4.3457, - "y": 99.3656 - }, - { - "l": "91.0", - "x": 4.429, - "y": 99.8881 - }, - { - "l": "91.0", - "x": 4.5123, - "y": 100.4755 - }, - { - "l": "91.0", - "x": 4.5957, - "y": 101.0479 - }, - { - "l": "91.0", - "x": 4.679, - "y": 101.572 - }, - { - "l": "91.0", - "x": 4.7623, - "y": 102.16 - }, - { - "l": "91.0", - "x": 4.8457, - "y": 102.7317 - }, - { - "l": "91.0", - "x": 4.929, - "y": 103.2536 - }, - { - "l": "91.0", - "x": 5.0123, - "y": 103.8378 - }, - { - "l": "91.0", - "x": 5.0957, - "y": 104.4044 - }, - { - "l": "91.0", - "x": 5.179, - "y": 104.9209 - }, - { - "l": "91.0", - "x": 5.2623, - "y": 105.4988 - }, - { - "l": "91.0", - "x": 5.3457, - "y": 106.0596 - }, - { - "l": "91.0", - "x": 5.429, - "y": 106.571 - }, - { - "l": "91.0", - "x": 5.5123, - "y": 107.1431 - }, - { - "l": "91.0", - "x": 5.5957, - "y": 107.6978 - }, - { - "l": "91.0", - "x": 5.679, - "y": 108.2032 - }, - { - "l": "91.0", - "x": 5.7623, - "y": 108.7682 - }, - { - "l": "91.0", - "x": 5.8457, - "y": 109.3157 - }, - { - "l": "91.0", - "x": 5.929, - "y": 109.8142 - }, - { - "l": "91.0", - "x": 6.0123, - "y": 110.3714 - }, - { - "l": "91.0", - "x": 6.0957, - "y": 110.9115 - }, - { - "l": "91.0", - "x": 6.179, - "y": 111.4041 - }, - { - "l": "91.0", - "x": 6.2623, - "y": 111.9551 - }, - { - "l": "91.0", - "x": 6.3457, - "y": 112.49 - }, - { - "l": "91.0", - "x": 6.429, - "y": 112.9781 - }, - { - "l": "91.0", - "x": 6.5123, - "y": 113.5247 - }, - { - "l": "91.0", - "x": 6.5957, - "y": 114.0558 - }, - { - "l": "91.0", - "x": 6.679, - "y": 114.5412 - }, - { - "l": "91.0", - "x": 6.7623, - "y": 115.0854 - }, - { - "l": "91.0", - "x": 6.8457, - "y": 115.6151 - }, - { - "l": "91.0", - "x": 6.929, - "y": 116.0993 - }, - { - "l": "91.0", - "x": 7.0123, - "y": 116.6425 - }, - { - "l": "91.0", - "x": 7.0957, - "y": 117.1708 - }, - { - "l": "91.0", - "x": 7.179, - "y": 117.6537 - }, - { - "l": "91.0", - "x": 7.2623, - "y": 118.1951 - }, - { - "l": "91.0", - "x": 7.3457, - "y": 118.7211 - }, - { - "l": "91.0", - "x": 7.429, - "y": 119.2012 - }, - { - "l": "91.0", - "x": 7.5123, - "y": 119.7385 - }, - { - "l": "91.0", - "x": 7.5957, - "y": 120.2594 - }, - { - "l": "91.0", - "x": 7.679, - "y": 120.7341 - }, - { - "l": "91.0", - "x": 7.7623, - "y": 121.2651 - }, - { - "l": "91.0", - "x": 7.8457, - "y": 121.7802 - }, - { - "l": "91.0", - "x": 7.929, - "y": 122.2503 - }, - { - "l": "91.0", - "x": 8.0123, - "y": 122.7771 - }, - { - "l": "91.0", - "x": 8.0957, - "y": 123.2893 - }, - { - "l": "91.0", - "x": 8.179, - "y": 123.7577 - }, - { - "l": "91.0", - "x": 8.2623, - "y": 124.2831 - }, - { - "l": "91.0", - "x": 8.3457, - "y": 124.7943 - }, - { - "l": "91.0", - "x": 8.429, - "y": 125.2617 - }, - { - "l": "91.0", - "x": 8.5123, - "y": 125.7857 - }, - { - "l": "91.0", - "x": 8.5957, - "y": 126.2951 - }, - { - "l": "91.0", - "x": 8.679, - "y": 126.7602 - }, - { - "l": "91.0", - "x": 8.7623, - "y": 127.281 - }, - { - "l": "91.0", - "x": 8.8457, - "y": 127.7869 - }, - { - "l": "91.0", - "x": 8.929, - "y": 128.2485 - }, - { - "l": "91.0", - "x": 9.0123, - "y": 128.7651 - }, - { - "l": "91.0", - "x": 9.0957, - "y": 129.2667 - }, - { - "l": "91.0", - "x": 9.179, - "y": 129.7244 - }, - { - "l": "91.0", - "x": 9.2623, - "y": 130.2368 - }, - { - "l": "91.0", - "x": 9.3457, - "y": 130.7341 - }, - { - "l": "91.0", - "x": 9.429, - "y": 131.1878 - }, - { - "l": "91.0", - "x": 9.5123, - "y": 131.6954 - }, - { - "l": "91.0", - "x": 9.5957, - "y": 132.1881 - }, - { - "l": "91.0", - "x": 9.679, - "y": 132.6377 - }, - { - "l": "91.0", - "x": 9.7623, - "y": 133.1409 - }, - { - "l": "91.0", - "x": 9.8457, - "y": 133.6296 - }, - { - "l": "91.0", - "x": 9.929, - "y": 134.0757 - }, - { - "l": "91.0", - "x": 10.0123, - "y": 134.5752 - }, - { - "l": "91.0", - "x": 10.0957, - "y": 135.0599 - }, - { - "l": "91.0", - "x": 10.179, - "y": 135.5018 - }, - { - "l": "91.0", - "x": 10.2623, - "y": 135.9958 - }, - { - "l": "91.0", - "x": 10.3457, - "y": 136.4746 - }, - { - "l": "91.0", - "x": 10.429, - "y": 136.9105 - }, - { - "l": "91.0", - "x": 10.5123, - "y": 137.3971 - }, - { - "l": "91.0", - "x": 10.5957, - "y": 137.8679 - }, - { - "l": "91.0", - "x": 10.679, - "y": 138.2955 - }, - { - "l": "91.0", - "x": 10.7623, - "y": 138.7716 - }, - { - "l": "91.0", - "x": 10.8457, - "y": 139.231 - }, - { - "l": "91.0", - "x": 10.929, - "y": 139.647 - }, - { - "l": "91.0", - "x": 11.0123, - "y": 140.1091 - }, - { - "l": "91.0", - "x": 11.0957, - "y": 140.5534 - }, - { - "l": "91.0", - "x": 11.179, - "y": 140.9543 - }, - { - "l": "91.0", - "x": 11.2623, - "y": 141.3971 - }, - { - "l": "91.0", - "x": 11.3457, - "y": 141.8216 - }, - { - "l": "91.0", - "x": 11.429, - "y": 142.2023 - }, - { - "l": "91.0", - "x": 11.5123, - "y": 142.621 - }, - { - "l": "91.0", - "x": 11.5957, - "y": 143.02 - }, - { - "l": "91.0", - "x": 11.679, - "y": 143.3766 - }, - { - "l": "91.0", - "x": 11.7623, - "y": 143.7676 - }, - { - "l": "91.0", - "x": 11.8457, - "y": 144.1389 - }, - { - "l": "91.0", - "x": 11.929, - "y": 144.4699 - }, - { - "l": "91.0", - "x": 12.0123, - "y": 144.8321 - }, - { - "l": "91.0", - "x": 12.0957, - "y": 145.1751 - }, - { - "l": "91.0", - "x": 12.179, - "y": 145.48 - }, - { - "l": "91.0", - "x": 12.2623, - "y": 145.8138 - }, - { - "l": "91.0", - "x": 12.3457, - "y": 146.1291 - }, - { - "l": "91.0", - "x": 12.429, - "y": 146.4093 - }, - { - "l": "91.0", - "x": 12.5123, - "y": 146.7152 - }, - { - "l": "91.0", - "x": 12.5957, - "y": 147.0039 - }, - { - "l": "91.0", - "x": 12.679, - "y": 147.2615 - }, - { - "l": "91.0", - "x": 12.7623, - "y": 147.5422 - }, - { - "l": "91.0", - "x": 12.8457, - "y": 147.8072 - }, - { - "l": "91.0", - "x": 12.929, - "y": 148.0437 - }, - { - "l": "91.0", - "x": 13.0123, - "y": 148.3017 - }, - { - "l": "91.0", - "x": 13.0957, - "y": 148.5451 - }, - { - "l": "91.0", - "x": 13.179, - "y": 148.7618 - }, - { - "l": "91.0", - "x": 13.2623, - "y": 148.9982 - }, - { - "l": "91.0", - "x": 13.3457, - "y": 149.2213 - }, - { - "l": "91.0", - "x": 13.429, - "y": 149.419 - }, - { - "l": "91.0", - "x": 13.5123, - "y": 149.6344 - }, - { - "l": "91.0", - "x": 13.5957, - "y": 149.8378 - }, - { - "l": "91.0", - "x": 13.679, - "y": 150.0174 - }, - { - "l": "91.0", - "x": 13.7623, - "y": 150.2128 - }, - { - "l": "91.0", - "x": 13.8457, - "y": 150.3975 - }, - { - "l": "91.0", - "x": 13.929, - "y": 150.5605 - }, - { - "l": "91.0", - "x": 14.0123, - "y": 150.7373 - }, - { - "l": "91.0", - "x": 14.0957, - "y": 150.9037 - }, - { - "l": "91.0", - "x": 14.179, - "y": 151.0504 - }, - { - "l": "91.0", - "x": 14.2623, - "y": 151.2095 - }, - { - "l": "91.0", - "x": 14.3457, - "y": 151.3587 - }, - { - "l": "91.0", - "x": 14.429, - "y": 151.4901 - }, - { - "l": "91.0", - "x": 14.5123, - "y": 151.6321 - }, - { - "l": "91.0", - "x": 14.5957, - "y": 151.7649 - }, - { - "l": "91.0", - "x": 14.679, - "y": 151.8828 - }, - { - "l": "91.0", - "x": 14.7623, - "y": 152.0095 - }, - { - "l": "91.0", - "x": 14.8457, - "y": 152.128 - }, - { - "l": "91.0", - "x": 14.929, - "y": 152.232 - }, - { - "l": "91.0", - "x": 15.0123, - "y": 152.3432 - }, - { - "l": "91.0", - "x": 15.0957, - "y": 152.4487 - }, - { - "l": "91.0", - "x": 15.179, - "y": 152.5402 - }, - { - "l": "91.0", - "x": 15.2623, - "y": 152.6388 - }, - { - "l": "91.0", - "x": 15.3457, - "y": 152.7304 - }, - { - "l": "91.0", - "x": 15.429, - "y": 152.8093 - }, - { - "l": "91.0", - "x": 15.5123, - "y": 152.895 - }, - { - "l": "91.0", - "x": 15.5957, - "y": 152.9773 - }, - { - "l": "91.0", - "x": 15.679, - "y": 153.0474 - }, - { - "l": "91.0", - "x": 15.7623, - "y": 153.1231 - }, - { - "l": "91.0", - "x": 15.8457, - "y": 153.1936 - }, - { - "l": "91.0", - "x": 15.929, - "y": 153.2557 - }, - { - "l": "91.0", - "x": 16.0123, - "y": 153.3227 - }, - { - "l": "91.0", - "x": 16.0957, - "y": 153.3851 - }, - { - "l": "91.0", - "x": 16.179, - "y": 153.4401 - }, - { - "l": "91.0", - "x": 16.2623, - "y": 153.4994 - }, - { - "l": "91.0", - "x": 16.3457, - "y": 153.5553 - }, - { - "l": "91.0", - "x": 16.429, - "y": 153.6041 - }, - { - "l": "91.0", - "x": 16.5123, - "y": 153.6563 - }, - { - "l": "91.0", - "x": 16.5957, - "y": 153.7063 - }, - { - "l": "91.0", - "x": 16.679, - "y": 153.7502 - }, - { - "l": "91.0", - "x": 16.7623, - "y": 153.7976 - }, - { - "l": "91.0", - "x": 16.8457, - "y": 153.8422 - }, - { - "l": "91.0", - "x": 16.929, - "y": 153.882 - }, - { - "l": "91.0", - "x": 17.0123, - "y": 153.9256 - }, - { - "l": "91.0", - "x": 17.0957, - "y": 153.9672 - }, - { - "l": "91.0", - "x": 17.179, - "y": 154.0047 - }, - { - "l": "91.0", - "x": 17.2623, - "y": 154.0462 - }, - { - "l": "91.0", - "x": 17.3457, - "y": 154.0861 - }, - { - "l": "91.0", - "x": 17.429, - "y": 154.1225 - }, - { - "l": "91.0", - "x": 17.5123, - "y": 154.1629 - }, - { - "l": "91.0", - "x": 17.5957, - "y": 154.2021 - }, - { - "l": "91.0", - "x": 17.679, - "y": 154.2379 - }, - { - "l": "91.0", - "x": 17.7623, - "y": 154.2781 - }, - { - "l": "91.0", - "x": 17.8457, - "y": 154.3172 - }, - { - "l": "91.0", - "x": 17.929, - "y": 154.3531 - }, - { - "l": "91.0", - "x": 18.0123, - "y": 154.3935 - }, - { - "l": "91.0", - "x": 18.0957, - "y": 154.4332 - }, - { - "l": "91.0", - "x": 18.179, - "y": 154.4696 - }, - { - "l": "91.0", - "x": 18.2623, - "y": 154.5105 - }, - { - "l": "91.0", - "x": 18.3457, - "y": 154.5508 - }, - { - "l": "91.0", - "x": 18.429, - "y": 154.5879 - }, - { - "l": "91.0", - "x": 18.5123, - "y": 154.6298 - }, - { - "l": "91.0", - "x": 18.5957, - "y": 154.6709 - }, - { - "l": "91.0", - "x": 18.679, - "y": 154.7089 - }, - { - "l": "91.0", - "x": 18.7623, - "y": 154.7516 - }, - { - "l": "91.0", - "x": 18.8457, - "y": 154.7932 - }, - { - "l": "91.0", - "x": 18.929, - "y": 154.8313 - }, - { - "l": "91.0", - "x": 19.0123, - "y": 154.874 - }, - { - "l": "91.0", - "x": 19.0957, - "y": 154.9159 - }, - { - "l": "91.0", - "x": 19.179, - "y": 154.954 - }, - { - "l": "91.0", - "x": 19.2623, - "y": 154.9944 - }, - { - "l": "91.0", - "x": 19.3457, - "y": 155.0337 - }, - { - "l": "91.0", - "x": 19.429, - "y": 155.0697 - }, - { - "l": "91.0", - "x": 19.5123, - "y": 155.1101 - }, - { - "l": "91.0", - "x": 19.5957, - "y": 155.1495 - }, - { - "l": "91.0", - "x": 19.679, - "y": 155.1855 - }, - { - "l": "91.0", - "x": 19.7623, - "y": 155.2259 - }, - { - "l": "91.0", - "x": 19.8457, - "y": 155.2652 - }, - { - "l": "91.0", - "x": 19.929, - "y": 155.3013 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 0.0, - "y": 54.1186 - }, - { - "l": "98.0", - "x": 0.0192, - "y": 54.7078 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 55.2968 - }, - { - "l": "98.0", - "x": 0.0575, - "y": 55.8857 - }, - { - "l": "98.0", - "x": 0.0767, - "y": 56.4744 - }, - { - "l": "98.0", - "x": 0.0958, - "y": 57.0123 - }, - { - "l": "98.0", - "x": 0.115, - "y": 57.5284 - }, - { - "l": "98.0", - "x": 0.1342, - "y": 58.0383 - }, - { - "l": "98.0", - "x": 0.1533, - "y": 58.5482 - }, - { - "l": "98.0", - "x": 0.1725, - "y": 59.0686 - }, - { - "l": "98.0", - "x": 0.1916, - "y": 59.6266 - }, - { - "l": "98.0", - "x": 0.2108, - "y": 60.1901 - }, - { - "l": "98.0", - "x": 0.23, - "y": 60.7553 - }, - { - "l": "98.0", - "x": 0.2491, - "y": 61.3183 - }, - { - "l": "98.0", - "x": 0.2683, - "y": 61.8736 - }, - { - "l": "98.0", - "x": 0.2875, - "y": 62.4196 - }, - { - "l": "98.0", - "x": 0.3066, - "y": 62.9531 - }, - { - "l": "98.0", - "x": 0.3258, - "y": 63.471 - }, - { - "l": "98.0", - "x": 0.345, - "y": 63.9479 - }, - { - "l": "98.0", - "x": 0.3641, - "y": 64.4018 - }, - { - "l": "98.0", - "x": 0.3833, - "y": 64.8446 - }, - { - "l": "98.0", - "x": 0.4025, - "y": 65.2817 - }, - { - "l": "98.0", - "x": 0.4216, - "y": 65.721 - }, - { - "l": "98.0", - "x": 0.4408, - "y": 66.1889 - }, - { - "l": "98.0", - "x": 0.46, - "y": 66.6568 - }, - { - "l": "98.0", - "x": 0.4791, - "y": 67.1215 - }, - { - "l": "98.0", - "x": 0.4983, - "y": 67.5801 - }, - { - "l": "98.0", - "x": 0.5175, - "y": 68.0267 - }, - { - "l": "98.0", - "x": 0.5366, - "y": 68.4616 - }, - { - "l": "98.0", - "x": 0.5558, - "y": 68.883 - }, - { - "l": "98.0", - "x": 0.5749, - "y": 69.289 - }, - { - "l": "98.0", - "x": 0.5941, - "y": 69.6616 - }, - { - "l": "98.0", - "x": 0.6133, - "y": 70.0127 - }, - { - "l": "98.0", - "x": 0.6324, - "y": 70.3527 - }, - { - "l": "98.0", - "x": 0.6516, - "y": 70.6861 - }, - { - "l": "98.0", - "x": 0.6708, - "y": 71.0184 - }, - { - "l": "98.0", - "x": 0.6899, - "y": 71.3726 - }, - { - "l": "98.0", - "x": 0.7091, - "y": 71.7257 - }, - { - "l": "98.0", - "x": 0.7283, - "y": 72.0757 - }, - { - "l": "98.0", - "x": 0.7474, - "y": 72.4204 - }, - { - "l": "98.0", - "x": 0.7666, - "y": 72.7558 - }, - { - "l": "98.0", - "x": 0.7858, - "y": 73.0821 - }, - { - "l": "98.0", - "x": 0.8049, - "y": 73.3982 - }, - { - "l": "98.0", - "x": 0.8241, - "y": 73.7027 - }, - { - "l": "98.0", - "x": 0.8433, - "y": 73.9833 - }, - { - "l": "98.0", - "x": 0.8624, - "y": 74.2473 - }, - { - "l": "98.0", - "x": 0.8816, - "y": 74.5031 - }, - { - "l": "98.0", - "x": 0.9008, - "y": 74.7545 - }, - { - "l": "98.0", - "x": 0.9199, - "y": 75.0048 - }, - { - "l": "98.0", - "x": 0.9391, - "y": 75.2731 - }, - { - "l": "98.0", - "x": 0.9582, - "y": 75.5417 - }, - { - "l": "98.0", - "x": 0.9774, - "y": 75.8089 - }, - { - "l": "98.0", - "x": 0.9966, - "y": 76.0732 - }, - { - "l": "98.0", - "x": 1.0157, - "y": 76.3321 - }, - { - "l": "98.0", - "x": 1.0349, - "y": 76.5851 - }, - { - "l": "98.0", - "x": 1.0541, - "y": 76.8315 - }, - { - "l": "98.0", - "x": 1.0732, - "y": 77.0702 - }, - { - "l": "98.0", - "x": 1.0924, - "y": 77.2918 - }, - { - "l": "98.0", - "x": 1.1116, - "y": 77.501 - }, - { - "l": "98.0", - "x": 1.1307, - "y": 77.7049 - }, - { - "l": "98.0", - "x": 1.1499, - "y": 77.9063 - }, - { - "l": "98.0", - "x": 1.1691, - "y": 78.108 - }, - { - "l": "98.0", - "x": 1.1882, - "y": 78.3246 - }, - { - "l": "98.0", - "x": 1.2074, - "y": 78.5432 - }, - { - "l": "98.0", - "x": 1.2266, - "y": 78.7618 - }, - { - "l": "98.0", - "x": 1.2457, - "y": 78.9794 - }, - { - "l": "98.0", - "x": 1.2649, - "y": 79.194 - }, - { - "l": "98.0", - "x": 1.2841, - "y": 79.4049 - }, - { - "l": "98.0", - "x": 1.3032, - "y": 79.6113 - }, - { - "l": "98.0", - "x": 1.3224, - "y": 79.8122 - }, - { - "l": "98.0", - "x": 1.3415, - "y": 79.9999 - }, - { - "l": "98.0", - "x": 1.3607, - "y": 80.1772 - }, - { - "l": "98.0", - "x": 1.3799, - "y": 80.3506 - }, - { - "l": "98.0", - "x": 1.399, - "y": 80.5224 - }, - { - "l": "98.0", - "x": 1.4182, - "y": 80.6951 - }, - { - "l": "98.0", - "x": 1.4374, - "y": 80.8804 - }, - { - "l": "98.0", - "x": 1.4565, - "y": 81.0686 - }, - { - "l": "98.0", - "x": 1.4757, - "y": 81.2573 - }, - { - "l": "98.0", - "x": 1.4949, - "y": 81.4454 - }, - { - "l": "98.0", - "x": 1.514, - "y": 81.6315 - }, - { - "l": "98.0", - "x": 1.5332, - "y": 81.8147 - }, - { - "l": "98.0", - "x": 1.5524, - "y": 81.9945 - }, - { - "l": "98.0", - "x": 1.5715, - "y": 82.1698 - }, - { - "l": "98.0", - "x": 1.5907, - "y": 82.3343 - }, - { - "l": "98.0", - "x": 1.6099, - "y": 82.4895 - }, - { - "l": "98.0", - "x": 1.629, - "y": 82.6417 - }, - { - "l": "98.0", - "x": 1.6482, - "y": 82.7929 - }, - { - "l": "98.0", - "x": 1.6674, - "y": 82.9452 - }, - { - "l": "98.0", - "x": 1.6865, - "y": 83.1087 - }, - { - "l": "98.0", - "x": 1.7057, - "y": 83.2755 - }, - { - "l": "98.0", - "x": 1.7248, - "y": 83.4436 - }, - { - "l": "98.0", - "x": 1.744, - "y": 83.6118 - }, - { - "l": "98.0", - "x": 1.7632, - "y": 83.7791 - }, - { - "l": "98.0", - "x": 1.7823, - "y": 83.9446 - }, - { - "l": "98.0", - "x": 1.8015, - "y": 84.1077 - }, - { - "l": "98.0", - "x": 1.8207, - "y": 84.2674 - }, - { - "l": "98.0", - "x": 1.8398, - "y": 84.4183 - }, - { - "l": "98.0", - "x": 1.859, - "y": 84.5609 - }, - { - "l": "98.0", - "x": 1.8782, - "y": 84.7011 - }, - { - "l": "98.0", - "x": 1.8973, - "y": 84.841 - }, - { - "l": "98.0", - "x": 1.9165, - "y": 84.9822 - }, - { - "l": "98.0", - "x": 1.9357, - "y": 85.1337 - }, - { - "l": "98.0", - "x": 1.9548, - "y": 85.2893 - }, - { - "l": "98.0", - "x": 1.974, - "y": 85.4464 - }, - { - "l": "98.0", - "x": 1.9932, - "y": 85.6041 - }, - { - "l": "98.0", - "x": 2.0123, - "y": 85.7613 - }, - { - "l": "98.0", - "x": 2.0957, - "y": 86.4132 - }, - { - "l": "98.0", - "x": 2.179, - "y": 87.0005 - }, - { - "l": "98.0", - "x": 2.2623, - "y": 87.6512 - }, - { - "l": "98.0", - "x": 2.3457, - "y": 88.2775 - }, - { - "l": "98.0", - "x": 2.429, - "y": 88.8451 - }, - { - "l": "98.0", - "x": 2.5123, - "y": 89.4775 - }, - { - "l": "98.0", - "x": 2.5957, - "y": 90.0891 - }, - { - "l": "98.0", - "x": 2.679, - "y": 90.6448 - }, - { - "l": "98.0", - "x": 2.7623, - "y": 91.2644 - }, - { - "l": "98.0", - "x": 2.8457, - "y": 91.863 - }, - { - "l": "98.0", - "x": 2.929, - "y": 92.4066 - }, - { - "l": "98.0", - "x": 3.0123, - "y": 93.0129 - }, - { - "l": "98.0", - "x": 3.0957, - "y": 93.5999 - }, - { - "l": "98.0", - "x": 3.179, - "y": 94.135 - }, - { - "l": "98.0", - "x": 3.2623, - "y": 94.7343 - }, - { - "l": "98.0", - "x": 3.3457, - "y": 95.3173 - }, - { - "l": "98.0", - "x": 3.429, - "y": 95.851 - }, - { - "l": "98.0", - "x": 3.5123, - "y": 96.4505 - }, - { - "l": "98.0", - "x": 3.5957, - "y": 97.0351 - }, - { - "l": "98.0", - "x": 3.679, - "y": 97.5712 - }, - { - "l": "98.0", - "x": 3.7623, - "y": 98.1741 - }, - { - "l": "98.0", - "x": 3.8457, - "y": 98.7621 - }, - { - "l": "98.0", - "x": 3.929, - "y": 99.3008 - }, - { - "l": "98.0", - "x": 4.0123, - "y": 99.9058 - }, - { - "l": "98.0", - "x": 4.0957, - "y": 100.4952 - }, - { - "l": "98.0", - "x": 4.179, - "y": 101.0347 - }, - { - "l": "98.0", - "x": 4.2623, - "y": 101.6408 - }, - { - "l": "98.0", - "x": 4.3457, - "y": 102.2316 - }, - { - "l": "98.0", - "x": 4.429, - "y": 102.773 - }, - { - "l": "98.0", - "x": 4.5123, - "y": 103.3817 - }, - { - "l": "98.0", - "x": 4.5957, - "y": 103.9748 - }, - { - "l": "98.0", - "x": 4.679, - "y": 104.5178 - }, - { - "l": "98.0", - "x": 4.7623, - "y": 105.127 - }, - { - "l": "98.0", - "x": 4.8457, - "y": 105.7194 - }, - { - "l": "98.0", - "x": 4.929, - "y": 106.2601 - }, - { - "l": "98.0", - "x": 5.0123, - "y": 106.8652 - }, - { - "l": "98.0", - "x": 5.0957, - "y": 107.4522 - }, - { - "l": "98.0", - "x": 5.179, - "y": 107.9873 - }, - { - "l": "98.0", - "x": 5.2623, - "y": 108.5858 - }, - { - "l": "98.0", - "x": 5.3457, - "y": 109.1666 - }, - { - "l": "98.0", - "x": 5.429, - "y": 109.6962 - }, - { - "l": "98.0", - "x": 5.5123, - "y": 110.2887 - }, - { - "l": "98.0", - "x": 5.5957, - "y": 110.8631 - }, - { - "l": "98.0", - "x": 5.679, - "y": 111.3863 - }, - { - "l": "98.0", - "x": 5.7623, - "y": 111.9712 - }, - { - "l": "98.0", - "x": 5.8457, - "y": 112.538 - }, - { - "l": "98.0", - "x": 5.929, - "y": 113.0539 - }, - { - "l": "98.0", - "x": 6.0123, - "y": 113.6306 - }, - { - "l": "98.0", - "x": 6.0957, - "y": 114.1897 - }, - { - "l": "98.0", - "x": 6.179, - "y": 114.6994 - }, - { - "l": "98.0", - "x": 6.2623, - "y": 115.2697 - }, - { - "l": "98.0", - "x": 6.3457, - "y": 115.8232 - }, - { - "l": "98.0", - "x": 6.429, - "y": 116.3282 - }, - { - "l": "98.0", - "x": 6.5123, - "y": 116.8937 - }, - { - "l": "98.0", - "x": 6.5957, - "y": 117.4432 - }, - { - "l": "98.0", - "x": 6.679, - "y": 117.9453 - }, - { - "l": "98.0", - "x": 6.7623, - "y": 118.5083 - }, - { - "l": "98.0", - "x": 6.8457, - "y": 119.0561 - }, - { - "l": "98.0", - "x": 6.929, - "y": 119.557 - }, - { - "l": "98.0", - "x": 7.0123, - "y": 120.1187 - }, - { - "l": "98.0", - "x": 7.0957, - "y": 120.665 - }, - { - "l": "98.0", - "x": 7.179, - "y": 121.1644 - }, - { - "l": "98.0", - "x": 7.2623, - "y": 121.7242 - }, - { - "l": "98.0", - "x": 7.3457, - "y": 122.268 - }, - { - "l": "98.0", - "x": 7.429, - "y": 122.7643 - }, - { - "l": "98.0", - "x": 7.5123, - "y": 123.3197 - }, - { - "l": "98.0", - "x": 7.5957, - "y": 123.858 - }, - { - "l": "98.0", - "x": 7.679, - "y": 124.3486 - }, - { - "l": "98.0", - "x": 7.7623, - "y": 124.8972 - }, - { - "l": "98.0", - "x": 7.8457, - "y": 125.4294 - }, - { - "l": "98.0", - "x": 7.929, - "y": 125.9149 - }, - { - "l": "98.0", - "x": 8.0123, - "y": 126.4589 - }, - { - "l": "98.0", - "x": 8.0957, - "y": 126.9877 - }, - { - "l": "98.0", - "x": 8.179, - "y": 127.4712 - }, - { - "l": "98.0", - "x": 8.2623, - "y": 128.0133 - }, - { - "l": "98.0", - "x": 8.3457, - "y": 128.5407 - }, - { - "l": "98.0", - "x": 8.429, - "y": 129.0227 - }, - { - "l": "98.0", - "x": 8.5123, - "y": 129.563 - }, - { - "l": "98.0", - "x": 8.5957, - "y": 130.0881 - }, - { - "l": "98.0", - "x": 8.679, - "y": 130.5673 - }, - { - "l": "98.0", - "x": 8.7623, - "y": 131.1038 - }, - { - "l": "98.0", - "x": 8.8457, - "y": 131.6247 - }, - { - "l": "98.0", - "x": 8.929, - "y": 132.0999 - }, - { - "l": "98.0", - "x": 9.0123, - "y": 132.6315 - }, - { - "l": "98.0", - "x": 9.0957, - "y": 133.1474 - }, - { - "l": "98.0", - "x": 9.179, - "y": 133.618 - }, - { - "l": "98.0", - "x": 9.2623, - "y": 134.1446 - }, - { - "l": "98.0", - "x": 9.3457, - "y": 134.6554 - }, - { - "l": "98.0", - "x": 9.429, - "y": 135.1212 - }, - { - "l": "98.0", - "x": 9.5123, - "y": 135.6421 - }, - { - "l": "98.0", - "x": 9.5957, - "y": 136.1475 - }, - { - "l": "98.0", - "x": 9.679, - "y": 136.6083 - }, - { - "l": "98.0", - "x": 9.7623, - "y": 137.1239 - }, - { - "l": "98.0", - "x": 9.8457, - "y": 137.6244 - }, - { - "l": "98.0", - "x": 9.929, - "y": 138.0809 - }, - { - "l": "98.0", - "x": 10.0123, - "y": 138.5918 - }, - { - "l": "98.0", - "x": 10.0957, - "y": 139.0872 - }, - { - "l": "98.0", - "x": 10.179, - "y": 139.5387 - }, - { - "l": "98.0", - "x": 10.2623, - "y": 140.043 - }, - { - "l": "98.0", - "x": 10.3457, - "y": 140.5315 - }, - { - "l": "98.0", - "x": 10.429, - "y": 140.9759 - }, - { - "l": "98.0", - "x": 10.5123, - "y": 141.4716 - }, - { - "l": "98.0", - "x": 10.5957, - "y": 141.9509 - }, - { - "l": "98.0", - "x": 10.679, - "y": 142.3859 - }, - { - "l": "98.0", - "x": 10.7623, - "y": 142.8699 - }, - { - "l": "98.0", - "x": 10.8457, - "y": 143.3365 - }, - { - "l": "98.0", - "x": 10.929, - "y": 143.7588 - }, - { - "l": "98.0", - "x": 11.0123, - "y": 144.2275 - }, - { - "l": "98.0", - "x": 11.0957, - "y": 144.6778 - }, - { - "l": "98.0", - "x": 11.179, - "y": 145.0839 - }, - { - "l": "98.0", - "x": 11.2623, - "y": 145.532 - }, - { - "l": "98.0", - "x": 11.3457, - "y": 145.9614 - }, - { - "l": "98.0", - "x": 11.429, - "y": 146.3461 - }, - { - "l": "98.0", - "x": 11.5123, - "y": 146.769 - }, - { - "l": "98.0", - "x": 11.5957, - "y": 147.1717 - }, - { - "l": "98.0", - "x": 11.679, - "y": 147.5312 - }, - { - "l": "98.0", - "x": 11.7623, - "y": 147.9253 - }, - { - "l": "98.0", - "x": 11.8457, - "y": 148.2992 - }, - { - "l": "98.0", - "x": 11.929, - "y": 148.6324 - }, - { - "l": "98.0", - "x": 12.0123, - "y": 148.9967 - }, - { - "l": "98.0", - "x": 12.0957, - "y": 149.3415 - }, - { - "l": "98.0", - "x": 12.179, - "y": 149.6478 - }, - { - "l": "98.0", - "x": 12.2623, - "y": 149.983 - }, - { - "l": "98.0", - "x": 12.3457, - "y": 150.2994 - }, - { - "l": "98.0", - "x": 12.429, - "y": 150.5805 - }, - { - "l": "98.0", - "x": 12.5123, - "y": 150.887 - }, - { - "l": "98.0", - "x": 12.5957, - "y": 151.1764 - }, - { - "l": "98.0", - "x": 12.679, - "y": 151.4344 - }, - { - "l": "98.0", - "x": 12.7623, - "y": 151.7154 - }, - { - "l": "98.0", - "x": 12.8457, - "y": 151.9806 - }, - { - "l": "98.0", - "x": 12.929, - "y": 152.2173 - }, - { - "l": "98.0", - "x": 13.0123, - "y": 152.4752 - }, - { - "l": "98.0", - "x": 13.0957, - "y": 152.7186 - }, - { - "l": "98.0", - "x": 13.179, - "y": 152.9352 - }, - { - "l": "98.0", - "x": 13.2623, - "y": 153.1714 - }, - { - "l": "98.0", - "x": 13.3457, - "y": 153.3943 - }, - { - "l": "98.0", - "x": 13.429, - "y": 153.5917 - }, - { - "l": "98.0", - "x": 13.5123, - "y": 153.8068 - }, - { - "l": "98.0", - "x": 13.5957, - "y": 154.0098 - }, - { - "l": "98.0", - "x": 13.679, - "y": 154.189 - }, - { - "l": "98.0", - "x": 13.7623, - "y": 154.3839 - }, - { - "l": "98.0", - "x": 13.8457, - "y": 154.5683 - }, - { - "l": "98.0", - "x": 13.929, - "y": 154.7308 - }, - { - "l": "98.0", - "x": 14.0123, - "y": 154.9072 - }, - { - "l": "98.0", - "x": 14.0957, - "y": 155.0731 - }, - { - "l": "98.0", - "x": 14.179, - "y": 155.2194 - }, - { - "l": "98.0", - "x": 14.2623, - "y": 155.3779 - }, - { - "l": "98.0", - "x": 14.3457, - "y": 155.5267 - }, - { - "l": "98.0", - "x": 14.429, - "y": 155.6576 - }, - { - "l": "98.0", - "x": 14.5123, - "y": 155.7992 - }, - { - "l": "98.0", - "x": 14.5957, - "y": 155.9315 - }, - { - "l": "98.0", - "x": 14.679, - "y": 156.049 - }, - { - "l": "98.0", - "x": 14.7623, - "y": 156.1752 - }, - { - "l": "98.0", - "x": 14.8457, - "y": 156.2932 - }, - { - "l": "98.0", - "x": 14.929, - "y": 156.3968 - }, - { - "l": "98.0", - "x": 15.0123, - "y": 156.5076 - }, - { - "l": "98.0", - "x": 15.0957, - "y": 156.6126 - }, - { - "l": "98.0", - "x": 15.179, - "y": 156.7037 - }, - { - "l": "98.0", - "x": 15.2623, - "y": 156.802 - }, - { - "l": "98.0", - "x": 15.3457, - "y": 156.8932 - }, - { - "l": "98.0", - "x": 15.429, - "y": 156.9717 - }, - { - "l": "98.0", - "x": 15.5123, - "y": 157.0571 - }, - { - "l": "98.0", - "x": 15.5957, - "y": 157.139 - }, - { - "l": "98.0", - "x": 15.679, - "y": 157.2088 - }, - { - "l": "98.0", - "x": 15.7623, - "y": 157.2842 - }, - { - "l": "98.0", - "x": 15.8457, - "y": 157.3543 - }, - { - "l": "98.0", - "x": 15.929, - "y": 157.4161 - }, - { - "l": "98.0", - "x": 16.0123, - "y": 157.4828 - }, - { - "l": "98.0", - "x": 16.0957, - "y": 157.5449 - }, - { - "l": "98.0", - "x": 16.179, - "y": 157.5997 - }, - { - "l": "98.0", - "x": 16.2623, - "y": 157.6587 - }, - { - "l": "98.0", - "x": 16.3457, - "y": 157.7143 - }, - { - "l": "98.0", - "x": 16.429, - "y": 157.7628 - }, - { - "l": "98.0", - "x": 16.5123, - "y": 157.8148 - }, - { - "l": "98.0", - "x": 16.5957, - "y": 157.8645 - }, - { - "l": "98.0", - "x": 16.679, - "y": 157.9083 - }, - { - "l": "98.0", - "x": 16.7623, - "y": 157.9554 - }, - { - "l": "98.0", - "x": 16.8457, - "y": 157.9998 - }, - { - "l": "98.0", - "x": 16.929, - "y": 158.0394 - }, - { - "l": "98.0", - "x": 17.0123, - "y": 158.0828 - }, - { - "l": "98.0", - "x": 17.0957, - "y": 158.1242 - }, - { - "l": "98.0", - "x": 17.179, - "y": 158.1615 - }, - { - "l": "98.0", - "x": 17.2623, - "y": 158.2028 - }, - { - "l": "98.0", - "x": 17.3457, - "y": 158.2425 - }, - { - "l": "98.0", - "x": 17.429, - "y": 158.2787 - }, - { - "l": "98.0", - "x": 17.5123, - "y": 158.3189 - }, - { - "l": "98.0", - "x": 17.5957, - "y": 158.3579 - }, - { - "l": "98.0", - "x": 17.679, - "y": 158.3935 - }, - { - "l": "98.0", - "x": 17.7623, - "y": 158.4335 - }, - { - "l": "98.0", - "x": 17.8457, - "y": 158.4724 - }, - { - "l": "98.0", - "x": 17.929, - "y": 158.5081 - }, - { - "l": "98.0", - "x": 18.0123, - "y": 158.5483 - }, - { - "l": "98.0", - "x": 18.0957, - "y": 158.5878 - }, - { - "l": "98.0", - "x": 18.179, - "y": 158.624 - }, - { - "l": "98.0", - "x": 18.2623, - "y": 158.6646 - }, - { - "l": "98.0", - "x": 18.3457, - "y": 158.7047 - }, - { - "l": "98.0", - "x": 18.429, - "y": 158.7417 - }, - { - "l": "98.0", - "x": 18.5123, - "y": 158.7834 - }, - { - "l": "98.0", - "x": 18.5957, - "y": 158.8243 - }, - { - "l": "98.0", - "x": 18.679, - "y": 158.862 - }, - { - "l": "98.0", - "x": 18.7623, - "y": 158.9045 - }, - { - "l": "98.0", - "x": 18.8457, - "y": 158.9458 - }, - { - "l": "98.0", - "x": 18.929, - "y": 158.9837 - }, - { - "l": "98.0", - "x": 19.0123, - "y": 159.0262 - }, - { - "l": "98.0", - "x": 19.0957, - "y": 159.0679 - }, - { - "l": "98.0", - "x": 19.179, - "y": 159.1057 - }, - { - "l": "98.0", - "x": 19.2623, - "y": 159.1459 - }, - { - "l": "98.0", - "x": 19.3457, - "y": 159.185 - }, - { - "l": "98.0", - "x": 19.429, - "y": 159.2208 - }, - { - "l": "98.0", - "x": 19.5123, - "y": 159.261 - }, - { - "l": "98.0", - "x": 19.5957, - "y": 159.3002 - }, - { - "l": "98.0", - "x": 19.679, - "y": 159.336 - }, - { - "l": "98.0", - "x": 19.7623, - "y": 159.3761 - }, - { - "l": "98.0", - "x": 19.8457, - "y": 159.4152 - }, - { - "l": "98.0", - "x": 19.929, - "y": 159.4511 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 0.0, - "y": 55.674 - }, - { - "l": "99.6", - "x": 0.0192, - "y": 56.2779 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 56.8817 - }, - { - "l": "99.6", - "x": 0.0575, - "y": 57.4852 - }, - { - "l": "99.6", - "x": 0.0767, - "y": 58.0885 - }, - { - "l": "99.6", - "x": 0.0958, - "y": 58.6398 - }, - { - "l": "99.6", - "x": 0.115, - "y": 59.1687 - }, - { - "l": "99.6", - "x": 0.1342, - "y": 59.6912 - }, - { - "l": "99.6", - "x": 0.1533, - "y": 60.2136 - }, - { - "l": "99.6", - "x": 0.1725, - "y": 60.7467 - }, - { - "l": "99.6", - "x": 0.1916, - "y": 61.3183 - }, - { - "l": "99.6", - "x": 0.2108, - "y": 61.8955 - }, - { - "l": "99.6", - "x": 0.23, - "y": 62.4744 - }, - { - "l": "99.6", - "x": 0.2491, - "y": 63.051 - }, - { - "l": "99.6", - "x": 0.2683, - "y": 63.6197 - }, - { - "l": "99.6", - "x": 0.2875, - "y": 64.1788 - }, - { - "l": "99.6", - "x": 0.3066, - "y": 64.7251 - }, - { - "l": "99.6", - "x": 0.3258, - "y": 65.2553 - }, - { - "l": "99.6", - "x": 0.345, - "y": 65.7436 - }, - { - "l": "99.6", - "x": 0.3641, - "y": 66.2083 - }, - { - "l": "99.6", - "x": 0.3833, - "y": 66.6615 - }, - { - "l": "99.6", - "x": 0.4025, - "y": 67.1089 - }, - { - "l": "99.6", - "x": 0.4216, - "y": 67.5586 - }, - { - "l": "99.6", - "x": 0.4408, - "y": 68.0374 - }, - { - "l": "99.6", - "x": 0.46, - "y": 68.5162 - }, - { - "l": "99.6", - "x": 0.4791, - "y": 68.9918 - }, - { - "l": "99.6", - "x": 0.4983, - "y": 69.4611 - }, - { - "l": "99.6", - "x": 0.5175, - "y": 69.918 - }, - { - "l": "99.6", - "x": 0.5366, - "y": 70.3629 - }, - { - "l": "99.6", - "x": 0.5558, - "y": 70.7941 - }, - { - "l": "99.6", - "x": 0.5749, - "y": 71.2093 - }, - { - "l": "99.6", - "x": 0.5941, - "y": 71.5905 - }, - { - "l": "99.6", - "x": 0.6133, - "y": 71.9497 - }, - { - "l": "99.6", - "x": 0.6324, - "y": 72.2975 - }, - { - "l": "99.6", - "x": 0.6516, - "y": 72.6385 - }, - { - "l": "99.6", - "x": 0.6708, - "y": 72.9783 - }, - { - "l": "99.6", - "x": 0.6899, - "y": 73.3405 - }, - { - "l": "99.6", - "x": 0.7091, - "y": 73.7016 - }, - { - "l": "99.6", - "x": 0.7283, - "y": 74.0596 - }, - { - "l": "99.6", - "x": 0.7474, - "y": 74.4121 - }, - { - "l": "99.6", - "x": 0.7666, - "y": 74.7551 - }, - { - "l": "99.6", - "x": 0.7858, - "y": 75.0888 - }, - { - "l": "99.6", - "x": 0.8049, - "y": 75.412 - }, - { - "l": "99.6", - "x": 0.8241, - "y": 75.7234 - }, - { - "l": "99.6", - "x": 0.8433, - "y": 76.0103 - }, - { - "l": "99.6", - "x": 0.8624, - "y": 76.2803 - }, - { - "l": "99.6", - "x": 0.8816, - "y": 76.5419 - }, - { - "l": "99.6", - "x": 0.9008, - "y": 76.799 - }, - { - "l": "99.6", - "x": 0.9199, - "y": 77.055 - }, - { - "l": "99.6", - "x": 0.9391, - "y": 77.3294 - }, - { - "l": "99.6", - "x": 0.9582, - "y": 77.604 - }, - { - "l": "99.6", - "x": 0.9774, - "y": 77.8773 - }, - { - "l": "99.6", - "x": 0.9966, - "y": 78.1477 - }, - { - "l": "99.6", - "x": 1.0157, - "y": 78.4125 - }, - { - "l": "99.6", - "x": 1.0349, - "y": 78.6714 - }, - { - "l": "99.6", - "x": 1.0541, - "y": 78.9235 - }, - { - "l": "99.6", - "x": 1.0732, - "y": 79.1676 - }, - { - "l": "99.6", - "x": 1.0924, - "y": 79.3944 - }, - { - "l": "99.6", - "x": 1.1116, - "y": 79.6084 - }, - { - "l": "99.6", - "x": 1.1307, - "y": 79.817 - }, - { - "l": "99.6", - "x": 1.1499, - "y": 80.0231 - }, - { - "l": "99.6", - "x": 1.1691, - "y": 80.2296 - }, - { - "l": "99.6", - "x": 1.1882, - "y": 80.4513 - }, - { - "l": "99.6", - "x": 1.2074, - "y": 80.675 - }, - { - "l": "99.6", - "x": 1.2266, - "y": 80.8989 - }, - { - "l": "99.6", - "x": 1.2457, - "y": 81.1216 - }, - { - "l": "99.6", - "x": 1.2649, - "y": 81.3413 - }, - { - "l": "99.6", - "x": 1.2841, - "y": 81.5573 - }, - { - "l": "99.6", - "x": 1.3032, - "y": 81.7687 - }, - { - "l": "99.6", - "x": 1.3224, - "y": 81.9744 - }, - { - "l": "99.6", - "x": 1.3415, - "y": 82.1667 - }, - { - "l": "99.6", - "x": 1.3607, - "y": 82.3482 - }, - { - "l": "99.6", - "x": 1.3799, - "y": 82.5259 - }, - { - "l": "99.6", - "x": 1.399, - "y": 82.702 - }, - { - "l": "99.6", - "x": 1.4182, - "y": 82.8789 - }, - { - "l": "99.6", - "x": 1.4374, - "y": 83.0689 - }, - { - "l": "99.6", - "x": 1.4565, - "y": 83.2617 - }, - { - "l": "99.6", - "x": 1.4757, - "y": 83.4551 - }, - { - "l": "99.6", - "x": 1.4949, - "y": 83.648 - }, - { - "l": "99.6", - "x": 1.514, - "y": 83.8388 - }, - { - "l": "99.6", - "x": 1.5332, - "y": 84.0267 - }, - { - "l": "99.6", - "x": 1.5524, - "y": 84.211 - }, - { - "l": "99.6", - "x": 1.5715, - "y": 84.3908 - }, - { - "l": "99.6", - "x": 1.5907, - "y": 84.5596 - }, - { - "l": "99.6", - "x": 1.6099, - "y": 84.7189 - }, - { - "l": "99.6", - "x": 1.629, - "y": 84.875 - }, - { - "l": "99.6", - "x": 1.6482, - "y": 85.0302 - }, - { - "l": "99.6", - "x": 1.6674, - "y": 85.1865 - }, - { - "l": "99.6", - "x": 1.6865, - "y": 85.3543 - }, - { - "l": "99.6", - "x": 1.7057, - "y": 85.5256 - }, - { - "l": "99.6", - "x": 1.7248, - "y": 85.6981 - }, - { - "l": "99.6", - "x": 1.744, - "y": 85.8709 - }, - { - "l": "99.6", - "x": 1.7632, - "y": 86.0427 - }, - { - "l": "99.6", - "x": 1.7823, - "y": 86.2127 - }, - { - "l": "99.6", - "x": 1.8015, - "y": 86.3803 - }, - { - "l": "99.6", - "x": 1.8207, - "y": 86.5444 - }, - { - "l": "99.6", - "x": 1.8398, - "y": 86.6994 - }, - { - "l": "99.6", - "x": 1.859, - "y": 86.8459 - }, - { - "l": "99.6", - "x": 1.8782, - "y": 86.9901 - }, - { - "l": "99.6", - "x": 1.8973, - "y": 87.1338 - }, - { - "l": "99.6", - "x": 1.9165, - "y": 87.2791 - }, - { - "l": "99.6", - "x": 1.9357, - "y": 87.4349 - }, - { - "l": "99.6", - "x": 1.9548, - "y": 87.5949 - }, - { - "l": "99.6", - "x": 1.974, - "y": 87.7565 - }, - { - "l": "99.6", - "x": 1.9932, - "y": 87.9187 - }, - { - "l": "99.6", - "x": 2.0123, - "y": 88.0805 - }, - { - "l": "99.6", - "x": 2.0957, - "y": 88.7514 - }, - { - "l": "99.6", - "x": 2.179, - "y": 89.3562 - }, - { - "l": "99.6", - "x": 2.2623, - "y": 90.0267 - }, - { - "l": "99.6", - "x": 2.3457, - "y": 90.6722 - }, - { - "l": "99.6", - "x": 2.429, - "y": 91.2575 - }, - { - "l": "99.6", - "x": 2.5123, - "y": 91.91 - }, - { - "l": "99.6", - "x": 2.5957, - "y": 92.5411 - }, - { - "l": "99.6", - "x": 2.679, - "y": 93.1148 - }, - { - "l": "99.6", - "x": 2.7623, - "y": 93.7546 - }, - { - "l": "99.6", - "x": 2.8457, - "y": 94.3729 - }, - { - "l": "99.6", - "x": 2.929, - "y": 94.9345 - }, - { - "l": "99.6", - "x": 3.0123, - "y": 95.5611 - }, - { - "l": "99.6", - "x": 3.0957, - "y": 96.1679 - }, - { - "l": "99.6", - "x": 3.179, - "y": 96.7211 - }, - { - "l": "99.6", - "x": 3.2623, - "y": 97.3408 - }, - { - "l": "99.6", - "x": 3.3457, - "y": 97.9437 - }, - { - "l": "99.6", - "x": 3.429, - "y": 98.4957 - }, - { - "l": "99.6", - "x": 3.5123, - "y": 99.1158 - }, - { - "l": "99.6", - "x": 3.5957, - "y": 99.7206 - }, - { - "l": "99.6", - "x": 3.679, - "y": 100.2752 - }, - { - "l": "99.6", - "x": 3.7623, - "y": 100.899 - }, - { - "l": "99.6", - "x": 3.8457, - "y": 101.5074 - }, - { - "l": "99.6", - "x": 3.929, - "y": 102.0648 - }, - { - "l": "99.6", - "x": 4.0123, - "y": 102.6908 - }, - { - "l": "99.6", - "x": 4.0957, - "y": 103.3007 - }, - { - "l": "99.6", - "x": 4.179, - "y": 103.8591 - }, - { - "l": "99.6", - "x": 4.2623, - "y": 104.4863 - }, - { - "l": "99.6", - "x": 4.3457, - "y": 105.0977 - }, - { - "l": "99.6", - "x": 4.429, - "y": 105.658 - }, - { - "l": "99.6", - "x": 4.5123, - "y": 106.2878 - }, - { - "l": "99.6", - "x": 4.5957, - "y": 106.9017 - }, - { - "l": "99.6", - "x": 4.679, - "y": 107.4636 - }, - { - "l": "99.6", - "x": 4.7623, - "y": 108.094 - }, - { - "l": "99.6", - "x": 4.8457, - "y": 108.707 - }, - { - "l": "99.6", - "x": 4.929, - "y": 109.2666 - }, - { - "l": "99.6", - "x": 5.0123, - "y": 109.8927 - }, - { - "l": "99.6", - "x": 5.0957, - "y": 110.5 - }, - { - "l": "99.6", - "x": 5.179, - "y": 111.0536 - }, - { - "l": "99.6", - "x": 5.2623, - "y": 111.6728 - }, - { - "l": "99.6", - "x": 5.3457, - "y": 112.2737 - }, - { - "l": "99.6", - "x": 5.429, - "y": 112.8214 - }, - { - "l": "99.6", - "x": 5.5123, - "y": 113.4342 - }, - { - "l": "99.6", - "x": 5.5957, - "y": 114.0283 - }, - { - "l": "99.6", - "x": 5.679, - "y": 114.5694 - }, - { - "l": "99.6", - "x": 5.7623, - "y": 115.1743 - }, - { - "l": "99.6", - "x": 5.8457, - "y": 115.7602 - }, - { - "l": "99.6", - "x": 5.929, - "y": 116.2937 - }, - { - "l": "99.6", - "x": 6.0123, - "y": 116.8899 - }, - { - "l": "99.6", - "x": 6.0957, - "y": 117.4679 - }, - { - "l": "99.6", - "x": 6.179, - "y": 117.9948 - }, - { - "l": "99.6", - "x": 6.2623, - "y": 118.5843 - }, - { - "l": "99.6", - "x": 6.3457, - "y": 119.1563 - }, - { - "l": "99.6", - "x": 6.429, - "y": 119.6783 - }, - { - "l": "99.6", - "x": 6.5123, - "y": 120.2628 - }, - { - "l": "99.6", - "x": 6.5957, - "y": 120.8306 - }, - { - "l": "99.6", - "x": 6.679, - "y": 121.3494 - }, - { - "l": "99.6", - "x": 6.7623, - "y": 121.9311 - }, - { - "l": "99.6", - "x": 6.8457, - "y": 122.4971 - }, - { - "l": "99.6", - "x": 6.929, - "y": 123.0146 - }, - { - "l": "99.6", - "x": 7.0123, - "y": 123.5949 - }, - { - "l": "99.6", - "x": 7.0957, - "y": 124.1593 - }, - { - "l": "99.6", - "x": 7.179, - "y": 124.6751 - }, - { - "l": "99.6", - "x": 7.2623, - "y": 125.2532 - }, - { - "l": "99.6", - "x": 7.3457, - "y": 125.8149 - }, - { - "l": "99.6", - "x": 7.429, - "y": 126.3274 - }, - { - "l": "99.6", - "x": 7.5123, - "y": 126.9008 - }, - { - "l": "99.6", - "x": 7.5957, - "y": 127.4567 - }, - { - "l": "99.6", - "x": 7.679, - "y": 127.9631 - }, - { - "l": "99.6", - "x": 7.7623, - "y": 128.5293 - }, - { - "l": "99.6", - "x": 7.8457, - "y": 129.0785 - }, - { - "l": "99.6", - "x": 7.929, - "y": 129.5795 - }, - { - "l": "99.6", - "x": 8.0123, - "y": 130.1407 - }, - { - "l": "99.6", - "x": 8.0957, - "y": 130.6861 - }, - { - "l": "99.6", - "x": 8.179, - "y": 131.1846 - }, - { - "l": "99.6", - "x": 8.2623, - "y": 131.7436 - }, - { - "l": "99.6", - "x": 8.3457, - "y": 132.2871 - }, - { - "l": "99.6", - "x": 8.429, - "y": 132.7838 - }, - { - "l": "99.6", - "x": 8.5123, - "y": 133.3404 - }, - { - "l": "99.6", - "x": 8.5957, - "y": 133.8811 - }, - { - "l": "99.6", - "x": 8.679, - "y": 134.3745 - }, - { - "l": "99.6", - "x": 8.7623, - "y": 134.9267 - }, - { - "l": "99.6", - "x": 8.8457, - "y": 135.4626 - }, - { - "l": "99.6", - "x": 8.929, - "y": 135.9513 - }, - { - "l": "99.6", - "x": 9.0123, - "y": 136.4978 - }, - { - "l": "99.6", - "x": 9.0957, - "y": 137.0281 - }, - { - "l": "99.6", - "x": 9.179, - "y": 137.5115 - }, - { - "l": "99.6", - "x": 9.2623, - "y": 138.0523 - }, - { - "l": "99.6", - "x": 9.3457, - "y": 138.5766 - }, - { - "l": "99.6", - "x": 9.429, - "y": 139.0546 - }, - { - "l": "99.6", - "x": 9.5123, - "y": 139.5888 - }, - { - "l": "99.6", - "x": 9.5957, - "y": 140.1069 - }, - { - "l": "99.6", - "x": 9.679, - "y": 140.579 - }, - { - "l": "99.6", - "x": 9.7623, - "y": 141.107 - }, - { - "l": "99.6", - "x": 9.8457, - "y": 141.6192 - }, - { - "l": "99.6", - "x": 9.929, - "y": 142.0861 - }, - { - "l": "99.6", - "x": 10.0123, - "y": 142.6084 - }, - { - "l": "99.6", - "x": 10.0957, - "y": 143.1146 - }, - { - "l": "99.6", - "x": 10.179, - "y": 143.5755 - }, - { - "l": "99.6", - "x": 10.2623, - "y": 144.0902 - }, - { - "l": "99.6", - "x": 10.3457, - "y": 144.5883 - }, - { - "l": "99.6", - "x": 10.429, - "y": 145.0412 - }, - { - "l": "99.6", - "x": 10.5123, - "y": 145.5461 - }, - { - "l": "99.6", - "x": 10.5957, - "y": 146.0339 - }, - { - "l": "99.6", - "x": 10.679, - "y": 146.4763 - }, - { - "l": "99.6", - "x": 10.7623, - "y": 146.9681 - }, - { - "l": "99.6", - "x": 10.8457, - "y": 147.4421 - }, - { - "l": "99.6", - "x": 10.929, - "y": 147.8706 - }, - { - "l": "99.6", - "x": 11.0123, - "y": 148.3459 - }, - { - "l": "99.6", - "x": 11.0957, - "y": 148.8023 - }, - { - "l": "99.6", - "x": 11.179, - "y": 149.2135 - }, - { - "l": "99.6", - "x": 11.2623, - "y": 149.667 - }, - { - "l": "99.6", - "x": 11.3457, - "y": 150.1011 - }, - { - "l": "99.6", - "x": 11.429, - "y": 150.49 - }, - { - "l": "99.6", - "x": 11.5123, - "y": 150.917 - }, - { - "l": "99.6", - "x": 11.5957, - "y": 151.3233 - }, - { - "l": "99.6", - "x": 11.679, - "y": 151.6859 - }, - { - "l": "99.6", - "x": 11.7623, - "y": 152.0831 - }, - { - "l": "99.6", - "x": 11.8457, - "y": 152.4596 - }, - { - "l": "99.6", - "x": 11.929, - "y": 152.7949 - }, - { - "l": "99.6", - "x": 12.0123, - "y": 153.1613 - }, - { - "l": "99.6", - "x": 12.0957, - "y": 153.5079 - }, - { - "l": "99.6", - "x": 12.179, - "y": 153.8156 - }, - { - "l": "99.6", - "x": 12.2623, - "y": 154.1521 - }, - { - "l": "99.6", - "x": 12.3457, - "y": 154.4696 - }, - { - "l": "99.6", - "x": 12.429, - "y": 154.7516 - }, - { - "l": "99.6", - "x": 12.5123, - "y": 155.0589 - }, - { - "l": "99.6", - "x": 12.5957, - "y": 155.3488 - }, - { - "l": "99.6", - "x": 12.679, - "y": 155.6073 - }, - { - "l": "99.6", - "x": 12.7623, - "y": 155.8886 - }, - { - "l": "99.6", - "x": 12.8457, - "y": 156.154 - }, - { - "l": "99.6", - "x": 12.929, - "y": 156.3908 - }, - { - "l": "99.6", - "x": 13.0123, - "y": 156.6487 - }, - { - "l": "99.6", - "x": 13.0957, - "y": 156.8921 - }, - { - "l": "99.6", - "x": 13.179, - "y": 157.1085 - }, - { - "l": "99.6", - "x": 13.2623, - "y": 157.3446 - }, - { - "l": "99.6", - "x": 13.3457, - "y": 157.5672 - }, - { - "l": "99.6", - "x": 13.429, - "y": 157.7644 - }, - { - "l": "99.6", - "x": 13.5123, - "y": 157.9791 - }, - { - "l": "99.6", - "x": 13.5957, - "y": 158.1818 - }, - { - "l": "99.6", - "x": 13.679, - "y": 158.3606 - }, - { - "l": "99.6", - "x": 13.7623, - "y": 158.5551 - }, - { - "l": "99.6", - "x": 13.8457, - "y": 158.739 - }, - { - "l": "99.6", - "x": 13.929, - "y": 158.9012 - }, - { - "l": "99.6", - "x": 14.0123, - "y": 159.0771 - }, - { - "l": "99.6", - "x": 14.0957, - "y": 159.2425 - }, - { - "l": "99.6", - "x": 14.179, - "y": 159.3884 - }, - { - "l": "99.6", - "x": 14.2623, - "y": 159.5464 - }, - { - "l": "99.6", - "x": 14.3457, - "y": 159.6947 - }, - { - "l": "99.6", - "x": 14.429, - "y": 159.8252 - }, - { - "l": "99.6", - "x": 14.5123, - "y": 159.9663 - }, - { - "l": "99.6", - "x": 14.5957, - "y": 160.0981 - }, - { - "l": "99.6", - "x": 14.679, - "y": 160.2152 - }, - { - "l": "99.6", - "x": 14.7623, - "y": 160.3409 - }, - { - "l": "99.6", - "x": 14.8457, - "y": 160.4584 - }, - { - "l": "99.6", - "x": 14.929, - "y": 160.5616 - }, - { - "l": "99.6", - "x": 15.0123, - "y": 160.672 - }, - { - "l": "99.6", - "x": 15.0957, - "y": 160.7766 - }, - { - "l": "99.6", - "x": 15.179, - "y": 160.8673 - }, - { - "l": "99.6", - "x": 15.2623, - "y": 160.9651 - }, - { - "l": "99.6", - "x": 15.3457, - "y": 161.0559 - }, - { - "l": "99.6", - "x": 15.429, - "y": 161.1341 - }, - { - "l": "99.6", - "x": 15.5123, - "y": 161.2191 - }, - { - "l": "99.6", - "x": 15.5957, - "y": 161.3006 - }, - { - "l": "99.6", - "x": 15.679, - "y": 161.3702 - }, - { - "l": "99.6", - "x": 15.7623, - "y": 161.4452 - }, - { - "l": "99.6", - "x": 15.8457, - "y": 161.515 - }, - { - "l": "99.6", - "x": 15.929, - "y": 161.5765 - }, - { - "l": "99.6", - "x": 16.0123, - "y": 161.6429 - }, - { - "l": "99.6", - "x": 16.0957, - "y": 161.7047 - }, - { - "l": "99.6", - "x": 16.179, - "y": 161.7592 - }, - { - "l": "99.6", - "x": 16.2623, - "y": 161.818 - }, - { - "l": "99.6", - "x": 16.3457, - "y": 161.8733 - }, - { - "l": "99.6", - "x": 16.429, - "y": 161.9216 - }, - { - "l": "99.6", - "x": 16.5123, - "y": 161.9733 - }, - { - "l": "99.6", - "x": 16.5957, - "y": 162.0228 - }, - { - "l": "99.6", - "x": 16.679, - "y": 162.0664 - }, - { - "l": "99.6", - "x": 16.7623, - "y": 162.1133 - }, - { - "l": "99.6", - "x": 16.8457, - "y": 162.1575 - }, - { - "l": "99.6", - "x": 16.929, - "y": 162.1968 - }, - { - "l": "99.6", - "x": 17.0123, - "y": 162.24 - }, - { - "l": "99.6", - "x": 17.0957, - "y": 162.2812 - }, - { - "l": "99.6", - "x": 17.179, - "y": 162.3183 - }, - { - "l": "99.6", - "x": 17.2623, - "y": 162.3594 - }, - { - "l": "99.6", - "x": 17.3457, - "y": 162.3989 - }, - { - "l": "99.6", - "x": 17.429, - "y": 162.4349 - }, - { - "l": "99.6", - "x": 17.5123, - "y": 162.4749 - }, - { - "l": "99.6", - "x": 17.5957, - "y": 162.5137 - }, - { - "l": "99.6", - "x": 17.679, - "y": 162.5491 - }, - { - "l": "99.6", - "x": 17.7623, - "y": 162.5888 - }, - { - "l": "99.6", - "x": 17.8457, - "y": 162.6276 - }, - { - "l": "99.6", - "x": 17.929, - "y": 162.6631 - }, - { - "l": "99.6", - "x": 18.0123, - "y": 162.7031 - }, - { - "l": "99.6", - "x": 18.0957, - "y": 162.7424 - }, - { - "l": "99.6", - "x": 18.179, - "y": 162.7784 - }, - { - "l": "99.6", - "x": 18.2623, - "y": 162.8188 - }, - { - "l": "99.6", - "x": 18.3457, - "y": 162.8587 - }, - { - "l": "99.6", - "x": 18.429, - "y": 162.8954 - }, - { - "l": "99.6", - "x": 18.5123, - "y": 162.9369 - }, - { - "l": "99.6", - "x": 18.5957, - "y": 162.9776 - }, - { - "l": "99.6", - "x": 18.679, - "y": 163.0151 - }, - { - "l": "99.6", - "x": 18.7623, - "y": 163.0573 - }, - { - "l": "99.6", - "x": 18.8457, - "y": 163.0985 - }, - { - "l": "99.6", - "x": 18.929, - "y": 163.1362 - }, - { - "l": "99.6", - "x": 19.0123, - "y": 163.1784 - }, - { - "l": "99.6", - "x": 19.0957, - "y": 163.2199 - }, - { - "l": "99.6", - "x": 19.179, - "y": 163.2575 - }, - { - "l": "99.6", - "x": 19.2623, - "y": 163.2975 - }, - { - "l": "99.6", - "x": 19.3457, - "y": 163.3364 - }, - { - "l": "99.6", - "x": 19.429, - "y": 163.3719 - }, - { - "l": "99.6", - "x": 19.5123, - "y": 163.4119 - }, - { - "l": "99.6", - "x": 19.5957, - "y": 163.4509 - }, - { - "l": "99.6", - "x": 19.679, - "y": 163.4864 - }, - { - "l": "99.6", - "x": 19.7623, - "y": 163.5264 - }, - { - "l": "99.6", - "x": 19.8457, - "y": 163.5652 - }, - { - "l": "99.6", - "x": 19.929, - "y": 163.6009 - } - ] - } - ], - "weight": null, - "ofc": null, - "bmi": null - } - } - } - ] -}; - -var trisomy21BMIFemaleCentileData = { - "centile_data": [ - { - "trisomy-21": { - "male": null, - "female": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 0.0, - "y": 9.2651 - }, - { - "l": "0.4", - "x": 0.0192, - "y": 9.4597 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 9.6549 - }, - { - "l": "0.4", - "x": 0.0575, - "y": 9.8507 - }, - { - "l": "0.4", - "x": 0.0767, - "y": 10.0471 - }, - { - "l": "0.4", - "x": 0.0958, - "y": 10.2111 - }, - { - "l": "0.4", - "x": 0.115, - "y": 10.3587 - }, - { - "l": "0.4", - "x": 0.1342, - "y": 10.4985 - }, - { - "l": "0.4", - "x": 0.1533, - "y": 10.633 - }, - { - "l": "0.4", - "x": 0.1725, - "y": 10.7666 - }, - { - "l": "0.4", - "x": 0.1916, - "y": 10.9094 - }, - { - "l": "0.4", - "x": 0.2108, - "y": 11.0503 - }, - { - "l": "0.4", - "x": 0.23, - "y": 11.1881 - }, - { - "l": "0.4", - "x": 0.2491, - "y": 11.3218 - }, - { - "l": "0.4", - "x": 0.2683, - "y": 11.449 - }, - { - "l": "0.4", - "x": 0.2875, - "y": 11.5706 - }, - { - "l": "0.4", - "x": 0.3066, - "y": 11.686 - }, - { - "l": "0.4", - "x": 0.3258, - "y": 11.7949 - }, - { - "l": "0.4", - "x": 0.345, - "y": 11.8925 - }, - { - "l": "0.4", - "x": 0.3641, - "y": 11.9824 - }, - { - "l": "0.4", - "x": 0.3833, - "y": 12.0669 - }, - { - "l": "0.4", - "x": 0.4025, - "y": 12.1473 - }, - { - "l": "0.4", - "x": 0.4216, - "y": 12.225 - }, - { - "l": "0.4", - "x": 0.4408, - "y": 12.3054 - }, - { - "l": "0.4", - "x": 0.46, - "y": 12.3829 - }, - { - "l": "0.4", - "x": 0.4791, - "y": 12.4573 - }, - { - "l": "0.4", - "x": 0.4983, - "y": 12.5279 - }, - { - "l": "0.4", - "x": 0.5175, - "y": 12.5931 - }, - { - "l": "0.4", - "x": 0.5366, - "y": 12.654 - }, - { - "l": "0.4", - "x": 0.5558, - "y": 12.7106 - }, - { - "l": "0.4", - "x": 0.5749, - "y": 12.7629 - }, - { - "l": "0.4", - "x": 0.5941, - "y": 12.8095 - }, - { - "l": "0.4", - "x": 0.6133, - "y": 12.8516 - }, - { - "l": "0.4", - "x": 0.6324, - "y": 12.8906 - }, - { - "l": "0.4", - "x": 0.6516, - "y": 12.9271 - }, - { - "l": "0.4", - "x": 0.6708, - "y": 12.9618 - }, - { - "l": "0.4", - "x": 0.6899, - "y": 12.9979 - }, - { - "l": "0.4", - "x": 0.7091, - "y": 13.0324 - }, - { - "l": "0.4", - "x": 0.7283, - "y": 13.0653 - }, - { - "l": "0.4", - "x": 0.7474, - "y": 13.0964 - }, - { - "l": "0.4", - "x": 0.7666, - "y": 13.1251 - }, - { - "l": "0.4", - "x": 0.7858, - "y": 13.1517 - }, - { - "l": "0.4", - "x": 0.8049, - "y": 13.1764 - }, - { - "l": "0.4", - "x": 0.8241, - "y": 13.199 - }, - { - "l": "0.4", - "x": 0.8433, - "y": 13.219 - }, - { - "l": "0.4", - "x": 0.8624, - "y": 13.237 - }, - { - "l": "0.4", - "x": 0.8816, - "y": 13.2534 - }, - { - "l": "0.4", - "x": 0.9008, - "y": 13.2685 - }, - { - "l": "0.4", - "x": 0.9199, - "y": 13.2827 - }, - { - "l": "0.4", - "x": 0.9391, - "y": 13.2972 - }, - { - "l": "0.4", - "x": 0.9582, - "y": 13.3109 - }, - { - "l": "0.4", - "x": 0.9774, - "y": 13.3236 - }, - { - "l": "0.4", - "x": 0.9966, - "y": 13.3355 - }, - { - "l": "0.4", - "x": 1.0157, - "y": 13.3461 - }, - { - "l": "0.4", - "x": 1.0349, - "y": 13.3556 - }, - { - "l": "0.4", - "x": 1.0541, - "y": 13.3642 - }, - { - "l": "0.4", - "x": 1.0732, - "y": 13.3719 - }, - { - "l": "0.4", - "x": 1.0924, - "y": 13.3786 - }, - { - "l": "0.4", - "x": 1.1116, - "y": 13.3844 - }, - { - "l": "0.4", - "x": 1.1307, - "y": 13.3896 - }, - { - "l": "0.4", - "x": 1.1499, - "y": 13.3943 - }, - { - "l": "0.4", - "x": 1.1691, - "y": 13.3986 - }, - { - "l": "0.4", - "x": 1.1882, - "y": 13.403 - }, - { - "l": "0.4", - "x": 1.2074, - "y": 13.4072 - }, - { - "l": "0.4", - "x": 1.2266, - "y": 13.4111 - }, - { - "l": "0.4", - "x": 1.2457, - "y": 13.4147 - }, - { - "l": "0.4", - "x": 1.2649, - "y": 13.4179 - }, - { - "l": "0.4", - "x": 1.2841, - "y": 13.4209 - }, - { - "l": "0.4", - "x": 1.3032, - "y": 13.4236 - }, - { - "l": "0.4", - "x": 1.3224, - "y": 13.426 - }, - { - "l": "0.4", - "x": 1.3415, - "y": 13.4281 - }, - { - "l": "0.4", - "x": 1.3607, - "y": 13.43 - }, - { - "l": "0.4", - "x": 1.3799, - "y": 13.4317 - }, - { - "l": "0.4", - "x": 1.399, - "y": 13.4333 - }, - { - "l": "0.4", - "x": 1.4182, - "y": 13.4347 - }, - { - "l": "0.4", - "x": 1.4374, - "y": 13.4362 - }, - { - "l": "0.4", - "x": 1.4565, - "y": 13.4376 - }, - { - "l": "0.4", - "x": 1.4757, - "y": 13.4389 - }, - { - "l": "0.4", - "x": 1.4949, - "y": 13.4402 - }, - { - "l": "0.4", - "x": 1.514, - "y": 13.4413 - }, - { - "l": "0.4", - "x": 1.5332, - "y": 13.4423 - }, - { - "l": "0.4", - "x": 1.5524, - "y": 13.4433 - }, - { - "l": "0.4", - "x": 1.5715, - "y": 13.4442 - }, - { - "l": "0.4", - "x": 1.5907, - "y": 13.4449 - }, - { - "l": "0.4", - "x": 1.6099, - "y": 13.4456 - }, - { - "l": "0.4", - "x": 1.629, - "y": 13.4463 - }, - { - "l": "0.4", - "x": 1.6482, - "y": 13.4469 - }, - { - "l": "0.4", - "x": 1.6674, - "y": 13.4474 - }, - { - "l": "0.4", - "x": 1.6865, - "y": 13.448 - }, - { - "l": "0.4", - "x": 1.7057, - "y": 13.4486 - }, - { - "l": "0.4", - "x": 1.7248, - "y": 13.4491 - }, - { - "l": "0.4", - "x": 1.744, - "y": 13.4496 - }, - { - "l": "0.4", - "x": 1.7632, - "y": 13.45 - }, - { - "l": "0.4", - "x": 1.7823, - "y": 13.4504 - }, - { - "l": "0.4", - "x": 1.8015, - "y": 13.4509 - }, - { - "l": "0.4", - "x": 1.8207, - "y": 13.4512 - }, - { - "l": "0.4", - "x": 1.8398, - "y": 13.4516 - }, - { - "l": "0.4", - "x": 1.859, - "y": 13.452 - }, - { - "l": "0.4", - "x": 1.8782, - "y": 13.4523 - }, - { - "l": "0.4", - "x": 1.8973, - "y": 13.4527 - }, - { - "l": "0.4", - "x": 1.9165, - "y": 13.453 - }, - { - "l": "0.4", - "x": 1.9357, - "y": 13.4534 - }, - { - "l": "0.4", - "x": 1.9548, - "y": 13.4539 - }, - { - "l": "0.4", - "x": 1.974, - "y": 13.4543 - }, - { - "l": "0.4", - "x": 1.9932, - "y": 13.4548 - }, - { - "l": "0.4", - "x": 2.0123, - "y": 13.4553 - }, - { - "l": "0.4", - "x": 2.0957, - "y": 13.4577 - }, - { - "l": "0.4", - "x": 2.179, - "y": 13.4604 - }, - { - "l": "0.4", - "x": 2.2623, - "y": 13.4639 - }, - { - "l": "0.4", - "x": 2.3457, - "y": 13.4678 - }, - { - "l": "0.4", - "x": 2.429, - "y": 13.4718 - }, - { - "l": "0.4", - "x": 2.5123, - "y": 13.4767 - }, - { - "l": "0.4", - "x": 2.5957, - "y": 13.4818 - }, - { - "l": "0.4", - "x": 2.679, - "y": 13.4866 - }, - { - "l": "0.4", - "x": 2.7623, - "y": 13.4921 - }, - { - "l": "0.4", - "x": 2.8457, - "y": 13.4973 - }, - { - "l": "0.4", - "x": 2.929, - "y": 13.5018 - }, - { - "l": "0.4", - "x": 3.0123, - "y": 13.5062 - }, - { - "l": "0.4", - "x": 3.0957, - "y": 13.5099 - }, - { - "l": "0.4", - "x": 3.179, - "y": 13.5126 - }, - { - "l": "0.4", - "x": 3.2623, - "y": 13.5147 - }, - { - "l": "0.4", - "x": 3.3457, - "y": 13.5157 - }, - { - "l": "0.4", - "x": 3.429, - "y": 13.5155 - }, - { - "l": "0.4", - "x": 3.5123, - "y": 13.5142 - }, - { - "l": "0.4", - "x": 3.5957, - "y": 13.5117 - }, - { - "l": "0.4", - "x": 3.679, - "y": 13.5084 - }, - { - "l": "0.4", - "x": 3.7623, - "y": 13.5037 - }, - { - "l": "0.4", - "x": 3.8457, - "y": 13.4982 - }, - { - "l": "0.4", - "x": 3.929, - "y": 13.4922 - }, - { - "l": "0.4", - "x": 4.0123, - "y": 13.4848 - }, - { - "l": "0.4", - "x": 4.0957, - "y": 13.4769 - }, - { - "l": "0.4", - "x": 4.179, - "y": 13.469 - }, - { - "l": "0.4", - "x": 4.2623, - "y": 13.4596 - }, - { - "l": "0.4", - "x": 4.3457, - "y": 13.4501 - }, - { - "l": "0.4", - "x": 4.429, - "y": 13.441 - }, - { - "l": "0.4", - "x": 4.5123, - "y": 13.4306 - }, - { - "l": "0.4", - "x": 4.5957, - "y": 13.4204 - }, - { - "l": "0.4", - "x": 4.679, - "y": 13.4111 - }, - { - "l": "0.4", - "x": 4.7623, - "y": 13.4008 - }, - { - "l": "0.4", - "x": 4.8457, - "y": 13.3909 - }, - { - "l": "0.4", - "x": 4.929, - "y": 13.3822 - }, - { - "l": "0.4", - "x": 5.0123, - "y": 13.3728 - }, - { - "l": "0.4", - "x": 5.0957, - "y": 13.3639 - }, - { - "l": "0.4", - "x": 5.179, - "y": 13.3563 - }, - { - "l": "0.4", - "x": 5.2623, - "y": 13.3483 - }, - { - "l": "0.4", - "x": 5.3457, - "y": 13.341 - }, - { - "l": "0.4", - "x": 5.429, - "y": 13.3349 - }, - { - "l": "0.4", - "x": 5.5123, - "y": 13.3288 - }, - { - "l": "0.4", - "x": 5.5957, - "y": 13.3236 - }, - { - "l": "0.4", - "x": 5.679, - "y": 13.3196 - }, - { - "l": "0.4", - "x": 5.7623, - "y": 13.3158 - }, - { - "l": "0.4", - "x": 5.8457, - "y": 13.313 - }, - { - "l": "0.4", - "x": 5.929, - "y": 13.3111 - }, - { - "l": "0.4", - "x": 6.0123, - "y": 13.3098 - }, - { - "l": "0.4", - "x": 6.0957, - "y": 13.3094 - }, - { - "l": "0.4", - "x": 6.179, - "y": 13.3098 - }, - { - "l": "0.4", - "x": 6.2623, - "y": 13.311 - }, - { - "l": "0.4", - "x": 6.3457, - "y": 13.313 - }, - { - "l": "0.4", - "x": 6.429, - "y": 13.3156 - }, - { - "l": "0.4", - "x": 6.5123, - "y": 13.3193 - }, - { - "l": "0.4", - "x": 6.5957, - "y": 13.3238 - }, - { - "l": "0.4", - "x": 6.679, - "y": 13.3287 - }, - { - "l": "0.4", - "x": 6.7623, - "y": 13.335 - }, - { - "l": "0.4", - "x": 6.8457, - "y": 13.342 - }, - { - "l": "0.4", - "x": 6.929, - "y": 13.3491 - }, - { - "l": "0.4", - "x": 7.0123, - "y": 13.3578 - }, - { - "l": "0.4", - "x": 7.0957, - "y": 13.3671 - }, - { - "l": "0.4", - "x": 7.179, - "y": 13.3762 - }, - { - "l": "0.4", - "x": 7.2623, - "y": 13.3872 - }, - { - "l": "0.4", - "x": 7.3457, - "y": 13.3985 - }, - { - "l": "0.4", - "x": 7.429, - "y": 13.4095 - }, - { - "l": "0.4", - "x": 7.5123, - "y": 13.4224 - }, - { - "l": "0.4", - "x": 7.5957, - "y": 13.4355 - }, - { - "l": "0.4", - "x": 7.679, - "y": 13.4481 - }, - { - "l": "0.4", - "x": 7.7623, - "y": 13.4626 - }, - { - "l": "0.4", - "x": 7.8457, - "y": 13.4773 - }, - { - "l": "0.4", - "x": 7.929, - "y": 13.4912 - }, - { - "l": "0.4", - "x": 8.0123, - "y": 13.5073 - }, - { - "l": "0.4", - "x": 8.0957, - "y": 13.5233 - }, - { - "l": "0.4", - "x": 8.179, - "y": 13.5384 - }, - { - "l": "0.4", - "x": 8.2623, - "y": 13.5557 - }, - { - "l": "0.4", - "x": 8.3457, - "y": 13.573 - }, - { - "l": "0.4", - "x": 8.429, - "y": 13.589 - }, - { - "l": "0.4", - "x": 8.5123, - "y": 13.6074 - }, - { - "l": "0.4", - "x": 8.5957, - "y": 13.6256 - }, - { - "l": "0.4", - "x": 8.679, - "y": 13.6425 - }, - { - "l": "0.4", - "x": 8.7623, - "y": 13.6617 - }, - { - "l": "0.4", - "x": 8.8457, - "y": 13.6807 - }, - { - "l": "0.4", - "x": 8.929, - "y": 13.6983 - }, - { - "l": "0.4", - "x": 9.0123, - "y": 13.7182 - }, - { - "l": "0.4", - "x": 9.0957, - "y": 13.7378 - }, - { - "l": "0.4", - "x": 9.179, - "y": 13.7559 - }, - { - "l": "0.4", - "x": 9.2623, - "y": 13.7764 - }, - { - "l": "0.4", - "x": 9.3457, - "y": 13.7965 - }, - { - "l": "0.4", - "x": 9.429, - "y": 13.815 - }, - { - "l": "0.4", - "x": 9.5123, - "y": 13.8359 - }, - { - "l": "0.4", - "x": 9.5957, - "y": 13.8563 - }, - { - "l": "0.4", - "x": 9.679, - "y": 13.8751 - }, - { - "l": "0.4", - "x": 9.7623, - "y": 13.8962 - }, - { - "l": "0.4", - "x": 9.8457, - "y": 13.9168 - }, - { - "l": "0.4", - "x": 9.929, - "y": 13.9358 - }, - { - "l": "0.4", - "x": 10.0123, - "y": 13.9571 - }, - { - "l": "0.4", - "x": 10.0957, - "y": 13.9779 - }, - { - "l": "0.4", - "x": 10.179, - "y": 13.997 - }, - { - "l": "0.4", - "x": 10.2623, - "y": 14.0185 - }, - { - "l": "0.4", - "x": 10.3457, - "y": 14.0394 - }, - { - "l": "0.4", - "x": 10.429, - "y": 14.0585 - }, - { - "l": "0.4", - "x": 10.5123, - "y": 14.08 - }, - { - "l": "0.4", - "x": 10.5957, - "y": 14.101 - }, - { - "l": "0.4", - "x": 10.679, - "y": 14.1201 - }, - { - "l": "0.4", - "x": 10.7623, - "y": 14.1416 - }, - { - "l": "0.4", - "x": 10.8457, - "y": 14.1625 - }, - { - "l": "0.4", - "x": 10.929, - "y": 14.1816 - }, - { - "l": "0.4", - "x": 11.0123, - "y": 14.2029 - }, - { - "l": "0.4", - "x": 11.0957, - "y": 14.2237 - }, - { - "l": "0.4", - "x": 11.179, - "y": 14.2426 - }, - { - "l": "0.4", - "x": 11.2623, - "y": 14.2638 - }, - { - "l": "0.4", - "x": 11.3457, - "y": 14.2843 - }, - { - "l": "0.4", - "x": 11.429, - "y": 14.303 - }, - { - "l": "0.4", - "x": 11.5123, - "y": 14.3239 - }, - { - "l": "0.4", - "x": 11.5957, - "y": 14.3441 - }, - { - "l": "0.4", - "x": 11.679, - "y": 14.3625 - }, - { - "l": "0.4", - "x": 11.7623, - "y": 14.383 - }, - { - "l": "0.4", - "x": 11.8457, - "y": 14.4028 - }, - { - "l": "0.4", - "x": 11.929, - "y": 14.4208 - }, - { - "l": "0.4", - "x": 12.0123, - "y": 14.4408 - }, - { - "l": "0.4", - "x": 12.0957, - "y": 14.4602 - }, - { - "l": "0.4", - "x": 12.179, - "y": 14.4778 - }, - { - "l": "0.4", - "x": 12.2623, - "y": 14.4973 - }, - { - "l": "0.4", - "x": 12.3457, - "y": 14.5161 - }, - { - "l": "0.4", - "x": 12.429, - "y": 14.5332 - }, - { - "l": "0.4", - "x": 12.5123, - "y": 14.5522 - }, - { - "l": "0.4", - "x": 12.5957, - "y": 14.5705 - }, - { - "l": "0.4", - "x": 12.679, - "y": 14.587 - }, - { - "l": "0.4", - "x": 12.7623, - "y": 14.6054 - }, - { - "l": "0.4", - "x": 12.8457, - "y": 14.6231 - }, - { - "l": "0.4", - "x": 12.929, - "y": 14.639 - }, - { - "l": "0.4", - "x": 13.0123, - "y": 14.6568 - }, - { - "l": "0.4", - "x": 13.0957, - "y": 14.6738 - }, - { - "l": "0.4", - "x": 13.179, - "y": 14.6892 - }, - { - "l": "0.4", - "x": 13.2623, - "y": 14.7063 - }, - { - "l": "0.4", - "x": 13.3457, - "y": 14.7227 - }, - { - "l": "0.4", - "x": 13.429, - "y": 14.7374 - }, - { - "l": "0.4", - "x": 13.5123, - "y": 14.7538 - }, - { - "l": "0.4", - "x": 13.5957, - "y": 14.7695 - }, - { - "l": "0.4", - "x": 13.679, - "y": 14.7836 - }, - { - "l": "0.4", - "x": 13.7623, - "y": 14.7992 - }, - { - "l": "0.4", - "x": 13.8457, - "y": 14.8141 - }, - { - "l": "0.4", - "x": 13.929, - "y": 14.8275 - }, - { - "l": "0.4", - "x": 14.0123, - "y": 14.8423 - }, - { - "l": "0.4", - "x": 14.0957, - "y": 14.8565 - }, - { - "l": "0.4", - "x": 14.179, - "y": 14.8692 - }, - { - "l": "0.4", - "x": 14.2623, - "y": 14.8832 - }, - { - "l": "0.4", - "x": 14.3457, - "y": 14.8965 - }, - { - "l": "0.4", - "x": 14.429, - "y": 14.9085 - }, - { - "l": "0.4", - "x": 14.5123, - "y": 14.9216 - }, - { - "l": "0.4", - "x": 14.5957, - "y": 14.9342 - }, - { - "l": "0.4", - "x": 14.679, - "y": 14.9454 - }, - { - "l": "0.4", - "x": 14.7623, - "y": 14.9577 - }, - { - "l": "0.4", - "x": 14.8457, - "y": 14.9694 - }, - { - "l": "0.4", - "x": 14.929, - "y": 14.9798 - }, - { - "l": "0.4", - "x": 15.0123, - "y": 14.9913 - }, - { - "l": "0.4", - "x": 15.0957, - "y": 15.0021 - }, - { - "l": "0.4", - "x": 15.179, - "y": 15.0118 - }, - { - "l": "0.4", - "x": 15.2623, - "y": 15.0224 - }, - { - "l": "0.4", - "x": 15.3457, - "y": 15.0324 - }, - { - "l": "0.4", - "x": 15.429, - "y": 15.0412 - }, - { - "l": "0.4", - "x": 15.5123, - "y": 15.0509 - }, - { - "l": "0.4", - "x": 15.5957, - "y": 15.0601 - }, - { - "l": "0.4", - "x": 15.679, - "y": 15.0682 - }, - { - "l": "0.4", - "x": 15.7623, - "y": 15.077 - }, - { - "l": "0.4", - "x": 15.8457, - "y": 15.0852 - }, - { - "l": "0.4", - "x": 15.929, - "y": 15.0925 - }, - { - "l": "0.4", - "x": 16.0123, - "y": 15.1004 - }, - { - "l": "0.4", - "x": 16.0957, - "y": 15.1078 - }, - { - "l": "0.4", - "x": 16.179, - "y": 15.1143 - }, - { - "l": "0.4", - "x": 16.2623, - "y": 15.1214 - }, - { - "l": "0.4", - "x": 16.3457, - "y": 15.1279 - }, - { - "l": "0.4", - "x": 16.429, - "y": 15.1336 - }, - { - "l": "0.4", - "x": 16.5123, - "y": 15.1398 - }, - { - "l": "0.4", - "x": 16.5957, - "y": 15.1455 - }, - { - "l": "0.4", - "x": 16.679, - "y": 15.1504 - }, - { - "l": "0.4", - "x": 16.7623, - "y": 15.1557 - }, - { - "l": "0.4", - "x": 16.8457, - "y": 15.1606 - }, - { - "l": "0.4", - "x": 16.929, - "y": 15.1647 - }, - { - "l": "0.4", - "x": 17.0123, - "y": 15.1692 - }, - { - "l": "0.4", - "x": 17.0957, - "y": 15.1732 - }, - { - "l": "0.4", - "x": 17.179, - "y": 15.1766 - }, - { - "l": "0.4", - "x": 17.2623, - "y": 15.1802 - }, - { - "l": "0.4", - "x": 17.3457, - "y": 15.1833 - }, - { - "l": "0.4", - "x": 17.429, - "y": 15.186 - }, - { - "l": "0.4", - "x": 17.5123, - "y": 15.1887 - }, - { - "l": "0.4", - "x": 17.5957, - "y": 15.1911 - }, - { - "l": "0.4", - "x": 17.679, - "y": 15.193 - }, - { - "l": "0.4", - "x": 17.7623, - "y": 15.1949 - }, - { - "l": "0.4", - "x": 17.8457, - "y": 15.1965 - }, - { - "l": "0.4", - "x": 17.929, - "y": 15.1977 - }, - { - "l": "0.4", - "x": 18.0123, - "y": 15.1988 - }, - { - "l": "0.4", - "x": 18.0957, - "y": 15.1995 - }, - { - "l": "0.4", - "x": 18.179, - "y": 15.2 - }, - { - "l": "0.4", - "x": 18.2623, - "y": 15.2003 - }, - { - "l": "0.4", - "x": 18.3457, - "y": 15.2002 - }, - { - "l": "0.4", - "x": 18.429, - "y": 15.2 - }, - { - "l": "0.4", - "x": 18.5123, - "y": 15.1995 - }, - { - "l": "0.4", - "x": 18.5957, - "y": 15.1987 - }, - { - "l": "0.4", - "x": 18.679, - "y": 15.1976 - }, - { - "l": "0.4", - "x": 18.7623, - "y": 15.1963 - }, - { - "l": "0.4", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 0.0, - "y": 9.9138 - }, - { - "l": "2.0", - "x": 0.0192, - "y": 10.1164 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 10.3194 - }, - { - "l": "2.0", - "x": 0.0575, - "y": 10.5229 - }, - { - "l": "2.0", - "x": 0.0767, - "y": 10.7269 - }, - { - "l": "2.0", - "x": 0.0958, - "y": 10.8975 - }, - { - "l": "2.0", - "x": 0.115, - "y": 11.0514 - }, - { - "l": "2.0", - "x": 0.1342, - "y": 11.1973 - }, - { - "l": "2.0", - "x": 0.1533, - "y": 11.3378 - }, - { - "l": "2.0", - "x": 0.1725, - "y": 11.4774 - }, - { - "l": "2.0", - "x": 0.1916, - "y": 11.6267 - }, - { - "l": "2.0", - "x": 0.2108, - "y": 11.7739 - }, - { - "l": "2.0", - "x": 0.23, - "y": 11.9181 - }, - { - "l": "2.0", - "x": 0.2491, - "y": 12.0579 - }, - { - "l": "2.0", - "x": 0.2683, - "y": 12.191 - }, - { - "l": "2.0", - "x": 0.2875, - "y": 12.3181 - }, - { - "l": "2.0", - "x": 0.3066, - "y": 12.4388 - }, - { - "l": "2.0", - "x": 0.3258, - "y": 12.5527 - }, - { - "l": "2.0", - "x": 0.345, - "y": 12.6547 - }, - { - "l": "2.0", - "x": 0.3641, - "y": 12.7487 - }, - { - "l": "2.0", - "x": 0.3833, - "y": 12.837 - }, - { - "l": "2.0", - "x": 0.4025, - "y": 12.9209 - }, - { - "l": "2.0", - "x": 0.4216, - "y": 13.002 - }, - { - "l": "2.0", - "x": 0.4408, - "y": 13.0858 - }, - { - "l": "2.0", - "x": 0.46, - "y": 13.1667 - }, - { - "l": "2.0", - "x": 0.4791, - "y": 13.2442 - }, - { - "l": "2.0", - "x": 0.4983, - "y": 13.3177 - }, - { - "l": "2.0", - "x": 0.5175, - "y": 13.3855 - }, - { - "l": "2.0", - "x": 0.5366, - "y": 13.4487 - }, - { - "l": "2.0", - "x": 0.5558, - "y": 13.5075 - }, - { - "l": "2.0", - "x": 0.5749, - "y": 13.5618 - }, - { - "l": "2.0", - "x": 0.5941, - "y": 13.61 - }, - { - "l": "2.0", - "x": 0.6133, - "y": 13.6536 - }, - { - "l": "2.0", - "x": 0.6324, - "y": 13.6939 - }, - { - "l": "2.0", - "x": 0.6516, - "y": 13.7316 - }, - { - "l": "2.0", - "x": 0.6708, - "y": 13.7674 - }, - { - "l": "2.0", - "x": 0.6899, - "y": 13.8045 - }, - { - "l": "2.0", - "x": 0.7091, - "y": 13.84 - }, - { - "l": "2.0", - "x": 0.7283, - "y": 13.8738 - }, - { - "l": "2.0", - "x": 0.7474, - "y": 13.9056 - }, - { - "l": "2.0", - "x": 0.7666, - "y": 13.9349 - }, - { - "l": "2.0", - "x": 0.7858, - "y": 13.9621 - }, - { - "l": "2.0", - "x": 0.8049, - "y": 13.9872 - }, - { - "l": "2.0", - "x": 0.8241, - "y": 14.0101 - }, - { - "l": "2.0", - "x": 0.8433, - "y": 14.0305 - }, - { - "l": "2.0", - "x": 0.8624, - "y": 14.0486 - }, - { - "l": "2.0", - "x": 0.8816, - "y": 14.0651 - }, - { - "l": "2.0", - "x": 0.9008, - "y": 14.0803 - }, - { - "l": "2.0", - "x": 0.9199, - "y": 14.0944 - }, - { - "l": "2.0", - "x": 0.9391, - "y": 14.1089 - }, - { - "l": "2.0", - "x": 0.9582, - "y": 14.1225 - }, - { - "l": "2.0", - "x": 0.9774, - "y": 14.1351 - }, - { - "l": "2.0", - "x": 0.9966, - "y": 14.1467 - }, - { - "l": "2.0", - "x": 1.0157, - "y": 14.157 - }, - { - "l": "2.0", - "x": 1.0349, - "y": 14.1662 - }, - { - "l": "2.0", - "x": 1.0541, - "y": 14.1745 - }, - { - "l": "2.0", - "x": 1.0732, - "y": 14.1818 - }, - { - "l": "2.0", - "x": 1.0924, - "y": 14.1881 - }, - { - "l": "2.0", - "x": 1.1116, - "y": 14.1936 - }, - { - "l": "2.0", - "x": 1.1307, - "y": 14.1984 - }, - { - "l": "2.0", - "x": 1.1499, - "y": 14.2026 - }, - { - "l": "2.0", - "x": 1.1691, - "y": 14.2065 - }, - { - "l": "2.0", - "x": 1.1882, - "y": 14.2104 - }, - { - "l": "2.0", - "x": 1.2074, - "y": 14.2141 - }, - { - "l": "2.0", - "x": 1.2266, - "y": 14.2174 - }, - { - "l": "2.0", - "x": 1.2457, - "y": 14.2204 - }, - { - "l": "2.0", - "x": 1.2649, - "y": 14.2232 - }, - { - "l": "2.0", - "x": 1.2841, - "y": 14.2256 - }, - { - "l": "2.0", - "x": 1.3032, - "y": 14.2277 - }, - { - "l": "2.0", - "x": 1.3224, - "y": 14.2296 - }, - { - "l": "2.0", - "x": 1.3415, - "y": 14.2313 - }, - { - "l": "2.0", - "x": 1.3607, - "y": 14.2327 - }, - { - "l": "2.0", - "x": 1.3799, - "y": 14.2339 - }, - { - "l": "2.0", - "x": 1.399, - "y": 14.235 - }, - { - "l": "2.0", - "x": 1.4182, - "y": 14.236 - }, - { - "l": "2.0", - "x": 1.4374, - "y": 14.2369 - }, - { - "l": "2.0", - "x": 1.4565, - "y": 14.2378 - }, - { - "l": "2.0", - "x": 1.4757, - "y": 14.2386 - }, - { - "l": "2.0", - "x": 1.4949, - "y": 14.2393 - }, - { - "l": "2.0", - "x": 1.514, - "y": 14.2399 - }, - { - "l": "2.0", - "x": 1.5332, - "y": 14.2404 - }, - { - "l": "2.0", - "x": 1.5524, - "y": 14.2409 - }, - { - "l": "2.0", - "x": 1.5715, - "y": 14.2413 - }, - { - "l": "2.0", - "x": 1.5907, - "y": 14.2416 - }, - { - "l": "2.0", - "x": 1.6099, - "y": 14.2419 - }, - { - "l": "2.0", - "x": 1.629, - "y": 14.2421 - }, - { - "l": "2.0", - "x": 1.6482, - "y": 14.2423 - }, - { - "l": "2.0", - "x": 1.6674, - "y": 14.2425 - }, - { - "l": "2.0", - "x": 1.6865, - "y": 14.2426 - }, - { - "l": "2.0", - "x": 1.7057, - "y": 14.2427 - }, - { - "l": "2.0", - "x": 1.7248, - "y": 14.2428 - }, - { - "l": "2.0", - "x": 1.744, - "y": 14.2428 - }, - { - "l": "2.0", - "x": 1.7632, - "y": 14.2429 - }, - { - "l": "2.0", - "x": 1.7823, - "y": 14.2429 - }, - { - "l": "2.0", - "x": 1.8015, - "y": 14.2429 - }, - { - "l": "2.0", - "x": 1.8207, - "y": 14.2429 - }, - { - "l": "2.0", - "x": 1.8398, - "y": 14.2429 - }, - { - "l": "2.0", - "x": 1.859, - "y": 14.2429 - }, - { - "l": "2.0", - "x": 1.8782, - "y": 14.243 - }, - { - "l": "2.0", - "x": 1.8973, - "y": 14.243 - }, - { - "l": "2.0", - "x": 1.9165, - "y": 14.2431 - }, - { - "l": "2.0", - "x": 1.9357, - "y": 14.2432 - }, - { - "l": "2.0", - "x": 1.9548, - "y": 14.2433 - }, - { - "l": "2.0", - "x": 1.974, - "y": 14.2435 - }, - { - "l": "2.0", - "x": 1.9932, - "y": 14.2436 - }, - { - "l": "2.0", - "x": 2.0123, - "y": 14.2439 - }, - { - "l": "2.0", - "x": 2.0957, - "y": 14.2452 - }, - { - "l": "2.0", - "x": 2.179, - "y": 14.247 - }, - { - "l": "2.0", - "x": 2.2623, - "y": 14.2499 - }, - { - "l": "2.0", - "x": 2.3457, - "y": 14.2533 - }, - { - "l": "2.0", - "x": 2.429, - "y": 14.257 - }, - { - "l": "2.0", - "x": 2.5123, - "y": 14.2617 - }, - { - "l": "2.0", - "x": 2.5957, - "y": 14.2669 - }, - { - "l": "2.0", - "x": 2.679, - "y": 14.272 - }, - { - "l": "2.0", - "x": 2.7623, - "y": 14.2778 - }, - { - "l": "2.0", - "x": 2.8457, - "y": 14.2836 - }, - { - "l": "2.0", - "x": 2.929, - "y": 14.2886 - }, - { - "l": "2.0", - "x": 3.0123, - "y": 14.2939 - }, - { - "l": "2.0", - "x": 3.0957, - "y": 14.2985 - }, - { - "l": "2.0", - "x": 3.179, - "y": 14.3021 - }, - { - "l": "2.0", - "x": 3.2623, - "y": 14.3053 - }, - { - "l": "2.0", - "x": 3.3457, - "y": 14.3075 - }, - { - "l": "2.0", - "x": 3.429, - "y": 14.3085 - }, - { - "l": "2.0", - "x": 3.5123, - "y": 14.3086 - }, - { - "l": "2.0", - "x": 3.5957, - "y": 14.3075 - }, - { - "l": "2.0", - "x": 3.679, - "y": 14.3055 - }, - { - "l": "2.0", - "x": 3.7623, - "y": 14.3024 - }, - { - "l": "2.0", - "x": 3.8457, - "y": 14.2984 - }, - { - "l": "2.0", - "x": 3.929, - "y": 14.2939 - }, - { - "l": "2.0", - "x": 4.0123, - "y": 14.2883 - }, - { - "l": "2.0", - "x": 4.0957, - "y": 14.2821 - }, - { - "l": "2.0", - "x": 4.179, - "y": 14.276 - }, - { - "l": "2.0", - "x": 4.2623, - "y": 14.2686 - }, - { - "l": "2.0", - "x": 4.3457, - "y": 14.261 - }, - { - "l": "2.0", - "x": 4.429, - "y": 14.2539 - }, - { - "l": "2.0", - "x": 4.5123, - "y": 14.2457 - }, - { - "l": "2.0", - "x": 4.5957, - "y": 14.2378 - }, - { - "l": "2.0", - "x": 4.679, - "y": 14.2306 - }, - { - "l": "2.0", - "x": 4.7623, - "y": 14.2228 - }, - { - "l": "2.0", - "x": 4.8457, - "y": 14.2156 - }, - { - "l": "2.0", - "x": 4.929, - "y": 14.2094 - }, - { - "l": "2.0", - "x": 5.0123, - "y": 14.2028 - }, - { - "l": "2.0", - "x": 5.0957, - "y": 14.1969 - }, - { - "l": "2.0", - "x": 5.179, - "y": 14.1921 - }, - { - "l": "2.0", - "x": 5.2623, - "y": 14.1872 - }, - { - "l": "2.0", - "x": 5.3457, - "y": 14.1832 - }, - { - "l": "2.0", - "x": 5.429, - "y": 14.1803 - }, - { - "l": "2.0", - "x": 5.5123, - "y": 14.1778 - }, - { - "l": "2.0", - "x": 5.5957, - "y": 14.1763 - }, - { - "l": "2.0", - "x": 5.679, - "y": 14.1757 - }, - { - "l": "2.0", - "x": 5.7623, - "y": 14.176 - }, - { - "l": "2.0", - "x": 5.8457, - "y": 14.1772 - }, - { - "l": "2.0", - "x": 5.929, - "y": 14.1792 - }, - { - "l": "2.0", - "x": 6.0123, - "y": 14.1823 - }, - { - "l": "2.0", - "x": 6.0957, - "y": 14.1863 - }, - { - "l": "2.0", - "x": 6.179, - "y": 14.1908 - }, - { - "l": "2.0", - "x": 6.2623, - "y": 14.1968 - }, - { - "l": "2.0", - "x": 6.3457, - "y": 14.2036 - }, - { - "l": "2.0", - "x": 6.429, - "y": 14.2107 - }, - { - "l": "2.0", - "x": 6.5123, - "y": 14.2197 - }, - { - "l": "2.0", - "x": 6.5957, - "y": 14.2294 - }, - { - "l": "2.0", - "x": 6.679, - "y": 14.2391 - }, - { - "l": "2.0", - "x": 6.7623, - "y": 14.251 - }, - { - "l": "2.0", - "x": 6.8457, - "y": 14.2635 - }, - { - "l": "2.0", - "x": 6.929, - "y": 14.2757 - }, - { - "l": "2.0", - "x": 7.0123, - "y": 14.2904 - }, - { - "l": "2.0", - "x": 7.0957, - "y": 14.3056 - }, - { - "l": "2.0", - "x": 7.179, - "y": 14.3202 - }, - { - "l": "2.0", - "x": 7.2623, - "y": 14.3375 - }, - { - "l": "2.0", - "x": 7.3457, - "y": 14.3551 - }, - { - "l": "2.0", - "x": 7.429, - "y": 14.3719 - }, - { - "l": "2.0", - "x": 7.5123, - "y": 14.3914 - }, - { - "l": "2.0", - "x": 7.5957, - "y": 14.4111 - }, - { - "l": "2.0", - "x": 7.679, - "y": 14.4297 - }, - { - "l": "2.0", - "x": 7.7623, - "y": 14.4513 - }, - { - "l": "2.0", - "x": 7.8457, - "y": 14.4728 - }, - { - "l": "2.0", - "x": 7.929, - "y": 14.4931 - }, - { - "l": "2.0", - "x": 8.0123, - "y": 14.5164 - }, - { - "l": "2.0", - "x": 8.0957, - "y": 14.5396 - }, - { - "l": "2.0", - "x": 8.179, - "y": 14.5614 - }, - { - "l": "2.0", - "x": 8.2623, - "y": 14.5862 - }, - { - "l": "2.0", - "x": 8.3457, - "y": 14.6109 - }, - { - "l": "2.0", - "x": 8.429, - "y": 14.6339 - }, - { - "l": "2.0", - "x": 8.5123, - "y": 14.66 - }, - { - "l": "2.0", - "x": 8.5957, - "y": 14.6859 - }, - { - "l": "2.0", - "x": 8.679, - "y": 14.71 - }, - { - "l": "2.0", - "x": 8.7623, - "y": 14.7373 - }, - { - "l": "2.0", - "x": 8.8457, - "y": 14.7642 - }, - { - "l": "2.0", - "x": 8.929, - "y": 14.7891 - }, - { - "l": "2.0", - "x": 9.0123, - "y": 14.8174 - }, - { - "l": "2.0", - "x": 9.0957, - "y": 14.8452 - }, - { - "l": "2.0", - "x": 9.179, - "y": 14.8709 - }, - { - "l": "2.0", - "x": 9.2623, - "y": 14.8999 - }, - { - "l": "2.0", - "x": 9.3457, - "y": 14.9284 - }, - { - "l": "2.0", - "x": 9.429, - "y": 14.9546 - }, - { - "l": "2.0", - "x": 9.5123, - "y": 14.9843 - }, - { - "l": "2.0", - "x": 9.5957, - "y": 15.0133 - }, - { - "l": "2.0", - "x": 9.679, - "y": 15.04 - }, - { - "l": "2.0", - "x": 9.7623, - "y": 15.0701 - }, - { - "l": "2.0", - "x": 9.8457, - "y": 15.0995 - }, - { - "l": "2.0", - "x": 9.929, - "y": 15.1266 - }, - { - "l": "2.0", - "x": 10.0123, - "y": 15.1571 - }, - { - "l": "2.0", - "x": 10.0957, - "y": 15.1869 - }, - { - "l": "2.0", - "x": 10.179, - "y": 15.2142 - }, - { - "l": "2.0", - "x": 10.2623, - "y": 15.245 - }, - { - "l": "2.0", - "x": 10.3457, - "y": 15.2751 - }, - { - "l": "2.0", - "x": 10.429, - "y": 15.3027 - }, - { - "l": "2.0", - "x": 10.5123, - "y": 15.3337 - }, - { - "l": "2.0", - "x": 10.5957, - "y": 15.3639 - }, - { - "l": "2.0", - "x": 10.679, - "y": 15.3917 - }, - { - "l": "2.0", - "x": 10.7623, - "y": 15.4228 - }, - { - "l": "2.0", - "x": 10.8457, - "y": 15.4532 - }, - { - "l": "2.0", - "x": 10.929, - "y": 15.4809 - }, - { - "l": "2.0", - "x": 11.0123, - "y": 15.5121 - }, - { - "l": "2.0", - "x": 11.0957, - "y": 15.5425 - }, - { - "l": "2.0", - "x": 11.179, - "y": 15.5702 - }, - { - "l": "2.0", - "x": 11.2623, - "y": 15.6014 - }, - { - "l": "2.0", - "x": 11.3457, - "y": 15.6316 - }, - { - "l": "2.0", - "x": 11.429, - "y": 15.6593 - }, - { - "l": "2.0", - "x": 11.5123, - "y": 15.6903 - }, - { - "l": "2.0", - "x": 11.5957, - "y": 15.7203 - }, - { - "l": "2.0", - "x": 11.679, - "y": 15.7478 - }, - { - "l": "2.0", - "x": 11.7623, - "y": 15.7785 - }, - { - "l": "2.0", - "x": 11.8457, - "y": 15.8083 - }, - { - "l": "2.0", - "x": 11.929, - "y": 15.8354 - }, - { - "l": "2.0", - "x": 12.0123, - "y": 15.8658 - }, - { - "l": "2.0", - "x": 12.0957, - "y": 15.8952 - }, - { - "l": "2.0", - "x": 12.179, - "y": 15.922 - }, - { - "l": "2.0", - "x": 12.2623, - "y": 15.952 - }, - { - "l": "2.0", - "x": 12.3457, - "y": 15.981 - }, - { - "l": "2.0", - "x": 12.429, - "y": 16.0074 - }, - { - "l": "2.0", - "x": 12.5123, - "y": 16.0368 - }, - { - "l": "2.0", - "x": 12.5957, - "y": 16.0654 - }, - { - "l": "2.0", - "x": 12.679, - "y": 16.0913 - }, - { - "l": "2.0", - "x": 12.7623, - "y": 16.1203 - }, - { - "l": "2.0", - "x": 12.8457, - "y": 16.1483 - }, - { - "l": "2.0", - "x": 12.929, - "y": 16.1737 - }, - { - "l": "2.0", - "x": 13.0123, - "y": 16.2021 - }, - { - "l": "2.0", - "x": 13.0957, - "y": 16.2296 - }, - { - "l": "2.0", - "x": 13.179, - "y": 16.2545 - }, - { - "l": "2.0", - "x": 13.2623, - "y": 16.2823 - }, - { - "l": "2.0", - "x": 13.3457, - "y": 16.3091 - }, - { - "l": "2.0", - "x": 13.429, - "y": 16.3335 - }, - { - "l": "2.0", - "x": 13.5123, - "y": 16.3606 - }, - { - "l": "2.0", - "x": 13.5957, - "y": 16.3868 - }, - { - "l": "2.0", - "x": 13.679, - "y": 16.4105 - }, - { - "l": "2.0", - "x": 13.7623, - "y": 16.4369 - }, - { - "l": "2.0", - "x": 13.8457, - "y": 16.4624 - }, - { - "l": "2.0", - "x": 13.929, - "y": 16.4855 - }, - { - "l": "2.0", - "x": 14.0123, - "y": 16.5112 - }, - { - "l": "2.0", - "x": 14.0957, - "y": 16.536 - }, - { - "l": "2.0", - "x": 14.179, - "y": 16.5584 - }, - { - "l": "2.0", - "x": 14.2623, - "y": 16.5834 - }, - { - "l": "2.0", - "x": 14.3457, - "y": 16.6074 - }, - { - "l": "2.0", - "x": 14.429, - "y": 16.6291 - }, - { - "l": "2.0", - "x": 14.5123, - "y": 16.6532 - }, - { - "l": "2.0", - "x": 14.5957, - "y": 16.6765 - }, - { - "l": "2.0", - "x": 14.679, - "y": 16.6975 - }, - { - "l": "2.0", - "x": 14.7623, - "y": 16.7208 - }, - { - "l": "2.0", - "x": 14.8457, - "y": 16.7433 - }, - { - "l": "2.0", - "x": 14.929, - "y": 16.7635 - }, - { - "l": "2.0", - "x": 15.0123, - "y": 16.786 - }, - { - "l": "2.0", - "x": 15.0957, - "y": 16.8077 - }, - { - "l": "2.0", - "x": 15.179, - "y": 16.8272 - }, - { - "l": "2.0", - "x": 15.2623, - "y": 16.8489 - }, - { - "l": "2.0", - "x": 15.3457, - "y": 16.8697 - }, - { - "l": "2.0", - "x": 15.429, - "y": 16.8885 - }, - { - "l": "2.0", - "x": 15.5123, - "y": 16.9093 - }, - { - "l": "2.0", - "x": 15.5957, - "y": 16.9293 - }, - { - "l": "2.0", - "x": 15.679, - "y": 16.9474 - }, - { - "l": "2.0", - "x": 15.7623, - "y": 16.9673 - }, - { - "l": "2.0", - "x": 15.8457, - "y": 16.9865 - }, - { - "l": "2.0", - "x": 15.929, - "y": 17.0038 - }, - { - "l": "2.0", - "x": 16.0123, - "y": 17.0229 - }, - { - "l": "2.0", - "x": 16.0957, - "y": 17.0412 - }, - { - "l": "2.0", - "x": 16.179, - "y": 17.0578 - }, - { - "l": "2.0", - "x": 16.2623, - "y": 17.0761 - }, - { - "l": "2.0", - "x": 16.3457, - "y": 17.0936 - }, - { - "l": "2.0", - "x": 16.429, - "y": 17.1094 - }, - { - "l": "2.0", - "x": 16.5123, - "y": 17.1268 - }, - { - "l": "2.0", - "x": 16.5957, - "y": 17.1435 - }, - { - "l": "2.0", - "x": 16.679, - "y": 17.1586 - }, - { - "l": "2.0", - "x": 16.7623, - "y": 17.1752 - }, - { - "l": "2.0", - "x": 16.8457, - "y": 17.1911 - }, - { - "l": "2.0", - "x": 16.929, - "y": 17.2055 - }, - { - "l": "2.0", - "x": 17.0123, - "y": 17.2213 - }, - { - "l": "2.0", - "x": 17.0957, - "y": 17.2364 - }, - { - "l": "2.0", - "x": 17.179, - "y": 17.25 - }, - { - "l": "2.0", - "x": 17.2623, - "y": 17.265 - }, - { - "l": "2.0", - "x": 17.3457, - "y": 17.2794 - }, - { - "l": "2.0", - "x": 17.429, - "y": 17.2923 - }, - { - "l": "2.0", - "x": 17.5123, - "y": 17.3065 - }, - { - "l": "2.0", - "x": 17.5957, - "y": 17.3201 - }, - { - "l": "2.0", - "x": 17.679, - "y": 17.3323 - }, - { - "l": "2.0", - "x": 17.7623, - "y": 17.3457 - }, - { - "l": "2.0", - "x": 17.8457, - "y": 17.3585 - }, - { - "l": "2.0", - "x": 17.929, - "y": 17.37 - }, - { - "l": "2.0", - "x": 18.0123, - "y": 17.3827 - }, - { - "l": "2.0", - "x": 18.0957, - "y": 17.3948 - }, - { - "l": "2.0", - "x": 18.179, - "y": 17.4056 - }, - { - "l": "2.0", - "x": 18.2623, - "y": 17.4175 - }, - { - "l": "2.0", - "x": 18.3457, - "y": 17.4289 - }, - { - "l": "2.0", - "x": 18.429, - "y": 17.439 - }, - { - "l": "2.0", - "x": 18.5123, - "y": 17.4502 - }, - { - "l": "2.0", - "x": 18.5957, - "y": 17.4608 - }, - { - "l": "2.0", - "x": 18.679, - "y": 17.4703 - }, - { - "l": "2.0", - "x": 18.7623, - "y": 17.4807 - }, - { - "l": "2.0", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 0.0, - "y": 10.6211 - }, - { - "l": "9.0", - "x": 0.0192, - "y": 10.8326 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 11.0443 - }, - { - "l": "9.0", - "x": 0.0575, - "y": 11.2564 - }, - { - "l": "9.0", - "x": 0.0767, - "y": 11.4688 - }, - { - "l": "9.0", - "x": 0.0958, - "y": 11.647 - }, - { - "l": "9.0", - "x": 0.115, - "y": 11.8079 - }, - { - "l": "9.0", - "x": 0.1342, - "y": 11.9606 - }, - { - "l": "9.0", - "x": 0.1533, - "y": 12.1078 - }, - { - "l": "9.0", - "x": 0.1725, - "y": 12.2542 - }, - { - "l": "9.0", - "x": 0.1916, - "y": 12.4107 - }, - { - "l": "9.0", - "x": 0.2108, - "y": 12.5652 - }, - { - "l": "9.0", - "x": 0.23, - "y": 12.7164 - }, - { - "l": "9.0", - "x": 0.2491, - "y": 12.8632 - }, - { - "l": "9.0", - "x": 0.2683, - "y": 13.0029 - }, - { - "l": "9.0", - "x": 0.2875, - "y": 13.1363 - }, - { - "l": "9.0", - "x": 0.3066, - "y": 13.263 - }, - { - "l": "9.0", - "x": 0.3258, - "y": 13.3825 - }, - { - "l": "9.0", - "x": 0.345, - "y": 13.4896 - }, - { - "l": "9.0", - "x": 0.3641, - "y": 13.5882 - }, - { - "l": "9.0", - "x": 0.3833, - "y": 13.6808 - }, - { - "l": "9.0", - "x": 0.4025, - "y": 13.7688 - }, - { - "l": "9.0", - "x": 0.4216, - "y": 13.8539 - }, - { - "l": "9.0", - "x": 0.4408, - "y": 13.9417 - }, - { - "l": "9.0", - "x": 0.46, - "y": 14.0264 - }, - { - "l": "9.0", - "x": 0.4791, - "y": 14.1074 - }, - { - "l": "9.0", - "x": 0.4983, - "y": 14.1843 - }, - { - "l": "9.0", - "x": 0.5175, - "y": 14.2552 - }, - { - "l": "9.0", - "x": 0.5366, - "y": 14.3212 - }, - { - "l": "9.0", - "x": 0.5558, - "y": 14.3825 - }, - { - "l": "9.0", - "x": 0.5749, - "y": 14.4391 - }, - { - "l": "9.0", - "x": 0.5941, - "y": 14.4894 - }, - { - "l": "9.0", - "x": 0.6133, - "y": 14.5348 - }, - { - "l": "9.0", - "x": 0.6324, - "y": 14.5767 - }, - { - "l": "9.0", - "x": 0.6516, - "y": 14.6158 - }, - { - "l": "9.0", - "x": 0.6708, - "y": 14.6529 - }, - { - "l": "9.0", - "x": 0.6899, - "y": 14.6914 - }, - { - "l": "9.0", - "x": 0.7091, - "y": 14.7281 - }, - { - "l": "9.0", - "x": 0.7283, - "y": 14.763 - }, - { - "l": "9.0", - "x": 0.7474, - "y": 14.7959 - }, - { - "l": "9.0", - "x": 0.7666, - "y": 14.8261 - }, - { - "l": "9.0", - "x": 0.7858, - "y": 14.854 - }, - { - "l": "9.0", - "x": 0.8049, - "y": 14.8797 - }, - { - "l": "9.0", - "x": 0.8241, - "y": 14.9032 - }, - { - "l": "9.0", - "x": 0.8433, - "y": 14.924 - }, - { - "l": "9.0", - "x": 0.8624, - "y": 14.9425 - }, - { - "l": "9.0", - "x": 0.8816, - "y": 14.9593 - }, - { - "l": "9.0", - "x": 0.9008, - "y": 14.9747 - }, - { - "l": "9.0", - "x": 0.9199, - "y": 14.989 - }, - { - "l": "9.0", - "x": 0.9391, - "y": 15.0035 - }, - { - "l": "9.0", - "x": 0.9582, - "y": 15.0171 - }, - { - "l": "9.0", - "x": 0.9774, - "y": 15.0297 - }, - { - "l": "9.0", - "x": 0.9966, - "y": 15.0413 - }, - { - "l": "9.0", - "x": 1.0157, - "y": 15.0515 - }, - { - "l": "9.0", - "x": 1.0349, - "y": 15.0605 - }, - { - "l": "9.0", - "x": 1.0541, - "y": 15.0685 - }, - { - "l": "9.0", - "x": 1.0732, - "y": 15.0755 - }, - { - "l": "9.0", - "x": 1.0924, - "y": 15.0816 - }, - { - "l": "9.0", - "x": 1.1116, - "y": 15.0867 - }, - { - "l": "9.0", - "x": 1.1307, - "y": 15.0912 - }, - { - "l": "9.0", - "x": 1.1499, - "y": 15.0951 - }, - { - "l": "9.0", - "x": 1.1691, - "y": 15.0986 - }, - { - "l": "9.0", - "x": 1.1882, - "y": 15.1022 - }, - { - "l": "9.0", - "x": 1.2074, - "y": 15.1054 - }, - { - "l": "9.0", - "x": 1.2266, - "y": 15.1083 - }, - { - "l": "9.0", - "x": 1.2457, - "y": 15.1109 - }, - { - "l": "9.0", - "x": 1.2649, - "y": 15.1131 - }, - { - "l": "9.0", - "x": 1.2841, - "y": 15.1151 - }, - { - "l": "9.0", - "x": 1.3032, - "y": 15.1168 - }, - { - "l": "9.0", - "x": 1.3224, - "y": 15.1182 - }, - { - "l": "9.0", - "x": 1.3415, - "y": 15.1194 - }, - { - "l": "9.0", - "x": 1.3607, - "y": 15.1204 - }, - { - "l": "9.0", - "x": 1.3799, - "y": 15.1212 - }, - { - "l": "9.0", - "x": 1.399, - "y": 15.1219 - }, - { - "l": "9.0", - "x": 1.4182, - "y": 15.1225 - }, - { - "l": "9.0", - "x": 1.4374, - "y": 15.123 - }, - { - "l": "9.0", - "x": 1.4565, - "y": 15.1234 - }, - { - "l": "9.0", - "x": 1.4757, - "y": 15.1237 - }, - { - "l": "9.0", - "x": 1.4949, - "y": 15.124 - }, - { - "l": "9.0", - "x": 1.514, - "y": 15.1242 - }, - { - "l": "9.0", - "x": 1.5332, - "y": 15.1243 - }, - { - "l": "9.0", - "x": 1.5524, - "y": 15.1243 - }, - { - "l": "9.0", - "x": 1.5715, - "y": 15.1243 - }, - { - "l": "9.0", - "x": 1.5907, - "y": 15.1242 - }, - { - "l": "9.0", - "x": 1.6099, - "y": 15.1241 - }, - { - "l": "9.0", - "x": 1.629, - "y": 15.124 - }, - { - "l": "9.0", - "x": 1.6482, - "y": 15.1239 - }, - { - "l": "9.0", - "x": 1.6674, - "y": 15.1237 - }, - { - "l": "9.0", - "x": 1.6865, - "y": 15.1234 - }, - { - "l": "9.0", - "x": 1.7057, - "y": 15.1232 - }, - { - "l": "9.0", - "x": 1.7248, - "y": 15.1229 - }, - { - "l": "9.0", - "x": 1.744, - "y": 15.1226 - }, - { - "l": "9.0", - "x": 1.7632, - "y": 15.1223 - }, - { - "l": "9.0", - "x": 1.7823, - "y": 15.122 - }, - { - "l": "9.0", - "x": 1.8015, - "y": 15.1216 - }, - { - "l": "9.0", - "x": 1.8207, - "y": 15.1213 - }, - { - "l": "9.0", - "x": 1.8398, - "y": 15.1211 - }, - { - "l": "9.0", - "x": 1.859, - "y": 15.1208 - }, - { - "l": "9.0", - "x": 1.8782, - "y": 15.1206 - }, - { - "l": "9.0", - "x": 1.8973, - "y": 15.1204 - }, - { - "l": "9.0", - "x": 1.9165, - "y": 15.1203 - }, - { - "l": "9.0", - "x": 1.9357, - "y": 15.1201 - }, - { - "l": "9.0", - "x": 1.9548, - "y": 15.12 - }, - { - "l": "9.0", - "x": 1.974, - "y": 15.1199 - }, - { - "l": "9.0", - "x": 1.9932, - "y": 15.1199 - }, - { - "l": "9.0", - "x": 2.0123, - "y": 15.1199 - }, - { - "l": "9.0", - "x": 2.0957, - "y": 15.1204 - }, - { - "l": "9.0", - "x": 2.179, - "y": 15.1218 - }, - { - "l": "9.0", - "x": 2.2623, - "y": 15.1243 - }, - { - "l": "9.0", - "x": 2.3457, - "y": 15.1276 - }, - { - "l": "9.0", - "x": 2.429, - "y": 15.1314 - }, - { - "l": "9.0", - "x": 2.5123, - "y": 15.1365 - }, - { - "l": "9.0", - "x": 2.5957, - "y": 15.1421 - }, - { - "l": "9.0", - "x": 2.679, - "y": 15.1478 - }, - { - "l": "9.0", - "x": 2.7623, - "y": 15.1545 - }, - { - "l": "9.0", - "x": 2.8457, - "y": 15.1612 - }, - { - "l": "9.0", - "x": 2.929, - "y": 15.1674 - }, - { - "l": "9.0", - "x": 3.0123, - "y": 15.174 - }, - { - "l": "9.0", - "x": 3.0957, - "y": 15.18 - }, - { - "l": "9.0", - "x": 3.179, - "y": 15.185 - }, - { - "l": "9.0", - "x": 3.2623, - "y": 15.1898 - }, - { - "l": "9.0", - "x": 3.3457, - "y": 15.1937 - }, - { - "l": "9.0", - "x": 3.429, - "y": 15.1963 - }, - { - "l": "9.0", - "x": 3.5123, - "y": 15.1982 - }, - { - "l": "9.0", - "x": 3.5957, - "y": 15.1991 - }, - { - "l": "9.0", - "x": 3.679, - "y": 15.1989 - }, - { - "l": "9.0", - "x": 3.7623, - "y": 15.1978 - }, - { - "l": "9.0", - "x": 3.8457, - "y": 15.1959 - }, - { - "l": "9.0", - "x": 3.929, - "y": 15.1935 - }, - { - "l": "9.0", - "x": 4.0123, - "y": 15.1901 - }, - { - "l": "9.0", - "x": 4.0957, - "y": 15.1863 - }, - { - "l": "9.0", - "x": 4.179, - "y": 15.1823 - }, - { - "l": "9.0", - "x": 4.2623, - "y": 15.1775 - }, - { - "l": "9.0", - "x": 4.3457, - "y": 15.1725 - }, - { - "l": "9.0", - "x": 4.429, - "y": 15.1678 - }, - { - "l": "9.0", - "x": 4.5123, - "y": 15.1624 - }, - { - "l": "9.0", - "x": 4.5957, - "y": 15.1573 - }, - { - "l": "9.0", - "x": 4.679, - "y": 15.1529 - }, - { - "l": "9.0", - "x": 4.7623, - "y": 15.1483 - }, - { - "l": "9.0", - "x": 4.8457, - "y": 15.1442 - }, - { - "l": "9.0", - "x": 4.929, - "y": 15.141 - }, - { - "l": "9.0", - "x": 5.0123, - "y": 15.138 - }, - { - "l": "9.0", - "x": 5.0957, - "y": 15.1357 - }, - { - "l": "9.0", - "x": 5.179, - "y": 15.1343 - }, - { - "l": "9.0", - "x": 5.2623, - "y": 15.1334 - }, - { - "l": "9.0", - "x": 5.3457, - "y": 15.1334 - }, - { - "l": "9.0", - "x": 5.429, - "y": 15.1342 - }, - { - "l": "9.0", - "x": 5.5123, - "y": 15.1361 - }, - { - "l": "9.0", - "x": 5.5957, - "y": 15.139 - }, - { - "l": "9.0", - "x": 5.679, - "y": 15.1426 - }, - { - "l": "9.0", - "x": 5.7623, - "y": 15.1477 - }, - { - "l": "9.0", - "x": 5.8457, - "y": 15.1537 - }, - { - "l": "9.0", - "x": 5.929, - "y": 15.1603 - }, - { - "l": "9.0", - "x": 6.0123, - "y": 15.1687 - }, - { - "l": "9.0", - "x": 6.0957, - "y": 15.178 - }, - { - "l": "9.0", - "x": 6.179, - "y": 15.1875 - }, - { - "l": "9.0", - "x": 6.2623, - "y": 15.1992 - }, - { - "l": "9.0", - "x": 6.3457, - "y": 15.2117 - }, - { - "l": "9.0", - "x": 6.429, - "y": 15.2241 - }, - { - "l": "9.0", - "x": 6.5123, - "y": 15.2392 - }, - { - "l": "9.0", - "x": 6.5957, - "y": 15.255 - }, - { - "l": "9.0", - "x": 6.679, - "y": 15.2705 - }, - { - "l": "9.0", - "x": 6.7623, - "y": 15.2889 - }, - { - "l": "9.0", - "x": 6.8457, - "y": 15.3079 - }, - { - "l": "9.0", - "x": 6.929, - "y": 15.3263 - }, - { - "l": "9.0", - "x": 7.0123, - "y": 15.348 - }, - { - "l": "9.0", - "x": 7.0957, - "y": 15.3701 - }, - { - "l": "9.0", - "x": 7.179, - "y": 15.3912 - }, - { - "l": "9.0", - "x": 7.2623, - "y": 15.4159 - }, - { - "l": "9.0", - "x": 7.3457, - "y": 15.4408 - }, - { - "l": "9.0", - "x": 7.429, - "y": 15.4644 - }, - { - "l": "9.0", - "x": 7.5123, - "y": 15.4917 - }, - { - "l": "9.0", - "x": 7.5957, - "y": 15.519 - }, - { - "l": "9.0", - "x": 7.679, - "y": 15.5448 - }, - { - "l": "9.0", - "x": 7.7623, - "y": 15.5745 - }, - { - "l": "9.0", - "x": 7.8457, - "y": 15.604 - }, - { - "l": "9.0", - "x": 7.929, - "y": 15.6318 - }, - { - "l": "9.0", - "x": 8.0123, - "y": 15.6636 - }, - { - "l": "9.0", - "x": 8.0957, - "y": 15.6951 - }, - { - "l": "9.0", - "x": 8.179, - "y": 15.7246 - }, - { - "l": "9.0", - "x": 8.2623, - "y": 15.7583 - }, - { - "l": "9.0", - "x": 8.3457, - "y": 15.7916 - }, - { - "l": "9.0", - "x": 8.429, - "y": 15.8226 - }, - { - "l": "9.0", - "x": 8.5123, - "y": 15.8579 - }, - { - "l": "9.0", - "x": 8.5957, - "y": 15.8927 - }, - { - "l": "9.0", - "x": 8.679, - "y": 15.925 - }, - { - "l": "9.0", - "x": 8.7623, - "y": 15.9617 - }, - { - "l": "9.0", - "x": 8.8457, - "y": 15.9979 - }, - { - "l": "9.0", - "x": 8.929, - "y": 16.0314 - }, - { - "l": "9.0", - "x": 9.0123, - "y": 16.0693 - }, - { - "l": "9.0", - "x": 9.0957, - "y": 16.1066 - }, - { - "l": "9.0", - "x": 9.179, - "y": 16.141 - }, - { - "l": "9.0", - "x": 9.2623, - "y": 16.18 - }, - { - "l": "9.0", - "x": 9.3457, - "y": 16.2182 - }, - { - "l": "9.0", - "x": 9.429, - "y": 16.2534 - }, - { - "l": "9.0", - "x": 9.5123, - "y": 16.2932 - }, - { - "l": "9.0", - "x": 9.5957, - "y": 16.3322 - }, - { - "l": "9.0", - "x": 9.679, - "y": 16.3681 - }, - { - "l": "9.0", - "x": 9.7623, - "y": 16.4086 - }, - { - "l": "9.0", - "x": 9.8457, - "y": 16.4482 - }, - { - "l": "9.0", - "x": 9.929, - "y": 16.4847 - }, - { - "l": "9.0", - "x": 10.0123, - "y": 16.5258 - }, - { - "l": "9.0", - "x": 10.0957, - "y": 16.5659 - }, - { - "l": "9.0", - "x": 10.179, - "y": 16.6028 - }, - { - "l": "9.0", - "x": 10.2623, - "y": 16.6444 - }, - { - "l": "9.0", - "x": 10.3457, - "y": 16.6851 - }, - { - "l": "9.0", - "x": 10.429, - "y": 16.7224 - }, - { - "l": "9.0", - "x": 10.5123, - "y": 16.7644 - }, - { - "l": "9.0", - "x": 10.5957, - "y": 16.8054 - }, - { - "l": "9.0", - "x": 10.679, - "y": 16.843 - }, - { - "l": "9.0", - "x": 10.7623, - "y": 16.8854 - }, - { - "l": "9.0", - "x": 10.8457, - "y": 16.9267 - }, - { - "l": "9.0", - "x": 10.929, - "y": 16.9645 - }, - { - "l": "9.0", - "x": 11.0123, - "y": 17.007 - }, - { - "l": "9.0", - "x": 11.0957, - "y": 17.0485 - }, - { - "l": "9.0", - "x": 11.179, - "y": 17.0865 - }, - { - "l": "9.0", - "x": 11.2623, - "y": 17.1291 - }, - { - "l": "9.0", - "x": 11.3457, - "y": 17.1706 - }, - { - "l": "9.0", - "x": 11.429, - "y": 17.2086 - }, - { - "l": "9.0", - "x": 11.5123, - "y": 17.2512 - }, - { - "l": "9.0", - "x": 11.5957, - "y": 17.2926 - }, - { - "l": "9.0", - "x": 11.679, - "y": 17.3305 - }, - { - "l": "9.0", - "x": 11.7623, - "y": 17.373 - }, - { - "l": "9.0", - "x": 11.8457, - "y": 17.4143 - }, - { - "l": "9.0", - "x": 11.929, - "y": 17.452 - }, - { - "l": "9.0", - "x": 12.0123, - "y": 17.4943 - }, - { - "l": "9.0", - "x": 12.0957, - "y": 17.5354 - }, - { - "l": "9.0", - "x": 12.179, - "y": 17.5728 - }, - { - "l": "9.0", - "x": 12.2623, - "y": 17.6148 - }, - { - "l": "9.0", - "x": 12.3457, - "y": 17.6555 - }, - { - "l": "9.0", - "x": 12.429, - "y": 17.6927 - }, - { - "l": "9.0", - "x": 12.5123, - "y": 17.7343 - }, - { - "l": "9.0", - "x": 12.5957, - "y": 17.7746 - }, - { - "l": "9.0", - "x": 12.679, - "y": 17.8114 - }, - { - "l": "9.0", - "x": 12.7623, - "y": 17.8526 - }, - { - "l": "9.0", - "x": 12.8457, - "y": 17.8925 - }, - { - "l": "9.0", - "x": 12.929, - "y": 17.9289 - }, - { - "l": "9.0", - "x": 13.0123, - "y": 17.9696 - }, - { - "l": "9.0", - "x": 13.0957, - "y": 18.009 - }, - { - "l": "9.0", - "x": 13.179, - "y": 18.0449 - }, - { - "l": "9.0", - "x": 13.2623, - "y": 18.0851 - }, - { - "l": "9.0", - "x": 13.3457, - "y": 18.124 - }, - { - "l": "9.0", - "x": 13.429, - "y": 18.1594 - }, - { - "l": "9.0", - "x": 13.5123, - "y": 18.199 - }, - { - "l": "9.0", - "x": 13.5957, - "y": 18.2373 - }, - { - "l": "9.0", - "x": 13.679, - "y": 18.2721 - }, - { - "l": "9.0", - "x": 13.7623, - "y": 18.3111 - }, - { - "l": "9.0", - "x": 13.8457, - "y": 18.3487 - }, - { - "l": "9.0", - "x": 13.929, - "y": 18.383 - }, - { - "l": "9.0", - "x": 14.0123, - "y": 18.4213 - }, - { - "l": "9.0", - "x": 14.0957, - "y": 18.4583 - }, - { - "l": "9.0", - "x": 14.179, - "y": 18.4919 - }, - { - "l": "9.0", - "x": 14.2623, - "y": 18.5295 - }, - { - "l": "9.0", - "x": 14.3457, - "y": 18.5658 - }, - { - "l": "9.0", - "x": 14.429, - "y": 18.5988 - }, - { - "l": "9.0", - "x": 14.5123, - "y": 18.6356 - }, - { - "l": "9.0", - "x": 14.5957, - "y": 18.6712 - }, - { - "l": "9.0", - "x": 14.679, - "y": 18.7035 - }, - { - "l": "9.0", - "x": 14.7623, - "y": 18.7395 - }, - { - "l": "9.0", - "x": 14.8457, - "y": 18.7743 - }, - { - "l": "9.0", - "x": 14.929, - "y": 18.806 - }, - { - "l": "9.0", - "x": 15.0123, - "y": 18.8412 - }, - { - "l": "9.0", - "x": 15.0957, - "y": 18.8753 - }, - { - "l": "9.0", - "x": 15.179, - "y": 18.9062 - }, - { - "l": "9.0", - "x": 15.2623, - "y": 18.9407 - }, - { - "l": "9.0", - "x": 15.3457, - "y": 18.974 - }, - { - "l": "9.0", - "x": 15.429, - "y": 19.0042 - }, - { - "l": "9.0", - "x": 15.5123, - "y": 19.0379 - }, - { - "l": "9.0", - "x": 15.5957, - "y": 19.0704 - }, - { - "l": "9.0", - "x": 15.679, - "y": 19.0999 - }, - { - "l": "9.0", - "x": 15.7623, - "y": 19.1328 - }, - { - "l": "9.0", - "x": 15.8457, - "y": 19.1645 - }, - { - "l": "9.0", - "x": 15.929, - "y": 19.1933 - }, - { - "l": "9.0", - "x": 16.0123, - "y": 19.2253 - }, - { - "l": "9.0", - "x": 16.0957, - "y": 19.2563 - }, - { - "l": "9.0", - "x": 16.179, - "y": 19.2844 - }, - { - "l": "9.0", - "x": 16.2623, - "y": 19.3156 - }, - { - "l": "9.0", - "x": 16.3457, - "y": 19.3458 - }, - { - "l": "9.0", - "x": 16.429, - "y": 19.3732 - }, - { - "l": "9.0", - "x": 16.5123, - "y": 19.4036 - }, - { - "l": "9.0", - "x": 16.5957, - "y": 19.4331 - }, - { - "l": "9.0", - "x": 16.679, - "y": 19.4598 - }, - { - "l": "9.0", - "x": 16.7623, - "y": 19.4895 - }, - { - "l": "9.0", - "x": 16.8457, - "y": 19.5181 - }, - { - "l": "9.0", - "x": 16.929, - "y": 19.5441 - }, - { - "l": "9.0", - "x": 17.0123, - "y": 19.573 - }, - { - "l": "9.0", - "x": 17.0957, - "y": 19.601 - }, - { - "l": "9.0", - "x": 17.179, - "y": 19.6263 - }, - { - "l": "9.0", - "x": 17.2623, - "y": 19.6545 - }, - { - "l": "9.0", - "x": 17.3457, - "y": 19.6816 - }, - { - "l": "9.0", - "x": 17.429, - "y": 19.7063 - }, - { - "l": "9.0", - "x": 17.5123, - "y": 19.7337 - }, - { - "l": "9.0", - "x": 17.5957, - "y": 19.7602 - }, - { - "l": "9.0", - "x": 17.679, - "y": 19.7842 - }, - { - "l": "9.0", - "x": 17.7623, - "y": 19.8109 - }, - { - "l": "9.0", - "x": 17.8457, - "y": 19.8367 - }, - { - "l": "9.0", - "x": 17.929, - "y": 19.8601 - }, - { - "l": "9.0", - "x": 18.0123, - "y": 19.8861 - }, - { - "l": "9.0", - "x": 18.0957, - "y": 19.9111 - }, - { - "l": "9.0", - "x": 18.179, - "y": 19.9339 - }, - { - "l": "9.0", - "x": 18.2623, - "y": 19.9592 - }, - { - "l": "9.0", - "x": 18.3457, - "y": 19.9836 - }, - { - "l": "9.0", - "x": 18.429, - "y": 20.0057 - }, - { - "l": "9.0", - "x": 18.5123, - "y": 20.0303 - }, - { - "l": "9.0", - "x": 18.5957, - "y": 20.0541 - }, - { - "l": "9.0", - "x": 18.679, - "y": 20.0755 - }, - { - "l": "9.0", - "x": 18.7623, - "y": 20.0994 - }, - { - "l": "9.0", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 0.0, - "y": 11.3934 - }, - { - "l": "25.0", - "x": 0.0192, - "y": 11.6148 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 11.8365 - }, - { - "l": "25.0", - "x": 0.0575, - "y": 12.0583 - }, - { - "l": "25.0", - "x": 0.0767, - "y": 12.2803 - }, - { - "l": "25.0", - "x": 0.0958, - "y": 12.4669 - }, - { - "l": "25.0", - "x": 0.115, - "y": 12.6357 - }, - { - "l": "25.0", - "x": 0.1342, - "y": 12.7961 - }, - { - "l": "25.0", - "x": 0.1533, - "y": 12.9509 - }, - { - "l": "25.0", - "x": 0.1725, - "y": 13.1049 - }, - { - "l": "25.0", - "x": 0.1916, - "y": 13.2697 - }, - { - "l": "25.0", - "x": 0.2108, - "y": 13.4323 - }, - { - "l": "25.0", - "x": 0.23, - "y": 13.5916 - }, - { - "l": "25.0", - "x": 0.2491, - "y": 13.7463 - }, - { - "l": "25.0", - "x": 0.2683, - "y": 13.8934 - }, - { - "l": "25.0", - "x": 0.2875, - "y": 14.0341 - }, - { - "l": "25.0", - "x": 0.3066, - "y": 14.1676 - }, - { - "l": "25.0", - "x": 0.3258, - "y": 14.2936 - }, - { - "l": "25.0", - "x": 0.345, - "y": 14.4065 - }, - { - "l": "25.0", - "x": 0.3641, - "y": 14.5104 - }, - { - "l": "25.0", - "x": 0.3833, - "y": 14.608 - }, - { - "l": "25.0", - "x": 0.4025, - "y": 14.7007 - }, - { - "l": "25.0", - "x": 0.4216, - "y": 14.7903 - }, - { - "l": "25.0", - "x": 0.4408, - "y": 14.8827 - }, - { - "l": "25.0", - "x": 0.46, - "y": 14.9719 - }, - { - "l": "25.0", - "x": 0.4791, - "y": 15.0572 - }, - { - "l": "25.0", - "x": 0.4983, - "y": 15.138 - }, - { - "l": "25.0", - "x": 0.5175, - "y": 15.2125 - }, - { - "l": "25.0", - "x": 0.5366, - "y": 15.2819 - }, - { - "l": "25.0", - "x": 0.5558, - "y": 15.3462 - }, - { - "l": "25.0", - "x": 0.5749, - "y": 15.4057 - }, - { - "l": "25.0", - "x": 0.5941, - "y": 15.4584 - }, - { - "l": "25.0", - "x": 0.6133, - "y": 15.5059 - }, - { - "l": "25.0", - "x": 0.6324, - "y": 15.5498 - }, - { - "l": "25.0", - "x": 0.6516, - "y": 15.5907 - }, - { - "l": "25.0", - "x": 0.6708, - "y": 15.6295 - }, - { - "l": "25.0", - "x": 0.6899, - "y": 15.6697 - }, - { - "l": "25.0", - "x": 0.7091, - "y": 15.708 - }, - { - "l": "25.0", - "x": 0.7283, - "y": 15.7444 - }, - { - "l": "25.0", - "x": 0.7474, - "y": 15.7786 - }, - { - "l": "25.0", - "x": 0.7666, - "y": 15.81 - }, - { - "l": "25.0", - "x": 0.7858, - "y": 15.839 - }, - { - "l": "25.0", - "x": 0.8049, - "y": 15.8657 - }, - { - "l": "25.0", - "x": 0.8241, - "y": 15.8901 - }, - { - "l": "25.0", - "x": 0.8433, - "y": 15.9115 - }, - { - "l": "25.0", - "x": 0.8624, - "y": 15.9306 - }, - { - "l": "25.0", - "x": 0.8816, - "y": 15.9479 - }, - { - "l": "25.0", - "x": 0.9008, - "y": 15.9637 - }, - { - "l": "25.0", - "x": 0.9199, - "y": 15.9783 - }, - { - "l": "25.0", - "x": 0.9391, - "y": 15.9932 - }, - { - "l": "25.0", - "x": 0.9582, - "y": 16.0071 - }, - { - "l": "25.0", - "x": 0.9774, - "y": 16.0199 - }, - { - "l": "25.0", - "x": 0.9966, - "y": 16.0316 - }, - { - "l": "25.0", - "x": 1.0157, - "y": 16.0418 - }, - { - "l": "25.0", - "x": 1.0349, - "y": 16.0508 - }, - { - "l": "25.0", - "x": 1.0541, - "y": 16.0587 - }, - { - "l": "25.0", - "x": 1.0732, - "y": 16.0657 - }, - { - "l": "25.0", - "x": 1.0924, - "y": 16.0716 - }, - { - "l": "25.0", - "x": 1.1116, - "y": 16.0766 - }, - { - "l": "25.0", - "x": 1.1307, - "y": 16.0809 - }, - { - "l": "25.0", - "x": 1.1499, - "y": 16.0846 - }, - { - "l": "25.0", - "x": 1.1691, - "y": 16.0879 - }, - { - "l": "25.0", - "x": 1.1882, - "y": 16.0911 - }, - { - "l": "25.0", - "x": 1.2074, - "y": 16.0941 - }, - { - "l": "25.0", - "x": 1.2266, - "y": 16.0967 - }, - { - "l": "25.0", - "x": 1.2457, - "y": 16.0989 - }, - { - "l": "25.0", - "x": 1.2649, - "y": 16.1009 - }, - { - "l": "25.0", - "x": 1.2841, - "y": 16.1025 - }, - { - "l": "25.0", - "x": 1.3032, - "y": 16.1038 - }, - { - "l": "25.0", - "x": 1.3224, - "y": 16.105 - }, - { - "l": "25.0", - "x": 1.3415, - "y": 16.1058 - }, - { - "l": "25.0", - "x": 1.3607, - "y": 16.1065 - }, - { - "l": "25.0", - "x": 1.3799, - "y": 16.1071 - }, - { - "l": "25.0", - "x": 1.399, - "y": 16.1075 - }, - { - "l": "25.0", - "x": 1.4182, - "y": 16.1077 - }, - { - "l": "25.0", - "x": 1.4374, - "y": 16.1079 - }, - { - "l": "25.0", - "x": 1.4565, - "y": 16.108 - }, - { - "l": "25.0", - "x": 1.4757, - "y": 16.108 - }, - { - "l": "25.0", - "x": 1.4949, - "y": 16.1079 - }, - { - "l": "25.0", - "x": 1.514, - "y": 16.1078 - }, - { - "l": "25.0", - "x": 1.5332, - "y": 16.1075 - }, - { - "l": "25.0", - "x": 1.5524, - "y": 16.1073 - }, - { - "l": "25.0", - "x": 1.5715, - "y": 16.1069 - }, - { - "l": "25.0", - "x": 1.5907, - "y": 16.1066 - }, - { - "l": "25.0", - "x": 1.6099, - "y": 16.1063 - }, - { - "l": "25.0", - "x": 1.629, - "y": 16.1059 - }, - { - "l": "25.0", - "x": 1.6482, - "y": 16.1055 - }, - { - "l": "25.0", - "x": 1.6674, - "y": 16.1051 - }, - { - "l": "25.0", - "x": 1.6865, - "y": 16.1046 - }, - { - "l": "25.0", - "x": 1.7057, - "y": 16.1041 - }, - { - "l": "25.0", - "x": 1.7248, - "y": 16.1036 - }, - { - "l": "25.0", - "x": 1.744, - "y": 16.103 - }, - { - "l": "25.0", - "x": 1.7632, - "y": 16.1025 - }, - { - "l": "25.0", - "x": 1.7823, - "y": 16.1019 - }, - { - "l": "25.0", - "x": 1.8015, - "y": 16.1014 - }, - { - "l": "25.0", - "x": 1.8207, - "y": 16.1009 - }, - { - "l": "25.0", - "x": 1.8398, - "y": 16.1005 - }, - { - "l": "25.0", - "x": 1.859, - "y": 16.1001 - }, - { - "l": "25.0", - "x": 1.8782, - "y": 16.0997 - }, - { - "l": "25.0", - "x": 1.8973, - "y": 16.0994 - }, - { - "l": "25.0", - "x": 1.9165, - "y": 16.0991 - }, - { - "l": "25.0", - "x": 1.9357, - "y": 16.0988 - }, - { - "l": "25.0", - "x": 1.9548, - "y": 16.0986 - }, - { - "l": "25.0", - "x": 1.974, - "y": 16.0984 - }, - { - "l": "25.0", - "x": 1.9932, - "y": 16.0982 - }, - { - "l": "25.0", - "x": 2.0123, - "y": 16.0981 - }, - { - "l": "25.0", - "x": 2.0957, - "y": 16.0985 - }, - { - "l": "25.0", - "x": 2.179, - "y": 16.0999 - }, - { - "l": "25.0", - "x": 2.2623, - "y": 16.1026 - }, - { - "l": "25.0", - "x": 2.3457, - "y": 16.1063 - }, - { - "l": "25.0", - "x": 2.429, - "y": 16.1107 - }, - { - "l": "25.0", - "x": 2.5123, - "y": 16.1167 - }, - { - "l": "25.0", - "x": 2.5957, - "y": 16.1234 - }, - { - "l": "25.0", - "x": 2.679, - "y": 16.1303 - }, - { - "l": "25.0", - "x": 2.7623, - "y": 16.1385 - }, - { - "l": "25.0", - "x": 2.8457, - "y": 16.1469 - }, - { - "l": "25.0", - "x": 2.929, - "y": 16.1547 - }, - { - "l": "25.0", - "x": 3.0123, - "y": 16.1633 - }, - { - "l": "25.0", - "x": 3.0957, - "y": 16.1714 - }, - { - "l": "25.0", - "x": 3.179, - "y": 16.1784 - }, - { - "l": "25.0", - "x": 3.2623, - "y": 16.1856 - }, - { - "l": "25.0", - "x": 3.3457, - "y": 16.1918 - }, - { - "l": "25.0", - "x": 3.429, - "y": 16.1967 - }, - { - "l": "25.0", - "x": 3.5123, - "y": 16.2012 - }, - { - "l": "25.0", - "x": 3.5957, - "y": 16.2046 - }, - { - "l": "25.0", - "x": 3.679, - "y": 16.2068 - }, - { - "l": "25.0", - "x": 3.7623, - "y": 16.2085 - }, - { - "l": "25.0", - "x": 3.8457, - "y": 16.2094 - }, - { - "l": "25.0", - "x": 3.929, - "y": 16.2096 - }, - { - "l": "25.0", - "x": 4.0123, - "y": 16.2093 - }, - { - "l": "25.0", - "x": 4.0957, - "y": 16.2085 - }, - { - "l": "25.0", - "x": 4.179, - "y": 16.2074 - }, - { - "l": "25.0", - "x": 4.2623, - "y": 16.2058 - }, - { - "l": "25.0", - "x": 4.3457, - "y": 16.2041 - }, - { - "l": "25.0", - "x": 4.429, - "y": 16.2025 - }, - { - "l": "25.0", - "x": 4.5123, - "y": 16.2007 - }, - { - "l": "25.0", - "x": 4.5957, - "y": 16.1992 - }, - { - "l": "25.0", - "x": 4.679, - "y": 16.1982 - }, - { - "l": "25.0", - "x": 4.7623, - "y": 16.1976 - }, - { - "l": "25.0", - "x": 4.8457, - "y": 16.1975 - }, - { - "l": "25.0", - "x": 4.929, - "y": 16.1981 - }, - { - "l": "25.0", - "x": 5.0123, - "y": 16.1995 - }, - { - "l": "25.0", - "x": 5.0957, - "y": 16.2016 - }, - { - "l": "25.0", - "x": 5.179, - "y": 16.2043 - }, - { - "l": "25.0", - "x": 5.2623, - "y": 16.2083 - }, - { - "l": "25.0", - "x": 5.3457, - "y": 16.2132 - }, - { - "l": "25.0", - "x": 5.429, - "y": 16.2186 - }, - { - "l": "25.0", - "x": 5.5123, - "y": 16.2258 - }, - { - "l": "25.0", - "x": 5.5957, - "y": 16.234 - }, - { - "l": "25.0", - "x": 5.679, - "y": 16.2427 - }, - { - "l": "25.0", - "x": 5.7623, - "y": 16.2536 - }, - { - "l": "25.0", - "x": 5.8457, - "y": 16.2655 - }, - { - "l": "25.0", - "x": 5.929, - "y": 16.2776 - }, - { - "l": "25.0", - "x": 6.0123, - "y": 16.2923 - }, - { - "l": "25.0", - "x": 6.0957, - "y": 16.3079 - }, - { - "l": "25.0", - "x": 6.179, - "y": 16.3233 - }, - { - "l": "25.0", - "x": 6.2623, - "y": 16.3419 - }, - { - "l": "25.0", - "x": 6.3457, - "y": 16.3612 - }, - { - "l": "25.0", - "x": 6.429, - "y": 16.38 - }, - { - "l": "25.0", - "x": 6.5123, - "y": 16.4024 - }, - { - "l": "25.0", - "x": 6.5957, - "y": 16.4255 - }, - { - "l": "25.0", - "x": 6.679, - "y": 16.4478 - }, - { - "l": "25.0", - "x": 6.7623, - "y": 16.474 - }, - { - "l": "25.0", - "x": 6.8457, - "y": 16.5007 - }, - { - "l": "25.0", - "x": 6.929, - "y": 16.5264 - }, - { - "l": "25.0", - "x": 7.0123, - "y": 16.5563 - }, - { - "l": "25.0", - "x": 7.0957, - "y": 16.5866 - }, - { - "l": "25.0", - "x": 7.179, - "y": 16.6153 - }, - { - "l": "25.0", - "x": 7.2623, - "y": 16.6487 - }, - { - "l": "25.0", - "x": 7.3457, - "y": 16.6822 - }, - { - "l": "25.0", - "x": 7.429, - "y": 16.7138 - }, - { - "l": "25.0", - "x": 7.5123, - "y": 16.7503 - }, - { - "l": "25.0", - "x": 7.5957, - "y": 16.7867 - }, - { - "l": "25.0", - "x": 7.679, - "y": 16.8208 - }, - { - "l": "25.0", - "x": 7.7623, - "y": 16.86 - }, - { - "l": "25.0", - "x": 7.8457, - "y": 16.899 - }, - { - "l": "25.0", - "x": 7.929, - "y": 16.9355 - }, - { - "l": "25.0", - "x": 8.0123, - "y": 16.9772 - }, - { - "l": "25.0", - "x": 8.0957, - "y": 17.0185 - }, - { - "l": "25.0", - "x": 8.179, - "y": 17.0571 - }, - { - "l": "25.0", - "x": 8.2623, - "y": 17.101 - }, - { - "l": "25.0", - "x": 8.3457, - "y": 17.1445 - }, - { - "l": "25.0", - "x": 8.429, - "y": 17.1848 - }, - { - "l": "25.0", - "x": 8.5123, - "y": 17.2307 - }, - { - "l": "25.0", - "x": 8.5957, - "y": 17.276 - }, - { - "l": "25.0", - "x": 8.679, - "y": 17.318 - }, - { - "l": "25.0", - "x": 8.7623, - "y": 17.3657 - }, - { - "l": "25.0", - "x": 8.8457, - "y": 17.4126 - }, - { - "l": "25.0", - "x": 8.929, - "y": 17.456 - }, - { - "l": "25.0", - "x": 9.0123, - "y": 17.5051 - }, - { - "l": "25.0", - "x": 9.0957, - "y": 17.5535 - }, - { - "l": "25.0", - "x": 9.179, - "y": 17.5981 - }, - { - "l": "25.0", - "x": 9.2623, - "y": 17.6486 - }, - { - "l": "25.0", - "x": 9.3457, - "y": 17.6981 - }, - { - "l": "25.0", - "x": 9.429, - "y": 17.7438 - }, - { - "l": "25.0", - "x": 9.5123, - "y": 17.7953 - }, - { - "l": "25.0", - "x": 9.5957, - "y": 17.8459 - }, - { - "l": "25.0", - "x": 9.679, - "y": 17.8924 - }, - { - "l": "25.0", - "x": 9.7623, - "y": 17.9449 - }, - { - "l": "25.0", - "x": 9.8457, - "y": 17.9963 - }, - { - "l": "25.0", - "x": 9.929, - "y": 18.0436 - }, - { - "l": "25.0", - "x": 10.0123, - "y": 18.097 - }, - { - "l": "25.0", - "x": 10.0957, - "y": 18.1492 - }, - { - "l": "25.0", - "x": 10.179, - "y": 18.1972 - }, - { - "l": "25.0", - "x": 10.2623, - "y": 18.2513 - }, - { - "l": "25.0", - "x": 10.3457, - "y": 18.3041 - }, - { - "l": "25.0", - "x": 10.429, - "y": 18.3527 - }, - { - "l": "25.0", - "x": 10.5123, - "y": 18.4074 - }, - { - "l": "25.0", - "x": 10.5957, - "y": 18.4608 - }, - { - "l": "25.0", - "x": 10.679, - "y": 18.5099 - }, - { - "l": "25.0", - "x": 10.7623, - "y": 18.5651 - }, - { - "l": "25.0", - "x": 10.8457, - "y": 18.619 - }, - { - "l": "25.0", - "x": 10.929, - "y": 18.6685 - }, - { - "l": "25.0", - "x": 11.0123, - "y": 18.7241 - }, - { - "l": "25.0", - "x": 11.0957, - "y": 18.7783 - }, - { - "l": "25.0", - "x": 11.179, - "y": 18.8281 - }, - { - "l": "25.0", - "x": 11.2623, - "y": 18.8839 - }, - { - "l": "25.0", - "x": 11.3457, - "y": 18.9384 - }, - { - "l": "25.0", - "x": 11.429, - "y": 18.9883 - }, - { - "l": "25.0", - "x": 11.5123, - "y": 19.0443 - }, - { - "l": "25.0", - "x": 11.5957, - "y": 19.0989 - }, - { - "l": "25.0", - "x": 11.679, - "y": 19.1488 - }, - { - "l": "25.0", - "x": 11.7623, - "y": 19.2049 - }, - { - "l": "25.0", - "x": 11.8457, - "y": 19.2594 - }, - { - "l": "25.0", - "x": 11.929, - "y": 19.3093 - }, - { - "l": "25.0", - "x": 12.0123, - "y": 19.3652 - }, - { - "l": "25.0", - "x": 12.0957, - "y": 19.4197 - }, - { - "l": "25.0", - "x": 12.179, - "y": 19.4694 - }, - { - "l": "25.0", - "x": 12.2623, - "y": 19.5252 - }, - { - "l": "25.0", - "x": 12.3457, - "y": 19.5794 - }, - { - "l": "25.0", - "x": 12.429, - "y": 19.6289 - }, - { - "l": "25.0", - "x": 12.5123, - "y": 19.6844 - }, - { - "l": "25.0", - "x": 12.5957, - "y": 19.7384 - }, - { - "l": "25.0", - "x": 12.679, - "y": 19.7876 - }, - { - "l": "25.0", - "x": 12.7623, - "y": 19.8428 - }, - { - "l": "25.0", - "x": 12.8457, - "y": 19.8964 - }, - { - "l": "25.0", - "x": 12.929, - "y": 19.9453 - }, - { - "l": "25.0", - "x": 13.0123, - "y": 20.0001 - }, - { - "l": "25.0", - "x": 13.0957, - "y": 20.0533 - }, - { - "l": "25.0", - "x": 13.179, - "y": 20.1019 - }, - { - "l": "25.0", - "x": 13.2623, - "y": 20.1562 - }, - { - "l": "25.0", - "x": 13.3457, - "y": 20.209 - }, - { - "l": "25.0", - "x": 13.429, - "y": 20.2571 - }, - { - "l": "25.0", - "x": 13.5123, - "y": 20.3109 - }, - { - "l": "25.0", - "x": 13.5957, - "y": 20.3632 - }, - { - "l": "25.0", - "x": 13.679, - "y": 20.4108 - }, - { - "l": "25.0", - "x": 13.7623, - "y": 20.464 - }, - { - "l": "25.0", - "x": 13.8457, - "y": 20.5157 - }, - { - "l": "25.0", - "x": 13.929, - "y": 20.5628 - }, - { - "l": "25.0", - "x": 14.0123, - "y": 20.6154 - }, - { - "l": "25.0", - "x": 14.0957, - "y": 20.6665 - }, - { - "l": "25.0", - "x": 14.179, - "y": 20.713 - }, - { - "l": "25.0", - "x": 14.2623, - "y": 20.765 - }, - { - "l": "25.0", - "x": 14.3457, - "y": 20.8154 - }, - { - "l": "25.0", - "x": 14.429, - "y": 20.8613 - }, - { - "l": "25.0", - "x": 14.5123, - "y": 20.9126 - }, - { - "l": "25.0", - "x": 14.5957, - "y": 20.9623 - }, - { - "l": "25.0", - "x": 14.679, - "y": 21.0075 - }, - { - "l": "25.0", - "x": 14.7623, - "y": 21.0581 - }, - { - "l": "25.0", - "x": 14.8457, - "y": 21.1071 - }, - { - "l": "25.0", - "x": 14.929, - "y": 21.1517 - }, - { - "l": "25.0", - "x": 15.0123, - "y": 21.2016 - }, - { - "l": "25.0", - "x": 15.0957, - "y": 21.2499 - }, - { - "l": "25.0", - "x": 15.179, - "y": 21.2938 - }, - { - "l": "25.0", - "x": 15.2623, - "y": 21.3429 - }, - { - "l": "25.0", - "x": 15.3457, - "y": 21.3905 - }, - { - "l": "25.0", - "x": 15.429, - "y": 21.4337 - }, - { - "l": "25.0", - "x": 15.5123, - "y": 21.4821 - }, - { - "l": "25.0", - "x": 15.5957, - "y": 21.5289 - }, - { - "l": "25.0", - "x": 15.679, - "y": 21.5715 - }, - { - "l": "25.0", - "x": 15.7623, - "y": 21.6191 - }, - { - "l": "25.0", - "x": 15.8457, - "y": 21.6651 - }, - { - "l": "25.0", - "x": 15.929, - "y": 21.707 - }, - { - "l": "25.0", - "x": 16.0123, - "y": 21.7538 - }, - { - "l": "25.0", - "x": 16.0957, - "y": 21.7991 - }, - { - "l": "25.0", - "x": 16.179, - "y": 21.8404 - }, - { - "l": "25.0", - "x": 16.2623, - "y": 21.8864 - }, - { - "l": "25.0", - "x": 16.3457, - "y": 21.931 - }, - { - "l": "25.0", - "x": 16.429, - "y": 21.9716 - }, - { - "l": "25.0", - "x": 16.5123, - "y": 22.0169 - }, - { - "l": "25.0", - "x": 16.5957, - "y": 22.0607 - }, - { - "l": "25.0", - "x": 16.679, - "y": 22.1007 - }, - { - "l": "25.0", - "x": 16.7623, - "y": 22.1452 - }, - { - "l": "25.0", - "x": 16.8457, - "y": 22.1884 - }, - { - "l": "25.0", - "x": 16.929, - "y": 22.2276 - }, - { - "l": "25.0", - "x": 17.0123, - "y": 22.2715 - }, - { - "l": "25.0", - "x": 17.0957, - "y": 22.3139 - }, - { - "l": "25.0", - "x": 17.179, - "y": 22.3525 - }, - { - "l": "25.0", - "x": 17.2623, - "y": 22.3957 - }, - { - "l": "25.0", - "x": 17.3457, - "y": 22.4374 - }, - { - "l": "25.0", - "x": 17.429, - "y": 22.4754 - }, - { - "l": "25.0", - "x": 17.5123, - "y": 22.5179 - }, - { - "l": "25.0", - "x": 17.5957, - "y": 22.559 - }, - { - "l": "25.0", - "x": 17.679, - "y": 22.5964 - }, - { - "l": "25.0", - "x": 17.7623, - "y": 22.6381 - }, - { - "l": "25.0", - "x": 17.8457, - "y": 22.6785 - }, - { - "l": "25.0", - "x": 17.929, - "y": 22.7153 - }, - { - "l": "25.0", - "x": 18.0123, - "y": 22.7564 - }, - { - "l": "25.0", - "x": 18.0957, - "y": 22.7962 - }, - { - "l": "25.0", - "x": 18.179, - "y": 22.8324 - }, - { - "l": "25.0", - "x": 18.2623, - "y": 22.8728 - }, - { - "l": "25.0", - "x": 18.3457, - "y": 22.912 - }, - { - "l": "25.0", - "x": 18.429, - "y": 22.9476 - }, - { - "l": "25.0", - "x": 18.5123, - "y": 22.9874 - }, - { - "l": "25.0", - "x": 18.5957, - "y": 23.026 - }, - { - "l": "25.0", - "x": 18.679, - "y": 23.061 - }, - { - "l": "25.0", - "x": 18.7623, - "y": 23.1002 - }, - { - "l": "25.0", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 0.0, - "y": 12.2379 - }, - { - "l": "50.0", - "x": 0.0192, - "y": 12.4708 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 12.7037 - }, - { - "l": "50.0", - "x": 0.0575, - "y": 12.9366 - }, - { - "l": "50.0", - "x": 0.0767, - "y": 13.1695 - }, - { - "l": "50.0", - "x": 0.0958, - "y": 13.3657 - }, - { - "l": "50.0", - "x": 0.115, - "y": 13.5435 - }, - { - "l": "50.0", - "x": 0.1342, - "y": 13.7127 - }, - { - "l": "50.0", - "x": 0.1533, - "y": 13.8761 - }, - { - "l": "50.0", - "x": 0.1725, - "y": 14.0389 - }, - { - "l": "50.0", - "x": 0.1916, - "y": 14.213 - }, - { - "l": "50.0", - "x": 0.2108, - "y": 14.3849 - }, - { - "l": "50.0", - "x": 0.23, - "y": 14.5534 - }, - { - "l": "50.0", - "x": 0.2491, - "y": 14.7171 - }, - { - "l": "50.0", - "x": 0.2683, - "y": 14.8728 - }, - { - "l": "50.0", - "x": 0.2875, - "y": 15.0217 - }, - { - "l": "50.0", - "x": 0.3066, - "y": 15.1632 - }, - { - "l": "50.0", - "x": 0.3258, - "y": 15.2967 - }, - { - "l": "50.0", - "x": 0.345, - "y": 15.4162 - }, - { - "l": "50.0", - "x": 0.3641, - "y": 15.5263 - }, - { - "l": "50.0", - "x": 0.3833, - "y": 15.6297 - }, - { - "l": "50.0", - "x": 0.4025, - "y": 15.7278 - }, - { - "l": "50.0", - "x": 0.4216, - "y": 15.8227 - }, - { - "l": "50.0", - "x": 0.4408, - "y": 15.9206 - }, - { - "l": "50.0", - "x": 0.46, - "y": 16.015 - }, - { - "l": "50.0", - "x": 0.4791, - "y": 16.1053 - }, - { - "l": "50.0", - "x": 0.4983, - "y": 16.1909 - }, - { - "l": "50.0", - "x": 0.5175, - "y": 16.2697 - }, - { - "l": "50.0", - "x": 0.5366, - "y": 16.3431 - }, - { - "l": "50.0", - "x": 0.5558, - "y": 16.4111 - }, - { - "l": "50.0", - "x": 0.5749, - "y": 16.4739 - }, - { - "l": "50.0", - "x": 0.5941, - "y": 16.5296 - }, - { - "l": "50.0", - "x": 0.6133, - "y": 16.5799 - }, - { - "l": "50.0", - "x": 0.6324, - "y": 16.6262 - }, - { - "l": "50.0", - "x": 0.6516, - "y": 16.6694 - }, - { - "l": "50.0", - "x": 0.6708, - "y": 16.7104 - }, - { - "l": "50.0", - "x": 0.6899, - "y": 16.7527 - }, - { - "l": "50.0", - "x": 0.7091, - "y": 16.7932 - }, - { - "l": "50.0", - "x": 0.7283, - "y": 16.8315 - }, - { - "l": "50.0", - "x": 0.7474, - "y": 16.8675 - }, - { - "l": "50.0", - "x": 0.7666, - "y": 16.9006 - }, - { - "l": "50.0", - "x": 0.7858, - "y": 16.931 - }, - { - "l": "50.0", - "x": 0.8049, - "y": 16.959 - }, - { - "l": "50.0", - "x": 0.8241, - "y": 16.9846 - }, - { - "l": "50.0", - "x": 0.8433, - "y": 17.0071 - }, - { - "l": "50.0", - "x": 0.8624, - "y": 17.0271 - }, - { - "l": "50.0", - "x": 0.8816, - "y": 17.0452 - }, - { - "l": "50.0", - "x": 0.9008, - "y": 17.0617 - }, - { - "l": "50.0", - "x": 0.9199, - "y": 17.077 - }, - { - "l": "50.0", - "x": 0.9391, - "y": 17.0924 - }, - { - "l": "50.0", - "x": 0.9582, - "y": 17.1069 - }, - { - "l": "50.0", - "x": 0.9774, - "y": 17.1202 - }, - { - "l": "50.0", - "x": 0.9966, - "y": 17.1323 - }, - { - "l": "50.0", - "x": 1.0157, - "y": 17.1428 - }, - { - "l": "50.0", - "x": 1.0349, - "y": 17.1521 - }, - { - "l": "50.0", - "x": 1.0541, - "y": 17.1602 - }, - { - "l": "50.0", - "x": 1.0732, - "y": 17.1673 - }, - { - "l": "50.0", - "x": 1.0924, - "y": 17.1733 - }, - { - "l": "50.0", - "x": 1.1116, - "y": 17.1784 - }, - { - "l": "50.0", - "x": 1.1307, - "y": 17.1827 - }, - { - "l": "50.0", - "x": 1.1499, - "y": 17.1864 - }, - { - "l": "50.0", - "x": 1.1691, - "y": 17.1897 - }, - { - "l": "50.0", - "x": 1.1882, - "y": 17.1929 - }, - { - "l": "50.0", - "x": 1.2074, - "y": 17.1957 - }, - { - "l": "50.0", - "x": 1.2266, - "y": 17.1982 - }, - { - "l": "50.0", - "x": 1.2457, - "y": 17.2004 - }, - { - "l": "50.0", - "x": 1.2649, - "y": 17.2022 - }, - { - "l": "50.0", - "x": 1.2841, - "y": 17.2037 - }, - { - "l": "50.0", - "x": 1.3032, - "y": 17.2049 - }, - { - "l": "50.0", - "x": 1.3224, - "y": 17.2059 - }, - { - "l": "50.0", - "x": 1.3415, - "y": 17.2066 - }, - { - "l": "50.0", - "x": 1.3607, - "y": 17.2072 - }, - { - "l": "50.0", - "x": 1.3799, - "y": 17.2076 - }, - { - "l": "50.0", - "x": 1.399, - "y": 17.2079 - }, - { - "l": "50.0", - "x": 1.4182, - "y": 17.208 - }, - { - "l": "50.0", - "x": 1.4374, - "y": 17.208 - }, - { - "l": "50.0", - "x": 1.4565, - "y": 17.208 - }, - { - "l": "50.0", - "x": 1.4757, - "y": 17.2078 - }, - { - "l": "50.0", - "x": 1.4949, - "y": 17.2076 - }, - { - "l": "50.0", - "x": 1.514, - "y": 17.2073 - }, - { - "l": "50.0", - "x": 1.5332, - "y": 17.207 - }, - { - "l": "50.0", - "x": 1.5524, - "y": 17.2066 - }, - { - "l": "50.0", - "x": 1.5715, - "y": 17.2061 - }, - { - "l": "50.0", - "x": 1.5907, - "y": 17.2057 - }, - { - "l": "50.0", - "x": 1.6099, - "y": 17.2053 - }, - { - "l": "50.0", - "x": 1.629, - "y": 17.2048 - }, - { - "l": "50.0", - "x": 1.6482, - "y": 17.2043 - }, - { - "l": "50.0", - "x": 1.6674, - "y": 17.2038 - }, - { - "l": "50.0", - "x": 1.6865, - "y": 17.2032 - }, - { - "l": "50.0", - "x": 1.7057, - "y": 17.2027 - }, - { - "l": "50.0", - "x": 1.7248, - "y": 17.2021 - }, - { - "l": "50.0", - "x": 1.744, - "y": 17.2015 - }, - { - "l": "50.0", - "x": 1.7632, - "y": 17.2009 - }, - { - "l": "50.0", - "x": 1.7823, - "y": 17.2003 - }, - { - "l": "50.0", - "x": 1.8015, - "y": 17.1997 - }, - { - "l": "50.0", - "x": 1.8207, - "y": 17.1992 - }, - { - "l": "50.0", - "x": 1.8398, - "y": 17.1987 - }, - { - "l": "50.0", - "x": 1.859, - "y": 17.1983 - }, - { - "l": "50.0", - "x": 1.8782, - "y": 17.198 - }, - { - "l": "50.0", - "x": 1.8973, - "y": 17.1977 - }, - { - "l": "50.0", - "x": 1.9165, - "y": 17.1974 - }, - { - "l": "50.0", - "x": 1.9357, - "y": 17.1972 - }, - { - "l": "50.0", - "x": 1.9548, - "y": 17.197 - }, - { - "l": "50.0", - "x": 1.974, - "y": 17.1969 - }, - { - "l": "50.0", - "x": 1.9932, - "y": 17.1968 - }, - { - "l": "50.0", - "x": 2.0123, - "y": 17.1969 - }, - { - "l": "50.0", - "x": 2.0957, - "y": 17.1977 - }, - { - "l": "50.0", - "x": 2.179, - "y": 17.1999 - }, - { - "l": "50.0", - "x": 2.2623, - "y": 17.2036 - }, - { - "l": "50.0", - "x": 2.3457, - "y": 17.2086 - }, - { - "l": "50.0", - "x": 2.429, - "y": 17.2144 - }, - { - "l": "50.0", - "x": 2.5123, - "y": 17.2222 - }, - { - "l": "50.0", - "x": 2.5957, - "y": 17.2309 - }, - { - "l": "50.0", - "x": 2.679, - "y": 17.2397 - }, - { - "l": "50.0", - "x": 2.7623, - "y": 17.2504 - }, - { - "l": "50.0", - "x": 2.8457, - "y": 17.2614 - }, - { - "l": "50.0", - "x": 2.929, - "y": 17.2716 - }, - { - "l": "50.0", - "x": 3.0123, - "y": 17.2832 - }, - { - "l": "50.0", - "x": 3.0957, - "y": 17.2943 - }, - { - "l": "50.0", - "x": 3.179, - "y": 17.3041 - }, - { - "l": "50.0", - "x": 3.2623, - "y": 17.3146 - }, - { - "l": "50.0", - "x": 3.3457, - "y": 17.3242 - }, - { - "l": "50.0", - "x": 3.429, - "y": 17.3321 - }, - { - "l": "50.0", - "x": 3.5123, - "y": 17.3402 - }, - { - "l": "50.0", - "x": 3.5957, - "y": 17.3471 - }, - { - "l": "50.0", - "x": 3.679, - "y": 17.3527 - }, - { - "l": "50.0", - "x": 3.7623, - "y": 17.3581 - }, - { - "l": "50.0", - "x": 3.8457, - "y": 17.3627 - }, - { - "l": "50.0", - "x": 3.929, - "y": 17.3664 - }, - { - "l": "50.0", - "x": 4.0123, - "y": 17.37 - }, - { - "l": "50.0", - "x": 4.0957, - "y": 17.3732 - }, - { - "l": "50.0", - "x": 4.179, - "y": 17.3757 - }, - { - "l": "50.0", - "x": 4.2623, - "y": 17.3784 - }, - { - "l": "50.0", - "x": 4.3457, - "y": 17.381 - }, - { - "l": "50.0", - "x": 4.429, - "y": 17.3834 - }, - { - "l": "50.0", - "x": 4.5123, - "y": 17.3862 - }, - { - "l": "50.0", - "x": 4.5957, - "y": 17.3893 - }, - { - "l": "50.0", - "x": 4.679, - "y": 17.3926 - }, - { - "l": "50.0", - "x": 4.7623, - "y": 17.397 - }, - { - "l": "50.0", - "x": 4.8457, - "y": 17.4019 - }, - { - "l": "50.0", - "x": 4.929, - "y": 17.4072 - }, - { - "l": "50.0", - "x": 5.0123, - "y": 17.4141 - }, - { - "l": "50.0", - "x": 5.0957, - "y": 17.4217 - }, - { - "l": "50.0", - "x": 5.179, - "y": 17.4296 - }, - { - "l": "50.0", - "x": 5.2623, - "y": 17.4396 - }, - { - "l": "50.0", - "x": 5.3457, - "y": 17.4505 - }, - { - "l": "50.0", - "x": 5.429, - "y": 17.4616 - }, - { - "l": "50.0", - "x": 5.5123, - "y": 17.4753 - }, - { - "l": "50.0", - "x": 5.5957, - "y": 17.4901 - }, - { - "l": "50.0", - "x": 5.679, - "y": 17.5049 - }, - { - "l": "50.0", - "x": 5.7623, - "y": 17.523 - }, - { - "l": "50.0", - "x": 5.8457, - "y": 17.542 - }, - { - "l": "50.0", - "x": 5.929, - "y": 17.5607 - }, - { - "l": "50.0", - "x": 6.0123, - "y": 17.5831 - }, - { - "l": "50.0", - "x": 6.0957, - "y": 17.6064 - }, - { - "l": "50.0", - "x": 6.179, - "y": 17.6289 - }, - { - "l": "50.0", - "x": 6.2623, - "y": 17.6557 - }, - { - "l": "50.0", - "x": 6.3457, - "y": 17.6832 - }, - { - "l": "50.0", - "x": 6.429, - "y": 17.7097 - }, - { - "l": "50.0", - "x": 6.5123, - "y": 17.7408 - }, - { - "l": "50.0", - "x": 6.5957, - "y": 17.7726 - }, - { - "l": "50.0", - "x": 6.679, - "y": 17.803 - }, - { - "l": "50.0", - "x": 6.7623, - "y": 17.8386 - }, - { - "l": "50.0", - "x": 6.8457, - "y": 17.8745 - }, - { - "l": "50.0", - "x": 6.929, - "y": 17.9088 - }, - { - "l": "50.0", - "x": 7.0123, - "y": 17.9485 - }, - { - "l": "50.0", - "x": 7.0957, - "y": 17.9886 - }, - { - "l": "50.0", - "x": 7.179, - "y": 18.0264 - }, - { - "l": "50.0", - "x": 7.2623, - "y": 18.0701 - }, - { - "l": "50.0", - "x": 7.3457, - "y": 18.1138 - }, - { - "l": "50.0", - "x": 7.429, - "y": 18.1549 - }, - { - "l": "50.0", - "x": 7.5123, - "y": 18.2021 - }, - { - "l": "50.0", - "x": 7.5957, - "y": 18.2492 - }, - { - "l": "50.0", - "x": 7.679, - "y": 18.2933 - }, - { - "l": "50.0", - "x": 7.7623, - "y": 18.3437 - }, - { - "l": "50.0", - "x": 7.8457, - "y": 18.3938 - }, - { - "l": "50.0", - "x": 7.929, - "y": 18.4405 - }, - { - "l": "50.0", - "x": 8.0123, - "y": 18.4939 - }, - { - "l": "50.0", - "x": 8.0957, - "y": 18.5467 - }, - { - "l": "50.0", - "x": 8.179, - "y": 18.5959 - }, - { - "l": "50.0", - "x": 8.2623, - "y": 18.6519 - }, - { - "l": "50.0", - "x": 8.3457, - "y": 18.7072 - }, - { - "l": "50.0", - "x": 8.429, - "y": 18.7586 - }, - { - "l": "50.0", - "x": 8.5123, - "y": 18.8169 - }, - { - "l": "50.0", - "x": 8.5957, - "y": 18.8744 - }, - { - "l": "50.0", - "x": 8.679, - "y": 18.9277 - }, - { - "l": "50.0", - "x": 8.7623, - "y": 18.9881 - }, - { - "l": "50.0", - "x": 8.8457, - "y": 19.0476 - }, - { - "l": "50.0", - "x": 8.929, - "y": 19.1025 - }, - { - "l": "50.0", - "x": 9.0123, - "y": 19.1648 - }, - { - "l": "50.0", - "x": 9.0957, - "y": 19.226 - }, - { - "l": "50.0", - "x": 9.179, - "y": 19.2825 - }, - { - "l": "50.0", - "x": 9.2623, - "y": 19.3464 - }, - { - "l": "50.0", - "x": 9.3457, - "y": 19.409 - }, - { - "l": "50.0", - "x": 9.429, - "y": 19.4668 - }, - { - "l": "50.0", - "x": 9.5123, - "y": 19.5321 - }, - { - "l": "50.0", - "x": 9.5957, - "y": 19.596 - }, - { - "l": "50.0", - "x": 9.679, - "y": 19.6549 - }, - { - "l": "50.0", - "x": 9.7623, - "y": 19.7213 - }, - { - "l": "50.0", - "x": 9.8457, - "y": 19.7864 - }, - { - "l": "50.0", - "x": 9.929, - "y": 19.8463 - }, - { - "l": "50.0", - "x": 10.0123, - "y": 19.9138 - }, - { - "l": "50.0", - "x": 10.0957, - "y": 19.9799 - }, - { - "l": "50.0", - "x": 10.179, - "y": 20.0407 - }, - { - "l": "50.0", - "x": 10.2623, - "y": 20.1092 - }, - { - "l": "50.0", - "x": 10.3457, - "y": 20.1762 - }, - { - "l": "50.0", - "x": 10.429, - "y": 20.2377 - }, - { - "l": "50.0", - "x": 10.5123, - "y": 20.3071 - }, - { - "l": "50.0", - "x": 10.5957, - "y": 20.3748 - }, - { - "l": "50.0", - "x": 10.679, - "y": 20.4371 - }, - { - "l": "50.0", - "x": 10.7623, - "y": 20.5072 - }, - { - "l": "50.0", - "x": 10.8457, - "y": 20.5756 - }, - { - "l": "50.0", - "x": 10.929, - "y": 20.6384 - }, - { - "l": "50.0", - "x": 11.0123, - "y": 20.7091 - }, - { - "l": "50.0", - "x": 11.0957, - "y": 20.778 - }, - { - "l": "50.0", - "x": 11.179, - "y": 20.8413 - }, - { - "l": "50.0", - "x": 11.2623, - "y": 20.9124 - }, - { - "l": "50.0", - "x": 11.3457, - "y": 20.9817 - }, - { - "l": "50.0", - "x": 11.429, - "y": 21.0453 - }, - { - "l": "50.0", - "x": 11.5123, - "y": 21.1167 - }, - { - "l": "50.0", - "x": 11.5957, - "y": 21.1863 - }, - { - "l": "50.0", - "x": 11.679, - "y": 21.25 - }, - { - "l": "50.0", - "x": 11.7623, - "y": 21.3216 - }, - { - "l": "50.0", - "x": 11.8457, - "y": 21.3914 - }, - { - "l": "50.0", - "x": 11.929, - "y": 21.4552 - }, - { - "l": "50.0", - "x": 12.0123, - "y": 21.5268 - }, - { - "l": "50.0", - "x": 12.0957, - "y": 21.5966 - }, - { - "l": "50.0", - "x": 12.179, - "y": 21.6603 - }, - { - "l": "50.0", - "x": 12.2623, - "y": 21.7319 - }, - { - "l": "50.0", - "x": 12.3457, - "y": 21.8016 - }, - { - "l": "50.0", - "x": 12.429, - "y": 21.8652 - }, - { - "l": "50.0", - "x": 12.5123, - "y": 21.9367 - }, - { - "l": "50.0", - "x": 12.5957, - "y": 22.0061 - }, - { - "l": "50.0", - "x": 12.679, - "y": 22.0697 - }, - { - "l": "50.0", - "x": 12.7623, - "y": 22.1409 - }, - { - "l": "50.0", - "x": 12.8457, - "y": 22.2101 - }, - { - "l": "50.0", - "x": 12.929, - "y": 22.2734 - }, - { - "l": "50.0", - "x": 13.0123, - "y": 22.3443 - }, - { - "l": "50.0", - "x": 13.0957, - "y": 22.4132 - }, - { - "l": "50.0", - "x": 13.179, - "y": 22.4761 - }, - { - "l": "50.0", - "x": 13.2623, - "y": 22.5467 - }, - { - "l": "50.0", - "x": 13.3457, - "y": 22.6152 - }, - { - "l": "50.0", - "x": 13.429, - "y": 22.6778 - }, - { - "l": "50.0", - "x": 13.5123, - "y": 22.7479 - }, - { - "l": "50.0", - "x": 13.5957, - "y": 22.816 - }, - { - "l": "50.0", - "x": 13.679, - "y": 22.8781 - }, - { - "l": "50.0", - "x": 13.7623, - "y": 22.9477 - }, - { - "l": "50.0", - "x": 13.8457, - "y": 23.0153 - }, - { - "l": "50.0", - "x": 13.929, - "y": 23.0769 - }, - { - "l": "50.0", - "x": 14.0123, - "y": 23.146 - }, - { - "l": "50.0", - "x": 14.0957, - "y": 23.213 - }, - { - "l": "50.0", - "x": 14.179, - "y": 23.2741 - }, - { - "l": "50.0", - "x": 14.2623, - "y": 23.3425 - }, - { - "l": "50.0", - "x": 14.3457, - "y": 23.4089 - }, - { - "l": "50.0", - "x": 14.429, - "y": 23.4694 - }, - { - "l": "50.0", - "x": 14.5123, - "y": 23.5372 - }, - { - "l": "50.0", - "x": 14.5957, - "y": 23.6029 - }, - { - "l": "50.0", - "x": 14.679, - "y": 23.6629 - }, - { - "l": "50.0", - "x": 14.7623, - "y": 23.73 - }, - { - "l": "50.0", - "x": 14.8457, - "y": 23.795 - }, - { - "l": "50.0", - "x": 14.929, - "y": 23.8544 - }, - { - "l": "50.0", - "x": 15.0123, - "y": 23.9207 - }, - { - "l": "50.0", - "x": 15.0957, - "y": 23.9851 - }, - { - "l": "50.0", - "x": 15.179, - "y": 24.0438 - }, - { - "l": "50.0", - "x": 15.2623, - "y": 24.1094 - }, - { - "l": "50.0", - "x": 15.3457, - "y": 24.1731 - }, - { - "l": "50.0", - "x": 15.429, - "y": 24.2311 - }, - { - "l": "50.0", - "x": 15.5123, - "y": 24.296 - }, - { - "l": "50.0", - "x": 15.5957, - "y": 24.359 - }, - { - "l": "50.0", - "x": 15.679, - "y": 24.4164 - }, - { - "l": "50.0", - "x": 15.7623, - "y": 24.4805 - }, - { - "l": "50.0", - "x": 15.8457, - "y": 24.5427 - }, - { - "l": "50.0", - "x": 15.929, - "y": 24.5995 - }, - { - "l": "50.0", - "x": 16.0123, - "y": 24.6629 - }, - { - "l": "50.0", - "x": 16.0957, - "y": 24.7244 - }, - { - "l": "50.0", - "x": 16.179, - "y": 24.7804 - }, - { - "l": "50.0", - "x": 16.2623, - "y": 24.8431 - }, - { - "l": "50.0", - "x": 16.3457, - "y": 24.9039 - }, - { - "l": "50.0", - "x": 16.429, - "y": 24.9593 - }, - { - "l": "50.0", - "x": 16.5123, - "y": 25.0213 - }, - { - "l": "50.0", - "x": 16.5957, - "y": 25.0814 - }, - { - "l": "50.0", - "x": 16.679, - "y": 25.1362 - }, - { - "l": "50.0", - "x": 16.7623, - "y": 25.1974 - }, - { - "l": "50.0", - "x": 16.8457, - "y": 25.2568 - }, - { - "l": "50.0", - "x": 16.929, - "y": 25.311 - }, - { - "l": "50.0", - "x": 17.0123, - "y": 25.3715 - }, - { - "l": "50.0", - "x": 17.0957, - "y": 25.4302 - }, - { - "l": "50.0", - "x": 17.179, - "y": 25.4838 - }, - { - "l": "50.0", - "x": 17.2623, - "y": 25.5436 - }, - { - "l": "50.0", - "x": 17.3457, - "y": 25.6017 - }, - { - "l": "50.0", - "x": 17.429, - "y": 25.6546 - }, - { - "l": "50.0", - "x": 17.5123, - "y": 25.7138 - }, - { - "l": "50.0", - "x": 17.5957, - "y": 25.7712 - }, - { - "l": "50.0", - "x": 17.679, - "y": 25.8235 - }, - { - "l": "50.0", - "x": 17.7623, - "y": 25.8821 - }, - { - "l": "50.0", - "x": 17.8457, - "y": 25.9389 - }, - { - "l": "50.0", - "x": 17.929, - "y": 25.9906 - }, - { - "l": "50.0", - "x": 18.0123, - "y": 26.0485 - }, - { - "l": "50.0", - "x": 18.0957, - "y": 26.1047 - }, - { - "l": "50.0", - "x": 18.179, - "y": 26.1559 - }, - { - "l": "50.0", - "x": 18.2623, - "y": 26.2131 - }, - { - "l": "50.0", - "x": 18.3457, - "y": 26.2687 - }, - { - "l": "50.0", - "x": 18.429, - "y": 26.3193 - }, - { - "l": "50.0", - "x": 18.5123, - "y": 26.376 - }, - { - "l": "50.0", - "x": 18.5957, - "y": 26.4309 - }, - { - "l": "50.0", - "x": 18.679, - "y": 26.481 - }, - { - "l": "50.0", - "x": 18.7623, - "y": 26.5371 - }, - { - "l": "50.0", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 0.0, - "y": 13.1632 - }, - { - "l": "75.0", - "x": 0.0192, - "y": 13.4092 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 13.6549 - }, - { - "l": "75.0", - "x": 0.0575, - "y": 13.9005 - }, - { - "l": "75.0", - "x": 0.0767, - "y": 14.1459 - }, - { - "l": "75.0", - "x": 0.0958, - "y": 14.3531 - }, - { - "l": "75.0", - "x": 0.115, - "y": 14.5413 - }, - { - "l": "75.0", - "x": 0.1342, - "y": 14.7205 - }, - { - "l": "75.0", - "x": 0.1533, - "y": 14.8938 - }, - { - "l": "75.0", - "x": 0.1725, - "y": 15.0666 - }, - { - "l": "75.0", - "x": 0.1916, - "y": 15.2514 - }, - { - "l": "75.0", - "x": 0.2108, - "y": 15.4341 - }, - { - "l": "75.0", - "x": 0.23, - "y": 15.6131 - }, - { - "l": "75.0", - "x": 0.2491, - "y": 15.7872 - }, - { - "l": "75.0", - "x": 0.2683, - "y": 15.9529 - }, - { - "l": "75.0", - "x": 0.2875, - "y": 16.1114 - }, - { - "l": "75.0", - "x": 0.3066, - "y": 16.262 - }, - { - "l": "75.0", - "x": 0.3258, - "y": 16.4041 - }, - { - "l": "75.0", - "x": 0.345, - "y": 16.5315 - }, - { - "l": "75.0", - "x": 0.3641, - "y": 16.6487 - }, - { - "l": "75.0", - "x": 0.3833, - "y": 16.7588 - }, - { - "l": "75.0", - "x": 0.4025, - "y": 16.8635 - }, - { - "l": "75.0", - "x": 0.4216, - "y": 16.9646 - }, - { - "l": "75.0", - "x": 0.4408, - "y": 17.0689 - }, - { - "l": "75.0", - "x": 0.46, - "y": 17.1695 - }, - { - "l": "75.0", - "x": 0.4791, - "y": 17.2658 - }, - { - "l": "75.0", - "x": 0.4983, - "y": 17.3571 - }, - { - "l": "75.0", - "x": 0.5175, - "y": 17.4411 - }, - { - "l": "75.0", - "x": 0.5366, - "y": 17.5193 - }, - { - "l": "75.0", - "x": 0.5558, - "y": 17.5919 - }, - { - "l": "75.0", - "x": 0.5749, - "y": 17.6589 - }, - { - "l": "75.0", - "x": 0.5941, - "y": 17.7183 - }, - { - "l": "75.0", - "x": 0.6133, - "y": 17.7719 - }, - { - "l": "75.0", - "x": 0.6324, - "y": 17.8213 - }, - { - "l": "75.0", - "x": 0.6516, - "y": 17.8674 - }, - { - "l": "75.0", - "x": 0.6708, - "y": 17.9111 - }, - { - "l": "75.0", - "x": 0.6899, - "y": 17.9563 - }, - { - "l": "75.0", - "x": 0.7091, - "y": 17.9994 - }, - { - "l": "75.0", - "x": 0.7283, - "y": 18.0403 - }, - { - "l": "75.0", - "x": 0.7474, - "y": 18.0787 - }, - { - "l": "75.0", - "x": 0.7666, - "y": 18.114 - }, - { - "l": "75.0", - "x": 0.7858, - "y": 18.1465 - }, - { - "l": "75.0", - "x": 0.8049, - "y": 18.1764 - }, - { - "l": "75.0", - "x": 0.8241, - "y": 18.2037 - }, - { - "l": "75.0", - "x": 0.8433, - "y": 18.2277 - }, - { - "l": "75.0", - "x": 0.8624, - "y": 18.249 - }, - { - "l": "75.0", - "x": 0.8816, - "y": 18.2683 - }, - { - "l": "75.0", - "x": 0.9008, - "y": 18.2859 - }, - { - "l": "75.0", - "x": 0.9199, - "y": 18.3022 - }, - { - "l": "75.0", - "x": 0.9391, - "y": 18.3188 - }, - { - "l": "75.0", - "x": 0.9582, - "y": 18.3342 - }, - { - "l": "75.0", - "x": 0.9774, - "y": 18.3484 - }, - { - "l": "75.0", - "x": 0.9966, - "y": 18.3613 - }, - { - "l": "75.0", - "x": 1.0157, - "y": 18.3726 - }, - { - "l": "75.0", - "x": 1.0349, - "y": 18.3825 - }, - { - "l": "75.0", - "x": 1.0541, - "y": 18.3912 - }, - { - "l": "75.0", - "x": 1.0732, - "y": 18.3988 - }, - { - "l": "75.0", - "x": 1.0924, - "y": 18.4052 - }, - { - "l": "75.0", - "x": 1.1116, - "y": 18.4106 - }, - { - "l": "75.0", - "x": 1.1307, - "y": 18.4153 - }, - { - "l": "75.0", - "x": 1.1499, - "y": 18.4193 - }, - { - "l": "75.0", - "x": 1.1691, - "y": 18.4227 - }, - { - "l": "75.0", - "x": 1.1882, - "y": 18.4262 - }, - { - "l": "75.0", - "x": 1.2074, - "y": 18.4293 - }, - { - "l": "75.0", - "x": 1.2266, - "y": 18.432 - }, - { - "l": "75.0", - "x": 1.2457, - "y": 18.4344 - }, - { - "l": "75.0", - "x": 1.2649, - "y": 18.4364 - }, - { - "l": "75.0", - "x": 1.2841, - "y": 18.4381 - }, - { - "l": "75.0", - "x": 1.3032, - "y": 18.4394 - }, - { - "l": "75.0", - "x": 1.3224, - "y": 18.4406 - }, - { - "l": "75.0", - "x": 1.3415, - "y": 18.4414 - }, - { - "l": "75.0", - "x": 1.3607, - "y": 18.4421 - }, - { - "l": "75.0", - "x": 1.3799, - "y": 18.4427 - }, - { - "l": "75.0", - "x": 1.399, - "y": 18.443 - }, - { - "l": "75.0", - "x": 1.4182, - "y": 18.4433 - }, - { - "l": "75.0", - "x": 1.4374, - "y": 18.4434 - }, - { - "l": "75.0", - "x": 1.4565, - "y": 18.4435 - }, - { - "l": "75.0", - "x": 1.4757, - "y": 18.4435 - }, - { - "l": "75.0", - "x": 1.4949, - "y": 18.4434 - }, - { - "l": "75.0", - "x": 1.514, - "y": 18.4433 - }, - { - "l": "75.0", - "x": 1.5332, - "y": 18.4431 - }, - { - "l": "75.0", - "x": 1.5524, - "y": 18.4428 - }, - { - "l": "75.0", - "x": 1.5715, - "y": 18.4425 - }, - { - "l": "75.0", - "x": 1.5907, - "y": 18.4423 - }, - { - "l": "75.0", - "x": 1.6099, - "y": 18.442 - }, - { - "l": "75.0", - "x": 1.629, - "y": 18.4416 - }, - { - "l": "75.0", - "x": 1.6482, - "y": 18.4413 - }, - { - "l": "75.0", - "x": 1.6674, - "y": 18.441 - }, - { - "l": "75.0", - "x": 1.6865, - "y": 18.4406 - }, - { - "l": "75.0", - "x": 1.7057, - "y": 18.4402 - }, - { - "l": "75.0", - "x": 1.7248, - "y": 18.4398 - }, - { - "l": "75.0", - "x": 1.744, - "y": 18.4394 - }, - { - "l": "75.0", - "x": 1.7632, - "y": 18.4391 - }, - { - "l": "75.0", - "x": 1.7823, - "y": 18.4387 - }, - { - "l": "75.0", - "x": 1.8015, - "y": 18.4384 - }, - { - "l": "75.0", - "x": 1.8207, - "y": 18.4381 - }, - { - "l": "75.0", - "x": 1.8398, - "y": 18.4379 - }, - { - "l": "75.0", - "x": 1.859, - "y": 18.4377 - }, - { - "l": "75.0", - "x": 1.8782, - "y": 18.4376 - }, - { - "l": "75.0", - "x": 1.8973, - "y": 18.4376 - }, - { - "l": "75.0", - "x": 1.9165, - "y": 18.4376 - }, - { - "l": "75.0", - "x": 1.9357, - "y": 18.4377 - }, - { - "l": "75.0", - "x": 1.9548, - "y": 18.4378 - }, - { - "l": "75.0", - "x": 1.974, - "y": 18.438 - }, - { - "l": "75.0", - "x": 1.9932, - "y": 18.4383 - }, - { - "l": "75.0", - "x": 2.0123, - "y": 18.4387 - }, - { - "l": "75.0", - "x": 2.0957, - "y": 18.4413 - }, - { - "l": "75.0", - "x": 2.179, - "y": 18.4452 - }, - { - "l": "75.0", - "x": 2.2623, - "y": 18.4512 - }, - { - "l": "75.0", - "x": 2.3457, - "y": 18.4587 - }, - { - "l": "75.0", - "x": 2.429, - "y": 18.467 - }, - { - "l": "75.0", - "x": 2.5123, - "y": 18.4778 - }, - { - "l": "75.0", - "x": 2.5957, - "y": 18.4897 - }, - { - "l": "75.0", - "x": 2.679, - "y": 18.5017 - }, - { - "l": "75.0", - "x": 2.7623, - "y": 18.5162 - }, - { - "l": "75.0", - "x": 2.8457, - "y": 18.5309 - }, - { - "l": "75.0", - "x": 2.929, - "y": 18.5449 - }, - { - "l": "75.0", - "x": 3.0123, - "y": 18.5607 - }, - { - "l": "75.0", - "x": 3.0957, - "y": 18.5761 - }, - { - "l": "75.0", - "x": 3.179, - "y": 18.59 - }, - { - "l": "75.0", - "x": 3.2623, - "y": 18.6052 - }, - { - "l": "75.0", - "x": 3.3457, - "y": 18.6193 - }, - { - "l": "75.0", - "x": 3.429, - "y": 18.6316 - }, - { - "l": "75.0", - "x": 3.5123, - "y": 18.6445 - }, - { - "l": "75.0", - "x": 3.5957, - "y": 18.6562 - }, - { - "l": "75.0", - "x": 3.679, - "y": 18.6662 - }, - { - "l": "75.0", - "x": 3.7623, - "y": 18.6767 - }, - { - "l": "75.0", - "x": 3.8457, - "y": 18.6863 - }, - { - "l": "75.0", - "x": 3.929, - "y": 18.6947 - }, - { - "l": "75.0", - "x": 4.0123, - "y": 18.7036 - }, - { - "l": "75.0", - "x": 4.0957, - "y": 18.7119 - }, - { - "l": "75.0", - "x": 4.179, - "y": 18.7194 - }, - { - "l": "75.0", - "x": 4.2623, - "y": 18.7277 - }, - { - "l": "75.0", - "x": 4.3457, - "y": 18.7358 - }, - { - "l": "75.0", - "x": 4.429, - "y": 18.7433 - }, - { - "l": "75.0", - "x": 4.5123, - "y": 18.752 - }, - { - "l": "75.0", - "x": 4.5957, - "y": 18.7611 - }, - { - "l": "75.0", - "x": 4.679, - "y": 18.7699 - }, - { - "l": "75.0", - "x": 4.7623, - "y": 18.7806 - }, - { - "l": "75.0", - "x": 4.8457, - "y": 18.792 - }, - { - "l": "75.0", - "x": 4.929, - "y": 18.8033 - }, - { - "l": "75.0", - "x": 5.0123, - "y": 18.8171 - }, - { - "l": "75.0", - "x": 5.0957, - "y": 18.8316 - }, - { - "l": "75.0", - "x": 5.179, - "y": 18.846 - }, - { - "l": "75.0", - "x": 5.2623, - "y": 18.8635 - }, - { - "l": "75.0", - "x": 5.3457, - "y": 18.8818 - }, - { - "l": "75.0", - "x": 5.429, - "y": 18.9 - }, - { - "l": "75.0", - "x": 5.5123, - "y": 18.9219 - }, - { - "l": "75.0", - "x": 5.5957, - "y": 18.9447 - }, - { - "l": "75.0", - "x": 5.679, - "y": 18.9671 - }, - { - "l": "75.0", - "x": 5.7623, - "y": 18.9939 - }, - { - "l": "75.0", - "x": 5.8457, - "y": 19.0216 - }, - { - "l": "75.0", - "x": 5.929, - "y": 19.0485 - }, - { - "l": "75.0", - "x": 6.0123, - "y": 19.0803 - }, - { - "l": "75.0", - "x": 6.0957, - "y": 19.1129 - }, - { - "l": "75.0", - "x": 6.179, - "y": 19.1442 - }, - { - "l": "75.0", - "x": 6.2623, - "y": 19.1809 - }, - { - "l": "75.0", - "x": 6.3457, - "y": 19.2183 - }, - { - "l": "75.0", - "x": 6.429, - "y": 19.2541 - }, - { - "l": "75.0", - "x": 6.5123, - "y": 19.2958 - }, - { - "l": "75.0", - "x": 6.5957, - "y": 19.3381 - }, - { - "l": "75.0", - "x": 6.679, - "y": 19.3783 - }, - { - "l": "75.0", - "x": 6.7623, - "y": 19.4251 - }, - { - "l": "75.0", - "x": 6.8457, - "y": 19.4721 - }, - { - "l": "75.0", - "x": 6.929, - "y": 19.5167 - }, - { - "l": "75.0", - "x": 7.0123, - "y": 19.5682 - }, - { - "l": "75.0", - "x": 7.0957, - "y": 19.6199 - }, - { - "l": "75.0", - "x": 7.179, - "y": 19.6685 - }, - { - "l": "75.0", - "x": 7.2623, - "y": 19.7246 - }, - { - "l": "75.0", - "x": 7.3457, - "y": 19.7805 - }, - { - "l": "75.0", - "x": 7.429, - "y": 19.8329 - }, - { - "l": "75.0", - "x": 7.5123, - "y": 19.8929 - }, - { - "l": "75.0", - "x": 7.5957, - "y": 19.9527 - }, - { - "l": "75.0", - "x": 7.679, - "y": 20.0084 - }, - { - "l": "75.0", - "x": 7.7623, - "y": 20.0722 - }, - { - "l": "75.0", - "x": 7.8457, - "y": 20.1354 - }, - { - "l": "75.0", - "x": 7.929, - "y": 20.1943 - }, - { - "l": "75.0", - "x": 8.0123, - "y": 20.2614 - }, - { - "l": "75.0", - "x": 8.0957, - "y": 20.3279 - }, - { - "l": "75.0", - "x": 8.179, - "y": 20.3895 - }, - { - "l": "75.0", - "x": 8.2623, - "y": 20.4597 - }, - { - "l": "75.0", - "x": 8.3457, - "y": 20.529 - }, - { - "l": "75.0", - "x": 8.429, - "y": 20.5932 - }, - { - "l": "75.0", - "x": 8.5123, - "y": 20.6662 - }, - { - "l": "75.0", - "x": 8.5957, - "y": 20.738 - }, - { - "l": "75.0", - "x": 8.679, - "y": 20.8045 - }, - { - "l": "75.0", - "x": 8.7623, - "y": 20.8799 - }, - { - "l": "75.0", - "x": 8.8457, - "y": 20.954 - }, - { - "l": "75.0", - "x": 8.929, - "y": 21.0225 - }, - { - "l": "75.0", - "x": 9.0123, - "y": 21.1001 - }, - { - "l": "75.0", - "x": 9.0957, - "y": 21.1763 - }, - { - "l": "75.0", - "x": 9.179, - "y": 21.2466 - }, - { - "l": "75.0", - "x": 9.2623, - "y": 21.326 - }, - { - "l": "75.0", - "x": 9.3457, - "y": 21.404 - }, - { - "l": "75.0", - "x": 9.429, - "y": 21.4758 - }, - { - "l": "75.0", - "x": 9.5123, - "y": 21.5569 - }, - { - "l": "75.0", - "x": 9.5957, - "y": 21.6364 - }, - { - "l": "75.0", - "x": 9.679, - "y": 21.7096 - }, - { - "l": "75.0", - "x": 9.7623, - "y": 21.7922 - }, - { - "l": "75.0", - "x": 9.8457, - "y": 21.8731 - }, - { - "l": "75.0", - "x": 9.929, - "y": 21.9475 - }, - { - "l": "75.0", - "x": 10.0123, - "y": 22.0314 - }, - { - "l": "75.0", - "x": 10.0957, - "y": 22.1135 - }, - { - "l": "75.0", - "x": 10.179, - "y": 22.189 - }, - { - "l": "75.0", - "x": 10.2623, - "y": 22.2742 - }, - { - "l": "75.0", - "x": 10.3457, - "y": 22.3574 - }, - { - "l": "75.0", - "x": 10.429, - "y": 22.4339 - }, - { - "l": "75.0", - "x": 10.5123, - "y": 22.5201 - }, - { - "l": "75.0", - "x": 10.5957, - "y": 22.6044 - }, - { - "l": "75.0", - "x": 10.679, - "y": 22.6818 - }, - { - "l": "75.0", - "x": 10.7623, - "y": 22.7689 - }, - { - "l": "75.0", - "x": 10.8457, - "y": 22.854 - }, - { - "l": "75.0", - "x": 10.929, - "y": 22.9321 - }, - { - "l": "75.0", - "x": 11.0123, - "y": 23.0201 - }, - { - "l": "75.0", - "x": 11.0957, - "y": 23.1059 - }, - { - "l": "75.0", - "x": 11.179, - "y": 23.1846 - }, - { - "l": "75.0", - "x": 11.2623, - "y": 23.2731 - }, - { - "l": "75.0", - "x": 11.3457, - "y": 23.3595 - }, - { - "l": "75.0", - "x": 11.429, - "y": 23.4387 - }, - { - "l": "75.0", - "x": 11.5123, - "y": 23.5277 - }, - { - "l": "75.0", - "x": 11.5957, - "y": 23.6145 - }, - { - "l": "75.0", - "x": 11.679, - "y": 23.694 - }, - { - "l": "75.0", - "x": 11.7623, - "y": 23.7833 - }, - { - "l": "75.0", - "x": 11.8457, - "y": 23.8704 - }, - { - "l": "75.0", - "x": 11.929, - "y": 23.9501 - }, - { - "l": "75.0", - "x": 12.0123, - "y": 24.0396 - }, - { - "l": "75.0", - "x": 12.0957, - "y": 24.1268 - }, - { - "l": "75.0", - "x": 12.179, - "y": 24.2065 - }, - { - "l": "75.0", - "x": 12.2623, - "y": 24.2961 - }, - { - "l": "75.0", - "x": 12.3457, - "y": 24.3833 - }, - { - "l": "75.0", - "x": 12.429, - "y": 24.463 - }, - { - "l": "75.0", - "x": 12.5123, - "y": 24.5526 - }, - { - "l": "75.0", - "x": 12.5957, - "y": 24.6397 - }, - { - "l": "75.0", - "x": 12.679, - "y": 24.7194 - }, - { - "l": "75.0", - "x": 12.7623, - "y": 24.8087 - }, - { - "l": "75.0", - "x": 12.8457, - "y": 24.8957 - }, - { - "l": "75.0", - "x": 12.929, - "y": 24.9752 - }, - { - "l": "75.0", - "x": 13.0123, - "y": 25.0644 - }, - { - "l": "75.0", - "x": 13.0957, - "y": 25.1511 - }, - { - "l": "75.0", - "x": 13.179, - "y": 25.2303 - }, - { - "l": "75.0", - "x": 13.2623, - "y": 25.3192 - }, - { - "l": "75.0", - "x": 13.3457, - "y": 25.4056 - }, - { - "l": "75.0", - "x": 13.429, - "y": 25.4845 - }, - { - "l": "75.0", - "x": 13.5123, - "y": 25.573 - }, - { - "l": "75.0", - "x": 13.5957, - "y": 25.659 - }, - { - "l": "75.0", - "x": 13.679, - "y": 25.7375 - }, - { - "l": "75.0", - "x": 13.7623, - "y": 25.8255 - }, - { - "l": "75.0", - "x": 13.8457, - "y": 25.911 - }, - { - "l": "75.0", - "x": 13.929, - "y": 25.9891 - }, - { - "l": "75.0", - "x": 14.0123, - "y": 26.0766 - }, - { - "l": "75.0", - "x": 14.0957, - "y": 26.1616 - }, - { - "l": "75.0", - "x": 14.179, - "y": 26.2392 - }, - { - "l": "75.0", - "x": 14.2623, - "y": 26.326 - }, - { - "l": "75.0", - "x": 14.3457, - "y": 26.4104 - }, - { - "l": "75.0", - "x": 14.429, - "y": 26.4874 - }, - { - "l": "75.0", - "x": 14.5123, - "y": 26.5737 - }, - { - "l": "75.0", - "x": 14.5957, - "y": 26.6575 - }, - { - "l": "75.0", - "x": 14.679, - "y": 26.7339 - }, - { - "l": "75.0", - "x": 14.7623, - "y": 26.8195 - }, - { - "l": "75.0", - "x": 14.8457, - "y": 26.9025 - }, - { - "l": "75.0", - "x": 14.929, - "y": 26.9783 - }, - { - "l": "75.0", - "x": 15.0123, - "y": 27.0632 - }, - { - "l": "75.0", - "x": 15.0957, - "y": 27.1456 - }, - { - "l": "75.0", - "x": 15.179, - "y": 27.2208 - }, - { - "l": "75.0", - "x": 15.2623, - "y": 27.3049 - }, - { - "l": "75.0", - "x": 15.3457, - "y": 27.3866 - }, - { - "l": "75.0", - "x": 15.429, - "y": 27.4611 - }, - { - "l": "75.0", - "x": 15.5123, - "y": 27.5445 - }, - { - "l": "75.0", - "x": 15.5957, - "y": 27.6254 - }, - { - "l": "75.0", - "x": 15.679, - "y": 27.6993 - }, - { - "l": "75.0", - "x": 15.7623, - "y": 27.782 - }, - { - "l": "75.0", - "x": 15.8457, - "y": 27.8622 - }, - { - "l": "75.0", - "x": 15.929, - "y": 27.9354 - }, - { - "l": "75.0", - "x": 16.0123, - "y": 28.0173 - }, - { - "l": "75.0", - "x": 16.0957, - "y": 28.0968 - }, - { - "l": "75.0", - "x": 16.179, - "y": 28.1693 - }, - { - "l": "75.0", - "x": 16.2623, - "y": 28.2505 - }, - { - "l": "75.0", - "x": 16.3457, - "y": 28.3292 - }, - { - "l": "75.0", - "x": 16.429, - "y": 28.4011 - }, - { - "l": "75.0", - "x": 16.5123, - "y": 28.4815 - }, - { - "l": "75.0", - "x": 16.5957, - "y": 28.5596 - }, - { - "l": "75.0", - "x": 16.679, - "y": 28.6308 - }, - { - "l": "75.0", - "x": 16.7623, - "y": 28.7105 - }, - { - "l": "75.0", - "x": 16.8457, - "y": 28.7878 - }, - { - "l": "75.0", - "x": 16.929, - "y": 28.8584 - }, - { - "l": "75.0", - "x": 17.0123, - "y": 28.9374 - }, - { - "l": "75.0", - "x": 17.0957, - "y": 29.0141 - }, - { - "l": "75.0", - "x": 17.179, - "y": 29.084 - }, - { - "l": "75.0", - "x": 17.2623, - "y": 29.1623 - }, - { - "l": "75.0", - "x": 17.3457, - "y": 29.2383 - }, - { - "l": "75.0", - "x": 17.429, - "y": 29.3076 - }, - { - "l": "75.0", - "x": 17.5123, - "y": 29.3852 - }, - { - "l": "75.0", - "x": 17.5957, - "y": 29.4606 - }, - { - "l": "75.0", - "x": 17.679, - "y": 29.5293 - }, - { - "l": "75.0", - "x": 17.7623, - "y": 29.6063 - }, - { - "l": "75.0", - "x": 17.8457, - "y": 29.6809 - }, - { - "l": "75.0", - "x": 17.929, - "y": 29.7491 - }, - { - "l": "75.0", - "x": 18.0123, - "y": 29.8254 - }, - { - "l": "75.0", - "x": 18.0957, - "y": 29.8994 - }, - { - "l": "75.0", - "x": 18.179, - "y": 29.967 - }, - { - "l": "75.0", - "x": 18.2623, - "y": 30.0426 - }, - { - "l": "75.0", - "x": 18.3457, - "y": 30.1161 - }, - { - "l": "75.0", - "x": 18.429, - "y": 30.1831 - }, - { - "l": "75.0", - "x": 18.5123, - "y": 30.2581 - }, - { - "l": "75.0", - "x": 18.5957, - "y": 30.331 - }, - { - "l": "75.0", - "x": 18.679, - "y": 30.3975 - }, - { - "l": "75.0", - "x": 18.7623, - "y": 30.4719 - }, - { - "l": "75.0", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 0.0, - "y": 14.1787 - }, - { - "l": "91.0", - "x": 0.0192, - "y": 14.4397 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 14.7003 - }, - { - "l": "91.0", - "x": 0.0575, - "y": 14.9605 - }, - { - "l": "91.0", - "x": 0.0767, - "y": 15.2204 - }, - { - "l": "91.0", - "x": 0.0958, - "y": 15.4404 - }, - { - "l": "91.0", - "x": 0.115, - "y": 15.6405 - }, - { - "l": "91.0", - "x": 0.1342, - "y": 15.8312 - }, - { - "l": "91.0", - "x": 0.1533, - "y": 16.0161 - }, - { - "l": "91.0", - "x": 0.1725, - "y": 16.2003 - }, - { - "l": "91.0", - "x": 0.1916, - "y": 16.3976 - }, - { - "l": "91.0", - "x": 0.2108, - "y": 16.5927 - }, - { - "l": "91.0", - "x": 0.23, - "y": 16.784 - }, - { - "l": "91.0", - "x": 0.2491, - "y": 16.9701 - }, - { - "l": "91.0", - "x": 0.2683, - "y": 17.1474 - }, - { - "l": "91.0", - "x": 0.2875, - "y": 17.317 - }, - { - "l": "91.0", - "x": 0.3066, - "y": 17.4784 - }, - { - "l": "91.0", - "x": 0.3258, - "y": 17.6307 - }, - { - "l": "91.0", - "x": 0.345, - "y": 17.7671 - }, - { - "l": "91.0", - "x": 0.3641, - "y": 17.8928 - }, - { - "l": "91.0", - "x": 0.3833, - "y": 18.011 - }, - { - "l": "91.0", - "x": 0.4025, - "y": 18.1232 - }, - { - "l": "91.0", - "x": 0.4216, - "y": 18.2318 - }, - { - "l": "91.0", - "x": 0.4408, - "y": 18.3438 - }, - { - "l": "91.0", - "x": 0.46, - "y": 18.4519 - }, - { - "l": "91.0", - "x": 0.4791, - "y": 18.5553 - }, - { - "l": "91.0", - "x": 0.4983, - "y": 18.6535 - }, - { - "l": "91.0", - "x": 0.5175, - "y": 18.7438 - }, - { - "l": "91.0", - "x": 0.5366, - "y": 18.828 - }, - { - "l": "91.0", - "x": 0.5558, - "y": 18.9062 - }, - { - "l": "91.0", - "x": 0.5749, - "y": 18.9783 - }, - { - "l": "91.0", - "x": 0.5941, - "y": 19.0423 - }, - { - "l": "91.0", - "x": 0.6133, - "y": 19.1001 - }, - { - "l": "91.0", - "x": 0.6324, - "y": 19.1534 - }, - { - "l": "91.0", - "x": 0.6516, - "y": 19.2032 - }, - { - "l": "91.0", - "x": 0.6708, - "y": 19.2504 - }, - { - "l": "91.0", - "x": 0.6899, - "y": 19.2992 - }, - { - "l": "91.0", - "x": 0.7091, - "y": 19.3459 - }, - { - "l": "91.0", - "x": 0.7283, - "y": 19.3901 - }, - { - "l": "91.0", - "x": 0.7474, - "y": 19.4318 - }, - { - "l": "91.0", - "x": 0.7666, - "y": 19.47 - }, - { - "l": "91.0", - "x": 0.7858, - "y": 19.5053 - }, - { - "l": "91.0", - "x": 0.8049, - "y": 19.5378 - }, - { - "l": "91.0", - "x": 0.8241, - "y": 19.5675 - }, - { - "l": "91.0", - "x": 0.8433, - "y": 19.5936 - }, - { - "l": "91.0", - "x": 0.8624, - "y": 19.6169 - }, - { - "l": "91.0", - "x": 0.8816, - "y": 19.638 - }, - { - "l": "91.0", - "x": 0.9008, - "y": 19.6573 - }, - { - "l": "91.0", - "x": 0.9199, - "y": 19.6751 - }, - { - "l": "91.0", - "x": 0.9391, - "y": 19.6933 - }, - { - "l": "91.0", - "x": 0.9582, - "y": 19.7102 - }, - { - "l": "91.0", - "x": 0.9774, - "y": 19.7259 - }, - { - "l": "91.0", - "x": 0.9966, - "y": 19.7403 - }, - { - "l": "91.0", - "x": 1.0157, - "y": 19.7528 - }, - { - "l": "91.0", - "x": 1.0349, - "y": 19.7639 - }, - { - "l": "91.0", - "x": 1.0541, - "y": 19.7737 - }, - { - "l": "91.0", - "x": 1.0732, - "y": 19.7823 - }, - { - "l": "91.0", - "x": 1.0924, - "y": 19.7896 - }, - { - "l": "91.0", - "x": 1.1116, - "y": 19.7958 - }, - { - "l": "91.0", - "x": 1.1307, - "y": 19.8012 - }, - { - "l": "91.0", - "x": 1.1499, - "y": 19.8059 - }, - { - "l": "91.0", - "x": 1.1691, - "y": 19.81 - }, - { - "l": "91.0", - "x": 1.1882, - "y": 19.8142 - }, - { - "l": "91.0", - "x": 1.2074, - "y": 19.818 - }, - { - "l": "91.0", - "x": 1.2266, - "y": 19.8214 - }, - { - "l": "91.0", - "x": 1.2457, - "y": 19.8244 - }, - { - "l": "91.0", - "x": 1.2649, - "y": 19.8271 - }, - { - "l": "91.0", - "x": 1.2841, - "y": 19.8294 - }, - { - "l": "91.0", - "x": 1.3032, - "y": 19.8313 - }, - { - "l": "91.0", - "x": 1.3224, - "y": 19.833 - }, - { - "l": "91.0", - "x": 1.3415, - "y": 19.8345 - }, - { - "l": "91.0", - "x": 1.3607, - "y": 19.8357 - }, - { - "l": "91.0", - "x": 1.3799, - "y": 19.8367 - }, - { - "l": "91.0", - "x": 1.399, - "y": 19.8375 - }, - { - "l": "91.0", - "x": 1.4182, - "y": 19.8382 - }, - { - "l": "91.0", - "x": 1.4374, - "y": 19.839 - }, - { - "l": "91.0", - "x": 1.4565, - "y": 19.8396 - }, - { - "l": "91.0", - "x": 1.4757, - "y": 19.8401 - }, - { - "l": "91.0", - "x": 1.4949, - "y": 19.8406 - }, - { - "l": "91.0", - "x": 1.514, - "y": 19.841 - }, - { - "l": "91.0", - "x": 1.5332, - "y": 19.8414 - }, - { - "l": "91.0", - "x": 1.5524, - "y": 19.8417 - }, - { - "l": "91.0", - "x": 1.5715, - "y": 19.842 - }, - { - "l": "91.0", - "x": 1.5907, - "y": 19.8422 - }, - { - "l": "91.0", - "x": 1.6099, - "y": 19.8424 - }, - { - "l": "91.0", - "x": 1.629, - "y": 19.8426 - }, - { - "l": "91.0", - "x": 1.6482, - "y": 19.8428 - }, - { - "l": "91.0", - "x": 1.6674, - "y": 19.8429 - }, - { - "l": "91.0", - "x": 1.6865, - "y": 19.8431 - }, - { - "l": "91.0", - "x": 1.7057, - "y": 19.8433 - }, - { - "l": "91.0", - "x": 1.7248, - "y": 19.8435 - }, - { - "l": "91.0", - "x": 1.744, - "y": 19.8438 - }, - { - "l": "91.0", - "x": 1.7632, - "y": 19.844 - }, - { - "l": "91.0", - "x": 1.7823, - "y": 19.8443 - }, - { - "l": "91.0", - "x": 1.8015, - "y": 19.8446 - }, - { - "l": "91.0", - "x": 1.8207, - "y": 19.845 - }, - { - "l": "91.0", - "x": 1.8398, - "y": 19.8454 - }, - { - "l": "91.0", - "x": 1.859, - "y": 19.8458 - }, - { - "l": "91.0", - "x": 1.8782, - "y": 19.8463 - }, - { - "l": "91.0", - "x": 1.8973, - "y": 19.8469 - }, - { - "l": "91.0", - "x": 1.9165, - "y": 19.8475 - }, - { - "l": "91.0", - "x": 1.9357, - "y": 19.8483 - }, - { - "l": "91.0", - "x": 1.9548, - "y": 19.8492 - }, - { - "l": "91.0", - "x": 1.974, - "y": 19.8501 - }, - { - "l": "91.0", - "x": 1.9932, - "y": 19.8512 - }, - { - "l": "91.0", - "x": 2.0123, - "y": 19.8523 - }, - { - "l": "91.0", - "x": 2.0957, - "y": 19.8583 - }, - { - "l": "91.0", - "x": 2.179, - "y": 19.8656 - }, - { - "l": "91.0", - "x": 2.2623, - "y": 19.8757 - }, - { - "l": "91.0", - "x": 2.3457, - "y": 19.8874 - }, - { - "l": "91.0", - "x": 2.429, - "y": 19.8998 - }, - { - "l": "91.0", - "x": 2.5123, - "y": 19.9154 - }, - { - "l": "91.0", - "x": 2.5957, - "y": 19.9323 - }, - { - "l": "91.0", - "x": 2.679, - "y": 19.9491 - }, - { - "l": "91.0", - "x": 2.7623, - "y": 19.9692 - }, - { - "l": "91.0", - "x": 2.8457, - "y": 19.9896 - }, - { - "l": "91.0", - "x": 2.929, - "y": 20.0089 - }, - { - "l": "91.0", - "x": 3.0123, - "y": 20.031 - }, - { - "l": "91.0", - "x": 3.0957, - "y": 20.0526 - }, - { - "l": "91.0", - "x": 3.179, - "y": 20.0722 - }, - { - "l": "91.0", - "x": 3.2623, - "y": 20.0939 - }, - { - "l": "91.0", - "x": 3.3457, - "y": 20.1145 - }, - { - "l": "91.0", - "x": 3.429, - "y": 20.1327 - }, - { - "l": "91.0", - "x": 3.5123, - "y": 20.1523 - }, - { - "l": "91.0", - "x": 3.5957, - "y": 20.1707 - }, - { - "l": "91.0", - "x": 3.679, - "y": 20.1868 - }, - { - "l": "91.0", - "x": 3.7623, - "y": 20.2042 - }, - { - "l": "91.0", - "x": 3.8457, - "y": 20.2205 - }, - { - "l": "91.0", - "x": 3.929, - "y": 20.2351 - }, - { - "l": "91.0", - "x": 4.0123, - "y": 20.2511 - }, - { - "l": "91.0", - "x": 4.0957, - "y": 20.2665 - }, - { - "l": "91.0", - "x": 4.179, - "y": 20.2804 - }, - { - "l": "91.0", - "x": 4.2623, - "y": 20.2961 - }, - { - "l": "91.0", - "x": 4.3457, - "y": 20.3115 - }, - { - "l": "91.0", - "x": 4.429, - "y": 20.3258 - }, - { - "l": "91.0", - "x": 4.5123, - "y": 20.3423 - }, - { - "l": "91.0", - "x": 4.5957, - "y": 20.3589 - }, - { - "l": "91.0", - "x": 4.679, - "y": 20.375 - }, - { - "l": "91.0", - "x": 4.7623, - "y": 20.3939 - }, - { - "l": "91.0", - "x": 4.8457, - "y": 20.4135 - }, - { - "l": "91.0", - "x": 4.929, - "y": 20.4325 - }, - { - "l": "91.0", - "x": 5.0123, - "y": 20.4551 - }, - { - "l": "91.0", - "x": 5.0957, - "y": 20.4784 - }, - { - "l": "91.0", - "x": 5.179, - "y": 20.5011 - }, - { - "l": "91.0", - "x": 5.2623, - "y": 20.528 - }, - { - "l": "91.0", - "x": 5.3457, - "y": 20.5558 - }, - { - "l": "91.0", - "x": 5.429, - "y": 20.5828 - }, - { - "l": "91.0", - "x": 5.5123, - "y": 20.6149 - }, - { - "l": "91.0", - "x": 5.5957, - "y": 20.6478 - }, - { - "l": "91.0", - "x": 5.679, - "y": 20.6797 - }, - { - "l": "91.0", - "x": 5.7623, - "y": 20.7174 - }, - { - "l": "91.0", - "x": 5.8457, - "y": 20.7559 - }, - { - "l": "91.0", - "x": 5.929, - "y": 20.7929 - }, - { - "l": "91.0", - "x": 6.0123, - "y": 20.8362 - }, - { - "l": "91.0", - "x": 6.0957, - "y": 20.8803 - }, - { - "l": "91.0", - "x": 6.179, - "y": 20.9223 - }, - { - "l": "91.0", - "x": 6.2623, - "y": 20.9713 - }, - { - "l": "91.0", - "x": 6.3457, - "y": 21.0208 - }, - { - "l": "91.0", - "x": 6.429, - "y": 21.0679 - }, - { - "l": "91.0", - "x": 6.5123, - "y": 21.1226 - }, - { - "l": "91.0", - "x": 6.5957, - "y": 21.1777 - }, - { - "l": "91.0", - "x": 6.679, - "y": 21.2298 - }, - { - "l": "91.0", - "x": 6.7623, - "y": 21.2901 - }, - { - "l": "91.0", - "x": 6.8457, - "y": 21.3506 - }, - { - "l": "91.0", - "x": 6.929, - "y": 21.4076 - }, - { - "l": "91.0", - "x": 7.0123, - "y": 21.4734 - }, - { - "l": "91.0", - "x": 7.0957, - "y": 21.5391 - }, - { - "l": "91.0", - "x": 7.179, - "y": 21.6008 - }, - { - "l": "91.0", - "x": 7.2623, - "y": 21.6716 - }, - { - "l": "91.0", - "x": 7.3457, - "y": 21.7421 - }, - { - "l": "91.0", - "x": 7.429, - "y": 21.808 - }, - { - "l": "91.0", - "x": 7.5123, - "y": 21.8834 - }, - { - "l": "91.0", - "x": 7.5957, - "y": 21.9583 - }, - { - "l": "91.0", - "x": 7.679, - "y": 22.028 - }, - { - "l": "91.0", - "x": 7.7623, - "y": 22.1077 - }, - { - "l": "91.0", - "x": 7.8457, - "y": 22.1865 - }, - { - "l": "91.0", - "x": 7.929, - "y": 22.2598 - }, - { - "l": "91.0", - "x": 8.0123, - "y": 22.3432 - }, - { - "l": "91.0", - "x": 8.0957, - "y": 22.4257 - }, - { - "l": "91.0", - "x": 8.179, - "y": 22.5022 - }, - { - "l": "91.0", - "x": 8.2623, - "y": 22.5892 - }, - { - "l": "91.0", - "x": 8.3457, - "y": 22.6749 - }, - { - "l": "91.0", - "x": 8.429, - "y": 22.7543 - }, - { - "l": "91.0", - "x": 8.5123, - "y": 22.8444 - }, - { - "l": "91.0", - "x": 8.5957, - "y": 22.9331 - }, - { - "l": "91.0", - "x": 8.679, - "y": 23.0151 - }, - { - "l": "91.0", - "x": 8.7623, - "y": 23.108 - }, - { - "l": "91.0", - "x": 8.8457, - "y": 23.1993 - }, - { - "l": "91.0", - "x": 8.929, - "y": 23.2836 - }, - { - "l": "91.0", - "x": 9.0123, - "y": 23.379 - }, - { - "l": "91.0", - "x": 9.0957, - "y": 23.4727 - }, - { - "l": "91.0", - "x": 9.179, - "y": 23.5591 - }, - { - "l": "91.0", - "x": 9.2623, - "y": 23.6567 - }, - { - "l": "91.0", - "x": 9.3457, - "y": 23.7524 - }, - { - "l": "91.0", - "x": 9.429, - "y": 23.8405 - }, - { - "l": "91.0", - "x": 9.5123, - "y": 23.94 - }, - { - "l": "91.0", - "x": 9.5957, - "y": 24.0375 - }, - { - "l": "91.0", - "x": 9.679, - "y": 24.1273 - }, - { - "l": "91.0", - "x": 9.7623, - "y": 24.2285 - }, - { - "l": "91.0", - "x": 9.8457, - "y": 24.3276 - }, - { - "l": "91.0", - "x": 9.929, - "y": 24.4188 - }, - { - "l": "91.0", - "x": 10.0123, - "y": 24.5216 - }, - { - "l": "91.0", - "x": 10.0957, - "y": 24.6222 - }, - { - "l": "91.0", - "x": 10.179, - "y": 24.7146 - }, - { - "l": "91.0", - "x": 10.2623, - "y": 24.8189 - }, - { - "l": "91.0", - "x": 10.3457, - "y": 24.9208 - }, - { - "l": "91.0", - "x": 10.429, - "y": 25.0144 - }, - { - "l": "91.0", - "x": 10.5123, - "y": 25.12 - }, - { - "l": "91.0", - "x": 10.5957, - "y": 25.2231 - }, - { - "l": "91.0", - "x": 10.679, - "y": 25.3178 - }, - { - "l": "91.0", - "x": 10.7623, - "y": 25.4244 - }, - { - "l": "91.0", - "x": 10.8457, - "y": 25.5285 - }, - { - "l": "91.0", - "x": 10.929, - "y": 25.6241 - }, - { - "l": "91.0", - "x": 11.0123, - "y": 25.7317 - }, - { - "l": "91.0", - "x": 11.0957, - "y": 25.8367 - }, - { - "l": "91.0", - "x": 11.179, - "y": 25.9331 - }, - { - "l": "91.0", - "x": 11.2623, - "y": 26.0414 - }, - { - "l": "91.0", - "x": 11.3457, - "y": 26.1472 - }, - { - "l": "91.0", - "x": 11.429, - "y": 26.2441 - }, - { - "l": "91.0", - "x": 11.5123, - "y": 26.3531 - }, - { - "l": "91.0", - "x": 11.5957, - "y": 26.4593 - }, - { - "l": "91.0", - "x": 11.679, - "y": 26.5567 - }, - { - "l": "91.0", - "x": 11.7623, - "y": 26.6661 - }, - { - "l": "91.0", - "x": 11.8457, - "y": 26.7728 - }, - { - "l": "91.0", - "x": 11.929, - "y": 26.8704 - }, - { - "l": "91.0", - "x": 12.0123, - "y": 26.9801 - }, - { - "l": "91.0", - "x": 12.0957, - "y": 27.087 - }, - { - "l": "91.0", - "x": 12.179, - "y": 27.1848 - }, - { - "l": "91.0", - "x": 12.2623, - "y": 27.2946 - }, - { - "l": "91.0", - "x": 12.3457, - "y": 27.4016 - }, - { - "l": "91.0", - "x": 12.429, - "y": 27.4995 - }, - { - "l": "91.0", - "x": 12.5123, - "y": 27.6094 - }, - { - "l": "91.0", - "x": 12.5957, - "y": 27.7163 - }, - { - "l": "91.0", - "x": 12.679, - "y": 27.8142 - }, - { - "l": "91.0", - "x": 12.7623, - "y": 27.924 - }, - { - "l": "91.0", - "x": 12.8457, - "y": 28.0309 - }, - { - "l": "91.0", - "x": 12.929, - "y": 28.1286 - }, - { - "l": "91.0", - "x": 13.0123, - "y": 28.2382 - }, - { - "l": "91.0", - "x": 13.0957, - "y": 28.3449 - }, - { - "l": "91.0", - "x": 13.179, - "y": 28.4424 - }, - { - "l": "91.0", - "x": 13.2623, - "y": 28.5518 - }, - { - "l": "91.0", - "x": 13.3457, - "y": 28.6582 - }, - { - "l": "91.0", - "x": 13.429, - "y": 28.7554 - }, - { - "l": "91.0", - "x": 13.5123, - "y": 28.8644 - }, - { - "l": "91.0", - "x": 13.5957, - "y": 28.9704 - }, - { - "l": "91.0", - "x": 13.679, - "y": 29.0673 - }, - { - "l": "91.0", - "x": 13.7623, - "y": 29.1758 - }, - { - "l": "91.0", - "x": 13.8457, - "y": 29.2813 - }, - { - "l": "91.0", - "x": 13.929, - "y": 29.3777 - }, - { - "l": "91.0", - "x": 14.0123, - "y": 29.4858 - }, - { - "l": "91.0", - "x": 14.0957, - "y": 29.5907 - }, - { - "l": "91.0", - "x": 14.179, - "y": 29.6866 - }, - { - "l": "91.0", - "x": 14.2623, - "y": 29.794 - }, - { - "l": "91.0", - "x": 14.3457, - "y": 29.8984 - }, - { - "l": "91.0", - "x": 14.429, - "y": 29.9937 - }, - { - "l": "91.0", - "x": 14.5123, - "y": 30.1004 - }, - { - "l": "91.0", - "x": 14.5957, - "y": 30.2042 - }, - { - "l": "91.0", - "x": 14.679, - "y": 30.2988 - }, - { - "l": "91.0", - "x": 14.7623, - "y": 30.4049 - }, - { - "l": "91.0", - "x": 14.8457, - "y": 30.5079 - }, - { - "l": "91.0", - "x": 14.929, - "y": 30.6019 - }, - { - "l": "91.0", - "x": 15.0123, - "y": 30.7072 - }, - { - "l": "91.0", - "x": 15.0957, - "y": 30.8094 - }, - { - "l": "91.0", - "x": 15.179, - "y": 30.9028 - }, - { - "l": "91.0", - "x": 15.2623, - "y": 31.0073 - }, - { - "l": "91.0", - "x": 15.3457, - "y": 31.1088 - }, - { - "l": "91.0", - "x": 15.429, - "y": 31.2015 - }, - { - "l": "91.0", - "x": 15.5123, - "y": 31.3052 - }, - { - "l": "91.0", - "x": 15.5957, - "y": 31.4059 - }, - { - "l": "91.0", - "x": 15.679, - "y": 31.4979 - }, - { - "l": "91.0", - "x": 15.7623, - "y": 31.6008 - }, - { - "l": "91.0", - "x": 15.8457, - "y": 31.7008 - }, - { - "l": "91.0", - "x": 15.929, - "y": 31.792 - }, - { - "l": "91.0", - "x": 16.0123, - "y": 31.8941 - }, - { - "l": "91.0", - "x": 16.0957, - "y": 31.9933 - }, - { - "l": "91.0", - "x": 16.179, - "y": 32.0838 - }, - { - "l": "91.0", - "x": 16.2623, - "y": 32.1851 - }, - { - "l": "91.0", - "x": 16.3457, - "y": 32.2835 - }, - { - "l": "91.0", - "x": 16.429, - "y": 32.3733 - }, - { - "l": "91.0", - "x": 16.5123, - "y": 32.4738 - }, - { - "l": "91.0", - "x": 16.5957, - "y": 32.5714 - }, - { - "l": "91.0", - "x": 16.679, - "y": 32.6605 - }, - { - "l": "91.0", - "x": 16.7623, - "y": 32.7602 - }, - { - "l": "91.0", - "x": 16.8457, - "y": 32.8571 - }, - { - "l": "91.0", - "x": 16.929, - "y": 32.9455 - }, - { - "l": "91.0", - "x": 17.0123, - "y": 33.0444 - }, - { - "l": "91.0", - "x": 17.0957, - "y": 33.1405 - }, - { - "l": "91.0", - "x": 17.179, - "y": 33.2282 - }, - { - "l": "91.0", - "x": 17.2623, - "y": 33.3264 - }, - { - "l": "91.0", - "x": 17.3457, - "y": 33.4218 - }, - { - "l": "91.0", - "x": 17.429, - "y": 33.5088 - }, - { - "l": "91.0", - "x": 17.5123, - "y": 33.6063 - }, - { - "l": "91.0", - "x": 17.5957, - "y": 33.7009 - }, - { - "l": "91.0", - "x": 17.679, - "y": 33.7873 - }, - { - "l": "91.0", - "x": 17.7623, - "y": 33.884 - }, - { - "l": "91.0", - "x": 17.8457, - "y": 33.9779 - }, - { - "l": "91.0", - "x": 17.929, - "y": 34.0636 - }, - { - "l": "91.0", - "x": 18.0123, - "y": 34.1597 - }, - { - "l": "91.0", - "x": 18.0957, - "y": 34.2529 - }, - { - "l": "91.0", - "x": 18.179, - "y": 34.338 - }, - { - "l": "91.0", - "x": 18.2623, - "y": 34.4333 - }, - { - "l": "91.0", - "x": 18.3457, - "y": 34.5258 - }, - { - "l": "91.0", - "x": 18.429, - "y": 34.6103 - }, - { - "l": "91.0", - "x": 18.5123, - "y": 34.7049 - }, - { - "l": "91.0", - "x": 18.5957, - "y": 34.7968 - }, - { - "l": "91.0", - "x": 18.679, - "y": 34.8808 - }, - { - "l": "91.0", - "x": 18.7623, - "y": 34.9748 - }, - { - "l": "91.0", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 0.0, - "y": 15.2953 - }, - { - "l": "98.0", - "x": 0.0192, - "y": 15.5737 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 15.8516 - }, - { - "l": "98.0", - "x": 0.0575, - "y": 16.1289 - }, - { - "l": "98.0", - "x": 0.0767, - "y": 16.4056 - }, - { - "l": "98.0", - "x": 0.0958, - "y": 16.6404 - }, - { - "l": "98.0", - "x": 0.115, - "y": 16.8544 - }, - { - "l": "98.0", - "x": 0.1342, - "y": 17.0587 - }, - { - "l": "98.0", - "x": 0.1533, - "y": 17.2568 - }, - { - "l": "98.0", - "x": 0.1725, - "y": 17.4545 - }, - { - "l": "98.0", - "x": 0.1916, - "y": 17.6663 - }, - { - "l": "98.0", - "x": 0.2108, - "y": 17.8758 - }, - { - "l": "98.0", - "x": 0.23, - "y": 18.0815 - }, - { - "l": "98.0", - "x": 0.2491, - "y": 18.2817 - }, - { - "l": "98.0", - "x": 0.2683, - "y": 18.4726 - }, - { - "l": "98.0", - "x": 0.2875, - "y": 18.6553 - }, - { - "l": "98.0", - "x": 0.3066, - "y": 18.8293 - }, - { - "l": "98.0", - "x": 0.3258, - "y": 18.9935 - }, - { - "l": "98.0", - "x": 0.345, - "y": 19.1408 - }, - { - "l": "98.0", - "x": 0.3641, - "y": 19.2765 - }, - { - "l": "98.0", - "x": 0.3833, - "y": 19.4042 - }, - { - "l": "98.0", - "x": 0.4025, - "y": 19.5256 - }, - { - "l": "98.0", - "x": 0.4216, - "y": 19.6431 - }, - { - "l": "98.0", - "x": 0.4408, - "y": 19.7644 - }, - { - "l": "98.0", - "x": 0.46, - "y": 19.8815 - }, - { - "l": "98.0", - "x": 0.4791, - "y": 19.9936 - }, - { - "l": "98.0", - "x": 0.4983, - "y": 20.1001 - }, - { - "l": "98.0", - "x": 0.5175, - "y": 20.1983 - }, - { - "l": "98.0", - "x": 0.5366, - "y": 20.2898 - }, - { - "l": "98.0", - "x": 0.5558, - "y": 20.3748 - }, - { - "l": "98.0", - "x": 0.5749, - "y": 20.4534 - }, - { - "l": "98.0", - "x": 0.5941, - "y": 20.5232 - }, - { - "l": "98.0", - "x": 0.6133, - "y": 20.5863 - }, - { - "l": "98.0", - "x": 0.6324, - "y": 20.6446 - }, - { - "l": "98.0", - "x": 0.6516, - "y": 20.699 - }, - { - "l": "98.0", - "x": 0.6708, - "y": 20.7508 - }, - { - "l": "98.0", - "x": 0.6899, - "y": 20.8044 - }, - { - "l": "98.0", - "x": 0.7091, - "y": 20.8557 - }, - { - "l": "98.0", - "x": 0.7283, - "y": 20.9044 - }, - { - "l": "98.0", - "x": 0.7474, - "y": 20.9503 - }, - { - "l": "98.0", - "x": 0.7666, - "y": 20.9925 - }, - { - "l": "98.0", - "x": 0.7858, - "y": 21.0315 - }, - { - "l": "98.0", - "x": 0.8049, - "y": 21.0676 - }, - { - "l": "98.0", - "x": 0.8241, - "y": 21.1006 - }, - { - "l": "98.0", - "x": 0.8433, - "y": 21.1297 - }, - { - "l": "98.0", - "x": 0.8624, - "y": 21.1557 - }, - { - "l": "98.0", - "x": 0.8816, - "y": 21.1794 - }, - { - "l": "98.0", - "x": 0.9008, - "y": 21.2011 - }, - { - "l": "98.0", - "x": 0.9199, - "y": 21.2213 - }, - { - "l": "98.0", - "x": 0.9391, - "y": 21.2419 - }, - { - "l": "98.0", - "x": 0.9582, - "y": 21.2613 - }, - { - "l": "98.0", - "x": 0.9774, - "y": 21.2793 - }, - { - "l": "98.0", - "x": 0.9966, - "y": 21.2958 - }, - { - "l": "98.0", - "x": 1.0157, - "y": 21.3104 - }, - { - "l": "98.0", - "x": 1.0349, - "y": 21.3234 - }, - { - "l": "98.0", - "x": 1.0541, - "y": 21.335 - }, - { - "l": "98.0", - "x": 1.0732, - "y": 21.3453 - }, - { - "l": "98.0", - "x": 1.0924, - "y": 21.3542 - }, - { - "l": "98.0", - "x": 1.1116, - "y": 21.3619 - }, - { - "l": "98.0", - "x": 1.1307, - "y": 21.3686 - }, - { - "l": "98.0", - "x": 1.1499, - "y": 21.3746 - }, - { - "l": "98.0", - "x": 1.1691, - "y": 21.38 - }, - { - "l": "98.0", - "x": 1.1882, - "y": 21.3855 - }, - { - "l": "98.0", - "x": 1.2074, - "y": 21.3906 - }, - { - "l": "98.0", - "x": 1.2266, - "y": 21.3954 - }, - { - "l": "98.0", - "x": 1.2457, - "y": 21.3997 - }, - { - "l": "98.0", - "x": 1.2649, - "y": 21.4037 - }, - { - "l": "98.0", - "x": 1.2841, - "y": 21.4072 - }, - { - "l": "98.0", - "x": 1.3032, - "y": 21.4104 - }, - { - "l": "98.0", - "x": 1.3224, - "y": 21.4133 - }, - { - "l": "98.0", - "x": 1.3415, - "y": 21.4159 - }, - { - "l": "98.0", - "x": 1.3607, - "y": 21.4181 - }, - { - "l": "98.0", - "x": 1.3799, - "y": 21.4202 - }, - { - "l": "98.0", - "x": 1.399, - "y": 21.422 - }, - { - "l": "98.0", - "x": 1.4182, - "y": 21.4238 - }, - { - "l": "98.0", - "x": 1.4374, - "y": 21.4257 - }, - { - "l": "98.0", - "x": 1.4565, - "y": 21.4274 - }, - { - "l": "98.0", - "x": 1.4757, - "y": 21.4292 - }, - { - "l": "98.0", - "x": 1.4949, - "y": 21.4308 - }, - { - "l": "98.0", - "x": 1.514, - "y": 21.4324 - }, - { - "l": "98.0", - "x": 1.5332, - "y": 21.4339 - }, - { - "l": "98.0", - "x": 1.5524, - "y": 21.4354 - }, - { - "l": "98.0", - "x": 1.5715, - "y": 21.4368 - }, - { - "l": "98.0", - "x": 1.5907, - "y": 21.4381 - }, - { - "l": "98.0", - "x": 1.6099, - "y": 21.4393 - }, - { - "l": "98.0", - "x": 1.629, - "y": 21.4406 - }, - { - "l": "98.0", - "x": 1.6482, - "y": 21.4418 - }, - { - "l": "98.0", - "x": 1.6674, - "y": 21.443 - }, - { - "l": "98.0", - "x": 1.6865, - "y": 21.4443 - }, - { - "l": "98.0", - "x": 1.7057, - "y": 21.4457 - }, - { - "l": "98.0", - "x": 1.7248, - "y": 21.4471 - }, - { - "l": "98.0", - "x": 1.744, - "y": 21.4486 - }, - { - "l": "98.0", - "x": 1.7632, - "y": 21.4501 - }, - { - "l": "98.0", - "x": 1.7823, - "y": 21.4516 - }, - { - "l": "98.0", - "x": 1.8015, - "y": 21.4531 - }, - { - "l": "98.0", - "x": 1.8207, - "y": 21.4547 - }, - { - "l": "98.0", - "x": 1.8398, - "y": 21.4562 - }, - { - "l": "98.0", - "x": 1.859, - "y": 21.4578 - }, - { - "l": "98.0", - "x": 1.8782, - "y": 21.4594 - }, - { - "l": "98.0", - "x": 1.8973, - "y": 21.4611 - }, - { - "l": "98.0", - "x": 1.9165, - "y": 21.4629 - }, - { - "l": "98.0", - "x": 1.9357, - "y": 21.4649 - }, - { - "l": "98.0", - "x": 1.9548, - "y": 21.4671 - }, - { - "l": "98.0", - "x": 1.974, - "y": 21.4694 - }, - { - "l": "98.0", - "x": 1.9932, - "y": 21.4718 - }, - { - "l": "98.0", - "x": 2.0123, - "y": 21.4743 - }, - { - "l": "98.0", - "x": 2.0957, - "y": 21.4862 - }, - { - "l": "98.0", - "x": 2.179, - "y": 21.4992 - }, - { - "l": "98.0", - "x": 2.2623, - "y": 21.5159 - }, - { - "l": "98.0", - "x": 2.3457, - "y": 21.5343 - }, - { - "l": "98.0", - "x": 2.429, - "y": 21.5532 - }, - { - "l": "98.0", - "x": 2.5123, - "y": 21.5764 - }, - { - "l": "98.0", - "x": 2.5957, - "y": 21.6009 - }, - { - "l": "98.0", - "x": 2.679, - "y": 21.6249 - }, - { - "l": "98.0", - "x": 2.7623, - "y": 21.6533 - }, - { - "l": "98.0", - "x": 2.8457, - "y": 21.6821 - }, - { - "l": "98.0", - "x": 2.929, - "y": 21.7092 - }, - { - "l": "98.0", - "x": 3.0123, - "y": 21.7402 - }, - { - "l": "98.0", - "x": 3.0957, - "y": 21.7706 - }, - { - "l": "98.0", - "x": 3.179, - "y": 21.7984 - }, - { - "l": "98.0", - "x": 3.2623, - "y": 21.8293 - }, - { - "l": "98.0", - "x": 3.3457, - "y": 21.859 - }, - { - "l": "98.0", - "x": 3.429, - "y": 21.8856 - }, - { - "l": "98.0", - "x": 3.5123, - "y": 21.9146 - }, - { - "l": "98.0", - "x": 3.5957, - "y": 21.9421 - }, - { - "l": "98.0", - "x": 3.679, - "y": 21.9667 - }, - { - "l": "98.0", - "x": 3.7623, - "y": 21.9935 - }, - { - "l": "98.0", - "x": 3.8457, - "y": 22.0192 - }, - { - "l": "98.0", - "x": 3.929, - "y": 22.0423 - }, - { - "l": "98.0", - "x": 4.0123, - "y": 22.068 - }, - { - "l": "98.0", - "x": 4.0957, - "y": 22.0928 - }, - { - "l": "98.0", - "x": 4.179, - "y": 22.1154 - }, - { - "l": "98.0", - "x": 4.2623, - "y": 22.141 - }, - { - "l": "98.0", - "x": 4.3457, - "y": 22.1661 - }, - { - "l": "98.0", - "x": 4.429, - "y": 22.1895 - }, - { - "l": "98.0", - "x": 4.5123, - "y": 22.2162 - }, - { - "l": "98.0", - "x": 4.5957, - "y": 22.2431 - }, - { - "l": "98.0", - "x": 4.679, - "y": 22.2685 - }, - { - "l": "98.0", - "x": 4.7623, - "y": 22.2983 - }, - { - "l": "98.0", - "x": 4.8457, - "y": 22.3286 - }, - { - "l": "98.0", - "x": 4.929, - "y": 22.3575 - }, - { - "l": "98.0", - "x": 5.0123, - "y": 22.3916 - }, - { - "l": "98.0", - "x": 5.0957, - "y": 22.4263 - }, - { - "l": "98.0", - "x": 5.179, - "y": 22.4596 - }, - { - "l": "98.0", - "x": 5.2623, - "y": 22.4986 - }, - { - "l": "98.0", - "x": 5.3457, - "y": 22.5385 - }, - { - "l": "98.0", - "x": 5.429, - "y": 22.5768 - }, - { - "l": "98.0", - "x": 5.5123, - "y": 22.6217 - }, - { - "l": "98.0", - "x": 5.5957, - "y": 22.6676 - }, - { - "l": "98.0", - "x": 5.679, - "y": 22.7114 - }, - { - "l": "98.0", - "x": 5.7623, - "y": 22.7628 - }, - { - "l": "98.0", - "x": 5.8457, - "y": 22.8149 - }, - { - "l": "98.0", - "x": 5.929, - "y": 22.8645 - }, - { - "l": "98.0", - "x": 6.0123, - "y": 22.9223 - }, - { - "l": "98.0", - "x": 6.0957, - "y": 22.9807 - }, - { - "l": "98.0", - "x": 6.179, - "y": 23.036 - }, - { - "l": "98.0", - "x": 6.2623, - "y": 23.1002 - }, - { - "l": "98.0", - "x": 6.3457, - "y": 23.1647 - }, - { - "l": "98.0", - "x": 6.429, - "y": 23.2258 - }, - { - "l": "98.0", - "x": 6.5123, - "y": 23.2964 - }, - { - "l": "98.0", - "x": 6.5957, - "y": 23.3673 - }, - { - "l": "98.0", - "x": 6.679, - "y": 23.434 - }, - { - "l": "98.0", - "x": 6.7623, - "y": 23.5109 - }, - { - "l": "98.0", - "x": 6.8457, - "y": 23.5878 - }, - { - "l": "98.0", - "x": 6.929, - "y": 23.6601 - }, - { - "l": "98.0", - "x": 7.0123, - "y": 23.7431 - }, - { - "l": "98.0", - "x": 7.0957, - "y": 23.8259 - }, - { - "l": "98.0", - "x": 7.179, - "y": 23.9033 - }, - { - "l": "98.0", - "x": 7.2623, - "y": 23.992 - }, - { - "l": "98.0", - "x": 7.3457, - "y": 24.0802 - }, - { - "l": "98.0", - "x": 7.429, - "y": 24.1624 - }, - { - "l": "98.0", - "x": 7.5123, - "y": 24.2563 - }, - { - "l": "98.0", - "x": 7.5957, - "y": 24.3493 - }, - { - "l": "98.0", - "x": 7.679, - "y": 24.4358 - }, - { - "l": "98.0", - "x": 7.7623, - "y": 24.5344 - }, - { - "l": "98.0", - "x": 7.8457, - "y": 24.6318 - }, - { - "l": "98.0", - "x": 7.929, - "y": 24.7223 - }, - { - "l": "98.0", - "x": 8.0123, - "y": 24.8252 - }, - { - "l": "98.0", - "x": 8.0957, - "y": 24.9268 - }, - { - "l": "98.0", - "x": 8.179, - "y": 25.0208 - }, - { - "l": "98.0", - "x": 8.2623, - "y": 25.1276 - }, - { - "l": "98.0", - "x": 8.3457, - "y": 25.2328 - }, - { - "l": "98.0", - "x": 8.429, - "y": 25.3301 - }, - { - "l": "98.0", - "x": 8.5123, - "y": 25.4405 - }, - { - "l": "98.0", - "x": 8.5957, - "y": 25.5489 - }, - { - "l": "98.0", - "x": 8.679, - "y": 25.6491 - }, - { - "l": "98.0", - "x": 8.7623, - "y": 25.7625 - }, - { - "l": "98.0", - "x": 8.8457, - "y": 25.8739 - }, - { - "l": "98.0", - "x": 8.929, - "y": 25.9767 - }, - { - "l": "98.0", - "x": 9.0123, - "y": 26.093 - }, - { - "l": "98.0", - "x": 9.0957, - "y": 26.207 - }, - { - "l": "98.0", - "x": 9.179, - "y": 26.312 - }, - { - "l": "98.0", - "x": 9.2623, - "y": 26.4307 - }, - { - "l": "98.0", - "x": 9.3457, - "y": 26.5469 - }, - { - "l": "98.0", - "x": 9.429, - "y": 26.654 - }, - { - "l": "98.0", - "x": 9.5123, - "y": 26.7748 - }, - { - "l": "98.0", - "x": 9.5957, - "y": 26.893 - }, - { - "l": "98.0", - "x": 9.679, - "y": 27.0018 - }, - { - "l": "98.0", - "x": 9.7623, - "y": 27.1245 - }, - { - "l": "98.0", - "x": 9.8457, - "y": 27.2446 - }, - { - "l": "98.0", - "x": 9.929, - "y": 27.3549 - }, - { - "l": "98.0", - "x": 10.0123, - "y": 27.4794 - }, - { - "l": "98.0", - "x": 10.0957, - "y": 27.6011 - }, - { - "l": "98.0", - "x": 10.179, - "y": 27.7129 - }, - { - "l": "98.0", - "x": 10.2623, - "y": 27.8389 - }, - { - "l": "98.0", - "x": 10.3457, - "y": 27.9621 - }, - { - "l": "98.0", - "x": 10.429, - "y": 28.0753 - }, - { - "l": "98.0", - "x": 10.5123, - "y": 28.2027 - }, - { - "l": "98.0", - "x": 10.5957, - "y": 28.3273 - }, - { - "l": "98.0", - "x": 10.679, - "y": 28.4416 - }, - { - "l": "98.0", - "x": 10.7623, - "y": 28.5703 - }, - { - "l": "98.0", - "x": 10.8457, - "y": 28.696 - }, - { - "l": "98.0", - "x": 10.929, - "y": 28.8113 - }, - { - "l": "98.0", - "x": 11.0123, - "y": 28.9411 - }, - { - "l": "98.0", - "x": 11.0957, - "y": 29.0678 - }, - { - "l": "98.0", - "x": 11.179, - "y": 29.184 - }, - { - "l": "98.0", - "x": 11.2623, - "y": 29.3147 - }, - { - "l": "98.0", - "x": 11.3457, - "y": 29.4422 - }, - { - "l": "98.0", - "x": 11.429, - "y": 29.5591 - }, - { - "l": "98.0", - "x": 11.5123, - "y": 29.6905 - }, - { - "l": "98.0", - "x": 11.5957, - "y": 29.8186 - }, - { - "l": "98.0", - "x": 11.679, - "y": 29.936 - }, - { - "l": "98.0", - "x": 11.7623, - "y": 30.0679 - }, - { - "l": "98.0", - "x": 11.8457, - "y": 30.1965 - }, - { - "l": "98.0", - "x": 11.929, - "y": 30.3142 - }, - { - "l": "98.0", - "x": 12.0123, - "y": 30.4464 - }, - { - "l": "98.0", - "x": 12.0957, - "y": 30.5753 - }, - { - "l": "98.0", - "x": 12.179, - "y": 30.6932 - }, - { - "l": "98.0", - "x": 12.2623, - "y": 30.8257 - }, - { - "l": "98.0", - "x": 12.3457, - "y": 30.9546 - }, - { - "l": "98.0", - "x": 12.429, - "y": 31.0727 - }, - { - "l": "98.0", - "x": 12.5123, - "y": 31.2052 - }, - { - "l": "98.0", - "x": 12.5957, - "y": 31.3342 - }, - { - "l": "98.0", - "x": 12.679, - "y": 31.4522 - }, - { - "l": "98.0", - "x": 12.7623, - "y": 31.5847 - }, - { - "l": "98.0", - "x": 12.8457, - "y": 31.7136 - }, - { - "l": "98.0", - "x": 12.929, - "y": 31.8315 - }, - { - "l": "98.0", - "x": 13.0123, - "y": 31.9638 - }, - { - "l": "98.0", - "x": 13.0957, - "y": 32.0925 - }, - { - "l": "98.0", - "x": 13.179, - "y": 32.2102 - }, - { - "l": "98.0", - "x": 13.2623, - "y": 32.3422 - }, - { - "l": "98.0", - "x": 13.3457, - "y": 32.4706 - }, - { - "l": "98.0", - "x": 13.429, - "y": 32.588 - }, - { - "l": "98.0", - "x": 13.5123, - "y": 32.7197 - }, - { - "l": "98.0", - "x": 13.5957, - "y": 32.8477 - }, - { - "l": "98.0", - "x": 13.679, - "y": 32.9646 - }, - { - "l": "98.0", - "x": 13.7623, - "y": 33.0958 - }, - { - "l": "98.0", - "x": 13.8457, - "y": 33.2232 - }, - { - "l": "98.0", - "x": 13.929, - "y": 33.3397 - }, - { - "l": "98.0", - "x": 14.0123, - "y": 33.4702 - }, - { - "l": "98.0", - "x": 14.0957, - "y": 33.5971 - }, - { - "l": "98.0", - "x": 14.179, - "y": 33.713 - }, - { - "l": "98.0", - "x": 14.2623, - "y": 33.8428 - }, - { - "l": "98.0", - "x": 14.3457, - "y": 33.969 - }, - { - "l": "98.0", - "x": 14.429, - "y": 34.0842 - }, - { - "l": "98.0", - "x": 14.5123, - "y": 34.2133 - }, - { - "l": "98.0", - "x": 14.5957, - "y": 34.3388 - }, - { - "l": "98.0", - "x": 14.679, - "y": 34.4533 - }, - { - "l": "98.0", - "x": 14.7623, - "y": 34.5816 - }, - { - "l": "98.0", - "x": 14.8457, - "y": 34.7063 - }, - { - "l": "98.0", - "x": 14.929, - "y": 34.8201 - }, - { - "l": "98.0", - "x": 15.0123, - "y": 34.9476 - }, - { - "l": "98.0", - "x": 15.0957, - "y": 35.0713 - }, - { - "l": "98.0", - "x": 15.179, - "y": 35.1843 - }, - { - "l": "98.0", - "x": 15.2623, - "y": 35.3109 - }, - { - "l": "98.0", - "x": 15.3457, - "y": 35.4338 - }, - { - "l": "98.0", - "x": 15.429, - "y": 35.5461 - }, - { - "l": "98.0", - "x": 15.5123, - "y": 35.6718 - }, - { - "l": "98.0", - "x": 15.5957, - "y": 35.7937 - }, - { - "l": "98.0", - "x": 15.679, - "y": 35.9051 - }, - { - "l": "98.0", - "x": 15.7623, - "y": 36.0299 - }, - { - "l": "98.0", - "x": 15.8457, - "y": 36.151 - }, - { - "l": "98.0", - "x": 15.929, - "y": 36.2616 - }, - { - "l": "98.0", - "x": 16.0123, - "y": 36.3854 - }, - { - "l": "98.0", - "x": 16.0957, - "y": 36.5056 - }, - { - "l": "98.0", - "x": 16.179, - "y": 36.6154 - }, - { - "l": "98.0", - "x": 16.2623, - "y": 36.7383 - }, - { - "l": "98.0", - "x": 16.3457, - "y": 36.8576 - }, - { - "l": "98.0", - "x": 16.429, - "y": 36.9665 - }, - { - "l": "98.0", - "x": 16.5123, - "y": 37.0885 - }, - { - "l": "98.0", - "x": 16.5957, - "y": 37.2069 - }, - { - "l": "98.0", - "x": 16.679, - "y": 37.3149 - }, - { - "l": "98.0", - "x": 16.7623, - "y": 37.436 - }, - { - "l": "98.0", - "x": 16.8457, - "y": 37.5535 - }, - { - "l": "98.0", - "x": 16.929, - "y": 37.6608 - }, - { - "l": "98.0", - "x": 17.0123, - "y": 37.7809 - }, - { - "l": "98.0", - "x": 17.0957, - "y": 37.8975 - }, - { - "l": "98.0", - "x": 17.179, - "y": 38.004 - }, - { - "l": "98.0", - "x": 17.2623, - "y": 38.1232 - }, - { - "l": "98.0", - "x": 17.3457, - "y": 38.239 - }, - { - "l": "98.0", - "x": 17.429, - "y": 38.3446 - }, - { - "l": "98.0", - "x": 17.5123, - "y": 38.463 - }, - { - "l": "98.0", - "x": 17.5957, - "y": 38.5779 - }, - { - "l": "98.0", - "x": 17.679, - "y": 38.6828 - }, - { - "l": "98.0", - "x": 17.7623, - "y": 38.8003 - }, - { - "l": "98.0", - "x": 17.8457, - "y": 38.9144 - }, - { - "l": "98.0", - "x": 17.929, - "y": 39.0185 - }, - { - "l": "98.0", - "x": 18.0123, - "y": 39.1351 - }, - { - "l": "98.0", - "x": 18.0957, - "y": 39.2484 - }, - { - "l": "98.0", - "x": 18.179, - "y": 39.3518 - }, - { - "l": "98.0", - "x": 18.2623, - "y": 39.4675 - }, - { - "l": "98.0", - "x": 18.3457, - "y": 39.58 - }, - { - "l": "98.0", - "x": 18.429, - "y": 39.6826 - }, - { - "l": "98.0", - "x": 18.5123, - "y": 39.7976 - }, - { - "l": "98.0", - "x": 18.5957, - "y": 39.9092 - }, - { - "l": "98.0", - "x": 18.679, - "y": 40.0113 - }, - { - "l": "98.0", - "x": 18.7623, - "y": 40.1255 - }, - { - "l": "98.0", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 0.0, - "y": 16.5253 - }, - { - "l": "99.6", - "x": 0.0192, - "y": 16.8241 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 17.1222 - }, - { - "l": "99.6", - "x": 0.0575, - "y": 17.4196 - }, - { - "l": "99.6", - "x": 0.0767, - "y": 17.7162 - }, - { - "l": "99.6", - "x": 0.0958, - "y": 17.9684 - }, - { - "l": "99.6", - "x": 0.115, - "y": 18.1986 - }, - { - "l": "99.6", - "x": 0.1342, - "y": 18.4186 - }, - { - "l": "99.6", - "x": 0.1533, - "y": 18.6323 - }, - { - "l": "99.6", - "x": 0.1725, - "y": 18.8458 - }, - { - "l": "99.6", - "x": 0.1916, - "y": 19.0746 - }, - { - "l": "99.6", - "x": 0.2108, - "y": 19.3011 - }, - { - "l": "99.6", - "x": 0.23, - "y": 19.5237 - }, - { - "l": "99.6", - "x": 0.2491, - "y": 19.7405 - }, - { - "l": "99.6", - "x": 0.2683, - "y": 19.9474 - }, - { - "l": "99.6", - "x": 0.2875, - "y": 20.1458 - }, - { - "l": "99.6", - "x": 0.3066, - "y": 20.3347 - }, - { - "l": "99.6", - "x": 0.3258, - "y": 20.5132 - }, - { - "l": "99.6", - "x": 0.345, - "y": 20.6734 - }, - { - "l": "99.6", - "x": 0.3641, - "y": 20.8211 - }, - { - "l": "99.6", - "x": 0.3833, - "y": 20.9603 - }, - { - "l": "99.6", - "x": 0.4025, - "y": 21.0927 - }, - { - "l": "99.6", - "x": 0.4216, - "y": 21.221 - }, - { - "l": "99.6", - "x": 0.4408, - "y": 21.3535 - }, - { - "l": "99.6", - "x": 0.46, - "y": 21.4816 - }, - { - "l": "99.6", - "x": 0.4791, - "y": 21.6044 - }, - { - "l": "99.6", - "x": 0.4983, - "y": 21.7211 - }, - { - "l": "99.6", - "x": 0.5175, - "y": 21.8289 - }, - { - "l": "99.6", - "x": 0.5366, - "y": 21.9295 - }, - { - "l": "99.6", - "x": 0.5558, - "y": 22.0232 - }, - { - "l": "99.6", - "x": 0.5749, - "y": 22.11 - }, - { - "l": "99.6", - "x": 0.5941, - "y": 22.1871 - }, - { - "l": "99.6", - "x": 0.6133, - "y": 22.2569 - }, - { - "l": "99.6", - "x": 0.6324, - "y": 22.3215 - }, - { - "l": "99.6", - "x": 0.6516, - "y": 22.382 - }, - { - "l": "99.6", - "x": 0.6708, - "y": 22.4397 - }, - { - "l": "99.6", - "x": 0.6899, - "y": 22.4995 - }, - { - "l": "99.6", - "x": 0.7091, - "y": 22.5568 - }, - { - "l": "99.6", - "x": 0.7283, - "y": 22.6114 - }, - { - "l": "99.6", - "x": 0.7474, - "y": 22.663 - }, - { - "l": "99.6", - "x": 0.7666, - "y": 22.7106 - }, - { - "l": "99.6", - "x": 0.7858, - "y": 22.7547 - }, - { - "l": "99.6", - "x": 0.8049, - "y": 22.7956 - }, - { - "l": "99.6", - "x": 0.8241, - "y": 22.8332 - }, - { - "l": "99.6", - "x": 0.8433, - "y": 22.8665 - }, - { - "l": "99.6", - "x": 0.8624, - "y": 22.8964 - }, - { - "l": "99.6", - "x": 0.8816, - "y": 22.9237 - }, - { - "l": "99.6", - "x": 0.9008, - "y": 22.9489 - }, - { - "l": "99.6", - "x": 0.9199, - "y": 22.9725 - }, - { - "l": "99.6", - "x": 0.9391, - "y": 22.9966 - }, - { - "l": "99.6", - "x": 0.9582, - "y": 23.0195 - }, - { - "l": "99.6", - "x": 0.9774, - "y": 23.0409 - }, - { - "l": "99.6", - "x": 0.9966, - "y": 23.0607 - }, - { - "l": "99.6", - "x": 1.0157, - "y": 23.0785 - }, - { - "l": "99.6", - "x": 1.0349, - "y": 23.0945 - }, - { - "l": "99.6", - "x": 1.0541, - "y": 23.109 - }, - { - "l": "99.6", - "x": 1.0732, - "y": 23.122 - }, - { - "l": "99.6", - "x": 1.0924, - "y": 23.1334 - }, - { - "l": "99.6", - "x": 1.1116, - "y": 23.1434 - }, - { - "l": "99.6", - "x": 1.1307, - "y": 23.1523 - }, - { - "l": "99.6", - "x": 1.1499, - "y": 23.1604 - }, - { - "l": "99.6", - "x": 1.1691, - "y": 23.168 - }, - { - "l": "99.6", - "x": 1.1882, - "y": 23.1758 - }, - { - "l": "99.6", - "x": 1.2074, - "y": 23.1832 - }, - { - "l": "99.6", - "x": 1.2266, - "y": 23.1903 - }, - { - "l": "99.6", - "x": 1.2457, - "y": 23.1969 - }, - { - "l": "99.6", - "x": 1.2649, - "y": 23.2031 - }, - { - "l": "99.6", - "x": 1.2841, - "y": 23.2088 - }, - { - "l": "99.6", - "x": 1.3032, - "y": 23.2142 - }, - { - "l": "99.6", - "x": 1.3224, - "y": 23.2192 - }, - { - "l": "99.6", - "x": 1.3415, - "y": 23.2237 - }, - { - "l": "99.6", - "x": 1.3607, - "y": 23.2278 - }, - { - "l": "99.6", - "x": 1.3799, - "y": 23.2317 - }, - { - "l": "99.6", - "x": 1.399, - "y": 23.2354 - }, - { - "l": "99.6", - "x": 1.4182, - "y": 23.239 - }, - { - "l": "99.6", - "x": 1.4374, - "y": 23.2429 - }, - { - "l": "99.6", - "x": 1.4565, - "y": 23.2467 - }, - { - "l": "99.6", - "x": 1.4757, - "y": 23.2505 - }, - { - "l": "99.6", - "x": 1.4949, - "y": 23.2542 - }, - { - "l": "99.6", - "x": 1.514, - "y": 23.2579 - }, - { - "l": "99.6", - "x": 1.5332, - "y": 23.2614 - }, - { - "l": "99.6", - "x": 1.5524, - "y": 23.2649 - }, - { - "l": "99.6", - "x": 1.5715, - "y": 23.2684 - }, - { - "l": "99.6", - "x": 1.5907, - "y": 23.2716 - }, - { - "l": "99.6", - "x": 1.6099, - "y": 23.2746 - }, - { - "l": "99.6", - "x": 1.629, - "y": 23.2776 - }, - { - "l": "99.6", - "x": 1.6482, - "y": 23.2806 - }, - { - "l": "99.6", - "x": 1.6674, - "y": 23.2837 - }, - { - "l": "99.6", - "x": 1.6865, - "y": 23.287 - }, - { - "l": "99.6", - "x": 1.7057, - "y": 23.2904 - }, - { - "l": "99.6", - "x": 1.7248, - "y": 23.2939 - }, - { - "l": "99.6", - "x": 1.744, - "y": 23.2975 - }, - { - "l": "99.6", - "x": 1.7632, - "y": 23.3011 - }, - { - "l": "99.6", - "x": 1.7823, - "y": 23.3047 - }, - { - "l": "99.6", - "x": 1.8015, - "y": 23.3083 - }, - { - "l": "99.6", - "x": 1.8207, - "y": 23.312 - }, - { - "l": "99.6", - "x": 1.8398, - "y": 23.3155 - }, - { - "l": "99.6", - "x": 1.859, - "y": 23.3189 - }, - { - "l": "99.6", - "x": 1.8782, - "y": 23.3224 - }, - { - "l": "99.6", - "x": 1.8973, - "y": 23.326 - }, - { - "l": "99.6", - "x": 1.9165, - "y": 23.3297 - }, - { - "l": "99.6", - "x": 1.9357, - "y": 23.3338 - }, - { - "l": "99.6", - "x": 1.9548, - "y": 23.3382 - }, - { - "l": "99.6", - "x": 1.974, - "y": 23.3427 - }, - { - "l": "99.6", - "x": 1.9932, - "y": 23.3473 - }, - { - "l": "99.6", - "x": 2.0123, - "y": 23.3521 - }, - { - "l": "99.6", - "x": 2.0957, - "y": 23.3737 - }, - { - "l": "99.6", - "x": 2.179, - "y": 23.3957 - }, - { - "l": "99.6", - "x": 2.2623, - "y": 23.4229 - }, - { - "l": "99.6", - "x": 2.3457, - "y": 23.4519 - }, - { - "l": "99.6", - "x": 2.429, - "y": 23.4807 - }, - { - "l": "99.6", - "x": 2.5123, - "y": 23.5154 - }, - { - "l": "99.6", - "x": 2.5957, - "y": 23.5514 - }, - { - "l": "99.6", - "x": 2.679, - "y": 23.5862 - }, - { - "l": "99.6", - "x": 2.7623, - "y": 23.6269 - }, - { - "l": "99.6", - "x": 2.8457, - "y": 23.6679 - }, - { - "l": "99.6", - "x": 2.929, - "y": 23.7063 - }, - { - "l": "99.6", - "x": 3.0123, - "y": 23.7504 - }, - { - "l": "99.6", - "x": 3.0957, - "y": 23.7935 - }, - { - "l": "99.6", - "x": 3.179, - "y": 23.833 - }, - { - "l": "99.6", - "x": 3.2623, - "y": 23.8772 - }, - { - "l": "99.6", - "x": 3.3457, - "y": 23.9198 - }, - { - "l": "99.6", - "x": 3.429, - "y": 23.9582 - }, - { - "l": "99.6", - "x": 3.5123, - "y": 24.0005 - }, - { - "l": "99.6", - "x": 3.5957, - "y": 24.041 - }, - { - "l": "99.6", - "x": 3.679, - "y": 24.0774 - }, - { - "l": "99.6", - "x": 3.7623, - "y": 24.1174 - }, - { - "l": "99.6", - "x": 3.8457, - "y": 24.1561 - }, - { - "l": "99.6", - "x": 3.929, - "y": 24.191 - }, - { - "l": "99.6", - "x": 4.0123, - "y": 24.23 - }, - { - "l": "99.6", - "x": 4.0957, - "y": 24.2678 - }, - { - "l": "99.6", - "x": 4.179, - "y": 24.3024 - }, - { - "l": "99.6", - "x": 4.2623, - "y": 24.3416 - }, - { - "l": "99.6", - "x": 4.3457, - "y": 24.38 - }, - { - "l": "99.6", - "x": 4.429, - "y": 24.4155 - }, - { - "l": "99.6", - "x": 4.5123, - "y": 24.4561 - }, - { - "l": "99.6", - "x": 4.5957, - "y": 24.4966 - }, - { - "l": "99.6", - "x": 4.679, - "y": 24.5348 - }, - { - "l": "99.6", - "x": 4.7623, - "y": 24.5789 - }, - { - "l": "99.6", - "x": 4.8457, - "y": 24.6234 - }, - { - "l": "99.6", - "x": 4.929, - "y": 24.6656 - }, - { - "l": "99.6", - "x": 5.0123, - "y": 24.7148 - }, - { - "l": "99.6", - "x": 5.0957, - "y": 24.7644 - }, - { - "l": "99.6", - "x": 5.179, - "y": 24.8116 - }, - { - "l": "99.6", - "x": 5.2623, - "y": 24.8665 - }, - { - "l": "99.6", - "x": 5.3457, - "y": 24.9221 - }, - { - "l": "99.6", - "x": 5.429, - "y": 24.975 - }, - { - "l": "99.6", - "x": 5.5123, - "y": 25.0366 - }, - { - "l": "99.6", - "x": 5.5957, - "y": 25.099 - }, - { - "l": "99.6", - "x": 5.679, - "y": 25.1582 - }, - { - "l": "99.6", - "x": 5.7623, - "y": 25.2271 - }, - { - "l": "99.6", - "x": 5.8457, - "y": 25.2965 - }, - { - "l": "99.6", - "x": 5.929, - "y": 25.3622 - }, - { - "l": "99.6", - "x": 6.0123, - "y": 25.4383 - }, - { - "l": "99.6", - "x": 6.0957, - "y": 25.5148 - }, - { - "l": "99.6", - "x": 6.179, - "y": 25.5869 - }, - { - "l": "99.6", - "x": 6.2623, - "y": 25.6702 - }, - { - "l": "99.6", - "x": 6.3457, - "y": 25.7536 - }, - { - "l": "99.6", - "x": 6.429, - "y": 25.8322 - }, - { - "l": "99.6", - "x": 6.5123, - "y": 25.9226 - }, - { - "l": "99.6", - "x": 6.5957, - "y": 26.013 - }, - { - "l": "99.6", - "x": 6.679, - "y": 26.0979 - }, - { - "l": "99.6", - "x": 6.7623, - "y": 26.1954 - }, - { - "l": "99.6", - "x": 6.8457, - "y": 26.2926 - }, - { - "l": "99.6", - "x": 6.929, - "y": 26.3835 - }, - { - "l": "99.6", - "x": 7.0123, - "y": 26.4878 - }, - { - "l": "99.6", - "x": 7.0957, - "y": 26.5914 - }, - { - "l": "99.6", - "x": 7.179, - "y": 26.6882 - }, - { - "l": "99.6", - "x": 7.2623, - "y": 26.7987 - }, - { - "l": "99.6", - "x": 7.3457, - "y": 26.9083 - }, - { - "l": "99.6", - "x": 7.429, - "y": 27.0103 - }, - { - "l": "99.6", - "x": 7.5123, - "y": 27.1265 - }, - { - "l": "99.6", - "x": 7.5957, - "y": 27.2414 - }, - { - "l": "99.6", - "x": 7.679, - "y": 27.3481 - }, - { - "l": "99.6", - "x": 7.7623, - "y": 27.4695 - }, - { - "l": "99.6", - "x": 7.8457, - "y": 27.5893 - }, - { - "l": "99.6", - "x": 7.929, - "y": 27.7003 - }, - { - "l": "99.6", - "x": 8.0123, - "y": 27.8264 - }, - { - "l": "99.6", - "x": 8.0957, - "y": 27.9506 - }, - { - "l": "99.6", - "x": 8.179, - "y": 28.0655 - }, - { - "l": "99.6", - "x": 8.2623, - "y": 28.1959 - }, - { - "l": "99.6", - "x": 8.3457, - "y": 28.324 - }, - { - "l": "99.6", - "x": 8.429, - "y": 28.4424 - }, - { - "l": "99.6", - "x": 8.5123, - "y": 28.5766 - }, - { - "l": "99.6", - "x": 8.5957, - "y": 28.7083 - }, - { - "l": "99.6", - "x": 8.679, - "y": 28.8298 - }, - { - "l": "99.6", - "x": 8.7623, - "y": 28.9672 - }, - { - "l": "99.6", - "x": 8.8457, - "y": 29.102 - }, - { - "l": "99.6", - "x": 8.929, - "y": 29.2263 - }, - { - "l": "99.6", - "x": 9.0123, - "y": 29.3667 - }, - { - "l": "99.6", - "x": 9.0957, - "y": 29.5043 - }, - { - "l": "99.6", - "x": 9.179, - "y": 29.6309 - }, - { - "l": "99.6", - "x": 9.2623, - "y": 29.7739 - }, - { - "l": "99.6", - "x": 9.3457, - "y": 29.9138 - }, - { - "l": "99.6", - "x": 9.429, - "y": 30.0426 - }, - { - "l": "99.6", - "x": 9.5123, - "y": 30.1877 - }, - { - "l": "99.6", - "x": 9.5957, - "y": 30.3298 - }, - { - "l": "99.6", - "x": 9.679, - "y": 30.4603 - }, - { - "l": "99.6", - "x": 9.7623, - "y": 30.6074 - }, - { - "l": "99.6", - "x": 9.8457, - "y": 30.7513 - }, - { - "l": "99.6", - "x": 9.929, - "y": 30.8835 - }, - { - "l": "99.6", - "x": 10.0123, - "y": 31.0325 - }, - { - "l": "99.6", - "x": 10.0957, - "y": 31.1781 - }, - { - "l": "99.6", - "x": 10.179, - "y": 31.3118 - }, - { - "l": "99.6", - "x": 10.2623, - "y": 31.4624 - }, - { - "l": "99.6", - "x": 10.3457, - "y": 31.6095 - }, - { - "l": "99.6", - "x": 10.429, - "y": 31.7446 - }, - { - "l": "99.6", - "x": 10.5123, - "y": 31.8967 - }, - { - "l": "99.6", - "x": 10.5957, - "y": 32.0452 - }, - { - "l": "99.6", - "x": 10.679, - "y": 32.1815 - }, - { - "l": "99.6", - "x": 10.7623, - "y": 32.3349 - }, - { - "l": "99.6", - "x": 10.8457, - "y": 32.4846 - }, - { - "l": "99.6", - "x": 10.929, - "y": 32.622 - }, - { - "l": "99.6", - "x": 11.0123, - "y": 32.7765 - }, - { - "l": "99.6", - "x": 11.0957, - "y": 32.9273 - }, - { - "l": "99.6", - "x": 11.179, - "y": 33.0655 - }, - { - "l": "99.6", - "x": 11.2623, - "y": 33.2209 - }, - { - "l": "99.6", - "x": 11.3457, - "y": 33.3725 - }, - { - "l": "99.6", - "x": 11.429, - "y": 33.5114 - }, - { - "l": "99.6", - "x": 11.5123, - "y": 33.6676 - }, - { - "l": "99.6", - "x": 11.5957, - "y": 33.8198 - }, - { - "l": "99.6", - "x": 11.679, - "y": 33.9593 - }, - { - "l": "99.6", - "x": 11.7623, - "y": 34.116 - }, - { - "l": "99.6", - "x": 11.8457, - "y": 34.2686 - }, - { - "l": "99.6", - "x": 11.929, - "y": 34.4084 - }, - { - "l": "99.6", - "x": 12.0123, - "y": 34.5654 - }, - { - "l": "99.6", - "x": 12.0957, - "y": 34.7183 - }, - { - "l": "99.6", - "x": 12.179, - "y": 34.8583 - }, - { - "l": "99.6", - "x": 12.2623, - "y": 35.0154 - }, - { - "l": "99.6", - "x": 12.3457, - "y": 35.1684 - }, - { - "l": "99.6", - "x": 12.429, - "y": 35.3085 - }, - { - "l": "99.6", - "x": 12.5123, - "y": 35.4656 - }, - { - "l": "99.6", - "x": 12.5957, - "y": 35.6187 - }, - { - "l": "99.6", - "x": 12.679, - "y": 35.7586 - }, - { - "l": "99.6", - "x": 12.7623, - "y": 35.9157 - }, - { - "l": "99.6", - "x": 12.8457, - "y": 36.0685 - }, - { - "l": "99.6", - "x": 12.929, - "y": 36.2083 - }, - { - "l": "99.6", - "x": 13.0123, - "y": 36.3652 - }, - { - "l": "99.6", - "x": 13.0957, - "y": 36.5178 - }, - { - "l": "99.6", - "x": 13.179, - "y": 36.6573 - }, - { - "l": "99.6", - "x": 13.2623, - "y": 36.8138 - }, - { - "l": "99.6", - "x": 13.3457, - "y": 36.966 - }, - { - "l": "99.6", - "x": 13.429, - "y": 37.1051 - }, - { - "l": "99.6", - "x": 13.5123, - "y": 37.2611 - }, - { - "l": "99.6", - "x": 13.5957, - "y": 37.4128 - }, - { - "l": "99.6", - "x": 13.679, - "y": 37.5514 - }, - { - "l": "99.6", - "x": 13.7623, - "y": 37.7068 - }, - { - "l": "99.6", - "x": 13.8457, - "y": 37.8578 - }, - { - "l": "99.6", - "x": 13.929, - "y": 37.9958 - }, - { - "l": "99.6", - "x": 14.0123, - "y": 38.1505 - }, - { - "l": "99.6", - "x": 14.0957, - "y": 38.3008 - }, - { - "l": "99.6", - "x": 14.179, - "y": 38.438 - }, - { - "l": "99.6", - "x": 14.2623, - "y": 38.5918 - }, - { - "l": "99.6", - "x": 14.3457, - "y": 38.7413 - }, - { - "l": "99.6", - "x": 14.429, - "y": 38.8778 - }, - { - "l": "99.6", - "x": 14.5123, - "y": 39.0307 - }, - { - "l": "99.6", - "x": 14.5957, - "y": 39.1793 - }, - { - "l": "99.6", - "x": 14.679, - "y": 39.3149 - }, - { - "l": "99.6", - "x": 14.7623, - "y": 39.4668 - }, - { - "l": "99.6", - "x": 14.8457, - "y": 39.6144 - }, - { - "l": "99.6", - "x": 14.929, - "y": 39.7491 - }, - { - "l": "99.6", - "x": 15.0123, - "y": 39.9001 - }, - { - "l": "99.6", - "x": 15.0957, - "y": 40.0466 - }, - { - "l": "99.6", - "x": 15.179, - "y": 40.1803 - }, - { - "l": "99.6", - "x": 15.2623, - "y": 40.3301 - }, - { - "l": "99.6", - "x": 15.3457, - "y": 40.4756 - }, - { - "l": "99.6", - "x": 15.429, - "y": 40.6085 - }, - { - "l": "99.6", - "x": 15.5123, - "y": 40.7572 - }, - { - "l": "99.6", - "x": 15.5957, - "y": 40.9015 - }, - { - "l": "99.6", - "x": 15.679, - "y": 41.0333 - }, - { - "l": "99.6", - "x": 15.7623, - "y": 41.1809 - }, - { - "l": "99.6", - "x": 15.8457, - "y": 41.3242 - }, - { - "l": "99.6", - "x": 15.929, - "y": 41.4549 - }, - { - "l": "99.6", - "x": 16.0123, - "y": 41.6013 - }, - { - "l": "99.6", - "x": 16.0957, - "y": 41.7436 - }, - { - "l": "99.6", - "x": 16.179, - "y": 41.8733 - }, - { - "l": "99.6", - "x": 16.2623, - "y": 42.0186 - }, - { - "l": "99.6", - "x": 16.3457, - "y": 42.1596 - }, - { - "l": "99.6", - "x": 16.429, - "y": 42.2884 - }, - { - "l": "99.6", - "x": 16.5123, - "y": 42.4326 - }, - { - "l": "99.6", - "x": 16.5957, - "y": 42.5725 - }, - { - "l": "99.6", - "x": 16.679, - "y": 42.7001 - }, - { - "l": "99.6", - "x": 16.7623, - "y": 42.8431 - }, - { - "l": "99.6", - "x": 16.8457, - "y": 42.9819 - }, - { - "l": "99.6", - "x": 16.929, - "y": 43.1086 - }, - { - "l": "99.6", - "x": 17.0123, - "y": 43.2505 - }, - { - "l": "99.6", - "x": 17.0957, - "y": 43.3882 - }, - { - "l": "99.6", - "x": 17.179, - "y": 43.5139 - }, - { - "l": "99.6", - "x": 17.2623, - "y": 43.6546 - }, - { - "l": "99.6", - "x": 17.3457, - "y": 43.7913 - }, - { - "l": "99.6", - "x": 17.429, - "y": 43.916 - }, - { - "l": "99.6", - "x": 17.5123, - "y": 44.0556 - }, - { - "l": "99.6", - "x": 17.5957, - "y": 44.1912 - }, - { - "l": "99.6", - "x": 17.679, - "y": 44.3149 - }, - { - "l": "99.6", - "x": 17.7623, - "y": 44.4535 - }, - { - "l": "99.6", - "x": 17.8457, - "y": 44.588 - }, - { - "l": "99.6", - "x": 17.929, - "y": 44.7108 - }, - { - "l": "99.6", - "x": 18.0123, - "y": 44.8482 - }, - { - "l": "99.6", - "x": 18.0957, - "y": 44.9818 - }, - { - "l": "99.6", - "x": 18.179, - "y": 45.1036 - }, - { - "l": "99.6", - "x": 18.2623, - "y": 45.2399 - }, - { - "l": "99.6", - "x": 18.3457, - "y": 45.3724 - }, - { - "l": "99.6", - "x": 18.429, - "y": 45.4934 - }, - { - "l": "99.6", - "x": 18.5123, - "y": 45.6287 - }, - { - "l": "99.6", - "x": 18.5957, - "y": 45.7602 - }, - { - "l": "99.6", - "x": 18.679, - "y": 45.8804 - }, - { - "l": "99.6", - "x": 18.7623, - "y": 46.0149 - }, - { - "l": "99.6", - "x": 18.8457, - "y": null - } - ] - } - ] - } - } - } - ] -}; - -var trisomy21BMIMaleCentileData = { - "centile_data": [ - { - "trisomy-21": { - "male": { - "height": null, - "weight": null, - "ofc": null, - "bmi": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 0.0, - "y": 8.4329 - }, - { - "l": "0.4", - "x": 0.0192, - "y": 8.7071 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 8.9842 - }, - { - "l": "0.4", - "x": 0.0575, - "y": 9.2641 - }, - { - "l": "0.4", - "x": 0.0767, - "y": 9.5468 - }, - { - "l": "0.4", - "x": 0.0958, - "y": 9.7646 - }, - { - "l": "0.4", - "x": 0.115, - "y": 9.9482 - }, - { - "l": "0.4", - "x": 0.1342, - "y": 10.114 - }, - { - "l": "0.4", - "x": 0.1533, - "y": 10.2665 - }, - { - "l": "0.4", - "x": 0.1725, - "y": 10.4127 - }, - { - "l": "0.4", - "x": 0.1916, - "y": 10.5685 - }, - { - "l": "0.4", - "x": 0.2108, - "y": 10.7185 - }, - { - "l": "0.4", - "x": 0.23, - "y": 10.8622 - }, - { - "l": "0.4", - "x": 0.2491, - "y": 10.9992 - }, - { - "l": "0.4", - "x": 0.2683, - "y": 11.128 - }, - { - "l": "0.4", - "x": 0.2875, - "y": 11.2494 - }, - { - "l": "0.4", - "x": 0.3066, - "y": 11.3634 - }, - { - "l": "0.4", - "x": 0.3258, - "y": 11.4697 - }, - { - "l": "0.4", - "x": 0.345, - "y": 11.565 - }, - { - "l": "0.4", - "x": 0.3641, - "y": 11.6523 - }, - { - "l": "0.4", - "x": 0.3833, - "y": 11.734 - }, - { - "l": "0.4", - "x": 0.4025, - "y": 11.8113 - }, - { - "l": "0.4", - "x": 0.4216, - "y": 11.8861 - }, - { - "l": "0.4", - "x": 0.4408, - "y": 11.9639 - }, - { - "l": "0.4", - "x": 0.46, - "y": 12.0391 - }, - { - "l": "0.4", - "x": 0.4791, - "y": 12.1113 - }, - { - "l": "0.4", - "x": 0.4983, - "y": 12.1802 - }, - { - "l": "0.4", - "x": 0.5175, - "y": 12.2443 - }, - { - "l": "0.4", - "x": 0.5366, - "y": 12.3045 - }, - { - "l": "0.4", - "x": 0.5558, - "y": 12.3608 - }, - { - "l": "0.4", - "x": 0.5749, - "y": 12.4131 - }, - { - "l": "0.4", - "x": 0.5941, - "y": 12.4597 - }, - { - "l": "0.4", - "x": 0.6133, - "y": 12.502 - }, - { - "l": "0.4", - "x": 0.6324, - "y": 12.5413 - }, - { - "l": "0.4", - "x": 0.6516, - "y": 12.5782 - }, - { - "l": "0.4", - "x": 0.6708, - "y": 12.6134 - }, - { - "l": "0.4", - "x": 0.6899, - "y": 12.6499 - }, - { - "l": "0.4", - "x": 0.7091, - "y": 12.685 - }, - { - "l": "0.4", - "x": 0.7283, - "y": 12.7184 - }, - { - "l": "0.4", - "x": 0.7474, - "y": 12.7502 - }, - { - "l": "0.4", - "x": 0.7666, - "y": 12.7796 - }, - { - "l": "0.4", - "x": 0.7858, - "y": 12.8071 - }, - { - "l": "0.4", - "x": 0.8049, - "y": 12.8327 - }, - { - "l": "0.4", - "x": 0.8241, - "y": 12.8564 - }, - { - "l": "0.4", - "x": 0.8433, - "y": 12.8776 - }, - { - "l": "0.4", - "x": 0.8624, - "y": 12.8968 - }, - { - "l": "0.4", - "x": 0.8816, - "y": 12.9145 - }, - { - "l": "0.4", - "x": 0.9008, - "y": 12.9312 - }, - { - "l": "0.4", - "x": 0.9199, - "y": 12.9471 - }, - { - "l": "0.4", - "x": 0.9391, - "y": 12.9636 - }, - { - "l": "0.4", - "x": 0.9582, - "y": 12.9795 - }, - { - "l": "0.4", - "x": 0.9774, - "y": 12.9947 - }, - { - "l": "0.4", - "x": 0.9966, - "y": 13.0091 - }, - { - "l": "0.4", - "x": 1.0157, - "y": 13.0225 - }, - { - "l": "0.4", - "x": 1.0349, - "y": 13.035 - }, - { - "l": "0.4", - "x": 1.0541, - "y": 13.0467 - }, - { - "l": "0.4", - "x": 1.0732, - "y": 13.0575 - }, - { - "l": "0.4", - "x": 1.0924, - "y": 13.0672 - }, - { - "l": "0.4", - "x": 1.1116, - "y": 13.076 - }, - { - "l": "0.4", - "x": 1.1307, - "y": 13.0841 - }, - { - "l": "0.4", - "x": 1.1499, - "y": 13.0917 - }, - { - "l": "0.4", - "x": 1.1691, - "y": 13.0989 - }, - { - "l": "0.4", - "x": 1.1882, - "y": 13.1063 - }, - { - "l": "0.4", - "x": 1.2074, - "y": 13.1134 - }, - { - "l": "0.4", - "x": 1.2266, - "y": 13.1202 - }, - { - "l": "0.4", - "x": 1.2457, - "y": 13.1266 - }, - { - "l": "0.4", - "x": 1.2649, - "y": 13.1326 - }, - { - "l": "0.4", - "x": 1.2841, - "y": 13.1381 - }, - { - "l": "0.4", - "x": 1.3032, - "y": 13.1432 - }, - { - "l": "0.4", - "x": 1.3224, - "y": 13.1479 - }, - { - "l": "0.4", - "x": 1.3415, - "y": 13.1521 - }, - { - "l": "0.4", - "x": 1.3607, - "y": 13.1558 - }, - { - "l": "0.4", - "x": 1.3799, - "y": 13.1592 - }, - { - "l": "0.4", - "x": 1.399, - "y": 13.1623 - }, - { - "l": "0.4", - "x": 1.4182, - "y": 13.1652 - }, - { - "l": "0.4", - "x": 1.4374, - "y": 13.1682 - }, - { - "l": "0.4", - "x": 1.4565, - "y": 13.171 - }, - { - "l": "0.4", - "x": 1.4757, - "y": 13.1737 - }, - { - "l": "0.4", - "x": 1.4949, - "y": 13.1761 - }, - { - "l": "0.4", - "x": 1.514, - "y": 13.1783 - }, - { - "l": "0.4", - "x": 1.5332, - "y": 13.1803 - }, - { - "l": "0.4", - "x": 1.5524, - "y": 13.182 - }, - { - "l": "0.4", - "x": 1.5715, - "y": 13.1836 - }, - { - "l": "0.4", - "x": 1.5907, - "y": 13.1849 - }, - { - "l": "0.4", - "x": 1.6099, - "y": 13.186 - }, - { - "l": "0.4", - "x": 1.629, - "y": 13.1869 - }, - { - "l": "0.4", - "x": 1.6482, - "y": 13.1876 - }, - { - "l": "0.4", - "x": 1.6674, - "y": 13.1882 - }, - { - "l": "0.4", - "x": 1.6865, - "y": 13.1887 - }, - { - "l": "0.4", - "x": 1.7057, - "y": 13.1891 - }, - { - "l": "0.4", - "x": 1.7248, - "y": 13.1894 - }, - { - "l": "0.4", - "x": 1.744, - "y": 13.1895 - }, - { - "l": "0.4", - "x": 1.7632, - "y": 13.1894 - }, - { - "l": "0.4", - "x": 1.7823, - "y": 13.1892 - }, - { - "l": "0.4", - "x": 1.8015, - "y": 13.1889 - }, - { - "l": "0.4", - "x": 1.8207, - "y": 13.1884 - }, - { - "l": "0.4", - "x": 1.8398, - "y": 13.1879 - }, - { - "l": "0.4", - "x": 1.859, - "y": 13.1873 - }, - { - "l": "0.4", - "x": 1.8782, - "y": 13.1866 - }, - { - "l": "0.4", - "x": 1.8973, - "y": 13.1858 - }, - { - "l": "0.4", - "x": 1.9165, - "y": 13.1848 - }, - { - "l": "0.4", - "x": 1.9357, - "y": 13.1838 - }, - { - "l": "0.4", - "x": 1.9548, - "y": 13.1826 - }, - { - "l": "0.4", - "x": 1.974, - "y": 13.1813 - }, - { - "l": "0.4", - "x": 1.9932, - "y": 13.1799 - }, - { - "l": "0.4", - "x": 2.0123, - "y": 13.1783 - }, - { - "l": "0.4", - "x": 2.0957, - "y": 13.1708 - }, - { - "l": "0.4", - "x": 2.179, - "y": 13.1624 - }, - { - "l": "0.4", - "x": 2.2623, - "y": 13.1515 - }, - { - "l": "0.4", - "x": 2.3457, - "y": 13.1393 - }, - { - "l": "0.4", - "x": 2.429, - "y": 13.127 - }, - { - "l": "0.4", - "x": 2.5123, - "y": 13.1123 - }, - { - "l": "0.4", - "x": 2.5957, - "y": 13.0975 - }, - { - "l": "0.4", - "x": 2.679, - "y": 13.0835 - }, - { - "l": "0.4", - "x": 2.7623, - "y": 13.0679 - }, - { - "l": "0.4", - "x": 2.8457, - "y": 13.0526 - }, - { - "l": "0.4", - "x": 2.929, - "y": 13.0389 - }, - { - "l": "0.4", - "x": 3.0123, - "y": 13.024 - }, - { - "l": "0.4", - "x": 3.0957, - "y": 13.0099 - }, - { - "l": "0.4", - "x": 3.179, - "y": 12.9974 - }, - { - "l": "0.4", - "x": 3.2623, - "y": 12.984 - }, - { - "l": "0.4", - "x": 3.3457, - "y": 12.9714 - }, - { - "l": "0.4", - "x": 3.429, - "y": 12.9602 - }, - { - "l": "0.4", - "x": 3.5123, - "y": 12.948 - }, - { - "l": "0.4", - "x": 3.5957, - "y": 12.9366 - }, - { - "l": "0.4", - "x": 3.679, - "y": 12.9266 - }, - { - "l": "0.4", - "x": 3.7623, - "y": 12.9157 - }, - { - "l": "0.4", - "x": 3.8457, - "y": 12.9056 - }, - { - "l": "0.4", - "x": 3.929, - "y": 12.8966 - }, - { - "l": "0.4", - "x": 4.0123, - "y": 12.887 - }, - { - "l": "0.4", - "x": 4.0957, - "y": 12.878 - }, - { - "l": "0.4", - "x": 4.179, - "y": 12.8701 - }, - { - "l": "0.4", - "x": 4.2623, - "y": 12.8617 - }, - { - "l": "0.4", - "x": 4.3457, - "y": 12.8539 - }, - { - "l": "0.4", - "x": 4.429, - "y": 12.8471 - }, - { - "l": "0.4", - "x": 4.5123, - "y": 12.8398 - }, - { - "l": "0.4", - "x": 4.5957, - "y": 12.8333 - }, - { - "l": "0.4", - "x": 4.679, - "y": 12.8277 - }, - { - "l": "0.4", - "x": 4.7623, - "y": 12.8219 - }, - { - "l": "0.4", - "x": 4.8457, - "y": 12.8169 - }, - { - "l": "0.4", - "x": 4.929, - "y": 12.8127 - }, - { - "l": "0.4", - "x": 5.0123, - "y": 12.8086 - }, - { - "l": "0.4", - "x": 5.0957, - "y": 12.8053 - }, - { - "l": "0.4", - "x": 5.179, - "y": 12.8028 - }, - { - "l": "0.4", - "x": 5.2623, - "y": 12.8006 - }, - { - "l": "0.4", - "x": 5.3457, - "y": 12.7991 - }, - { - "l": "0.4", - "x": 5.429, - "y": 12.7984 - }, - { - "l": "0.4", - "x": 5.5123, - "y": 12.7983 - }, - { - "l": "0.4", - "x": 5.5957, - "y": 12.7987 - }, - { - "l": "0.4", - "x": 5.679, - "y": 12.7997 - }, - { - "l": "0.4", - "x": 5.7623, - "y": 12.8014 - }, - { - "l": "0.4", - "x": 5.8457, - "y": 12.8037 - }, - { - "l": "0.4", - "x": 5.929, - "y": 12.8063 - }, - { - "l": "0.4", - "x": 6.0123, - "y": 12.81 - }, - { - "l": "0.4", - "x": 6.0957, - "y": 12.8142 - }, - { - "l": "0.4", - "x": 6.179, - "y": 12.8187 - }, - { - "l": "0.4", - "x": 6.2623, - "y": 12.8243 - }, - { - "l": "0.4", - "x": 6.3457, - "y": 12.8304 - }, - { - "l": "0.4", - "x": 6.429, - "y": 12.8366 - }, - { - "l": "0.4", - "x": 6.5123, - "y": 12.8442 - }, - { - "l": "0.4", - "x": 6.5957, - "y": 12.8523 - }, - { - "l": "0.4", - "x": 6.679, - "y": 12.8601 - }, - { - "l": "0.4", - "x": 6.7623, - "y": 12.8696 - }, - { - "l": "0.4", - "x": 6.8457, - "y": 12.8793 - }, - { - "l": "0.4", - "x": 6.929, - "y": 12.8888 - }, - { - "l": "0.4", - "x": 7.0123, - "y": 12.9 - }, - { - "l": "0.4", - "x": 7.0957, - "y": 12.9113 - }, - { - "l": "0.4", - "x": 7.179, - "y": 12.9222 - }, - { - "l": "0.4", - "x": 7.2623, - "y": 12.9349 - }, - { - "l": "0.4", - "x": 7.3457, - "y": 12.9478 - }, - { - "l": "0.4", - "x": 7.429, - "y": 12.96 - }, - { - "l": "0.4", - "x": 7.5123, - "y": 12.9742 - }, - { - "l": "0.4", - "x": 7.5957, - "y": 12.9885 - }, - { - "l": "0.4", - "x": 7.679, - "y": 13.002 - }, - { - "l": "0.4", - "x": 7.7623, - "y": 13.0175 - }, - { - "l": "0.4", - "x": 7.8457, - "y": 13.0332 - }, - { - "l": "0.4", - "x": 7.929, - "y": 13.0478 - }, - { - "l": "0.4", - "x": 8.0123, - "y": 13.0647 - }, - { - "l": "0.4", - "x": 8.0957, - "y": 13.0815 - }, - { - "l": "0.4", - "x": 8.179, - "y": 13.0973 - }, - { - "l": "0.4", - "x": 8.2623, - "y": 13.1154 - }, - { - "l": "0.4", - "x": 8.3457, - "y": 13.1334 - }, - { - "l": "0.4", - "x": 8.429, - "y": 13.1502 - }, - { - "l": "0.4", - "x": 8.5123, - "y": 13.1694 - }, - { - "l": "0.4", - "x": 8.5957, - "y": 13.1885 - }, - { - "l": "0.4", - "x": 8.679, - "y": 13.2063 - }, - { - "l": "0.4", - "x": 8.7623, - "y": 13.2265 - }, - { - "l": "0.4", - "x": 8.8457, - "y": 13.2466 - }, - { - "l": "0.4", - "x": 8.929, - "y": 13.2653 - }, - { - "l": "0.4", - "x": 9.0123, - "y": 13.2866 - }, - { - "l": "0.4", - "x": 9.0957, - "y": 13.3077 - }, - { - "l": "0.4", - "x": 9.179, - "y": 13.3272 - }, - { - "l": "0.4", - "x": 9.2623, - "y": 13.3494 - }, - { - "l": "0.4", - "x": 9.3457, - "y": 13.3714 - }, - { - "l": "0.4", - "x": 9.429, - "y": 13.3918 - }, - { - "l": "0.4", - "x": 9.5123, - "y": 13.415 - }, - { - "l": "0.4", - "x": 9.5957, - "y": 13.4378 - }, - { - "l": "0.4", - "x": 9.679, - "y": 13.4588 - }, - { - "l": "0.4", - "x": 9.7623, - "y": 13.4827 - }, - { - "l": "0.4", - "x": 9.8457, - "y": 13.5063 - }, - { - "l": "0.4", - "x": 9.929, - "y": 13.5281 - }, - { - "l": "0.4", - "x": 10.0123, - "y": 13.5528 - }, - { - "l": "0.4", - "x": 10.0957, - "y": 13.577 - }, - { - "l": "0.4", - "x": 10.179, - "y": 13.5994 - }, - { - "l": "0.4", - "x": 10.2623, - "y": 13.6248 - }, - { - "l": "0.4", - "x": 10.3457, - "y": 13.6498 - }, - { - "l": "0.4", - "x": 10.429, - "y": 13.6728 - }, - { - "l": "0.4", - "x": 10.5123, - "y": 13.699 - }, - { - "l": "0.4", - "x": 10.5957, - "y": 13.7246 - }, - { - "l": "0.4", - "x": 10.679, - "y": 13.7483 - }, - { - "l": "0.4", - "x": 10.7623, - "y": 13.775 - }, - { - "l": "0.4", - "x": 10.8457, - "y": 13.8013 - }, - { - "l": "0.4", - "x": 10.929, - "y": 13.8255 - }, - { - "l": "0.4", - "x": 11.0123, - "y": 13.8528 - }, - { - "l": "0.4", - "x": 11.0957, - "y": 13.8797 - }, - { - "l": "0.4", - "x": 11.179, - "y": 13.9044 - }, - { - "l": "0.4", - "x": 11.2623, - "y": 13.9323 - }, - { - "l": "0.4", - "x": 11.3457, - "y": 13.9596 - }, - { - "l": "0.4", - "x": 11.429, - "y": 13.9848 - }, - { - "l": "0.4", - "x": 11.5123, - "y": 14.0131 - }, - { - "l": "0.4", - "x": 11.5957, - "y": 14.0409 - }, - { - "l": "0.4", - "x": 11.679, - "y": 14.0665 - }, - { - "l": "0.4", - "x": 11.7623, - "y": 14.0953 - }, - { - "l": "0.4", - "x": 11.8457, - "y": 14.1234 - }, - { - "l": "0.4", - "x": 11.929, - "y": 14.1493 - }, - { - "l": "0.4", - "x": 12.0123, - "y": 14.1785 - }, - { - "l": "0.4", - "x": 12.0957, - "y": 14.207 - }, - { - "l": "0.4", - "x": 12.179, - "y": 14.2332 - }, - { - "l": "0.4", - "x": 12.2623, - "y": 14.2626 - }, - { - "l": "0.4", - "x": 12.3457, - "y": 14.2915 - }, - { - "l": "0.4", - "x": 12.429, - "y": 14.3179 - }, - { - "l": "0.4", - "x": 12.5123, - "y": 14.3476 - }, - { - "l": "0.4", - "x": 12.5957, - "y": 14.3766 - }, - { - "l": "0.4", - "x": 12.679, - "y": 14.4033 - }, - { - "l": "0.4", - "x": 12.7623, - "y": 14.4332 - }, - { - "l": "0.4", - "x": 12.8457, - "y": 14.4624 - }, - { - "l": "0.4", - "x": 12.929, - "y": 14.4891 - }, - { - "l": "0.4", - "x": 13.0123, - "y": 14.5191 - }, - { - "l": "0.4", - "x": 13.0957, - "y": 14.5484 - }, - { - "l": "0.4", - "x": 13.179, - "y": 14.5752 - }, - { - "l": "0.4", - "x": 13.2623, - "y": 14.6053 - }, - { - "l": "0.4", - "x": 13.3457, - "y": 14.6347 - }, - { - "l": "0.4", - "x": 13.429, - "y": 14.6615 - }, - { - "l": "0.4", - "x": 13.5123, - "y": 14.6916 - }, - { - "l": "0.4", - "x": 13.5957, - "y": 14.7209 - }, - { - "l": "0.4", - "x": 13.679, - "y": 14.7478 - }, - { - "l": "0.4", - "x": 13.7623, - "y": 14.7778 - }, - { - "l": "0.4", - "x": 13.8457, - "y": 14.8071 - }, - { - "l": "0.4", - "x": 13.929, - "y": 14.8338 - }, - { - "l": "0.4", - "x": 14.0123, - "y": 14.8638 - }, - { - "l": "0.4", - "x": 14.0957, - "y": 14.8929 - }, - { - "l": "0.4", - "x": 14.179, - "y": 14.9195 - }, - { - "l": "0.4", - "x": 14.2623, - "y": 14.9493 - }, - { - "l": "0.4", - "x": 14.3457, - "y": 14.9783 - }, - { - "l": "0.4", - "x": 14.429, - "y": 15.0048 - }, - { - "l": "0.4", - "x": 14.5123, - "y": 15.0344 - }, - { - "l": "0.4", - "x": 14.5957, - "y": 15.0631 - }, - { - "l": "0.4", - "x": 14.679, - "y": 15.0894 - }, - { - "l": "0.4", - "x": 14.7623, - "y": 15.1188 - }, - { - "l": "0.4", - "x": 14.8457, - "y": 15.1474 - }, - { - "l": "0.4", - "x": 14.929, - "y": 15.1734 - }, - { - "l": "0.4", - "x": 15.0123, - "y": 15.2026 - }, - { - "l": "0.4", - "x": 15.0957, - "y": 15.2309 - }, - { - "l": "0.4", - "x": 15.179, - "y": 15.2567 - }, - { - "l": "0.4", - "x": 15.2623, - "y": 15.2856 - }, - { - "l": "0.4", - "x": 15.3457, - "y": 15.3137 - }, - { - "l": "0.4", - "x": 15.429, - "y": 15.3392 - }, - { - "l": "0.4", - "x": 15.5123, - "y": 15.3679 - }, - { - "l": "0.4", - "x": 15.5957, - "y": 15.3957 - }, - { - "l": "0.4", - "x": 15.679, - "y": 15.421 - }, - { - "l": "0.4", - "x": 15.7623, - "y": 15.4493 - }, - { - "l": "0.4", - "x": 15.8457, - "y": 15.4768 - }, - { - "l": "0.4", - "x": 15.929, - "y": 15.5019 - }, - { - "l": "0.4", - "x": 16.0123, - "y": 15.53 - }, - { - "l": "0.4", - "x": 16.0957, - "y": 15.5572 - }, - { - "l": "0.4", - "x": 16.179, - "y": 15.5819 - }, - { - "l": "0.4", - "x": 16.2623, - "y": 15.6097 - }, - { - "l": "0.4", - "x": 16.3457, - "y": 15.6366 - }, - { - "l": "0.4", - "x": 16.429, - "y": 15.6611 - }, - { - "l": "0.4", - "x": 16.5123, - "y": 15.6885 - }, - { - "l": "0.4", - "x": 16.5957, - "y": 15.7151 - }, - { - "l": "0.4", - "x": 16.679, - "y": 15.7394 - }, - { - "l": "0.4", - "x": 16.7623, - "y": 15.7664 - }, - { - "l": "0.4", - "x": 16.8457, - "y": 15.7927 - }, - { - "l": "0.4", - "x": 16.929, - "y": 15.8167 - }, - { - "l": "0.4", - "x": 17.0123, - "y": 15.8435 - }, - { - "l": "0.4", - "x": 17.0957, - "y": 15.8695 - }, - { - "l": "0.4", - "x": 17.179, - "y": 15.8932 - }, - { - "l": "0.4", - "x": 17.2623, - "y": 15.9197 - }, - { - "l": "0.4", - "x": 17.3457, - "y": 15.9453 - }, - { - "l": "0.4", - "x": 17.429, - "y": 15.9688 - }, - { - "l": "0.4", - "x": 17.5123, - "y": 15.9949 - }, - { - "l": "0.4", - "x": 17.5957, - "y": 16.0203 - }, - { - "l": "0.4", - "x": 17.679, - "y": 16.0434 - }, - { - "l": "0.4", - "x": 17.7623, - "y": 16.0694 - }, - { - "l": "0.4", - "x": 17.8457, - "y": 16.0945 - }, - { - "l": "0.4", - "x": 17.929, - "y": 16.1173 - }, - { - "l": "0.4", - "x": 18.0123, - "y": 16.1429 - }, - { - "l": "0.4", - "x": 18.0957, - "y": 16.1677 - }, - { - "l": "0.4", - "x": 18.179, - "y": 16.1903 - }, - { - "l": "0.4", - "x": 18.2623, - "y": 16.2156 - }, - { - "l": "0.4", - "x": 18.3457, - "y": 16.2401 - }, - { - "l": "0.4", - "x": 18.429, - "y": 16.2624 - }, - { - "l": "0.4", - "x": 18.5123, - "y": 16.2875 - }, - { - "l": "0.4", - "x": 18.5957, - "y": 16.3117 - }, - { - "l": "0.4", - "x": 18.679, - "y": 16.3338 - }, - { - "l": "0.4", - "x": 18.7623, - "y": 16.3585 - }, - { - "l": "0.4", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 0.0, - "y": 9.3435 - }, - { - "l": "2.0", - "x": 0.0192, - "y": 9.6238 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 9.9062 - }, - { - "l": "2.0", - "x": 0.0575, - "y": 10.1908 - }, - { - "l": "2.0", - "x": 0.0767, - "y": 10.4775 - }, - { - "l": "2.0", - "x": 0.0958, - "y": 10.6987 - }, - { - "l": "2.0", - "x": 0.115, - "y": 10.8856 - }, - { - "l": "2.0", - "x": 0.1342, - "y": 11.0545 - }, - { - "l": "2.0", - "x": 0.1533, - "y": 11.2102 - }, - { - "l": "2.0", - "x": 0.1725, - "y": 11.3596 - }, - { - "l": "2.0", - "x": 0.1916, - "y": 11.5187 - }, - { - "l": "2.0", - "x": 0.2108, - "y": 11.672 - }, - { - "l": "2.0", - "x": 0.23, - "y": 11.819 - }, - { - "l": "2.0", - "x": 0.2491, - "y": 11.9592 - }, - { - "l": "2.0", - "x": 0.2683, - "y": 12.091 - }, - { - "l": "2.0", - "x": 0.2875, - "y": 12.2153 - }, - { - "l": "2.0", - "x": 0.3066, - "y": 12.332 - }, - { - "l": "2.0", - "x": 0.3258, - "y": 12.4409 - }, - { - "l": "2.0", - "x": 0.345, - "y": 12.5384 - }, - { - "l": "2.0", - "x": 0.3641, - "y": 12.6277 - }, - { - "l": "2.0", - "x": 0.3833, - "y": 12.7112 - }, - { - "l": "2.0", - "x": 0.4025, - "y": 12.7903 - }, - { - "l": "2.0", - "x": 0.4216, - "y": 12.8667 - }, - { - "l": "2.0", - "x": 0.4408, - "y": 12.9461 - }, - { - "l": "2.0", - "x": 0.46, - "y": 13.0229 - }, - { - "l": "2.0", - "x": 0.4791, - "y": 13.0965 - }, - { - "l": "2.0", - "x": 0.4983, - "y": 13.1667 - }, - { - "l": "2.0", - "x": 0.5175, - "y": 13.232 - }, - { - "l": "2.0", - "x": 0.5366, - "y": 13.2932 - }, - { - "l": "2.0", - "x": 0.5558, - "y": 13.3504 - }, - { - "l": "2.0", - "x": 0.5749, - "y": 13.4034 - }, - { - "l": "2.0", - "x": 0.5941, - "y": 13.4506 - }, - { - "l": "2.0", - "x": 0.6133, - "y": 13.4935 - }, - { - "l": "2.0", - "x": 0.6324, - "y": 13.5332 - }, - { - "l": "2.0", - "x": 0.6516, - "y": 13.5704 - }, - { - "l": "2.0", - "x": 0.6708, - "y": 13.6059 - }, - { - "l": "2.0", - "x": 0.6899, - "y": 13.6425 - }, - { - "l": "2.0", - "x": 0.7091, - "y": 13.6777 - }, - { - "l": "2.0", - "x": 0.7283, - "y": 13.7113 - }, - { - "l": "2.0", - "x": 0.7474, - "y": 13.743 - }, - { - "l": "2.0", - "x": 0.7666, - "y": 13.7724 - }, - { - "l": "2.0", - "x": 0.7858, - "y": 13.7997 - }, - { - "l": "2.0", - "x": 0.8049, - "y": 13.8251 - }, - { - "l": "2.0", - "x": 0.8241, - "y": 13.8486 - }, - { - "l": "2.0", - "x": 0.8433, - "y": 13.8696 - }, - { - "l": "2.0", - "x": 0.8624, - "y": 13.8885 - }, - { - "l": "2.0", - "x": 0.8816, - "y": 13.9059 - }, - { - "l": "2.0", - "x": 0.9008, - "y": 13.9223 - }, - { - "l": "2.0", - "x": 0.9199, - "y": 13.9378 - }, - { - "l": "2.0", - "x": 0.9391, - "y": 13.9539 - }, - { - "l": "2.0", - "x": 0.9582, - "y": 13.9693 - }, - { - "l": "2.0", - "x": 0.9774, - "y": 13.9841 - }, - { - "l": "2.0", - "x": 0.9966, - "y": 13.998 - }, - { - "l": "2.0", - "x": 1.0157, - "y": 14.0109 - }, - { - "l": "2.0", - "x": 1.0349, - "y": 14.0229 - }, - { - "l": "2.0", - "x": 1.0541, - "y": 14.0341 - }, - { - "l": "2.0", - "x": 1.0732, - "y": 14.0443 - }, - { - "l": "2.0", - "x": 1.0924, - "y": 14.0535 - }, - { - "l": "2.0", - "x": 1.1116, - "y": 14.0618 - }, - { - "l": "2.0", - "x": 1.1307, - "y": 14.0693 - }, - { - "l": "2.0", - "x": 1.1499, - "y": 14.0764 - }, - { - "l": "2.0", - "x": 1.1691, - "y": 14.083 - }, - { - "l": "2.0", - "x": 1.1882, - "y": 14.0898 - }, - { - "l": "2.0", - "x": 1.2074, - "y": 14.0963 - }, - { - "l": "2.0", - "x": 1.2266, - "y": 14.1025 - }, - { - "l": "2.0", - "x": 1.2457, - "y": 14.1083 - }, - { - "l": "2.0", - "x": 1.2649, - "y": 14.1136 - }, - { - "l": "2.0", - "x": 1.2841, - "y": 14.1184 - }, - { - "l": "2.0", - "x": 1.3032, - "y": 14.1229 - }, - { - "l": "2.0", - "x": 1.3224, - "y": 14.127 - }, - { - "l": "2.0", - "x": 1.3415, - "y": 14.1305 - }, - { - "l": "2.0", - "x": 1.3607, - "y": 14.1337 - }, - { - "l": "2.0", - "x": 1.3799, - "y": 14.1365 - }, - { - "l": "2.0", - "x": 1.399, - "y": 14.1391 - }, - { - "l": "2.0", - "x": 1.4182, - "y": 14.1414 - }, - { - "l": "2.0", - "x": 1.4374, - "y": 14.1438 - }, - { - "l": "2.0", - "x": 1.4565, - "y": 14.146 - }, - { - "l": "2.0", - "x": 1.4757, - "y": 14.148 - }, - { - "l": "2.0", - "x": 1.4949, - "y": 14.1498 - }, - { - "l": "2.0", - "x": 1.514, - "y": 14.1514 - }, - { - "l": "2.0", - "x": 1.5332, - "y": 14.1527 - }, - { - "l": "2.0", - "x": 1.5524, - "y": 14.1539 - }, - { - "l": "2.0", - "x": 1.5715, - "y": 14.1548 - }, - { - "l": "2.0", - "x": 1.5907, - "y": 14.1556 - }, - { - "l": "2.0", - "x": 1.6099, - "y": 14.1562 - }, - { - "l": "2.0", - "x": 1.629, - "y": 14.1566 - }, - { - "l": "2.0", - "x": 1.6482, - "y": 14.1568 - }, - { - "l": "2.0", - "x": 1.6674, - "y": 14.1569 - }, - { - "l": "2.0", - "x": 1.6865, - "y": 14.1569 - }, - { - "l": "2.0", - "x": 1.7057, - "y": 14.1567 - }, - { - "l": "2.0", - "x": 1.7248, - "y": 14.1564 - }, - { - "l": "2.0", - "x": 1.744, - "y": 14.156 - }, - { - "l": "2.0", - "x": 1.7632, - "y": 14.1554 - }, - { - "l": "2.0", - "x": 1.7823, - "y": 14.1546 - }, - { - "l": "2.0", - "x": 1.8015, - "y": 14.1538 - }, - { - "l": "2.0", - "x": 1.8207, - "y": 14.1528 - }, - { - "l": "2.0", - "x": 1.8398, - "y": 14.1518 - }, - { - "l": "2.0", - "x": 1.859, - "y": 14.1508 - }, - { - "l": "2.0", - "x": 1.8782, - "y": 14.1496 - }, - { - "l": "2.0", - "x": 1.8973, - "y": 14.1484 - }, - { - "l": "2.0", - "x": 1.9165, - "y": 14.147 - }, - { - "l": "2.0", - "x": 1.9357, - "y": 14.1455 - }, - { - "l": "2.0", - "x": 1.9548, - "y": 14.1439 - }, - { - "l": "2.0", - "x": 1.974, - "y": 14.1421 - }, - { - "l": "2.0", - "x": 1.9932, - "y": 14.1402 - }, - { - "l": "2.0", - "x": 2.0123, - "y": 14.1382 - }, - { - "l": "2.0", - "x": 2.0957, - "y": 14.1289 - }, - { - "l": "2.0", - "x": 2.179, - "y": 14.1189 - }, - { - "l": "2.0", - "x": 2.2623, - "y": 14.1062 - }, - { - "l": "2.0", - "x": 2.3457, - "y": 14.0923 - }, - { - "l": "2.0", - "x": 2.429, - "y": 14.0785 - }, - { - "l": "2.0", - "x": 2.5123, - "y": 14.0622 - }, - { - "l": "2.0", - "x": 2.5957, - "y": 14.0458 - }, - { - "l": "2.0", - "x": 2.679, - "y": 14.0305 - }, - { - "l": "2.0", - "x": 2.7623, - "y": 14.0134 - }, - { - "l": "2.0", - "x": 2.8457, - "y": 13.9967 - }, - { - "l": "2.0", - "x": 2.929, - "y": 13.9818 - }, - { - "l": "2.0", - "x": 3.0123, - "y": 13.9655 - }, - { - "l": "2.0", - "x": 3.0957, - "y": 13.9501 - }, - { - "l": "2.0", - "x": 3.179, - "y": 13.9364 - }, - { - "l": "2.0", - "x": 3.2623, - "y": 13.9218 - }, - { - "l": "2.0", - "x": 3.3457, - "y": 13.9079 - }, - { - "l": "2.0", - "x": 3.429, - "y": 13.8956 - }, - { - "l": "2.0", - "x": 3.5123, - "y": 13.8823 - }, - { - "l": "2.0", - "x": 3.5957, - "y": 13.8698 - }, - { - "l": "2.0", - "x": 3.679, - "y": 13.8589 - }, - { - "l": "2.0", - "x": 3.7623, - "y": 13.8469 - }, - { - "l": "2.0", - "x": 3.8457, - "y": 13.8358 - }, - { - "l": "2.0", - "x": 3.929, - "y": 13.826 - }, - { - "l": "2.0", - "x": 4.0123, - "y": 13.8155 - }, - { - "l": "2.0", - "x": 4.0957, - "y": 13.8057 - }, - { - "l": "2.0", - "x": 4.179, - "y": 13.7972 - }, - { - "l": "2.0", - "x": 4.2623, - "y": 13.7881 - }, - { - "l": "2.0", - "x": 4.3457, - "y": 13.7796 - }, - { - "l": "2.0", - "x": 4.429, - "y": 13.7723 - }, - { - "l": "2.0", - "x": 4.5123, - "y": 13.7645 - }, - { - "l": "2.0", - "x": 4.5957, - "y": 13.7575 - }, - { - "l": "2.0", - "x": 4.679, - "y": 13.7516 - }, - { - "l": "2.0", - "x": 4.7623, - "y": 13.7455 - }, - { - "l": "2.0", - "x": 4.8457, - "y": 13.7402 - }, - { - "l": "2.0", - "x": 4.929, - "y": 13.7359 - }, - { - "l": "2.0", - "x": 5.0123, - "y": 13.7316 - }, - { - "l": "2.0", - "x": 5.0957, - "y": 13.7282 - }, - { - "l": "2.0", - "x": 5.179, - "y": 13.7258 - }, - { - "l": "2.0", - "x": 5.2623, - "y": 13.7237 - }, - { - "l": "2.0", - "x": 5.3457, - "y": 13.7224 - }, - { - "l": "2.0", - "x": 5.429, - "y": 13.7218 - }, - { - "l": "2.0", - "x": 5.5123, - "y": 13.722 - }, - { - "l": "2.0", - "x": 5.5957, - "y": 13.7228 - }, - { - "l": "2.0", - "x": 5.679, - "y": 13.7241 - }, - { - "l": "2.0", - "x": 5.7623, - "y": 13.7263 - }, - { - "l": "2.0", - "x": 5.8457, - "y": 13.7292 - }, - { - "l": "2.0", - "x": 5.929, - "y": 13.7324 - }, - { - "l": "2.0", - "x": 6.0123, - "y": 13.7368 - }, - { - "l": "2.0", - "x": 6.0957, - "y": 13.7417 - }, - { - "l": "2.0", - "x": 6.179, - "y": 13.7469 - }, - { - "l": "2.0", - "x": 6.2623, - "y": 13.7534 - }, - { - "l": "2.0", - "x": 6.3457, - "y": 13.7604 - }, - { - "l": "2.0", - "x": 6.429, - "y": 13.7675 - }, - { - "l": "2.0", - "x": 6.5123, - "y": 13.7762 - }, - { - "l": "2.0", - "x": 6.5957, - "y": 13.7853 - }, - { - "l": "2.0", - "x": 6.679, - "y": 13.7942 - }, - { - "l": "2.0", - "x": 6.7623, - "y": 13.8049 - }, - { - "l": "2.0", - "x": 6.8457, - "y": 13.8159 - }, - { - "l": "2.0", - "x": 6.929, - "y": 13.8266 - }, - { - "l": "2.0", - "x": 7.0123, - "y": 13.8391 - }, - { - "l": "2.0", - "x": 7.0957, - "y": 13.8519 - }, - { - "l": "2.0", - "x": 7.179, - "y": 13.8641 - }, - { - "l": "2.0", - "x": 7.2623, - "y": 13.8783 - }, - { - "l": "2.0", - "x": 7.3457, - "y": 13.8926 - }, - { - "l": "2.0", - "x": 7.429, - "y": 13.9063 - }, - { - "l": "2.0", - "x": 7.5123, - "y": 13.9221 - }, - { - "l": "2.0", - "x": 7.5957, - "y": 13.938 - }, - { - "l": "2.0", - "x": 7.679, - "y": 13.953 - }, - { - "l": "2.0", - "x": 7.7623, - "y": 13.9703 - }, - { - "l": "2.0", - "x": 7.8457, - "y": 13.9876 - }, - { - "l": "2.0", - "x": 7.929, - "y": 14.0039 - }, - { - "l": "2.0", - "x": 8.0123, - "y": 14.0226 - }, - { - "l": "2.0", - "x": 8.0957, - "y": 14.0412 - }, - { - "l": "2.0", - "x": 8.179, - "y": 14.0586 - }, - { - "l": "2.0", - "x": 8.2623, - "y": 14.0785 - }, - { - "l": "2.0", - "x": 8.3457, - "y": 14.0984 - }, - { - "l": "2.0", - "x": 8.429, - "y": 14.1169 - }, - { - "l": "2.0", - "x": 8.5123, - "y": 14.138 - }, - { - "l": "2.0", - "x": 8.5957, - "y": 14.159 - }, - { - "l": "2.0", - "x": 8.679, - "y": 14.1786 - }, - { - "l": "2.0", - "x": 8.7623, - "y": 14.2008 - }, - { - "l": "2.0", - "x": 8.8457, - "y": 14.2229 - }, - { - "l": "2.0", - "x": 8.929, - "y": 14.2433 - }, - { - "l": "2.0", - "x": 9.0123, - "y": 14.2667 - }, - { - "l": "2.0", - "x": 9.0957, - "y": 14.2898 - }, - { - "l": "2.0", - "x": 9.179, - "y": 14.3111 - }, - { - "l": "2.0", - "x": 9.2623, - "y": 14.3354 - }, - { - "l": "2.0", - "x": 9.3457, - "y": 14.3594 - }, - { - "l": "2.0", - "x": 9.429, - "y": 14.3817 - }, - { - "l": "2.0", - "x": 9.5123, - "y": 14.4069 - }, - { - "l": "2.0", - "x": 9.5957, - "y": 14.4318 - }, - { - "l": "2.0", - "x": 9.679, - "y": 14.4547 - }, - { - "l": "2.0", - "x": 9.7623, - "y": 14.4807 - }, - { - "l": "2.0", - "x": 9.8457, - "y": 14.5063 - }, - { - "l": "2.0", - "x": 9.929, - "y": 14.53 - }, - { - "l": "2.0", - "x": 10.0123, - "y": 14.5568 - }, - { - "l": "2.0", - "x": 10.0957, - "y": 14.5832 - }, - { - "l": "2.0", - "x": 10.179, - "y": 14.6075 - }, - { - "l": "2.0", - "x": 10.2623, - "y": 14.6351 - }, - { - "l": "2.0", - "x": 10.3457, - "y": 14.6621 - }, - { - "l": "2.0", - "x": 10.429, - "y": 14.6871 - }, - { - "l": "2.0", - "x": 10.5123, - "y": 14.7154 - }, - { - "l": "2.0", - "x": 10.5957, - "y": 14.7432 - }, - { - "l": "2.0", - "x": 10.679, - "y": 14.7688 - }, - { - "l": "2.0", - "x": 10.7623, - "y": 14.7977 - }, - { - "l": "2.0", - "x": 10.8457, - "y": 14.8261 - }, - { - "l": "2.0", - "x": 10.929, - "y": 14.8523 - }, - { - "l": "2.0", - "x": 11.0123, - "y": 14.8818 - }, - { - "l": "2.0", - "x": 11.0957, - "y": 14.9108 - }, - { - "l": "2.0", - "x": 11.179, - "y": 14.9375 - }, - { - "l": "2.0", - "x": 11.2623, - "y": 14.9676 - }, - { - "l": "2.0", - "x": 11.3457, - "y": 14.997 - }, - { - "l": "2.0", - "x": 11.429, - "y": 15.0241 - }, - { - "l": "2.0", - "x": 11.5123, - "y": 15.0547 - }, - { - "l": "2.0", - "x": 11.5957, - "y": 15.0847 - }, - { - "l": "2.0", - "x": 11.679, - "y": 15.1122 - }, - { - "l": "2.0", - "x": 11.7623, - "y": 15.1432 - }, - { - "l": "2.0", - "x": 11.8457, - "y": 15.1735 - }, - { - "l": "2.0", - "x": 11.929, - "y": 15.2013 - }, - { - "l": "2.0", - "x": 12.0123, - "y": 15.2327 - }, - { - "l": "2.0", - "x": 12.0957, - "y": 15.2634 - }, - { - "l": "2.0", - "x": 12.179, - "y": 15.2916 - }, - { - "l": "2.0", - "x": 12.2623, - "y": 15.3232 - }, - { - "l": "2.0", - "x": 12.3457, - "y": 15.3542 - }, - { - "l": "2.0", - "x": 12.429, - "y": 15.3825 - }, - { - "l": "2.0", - "x": 12.5123, - "y": 15.4145 - }, - { - "l": "2.0", - "x": 12.5957, - "y": 15.4456 - }, - { - "l": "2.0", - "x": 12.679, - "y": 15.4742 - }, - { - "l": "2.0", - "x": 12.7623, - "y": 15.5063 - }, - { - "l": "2.0", - "x": 12.8457, - "y": 15.5376 - }, - { - "l": "2.0", - "x": 12.929, - "y": 15.5663 - }, - { - "l": "2.0", - "x": 13.0123, - "y": 15.5985 - }, - { - "l": "2.0", - "x": 13.0957, - "y": 15.6299 - }, - { - "l": "2.0", - "x": 13.179, - "y": 15.6587 - }, - { - "l": "2.0", - "x": 13.2623, - "y": 15.6909 - }, - { - "l": "2.0", - "x": 13.3457, - "y": 15.7224 - }, - { - "l": "2.0", - "x": 13.429, - "y": 15.7511 - }, - { - "l": "2.0", - "x": 13.5123, - "y": 15.7834 - }, - { - "l": "2.0", - "x": 13.5957, - "y": 15.8148 - }, - { - "l": "2.0", - "x": 13.679, - "y": 15.8435 - }, - { - "l": "2.0", - "x": 13.7623, - "y": 15.8757 - }, - { - "l": "2.0", - "x": 13.8457, - "y": 15.907 - }, - { - "l": "2.0", - "x": 13.929, - "y": 15.9356 - }, - { - "l": "2.0", - "x": 14.0123, - "y": 15.9677 - }, - { - "l": "2.0", - "x": 14.0957, - "y": 15.9988 - }, - { - "l": "2.0", - "x": 14.179, - "y": 16.0273 - }, - { - "l": "2.0", - "x": 14.2623, - "y": 16.0592 - }, - { - "l": "2.0", - "x": 14.3457, - "y": 16.0901 - }, - { - "l": "2.0", - "x": 14.429, - "y": 16.1185 - }, - { - "l": "2.0", - "x": 14.5123, - "y": 16.1501 - }, - { - "l": "2.0", - "x": 14.5957, - "y": 16.1809 - }, - { - "l": "2.0", - "x": 14.679, - "y": 16.2089 - }, - { - "l": "2.0", - "x": 14.7623, - "y": 16.2403 - }, - { - "l": "2.0", - "x": 14.8457, - "y": 16.2709 - }, - { - "l": "2.0", - "x": 14.929, - "y": 16.2987 - }, - { - "l": "2.0", - "x": 15.0123, - "y": 16.3298 - }, - { - "l": "2.0", - "x": 15.0957, - "y": 16.3601 - }, - { - "l": "2.0", - "x": 15.179, - "y": 16.3877 - }, - { - "l": "2.0", - "x": 15.2623, - "y": 16.4185 - }, - { - "l": "2.0", - "x": 15.3457, - "y": 16.4485 - }, - { - "l": "2.0", - "x": 15.429, - "y": 16.4758 - }, - { - "l": "2.0", - "x": 15.5123, - "y": 16.5064 - }, - { - "l": "2.0", - "x": 15.5957, - "y": 16.536 - }, - { - "l": "2.0", - "x": 15.679, - "y": 16.563 - }, - { - "l": "2.0", - "x": 15.7623, - "y": 16.5932 - }, - { - "l": "2.0", - "x": 15.8457, - "y": 16.6225 - }, - { - "l": "2.0", - "x": 15.929, - "y": 16.6493 - }, - { - "l": "2.0", - "x": 16.0123, - "y": 16.6792 - }, - { - "l": "2.0", - "x": 16.0957, - "y": 16.7082 - }, - { - "l": "2.0", - "x": 16.179, - "y": 16.7346 - }, - { - "l": "2.0", - "x": 16.2623, - "y": 16.7642 - }, - { - "l": "2.0", - "x": 16.3457, - "y": 16.7929 - }, - { - "l": "2.0", - "x": 16.429, - "y": 16.819 - }, - { - "l": "2.0", - "x": 16.5123, - "y": 16.8482 - }, - { - "l": "2.0", - "x": 16.5957, - "y": 16.8765 - }, - { - "l": "2.0", - "x": 16.679, - "y": 16.9024 - }, - { - "l": "2.0", - "x": 16.7623, - "y": 16.9312 - }, - { - "l": "2.0", - "x": 16.8457, - "y": 16.9592 - }, - { - "l": "2.0", - "x": 16.929, - "y": 16.9848 - }, - { - "l": "2.0", - "x": 17.0123, - "y": 17.0133 - }, - { - "l": "2.0", - "x": 17.0957, - "y": 17.0409 - }, - { - "l": "2.0", - "x": 17.179, - "y": 17.0662 - }, - { - "l": "2.0", - "x": 17.2623, - "y": 17.0944 - }, - { - "l": "2.0", - "x": 17.3457, - "y": 17.1217 - }, - { - "l": "2.0", - "x": 17.429, - "y": 17.1466 - }, - { - "l": "2.0", - "x": 17.5123, - "y": 17.1745 - }, - { - "l": "2.0", - "x": 17.5957, - "y": 17.2014 - }, - { - "l": "2.0", - "x": 17.679, - "y": 17.2261 - }, - { - "l": "2.0", - "x": 17.7623, - "y": 17.2536 - }, - { - "l": "2.0", - "x": 17.8457, - "y": 17.2803 - }, - { - "l": "2.0", - "x": 17.929, - "y": 17.3046 - }, - { - "l": "2.0", - "x": 18.0123, - "y": 17.3318 - }, - { - "l": "2.0", - "x": 18.0957, - "y": 17.3582 - }, - { - "l": "2.0", - "x": 18.179, - "y": 17.3822 - }, - { - "l": "2.0", - "x": 18.2623, - "y": 17.4091 - }, - { - "l": "2.0", - "x": 18.3457, - "y": 17.4351 - }, - { - "l": "2.0", - "x": 18.429, - "y": 17.4588 - }, - { - "l": "2.0", - "x": 18.5123, - "y": 17.4854 - }, - { - "l": "2.0", - "x": 18.5957, - "y": 17.5112 - }, - { - "l": "2.0", - "x": 18.679, - "y": 17.5347 - }, - { - "l": "2.0", - "x": 18.7623, - "y": 17.5609 - }, - { - "l": "2.0", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 0.0, - "y": 10.2725 - }, - { - "l": "9.0", - "x": 0.0192, - "y": 10.5593 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 10.8476 - }, - { - "l": "9.0", - "x": 0.0575, - "y": 11.1373 - }, - { - "l": "9.0", - "x": 0.0767, - "y": 11.4285 - }, - { - "l": "9.0", - "x": 0.0958, - "y": 11.6535 - }, - { - "l": "9.0", - "x": 0.115, - "y": 11.8439 - }, - { - "l": "9.0", - "x": 0.1342, - "y": 12.0162 - }, - { - "l": "9.0", - "x": 0.1533, - "y": 12.1752 - }, - { - "l": "9.0", - "x": 0.1725, - "y": 12.328 - }, - { - "l": "9.0", - "x": 0.1916, - "y": 12.4906 - }, - { - "l": "9.0", - "x": 0.2108, - "y": 12.6475 - }, - { - "l": "9.0", - "x": 0.23, - "y": 12.798 - }, - { - "l": "9.0", - "x": 0.2491, - "y": 12.9416 - }, - { - "l": "9.0", - "x": 0.2683, - "y": 13.0767 - }, - { - "l": "9.0", - "x": 0.2875, - "y": 13.2041 - }, - { - "l": "9.0", - "x": 0.3066, - "y": 13.3236 - }, - { - "l": "9.0", - "x": 0.3258, - "y": 13.4353 - }, - { - "l": "9.0", - "x": 0.345, - "y": 13.5351 - }, - { - "l": "9.0", - "x": 0.3641, - "y": 13.6266 - }, - { - "l": "9.0", - "x": 0.3833, - "y": 13.7122 - }, - { - "l": "9.0", - "x": 0.4025, - "y": 13.7931 - }, - { - "l": "9.0", - "x": 0.4216, - "y": 13.8713 - }, - { - "l": "9.0", - "x": 0.4408, - "y": 13.9525 - }, - { - "l": "9.0", - "x": 0.46, - "y": 14.0309 - }, - { - "l": "9.0", - "x": 0.4791, - "y": 14.1061 - }, - { - "l": "9.0", - "x": 0.4983, - "y": 14.1778 - }, - { - "l": "9.0", - "x": 0.5175, - "y": 14.2443 - }, - { - "l": "9.0", - "x": 0.5366, - "y": 14.3067 - }, - { - "l": "9.0", - "x": 0.5558, - "y": 14.3648 - }, - { - "l": "9.0", - "x": 0.5749, - "y": 14.4188 - }, - { - "l": "9.0", - "x": 0.5941, - "y": 14.4667 - }, - { - "l": "9.0", - "x": 0.6133, - "y": 14.5102 - }, - { - "l": "9.0", - "x": 0.6324, - "y": 14.5503 - }, - { - "l": "9.0", - "x": 0.6516, - "y": 14.588 - }, - { - "l": "9.0", - "x": 0.6708, - "y": 14.6238 - }, - { - "l": "9.0", - "x": 0.6899, - "y": 14.6608 - }, - { - "l": "9.0", - "x": 0.7091, - "y": 14.6962 - }, - { - "l": "9.0", - "x": 0.7283, - "y": 14.7299 - }, - { - "l": "9.0", - "x": 0.7474, - "y": 14.7618 - }, - { - "l": "9.0", - "x": 0.7666, - "y": 14.7912 - }, - { - "l": "9.0", - "x": 0.7858, - "y": 14.8185 - }, - { - "l": "9.0", - "x": 0.8049, - "y": 14.8438 - }, - { - "l": "9.0", - "x": 0.8241, - "y": 14.8672 - }, - { - "l": "9.0", - "x": 0.8433, - "y": 14.888 - }, - { - "l": "9.0", - "x": 0.8624, - "y": 14.9067 - }, - { - "l": "9.0", - "x": 0.8816, - "y": 14.924 - }, - { - "l": "9.0", - "x": 0.9008, - "y": 14.9401 - }, - { - "l": "9.0", - "x": 0.9199, - "y": 14.9554 - }, - { - "l": "9.0", - "x": 0.9391, - "y": 14.9712 - }, - { - "l": "9.0", - "x": 0.9582, - "y": 14.9863 - }, - { - "l": "9.0", - "x": 0.9774, - "y": 15.0007 - }, - { - "l": "9.0", - "x": 0.9966, - "y": 15.0143 - }, - { - "l": "9.0", - "x": 1.0157, - "y": 15.0269 - }, - { - "l": "9.0", - "x": 1.0349, - "y": 15.0385 - }, - { - "l": "9.0", - "x": 1.0541, - "y": 15.0492 - }, - { - "l": "9.0", - "x": 1.0732, - "y": 15.0591 - }, - { - "l": "9.0", - "x": 1.0924, - "y": 15.0679 - }, - { - "l": "9.0", - "x": 1.1116, - "y": 15.0757 - }, - { - "l": "9.0", - "x": 1.1307, - "y": 15.0829 - }, - { - "l": "9.0", - "x": 1.1499, - "y": 15.0896 - }, - { - "l": "9.0", - "x": 1.1691, - "y": 15.0958 - }, - { - "l": "9.0", - "x": 1.1882, - "y": 15.1021 - }, - { - "l": "9.0", - "x": 1.2074, - "y": 15.1082 - }, - { - "l": "9.0", - "x": 1.2266, - "y": 15.1139 - }, - { - "l": "9.0", - "x": 1.2457, - "y": 15.1192 - }, - { - "l": "9.0", - "x": 1.2649, - "y": 15.124 - }, - { - "l": "9.0", - "x": 1.2841, - "y": 15.1284 - }, - { - "l": "9.0", - "x": 1.3032, - "y": 15.1324 - }, - { - "l": "9.0", - "x": 1.3224, - "y": 15.1359 - }, - { - "l": "9.0", - "x": 1.3415, - "y": 15.1391 - }, - { - "l": "9.0", - "x": 1.3607, - "y": 15.1418 - }, - { - "l": "9.0", - "x": 1.3799, - "y": 15.1443 - }, - { - "l": "9.0", - "x": 1.399, - "y": 15.1464 - }, - { - "l": "9.0", - "x": 1.4182, - "y": 15.1484 - }, - { - "l": "9.0", - "x": 1.4374, - "y": 15.1503 - }, - { - "l": "9.0", - "x": 1.4565, - "y": 15.1521 - }, - { - "l": "9.0", - "x": 1.4757, - "y": 15.1536 - }, - { - "l": "9.0", - "x": 1.4949, - "y": 15.155 - }, - { - "l": "9.0", - "x": 1.514, - "y": 15.1562 - }, - { - "l": "9.0", - "x": 1.5332, - "y": 15.1571 - }, - { - "l": "9.0", - "x": 1.5524, - "y": 15.1579 - }, - { - "l": "9.0", - "x": 1.5715, - "y": 15.1584 - }, - { - "l": "9.0", - "x": 1.5907, - "y": 15.1588 - }, - { - "l": "9.0", - "x": 1.6099, - "y": 15.1591 - }, - { - "l": "9.0", - "x": 1.629, - "y": 15.1592 - }, - { - "l": "9.0", - "x": 1.6482, - "y": 15.1591 - }, - { - "l": "9.0", - "x": 1.6674, - "y": 15.1589 - }, - { - "l": "9.0", - "x": 1.6865, - "y": 15.1585 - }, - { - "l": "9.0", - "x": 1.7057, - "y": 15.158 - }, - { - "l": "9.0", - "x": 1.7248, - "y": 15.1574 - }, - { - "l": "9.0", - "x": 1.744, - "y": 15.1566 - }, - { - "l": "9.0", - "x": 1.7632, - "y": 15.1557 - }, - { - "l": "9.0", - "x": 1.7823, - "y": 15.1546 - }, - { - "l": "9.0", - "x": 1.8015, - "y": 15.1535 - }, - { - "l": "9.0", - "x": 1.8207, - "y": 15.1523 - }, - { - "l": "9.0", - "x": 1.8398, - "y": 15.151 - }, - { - "l": "9.0", - "x": 1.859, - "y": 15.1497 - }, - { - "l": "9.0", - "x": 1.8782, - "y": 15.1483 - }, - { - "l": "9.0", - "x": 1.8973, - "y": 15.1469 - }, - { - "l": "9.0", - "x": 1.9165, - "y": 15.1453 - }, - { - "l": "9.0", - "x": 1.9357, - "y": 15.1436 - }, - { - "l": "9.0", - "x": 1.9548, - "y": 15.1417 - }, - { - "l": "9.0", - "x": 1.974, - "y": 15.1397 - }, - { - "l": "9.0", - "x": 1.9932, - "y": 15.1376 - }, - { - "l": "9.0", - "x": 2.0123, - "y": 15.1354 - }, - { - "l": "9.0", - "x": 2.0957, - "y": 15.1253 - }, - { - "l": "9.0", - "x": 2.179, - "y": 15.1147 - }, - { - "l": "9.0", - "x": 2.2623, - "y": 15.1014 - }, - { - "l": "9.0", - "x": 2.3457, - "y": 15.0869 - }, - { - "l": "9.0", - "x": 2.429, - "y": 15.0727 - }, - { - "l": "9.0", - "x": 2.5123, - "y": 15.0559 - }, - { - "l": "9.0", - "x": 2.5957, - "y": 15.0392 - }, - { - "l": "9.0", - "x": 2.679, - "y": 15.0236 - }, - { - "l": "9.0", - "x": 2.7623, - "y": 15.0062 - }, - { - "l": "9.0", - "x": 2.8457, - "y": 14.9894 - }, - { - "l": "9.0", - "x": 2.929, - "y": 14.9743 - }, - { - "l": "9.0", - "x": 3.0123, - "y": 14.9578 - }, - { - "l": "9.0", - "x": 3.0957, - "y": 14.9424 - }, - { - "l": "9.0", - "x": 3.179, - "y": 14.9287 - }, - { - "l": "9.0", - "x": 3.2623, - "y": 14.914 - }, - { - "l": "9.0", - "x": 3.3457, - "y": 14.9002 - }, - { - "l": "9.0", - "x": 3.429, - "y": 14.888 - }, - { - "l": "9.0", - "x": 3.5123, - "y": 14.8749 - }, - { - "l": "9.0", - "x": 3.5957, - "y": 14.8626 - }, - { - "l": "9.0", - "x": 3.679, - "y": 14.8518 - }, - { - "l": "9.0", - "x": 3.7623, - "y": 14.8401 - }, - { - "l": "9.0", - "x": 3.8457, - "y": 14.8293 - }, - { - "l": "9.0", - "x": 3.929, - "y": 14.8198 - }, - { - "l": "9.0", - "x": 4.0123, - "y": 14.8098 - }, - { - "l": "9.0", - "x": 4.0957, - "y": 14.8005 - }, - { - "l": "9.0", - "x": 4.179, - "y": 14.7924 - }, - { - "l": "9.0", - "x": 4.2623, - "y": 14.7839 - }, - { - "l": "9.0", - "x": 4.3457, - "y": 14.7761 - }, - { - "l": "9.0", - "x": 4.429, - "y": 14.7694 - }, - { - "l": "9.0", - "x": 4.5123, - "y": 14.7625 - }, - { - "l": "9.0", - "x": 4.5957, - "y": 14.7563 - }, - { - "l": "9.0", - "x": 4.679, - "y": 14.7512 - }, - { - "l": "9.0", - "x": 4.7623, - "y": 14.7461 - }, - { - "l": "9.0", - "x": 4.8457, - "y": 14.7418 - }, - { - "l": "9.0", - "x": 4.929, - "y": 14.7385 - }, - { - "l": "9.0", - "x": 5.0123, - "y": 14.7355 - }, - { - "l": "9.0", - "x": 5.0957, - "y": 14.7334 - }, - { - "l": "9.0", - "x": 5.179, - "y": 14.7321 - }, - { - "l": "9.0", - "x": 5.2623, - "y": 14.7314 - }, - { - "l": "9.0", - "x": 5.3457, - "y": 14.7316 - }, - { - "l": "9.0", - "x": 5.429, - "y": 14.7325 - }, - { - "l": "9.0", - "x": 5.5123, - "y": 14.7343 - }, - { - "l": "9.0", - "x": 5.5957, - "y": 14.7367 - }, - { - "l": "9.0", - "x": 5.679, - "y": 14.7396 - }, - { - "l": "9.0", - "x": 5.7623, - "y": 14.7437 - }, - { - "l": "9.0", - "x": 5.8457, - "y": 14.7484 - }, - { - "l": "9.0", - "x": 5.929, - "y": 14.7533 - }, - { - "l": "9.0", - "x": 6.0123, - "y": 14.7598 - }, - { - "l": "9.0", - "x": 6.0957, - "y": 14.7667 - }, - { - "l": "9.0", - "x": 6.179, - "y": 14.7738 - }, - { - "l": "9.0", - "x": 6.2623, - "y": 14.7826 - }, - { - "l": "9.0", - "x": 6.3457, - "y": 14.7919 - }, - { - "l": "9.0", - "x": 6.429, - "y": 14.8011 - }, - { - "l": "9.0", - "x": 6.5123, - "y": 14.8122 - }, - { - "l": "9.0", - "x": 6.5957, - "y": 14.8238 - }, - { - "l": "9.0", - "x": 6.679, - "y": 14.8349 - }, - { - "l": "9.0", - "x": 6.7623, - "y": 14.8483 - }, - { - "l": "9.0", - "x": 6.8457, - "y": 14.8618 - }, - { - "l": "9.0", - "x": 6.929, - "y": 14.8749 - }, - { - "l": "9.0", - "x": 7.0123, - "y": 14.8902 - }, - { - "l": "9.0", - "x": 7.0957, - "y": 14.9057 - }, - { - "l": "9.0", - "x": 7.179, - "y": 14.9204 - }, - { - "l": "9.0", - "x": 7.2623, - "y": 14.9376 - }, - { - "l": "9.0", - "x": 7.3457, - "y": 14.9548 - }, - { - "l": "9.0", - "x": 7.429, - "y": 14.9711 - }, - { - "l": "9.0", - "x": 7.5123, - "y": 14.9899 - }, - { - "l": "9.0", - "x": 7.5957, - "y": 15.0088 - }, - { - "l": "9.0", - "x": 7.679, - "y": 15.0265 - }, - { - "l": "9.0", - "x": 7.7623, - "y": 15.0469 - }, - { - "l": "9.0", - "x": 7.8457, - "y": 15.0673 - }, - { - "l": "9.0", - "x": 7.929, - "y": 15.0863 - }, - { - "l": "9.0", - "x": 8.0123, - "y": 15.1082 - }, - { - "l": "9.0", - "x": 8.0957, - "y": 15.1299 - }, - { - "l": "9.0", - "x": 8.179, - "y": 15.1502 - }, - { - "l": "9.0", - "x": 8.2623, - "y": 15.1734 - }, - { - "l": "9.0", - "x": 8.3457, - "y": 15.1965 - }, - { - "l": "9.0", - "x": 8.429, - "y": 15.2179 - }, - { - "l": "9.0", - "x": 8.5123, - "y": 15.2423 - }, - { - "l": "9.0", - "x": 8.5957, - "y": 15.2666 - }, - { - "l": "9.0", - "x": 8.679, - "y": 15.2891 - }, - { - "l": "9.0", - "x": 8.7623, - "y": 15.3147 - }, - { - "l": "9.0", - "x": 8.8457, - "y": 15.34 - }, - { - "l": "9.0", - "x": 8.929, - "y": 15.3635 - }, - { - "l": "9.0", - "x": 9.0123, - "y": 15.3902 - }, - { - "l": "9.0", - "x": 9.0957, - "y": 15.4166 - }, - { - "l": "9.0", - "x": 9.179, - "y": 15.441 - }, - { - "l": "9.0", - "x": 9.2623, - "y": 15.4686 - }, - { - "l": "9.0", - "x": 9.3457, - "y": 15.496 - }, - { - "l": "9.0", - "x": 9.429, - "y": 15.5213 - }, - { - "l": "9.0", - "x": 9.5123, - "y": 15.5499 - }, - { - "l": "9.0", - "x": 9.5957, - "y": 15.5781 - }, - { - "l": "9.0", - "x": 9.679, - "y": 15.6041 - }, - { - "l": "9.0", - "x": 9.7623, - "y": 15.6336 - }, - { - "l": "9.0", - "x": 9.8457, - "y": 15.6625 - }, - { - "l": "9.0", - "x": 9.929, - "y": 15.6893 - }, - { - "l": "9.0", - "x": 10.0123, - "y": 15.7195 - }, - { - "l": "9.0", - "x": 10.0957, - "y": 15.7492 - }, - { - "l": "9.0", - "x": 10.179, - "y": 15.7767 - }, - { - "l": "9.0", - "x": 10.2623, - "y": 15.8076 - }, - { - "l": "9.0", - "x": 10.3457, - "y": 15.838 - }, - { - "l": "9.0", - "x": 10.429, - "y": 15.8661 - }, - { - "l": "9.0", - "x": 10.5123, - "y": 15.8979 - }, - { - "l": "9.0", - "x": 10.5957, - "y": 15.929 - }, - { - "l": "9.0", - "x": 10.679, - "y": 15.9577 - }, - { - "l": "9.0", - "x": 10.7623, - "y": 15.99 - }, - { - "l": "9.0", - "x": 10.8457, - "y": 16.0218 - }, - { - "l": "9.0", - "x": 10.929, - "y": 16.051 - }, - { - "l": "9.0", - "x": 11.0123, - "y": 16.084 - }, - { - "l": "9.0", - "x": 11.0957, - "y": 16.1164 - }, - { - "l": "9.0", - "x": 11.179, - "y": 16.1461 - }, - { - "l": "9.0", - "x": 11.2623, - "y": 16.1797 - }, - { - "l": "9.0", - "x": 11.3457, - "y": 16.2125 - }, - { - "l": "9.0", - "x": 11.429, - "y": 16.2427 - }, - { - "l": "9.0", - "x": 11.5123, - "y": 16.2767 - }, - { - "l": "9.0", - "x": 11.5957, - "y": 16.31 - }, - { - "l": "9.0", - "x": 11.679, - "y": 16.3406 - }, - { - "l": "9.0", - "x": 11.7623, - "y": 16.375 - }, - { - "l": "9.0", - "x": 11.8457, - "y": 16.4087 - }, - { - "l": "9.0", - "x": 11.929, - "y": 16.4396 - }, - { - "l": "9.0", - "x": 12.0123, - "y": 16.4744 - }, - { - "l": "9.0", - "x": 12.0957, - "y": 16.5084 - }, - { - "l": "9.0", - "x": 12.179, - "y": 16.5396 - }, - { - "l": "9.0", - "x": 12.2623, - "y": 16.5746 - }, - { - "l": "9.0", - "x": 12.3457, - "y": 16.6089 - }, - { - "l": "9.0", - "x": 12.429, - "y": 16.6403 - }, - { - "l": "9.0", - "x": 12.5123, - "y": 16.6757 - }, - { - "l": "9.0", - "x": 12.5957, - "y": 16.7101 - }, - { - "l": "9.0", - "x": 12.679, - "y": 16.7417 - }, - { - "l": "9.0", - "x": 12.7623, - "y": 16.7772 - }, - { - "l": "9.0", - "x": 12.8457, - "y": 16.8118 - }, - { - "l": "9.0", - "x": 12.929, - "y": 16.8434 - }, - { - "l": "9.0", - "x": 13.0123, - "y": 16.879 - }, - { - "l": "9.0", - "x": 13.0957, - "y": 16.9137 - }, - { - "l": "9.0", - "x": 13.179, - "y": 16.9454 - }, - { - "l": "9.0", - "x": 13.2623, - "y": 16.981 - }, - { - "l": "9.0", - "x": 13.3457, - "y": 17.0157 - }, - { - "l": "9.0", - "x": 13.429, - "y": 17.0474 - }, - { - "l": "9.0", - "x": 13.5123, - "y": 17.0829 - }, - { - "l": "9.0", - "x": 13.5957, - "y": 17.1175 - }, - { - "l": "9.0", - "x": 13.679, - "y": 17.1492 - }, - { - "l": "9.0", - "x": 13.7623, - "y": 17.1846 - }, - { - "l": "9.0", - "x": 13.8457, - "y": 17.2191 - }, - { - "l": "9.0", - "x": 13.929, - "y": 17.2506 - }, - { - "l": "9.0", - "x": 14.0123, - "y": 17.2859 - }, - { - "l": "9.0", - "x": 14.0957, - "y": 17.3202 - }, - { - "l": "9.0", - "x": 14.179, - "y": 17.3515 - }, - { - "l": "9.0", - "x": 14.2623, - "y": 17.3866 - }, - { - "l": "9.0", - "x": 14.3457, - "y": 17.4207 - }, - { - "l": "9.0", - "x": 14.429, - "y": 17.4518 - }, - { - "l": "9.0", - "x": 14.5123, - "y": 17.4866 - }, - { - "l": "9.0", - "x": 14.5957, - "y": 17.5205 - }, - { - "l": "9.0", - "x": 14.679, - "y": 17.5513 - }, - { - "l": "9.0", - "x": 14.7623, - "y": 17.5858 - }, - { - "l": "9.0", - "x": 14.8457, - "y": 17.6194 - }, - { - "l": "9.0", - "x": 14.929, - "y": 17.65 - }, - { - "l": "9.0", - "x": 15.0123, - "y": 17.6842 - }, - { - "l": "9.0", - "x": 15.0957, - "y": 17.7174 - }, - { - "l": "9.0", - "x": 15.179, - "y": 17.7477 - }, - { - "l": "9.0", - "x": 15.2623, - "y": 17.7816 - }, - { - "l": "9.0", - "x": 15.3457, - "y": 17.8145 - }, - { - "l": "9.0", - "x": 15.429, - "y": 17.8445 - }, - { - "l": "9.0", - "x": 15.5123, - "y": 17.8781 - }, - { - "l": "9.0", - "x": 15.5957, - "y": 17.9106 - }, - { - "l": "9.0", - "x": 15.679, - "y": 17.9402 - }, - { - "l": "9.0", - "x": 15.7623, - "y": 17.9734 - }, - { - "l": "9.0", - "x": 15.8457, - "y": 18.0056 - }, - { - "l": "9.0", - "x": 15.929, - "y": 18.0349 - }, - { - "l": "9.0", - "x": 16.0123, - "y": 18.0678 - }, - { - "l": "9.0", - "x": 16.0957, - "y": 18.0996 - }, - { - "l": "9.0", - "x": 16.179, - "y": 18.1286 - }, - { - "l": "9.0", - "x": 16.2623, - "y": 18.161 - }, - { - "l": "9.0", - "x": 16.3457, - "y": 18.1925 - }, - { - "l": "9.0", - "x": 16.429, - "y": 18.2211 - }, - { - "l": "9.0", - "x": 16.5123, - "y": 18.2532 - }, - { - "l": "9.0", - "x": 16.5957, - "y": 18.2842 - }, - { - "l": "9.0", - "x": 16.679, - "y": 18.3126 - }, - { - "l": "9.0", - "x": 16.7623, - "y": 18.3442 - }, - { - "l": "9.0", - "x": 16.8457, - "y": 18.3749 - }, - { - "l": "9.0", - "x": 16.929, - "y": 18.4029 - }, - { - "l": "9.0", - "x": 17.0123, - "y": 18.4342 - }, - { - "l": "9.0", - "x": 17.0957, - "y": 18.4644 - }, - { - "l": "9.0", - "x": 17.179, - "y": 18.4921 - }, - { - "l": "9.0", - "x": 17.2623, - "y": 18.523 - }, - { - "l": "9.0", - "x": 17.3457, - "y": 18.5529 - }, - { - "l": "9.0", - "x": 17.429, - "y": 18.5802 - }, - { - "l": "9.0", - "x": 17.5123, - "y": 18.6108 - }, - { - "l": "9.0", - "x": 17.5957, - "y": 18.6403 - }, - { - "l": "9.0", - "x": 17.679, - "y": 18.6673 - }, - { - "l": "9.0", - "x": 17.7623, - "y": 18.6975 - }, - { - "l": "9.0", - "x": 17.8457, - "y": 18.7267 - }, - { - "l": "9.0", - "x": 17.929, - "y": 18.7533 - }, - { - "l": "9.0", - "x": 18.0123, - "y": 18.783 - }, - { - "l": "9.0", - "x": 18.0957, - "y": 18.8119 - }, - { - "l": "9.0", - "x": 18.179, - "y": 18.8382 - }, - { - "l": "9.0", - "x": 18.2623, - "y": 18.8677 - }, - { - "l": "9.0", - "x": 18.3457, - "y": 18.8961 - }, - { - "l": "9.0", - "x": 18.429, - "y": 18.9221 - }, - { - "l": "9.0", - "x": 18.5123, - "y": 18.9512 - }, - { - "l": "9.0", - "x": 18.5957, - "y": 18.9794 - }, - { - "l": "9.0", - "x": 18.679, - "y": 19.0051 - }, - { - "l": "9.0", - "x": 18.7623, - "y": 19.0338 - }, - { - "l": "9.0", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 0.0, - "y": 11.2188 - }, - { - "l": "25.0", - "x": 0.0192, - "y": 11.5127 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 11.8074 - }, - { - "l": "25.0", - "x": 0.0575, - "y": 12.1028 - }, - { - "l": "25.0", - "x": 0.0767, - "y": 12.399 - }, - { - "l": "25.0", - "x": 0.0958, - "y": 12.6281 - }, - { - "l": "25.0", - "x": 0.115, - "y": 12.8222 - }, - { - "l": "25.0", - "x": 0.1342, - "y": 12.9982 - }, - { - "l": "25.0", - "x": 0.1533, - "y": 13.1607 - }, - { - "l": "25.0", - "x": 0.1725, - "y": 13.3171 - }, - { - "l": "25.0", - "x": 0.1916, - "y": 13.4836 - }, - { - "l": "25.0", - "x": 0.2108, - "y": 13.6443 - }, - { - "l": "25.0", - "x": 0.23, - "y": 13.7986 - }, - { - "l": "25.0", - "x": 0.2491, - "y": 13.9458 - }, - { - "l": "25.0", - "x": 0.2683, - "y": 14.0843 - }, - { - "l": "25.0", - "x": 0.2875, - "y": 14.2149 - }, - { - "l": "25.0", - "x": 0.3066, - "y": 14.3376 - }, - { - "l": "25.0", - "x": 0.3258, - "y": 14.4521 - }, - { - "l": "25.0", - "x": 0.345, - "y": 14.5545 - }, - { - "l": "25.0", - "x": 0.3641, - "y": 14.6484 - }, - { - "l": "25.0", - "x": 0.3833, - "y": 14.7361 - }, - { - "l": "25.0", - "x": 0.4025, - "y": 14.819 - }, - { - "l": "25.0", - "x": 0.4216, - "y": 14.8992 - }, - { - "l": "25.0", - "x": 0.4408, - "y": 14.9823 - }, - { - "l": "25.0", - "x": 0.46, - "y": 15.0625 - }, - { - "l": "25.0", - "x": 0.4791, - "y": 15.1395 - }, - { - "l": "25.0", - "x": 0.4983, - "y": 15.2127 - }, - { - "l": "25.0", - "x": 0.5175, - "y": 15.2807 - }, - { - "l": "25.0", - "x": 0.5366, - "y": 15.3443 - }, - { - "l": "25.0", - "x": 0.5558, - "y": 15.4036 - }, - { - "l": "25.0", - "x": 0.5749, - "y": 15.4585 - }, - { - "l": "25.0", - "x": 0.5941, - "y": 15.5073 - }, - { - "l": "25.0", - "x": 0.6133, - "y": 15.5515 - }, - { - "l": "25.0", - "x": 0.6324, - "y": 15.5923 - }, - { - "l": "25.0", - "x": 0.6516, - "y": 15.6304 - }, - { - "l": "25.0", - "x": 0.6708, - "y": 15.6667 - }, - { - "l": "25.0", - "x": 0.6899, - "y": 15.7041 - }, - { - "l": "25.0", - "x": 0.7091, - "y": 15.7398 - }, - { - "l": "25.0", - "x": 0.7283, - "y": 15.7738 - }, - { - "l": "25.0", - "x": 0.7474, - "y": 15.8059 - }, - { - "l": "25.0", - "x": 0.7666, - "y": 15.8355 - }, - { - "l": "25.0", - "x": 0.7858, - "y": 15.8629 - }, - { - "l": "25.0", - "x": 0.8049, - "y": 15.8882 - }, - { - "l": "25.0", - "x": 0.8241, - "y": 15.9116 - }, - { - "l": "25.0", - "x": 0.8433, - "y": 15.9324 - }, - { - "l": "25.0", - "x": 0.8624, - "y": 15.9511 - }, - { - "l": "25.0", - "x": 0.8816, - "y": 15.9683 - }, - { - "l": "25.0", - "x": 0.9008, - "y": 15.9843 - }, - { - "l": "25.0", - "x": 0.9199, - "y": 15.9994 - }, - { - "l": "25.0", - "x": 0.9391, - "y": 16.015 - }, - { - "l": "25.0", - "x": 0.9582, - "y": 16.03 - }, - { - "l": "25.0", - "x": 0.9774, - "y": 16.0442 - }, - { - "l": "25.0", - "x": 0.9966, - "y": 16.0576 - }, - { - "l": "25.0", - "x": 1.0157, - "y": 16.0699 - }, - { - "l": "25.0", - "x": 1.0349, - "y": 16.0812 - }, - { - "l": "25.0", - "x": 1.0541, - "y": 16.0917 - }, - { - "l": "25.0", - "x": 1.0732, - "y": 16.1014 - }, - { - "l": "25.0", - "x": 1.0924, - "y": 16.1099 - }, - { - "l": "25.0", - "x": 1.1116, - "y": 16.1175 - }, - { - "l": "25.0", - "x": 1.1307, - "y": 16.1244 - }, - { - "l": "25.0", - "x": 1.1499, - "y": 16.1308 - }, - { - "l": "25.0", - "x": 1.1691, - "y": 16.1368 - }, - { - "l": "25.0", - "x": 1.1882, - "y": 16.1428 - }, - { - "l": "25.0", - "x": 1.2074, - "y": 16.1486 - }, - { - "l": "25.0", - "x": 1.2266, - "y": 16.154 - }, - { - "l": "25.0", - "x": 1.2457, - "y": 16.159 - }, - { - "l": "25.0", - "x": 1.2649, - "y": 16.1635 - }, - { - "l": "25.0", - "x": 1.2841, - "y": 16.1676 - }, - { - "l": "25.0", - "x": 1.3032, - "y": 16.1713 - }, - { - "l": "25.0", - "x": 1.3224, - "y": 16.1746 - }, - { - "l": "25.0", - "x": 1.3415, - "y": 16.1774 - }, - { - "l": "25.0", - "x": 1.3607, - "y": 16.1799 - }, - { - "l": "25.0", - "x": 1.3799, - "y": 16.1822 - }, - { - "l": "25.0", - "x": 1.399, - "y": 16.1841 - }, - { - "l": "25.0", - "x": 1.4182, - "y": 16.1858 - }, - { - "l": "25.0", - "x": 1.4374, - "y": 16.1875 - }, - { - "l": "25.0", - "x": 1.4565, - "y": 16.1891 - }, - { - "l": "25.0", - "x": 1.4757, - "y": 16.1904 - }, - { - "l": "25.0", - "x": 1.4949, - "y": 16.1916 - }, - { - "l": "25.0", - "x": 1.514, - "y": 16.1925 - }, - { - "l": "25.0", - "x": 1.5332, - "y": 16.1932 - }, - { - "l": "25.0", - "x": 1.5524, - "y": 16.1938 - }, - { - "l": "25.0", - "x": 1.5715, - "y": 16.1942 - }, - { - "l": "25.0", - "x": 1.5907, - "y": 16.1945 - }, - { - "l": "25.0", - "x": 1.6099, - "y": 16.1946 - }, - { - "l": "25.0", - "x": 1.629, - "y": 16.1945 - }, - { - "l": "25.0", - "x": 1.6482, - "y": 16.1943 - }, - { - "l": "25.0", - "x": 1.6674, - "y": 16.194 - }, - { - "l": "25.0", - "x": 1.6865, - "y": 16.1935 - }, - { - "l": "25.0", - "x": 1.7057, - "y": 16.1929 - }, - { - "l": "25.0", - "x": 1.7248, - "y": 16.1922 - }, - { - "l": "25.0", - "x": 1.744, - "y": 16.1914 - }, - { - "l": "25.0", - "x": 1.7632, - "y": 16.1904 - }, - { - "l": "25.0", - "x": 1.7823, - "y": 16.1893 - }, - { - "l": "25.0", - "x": 1.8015, - "y": 16.1881 - }, - { - "l": "25.0", - "x": 1.8207, - "y": 16.1868 - }, - { - "l": "25.0", - "x": 1.8398, - "y": 16.1855 - }, - { - "l": "25.0", - "x": 1.859, - "y": 16.1842 - }, - { - "l": "25.0", - "x": 1.8782, - "y": 16.1828 - }, - { - "l": "25.0", - "x": 1.8973, - "y": 16.1814 - }, - { - "l": "25.0", - "x": 1.9165, - "y": 16.1798 - }, - { - "l": "25.0", - "x": 1.9357, - "y": 16.1781 - }, - { - "l": "25.0", - "x": 1.9548, - "y": 16.1763 - }, - { - "l": "25.0", - "x": 1.974, - "y": 16.1743 - }, - { - "l": "25.0", - "x": 1.9932, - "y": 16.1723 - }, - { - "l": "25.0", - "x": 2.0123, - "y": 16.1702 - }, - { - "l": "25.0", - "x": 2.0957, - "y": 16.1604 - }, - { - "l": "25.0", - "x": 2.179, - "y": 16.1502 - }, - { - "l": "25.0", - "x": 2.2623, - "y": 16.1375 - }, - { - "l": "25.0", - "x": 2.3457, - "y": 16.1238 - }, - { - "l": "25.0", - "x": 2.429, - "y": 16.1103 - }, - { - "l": "25.0", - "x": 2.5123, - "y": 16.0944 - }, - { - "l": "25.0", - "x": 2.5957, - "y": 16.0786 - }, - { - "l": "25.0", - "x": 2.679, - "y": 16.0639 - }, - { - "l": "25.0", - "x": 2.7623, - "y": 16.0477 - }, - { - "l": "25.0", - "x": 2.8457, - "y": 16.032 - }, - { - "l": "25.0", - "x": 2.929, - "y": 16.018 - }, - { - "l": "25.0", - "x": 3.0123, - "y": 16.0029 - }, - { - "l": "25.0", - "x": 3.0957, - "y": 15.9888 - }, - { - "l": "25.0", - "x": 3.179, - "y": 15.9764 - }, - { - "l": "25.0", - "x": 3.2623, - "y": 15.9633 - }, - { - "l": "25.0", - "x": 3.3457, - "y": 15.951 - }, - { - "l": "25.0", - "x": 3.429, - "y": 15.9402 - }, - { - "l": "25.0", - "x": 3.5123, - "y": 15.9287 - }, - { - "l": "25.0", - "x": 3.5957, - "y": 15.918 - }, - { - "l": "25.0", - "x": 3.679, - "y": 15.9089 - }, - { - "l": "25.0", - "x": 3.7623, - "y": 15.899 - }, - { - "l": "25.0", - "x": 3.8457, - "y": 15.89 - }, - { - "l": "25.0", - "x": 3.929, - "y": 15.8823 - }, - { - "l": "25.0", - "x": 4.0123, - "y": 15.8743 - }, - { - "l": "25.0", - "x": 4.0957, - "y": 15.867 - }, - { - "l": "25.0", - "x": 4.179, - "y": 15.8609 - }, - { - "l": "25.0", - "x": 4.2623, - "y": 15.8546 - }, - { - "l": "25.0", - "x": 4.3457, - "y": 15.8491 - }, - { - "l": "25.0", - "x": 4.429, - "y": 15.8445 - }, - { - "l": "25.0", - "x": 4.5123, - "y": 15.84 - }, - { - "l": "25.0", - "x": 4.5957, - "y": 15.8363 - }, - { - "l": "25.0", - "x": 4.679, - "y": 15.8335 - }, - { - "l": "25.0", - "x": 4.7623, - "y": 15.8311 - }, - { - "l": "25.0", - "x": 4.8457, - "y": 15.8295 - }, - { - "l": "25.0", - "x": 4.929, - "y": 15.8287 - }, - { - "l": "25.0", - "x": 5.0123, - "y": 15.8286 - }, - { - "l": "25.0", - "x": 5.0957, - "y": 15.8294 - }, - { - "l": "25.0", - "x": 5.179, - "y": 15.8309 - }, - { - "l": "25.0", - "x": 5.2623, - "y": 15.8334 - }, - { - "l": "25.0", - "x": 5.3457, - "y": 15.8367 - }, - { - "l": "25.0", - "x": 5.429, - "y": 15.8405 - }, - { - "l": "25.0", - "x": 5.5123, - "y": 15.8457 - }, - { - "l": "25.0", - "x": 5.5957, - "y": 15.8515 - }, - { - "l": "25.0", - "x": 5.679, - "y": 15.8576 - }, - { - "l": "25.0", - "x": 5.7623, - "y": 15.8653 - }, - { - "l": "25.0", - "x": 5.8457, - "y": 15.8736 - }, - { - "l": "25.0", - "x": 5.929, - "y": 15.8819 - }, - { - "l": "25.0", - "x": 6.0123, - "y": 15.8922 - }, - { - "l": "25.0", - "x": 6.0957, - "y": 15.903 - }, - { - "l": "25.0", - "x": 6.179, - "y": 15.9137 - }, - { - "l": "25.0", - "x": 6.2623, - "y": 15.9265 - }, - { - "l": "25.0", - "x": 6.3457, - "y": 15.9399 - }, - { - "l": "25.0", - "x": 6.429, - "y": 15.9528 - }, - { - "l": "25.0", - "x": 6.5123, - "y": 15.9683 - }, - { - "l": "25.0", - "x": 6.5957, - "y": 15.9841 - }, - { - "l": "25.0", - "x": 6.679, - "y": 15.9992 - }, - { - "l": "25.0", - "x": 6.7623, - "y": 16.017 - }, - { - "l": "25.0", - "x": 6.8457, - "y": 16.0351 - }, - { - "l": "25.0", - "x": 6.929, - "y": 16.0523 - }, - { - "l": "25.0", - "x": 7.0123, - "y": 16.0723 - }, - { - "l": "25.0", - "x": 7.0957, - "y": 16.0924 - }, - { - "l": "25.0", - "x": 7.179, - "y": 16.1114 - }, - { - "l": "25.0", - "x": 7.2623, - "y": 16.1333 - }, - { - "l": "25.0", - "x": 7.3457, - "y": 16.1553 - }, - { - "l": "25.0", - "x": 7.429, - "y": 16.1759 - }, - { - "l": "25.0", - "x": 7.5123, - "y": 16.1997 - }, - { - "l": "25.0", - "x": 7.5957, - "y": 16.2235 - }, - { - "l": "25.0", - "x": 7.679, - "y": 16.2457 - }, - { - "l": "25.0", - "x": 7.7623, - "y": 16.2712 - }, - { - "l": "25.0", - "x": 7.8457, - "y": 16.2966 - }, - { - "l": "25.0", - "x": 7.929, - "y": 16.3202 - }, - { - "l": "25.0", - "x": 8.0123, - "y": 16.3472 - }, - { - "l": "25.0", - "x": 8.0957, - "y": 16.374 - }, - { - "l": "25.0", - "x": 8.179, - "y": 16.3989 - }, - { - "l": "25.0", - "x": 8.2623, - "y": 16.4274 - }, - { - "l": "25.0", - "x": 8.3457, - "y": 16.4556 - }, - { - "l": "25.0", - "x": 8.429, - "y": 16.4817 - }, - { - "l": "25.0", - "x": 8.5123, - "y": 16.5115 - }, - { - "l": "25.0", - "x": 8.5957, - "y": 16.5409 - }, - { - "l": "25.0", - "x": 8.679, - "y": 16.5682 - }, - { - "l": "25.0", - "x": 8.7623, - "y": 16.5991 - }, - { - "l": "25.0", - "x": 8.8457, - "y": 16.6296 - }, - { - "l": "25.0", - "x": 8.929, - "y": 16.6579 - }, - { - "l": "25.0", - "x": 9.0123, - "y": 16.69 - }, - { - "l": "25.0", - "x": 9.0957, - "y": 16.7216 - }, - { - "l": "25.0", - "x": 9.179, - "y": 16.7508 - }, - { - "l": "25.0", - "x": 9.2623, - "y": 16.7839 - }, - { - "l": "25.0", - "x": 9.3457, - "y": 16.8165 - }, - { - "l": "25.0", - "x": 9.429, - "y": 16.8466 - }, - { - "l": "25.0", - "x": 9.5123, - "y": 16.8807 - }, - { - "l": "25.0", - "x": 9.5957, - "y": 16.9142 - }, - { - "l": "25.0", - "x": 9.679, - "y": 16.945 - }, - { - "l": "25.0", - "x": 9.7623, - "y": 16.9799 - }, - { - "l": "25.0", - "x": 9.8457, - "y": 17.0142 - }, - { - "l": "25.0", - "x": 9.929, - "y": 17.0457 - }, - { - "l": "25.0", - "x": 10.0123, - "y": 17.0814 - }, - { - "l": "25.0", - "x": 10.0957, - "y": 17.1164 - }, - { - "l": "25.0", - "x": 10.179, - "y": 17.1487 - }, - { - "l": "25.0", - "x": 10.2623, - "y": 17.1851 - }, - { - "l": "25.0", - "x": 10.3457, - "y": 17.2208 - }, - { - "l": "25.0", - "x": 10.429, - "y": 17.2537 - }, - { - "l": "25.0", - "x": 10.5123, - "y": 17.2909 - }, - { - "l": "25.0", - "x": 10.5957, - "y": 17.3273 - }, - { - "l": "25.0", - "x": 10.679, - "y": 17.3608 - }, - { - "l": "25.0", - "x": 10.7623, - "y": 17.3986 - }, - { - "l": "25.0", - "x": 10.8457, - "y": 17.4356 - }, - { - "l": "25.0", - "x": 10.929, - "y": 17.4697 - }, - { - "l": "25.0", - "x": 11.0123, - "y": 17.5081 - }, - { - "l": "25.0", - "x": 11.0957, - "y": 17.5458 - }, - { - "l": "25.0", - "x": 11.179, - "y": 17.5803 - }, - { - "l": "25.0", - "x": 11.2623, - "y": 17.6193 - }, - { - "l": "25.0", - "x": 11.3457, - "y": 17.6574 - }, - { - "l": "25.0", - "x": 11.429, - "y": 17.6924 - }, - { - "l": "25.0", - "x": 11.5123, - "y": 17.7318 - }, - { - "l": "25.0", - "x": 11.5957, - "y": 17.7704 - }, - { - "l": "25.0", - "x": 11.679, - "y": 17.8058 - }, - { - "l": "25.0", - "x": 11.7623, - "y": 17.8456 - }, - { - "l": "25.0", - "x": 11.8457, - "y": 17.8845 - }, - { - "l": "25.0", - "x": 11.929, - "y": 17.9201 - }, - { - "l": "25.0", - "x": 12.0123, - "y": 17.9603 - }, - { - "l": "25.0", - "x": 12.0957, - "y": 17.9996 - }, - { - "l": "25.0", - "x": 12.179, - "y": 18.0355 - }, - { - "l": "25.0", - "x": 12.2623, - "y": 18.0759 - }, - { - "l": "25.0", - "x": 12.3457, - "y": 18.1154 - }, - { - "l": "25.0", - "x": 12.429, - "y": 18.1515 - }, - { - "l": "25.0", - "x": 12.5123, - "y": 18.1922 - }, - { - "l": "25.0", - "x": 12.5957, - "y": 18.2318 - }, - { - "l": "25.0", - "x": 12.679, - "y": 18.2682 - }, - { - "l": "25.0", - "x": 12.7623, - "y": 18.3089 - }, - { - "l": "25.0", - "x": 12.8457, - "y": 18.3487 - }, - { - "l": "25.0", - "x": 12.929, - "y": 18.385 - }, - { - "l": "25.0", - "x": 13.0123, - "y": 18.4259 - }, - { - "l": "25.0", - "x": 13.0957, - "y": 18.4657 - }, - { - "l": "25.0", - "x": 13.179, - "y": 18.502 - }, - { - "l": "25.0", - "x": 13.2623, - "y": 18.5429 - }, - { - "l": "25.0", - "x": 13.3457, - "y": 18.5826 - }, - { - "l": "25.0", - "x": 13.429, - "y": 18.619 - }, - { - "l": "25.0", - "x": 13.5123, - "y": 18.6598 - }, - { - "l": "25.0", - "x": 13.5957, - "y": 18.6994 - }, - { - "l": "25.0", - "x": 13.679, - "y": 18.7357 - }, - { - "l": "25.0", - "x": 13.7623, - "y": 18.7763 - }, - { - "l": "25.0", - "x": 13.8457, - "y": 18.8158 - }, - { - "l": "25.0", - "x": 13.929, - "y": 18.8518 - }, - { - "l": "25.0", - "x": 14.0123, - "y": 18.8923 - }, - { - "l": "25.0", - "x": 14.0957, - "y": 18.9315 - }, - { - "l": "25.0", - "x": 14.179, - "y": 18.9674 - }, - { - "l": "25.0", - "x": 14.2623, - "y": 19.0076 - }, - { - "l": "25.0", - "x": 14.3457, - "y": 19.0465 - }, - { - "l": "25.0", - "x": 14.429, - "y": 19.0822 - }, - { - "l": "25.0", - "x": 14.5123, - "y": 19.122 - }, - { - "l": "25.0", - "x": 14.5957, - "y": 19.1607 - }, - { - "l": "25.0", - "x": 14.679, - "y": 19.196 - }, - { - "l": "25.0", - "x": 14.7623, - "y": 19.2355 - }, - { - "l": "25.0", - "x": 14.8457, - "y": 19.2739 - }, - { - "l": "25.0", - "x": 14.929, - "y": 19.3089 - }, - { - "l": "25.0", - "x": 15.0123, - "y": 19.348 - }, - { - "l": "25.0", - "x": 15.0957, - "y": 19.3861 - }, - { - "l": "25.0", - "x": 15.179, - "y": 19.4207 - }, - { - "l": "25.0", - "x": 15.2623, - "y": 19.4595 - }, - { - "l": "25.0", - "x": 15.3457, - "y": 19.4971 - }, - { - "l": "25.0", - "x": 15.429, - "y": 19.5314 - }, - { - "l": "25.0", - "x": 15.5123, - "y": 19.5698 - }, - { - "l": "25.0", - "x": 15.5957, - "y": 19.607 - }, - { - "l": "25.0", - "x": 15.679, - "y": 19.6409 - }, - { - "l": "25.0", - "x": 15.7623, - "y": 19.6789 - }, - { - "l": "25.0", - "x": 15.8457, - "y": 19.7157 - }, - { - "l": "25.0", - "x": 15.929, - "y": 19.7493 - }, - { - "l": "25.0", - "x": 16.0123, - "y": 19.7868 - }, - { - "l": "25.0", - "x": 16.0957, - "y": 19.8232 - }, - { - "l": "25.0", - "x": 16.179, - "y": 19.8564 - }, - { - "l": "25.0", - "x": 16.2623, - "y": 19.8935 - }, - { - "l": "25.0", - "x": 16.3457, - "y": 19.9295 - }, - { - "l": "25.0", - "x": 16.429, - "y": 19.9623 - }, - { - "l": "25.0", - "x": 16.5123, - "y": 19.9989 - }, - { - "l": "25.0", - "x": 16.5957, - "y": 20.0344 - }, - { - "l": "25.0", - "x": 16.679, - "y": 20.0669 - }, - { - "l": "25.0", - "x": 16.7623, - "y": 20.103 - }, - { - "l": "25.0", - "x": 16.8457, - "y": 20.1382 - }, - { - "l": "25.0", - "x": 16.929, - "y": 20.1702 - }, - { - "l": "25.0", - "x": 17.0123, - "y": 20.206 - }, - { - "l": "25.0", - "x": 17.0957, - "y": 20.2407 - }, - { - "l": "25.0", - "x": 17.179, - "y": 20.2723 - }, - { - "l": "25.0", - "x": 17.2623, - "y": 20.3077 - }, - { - "l": "25.0", - "x": 17.3457, - "y": 20.3419 - }, - { - "l": "25.0", - "x": 17.429, - "y": 20.3732 - }, - { - "l": "25.0", - "x": 17.5123, - "y": 20.4081 - }, - { - "l": "25.0", - "x": 17.5957, - "y": 20.442 - }, - { - "l": "25.0", - "x": 17.679, - "y": 20.4729 - }, - { - "l": "25.0", - "x": 17.7623, - "y": 20.5074 - }, - { - "l": "25.0", - "x": 17.8457, - "y": 20.5409 - }, - { - "l": "25.0", - "x": 17.929, - "y": 20.5713 - }, - { - "l": "25.0", - "x": 18.0123, - "y": 20.6054 - }, - { - "l": "25.0", - "x": 18.0957, - "y": 20.6385 - }, - { - "l": "25.0", - "x": 18.179, - "y": 20.6686 - }, - { - "l": "25.0", - "x": 18.2623, - "y": 20.7023 - }, - { - "l": "25.0", - "x": 18.3457, - "y": 20.7349 - }, - { - "l": "25.0", - "x": 18.429, - "y": 20.7647 - }, - { - "l": "25.0", - "x": 18.5123, - "y": 20.798 - }, - { - "l": "25.0", - "x": 18.5957, - "y": 20.8303 - }, - { - "l": "25.0", - "x": 18.679, - "y": 20.8598 - }, - { - "l": "25.0", - "x": 18.7623, - "y": 20.8926 - }, - { - "l": "25.0", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 0.0, - "y": 12.1816 - }, - { - "l": "50.0", - "x": 0.0192, - "y": 12.4832 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 12.7848 - }, - { - "l": "50.0", - "x": 0.0575, - "y": 13.0864 - }, - { - "l": "50.0", - "x": 0.0767, - "y": 13.388 - }, - { - "l": "50.0", - "x": 0.0958, - "y": 13.6216 - }, - { - "l": "50.0", - "x": 0.115, - "y": 13.8199 - }, - { - "l": "50.0", - "x": 0.1342, - "y": 13.9997 - }, - { - "l": "50.0", - "x": 0.1533, - "y": 14.1661 - }, - { - "l": "50.0", - "x": 0.1725, - "y": 14.3263 - }, - { - "l": "50.0", - "x": 0.1916, - "y": 14.4969 - }, - { - "l": "50.0", - "x": 0.2108, - "y": 14.6616 - }, - { - "l": "50.0", - "x": 0.23, - "y": 14.8198 - }, - { - "l": "50.0", - "x": 0.2491, - "y": 14.9709 - }, - { - "l": "50.0", - "x": 0.2683, - "y": 15.1131 - }, - { - "l": "50.0", - "x": 0.2875, - "y": 15.2472 - }, - { - "l": "50.0", - "x": 0.3066, - "y": 15.3732 - }, - { - "l": "50.0", - "x": 0.3258, - "y": 15.4909 - }, - { - "l": "50.0", - "x": 0.345, - "y": 15.596 - }, - { - "l": "50.0", - "x": 0.3641, - "y": 15.6923 - }, - { - "l": "50.0", - "x": 0.3833, - "y": 15.7823 - }, - { - "l": "50.0", - "x": 0.4025, - "y": 15.8674 - }, - { - "l": "50.0", - "x": 0.4216, - "y": 15.9497 - }, - { - "l": "50.0", - "x": 0.4408, - "y": 16.0349 - }, - { - "l": "50.0", - "x": 0.46, - "y": 16.1171 - }, - { - "l": "50.0", - "x": 0.4791, - "y": 16.196 - }, - { - "l": "50.0", - "x": 0.4983, - "y": 16.2709 - }, - { - "l": "50.0", - "x": 0.5175, - "y": 16.3405 - }, - { - "l": "50.0", - "x": 0.5366, - "y": 16.4055 - }, - { - "l": "50.0", - "x": 0.5558, - "y": 16.466 - }, - { - "l": "50.0", - "x": 0.5749, - "y": 16.5221 - }, - { - "l": "50.0", - "x": 0.5941, - "y": 16.5718 - }, - { - "l": "50.0", - "x": 0.6133, - "y": 16.6168 - }, - { - "l": "50.0", - "x": 0.6324, - "y": 16.6584 - }, - { - "l": "50.0", - "x": 0.6516, - "y": 16.6971 - }, - { - "l": "50.0", - "x": 0.6708, - "y": 16.734 - }, - { - "l": "50.0", - "x": 0.6899, - "y": 16.7719 - }, - { - "l": "50.0", - "x": 0.7091, - "y": 16.8081 - }, - { - "l": "50.0", - "x": 0.7283, - "y": 16.8425 - }, - { - "l": "50.0", - "x": 0.7474, - "y": 16.8749 - }, - { - "l": "50.0", - "x": 0.7666, - "y": 16.9047 - }, - { - "l": "50.0", - "x": 0.7858, - "y": 16.9324 - }, - { - "l": "50.0", - "x": 0.8049, - "y": 16.9579 - }, - { - "l": "50.0", - "x": 0.8241, - "y": 16.9814 - }, - { - "l": "50.0", - "x": 0.8433, - "y": 17.0022 - }, - { - "l": "50.0", - "x": 0.8624, - "y": 17.021 - }, - { - "l": "50.0", - "x": 0.8816, - "y": 17.0382 - }, - { - "l": "50.0", - "x": 0.9008, - "y": 17.0542 - }, - { - "l": "50.0", - "x": 0.9199, - "y": 17.0693 - }, - { - "l": "50.0", - "x": 0.9391, - "y": 17.085 - }, - { - "l": "50.0", - "x": 0.9582, - "y": 17.0999 - }, - { - "l": "50.0", - "x": 0.9774, - "y": 17.114 - }, - { - "l": "50.0", - "x": 0.9966, - "y": 17.1273 - }, - { - "l": "50.0", - "x": 1.0157, - "y": 17.1395 - }, - { - "l": "50.0", - "x": 1.0349, - "y": 17.1508 - }, - { - "l": "50.0", - "x": 1.0541, - "y": 17.1612 - }, - { - "l": "50.0", - "x": 1.0732, - "y": 17.1707 - }, - { - "l": "50.0", - "x": 1.0924, - "y": 17.1792 - }, - { - "l": "50.0", - "x": 1.1116, - "y": 17.1867 - }, - { - "l": "50.0", - "x": 1.1307, - "y": 17.1935 - }, - { - "l": "50.0", - "x": 1.1499, - "y": 17.1998 - }, - { - "l": "50.0", - "x": 1.1691, - "y": 17.2056 - }, - { - "l": "50.0", - "x": 1.1882, - "y": 17.2116 - }, - { - "l": "50.0", - "x": 1.2074, - "y": 17.2172 - }, - { - "l": "50.0", - "x": 1.2266, - "y": 17.2225 - }, - { - "l": "50.0", - "x": 1.2457, - "y": 17.2274 - }, - { - "l": "50.0", - "x": 1.2649, - "y": 17.2318 - }, - { - "l": "50.0", - "x": 1.2841, - "y": 17.2357 - }, - { - "l": "50.0", - "x": 1.3032, - "y": 17.2393 - }, - { - "l": "50.0", - "x": 1.3224, - "y": 17.2425 - }, - { - "l": "50.0", - "x": 1.3415, - "y": 17.2453 - }, - { - "l": "50.0", - "x": 1.3607, - "y": 17.2478 - }, - { - "l": "50.0", - "x": 1.3799, - "y": 17.2499 - }, - { - "l": "50.0", - "x": 1.399, - "y": 17.2518 - }, - { - "l": "50.0", - "x": 1.4182, - "y": 17.2535 - }, - { - "l": "50.0", - "x": 1.4374, - "y": 17.2552 - }, - { - "l": "50.0", - "x": 1.4565, - "y": 17.2567 - }, - { - "l": "50.0", - "x": 1.4757, - "y": 17.2581 - }, - { - "l": "50.0", - "x": 1.4949, - "y": 17.2592 - }, - { - "l": "50.0", - "x": 1.514, - "y": 17.2602 - }, - { - "l": "50.0", - "x": 1.5332, - "y": 17.261 - }, - { - "l": "50.0", - "x": 1.5524, - "y": 17.2616 - }, - { - "l": "50.0", - "x": 1.5715, - "y": 17.262 - }, - { - "l": "50.0", - "x": 1.5907, - "y": 17.2624 - }, - { - "l": "50.0", - "x": 1.6099, - "y": 17.2625 - }, - { - "l": "50.0", - "x": 1.629, - "y": 17.2626 - }, - { - "l": "50.0", - "x": 1.6482, - "y": 17.2625 - }, - { - "l": "50.0", - "x": 1.6674, - "y": 17.2622 - }, - { - "l": "50.0", - "x": 1.6865, - "y": 17.2619 - }, - { - "l": "50.0", - "x": 1.7057, - "y": 17.2615 - }, - { - "l": "50.0", - "x": 1.7248, - "y": 17.2609 - }, - { - "l": "50.0", - "x": 1.744, - "y": 17.2602 - }, - { - "l": "50.0", - "x": 1.7632, - "y": 17.2594 - }, - { - "l": "50.0", - "x": 1.7823, - "y": 17.2585 - }, - { - "l": "50.0", - "x": 1.8015, - "y": 17.2576 - }, - { - "l": "50.0", - "x": 1.8207, - "y": 17.2565 - }, - { - "l": "50.0", - "x": 1.8398, - "y": 17.2555 - }, - { - "l": "50.0", - "x": 1.859, - "y": 17.2544 - }, - { - "l": "50.0", - "x": 1.8782, - "y": 17.2533 - }, - { - "l": "50.0", - "x": 1.8973, - "y": 17.252 - }, - { - "l": "50.0", - "x": 1.9165, - "y": 17.2507 - }, - { - "l": "50.0", - "x": 1.9357, - "y": 17.2493 - }, - { - "l": "50.0", - "x": 1.9548, - "y": 17.2478 - }, - { - "l": "50.0", - "x": 1.974, - "y": 17.2462 - }, - { - "l": "50.0", - "x": 1.9932, - "y": 17.2445 - }, - { - "l": "50.0", - "x": 2.0123, - "y": 17.2428 - }, - { - "l": "50.0", - "x": 2.0957, - "y": 17.2346 - }, - { - "l": "50.0", - "x": 2.179, - "y": 17.226 - }, - { - "l": "50.0", - "x": 2.2623, - "y": 17.2153 - }, - { - "l": "50.0", - "x": 2.3457, - "y": 17.2036 - }, - { - "l": "50.0", - "x": 2.429, - "y": 17.1921 - }, - { - "l": "50.0", - "x": 2.5123, - "y": 17.1786 - }, - { - "l": "50.0", - "x": 2.5957, - "y": 17.1652 - }, - { - "l": "50.0", - "x": 2.679, - "y": 17.1528 - }, - { - "l": "50.0", - "x": 2.7623, - "y": 17.1392 - }, - { - "l": "50.0", - "x": 2.8457, - "y": 17.1262 - }, - { - "l": "50.0", - "x": 2.929, - "y": 17.1148 - }, - { - "l": "50.0", - "x": 3.0123, - "y": 17.1026 - }, - { - "l": "50.0", - "x": 3.0957, - "y": 17.0915 - }, - { - "l": "50.0", - "x": 3.179, - "y": 17.0819 - }, - { - "l": "50.0", - "x": 3.2623, - "y": 17.072 - }, - { - "l": "50.0", - "x": 3.3457, - "y": 17.0629 - }, - { - "l": "50.0", - "x": 3.429, - "y": 17.0551 - }, - { - "l": "50.0", - "x": 3.5123, - "y": 17.047 - }, - { - "l": "50.0", - "x": 3.5957, - "y": 17.0398 - }, - { - "l": "50.0", - "x": 3.679, - "y": 17.0338 - }, - { - "l": "50.0", - "x": 3.7623, - "y": 17.0276 - }, - { - "l": "50.0", - "x": 3.8457, - "y": 17.0223 - }, - { - "l": "50.0", - "x": 3.929, - "y": 17.018 - }, - { - "l": "50.0", - "x": 4.0123, - "y": 17.0139 - }, - { - "l": "50.0", - "x": 4.0957, - "y": 17.0106 - }, - { - "l": "50.0", - "x": 4.179, - "y": 17.0081 - }, - { - "l": "50.0", - "x": 4.2623, - "y": 17.006 - }, - { - "l": "50.0", - "x": 4.3457, - "y": 17.0047 - }, - { - "l": "50.0", - "x": 4.429, - "y": 17.0041 - }, - { - "l": "50.0", - "x": 4.5123, - "y": 17.004 - }, - { - "l": "50.0", - "x": 4.5957, - "y": 17.0048 - }, - { - "l": "50.0", - "x": 4.679, - "y": 17.0062 - }, - { - "l": "50.0", - "x": 4.7623, - "y": 17.0085 - }, - { - "l": "50.0", - "x": 4.8457, - "y": 17.0117 - }, - { - "l": "50.0", - "x": 4.929, - "y": 17.0154 - }, - { - "l": "50.0", - "x": 5.0123, - "y": 17.0203 - }, - { - "l": "50.0", - "x": 5.0957, - "y": 17.0262 - }, - { - "l": "50.0", - "x": 5.179, - "y": 17.0324 - }, - { - "l": "50.0", - "x": 5.2623, - "y": 17.0402 - }, - { - "l": "50.0", - "x": 5.3457, - "y": 17.0489 - }, - { - "l": "50.0", - "x": 5.429, - "y": 17.0577 - }, - { - "l": "50.0", - "x": 5.5123, - "y": 17.0686 - }, - { - "l": "50.0", - "x": 5.5957, - "y": 17.08 - }, - { - "l": "50.0", - "x": 5.679, - "y": 17.0914 - }, - { - "l": "50.0", - "x": 5.7623, - "y": 17.105 - }, - { - "l": "50.0", - "x": 5.8457, - "y": 17.1192 - }, - { - "l": "50.0", - "x": 5.929, - "y": 17.1331 - }, - { - "l": "50.0", - "x": 6.0123, - "y": 17.1496 - }, - { - "l": "50.0", - "x": 6.0957, - "y": 17.1666 - }, - { - "l": "50.0", - "x": 6.179, - "y": 17.1831 - }, - { - "l": "50.0", - "x": 6.2623, - "y": 17.2025 - }, - { - "l": "50.0", - "x": 6.3457, - "y": 17.2223 - }, - { - "l": "50.0", - "x": 6.429, - "y": 17.2413 - }, - { - "l": "50.0", - "x": 6.5123, - "y": 17.2636 - }, - { - "l": "50.0", - "x": 6.5957, - "y": 17.2861 - }, - { - "l": "50.0", - "x": 6.679, - "y": 17.3076 - }, - { - "l": "50.0", - "x": 6.7623, - "y": 17.3325 - }, - { - "l": "50.0", - "x": 6.8457, - "y": 17.3575 - }, - { - "l": "50.0", - "x": 6.929, - "y": 17.3812 - }, - { - "l": "50.0", - "x": 7.0123, - "y": 17.4085 - }, - { - "l": "50.0", - "x": 7.0957, - "y": 17.4359 - }, - { - "l": "50.0", - "x": 7.179, - "y": 17.4615 - }, - { - "l": "50.0", - "x": 7.2623, - "y": 17.4911 - }, - { - "l": "50.0", - "x": 7.3457, - "y": 17.5204 - }, - { - "l": "50.0", - "x": 7.429, - "y": 17.5479 - }, - { - "l": "50.0", - "x": 7.5123, - "y": 17.5795 - }, - { - "l": "50.0", - "x": 7.5957, - "y": 17.6109 - }, - { - "l": "50.0", - "x": 7.679, - "y": 17.64 - }, - { - "l": "50.0", - "x": 7.7623, - "y": 17.6734 - }, - { - "l": "50.0", - "x": 7.8457, - "y": 17.7066 - }, - { - "l": "50.0", - "x": 7.929, - "y": 17.7373 - }, - { - "l": "50.0", - "x": 8.0123, - "y": 17.7724 - }, - { - "l": "50.0", - "x": 8.0957, - "y": 17.807 - }, - { - "l": "50.0", - "x": 8.179, - "y": 17.8392 - }, - { - "l": "50.0", - "x": 8.2623, - "y": 17.8758 - }, - { - "l": "50.0", - "x": 8.3457, - "y": 17.912 - }, - { - "l": "50.0", - "x": 8.429, - "y": 17.9454 - }, - { - "l": "50.0", - "x": 8.5123, - "y": 17.9834 - }, - { - "l": "50.0", - "x": 8.5957, - "y": 18.0209 - }, - { - "l": "50.0", - "x": 8.679, - "y": 18.0556 - }, - { - "l": "50.0", - "x": 8.7623, - "y": 18.0948 - }, - { - "l": "50.0", - "x": 8.8457, - "y": 18.1335 - }, - { - "l": "50.0", - "x": 8.929, - "y": 18.1692 - }, - { - "l": "50.0", - "x": 9.0123, - "y": 18.2097 - }, - { - "l": "50.0", - "x": 9.0957, - "y": 18.2495 - }, - { - "l": "50.0", - "x": 9.179, - "y": 18.2862 - }, - { - "l": "50.0", - "x": 9.2623, - "y": 18.3277 - }, - { - "l": "50.0", - "x": 9.3457, - "y": 18.3686 - }, - { - "l": "50.0", - "x": 9.429, - "y": 18.4062 - }, - { - "l": "50.0", - "x": 9.5123, - "y": 18.4488 - }, - { - "l": "50.0", - "x": 9.5957, - "y": 18.4905 - }, - { - "l": "50.0", - "x": 9.679, - "y": 18.5289 - }, - { - "l": "50.0", - "x": 9.7623, - "y": 18.5723 - }, - { - "l": "50.0", - "x": 9.8457, - "y": 18.6149 - }, - { - "l": "50.0", - "x": 9.929, - "y": 18.654 - }, - { - "l": "50.0", - "x": 10.0123, - "y": 18.6982 - }, - { - "l": "50.0", - "x": 10.0957, - "y": 18.7415 - }, - { - "l": "50.0", - "x": 10.179, - "y": 18.7814 - }, - { - "l": "50.0", - "x": 10.2623, - "y": 18.8263 - }, - { - "l": "50.0", - "x": 10.3457, - "y": 18.8703 - }, - { - "l": "50.0", - "x": 10.429, - "y": 18.9109 - }, - { - "l": "50.0", - "x": 10.5123, - "y": 18.9566 - }, - { - "l": "50.0", - "x": 10.5957, - "y": 19.0013 - }, - { - "l": "50.0", - "x": 10.679, - "y": 19.0425 - }, - { - "l": "50.0", - "x": 10.7623, - "y": 19.0888 - }, - { - "l": "50.0", - "x": 10.8457, - "y": 19.1343 - }, - { - "l": "50.0", - "x": 10.929, - "y": 19.176 - }, - { - "l": "50.0", - "x": 11.0123, - "y": 19.2229 - }, - { - "l": "50.0", - "x": 11.0957, - "y": 19.269 - }, - { - "l": "50.0", - "x": 11.179, - "y": 19.3112 - }, - { - "l": "50.0", - "x": 11.2623, - "y": 19.3587 - }, - { - "l": "50.0", - "x": 11.3457, - "y": 19.4051 - }, - { - "l": "50.0", - "x": 11.429, - "y": 19.4478 - }, - { - "l": "50.0", - "x": 11.5123, - "y": 19.4958 - }, - { - "l": "50.0", - "x": 11.5957, - "y": 19.5427 - }, - { - "l": "50.0", - "x": 11.679, - "y": 19.5857 - }, - { - "l": "50.0", - "x": 11.7623, - "y": 19.6341 - }, - { - "l": "50.0", - "x": 11.8457, - "y": 19.6814 - }, - { - "l": "50.0", - "x": 11.929, - "y": 19.7247 - }, - { - "l": "50.0", - "x": 12.0123, - "y": 19.7734 - }, - { - "l": "50.0", - "x": 12.0957, - "y": 19.821 - }, - { - "l": "50.0", - "x": 12.179, - "y": 19.8646 - }, - { - "l": "50.0", - "x": 12.2623, - "y": 19.9135 - }, - { - "l": "50.0", - "x": 12.3457, - "y": 19.9614 - }, - { - "l": "50.0", - "x": 12.429, - "y": 20.0051 - }, - { - "l": "50.0", - "x": 12.5123, - "y": 20.0544 - }, - { - "l": "50.0", - "x": 12.5957, - "y": 20.1023 - }, - { - "l": "50.0", - "x": 12.679, - "y": 20.1462 - }, - { - "l": "50.0", - "x": 12.7623, - "y": 20.1956 - }, - { - "l": "50.0", - "x": 12.8457, - "y": 20.2436 - }, - { - "l": "50.0", - "x": 12.929, - "y": 20.2875 - }, - { - "l": "50.0", - "x": 13.0123, - "y": 20.3369 - }, - { - "l": "50.0", - "x": 13.0957, - "y": 20.385 - }, - { - "l": "50.0", - "x": 13.179, - "y": 20.4289 - }, - { - "l": "50.0", - "x": 13.2623, - "y": 20.4783 - }, - { - "l": "50.0", - "x": 13.3457, - "y": 20.5263 - }, - { - "l": "50.0", - "x": 13.429, - "y": 20.5702 - }, - { - "l": "50.0", - "x": 13.5123, - "y": 20.6194 - }, - { - "l": "50.0", - "x": 13.5957, - "y": 20.6673 - }, - { - "l": "50.0", - "x": 13.679, - "y": 20.7111 - }, - { - "l": "50.0", - "x": 13.7623, - "y": 20.7601 - }, - { - "l": "50.0", - "x": 13.8457, - "y": 20.8078 - }, - { - "l": "50.0", - "x": 13.929, - "y": 20.8514 - }, - { - "l": "50.0", - "x": 14.0123, - "y": 20.9003 - }, - { - "l": "50.0", - "x": 14.0957, - "y": 20.9477 - }, - { - "l": "50.0", - "x": 14.179, - "y": 20.991 - }, - { - "l": "50.0", - "x": 14.2623, - "y": 21.0395 - }, - { - "l": "50.0", - "x": 14.3457, - "y": 21.0866 - }, - { - "l": "50.0", - "x": 14.429, - "y": 21.1297 - }, - { - "l": "50.0", - "x": 14.5123, - "y": 21.1779 - }, - { - "l": "50.0", - "x": 14.5957, - "y": 21.2247 - }, - { - "l": "50.0", - "x": 14.679, - "y": 21.2674 - }, - { - "l": "50.0", - "x": 14.7623, - "y": 21.3151 - }, - { - "l": "50.0", - "x": 14.8457, - "y": 21.3616 - }, - { - "l": "50.0", - "x": 14.929, - "y": 21.4039 - }, - { - "l": "50.0", - "x": 15.0123, - "y": 21.4513 - }, - { - "l": "50.0", - "x": 15.0957, - "y": 21.4973 - }, - { - "l": "50.0", - "x": 15.179, - "y": 21.5393 - }, - { - "l": "50.0", - "x": 15.2623, - "y": 21.5862 - }, - { - "l": "50.0", - "x": 15.3457, - "y": 21.6319 - }, - { - "l": "50.0", - "x": 15.429, - "y": 21.6734 - }, - { - "l": "50.0", - "x": 15.5123, - "y": 21.7199 - }, - { - "l": "50.0", - "x": 15.5957, - "y": 21.7651 - }, - { - "l": "50.0", - "x": 15.679, - "y": 21.8062 - }, - { - "l": "50.0", - "x": 15.7623, - "y": 21.8523 - }, - { - "l": "50.0", - "x": 15.8457, - "y": 21.8969 - }, - { - "l": "50.0", - "x": 15.929, - "y": 21.9377 - }, - { - "l": "50.0", - "x": 16.0123, - "y": 21.9833 - }, - { - "l": "50.0", - "x": 16.0957, - "y": 22.0275 - }, - { - "l": "50.0", - "x": 16.179, - "y": 22.0678 - }, - { - "l": "50.0", - "x": 16.2623, - "y": 22.1129 - }, - { - "l": "50.0", - "x": 16.3457, - "y": 22.1567 - }, - { - "l": "50.0", - "x": 16.429, - "y": 22.1966 - }, - { - "l": "50.0", - "x": 16.5123, - "y": 22.2411 - }, - { - "l": "50.0", - "x": 16.5957, - "y": 22.2844 - }, - { - "l": "50.0", - "x": 16.679, - "y": 22.3239 - }, - { - "l": "50.0", - "x": 16.7623, - "y": 22.368 - }, - { - "l": "50.0", - "x": 16.8457, - "y": 22.4108 - }, - { - "l": "50.0", - "x": 16.929, - "y": 22.4499 - }, - { - "l": "50.0", - "x": 17.0123, - "y": 22.4935 - }, - { - "l": "50.0", - "x": 17.0957, - "y": 22.5358 - }, - { - "l": "50.0", - "x": 17.179, - "y": 22.5744 - }, - { - "l": "50.0", - "x": 17.2623, - "y": 22.6176 - }, - { - "l": "50.0", - "x": 17.3457, - "y": 22.6594 - }, - { - "l": "50.0", - "x": 17.429, - "y": 22.6977 - }, - { - "l": "50.0", - "x": 17.5123, - "y": 22.7404 - }, - { - "l": "50.0", - "x": 17.5957, - "y": 22.7817 - }, - { - "l": "50.0", - "x": 17.679, - "y": 22.8195 - }, - { - "l": "50.0", - "x": 17.7623, - "y": 22.8618 - }, - { - "l": "50.0", - "x": 17.8457, - "y": 22.9028 - }, - { - "l": "50.0", - "x": 17.929, - "y": 22.9401 - }, - { - "l": "50.0", - "x": 18.0123, - "y": 22.9818 - }, - { - "l": "50.0", - "x": 18.0957, - "y": 23.0224 - }, - { - "l": "50.0", - "x": 18.179, - "y": 23.0593 - }, - { - "l": "50.0", - "x": 18.2623, - "y": 23.1007 - }, - { - "l": "50.0", - "x": 18.3457, - "y": 23.1407 - }, - { - "l": "50.0", - "x": 18.429, - "y": 23.1773 - }, - { - "l": "50.0", - "x": 18.5123, - "y": 23.2182 - }, - { - "l": "50.0", - "x": 18.5957, - "y": 23.2578 - }, - { - "l": "50.0", - "x": 18.679, - "y": 23.294 - }, - { - "l": "50.0", - "x": 18.7623, - "y": 23.3344 - }, - { - "l": "50.0", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 0.0, - "y": 13.1601 - }, - { - "l": "75.0", - "x": 0.0192, - "y": 13.47 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 13.7791 - }, - { - "l": "75.0", - "x": 0.0575, - "y": 14.0874 - }, - { - "l": "75.0", - "x": 0.0767, - "y": 14.395 - }, - { - "l": "75.0", - "x": 0.0958, - "y": 14.6334 - }, - { - "l": "75.0", - "x": 0.115, - "y": 14.8361 - }, - { - "l": "75.0", - "x": 0.1342, - "y": 15.0201 - }, - { - "l": "75.0", - "x": 0.1533, - "y": 15.1905 - }, - { - "l": "75.0", - "x": 0.1725, - "y": 15.3549 - }, - { - "l": "75.0", - "x": 0.1916, - "y": 15.5298 - }, - { - "l": "75.0", - "x": 0.2108, - "y": 15.6988 - }, - { - "l": "75.0", - "x": 0.23, - "y": 15.8613 - }, - { - "l": "75.0", - "x": 0.2491, - "y": 16.0164 - }, - { - "l": "75.0", - "x": 0.2683, - "y": 16.1625 - }, - { - "l": "75.0", - "x": 0.2875, - "y": 16.3003 - }, - { - "l": "75.0", - "x": 0.3066, - "y": 16.4298 - }, - { - "l": "75.0", - "x": 0.3258, - "y": 16.5508 - }, - { - "l": "75.0", - "x": 0.345, - "y": 16.6589 - }, - { - "l": "75.0", - "x": 0.3641, - "y": 16.7578 - }, - { - "l": "75.0", - "x": 0.3833, - "y": 16.8503 - }, - { - "l": "75.0", - "x": 0.4025, - "y": 16.9378 - }, - { - "l": "75.0", - "x": 0.4216, - "y": 17.0223 - }, - { - "l": "75.0", - "x": 0.4408, - "y": 17.1098 - }, - { - "l": "75.0", - "x": 0.46, - "y": 17.1942 - }, - { - "l": "75.0", - "x": 0.4791, - "y": 17.275 - }, - { - "l": "75.0", - "x": 0.4983, - "y": 17.3519 - }, - { - "l": "75.0", - "x": 0.5175, - "y": 17.4231 - }, - { - "l": "75.0", - "x": 0.5366, - "y": 17.4897 - }, - { - "l": "75.0", - "x": 0.5558, - "y": 17.5517 - }, - { - "l": "75.0", - "x": 0.5749, - "y": 17.609 - }, - { - "l": "75.0", - "x": 0.5941, - "y": 17.6598 - }, - { - "l": "75.0", - "x": 0.6133, - "y": 17.7058 - }, - { - "l": "75.0", - "x": 0.6324, - "y": 17.7481 - }, - { - "l": "75.0", - "x": 0.6516, - "y": 17.7876 - }, - { - "l": "75.0", - "x": 0.6708, - "y": 17.8251 - }, - { - "l": "75.0", - "x": 0.6899, - "y": 17.8637 - }, - { - "l": "75.0", - "x": 0.7091, - "y": 17.9005 - }, - { - "l": "75.0", - "x": 0.7283, - "y": 17.9355 - }, - { - "l": "75.0", - "x": 0.7474, - "y": 17.9683 - }, - { - "l": "75.0", - "x": 0.7666, - "y": 17.9985 - }, - { - "l": "75.0", - "x": 0.7858, - "y": 18.0265 - }, - { - "l": "75.0", - "x": 0.8049, - "y": 18.0523 - }, - { - "l": "75.0", - "x": 0.8241, - "y": 18.0761 - }, - { - "l": "75.0", - "x": 0.8433, - "y": 18.0971 - }, - { - "l": "75.0", - "x": 0.8624, - "y": 18.1161 - }, - { - "l": "75.0", - "x": 0.8816, - "y": 18.1334 - }, - { - "l": "75.0", - "x": 0.9008, - "y": 18.1496 - }, - { - "l": "75.0", - "x": 0.9199, - "y": 18.1648 - }, - { - "l": "75.0", - "x": 0.9391, - "y": 18.1805 - }, - { - "l": "75.0", - "x": 0.9582, - "y": 18.1956 - }, - { - "l": "75.0", - "x": 0.9774, - "y": 18.2098 - }, - { - "l": "75.0", - "x": 0.9966, - "y": 18.2232 - }, - { - "l": "75.0", - "x": 1.0157, - "y": 18.2355 - }, - { - "l": "75.0", - "x": 1.0349, - "y": 18.2468 - }, - { - "l": "75.0", - "x": 1.0541, - "y": 18.2573 - }, - { - "l": "75.0", - "x": 1.0732, - "y": 18.2669 - }, - { - "l": "75.0", - "x": 1.0924, - "y": 18.2754 - }, - { - "l": "75.0", - "x": 1.1116, - "y": 18.2829 - }, - { - "l": "75.0", - "x": 1.1307, - "y": 18.2898 - }, - { - "l": "75.0", - "x": 1.1499, - "y": 18.2961 - }, - { - "l": "75.0", - "x": 1.1691, - "y": 18.302 - }, - { - "l": "75.0", - "x": 1.1882, - "y": 18.308 - }, - { - "l": "75.0", - "x": 1.2074, - "y": 18.3137 - }, - { - "l": "75.0", - "x": 1.2266, - "y": 18.3191 - }, - { - "l": "75.0", - "x": 1.2457, - "y": 18.324 - }, - { - "l": "75.0", - "x": 1.2649, - "y": 18.3285 - }, - { - "l": "75.0", - "x": 1.2841, - "y": 18.3326 - }, - { - "l": "75.0", - "x": 1.3032, - "y": 18.3362 - }, - { - "l": "75.0", - "x": 1.3224, - "y": 18.3396 - }, - { - "l": "75.0", - "x": 1.3415, - "y": 18.3425 - }, - { - "l": "75.0", - "x": 1.3607, - "y": 18.3451 - }, - { - "l": "75.0", - "x": 1.3799, - "y": 18.3474 - }, - { - "l": "75.0", - "x": 1.399, - "y": 18.3494 - }, - { - "l": "75.0", - "x": 1.4182, - "y": 18.3513 - }, - { - "l": "75.0", - "x": 1.4374, - "y": 18.3532 - }, - { - "l": "75.0", - "x": 1.4565, - "y": 18.3549 - }, - { - "l": "75.0", - "x": 1.4757, - "y": 18.3564 - }, - { - "l": "75.0", - "x": 1.4949, - "y": 18.3578 - }, - { - "l": "75.0", - "x": 1.514, - "y": 18.3591 - }, - { - "l": "75.0", - "x": 1.5332, - "y": 18.3601 - }, - { - "l": "75.0", - "x": 1.5524, - "y": 18.361 - }, - { - "l": "75.0", - "x": 1.5715, - "y": 18.3618 - }, - { - "l": "75.0", - "x": 1.5907, - "y": 18.3624 - }, - { - "l": "75.0", - "x": 1.6099, - "y": 18.3629 - }, - { - "l": "75.0", - "x": 1.629, - "y": 18.3632 - }, - { - "l": "75.0", - "x": 1.6482, - "y": 18.3634 - }, - { - "l": "75.0", - "x": 1.6674, - "y": 18.3636 - }, - { - "l": "75.0", - "x": 1.6865, - "y": 18.3636 - }, - { - "l": "75.0", - "x": 1.7057, - "y": 18.3636 - }, - { - "l": "75.0", - "x": 1.7248, - "y": 18.3634 - }, - { - "l": "75.0", - "x": 1.744, - "y": 18.3632 - }, - { - "l": "75.0", - "x": 1.7632, - "y": 18.3629 - }, - { - "l": "75.0", - "x": 1.7823, - "y": 18.3625 - }, - { - "l": "75.0", - "x": 1.8015, - "y": 18.362 - }, - { - "l": "75.0", - "x": 1.8207, - "y": 18.3615 - }, - { - "l": "75.0", - "x": 1.8398, - "y": 18.3609 - }, - { - "l": "75.0", - "x": 1.859, - "y": 18.3603 - }, - { - "l": "75.0", - "x": 1.8782, - "y": 18.3597 - }, - { - "l": "75.0", - "x": 1.8973, - "y": 18.359 - }, - { - "l": "75.0", - "x": 1.9165, - "y": 18.3582 - }, - { - "l": "75.0", - "x": 1.9357, - "y": 18.3574 - }, - { - "l": "75.0", - "x": 1.9548, - "y": 18.3565 - }, - { - "l": "75.0", - "x": 1.974, - "y": 18.3555 - }, - { - "l": "75.0", - "x": 1.9932, - "y": 18.3545 - }, - { - "l": "75.0", - "x": 2.0123, - "y": 18.3534 - }, - { - "l": "75.0", - "x": 2.0957, - "y": 18.3482 - }, - { - "l": "75.0", - "x": 2.179, - "y": 18.3425 - }, - { - "l": "75.0", - "x": 2.2623, - "y": 18.3352 - }, - { - "l": "75.0", - "x": 2.3457, - "y": 18.327 - }, - { - "l": "75.0", - "x": 2.429, - "y": 18.3189 - }, - { - "l": "75.0", - "x": 2.5123, - "y": 18.3093 - }, - { - "l": "75.0", - "x": 2.5957, - "y": 18.2999 - }, - { - "l": "75.0", - "x": 2.679, - "y": 18.2913 - }, - { - "l": "75.0", - "x": 2.7623, - "y": 18.2821 - }, - { - "l": "75.0", - "x": 2.8457, - "y": 18.2735 - }, - { - "l": "75.0", - "x": 2.929, - "y": 18.2663 - }, - { - "l": "75.0", - "x": 3.0123, - "y": 18.2589 - }, - { - "l": "75.0", - "x": 3.0957, - "y": 18.2526 - }, - { - "l": "75.0", - "x": 3.179, - "y": 18.2475 - }, - { - "l": "75.0", - "x": 3.2623, - "y": 18.2427 - }, - { - "l": "75.0", - "x": 3.3457, - "y": 18.2387 - }, - { - "l": "75.0", - "x": 3.429, - "y": 18.2358 - }, - { - "l": "75.0", - "x": 3.5123, - "y": 18.2332 - }, - { - "l": "75.0", - "x": 3.5957, - "y": 18.2314 - }, - { - "l": "75.0", - "x": 3.679, - "y": 18.2306 - }, - { - "l": "75.0", - "x": 3.7623, - "y": 18.2302 - }, - { - "l": "75.0", - "x": 3.8457, - "y": 18.2307 - }, - { - "l": "75.0", - "x": 3.929, - "y": 18.2318 - }, - { - "l": "75.0", - "x": 4.0123, - "y": 18.2339 - }, - { - "l": "75.0", - "x": 4.0957, - "y": 18.2367 - }, - { - "l": "75.0", - "x": 4.179, - "y": 18.2401 - }, - { - "l": "75.0", - "x": 4.2623, - "y": 18.2446 - }, - { - "l": "75.0", - "x": 4.3457, - "y": 18.2498 - }, - { - "l": "75.0", - "x": 4.429, - "y": 18.2552 - }, - { - "l": "75.0", - "x": 4.5123, - "y": 18.2622 - }, - { - "l": "75.0", - "x": 4.5957, - "y": 18.2698 - }, - { - "l": "75.0", - "x": 4.679, - "y": 18.2777 - }, - { - "l": "75.0", - "x": 4.7623, - "y": 18.2874 - }, - { - "l": "75.0", - "x": 4.8457, - "y": 18.2979 - }, - { - "l": "75.0", - "x": 4.929, - "y": 18.3084 - }, - { - "l": "75.0", - "x": 5.0123, - "y": 18.3212 - }, - { - "l": "75.0", - "x": 5.0957, - "y": 18.3347 - }, - { - "l": "75.0", - "x": 5.179, - "y": 18.3481 - }, - { - "l": "75.0", - "x": 5.2623, - "y": 18.3642 - }, - { - "l": "75.0", - "x": 5.3457, - "y": 18.381 - }, - { - "l": "75.0", - "x": 5.429, - "y": 18.3974 - }, - { - "l": "75.0", - "x": 5.5123, - "y": 18.4169 - }, - { - "l": "75.0", - "x": 5.5957, - "y": 18.4369 - }, - { - "l": "75.0", - "x": 5.679, - "y": 18.4562 - }, - { - "l": "75.0", - "x": 5.7623, - "y": 18.4789 - }, - { - "l": "75.0", - "x": 5.8457, - "y": 18.5021 - }, - { - "l": "75.0", - "x": 5.929, - "y": 18.5242 - }, - { - "l": "75.0", - "x": 6.0123, - "y": 18.5503 - }, - { - "l": "75.0", - "x": 6.0957, - "y": 18.5766 - }, - { - "l": "75.0", - "x": 6.179, - "y": 18.6017 - }, - { - "l": "75.0", - "x": 6.2623, - "y": 18.631 - }, - { - "l": "75.0", - "x": 6.3457, - "y": 18.6606 - }, - { - "l": "75.0", - "x": 6.429, - "y": 18.6887 - }, - { - "l": "75.0", - "x": 6.5123, - "y": 18.7213 - }, - { - "l": "75.0", - "x": 6.5957, - "y": 18.754 - }, - { - "l": "75.0", - "x": 6.679, - "y": 18.7848 - }, - { - "l": "75.0", - "x": 6.7623, - "y": 18.8204 - }, - { - "l": "75.0", - "x": 6.8457, - "y": 18.856 - }, - { - "l": "75.0", - "x": 6.929, - "y": 18.8894 - }, - { - "l": "75.0", - "x": 7.0123, - "y": 18.9278 - }, - { - "l": "75.0", - "x": 7.0957, - "y": 18.966 - }, - { - "l": "75.0", - "x": 7.179, - "y": 19.0017 - }, - { - "l": "75.0", - "x": 7.2623, - "y": 19.0426 - }, - { - "l": "75.0", - "x": 7.3457, - "y": 19.0832 - }, - { - "l": "75.0", - "x": 7.429, - "y": 19.1211 - }, - { - "l": "75.0", - "x": 7.5123, - "y": 19.1643 - }, - { - "l": "75.0", - "x": 7.5957, - "y": 19.2071 - }, - { - "l": "75.0", - "x": 7.679, - "y": 19.2469 - }, - { - "l": "75.0", - "x": 7.7623, - "y": 19.2923 - }, - { - "l": "75.0", - "x": 7.8457, - "y": 19.3371 - }, - { - "l": "75.0", - "x": 7.929, - "y": 19.3787 - }, - { - "l": "75.0", - "x": 8.0123, - "y": 19.426 - }, - { - "l": "75.0", - "x": 8.0957, - "y": 19.4726 - }, - { - "l": "75.0", - "x": 8.179, - "y": 19.5158 - }, - { - "l": "75.0", - "x": 8.2623, - "y": 19.5649 - }, - { - "l": "75.0", - "x": 8.3457, - "y": 19.6132 - }, - { - "l": "75.0", - "x": 8.429, - "y": 19.6579 - }, - { - "l": "75.0", - "x": 8.5123, - "y": 19.7085 - }, - { - "l": "75.0", - "x": 8.5957, - "y": 19.7583 - }, - { - "l": "75.0", - "x": 8.679, - "y": 19.8044 - }, - { - "l": "75.0", - "x": 8.7623, - "y": 19.8564 - }, - { - "l": "75.0", - "x": 8.8457, - "y": 19.9076 - }, - { - "l": "75.0", - "x": 8.929, - "y": 19.9548 - }, - { - "l": "75.0", - "x": 9.0123, - "y": 20.0083 - }, - { - "l": "75.0", - "x": 9.0957, - "y": 20.0608 - }, - { - "l": "75.0", - "x": 9.179, - "y": 20.1091 - }, - { - "l": "75.0", - "x": 9.2623, - "y": 20.1637 - }, - { - "l": "75.0", - "x": 9.3457, - "y": 20.2174 - }, - { - "l": "75.0", - "x": 9.429, - "y": 20.2668 - }, - { - "l": "75.0", - "x": 9.5123, - "y": 20.3226 - }, - { - "l": "75.0", - "x": 9.5957, - "y": 20.3772 - }, - { - "l": "75.0", - "x": 9.679, - "y": 20.4275 - }, - { - "l": "75.0", - "x": 9.7623, - "y": 20.4842 - }, - { - "l": "75.0", - "x": 9.8457, - "y": 20.5398 - }, - { - "l": "75.0", - "x": 9.929, - "y": 20.5908 - }, - { - "l": "75.0", - "x": 10.0123, - "y": 20.6485 - }, - { - "l": "75.0", - "x": 10.0957, - "y": 20.7049 - }, - { - "l": "75.0", - "x": 10.179, - "y": 20.7568 - }, - { - "l": "75.0", - "x": 10.2623, - "y": 20.8153 - }, - { - "l": "75.0", - "x": 10.3457, - "y": 20.8725 - }, - { - "l": "75.0", - "x": 10.429, - "y": 20.9251 - }, - { - "l": "75.0", - "x": 10.5123, - "y": 20.9845 - }, - { - "l": "75.0", - "x": 10.5957, - "y": 21.0425 - }, - { - "l": "75.0", - "x": 10.679, - "y": 21.0959 - }, - { - "l": "75.0", - "x": 10.7623, - "y": 21.1559 - }, - { - "l": "75.0", - "x": 10.8457, - "y": 21.2147 - }, - { - "l": "75.0", - "x": 10.929, - "y": 21.2687 - }, - { - "l": "75.0", - "x": 11.0123, - "y": 21.3295 - }, - { - "l": "75.0", - "x": 11.0957, - "y": 21.3889 - }, - { - "l": "75.0", - "x": 11.179, - "y": 21.4435 - }, - { - "l": "75.0", - "x": 11.2623, - "y": 21.5049 - }, - { - "l": "75.0", - "x": 11.3457, - "y": 21.5649 - }, - { - "l": "75.0", - "x": 11.429, - "y": 21.6199 - }, - { - "l": "75.0", - "x": 11.5123, - "y": 21.6819 - }, - { - "l": "75.0", - "x": 11.5957, - "y": 21.7424 - }, - { - "l": "75.0", - "x": 11.679, - "y": 21.7979 - }, - { - "l": "75.0", - "x": 11.7623, - "y": 21.8603 - }, - { - "l": "75.0", - "x": 11.8457, - "y": 21.9212 - }, - { - "l": "75.0", - "x": 11.929, - "y": 21.977 - }, - { - "l": "75.0", - "x": 12.0123, - "y": 22.0398 - }, - { - "l": "75.0", - "x": 12.0957, - "y": 22.1012 - }, - { - "l": "75.0", - "x": 12.179, - "y": 22.1573 - }, - { - "l": "75.0", - "x": 12.2623, - "y": 22.2204 - }, - { - "l": "75.0", - "x": 12.3457, - "y": 22.282 - }, - { - "l": "75.0", - "x": 12.429, - "y": 22.3384 - }, - { - "l": "75.0", - "x": 12.5123, - "y": 22.4019 - }, - { - "l": "75.0", - "x": 12.5957, - "y": 22.4636 - }, - { - "l": "75.0", - "x": 12.679, - "y": 22.5203 - }, - { - "l": "75.0", - "x": 12.7623, - "y": 22.5839 - }, - { - "l": "75.0", - "x": 12.8457, - "y": 22.6458 - }, - { - "l": "75.0", - "x": 12.929, - "y": 22.7025 - }, - { - "l": "75.0", - "x": 13.0123, - "y": 22.7661 - }, - { - "l": "75.0", - "x": 13.0957, - "y": 22.8282 - }, - { - "l": "75.0", - "x": 13.179, - "y": 22.8849 - }, - { - "l": "75.0", - "x": 13.2623, - "y": 22.9486 - }, - { - "l": "75.0", - "x": 13.3457, - "y": 23.0106 - }, - { - "l": "75.0", - "x": 13.429, - "y": 23.0674 - }, - { - "l": "75.0", - "x": 13.5123, - "y": 23.131 - }, - { - "l": "75.0", - "x": 13.5957, - "y": 23.1929 - }, - { - "l": "75.0", - "x": 13.679, - "y": 23.2496 - }, - { - "l": "75.0", - "x": 13.7623, - "y": 23.313 - }, - { - "l": "75.0", - "x": 13.8457, - "y": 23.3748 - }, - { - "l": "75.0", - "x": 13.929, - "y": 23.4313 - }, - { - "l": "75.0", - "x": 14.0123, - "y": 23.4946 - }, - { - "l": "75.0", - "x": 14.0957, - "y": 23.5561 - }, - { - "l": "75.0", - "x": 14.179, - "y": 23.6123 - }, - { - "l": "75.0", - "x": 14.2623, - "y": 23.6754 - }, - { - "l": "75.0", - "x": 14.3457, - "y": 23.7367 - }, - { - "l": "75.0", - "x": 14.429, - "y": 23.7927 - }, - { - "l": "75.0", - "x": 14.5123, - "y": 23.8554 - }, - { - "l": "75.0", - "x": 14.5957, - "y": 23.9164 - }, - { - "l": "75.0", - "x": 14.679, - "y": 23.972 - }, - { - "l": "75.0", - "x": 14.7623, - "y": 24.0344 - }, - { - "l": "75.0", - "x": 14.8457, - "y": 24.095 - }, - { - "l": "75.0", - "x": 14.929, - "y": 24.1503 - }, - { - "l": "75.0", - "x": 15.0123, - "y": 24.2123 - }, - { - "l": "75.0", - "x": 15.0957, - "y": 24.2726 - }, - { - "l": "75.0", - "x": 15.179, - "y": 24.3275 - }, - { - "l": "75.0", - "x": 15.2623, - "y": 24.389 - }, - { - "l": "75.0", - "x": 15.3457, - "y": 24.4489 - }, - { - "l": "75.0", - "x": 15.429, - "y": 24.5034 - }, - { - "l": "75.0", - "x": 15.5123, - "y": 24.5647 - }, - { - "l": "75.0", - "x": 15.5957, - "y": 24.6241 - }, - { - "l": "75.0", - "x": 15.679, - "y": 24.6782 - }, - { - "l": "75.0", - "x": 15.7623, - "y": 24.739 - }, - { - "l": "75.0", - "x": 15.8457, - "y": 24.7979 - }, - { - "l": "75.0", - "x": 15.929, - "y": 24.8517 - }, - { - "l": "75.0", - "x": 16.0123, - "y": 24.912 - }, - { - "l": "75.0", - "x": 16.0957, - "y": 24.9705 - }, - { - "l": "75.0", - "x": 16.179, - "y": 25.0239 - }, - { - "l": "75.0", - "x": 16.2623, - "y": 25.0837 - }, - { - "l": "75.0", - "x": 16.3457, - "y": 25.1418 - }, - { - "l": "75.0", - "x": 16.429, - "y": 25.1948 - }, - { - "l": "75.0", - "x": 16.5123, - "y": 25.2541 - }, - { - "l": "75.0", - "x": 16.5957, - "y": 25.3117 - }, - { - "l": "75.0", - "x": 16.679, - "y": 25.3643 - }, - { - "l": "75.0", - "x": 16.7623, - "y": 25.4232 - }, - { - "l": "75.0", - "x": 16.8457, - "y": 25.4803 - }, - { - "l": "75.0", - "x": 16.929, - "y": 25.5326 - }, - { - "l": "75.0", - "x": 17.0123, - "y": 25.591 - }, - { - "l": "75.0", - "x": 17.0957, - "y": 25.6477 - }, - { - "l": "75.0", - "x": 17.179, - "y": 25.6995 - }, - { - "l": "75.0", - "x": 17.2623, - "y": 25.7575 - }, - { - "l": "75.0", - "x": 17.3457, - "y": 25.8137 - }, - { - "l": "75.0", - "x": 17.429, - "y": 25.8651 - }, - { - "l": "75.0", - "x": 17.5123, - "y": 25.9227 - }, - { - "l": "75.0", - "x": 17.5957, - "y": 25.9785 - }, - { - "l": "75.0", - "x": 17.679, - "y": 26.0295 - }, - { - "l": "75.0", - "x": 17.7623, - "y": 26.0867 - }, - { - "l": "75.0", - "x": 17.8457, - "y": 26.1421 - }, - { - "l": "75.0", - "x": 17.929, - "y": 26.1926 - }, - { - "l": "75.0", - "x": 18.0123, - "y": 26.2493 - }, - { - "l": "75.0", - "x": 18.0957, - "y": 26.3044 - }, - { - "l": "75.0", - "x": 18.179, - "y": 26.3546 - }, - { - "l": "75.0", - "x": 18.2623, - "y": 26.4108 - }, - { - "l": "75.0", - "x": 18.3457, - "y": 26.4654 - }, - { - "l": "75.0", - "x": 18.429, - "y": 26.5153 - }, - { - "l": "75.0", - "x": 18.5123, - "y": 26.5712 - }, - { - "l": "75.0", - "x": 18.5957, - "y": 26.6254 - }, - { - "l": "75.0", - "x": 18.679, - "y": 26.6749 - }, - { - "l": "75.0", - "x": 18.7623, - "y": 26.7303 - }, - { - "l": "75.0", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 0.0, - "y": 14.1535 - }, - { - "l": "91.0", - "x": 0.0192, - "y": 14.4723 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 14.7895 - }, - { - "l": "91.0", - "x": 0.0575, - "y": 15.1051 - }, - { - "l": "91.0", - "x": 0.0767, - "y": 15.4191 - }, - { - "l": "91.0", - "x": 0.0958, - "y": 15.6629 - }, - { - "l": "91.0", - "x": 0.115, - "y": 15.8702 - }, - { - "l": "91.0", - "x": 0.1342, - "y": 16.0587 - }, - { - "l": "91.0", - "x": 0.1533, - "y": 16.2335 - }, - { - "l": "91.0", - "x": 0.1725, - "y": 16.4022 - }, - { - "l": "91.0", - "x": 0.1916, - "y": 16.5817 - }, - { - "l": "91.0", - "x": 0.2108, - "y": 16.7553 - }, - { - "l": "91.0", - "x": 0.23, - "y": 16.9222 - }, - { - "l": "91.0", - "x": 0.2491, - "y": 17.0817 - }, - { - "l": "91.0", - "x": 0.2683, - "y": 17.2319 - }, - { - "l": "91.0", - "x": 0.2875, - "y": 17.3737 - }, - { - "l": "91.0", - "x": 0.3066, - "y": 17.507 - }, - { - "l": "91.0", - "x": 0.3258, - "y": 17.6315 - }, - { - "l": "91.0", - "x": 0.345, - "y": 17.7427 - }, - { - "l": "91.0", - "x": 0.3641, - "y": 17.8444 - }, - { - "l": "91.0", - "x": 0.3833, - "y": 17.9396 - }, - { - "l": "91.0", - "x": 0.4025, - "y": 18.0296 - }, - { - "l": "91.0", - "x": 0.4216, - "y": 18.1164 - }, - { - "l": "91.0", - "x": 0.4408, - "y": 18.2064 - }, - { - "l": "91.0", - "x": 0.46, - "y": 18.2931 - }, - { - "l": "91.0", - "x": 0.4791, - "y": 18.3762 - }, - { - "l": "91.0", - "x": 0.4983, - "y": 18.4551 - }, - { - "l": "91.0", - "x": 0.5175, - "y": 18.5282 - }, - { - "l": "91.0", - "x": 0.5366, - "y": 18.5965 - }, - { - "l": "91.0", - "x": 0.5558, - "y": 18.66 - }, - { - "l": "91.0", - "x": 0.5749, - "y": 18.7187 - }, - { - "l": "91.0", - "x": 0.5941, - "y": 18.7708 - }, - { - "l": "91.0", - "x": 0.6133, - "y": 18.8178 - }, - { - "l": "91.0", - "x": 0.6324, - "y": 18.8611 - }, - { - "l": "91.0", - "x": 0.6516, - "y": 18.9015 - }, - { - "l": "91.0", - "x": 0.6708, - "y": 18.9397 - }, - { - "l": "91.0", - "x": 0.6899, - "y": 18.9791 - }, - { - "l": "91.0", - "x": 0.7091, - "y": 19.0166 - }, - { - "l": "91.0", - "x": 0.7283, - "y": 19.0522 - }, - { - "l": "91.0", - "x": 0.7474, - "y": 19.0857 - }, - { - "l": "91.0", - "x": 0.7666, - "y": 19.1164 - }, - { - "l": "91.0", - "x": 0.7858, - "y": 19.1449 - }, - { - "l": "91.0", - "x": 0.8049, - "y": 19.1711 - }, - { - "l": "91.0", - "x": 0.8241, - "y": 19.1952 - }, - { - "l": "91.0", - "x": 0.8433, - "y": 19.2166 - }, - { - "l": "91.0", - "x": 0.8624, - "y": 19.2359 - }, - { - "l": "91.0", - "x": 0.8816, - "y": 19.2535 - }, - { - "l": "91.0", - "x": 0.9008, - "y": 19.2699 - }, - { - "l": "91.0", - "x": 0.9199, - "y": 19.2854 - }, - { - "l": "91.0", - "x": 0.9391, - "y": 19.3014 - }, - { - "l": "91.0", - "x": 0.9582, - "y": 19.3166 - }, - { - "l": "91.0", - "x": 0.9774, - "y": 19.3311 - }, - { - "l": "91.0", - "x": 0.9966, - "y": 19.3448 - }, - { - "l": "91.0", - "x": 1.0157, - "y": 19.3573 - }, - { - "l": "91.0", - "x": 1.0349, - "y": 19.3689 - }, - { - "l": "91.0", - "x": 1.0541, - "y": 19.3796 - }, - { - "l": "91.0", - "x": 1.0732, - "y": 19.3894 - }, - { - "l": "91.0", - "x": 1.0924, - "y": 19.3981 - }, - { - "l": "91.0", - "x": 1.1116, - "y": 19.4058 - }, - { - "l": "91.0", - "x": 1.1307, - "y": 19.4129 - }, - { - "l": "91.0", - "x": 1.1499, - "y": 19.4195 - }, - { - "l": "91.0", - "x": 1.1691, - "y": 19.4256 - }, - { - "l": "91.0", - "x": 1.1882, - "y": 19.4318 - }, - { - "l": "91.0", - "x": 1.2074, - "y": 19.4378 - }, - { - "l": "91.0", - "x": 1.2266, - "y": 19.4434 - }, - { - "l": "91.0", - "x": 1.2457, - "y": 19.4487 - }, - { - "l": "91.0", - "x": 1.2649, - "y": 19.4534 - }, - { - "l": "91.0", - "x": 1.2841, - "y": 19.4578 - }, - { - "l": "91.0", - "x": 1.3032, - "y": 19.4618 - }, - { - "l": "91.0", - "x": 1.3224, - "y": 19.4654 - }, - { - "l": "91.0", - "x": 1.3415, - "y": 19.4687 - }, - { - "l": "91.0", - "x": 1.3607, - "y": 19.4716 - }, - { - "l": "91.0", - "x": 1.3799, - "y": 19.4742 - }, - { - "l": "91.0", - "x": 1.399, - "y": 19.4766 - }, - { - "l": "91.0", - "x": 1.4182, - "y": 19.4789 - }, - { - "l": "91.0", - "x": 1.4374, - "y": 19.4812 - }, - { - "l": "91.0", - "x": 1.4565, - "y": 19.4833 - }, - { - "l": "91.0", - "x": 1.4757, - "y": 19.4853 - }, - { - "l": "91.0", - "x": 1.4949, - "y": 19.4872 - }, - { - "l": "91.0", - "x": 1.514, - "y": 19.489 - }, - { - "l": "91.0", - "x": 1.5332, - "y": 19.4906 - }, - { - "l": "91.0", - "x": 1.5524, - "y": 19.492 - }, - { - "l": "91.0", - "x": 1.5715, - "y": 19.4933 - }, - { - "l": "91.0", - "x": 1.5907, - "y": 19.4945 - }, - { - "l": "91.0", - "x": 1.6099, - "y": 19.4955 - }, - { - "l": "91.0", - "x": 1.629, - "y": 19.4964 - }, - { - "l": "91.0", - "x": 1.6482, - "y": 19.4972 - }, - { - "l": "91.0", - "x": 1.6674, - "y": 19.4979 - }, - { - "l": "91.0", - "x": 1.6865, - "y": 19.4986 - }, - { - "l": "91.0", - "x": 1.7057, - "y": 19.4992 - }, - { - "l": "91.0", - "x": 1.7248, - "y": 19.4998 - }, - { - "l": "91.0", - "x": 1.744, - "y": 19.5003 - }, - { - "l": "91.0", - "x": 1.7632, - "y": 19.5008 - }, - { - "l": "91.0", - "x": 1.7823, - "y": 19.5012 - }, - { - "l": "91.0", - "x": 1.8015, - "y": 19.5015 - }, - { - "l": "91.0", - "x": 1.8207, - "y": 19.5018 - }, - { - "l": "91.0", - "x": 1.8398, - "y": 19.502 - }, - { - "l": "91.0", - "x": 1.859, - "y": 19.5021 - }, - { - "l": "91.0", - "x": 1.8782, - "y": 19.5022 - }, - { - "l": "91.0", - "x": 1.8973, - "y": 19.5023 - }, - { - "l": "91.0", - "x": 1.9165, - "y": 19.5023 - }, - { - "l": "91.0", - "x": 1.9357, - "y": 19.5024 - }, - { - "l": "91.0", - "x": 1.9548, - "y": 19.5024 - }, - { - "l": "91.0", - "x": 1.974, - "y": 19.5024 - }, - { - "l": "91.0", - "x": 1.9932, - "y": 19.5024 - }, - { - "l": "91.0", - "x": 2.0123, - "y": 19.5023 - }, - { - "l": "91.0", - "x": 2.0957, - "y": 19.5015 - }, - { - "l": "91.0", - "x": 2.179, - "y": 19.5001 - }, - { - "l": "91.0", - "x": 2.2623, - "y": 19.4978 - }, - { - "l": "91.0", - "x": 2.3457, - "y": 19.4947 - }, - { - "l": "91.0", - "x": 2.429, - "y": 19.4915 - }, - { - "l": "91.0", - "x": 2.5123, - "y": 19.4875 - }, - { - "l": "91.0", - "x": 2.5957, - "y": 19.4838 - }, - { - "l": "91.0", - "x": 2.679, - "y": 19.4806 - }, - { - "l": "91.0", - "x": 2.7623, - "y": 19.4777 - }, - { - "l": "91.0", - "x": 2.8457, - "y": 19.4755 - }, - { - "l": "91.0", - "x": 2.929, - "y": 19.4742 - }, - { - "l": "91.0", - "x": 3.0123, - "y": 19.4737 - }, - { - "l": "91.0", - "x": 3.0957, - "y": 19.4742 - }, - { - "l": "91.0", - "x": 3.179, - "y": 19.4755 - }, - { - "l": "91.0", - "x": 3.2623, - "y": 19.4781 - }, - { - "l": "91.0", - "x": 3.3457, - "y": 19.4815 - }, - { - "l": "91.0", - "x": 3.429, - "y": 19.4854 - }, - { - "l": "91.0", - "x": 3.5123, - "y": 19.4907 - }, - { - "l": "91.0", - "x": 3.5957, - "y": 19.4967 - }, - { - "l": "91.0", - "x": 3.679, - "y": 19.5031 - }, - { - "l": "91.0", - "x": 3.7623, - "y": 19.5111 - }, - { - "l": "91.0", - "x": 3.8457, - "y": 19.5199 - }, - { - "l": "91.0", - "x": 3.929, - "y": 19.5288 - }, - { - "l": "91.0", - "x": 4.0123, - "y": 19.5398 - }, - { - "l": "91.0", - "x": 4.0957, - "y": 19.5515 - }, - { - "l": "91.0", - "x": 4.179, - "y": 19.563 - }, - { - "l": "91.0", - "x": 4.2623, - "y": 19.577 - }, - { - "l": "91.0", - "x": 4.3457, - "y": 19.5916 - }, - { - "l": "91.0", - "x": 4.429, - "y": 19.6058 - }, - { - "l": "91.0", - "x": 4.5123, - "y": 19.6227 - }, - { - "l": "91.0", - "x": 4.5957, - "y": 19.6403 - }, - { - "l": "91.0", - "x": 4.679, - "y": 19.6574 - }, - { - "l": "91.0", - "x": 4.7623, - "y": 19.6777 - }, - { - "l": "91.0", - "x": 4.8457, - "y": 19.6987 - }, - { - "l": "91.0", - "x": 4.929, - "y": 19.719 - }, - { - "l": "91.0", - "x": 5.0123, - "y": 19.7429 - }, - { - "l": "91.0", - "x": 5.0957, - "y": 19.7676 - }, - { - "l": "91.0", - "x": 5.179, - "y": 19.7914 - }, - { - "l": "91.0", - "x": 5.2623, - "y": 19.8193 - }, - { - "l": "91.0", - "x": 5.3457, - "y": 19.8477 - }, - { - "l": "91.0", - "x": 5.429, - "y": 19.875 - }, - { - "l": "91.0", - "x": 5.5123, - "y": 19.907 - }, - { - "l": "91.0", - "x": 5.5957, - "y": 19.9393 - }, - { - "l": "91.0", - "x": 5.679, - "y": 19.97 - }, - { - "l": "91.0", - "x": 5.7623, - "y": 20.0058 - }, - { - "l": "91.0", - "x": 5.8457, - "y": 20.0418 - }, - { - "l": "91.0", - "x": 5.929, - "y": 20.076 - }, - { - "l": "91.0", - "x": 6.0123, - "y": 20.1157 - }, - { - "l": "91.0", - "x": 6.0957, - "y": 20.1556 - }, - { - "l": "91.0", - "x": 6.179, - "y": 20.1933 - }, - { - "l": "91.0", - "x": 6.2623, - "y": 20.2369 - }, - { - "l": "91.0", - "x": 6.3457, - "y": 20.2807 - }, - { - "l": "91.0", - "x": 6.429, - "y": 20.3219 - }, - { - "l": "91.0", - "x": 6.5123, - "y": 20.3695 - }, - { - "l": "91.0", - "x": 6.5957, - "y": 20.417 - }, - { - "l": "91.0", - "x": 6.679, - "y": 20.4615 - }, - { - "l": "91.0", - "x": 6.7623, - "y": 20.5127 - }, - { - "l": "91.0", - "x": 6.8457, - "y": 20.5637 - }, - { - "l": "91.0", - "x": 6.929, - "y": 20.6114 - }, - { - "l": "91.0", - "x": 7.0123, - "y": 20.666 - }, - { - "l": "91.0", - "x": 7.0957, - "y": 20.7202 - }, - { - "l": "91.0", - "x": 7.179, - "y": 20.7707 - }, - { - "l": "91.0", - "x": 7.2623, - "y": 20.8284 - }, - { - "l": "91.0", - "x": 7.3457, - "y": 20.8855 - }, - { - "l": "91.0", - "x": 7.429, - "y": 20.9387 - }, - { - "l": "91.0", - "x": 7.5123, - "y": 20.9992 - }, - { - "l": "91.0", - "x": 7.5957, - "y": 21.0592 - }, - { - "l": "91.0", - "x": 7.679, - "y": 21.1147 - }, - { - "l": "91.0", - "x": 7.7623, - "y": 21.178 - }, - { - "l": "91.0", - "x": 7.8457, - "y": 21.2404 - }, - { - "l": "91.0", - "x": 7.929, - "y": 21.2982 - }, - { - "l": "91.0", - "x": 8.0123, - "y": 21.3638 - }, - { - "l": "91.0", - "x": 8.0957, - "y": 21.4285 - }, - { - "l": "91.0", - "x": 8.179, - "y": 21.4883 - }, - { - "l": "91.0", - "x": 8.2623, - "y": 21.5562 - }, - { - "l": "91.0", - "x": 8.3457, - "y": 21.623 - }, - { - "l": "91.0", - "x": 8.429, - "y": 21.6847 - }, - { - "l": "91.0", - "x": 8.5123, - "y": 21.7546 - }, - { - "l": "91.0", - "x": 8.5957, - "y": 21.8233 - }, - { - "l": "91.0", - "x": 8.679, - "y": 21.8868 - }, - { - "l": "91.0", - "x": 8.7623, - "y": 21.9585 - }, - { - "l": "91.0", - "x": 8.8457, - "y": 22.029 - }, - { - "l": "91.0", - "x": 8.929, - "y": 22.094 - }, - { - "l": "91.0", - "x": 9.0123, - "y": 22.1675 - }, - { - "l": "91.0", - "x": 9.0957, - "y": 22.2396 - }, - { - "l": "91.0", - "x": 9.179, - "y": 22.3061 - }, - { - "l": "91.0", - "x": 9.2623, - "y": 22.3812 - }, - { - "l": "91.0", - "x": 9.3457, - "y": 22.4548 - }, - { - "l": "91.0", - "x": 9.429, - "y": 22.5227 - }, - { - "l": "91.0", - "x": 9.5123, - "y": 22.5993 - }, - { - "l": "91.0", - "x": 9.5957, - "y": 22.6743 - }, - { - "l": "91.0", - "x": 9.679, - "y": 22.7433 - }, - { - "l": "91.0", - "x": 9.7623, - "y": 22.8212 - }, - { - "l": "91.0", - "x": 9.8457, - "y": 22.8975 - }, - { - "l": "91.0", - "x": 9.929, - "y": 22.9676 - }, - { - "l": "91.0", - "x": 10.0123, - "y": 23.0467 - }, - { - "l": "91.0", - "x": 10.0957, - "y": 23.1241 - }, - { - "l": "91.0", - "x": 10.179, - "y": 23.1954 - }, - { - "l": "91.0", - "x": 10.2623, - "y": 23.2757 - }, - { - "l": "91.0", - "x": 10.3457, - "y": 23.3542 - }, - { - "l": "91.0", - "x": 10.429, - "y": 23.4265 - }, - { - "l": "91.0", - "x": 10.5123, - "y": 23.5081 - }, - { - "l": "91.0", - "x": 10.5957, - "y": 23.5877 - }, - { - "l": "91.0", - "x": 10.679, - "y": 23.661 - }, - { - "l": "91.0", - "x": 10.7623, - "y": 23.7435 - }, - { - "l": "91.0", - "x": 10.8457, - "y": 23.8243 - }, - { - "l": "91.0", - "x": 10.929, - "y": 23.8985 - }, - { - "l": "91.0", - "x": 11.0123, - "y": 23.9821 - }, - { - "l": "91.0", - "x": 11.0957, - "y": 24.0639 - }, - { - "l": "91.0", - "x": 11.179, - "y": 24.1389 - }, - { - "l": "91.0", - "x": 11.2623, - "y": 24.2235 - }, - { - "l": "91.0", - "x": 11.3457, - "y": 24.306 - }, - { - "l": "91.0", - "x": 11.429, - "y": 24.3819 - }, - { - "l": "91.0", - "x": 11.5123, - "y": 24.4673 - }, - { - "l": "91.0", - "x": 11.5957, - "y": 24.5507 - }, - { - "l": "91.0", - "x": 11.679, - "y": 24.6273 - }, - { - "l": "91.0", - "x": 11.7623, - "y": 24.7135 - }, - { - "l": "91.0", - "x": 11.8457, - "y": 24.7976 - }, - { - "l": "91.0", - "x": 11.929, - "y": 24.8748 - }, - { - "l": "91.0", - "x": 12.0123, - "y": 24.9617 - }, - { - "l": "91.0", - "x": 12.0957, - "y": 25.0466 - }, - { - "l": "91.0", - "x": 12.179, - "y": 25.1244 - }, - { - "l": "91.0", - "x": 12.2623, - "y": 25.2118 - }, - { - "l": "91.0", - "x": 12.3457, - "y": 25.2973 - }, - { - "l": "91.0", - "x": 12.429, - "y": 25.3757 - }, - { - "l": "91.0", - "x": 12.5123, - "y": 25.4638 - }, - { - "l": "91.0", - "x": 12.5957, - "y": 25.5498 - }, - { - "l": "91.0", - "x": 12.679, - "y": 25.6287 - }, - { - "l": "91.0", - "x": 12.7623, - "y": 25.7173 - }, - { - "l": "91.0", - "x": 12.8457, - "y": 25.8037 - }, - { - "l": "91.0", - "x": 12.929, - "y": 25.8829 - }, - { - "l": "91.0", - "x": 13.0123, - "y": 25.972 - }, - { - "l": "91.0", - "x": 13.0957, - "y": 26.0589 - }, - { - "l": "91.0", - "x": 13.179, - "y": 26.1384 - }, - { - "l": "91.0", - "x": 13.2623, - "y": 26.2278 - }, - { - "l": "91.0", - "x": 13.3457, - "y": 26.315 - }, - { - "l": "91.0", - "x": 13.429, - "y": 26.3949 - }, - { - "l": "91.0", - "x": 13.5123, - "y": 26.4845 - }, - { - "l": "91.0", - "x": 13.5957, - "y": 26.5718 - }, - { - "l": "91.0", - "x": 13.679, - "y": 26.652 - }, - { - "l": "91.0", - "x": 13.7623, - "y": 26.7418 - }, - { - "l": "91.0", - "x": 13.8457, - "y": 26.8294 - }, - { - "l": "91.0", - "x": 13.929, - "y": 26.9095 - }, - { - "l": "91.0", - "x": 14.0123, - "y": 26.9996 - }, - { - "l": "91.0", - "x": 14.0957, - "y": 27.0873 - }, - { - "l": "91.0", - "x": 14.179, - "y": 27.1675 - }, - { - "l": "91.0", - "x": 14.2623, - "y": 27.2576 - }, - { - "l": "91.0", - "x": 14.3457, - "y": 27.3453 - }, - { - "l": "91.0", - "x": 14.429, - "y": 27.4257 - }, - { - "l": "91.0", - "x": 14.5123, - "y": 27.5157 - }, - { - "l": "91.0", - "x": 14.5957, - "y": 27.6035 - }, - { - "l": "91.0", - "x": 14.679, - "y": 27.6837 - }, - { - "l": "91.0", - "x": 14.7623, - "y": 27.7738 - }, - { - "l": "91.0", - "x": 14.8457, - "y": 27.8616 - }, - { - "l": "91.0", - "x": 14.929, - "y": 27.9418 - }, - { - "l": "91.0", - "x": 15.0123, - "y": 28.0318 - }, - { - "l": "91.0", - "x": 15.0957, - "y": 28.1195 - }, - { - "l": "91.0", - "x": 15.179, - "y": 28.1997 - }, - { - "l": "91.0", - "x": 15.2623, - "y": 28.2896 - }, - { - "l": "91.0", - "x": 15.3457, - "y": 28.3773 - }, - { - "l": "91.0", - "x": 15.429, - "y": 28.4574 - }, - { - "l": "91.0", - "x": 15.5123, - "y": 28.5474 - }, - { - "l": "91.0", - "x": 15.5957, - "y": 28.6349 - }, - { - "l": "91.0", - "x": 15.679, - "y": 28.715 - }, - { - "l": "91.0", - "x": 15.7623, - "y": 28.8048 - }, - { - "l": "91.0", - "x": 15.8457, - "y": 28.8922 - }, - { - "l": "91.0", - "x": 15.929, - "y": 28.9722 - }, - { - "l": "91.0", - "x": 16.0123, - "y": 29.0621 - }, - { - "l": "91.0", - "x": 16.0957, - "y": 29.1495 - }, - { - "l": "91.0", - "x": 16.179, - "y": 29.2294 - }, - { - "l": "91.0", - "x": 16.2623, - "y": 29.3191 - }, - { - "l": "91.0", - "x": 16.3457, - "y": 29.4064 - }, - { - "l": "91.0", - "x": 16.429, - "y": 29.4863 - }, - { - "l": "91.0", - "x": 16.5123, - "y": 29.5759 - }, - { - "l": "91.0", - "x": 16.5957, - "y": 29.6631 - }, - { - "l": "91.0", - "x": 16.679, - "y": 29.743 - }, - { - "l": "91.0", - "x": 16.7623, - "y": 29.8326 - }, - { - "l": "91.0", - "x": 16.8457, - "y": 29.9198 - }, - { - "l": "91.0", - "x": 16.929, - "y": 29.9996 - }, - { - "l": "91.0", - "x": 17.0123, - "y": 30.0892 - }, - { - "l": "91.0", - "x": 17.0957, - "y": 30.1763 - }, - { - "l": "91.0", - "x": 17.179, - "y": 30.2561 - }, - { - "l": "91.0", - "x": 17.2623, - "y": 30.3457 - }, - { - "l": "91.0", - "x": 17.3457, - "y": 30.4328 - }, - { - "l": "91.0", - "x": 17.429, - "y": 30.5126 - }, - { - "l": "91.0", - "x": 17.5123, - "y": 30.6022 - }, - { - "l": "91.0", - "x": 17.5957, - "y": 30.6893 - }, - { - "l": "91.0", - "x": 17.679, - "y": 30.7691 - }, - { - "l": "91.0", - "x": 17.7623, - "y": 30.8587 - }, - { - "l": "91.0", - "x": 17.8457, - "y": 30.9459 - }, - { - "l": "91.0", - "x": 17.929, - "y": 31.0257 - }, - { - "l": "91.0", - "x": 18.0123, - "y": 31.1153 - }, - { - "l": "91.0", - "x": 18.0957, - "y": 31.2025 - }, - { - "l": "91.0", - "x": 18.179, - "y": 31.2824 - }, - { - "l": "91.0", - "x": 18.2623, - "y": 31.3721 - }, - { - "l": "91.0", - "x": 18.3457, - "y": 31.4594 - }, - { - "l": "91.0", - "x": 18.429, - "y": 31.5393 - }, - { - "l": "91.0", - "x": 18.5123, - "y": 31.6291 - }, - { - "l": "91.0", - "x": 18.5957, - "y": 31.7164 - }, - { - "l": "91.0", - "x": 18.679, - "y": 31.7965 - }, - { - "l": "91.0", - "x": 18.7623, - "y": 31.8863 - }, - { - "l": "91.0", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 0.0, - "y": 15.1613 - }, - { - "l": "98.0", - "x": 0.0192, - "y": 15.4896 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 15.8155 - }, - { - "l": "98.0", - "x": 0.0575, - "y": 16.1389 - }, - { - "l": "98.0", - "x": 0.0767, - "y": 16.4599 - }, - { - "l": "98.0", - "x": 0.0958, - "y": 16.7093 - }, - { - "l": "98.0", - "x": 0.115, - "y": 16.9217 - }, - { - "l": "98.0", - "x": 0.1342, - "y": 17.1149 - }, - { - "l": "98.0", - "x": 0.1533, - "y": 17.2943 - }, - { - "l": "98.0", - "x": 0.1725, - "y": 17.4676 - }, - { - "l": "98.0", - "x": 0.1916, - "y": 17.6521 - }, - { - "l": "98.0", - "x": 0.2108, - "y": 17.8305 - }, - { - "l": "98.0", - "x": 0.23, - "y": 18.0022 - }, - { - "l": "98.0", - "x": 0.2491, - "y": 18.1663 - }, - { - "l": "98.0", - "x": 0.2683, - "y": 18.3208 - }, - { - "l": "98.0", - "x": 0.2875, - "y": 18.4668 - }, - { - "l": "98.0", - "x": 0.3066, - "y": 18.6041 - }, - { - "l": "98.0", - "x": 0.3258, - "y": 18.7323 - }, - { - "l": "98.0", - "x": 0.345, - "y": 18.8468 - }, - { - "l": "98.0", - "x": 0.3641, - "y": 18.9516 - }, - { - "l": "98.0", - "x": 0.3833, - "y": 19.0496 - }, - { - "l": "98.0", - "x": 0.4025, - "y": 19.1422 - }, - { - "l": "98.0", - "x": 0.4216, - "y": 19.2317 - }, - { - "l": "98.0", - "x": 0.4408, - "y": 19.3242 - }, - { - "l": "98.0", - "x": 0.46, - "y": 19.4135 - }, - { - "l": "98.0", - "x": 0.4791, - "y": 19.4989 - }, - { - "l": "98.0", - "x": 0.4983, - "y": 19.58 - }, - { - "l": "98.0", - "x": 0.5175, - "y": 19.6552 - }, - { - "l": "98.0", - "x": 0.5366, - "y": 19.7253 - }, - { - "l": "98.0", - "x": 0.5558, - "y": 19.7905 - }, - { - "l": "98.0", - "x": 0.5749, - "y": 19.8508 - }, - { - "l": "98.0", - "x": 0.5941, - "y": 19.9042 - }, - { - "l": "98.0", - "x": 0.6133, - "y": 19.9524 - }, - { - "l": "98.0", - "x": 0.6324, - "y": 19.9968 - }, - { - "l": "98.0", - "x": 0.6516, - "y": 20.0381 - }, - { - "l": "98.0", - "x": 0.6708, - "y": 20.0773 - }, - { - "l": "98.0", - "x": 0.6899, - "y": 20.1176 - }, - { - "l": "98.0", - "x": 0.7091, - "y": 20.156 - }, - { - "l": "98.0", - "x": 0.7283, - "y": 20.1924 - }, - { - "l": "98.0", - "x": 0.7474, - "y": 20.2266 - }, - { - "l": "98.0", - "x": 0.7666, - "y": 20.258 - }, - { - "l": "98.0", - "x": 0.7858, - "y": 20.2871 - }, - { - "l": "98.0", - "x": 0.8049, - "y": 20.3139 - }, - { - "l": "98.0", - "x": 0.8241, - "y": 20.3385 - }, - { - "l": "98.0", - "x": 0.8433, - "y": 20.3603 - }, - { - "l": "98.0", - "x": 0.8624, - "y": 20.38 - }, - { - "l": "98.0", - "x": 0.8816, - "y": 20.3981 - }, - { - "l": "98.0", - "x": 0.9008, - "y": 20.4148 - }, - { - "l": "98.0", - "x": 0.9199, - "y": 20.4307 - }, - { - "l": "98.0", - "x": 0.9391, - "y": 20.4471 - }, - { - "l": "98.0", - "x": 0.9582, - "y": 20.4628 - }, - { - "l": "98.0", - "x": 0.9774, - "y": 20.4777 - }, - { - "l": "98.0", - "x": 0.9966, - "y": 20.4917 - }, - { - "l": "98.0", - "x": 1.0157, - "y": 20.5046 - }, - { - "l": "98.0", - "x": 1.0349, - "y": 20.5167 - }, - { - "l": "98.0", - "x": 1.0541, - "y": 20.5278 - }, - { - "l": "98.0", - "x": 1.0732, - "y": 20.538 - }, - { - "l": "98.0", - "x": 1.0924, - "y": 20.547 - }, - { - "l": "98.0", - "x": 1.1116, - "y": 20.5552 - }, - { - "l": "98.0", - "x": 1.1307, - "y": 20.5626 - }, - { - "l": "98.0", - "x": 1.1499, - "y": 20.5695 - }, - { - "l": "98.0", - "x": 1.1691, - "y": 20.576 - }, - { - "l": "98.0", - "x": 1.1882, - "y": 20.5828 - }, - { - "l": "98.0", - "x": 1.2074, - "y": 20.5892 - }, - { - "l": "98.0", - "x": 1.2266, - "y": 20.5953 - }, - { - "l": "98.0", - "x": 1.2457, - "y": 20.601 - }, - { - "l": "98.0", - "x": 1.2649, - "y": 20.6063 - }, - { - "l": "98.0", - "x": 1.2841, - "y": 20.6112 - }, - { - "l": "98.0", - "x": 1.3032, - "y": 20.6157 - }, - { - "l": "98.0", - "x": 1.3224, - "y": 20.6199 - }, - { - "l": "98.0", - "x": 1.3415, - "y": 20.6237 - }, - { - "l": "98.0", - "x": 1.3607, - "y": 20.6271 - }, - { - "l": "98.0", - "x": 1.3799, - "y": 20.6303 - }, - { - "l": "98.0", - "x": 1.399, - "y": 20.6332 - }, - { - "l": "98.0", - "x": 1.4182, - "y": 20.6361 - }, - { - "l": "98.0", - "x": 1.4374, - "y": 20.639 - }, - { - "l": "98.0", - "x": 1.4565, - "y": 20.6419 - }, - { - "l": "98.0", - "x": 1.4757, - "y": 20.6446 - }, - { - "l": "98.0", - "x": 1.4949, - "y": 20.6473 - }, - { - "l": "98.0", - "x": 1.514, - "y": 20.6498 - }, - { - "l": "98.0", - "x": 1.5332, - "y": 20.6522 - }, - { - "l": "98.0", - "x": 1.5524, - "y": 20.6544 - }, - { - "l": "98.0", - "x": 1.5715, - "y": 20.6566 - }, - { - "l": "98.0", - "x": 1.5907, - "y": 20.6585 - }, - { - "l": "98.0", - "x": 1.6099, - "y": 20.6603 - }, - { - "l": "98.0", - "x": 1.629, - "y": 20.662 - }, - { - "l": "98.0", - "x": 1.6482, - "y": 20.6636 - }, - { - "l": "98.0", - "x": 1.6674, - "y": 20.6651 - }, - { - "l": "98.0", - "x": 1.6865, - "y": 20.6668 - }, - { - "l": "98.0", - "x": 1.7057, - "y": 20.6684 - }, - { - "l": "98.0", - "x": 1.7248, - "y": 20.67 - }, - { - "l": "98.0", - "x": 1.744, - "y": 20.6716 - }, - { - "l": "98.0", - "x": 1.7632, - "y": 20.6731 - }, - { - "l": "98.0", - "x": 1.7823, - "y": 20.6746 - }, - { - "l": "98.0", - "x": 1.8015, - "y": 20.676 - }, - { - "l": "98.0", - "x": 1.8207, - "y": 20.6774 - }, - { - "l": "98.0", - "x": 1.8398, - "y": 20.6787 - }, - { - "l": "98.0", - "x": 1.859, - "y": 20.6799 - }, - { - "l": "98.0", - "x": 1.8782, - "y": 20.681 - }, - { - "l": "98.0", - "x": 1.8973, - "y": 20.6822 - }, - { - "l": "98.0", - "x": 1.9165, - "y": 20.6833 - }, - { - "l": "98.0", - "x": 1.9357, - "y": 20.6846 - }, - { - "l": "98.0", - "x": 1.9548, - "y": 20.6859 - }, - { - "l": "98.0", - "x": 1.974, - "y": 20.6872 - }, - { - "l": "98.0", - "x": 1.9932, - "y": 20.6885 - }, - { - "l": "98.0", - "x": 2.0123, - "y": 20.6897 - }, - { - "l": "98.0", - "x": 2.0957, - "y": 20.6948 - }, - { - "l": "98.0", - "x": 2.179, - "y": 20.6991 - }, - { - "l": "98.0", - "x": 2.2623, - "y": 20.7035 - }, - { - "l": "98.0", - "x": 2.3457, - "y": 20.7073 - }, - { - "l": "98.0", - "x": 2.429, - "y": 20.7106 - }, - { - "l": "98.0", - "x": 2.5123, - "y": 20.7142 - }, - { - "l": "98.0", - "x": 2.5957, - "y": 20.7181 - }, - { - "l": "98.0", - "x": 2.679, - "y": 20.7221 - }, - { - "l": "98.0", - "x": 2.7623, - "y": 20.7276 - }, - { - "l": "98.0", - "x": 2.8457, - "y": 20.7337 - }, - { - "l": "98.0", - "x": 2.929, - "y": 20.7403 - }, - { - "l": "98.0", - "x": 3.0123, - "y": 20.749 - }, - { - "l": "98.0", - "x": 3.0957, - "y": 20.7586 - }, - { - "l": "98.0", - "x": 3.179, - "y": 20.7685 - }, - { - "l": "98.0", - "x": 3.2623, - "y": 20.781 - }, - { - "l": "98.0", - "x": 3.3457, - "y": 20.7942 - }, - { - "l": "98.0", - "x": 3.429, - "y": 20.8073 - }, - { - "l": "98.0", - "x": 3.5123, - "y": 20.8231 - }, - { - "l": "98.0", - "x": 3.5957, - "y": 20.8397 - }, - { - "l": "98.0", - "x": 3.679, - "y": 20.8559 - }, - { - "l": "98.0", - "x": 3.7623, - "y": 20.8751 - }, - { - "l": "98.0", - "x": 3.8457, - "y": 20.8952 - }, - { - "l": "98.0", - "x": 3.929, - "y": 20.9145 - }, - { - "l": "98.0", - "x": 4.0123, - "y": 20.9376 - }, - { - "l": "98.0", - "x": 4.0957, - "y": 20.9612 - }, - { - "l": "98.0", - "x": 4.179, - "y": 20.984 - }, - { - "l": "98.0", - "x": 4.2623, - "y": 21.0107 - }, - { - "l": "98.0", - "x": 4.3457, - "y": 21.0381 - }, - { - "l": "98.0", - "x": 4.429, - "y": 21.0642 - }, - { - "l": "98.0", - "x": 4.5123, - "y": 21.0948 - }, - { - "l": "98.0", - "x": 4.5957, - "y": 21.1259 - }, - { - "l": "98.0", - "x": 4.679, - "y": 21.1557 - }, - { - "l": "98.0", - "x": 4.7623, - "y": 21.1905 - }, - { - "l": "98.0", - "x": 4.8457, - "y": 21.2259 - }, - { - "l": "98.0", - "x": 4.929, - "y": 21.2597 - }, - { - "l": "98.0", - "x": 5.0123, - "y": 21.299 - }, - { - "l": "98.0", - "x": 5.0957, - "y": 21.339 - }, - { - "l": "98.0", - "x": 5.179, - "y": 21.377 - }, - { - "l": "98.0", - "x": 5.2623, - "y": 21.4212 - }, - { - "l": "98.0", - "x": 5.3457, - "y": 21.4659 - }, - { - "l": "98.0", - "x": 5.429, - "y": 21.5083 - }, - { - "l": "98.0", - "x": 5.5123, - "y": 21.5575 - }, - { - "l": "98.0", - "x": 5.5957, - "y": 21.607 - }, - { - "l": "98.0", - "x": 5.679, - "y": 21.6537 - }, - { - "l": "98.0", - "x": 5.7623, - "y": 21.7077 - }, - { - "l": "98.0", - "x": 5.8457, - "y": 21.7618 - }, - { - "l": "98.0", - "x": 5.929, - "y": 21.8128 - }, - { - "l": "98.0", - "x": 6.0123, - "y": 21.8718 - }, - { - "l": "98.0", - "x": 6.0957, - "y": 21.9307 - }, - { - "l": "98.0", - "x": 6.179, - "y": 21.9862 - }, - { - "l": "98.0", - "x": 6.2623, - "y": 22.0501 - }, - { - "l": "98.0", - "x": 6.3457, - "y": 22.1139 - }, - { - "l": "98.0", - "x": 6.429, - "y": 22.1738 - }, - { - "l": "98.0", - "x": 6.5123, - "y": 22.2428 - }, - { - "l": "98.0", - "x": 6.5957, - "y": 22.3114 - }, - { - "l": "98.0", - "x": 6.679, - "y": 22.3755 - }, - { - "l": "98.0", - "x": 6.7623, - "y": 22.4491 - }, - { - "l": "98.0", - "x": 6.8457, - "y": 22.5222 - }, - { - "l": "98.0", - "x": 6.929, - "y": 22.5905 - }, - { - "l": "98.0", - "x": 7.0123, - "y": 22.6686 - }, - { - "l": "98.0", - "x": 7.0957, - "y": 22.7459 - }, - { - "l": "98.0", - "x": 7.179, - "y": 22.818 - }, - { - "l": "98.0", - "x": 7.2623, - "y": 22.9001 - }, - { - "l": "98.0", - "x": 7.3457, - "y": 22.9814 - }, - { - "l": "98.0", - "x": 7.429, - "y": 23.057 - }, - { - "l": "98.0", - "x": 7.5123, - "y": 23.1431 - }, - { - "l": "98.0", - "x": 7.5957, - "y": 23.2282 - }, - { - "l": "98.0", - "x": 7.679, - "y": 23.307 - }, - { - "l": "98.0", - "x": 7.7623, - "y": 23.3968 - }, - { - "l": "98.0", - "x": 7.8457, - "y": 23.4854 - }, - { - "l": "98.0", - "x": 7.929, - "y": 23.5674 - }, - { - "l": "98.0", - "x": 8.0123, - "y": 23.6606 - }, - { - "l": "98.0", - "x": 8.0957, - "y": 23.7523 - }, - { - "l": "98.0", - "x": 8.179, - "y": 23.8373 - }, - { - "l": "98.0", - "x": 8.2623, - "y": 23.9337 - }, - { - "l": "98.0", - "x": 8.3457, - "y": 24.0286 - }, - { - "l": "98.0", - "x": 8.429, - "y": 24.1162 - }, - { - "l": "98.0", - "x": 8.5123, - "y": 24.2156 - }, - { - "l": "98.0", - "x": 8.5957, - "y": 24.3134 - }, - { - "l": "98.0", - "x": 8.679, - "y": 24.4036 - }, - { - "l": "98.0", - "x": 8.7623, - "y": 24.5058 - }, - { - "l": "98.0", - "x": 8.8457, - "y": 24.6062 - }, - { - "l": "98.0", - "x": 8.929, - "y": 24.6989 - }, - { - "l": "98.0", - "x": 9.0123, - "y": 24.8038 - }, - { - "l": "98.0", - "x": 9.0957, - "y": 24.9068 - }, - { - "l": "98.0", - "x": 9.179, - "y": 25.0018 - }, - { - "l": "98.0", - "x": 9.2623, - "y": 25.1092 - }, - { - "l": "98.0", - "x": 9.3457, - "y": 25.2147 - }, - { - "l": "98.0", - "x": 9.429, - "y": 25.3119 - }, - { - "l": "98.0", - "x": 9.5123, - "y": 25.4218 - }, - { - "l": "98.0", - "x": 9.5957, - "y": 25.5295 - }, - { - "l": "98.0", - "x": 9.679, - "y": 25.6287 - }, - { - "l": "98.0", - "x": 9.7623, - "y": 25.7408 - }, - { - "l": "98.0", - "x": 9.8457, - "y": 25.8508 - }, - { - "l": "98.0", - "x": 9.929, - "y": 25.9519 - }, - { - "l": "98.0", - "x": 10.0123, - "y": 26.0663 - }, - { - "l": "98.0", - "x": 10.0957, - "y": 26.1783 - }, - { - "l": "98.0", - "x": 10.179, - "y": 26.2815 - }, - { - "l": "98.0", - "x": 10.2623, - "y": 26.3979 - }, - { - "l": "98.0", - "x": 10.3457, - "y": 26.512 - }, - { - "l": "98.0", - "x": 10.429, - "y": 26.6171 - }, - { - "l": "98.0", - "x": 10.5123, - "y": 26.7358 - }, - { - "l": "98.0", - "x": 10.5957, - "y": 26.852 - }, - { - "l": "98.0", - "x": 10.679, - "y": 26.959 - }, - { - "l": "98.0", - "x": 10.7623, - "y": 27.0796 - }, - { - "l": "98.0", - "x": 10.8457, - "y": 27.198 - }, - { - "l": "98.0", - "x": 10.929, - "y": 27.3068 - }, - { - "l": "98.0", - "x": 11.0123, - "y": 27.4295 - }, - { - "l": "98.0", - "x": 11.0957, - "y": 27.5499 - }, - { - "l": "98.0", - "x": 11.179, - "y": 27.6605 - }, - { - "l": "98.0", - "x": 11.2623, - "y": 27.7853 - }, - { - "l": "98.0", - "x": 11.3457, - "y": 27.9075 - }, - { - "l": "98.0", - "x": 11.429, - "y": 28.0198 - }, - { - "l": "98.0", - "x": 11.5123, - "y": 28.1466 - }, - { - "l": "98.0", - "x": 11.5957, - "y": 28.2707 - }, - { - "l": "98.0", - "x": 11.679, - "y": 28.3848 - }, - { - "l": "98.0", - "x": 11.7623, - "y": 28.5134 - }, - { - "l": "98.0", - "x": 11.8457, - "y": 28.6393 - }, - { - "l": "98.0", - "x": 11.929, - "y": 28.755 - }, - { - "l": "98.0", - "x": 12.0123, - "y": 28.8855 - }, - { - "l": "98.0", - "x": 12.0957, - "y": 29.0133 - }, - { - "l": "98.0", - "x": 12.179, - "y": 29.1307 - }, - { - "l": "98.0", - "x": 12.2623, - "y": 29.2629 - }, - { - "l": "98.0", - "x": 12.3457, - "y": 29.3925 - }, - { - "l": "98.0", - "x": 12.429, - "y": 29.5115 - }, - { - "l": "98.0", - "x": 12.5123, - "y": 29.6457 - }, - { - "l": "98.0", - "x": 12.5957, - "y": 29.7769 - }, - { - "l": "98.0", - "x": 12.679, - "y": 29.8976 - }, - { - "l": "98.0", - "x": 12.7623, - "y": 30.0336 - }, - { - "l": "98.0", - "x": 12.8457, - "y": 30.1665 - }, - { - "l": "98.0", - "x": 12.929, - "y": 30.2886 - }, - { - "l": "98.0", - "x": 13.0123, - "y": 30.4263 - }, - { - "l": "98.0", - "x": 13.0957, - "y": 30.561 - }, - { - "l": "98.0", - "x": 13.179, - "y": 30.6847 - }, - { - "l": "98.0", - "x": 13.2623, - "y": 30.8241 - }, - { - "l": "98.0", - "x": 13.3457, - "y": 30.9605 - }, - { - "l": "98.0", - "x": 13.429, - "y": 31.0858 - }, - { - "l": "98.0", - "x": 13.5123, - "y": 31.2269 - }, - { - "l": "98.0", - "x": 13.5957, - "y": 31.3648 - }, - { - "l": "98.0", - "x": 13.679, - "y": 31.4916 - }, - { - "l": "98.0", - "x": 13.7623, - "y": 31.6344 - }, - { - "l": "98.0", - "x": 13.8457, - "y": 31.774 - }, - { - "l": "98.0", - "x": 13.929, - "y": 31.9022 - }, - { - "l": "98.0", - "x": 14.0123, - "y": 32.0468 - }, - { - "l": "98.0", - "x": 14.0957, - "y": 32.1879 - }, - { - "l": "98.0", - "x": 14.179, - "y": 32.3176 - }, - { - "l": "98.0", - "x": 14.2623, - "y": 32.4637 - }, - { - "l": "98.0", - "x": 14.3457, - "y": 32.6065 - }, - { - "l": "98.0", - "x": 14.429, - "y": 32.7378 - }, - { - "l": "98.0", - "x": 14.5123, - "y": 32.8856 - }, - { - "l": "98.0", - "x": 14.5957, - "y": 33.03 - }, - { - "l": "98.0", - "x": 14.679, - "y": 33.1627 - }, - { - "l": "98.0", - "x": 14.7623, - "y": 33.3121 - }, - { - "l": "98.0", - "x": 14.8457, - "y": 33.4583 - }, - { - "l": "98.0", - "x": 14.929, - "y": 33.5925 - }, - { - "l": "98.0", - "x": 15.0123, - "y": 33.7437 - }, - { - "l": "98.0", - "x": 15.0957, - "y": 33.8916 - }, - { - "l": "98.0", - "x": 15.179, - "y": 34.0274 - }, - { - "l": "98.0", - "x": 15.2623, - "y": 34.1804 - }, - { - "l": "98.0", - "x": 15.3457, - "y": 34.3302 - }, - { - "l": "98.0", - "x": 15.429, - "y": 34.4675 - }, - { - "l": "98.0", - "x": 15.5123, - "y": 34.6226 - }, - { - "l": "98.0", - "x": 15.5957, - "y": 34.7741 - }, - { - "l": "98.0", - "x": 15.679, - "y": 34.9132 - }, - { - "l": "98.0", - "x": 15.7623, - "y": 35.0702 - }, - { - "l": "98.0", - "x": 15.8457, - "y": 35.2236 - }, - { - "l": "98.0", - "x": 15.929, - "y": 35.3646 - }, - { - "l": "98.0", - "x": 16.0123, - "y": 35.5237 - }, - { - "l": "98.0", - "x": 16.0957, - "y": 35.6793 - }, - { - "l": "98.0", - "x": 16.179, - "y": 35.8222 - }, - { - "l": "98.0", - "x": 16.2623, - "y": 35.9835 - }, - { - "l": "98.0", - "x": 16.3457, - "y": 36.1412 - }, - { - "l": "98.0", - "x": 16.429, - "y": 36.2862 - }, - { - "l": "98.0", - "x": 16.5123, - "y": 36.4497 - }, - { - "l": "98.0", - "x": 16.5957, - "y": 36.6097 - }, - { - "l": "98.0", - "x": 16.679, - "y": 36.757 - }, - { - "l": "98.0", - "x": 16.7623, - "y": 36.9229 - }, - { - "l": "98.0", - "x": 16.8457, - "y": 37.0855 - }, - { - "l": "98.0", - "x": 16.929, - "y": 37.235 - }, - { - "l": "98.0", - "x": 17.0123, - "y": 37.4036 - }, - { - "l": "98.0", - "x": 17.0957, - "y": 37.5687 - }, - { - "l": "98.0", - "x": 17.179, - "y": 37.7206 - }, - { - "l": "98.0", - "x": 17.2623, - "y": 37.8921 - }, - { - "l": "98.0", - "x": 17.3457, - "y": 38.0599 - }, - { - "l": "98.0", - "x": 17.429, - "y": 38.2145 - }, - { - "l": "98.0", - "x": 17.5123, - "y": 38.3889 - }, - { - "l": "98.0", - "x": 17.5957, - "y": 38.5597 - }, - { - "l": "98.0", - "x": 17.679, - "y": 38.717 - }, - { - "l": "98.0", - "x": 17.7623, - "y": 38.8946 - }, - { - "l": "98.0", - "x": 17.8457, - "y": 39.0685 - }, - { - "l": "98.0", - "x": 17.929, - "y": 39.2286 - }, - { - "l": "98.0", - "x": 18.0123, - "y": 39.4095 - }, - { - "l": "98.0", - "x": 18.0957, - "y": 39.5869 - }, - { - "l": "98.0", - "x": 18.179, - "y": 39.7501 - }, - { - "l": "98.0", - "x": 18.2623, - "y": 39.9346 - }, - { - "l": "98.0", - "x": 18.3457, - "y": 40.1155 - }, - { - "l": "98.0", - "x": 18.429, - "y": 40.2822 - }, - { - "l": "98.0", - "x": 18.5123, - "y": 40.4704 - }, - { - "l": "98.0", - "x": 18.5957, - "y": 40.6549 - }, - { - "l": "98.0", - "x": 18.679, - "y": 40.825 - }, - { - "l": "98.0", - "x": 18.7623, - "y": 41.0173 - }, - { - "l": "98.0", - "x": 18.8457, - "y": null - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 0.0, - "y": 16.1828 - }, - { - "l": "99.6", - "x": 0.0192, - "y": 16.5213 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 16.8564 - }, - { - "l": "99.6", - "x": 0.0575, - "y": 17.1882 - }, - { - "l": "99.6", - "x": 0.0767, - "y": 17.5167 - }, - { - "l": "99.6", - "x": 0.0958, - "y": 17.7722 - }, - { - "l": "99.6", - "x": 0.115, - "y": 17.99 - }, - { - "l": "99.6", - "x": 0.1342, - "y": 18.1882 - }, - { - "l": "99.6", - "x": 0.1533, - "y": 18.3726 - }, - { - "l": "99.6", - "x": 0.1725, - "y": 18.5508 - }, - { - "l": "99.6", - "x": 0.1916, - "y": 18.7404 - }, - { - "l": "99.6", - "x": 0.2108, - "y": 18.9239 - }, - { - "l": "99.6", - "x": 0.23, - "y": 19.1006 - }, - { - "l": "99.6", - "x": 0.2491, - "y": 19.2696 - }, - { - "l": "99.6", - "x": 0.2683, - "y": 19.4287 - }, - { - "l": "99.6", - "x": 0.2875, - "y": 19.5791 - }, - { - "l": "99.6", - "x": 0.3066, - "y": 19.7206 - }, - { - "l": "99.6", - "x": 0.3258, - "y": 19.8528 - }, - { - "l": "99.6", - "x": 0.345, - "y": 19.9708 - }, - { - "l": "99.6", - "x": 0.3641, - "y": 20.0788 - }, - { - "l": "99.6", - "x": 0.3833, - "y": 20.1798 - }, - { - "l": "99.6", - "x": 0.4025, - "y": 20.2753 - }, - { - "l": "99.6", - "x": 0.4216, - "y": 20.3675 - }, - { - "l": "99.6", - "x": 0.4408, - "y": 20.4629 - }, - { - "l": "99.6", - "x": 0.46, - "y": 20.5548 - }, - { - "l": "99.6", - "x": 0.4791, - "y": 20.6428 - }, - { - "l": "99.6", - "x": 0.4983, - "y": 20.7263 - }, - { - "l": "99.6", - "x": 0.5175, - "y": 20.8036 - }, - { - "l": "99.6", - "x": 0.5366, - "y": 20.8758 - }, - { - "l": "99.6", - "x": 0.5558, - "y": 20.9428 - }, - { - "l": "99.6", - "x": 0.5749, - "y": 21.0048 - }, - { - "l": "99.6", - "x": 0.5941, - "y": 21.0597 - }, - { - "l": "99.6", - "x": 0.6133, - "y": 21.1092 - }, - { - "l": "99.6", - "x": 0.6324, - "y": 21.1548 - }, - { - "l": "99.6", - "x": 0.6516, - "y": 21.1973 - }, - { - "l": "99.6", - "x": 0.6708, - "y": 21.2375 - }, - { - "l": "99.6", - "x": 0.6899, - "y": 21.2788 - }, - { - "l": "99.6", - "x": 0.7091, - "y": 21.3182 - }, - { - "l": "99.6", - "x": 0.7283, - "y": 21.3555 - }, - { - "l": "99.6", - "x": 0.7474, - "y": 21.3906 - }, - { - "l": "99.6", - "x": 0.7666, - "y": 21.4228 - }, - { - "l": "99.6", - "x": 0.7858, - "y": 21.4526 - }, - { - "l": "99.6", - "x": 0.8049, - "y": 21.4801 - }, - { - "l": "99.6", - "x": 0.8241, - "y": 21.5054 - }, - { - "l": "99.6", - "x": 0.8433, - "y": 21.5279 - }, - { - "l": "99.6", - "x": 0.8624, - "y": 21.5481 - }, - { - "l": "99.6", - "x": 0.8816, - "y": 21.5667 - }, - { - "l": "99.6", - "x": 0.9008, - "y": 21.584 - }, - { - "l": "99.6", - "x": 0.9199, - "y": 21.6003 - }, - { - "l": "99.6", - "x": 0.9391, - "y": 21.6173 - }, - { - "l": "99.6", - "x": 0.9582, - "y": 21.6336 - }, - { - "l": "99.6", - "x": 0.9774, - "y": 21.649 - }, - { - "l": "99.6", - "x": 0.9966, - "y": 21.6636 - }, - { - "l": "99.6", - "x": 1.0157, - "y": 21.6772 - }, - { - "l": "99.6", - "x": 1.0349, - "y": 21.6898 - }, - { - "l": "99.6", - "x": 1.0541, - "y": 21.7015 - }, - { - "l": "99.6", - "x": 1.0732, - "y": 21.7123 - }, - { - "l": "99.6", - "x": 1.0924, - "y": 21.7219 - }, - { - "l": "99.6", - "x": 1.1116, - "y": 21.7306 - }, - { - "l": "99.6", - "x": 1.1307, - "y": 21.7386 - }, - { - "l": "99.6", - "x": 1.1499, - "y": 21.746 - }, - { - "l": "99.6", - "x": 1.1691, - "y": 21.7531 - }, - { - "l": "99.6", - "x": 1.1882, - "y": 21.7605 - }, - { - "l": "99.6", - "x": 1.2074, - "y": 21.7676 - }, - { - "l": "99.6", - "x": 1.2266, - "y": 21.7743 - }, - { - "l": "99.6", - "x": 1.2457, - "y": 21.7808 - }, - { - "l": "99.6", - "x": 1.2649, - "y": 21.7868 - }, - { - "l": "99.6", - "x": 1.2841, - "y": 21.7924 - }, - { - "l": "99.6", - "x": 1.3032, - "y": 21.7977 - }, - { - "l": "99.6", - "x": 1.3224, - "y": 21.8027 - }, - { - "l": "99.6", - "x": 1.3415, - "y": 21.8072 - }, - { - "l": "99.6", - "x": 1.3607, - "y": 21.8114 - }, - { - "l": "99.6", - "x": 1.3799, - "y": 21.8153 - }, - { - "l": "99.6", - "x": 1.399, - "y": 21.8191 - }, - { - "l": "99.6", - "x": 1.4182, - "y": 21.8227 - }, - { - "l": "99.6", - "x": 1.4374, - "y": 21.8265 - }, - { - "l": "99.6", - "x": 1.4565, - "y": 21.8303 - }, - { - "l": "99.6", - "x": 1.4757, - "y": 21.8341 - }, - { - "l": "99.6", - "x": 1.4949, - "y": 21.8377 - }, - { - "l": "99.6", - "x": 1.514, - "y": 21.8413 - }, - { - "l": "99.6", - "x": 1.5332, - "y": 21.8448 - }, - { - "l": "99.6", - "x": 1.5524, - "y": 21.8481 - }, - { - "l": "99.6", - "x": 1.5715, - "y": 21.8514 - }, - { - "l": "99.6", - "x": 1.5907, - "y": 21.8544 - }, - { - "l": "99.6", - "x": 1.6099, - "y": 21.8572 - }, - { - "l": "99.6", - "x": 1.629, - "y": 21.8599 - }, - { - "l": "99.6", - "x": 1.6482, - "y": 21.8626 - }, - { - "l": "99.6", - "x": 1.6674, - "y": 21.8653 - }, - { - "l": "99.6", - "x": 1.6865, - "y": 21.8681 - }, - { - "l": "99.6", - "x": 1.7057, - "y": 21.871 - }, - { - "l": "99.6", - "x": 1.7248, - "y": 21.874 - }, - { - "l": "99.6", - "x": 1.744, - "y": 21.8769 - }, - { - "l": "99.6", - "x": 1.7632, - "y": 21.8798 - }, - { - "l": "99.6", - "x": 1.7823, - "y": 21.8828 - }, - { - "l": "99.6", - "x": 1.8015, - "y": 21.8856 - }, - { - "l": "99.6", - "x": 1.8207, - "y": 21.8885 - }, - { - "l": "99.6", - "x": 1.8398, - "y": 21.8911 - }, - { - "l": "99.6", - "x": 1.859, - "y": 21.8937 - }, - { - "l": "99.6", - "x": 1.8782, - "y": 21.8962 - }, - { - "l": "99.6", - "x": 1.8973, - "y": 21.8987 - }, - { - "l": "99.6", - "x": 1.9165, - "y": 21.9012 - }, - { - "l": "99.6", - "x": 1.9357, - "y": 21.904 - }, - { - "l": "99.6", - "x": 1.9548, - "y": 21.9069 - }, - { - "l": "99.6", - "x": 1.974, - "y": 21.9099 - }, - { - "l": "99.6", - "x": 1.9932, - "y": 21.9129 - }, - { - "l": "99.6", - "x": 2.0123, - "y": 21.9159 - }, - { - "l": "99.6", - "x": 2.0957, - "y": 21.9286 - }, - { - "l": "99.6", - "x": 2.179, - "y": 21.9401 - }, - { - "l": "99.6", - "x": 2.2623, - "y": 21.953 - }, - { - "l": "99.6", - "x": 2.3457, - "y": 21.9654 - }, - { - "l": "99.6", - "x": 2.429, - "y": 21.9769 - }, - { - "l": "99.6", - "x": 2.5123, - "y": 21.9901 - }, - { - "l": "99.6", - "x": 2.5957, - "y": 22.0037 - }, - { - "l": "99.6", - "x": 2.679, - "y": 22.0169 - }, - { - "l": "99.6", - "x": 2.7623, - "y": 22.033 - }, - { - "l": "99.6", - "x": 2.8457, - "y": 22.0498 - }, - { - "l": "99.6", - "x": 2.929, - "y": 22.0665 - }, - { - "l": "99.6", - "x": 3.0123, - "y": 22.0868 - }, - { - "l": "99.6", - "x": 3.0957, - "y": 22.1081 - }, - { - "l": "99.6", - "x": 3.179, - "y": 22.129 - }, - { - "l": "99.6", - "x": 3.2623, - "y": 22.1541 - }, - { - "l": "99.6", - "x": 3.3457, - "y": 22.1799 - }, - { - "l": "99.6", - "x": 3.429, - "y": 22.2048 - }, - { - "l": "99.6", - "x": 3.5123, - "y": 22.2342 - }, - { - "l": "99.6", - "x": 3.5957, - "y": 22.2644 - }, - { - "l": "99.6", - "x": 3.679, - "y": 22.2933 - }, - { - "l": "99.6", - "x": 3.7623, - "y": 22.3272 - }, - { - "l": "99.6", - "x": 3.8457, - "y": 22.3618 - }, - { - "l": "99.6", - "x": 3.929, - "y": 22.3948 - }, - { - "l": "99.6", - "x": 4.0123, - "y": 22.4335 - }, - { - "l": "99.6", - "x": 4.0957, - "y": 22.4728 - }, - { - "l": "99.6", - "x": 4.179, - "y": 22.5102 - }, - { - "l": "99.6", - "x": 4.2623, - "y": 22.5538 - }, - { - "l": "99.6", - "x": 4.3457, - "y": 22.5979 - }, - { - "l": "99.6", - "x": 4.429, - "y": 22.6397 - }, - { - "l": "99.6", - "x": 4.5123, - "y": 22.6883 - }, - { - "l": "99.6", - "x": 4.5957, - "y": 22.7374 - }, - { - "l": "99.6", - "x": 4.679, - "y": 22.784 - }, - { - "l": "99.6", - "x": 4.7623, - "y": 22.8381 - }, - { - "l": "99.6", - "x": 4.8457, - "y": 22.8927 - }, - { - "l": "99.6", - "x": 4.929, - "y": 22.9444 - }, - { - "l": "99.6", - "x": 5.0123, - "y": 23.0043 - }, - { - "l": "99.6", - "x": 5.0957, - "y": 23.0648 - }, - { - "l": "99.6", - "x": 5.179, - "y": 23.122 - }, - { - "l": "99.6", - "x": 5.2623, - "y": 23.1883 - }, - { - "l": "99.6", - "x": 5.3457, - "y": 23.2548 - }, - { - "l": "99.6", - "x": 5.429, - "y": 23.3177 - }, - { - "l": "99.6", - "x": 5.5123, - "y": 23.3904 - }, - { - "l": "99.6", - "x": 5.5957, - "y": 23.4632 - }, - { - "l": "99.6", - "x": 5.679, - "y": 23.5317 - }, - { - "l": "99.6", - "x": 5.7623, - "y": 23.6106 - }, - { - "l": "99.6", - "x": 5.8457, - "y": 23.6895 - }, - { - "l": "99.6", - "x": 5.929, - "y": 23.7638 - }, - { - "l": "99.6", - "x": 6.0123, - "y": 23.8493 - }, - { - "l": "99.6", - "x": 6.0957, - "y": 23.9346 - }, - { - "l": "99.6", - "x": 6.179, - "y": 24.0147 - }, - { - "l": "99.6", - "x": 6.2623, - "y": 24.1068 - }, - { - "l": "99.6", - "x": 6.3457, - "y": 24.1987 - }, - { - "l": "99.6", - "x": 6.429, - "y": 24.2848 - }, - { - "l": "99.6", - "x": 6.5123, - "y": 24.3837 - }, - { - "l": "99.6", - "x": 6.5957, - "y": 24.4821 - }, - { - "l": "99.6", - "x": 6.679, - "y": 24.574 - }, - { - "l": "99.6", - "x": 6.7623, - "y": 24.6794 - }, - { - "l": "99.6", - "x": 6.8457, - "y": 24.784 - }, - { - "l": "99.6", - "x": 6.929, - "y": 24.8817 - }, - { - "l": "99.6", - "x": 7.0123, - "y": 24.9934 - }, - { - "l": "99.6", - "x": 7.0957, - "y": 25.1041 - }, - { - "l": "99.6", - "x": 7.179, - "y": 25.2072 - }, - { - "l": "99.6", - "x": 7.2623, - "y": 25.3249 - }, - { - "l": "99.6", - "x": 7.3457, - "y": 25.4414 - }, - { - "l": "99.6", - "x": 7.429, - "y": 25.5497 - }, - { - "l": "99.6", - "x": 7.5123, - "y": 25.6732 - }, - { - "l": "99.6", - "x": 7.5957, - "y": 25.7955 - }, - { - "l": "99.6", - "x": 7.679, - "y": 25.9088 - }, - { - "l": "99.6", - "x": 7.7623, - "y": 26.038 - }, - { - "l": "99.6", - "x": 7.8457, - "y": 26.1656 - }, - { - "l": "99.6", - "x": 7.929, - "y": 26.284 - }, - { - "l": "99.6", - "x": 8.0123, - "y": 26.4185 - }, - { - "l": "99.6", - "x": 8.0957, - "y": 26.5513 - }, - { - "l": "99.6", - "x": 8.179, - "y": 26.6744 - }, - { - "l": "99.6", - "x": 8.2623, - "y": 26.8143 - }, - { - "l": "99.6", - "x": 8.3457, - "y": 26.9522 - }, - { - "l": "99.6", - "x": 8.429, - "y": 27.0798 - }, - { - "l": "99.6", - "x": 8.5123, - "y": 27.2248 - }, - { - "l": "99.6", - "x": 8.5957, - "y": 27.3677 - }, - { - "l": "99.6", - "x": 8.679, - "y": 27.4998 - }, - { - "l": "99.6", - "x": 8.7623, - "y": 27.6497 - }, - { - "l": "99.6", - "x": 8.8457, - "y": 27.7974 - }, - { - "l": "99.6", - "x": 8.929, - "y": 27.9339 - }, - { - "l": "99.6", - "x": 9.0123, - "y": 28.0887 - }, - { - "l": "99.6", - "x": 9.0957, - "y": 28.2412 - }, - { - "l": "99.6", - "x": 9.179, - "y": 28.3821 - }, - { - "l": "99.6", - "x": 9.2623, - "y": 28.5417 - }, - { - "l": "99.6", - "x": 9.3457, - "y": 28.6989 - }, - { - "l": "99.6", - "x": 9.429, - "y": 28.8441 - }, - { - "l": "99.6", - "x": 9.5123, - "y": 29.0087 - }, - { - "l": "99.6", - "x": 9.5957, - "y": 29.1705 - }, - { - "l": "99.6", - "x": 9.679, - "y": 29.3198 - }, - { - "l": "99.6", - "x": 9.7623, - "y": 29.4891 - }, - { - "l": "99.6", - "x": 9.8457, - "y": 29.6556 - }, - { - "l": "99.6", - "x": 9.929, - "y": 29.809 - }, - { - "l": "99.6", - "x": 10.0123, - "y": 29.9831 - }, - { - "l": "99.6", - "x": 10.0957, - "y": 30.1541 - }, - { - "l": "99.6", - "x": 10.179, - "y": 30.3121 - }, - { - "l": "99.6", - "x": 10.2623, - "y": 30.4909 - }, - { - "l": "99.6", - "x": 10.3457, - "y": 30.6666 - }, - { - "l": "99.6", - "x": 10.429, - "y": 30.829 - }, - { - "l": "99.6", - "x": 10.5123, - "y": 31.013 - }, - { - "l": "99.6", - "x": 10.5957, - "y": 31.1937 - }, - { - "l": "99.6", - "x": 10.679, - "y": 31.3607 - }, - { - "l": "99.6", - "x": 10.7623, - "y": 31.5495 - }, - { - "l": "99.6", - "x": 10.8457, - "y": 31.7353 - }, - { - "l": "99.6", - "x": 10.929, - "y": 31.9068 - }, - { - "l": "99.6", - "x": 11.0123, - "y": 32.1009 - }, - { - "l": "99.6", - "x": 11.0957, - "y": 32.2918 - }, - { - "l": "99.6", - "x": 11.179, - "y": 32.468 - }, - { - "l": "99.6", - "x": 11.2623, - "y": 32.6676 - }, - { - "l": "99.6", - "x": 11.3457, - "y": 32.8636 - }, - { - "l": "99.6", - "x": 11.429, - "y": 33.0447 - }, - { - "l": "99.6", - "x": 11.5123, - "y": 33.2496 - }, - { - "l": "99.6", - "x": 11.5957, - "y": 33.4512 - }, - { - "l": "99.6", - "x": 11.679, - "y": 33.6372 - }, - { - "l": "99.6", - "x": 11.7623, - "y": 33.8478 - }, - { - "l": "99.6", - "x": 11.8457, - "y": 34.0547 - }, - { - "l": "99.6", - "x": 11.929, - "y": 34.2458 - }, - { - "l": "99.6", - "x": 12.0123, - "y": 34.4622 - }, - { - "l": "99.6", - "x": 12.0957, - "y": 34.6751 - }, - { - "l": "99.6", - "x": 12.179, - "y": 34.8715 - }, - { - "l": "99.6", - "x": 12.2623, - "y": 35.0939 - }, - { - "l": "99.6", - "x": 12.3457, - "y": 35.3127 - }, - { - "l": "99.6", - "x": 12.429, - "y": 35.5146 - }, - { - "l": "99.6", - "x": 12.5123, - "y": 35.7435 - }, - { - "l": "99.6", - "x": 12.5957, - "y": 35.9685 - }, - { - "l": "99.6", - "x": 12.679, - "y": 36.1764 - }, - { - "l": "99.6", - "x": 12.7623, - "y": 36.412 - }, - { - "l": "99.6", - "x": 12.8457, - "y": 36.6434 - }, - { - "l": "99.6", - "x": 12.929, - "y": 36.8573 - }, - { - "l": "99.6", - "x": 13.0123, - "y": 37.0997 - }, - { - "l": "99.6", - "x": 13.0957, - "y": 37.3382 - }, - { - "l": "99.6", - "x": 13.179, - "y": 37.5585 - }, - { - "l": "99.6", - "x": 13.2623, - "y": 37.8082 - }, - { - "l": "99.6", - "x": 13.3457, - "y": 38.054 - }, - { - "l": "99.6", - "x": 13.429, - "y": 38.2812 - }, - { - "l": "99.6", - "x": 13.5123, - "y": 38.5386 - }, - { - "l": "99.6", - "x": 13.5957, - "y": 38.7918 - }, - { - "l": "99.6", - "x": 13.679, - "y": 39.0262 - }, - { - "l": "99.6", - "x": 13.7623, - "y": 39.2917 - }, - { - "l": "99.6", - "x": 13.8457, - "y": 39.5533 - }, - { - "l": "99.6", - "x": 13.929, - "y": 39.795 - }, - { - "l": "99.6", - "x": 14.0123, - "y": 40.0694 - }, - { - "l": "99.6", - "x": 14.0957, - "y": 40.3394 - }, - { - "l": "99.6", - "x": 14.179, - "y": 40.5892 - }, - { - "l": "99.6", - "x": 14.2623, - "y": 40.8728 - }, - { - "l": "99.6", - "x": 14.3457, - "y": 41.1521 - }, - { - "l": "99.6", - "x": 14.429, - "y": 41.4106 - }, - { - "l": "99.6", - "x": 14.5123, - "y": 41.704 - }, - { - "l": "99.6", - "x": 14.5957, - "y": 41.9932 - }, - { - "l": "99.6", - "x": 14.679, - "y": 42.2608 - }, - { - "l": "99.6", - "x": 14.7623, - "y": 42.5648 - }, - { - "l": "99.6", - "x": 14.8457, - "y": 42.8648 - }, - { - "l": "99.6", - "x": 14.929, - "y": 43.1424 - }, - { - "l": "99.6", - "x": 15.0123, - "y": 43.458 - }, - { - "l": "99.6", - "x": 15.0957, - "y": 43.7693 - }, - { - "l": "99.6", - "x": 15.179, - "y": 44.0577 - }, - { - "l": "99.6", - "x": 15.2623, - "y": 44.3857 - }, - { - "l": "99.6", - "x": 15.3457, - "y": 44.7097 - }, - { - "l": "99.6", - "x": 15.429, - "y": 45.0098 - }, - { - "l": "99.6", - "x": 15.5123, - "y": 45.3517 - }, - { - "l": "99.6", - "x": 15.5957, - "y": 45.6892 - }, - { - "l": "99.6", - "x": 15.679, - "y": 46.0023 - }, - { - "l": "99.6", - "x": 15.7623, - "y": 46.359 - }, - { - "l": "99.6", - "x": 15.8457, - "y": 46.7113 - }, - { - "l": "99.6", - "x": 15.929, - "y": 47.0386 - }, - { - "l": "99.6", - "x": 16.0123, - "y": 47.4117 - }, - { - "l": "99.6", - "x": 16.0957, - "y": 47.7807 - }, - { - "l": "99.6", - "x": 16.179, - "y": 48.1235 - }, - { - "l": "99.6", - "x": 16.2623, - "y": 48.5145 - }, - { - "l": "99.6", - "x": 16.3457, - "y": 48.9017 - }, - { - "l": "99.6", - "x": 16.429, - "y": 49.2618 - }, - { - "l": "99.6", - "x": 16.5123, - "y": 49.6728 - }, - { - "l": "99.6", - "x": 16.5957, - "y": 50.0802 - }, - { - "l": "99.6", - "x": 16.679, - "y": 50.4595 - }, - { - "l": "99.6", - "x": 16.7623, - "y": 50.8927 - }, - { - "l": "99.6", - "x": 16.8457, - "y": 51.3226 - }, - { - "l": "99.6", - "x": 16.929, - "y": 51.7232 - }, - { - "l": "99.6", - "x": 17.0123, - "y": 52.1813 - }, - { - "l": "99.6", - "x": 17.0957, - "y": 52.6364 - }, - { - "l": "99.6", - "x": 17.179, - "y": 53.0608 - }, - { - "l": "99.6", - "x": 17.2623, - "y": 53.5467 - }, - { - "l": "99.6", - "x": 17.3457, - "y": 54.0298 - }, - { - "l": "99.6", - "x": 17.429, - "y": 54.481 - }, - { - "l": "99.6", - "x": 17.5123, - "y": 54.9982 - }, - { - "l": "99.6", - "x": 17.5957, - "y": 55.5131 - }, - { - "l": "99.6", - "x": 17.679, - "y": 55.9947 - }, - { - "l": "99.6", - "x": 17.7623, - "y": 56.5473 - }, - { - "l": "99.6", - "x": 17.8457, - "y": 57.0983 - }, - { - "l": "99.6", - "x": 17.929, - "y": 57.6141 - }, - { - "l": "99.6", - "x": 18.0123, - "y": 58.2072 - }, - { - "l": "99.6", - "x": 18.0957, - "y": 58.7995 - }, - { - "l": "99.6", - "x": 18.179, - "y": 59.3548 - }, - { - "l": "99.6", - "x": 18.2623, - "y": 59.9941 - }, - { - "l": "99.6", - "x": 18.3457, - "y": 60.6339 - }, - { - "l": "99.6", - "x": 18.429, - "y": 61.2349 - }, - { - "l": "99.6", - "x": 18.5123, - "y": 61.9275 - }, - { - "l": "99.6", - "x": 18.5957, - "y": 62.6212 - }, - { - "l": "99.6", - "x": 18.679, - "y": 63.2747 - }, - { - "l": "99.6", - "x": 18.7623, - "y": 64.0297 - }, - { - "l": "99.6", - "x": 18.8457, - "y": null - } - ] - } - ] - }, - "female": null - } - } - ] -}; - -var trisomy21WeightMaleCentileData = { - "centile_data": [ - { - "trisomy-21": { - "male": { - "height": null, - "weight": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 0.0, - "y": 1.889 - }, - { - "l": "0.4", - "x": 0.0192, - "y": 1.988 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 2.0874 - }, - { - "l": "0.4", - "x": 0.0575, - "y": 2.1872 - }, - { - "l": "0.4", - "x": 0.0767, - "y": 2.2876 - }, - { - "l": "0.4", - "x": 0.0958, - "y": 2.3812 - }, - { - "l": "0.4", - "x": 0.115, - "y": 2.4726 - }, - { - "l": "0.4", - "x": 0.1342, - "y": 2.5641 - }, - { - "l": "0.4", - "x": 0.1533, - "y": 2.6566 - }, - { - "l": "0.4", - "x": 0.1725, - "y": 2.7522 - }, - { - "l": "0.4", - "x": 0.1916, - "y": 2.8559 - }, - { - "l": "0.4", - "x": 0.2108, - "y": 2.9616 - }, - { - "l": "0.4", - "x": 0.23, - "y": 3.0684 - }, - { - "l": "0.4", - "x": 0.2491, - "y": 3.1753 - }, - { - "l": "0.4", - "x": 0.2683, - "y": 3.2812 - }, - { - "l": "0.4", - "x": 0.2875, - "y": 3.3856 - }, - { - "l": "0.4", - "x": 0.3066, - "y": 3.488 - }, - { - "l": "0.4", - "x": 0.3258, - "y": 3.5875 - }, - { - "l": "0.4", - "x": 0.345, - "y": 3.6792 - }, - { - "l": "0.4", - "x": 0.3641, - "y": 3.7664 - }, - { - "l": "0.4", - "x": 0.3833, - "y": 3.8513 - }, - { - "l": "0.4", - "x": 0.4025, - "y": 3.9349 - }, - { - "l": "0.4", - "x": 0.4216, - "y": 4.0188 - }, - { - "l": "0.4", - "x": 0.4408, - "y": 4.108 - }, - { - "l": "0.4", - "x": 0.46, - "y": 4.1969 - }, - { - "l": "0.4", - "x": 0.4791, - "y": 4.285 - }, - { - "l": "0.4", - "x": 0.4983, - "y": 4.3716 - }, - { - "l": "0.4", - "x": 0.5175, - "y": 4.4554 - }, - { - "l": "0.4", - "x": 0.5366, - "y": 4.5366 - }, - { - "l": "0.4", - "x": 0.5558, - "y": 4.6149 - }, - { - "l": "0.4", - "x": 0.5749, - "y": 4.6901 - }, - { - "l": "0.4", - "x": 0.5941, - "y": 4.7588 - }, - { - "l": "0.4", - "x": 0.6133, - "y": 4.8233 - }, - { - "l": "0.4", - "x": 0.6324, - "y": 4.8854 - }, - { - "l": "0.4", - "x": 0.6516, - "y": 4.9459 - }, - { - "l": "0.4", - "x": 0.6708, - "y": 5.006 - }, - { - "l": "0.4", - "x": 0.6899, - "y": 5.0698 - }, - { - "l": "0.4", - "x": 0.7091, - "y": 5.1332 - }, - { - "l": "0.4", - "x": 0.7283, - "y": 5.1959 - }, - { - "l": "0.4", - "x": 0.7474, - "y": 5.2574 - }, - { - "l": "0.4", - "x": 0.7666, - "y": 5.3171 - }, - { - "l": "0.4", - "x": 0.7858, - "y": 5.3749 - }, - { - "l": "0.4", - "x": 0.8049, - "y": 5.4309 - }, - { - "l": "0.4", - "x": 0.8241, - "y": 5.4846 - }, - { - "l": "0.4", - "x": 0.8433, - "y": 5.5341 - }, - { - "l": "0.4", - "x": 0.8624, - "y": 5.5805 - }, - { - "l": "0.4", - "x": 0.8816, - "y": 5.6254 - }, - { - "l": "0.4", - "x": 0.9008, - "y": 5.6695 - }, - { - "l": "0.4", - "x": 0.9199, - "y": 5.7132 - }, - { - "l": "0.4", - "x": 0.9391, - "y": 5.7601 - }, - { - "l": "0.4", - "x": 0.9582, - "y": 5.8069 - }, - { - "l": "0.4", - "x": 0.9774, - "y": 5.8535 - }, - { - "l": "0.4", - "x": 0.9966, - "y": 5.8995 - }, - { - "l": "0.4", - "x": 1.0157, - "y": 5.9444 - }, - { - "l": "0.4", - "x": 1.0349, - "y": 5.9882 - }, - { - "l": "0.4", - "x": 1.0541, - "y": 6.0308 - }, - { - "l": "0.4", - "x": 1.0732, - "y": 6.072 - }, - { - "l": "0.4", - "x": 1.0924, - "y": 6.1102 - }, - { - "l": "0.4", - "x": 1.1116, - "y": 6.1461 - }, - { - "l": "0.4", - "x": 1.1307, - "y": 6.181 - }, - { - "l": "0.4", - "x": 1.1499, - "y": 6.2155 - }, - { - "l": "0.4", - "x": 1.1691, - "y": 6.2498 - }, - { - "l": "0.4", - "x": 1.1882, - "y": 6.2867 - }, - { - "l": "0.4", - "x": 1.2074, - "y": 6.3239 - }, - { - "l": "0.4", - "x": 1.2266, - "y": 6.361 - }, - { - "l": "0.4", - "x": 1.2457, - "y": 6.3979 - }, - { - "l": "0.4", - "x": 1.2649, - "y": 6.4341 - }, - { - "l": "0.4", - "x": 1.2841, - "y": 6.4697 - }, - { - "l": "0.4", - "x": 1.3032, - "y": 6.5045 - }, - { - "l": "0.4", - "x": 1.3224, - "y": 6.5383 - }, - { - "l": "0.4", - "x": 1.3415, - "y": 6.5698 - }, - { - "l": "0.4", - "x": 1.3607, - "y": 6.5996 - }, - { - "l": "0.4", - "x": 1.3799, - "y": 6.6286 - }, - { - "l": "0.4", - "x": 1.399, - "y": 6.6574 - }, - { - "l": "0.4", - "x": 1.4182, - "y": 6.6863 - }, - { - "l": "0.4", - "x": 1.4374, - "y": 6.7172 - }, - { - "l": "0.4", - "x": 1.4565, - "y": 6.7486 - }, - { - "l": "0.4", - "x": 1.4757, - "y": 6.78 - }, - { - "l": "0.4", - "x": 1.4949, - "y": 6.8114 - }, - { - "l": "0.4", - "x": 1.514, - "y": 6.8424 - }, - { - "l": "0.4", - "x": 1.5332, - "y": 6.873 - }, - { - "l": "0.4", - "x": 1.5524, - "y": 6.9029 - }, - { - "l": "0.4", - "x": 1.5715, - "y": 6.9321 - }, - { - "l": "0.4", - "x": 1.5907, - "y": 6.9595 - }, - { - "l": "0.4", - "x": 1.6099, - "y": 6.9854 - }, - { - "l": "0.4", - "x": 1.629, - "y": 7.0107 - }, - { - "l": "0.4", - "x": 1.6482, - "y": 7.0359 - }, - { - "l": "0.4", - "x": 1.6674, - "y": 7.0612 - }, - { - "l": "0.4", - "x": 1.6865, - "y": 7.0884 - }, - { - "l": "0.4", - "x": 1.7057, - "y": 7.1161 - }, - { - "l": "0.4", - "x": 1.7248, - "y": 7.144 - }, - { - "l": "0.4", - "x": 1.744, - "y": 7.1719 - }, - { - "l": "0.4", - "x": 1.7632, - "y": 7.1997 - }, - { - "l": "0.4", - "x": 1.7823, - "y": 7.2271 - }, - { - "l": "0.4", - "x": 1.8015, - "y": 7.2541 - }, - { - "l": "0.4", - "x": 1.8207, - "y": 7.2806 - }, - { - "l": "0.4", - "x": 1.8398, - "y": 7.3056 - }, - { - "l": "0.4", - "x": 1.859, - "y": 7.3292 - }, - { - "l": "0.4", - "x": 1.8782, - "y": 7.3525 - }, - { - "l": "0.4", - "x": 1.8973, - "y": 7.3757 - }, - { - "l": "0.4", - "x": 1.9165, - "y": 7.3991 - }, - { - "l": "0.4", - "x": 1.9357, - "y": 7.4243 - }, - { - "l": "0.4", - "x": 1.9548, - "y": 7.4502 - }, - { - "l": "0.4", - "x": 1.974, - "y": 7.4763 - }, - { - "l": "0.4", - "x": 1.9932, - "y": 7.5026 - }, - { - "l": "0.4", - "x": 2.0123, - "y": 7.5289 - }, - { - "l": "0.4", - "x": 2.0957, - "y": 7.6385 - }, - { - "l": "0.4", - "x": 2.179, - "y": 7.7382 - }, - { - "l": "0.4", - "x": 2.2623, - "y": 7.8494 - }, - { - "l": "0.4", - "x": 2.3457, - "y": 7.9571 - }, - { - "l": "0.4", - "x": 2.429, - "y": 8.0551 - }, - { - "l": "0.4", - "x": 2.5123, - "y": 8.1649 - }, - { - "l": "0.4", - "x": 2.5957, - "y": 8.2717 - }, - { - "l": "0.4", - "x": 2.679, - "y": 8.3693 - }, - { - "l": "0.4", - "x": 2.7623, - "y": 8.4786 - }, - { - "l": "0.4", - "x": 2.8457, - "y": 8.5845 - }, - { - "l": "0.4", - "x": 2.929, - "y": 8.6808 - }, - { - "l": "0.4", - "x": 3.0123, - "y": 8.7883 - }, - { - "l": "0.4", - "x": 3.0957, - "y": 8.8924 - }, - { - "l": "0.4", - "x": 3.179, - "y": 8.9871 - }, - { - "l": "0.4", - "x": 3.2623, - "y": 9.0926 - }, - { - "l": "0.4", - "x": 3.3457, - "y": 9.1946 - }, - { - "l": "0.4", - "x": 3.429, - "y": 9.2873 - }, - { - "l": "0.4", - "x": 3.5123, - "y": 9.3907 - }, - { - "l": "0.4", - "x": 3.5957, - "y": 9.4906 - }, - { - "l": "0.4", - "x": 3.679, - "y": 9.5813 - }, - { - "l": "0.4", - "x": 3.7623, - "y": 9.6826 - }, - { - "l": "0.4", - "x": 3.8457, - "y": 9.7812 - }, - { - "l": "0.4", - "x": 3.929, - "y": 9.8714 - }, - { - "l": "0.4", - "x": 4.0123, - "y": 9.9727 - }, - { - "l": "0.4", - "x": 4.0957, - "y": 10.0714 - }, - { - "l": "0.4", - "x": 4.179, - "y": 10.1617 - }, - { - "l": "0.4", - "x": 4.2623, - "y": 10.2629 - }, - { - "l": "0.4", - "x": 4.3457, - "y": 10.3612 - }, - { - "l": "0.4", - "x": 4.429, - "y": 10.4508 - }, - { - "l": "0.4", - "x": 4.5123, - "y": 10.5512 - }, - { - "l": "0.4", - "x": 4.5957, - "y": 10.649 - }, - { - "l": "0.4", - "x": 4.679, - "y": 10.7387 - }, - { - "l": "0.4", - "x": 4.7623, - "y": 10.8399 - }, - { - "l": "0.4", - "x": 4.8457, - "y": 10.9388 - }, - { - "l": "0.4", - "x": 4.929, - "y": 11.0298 - }, - { - "l": "0.4", - "x": 5.0123, - "y": 11.1324 - }, - { - "l": "0.4", - "x": 5.0957, - "y": 11.2327 - }, - { - "l": "0.4", - "x": 5.179, - "y": 11.3251 - }, - { - "l": "0.4", - "x": 5.2623, - "y": 11.4294 - }, - { - "l": "0.4", - "x": 5.3457, - "y": 11.5315 - }, - { - "l": "0.4", - "x": 5.429, - "y": 11.6254 - }, - { - "l": "0.4", - "x": 5.5123, - "y": 11.7312 - }, - { - "l": "0.4", - "x": 5.5957, - "y": 11.8347 - }, - { - "l": "0.4", - "x": 5.679, - "y": 11.9296 - }, - { - "l": "0.4", - "x": 5.7623, - "y": 12.0366 - }, - { - "l": "0.4", - "x": 5.8457, - "y": 12.1412 - }, - { - "l": "0.4", - "x": 5.929, - "y": 12.2375 - }, - { - "l": "0.4", - "x": 6.0123, - "y": 12.3464 - }, - { - "l": "0.4", - "x": 6.0957, - "y": 12.4533 - }, - { - "l": "0.4", - "x": 6.179, - "y": 12.552 - }, - { - "l": "0.4", - "x": 6.2623, - "y": 12.6638 - }, - { - "l": "0.4", - "x": 6.3457, - "y": 12.7737 - }, - { - "l": "0.4", - "x": 6.429, - "y": 12.8753 - }, - { - "l": "0.4", - "x": 6.5123, - "y": 12.9903 - }, - { - "l": "0.4", - "x": 6.5957, - "y": 13.1033 - }, - { - "l": "0.4", - "x": 6.679, - "y": 13.2075 - }, - { - "l": "0.4", - "x": 6.7623, - "y": 13.3253 - }, - { - "l": "0.4", - "x": 6.8457, - "y": 13.4407 - }, - { - "l": "0.4", - "x": 6.929, - "y": 13.5468 - }, - { - "l": "0.4", - "x": 7.0123, - "y": 13.6663 - }, - { - "l": "0.4", - "x": 7.0957, - "y": 13.7828 - }, - { - "l": "0.4", - "x": 7.179, - "y": 13.8895 - }, - { - "l": "0.4", - "x": 7.2623, - "y": 14.0093 - }, - { - "l": "0.4", - "x": 7.3457, - "y": 14.1259 - }, - { - "l": "0.4", - "x": 7.429, - "y": 14.2327 - }, - { - "l": "0.4", - "x": 7.5123, - "y": 14.3529 - }, - { - "l": "0.4", - "x": 7.5957, - "y": 14.4702 - }, - { - "l": "0.4", - "x": 7.679, - "y": 14.5778 - }, - { - "l": "0.4", - "x": 7.7623, - "y": 14.699 - }, - { - "l": "0.4", - "x": 7.8457, - "y": 14.8173 - }, - { - "l": "0.4", - "x": 7.929, - "y": 14.9261 - }, - { - "l": "0.4", - "x": 8.0123, - "y": 15.0487 - }, - { - "l": "0.4", - "x": 8.0957, - "y": 15.1688 - }, - { - "l": "0.4", - "x": 8.179, - "y": 15.2795 - }, - { - "l": "0.4", - "x": 8.2623, - "y": 15.4045 - }, - { - "l": "0.4", - "x": 8.3457, - "y": 15.5271 - }, - { - "l": "0.4", - "x": 8.429, - "y": 15.64 - }, - { - "l": "0.4", - "x": 8.5123, - "y": 15.7676 - }, - { - "l": "0.4", - "x": 8.5957, - "y": 15.8926 - }, - { - "l": "0.4", - "x": 8.679, - "y": 16.0077 - }, - { - "l": "0.4", - "x": 8.7623, - "y": 16.1378 - }, - { - "l": "0.4", - "x": 8.8457, - "y": 16.2655 - }, - { - "l": "0.4", - "x": 8.929, - "y": 16.3834 - }, - { - "l": "0.4", - "x": 9.0123, - "y": 16.5169 - }, - { - "l": "0.4", - "x": 9.0957, - "y": 16.648 - }, - { - "l": "0.4", - "x": 9.179, - "y": 16.7692 - }, - { - "l": "0.4", - "x": 9.2623, - "y": 16.9063 - }, - { - "l": "0.4", - "x": 9.3457, - "y": 17.041 - }, - { - "l": "0.4", - "x": 9.429, - "y": 17.1652 - }, - { - "l": "0.4", - "x": 9.5123, - "y": 17.3057 - }, - { - "l": "0.4", - "x": 9.5957, - "y": 17.4433 - }, - { - "l": "0.4", - "x": 9.679, - "y": 17.5702 - }, - { - "l": "0.4", - "x": 9.7623, - "y": 17.7135 - }, - { - "l": "0.4", - "x": 9.8457, - "y": 17.8542 - }, - { - "l": "0.4", - "x": 9.929, - "y": 17.9838 - }, - { - "l": "0.4", - "x": 10.0123, - "y": 18.1308 - }, - { - "l": "0.4", - "x": 10.0957, - "y": 18.2755 - }, - { - "l": "0.4", - "x": 10.179, - "y": 18.4095 - }, - { - "l": "0.4", - "x": 10.2623, - "y": 18.5617 - }, - { - "l": "0.4", - "x": 10.3457, - "y": 18.7121 - }, - { - "l": "0.4", - "x": 10.429, - "y": 18.8517 - }, - { - "l": "0.4", - "x": 10.5123, - "y": 19.0109 - }, - { - "l": "0.4", - "x": 10.5957, - "y": 19.1685 - }, - { - "l": "0.4", - "x": 10.679, - "y": 19.3152 - }, - { - "l": "0.4", - "x": 10.7623, - "y": 19.4825 - }, - { - "l": "0.4", - "x": 10.8457, - "y": 19.6484 - }, - { - "l": "0.4", - "x": 10.929, - "y": 19.8029 - }, - { - "l": "0.4", - "x": 11.0123, - "y": 19.9792 - }, - { - "l": "0.4", - "x": 11.0957, - "y": 20.154 - }, - { - "l": "0.4", - "x": 11.179, - "y": 20.317 - }, - { - "l": "0.4", - "x": 11.2623, - "y": 20.5033 - }, - { - "l": "0.4", - "x": 11.3457, - "y": 20.6883 - }, - { - "l": "0.4", - "x": 11.429, - "y": 20.8612 - }, - { - "l": "0.4", - "x": 11.5123, - "y": 21.0592 - }, - { - "l": "0.4", - "x": 11.5957, - "y": 21.2561 - }, - { - "l": "0.4", - "x": 11.679, - "y": 21.4402 - }, - { - "l": "0.4", - "x": 11.7623, - "y": 21.6511 - }, - { - "l": "0.4", - "x": 11.8457, - "y": 21.861 - }, - { - "l": "0.4", - "x": 11.929, - "y": 22.0575 - }, - { - "l": "0.4", - "x": 12.0123, - "y": 22.2831 - }, - { - "l": "0.4", - "x": 12.0957, - "y": 22.5078 - }, - { - "l": "0.4", - "x": 12.179, - "y": 22.7177 - }, - { - "l": "0.4", - "x": 12.2623, - "y": 22.9583 - }, - { - "l": "0.4", - "x": 12.3457, - "y": 23.1974 - }, - { - "l": "0.4", - "x": 12.429, - "y": 23.4207 - }, - { - "l": "0.4", - "x": 12.5123, - "y": 23.6761 - }, - { - "l": "0.4", - "x": 12.5957, - "y": 23.9294 - }, - { - "l": "0.4", - "x": 12.679, - "y": 24.1652 - }, - { - "l": "0.4", - "x": 12.7623, - "y": 24.434 - }, - { - "l": "0.4", - "x": 12.8457, - "y": 24.699 - }, - { - "l": "0.4", - "x": 12.929, - "y": 24.9449 - }, - { - "l": "0.4", - "x": 13.0123, - "y": 25.2241 - }, - { - "l": "0.4", - "x": 13.0957, - "y": 25.4991 - }, - { - "l": "0.4", - "x": 13.179, - "y": 25.7536 - }, - { - "l": "0.4", - "x": 13.2623, - "y": 26.0423 - }, - { - "l": "0.4", - "x": 13.3457, - "y": 26.3262 - }, - { - "l": "0.4", - "x": 13.429, - "y": 26.5885 - }, - { - "l": "0.4", - "x": 13.5123, - "y": 26.885 - }, - { - "l": "0.4", - "x": 13.5957, - "y": 27.1756 - }, - { - "l": "0.4", - "x": 13.679, - "y": 27.4429 - }, - { - "l": "0.4", - "x": 13.7623, - "y": 27.7439 - }, - { - "l": "0.4", - "x": 13.8457, - "y": 28.0378 - }, - { - "l": "0.4", - "x": 13.929, - "y": 28.307 - }, - { - "l": "0.4", - "x": 14.0123, - "y": 28.6093 - }, - { - "l": "0.4", - "x": 14.0957, - "y": 28.9034 - }, - { - "l": "0.4", - "x": 14.179, - "y": 29.1722 - }, - { - "l": "0.4", - "x": 14.2623, - "y": 29.4736 - }, - { - "l": "0.4", - "x": 14.3457, - "y": 29.7667 - }, - { - "l": "0.4", - "x": 14.429, - "y": 30.0345 - }, - { - "l": "0.4", - "x": 14.5123, - "y": 30.3347 - }, - { - "l": "0.4", - "x": 14.5957, - "y": 30.6265 - }, - { - "l": "0.4", - "x": 14.679, - "y": 30.8929 - }, - { - "l": "0.4", - "x": 14.7623, - "y": 31.1912 - }, - { - "l": "0.4", - "x": 14.8457, - "y": 31.4811 - }, - { - "l": "0.4", - "x": 14.929, - "y": 31.7456 - }, - { - "l": "0.4", - "x": 15.0123, - "y": 32.0418 - }, - { - "l": "0.4", - "x": 15.0957, - "y": 32.3295 - }, - { - "l": "0.4", - "x": 15.179, - "y": 32.5922 - }, - { - "l": "0.4", - "x": 15.2623, - "y": 32.8864 - }, - { - "l": "0.4", - "x": 15.3457, - "y": 33.1722 - }, - { - "l": "0.4", - "x": 15.429, - "y": 33.4333 - }, - { - "l": "0.4", - "x": 15.5123, - "y": 33.7259 - }, - { - "l": "0.4", - "x": 15.5957, - "y": 34.0106 - }, - { - "l": "0.4", - "x": 15.679, - "y": 34.2707 - }, - { - "l": "0.4", - "x": 15.7623, - "y": 34.5622 - }, - { - "l": "0.4", - "x": 15.8457, - "y": 34.8461 - }, - { - "l": "0.4", - "x": 15.929, - "y": 35.1052 - }, - { - "l": "0.4", - "x": 16.0123, - "y": 35.3955 - }, - { - "l": "0.4", - "x": 16.0957, - "y": 35.6775 - }, - { - "l": "0.4", - "x": 16.179, - "y": 35.9349 - }, - { - "l": "0.4", - "x": 16.2623, - "y": 36.2233 - }, - { - "l": "0.4", - "x": 16.3457, - "y": 36.5035 - }, - { - "l": "0.4", - "x": 16.429, - "y": 36.7594 - }, - { - "l": "0.4", - "x": 16.5123, - "y": 37.046 - }, - { - "l": "0.4", - "x": 16.5957, - "y": 37.3245 - }, - { - "l": "0.4", - "x": 16.679, - "y": 37.5791 - }, - { - "l": "0.4", - "x": 16.7623, - "y": 37.8643 - }, - { - "l": "0.4", - "x": 16.8457, - "y": 38.1416 - }, - { - "l": "0.4", - "x": 16.929, - "y": 38.395 - }, - { - "l": "0.4", - "x": 17.0123, - "y": 38.6787 - }, - { - "l": "0.4", - "x": 17.0957, - "y": 38.9539 - }, - { - "l": "0.4", - "x": 17.179, - "y": 39.2054 - }, - { - "l": "0.4", - "x": 17.2623, - "y": 39.4873 - }, - { - "l": "0.4", - "x": 17.3457, - "y": 39.7601 - }, - { - "l": "0.4", - "x": 17.429, - "y": 40.0095 - }, - { - "l": "0.4", - "x": 17.5123, - "y": 40.2884 - }, - { - "l": "0.4", - "x": 17.5957, - "y": 40.5586 - }, - { - "l": "0.4", - "x": 17.679, - "y": 40.8048 - }, - { - "l": "0.4", - "x": 17.7623, - "y": 41.0807 - }, - { - "l": "0.4", - "x": 17.8457, - "y": 41.3478 - }, - { - "l": "0.4", - "x": 17.929, - "y": 41.5913 - }, - { - "l": "0.4", - "x": 18.0123, - "y": 41.8635 - }, - { - "l": "0.4", - "x": 18.0957, - "y": 42.1272 - }, - { - "l": "0.4", - "x": 18.179, - "y": 42.3673 - }, - { - "l": "0.4", - "x": 18.2623, - "y": 42.6363 - }, - { - "l": "0.4", - "x": 18.3457, - "y": 42.8957 - }, - { - "l": "0.4", - "x": 18.429, - "y": 43.1323 - }, - { - "l": "0.4", - "x": 18.5123, - "y": 43.3983 - }, - { - "l": "0.4", - "x": 18.5957, - "y": 43.6556 - }, - { - "l": "0.4", - "x": 18.679, - "y": 43.889 - }, - { - "l": "0.4", - "x": 18.7623, - "y": 44.1502 - }, - { - "l": "0.4", - "x": 18.8457, - "y": 44.4031 - }, - { - "l": "0.4", - "x": 18.929, - "y": 44.6337 - }, - { - "l": "0.4", - "x": 19.0123, - "y": 44.8895 - }, - { - "l": "0.4", - "x": 19.0957, - "y": 45.1394 - }, - { - "l": "0.4", - "x": 19.179, - "y": 45.3675 - }, - { - "l": "0.4", - "x": 19.2623, - "y": 45.6181 - }, - { - "l": "0.4", - "x": 19.3457, - "y": 45.8625 - }, - { - "l": "0.4", - "x": 19.429, - "y": 46.0864 - }, - { - "l": "0.4", - "x": 19.5123, - "y": 46.3383 - }, - { - "l": "0.4", - "x": 19.5957, - "y": 46.5839 - }, - { - "l": "0.4", - "x": 19.679, - "y": 46.8077 - }, - { - "l": "0.4", - "x": 19.7623, - "y": 47.0555 - }, - { - "l": "0.4", - "x": 19.8457, - "y": 47.2965 - }, - { - "l": "0.4", - "x": 19.929, - "y": 47.5162 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 0.0, - "y": 2.1608 - }, - { - "l": "2.0", - "x": 0.0192, - "y": 2.2721 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 2.3838 - }, - { - "l": "2.0", - "x": 0.0575, - "y": 2.4958 - }, - { - "l": "2.0", - "x": 0.0767, - "y": 2.6082 - }, - { - "l": "2.0", - "x": 0.0958, - "y": 2.713 - }, - { - "l": "2.0", - "x": 0.115, - "y": 2.8151 - }, - { - "l": "2.0", - "x": 0.1342, - "y": 2.9172 - }, - { - "l": "2.0", - "x": 0.1533, - "y": 3.0205 - }, - { - "l": "2.0", - "x": 0.1725, - "y": 3.127 - }, - { - "l": "2.0", - "x": 0.1916, - "y": 3.2425 - }, - { - "l": "2.0", - "x": 0.2108, - "y": 3.36 - }, - { - "l": "2.0", - "x": 0.23, - "y": 3.4785 - }, - { - "l": "2.0", - "x": 0.2491, - "y": 3.5972 - }, - { - "l": "2.0", - "x": 0.2683, - "y": 3.7145 - }, - { - "l": "2.0", - "x": 0.2875, - "y": 3.83 - }, - { - "l": "2.0", - "x": 0.3066, - "y": 3.9432 - }, - { - "l": "2.0", - "x": 0.3258, - "y": 4.0531 - }, - { - "l": "2.0", - "x": 0.345, - "y": 4.1541 - }, - { - "l": "2.0", - "x": 0.3641, - "y": 4.2501 - }, - { - "l": "2.0", - "x": 0.3833, - "y": 4.3436 - }, - { - "l": "2.0", - "x": 0.4025, - "y": 4.4355 - }, - { - "l": "2.0", - "x": 0.4216, - "y": 4.5276 - }, - { - "l": "2.0", - "x": 0.4408, - "y": 4.6254 - }, - { - "l": "2.0", - "x": 0.46, - "y": 4.7228 - }, - { - "l": "2.0", - "x": 0.4791, - "y": 4.8192 - }, - { - "l": "2.0", - "x": 0.4983, - "y": 4.9139 - }, - { - "l": "2.0", - "x": 0.5175, - "y": 5.0054 - }, - { - "l": "2.0", - "x": 0.5366, - "y": 5.0939 - }, - { - "l": "2.0", - "x": 0.5558, - "y": 5.1793 - }, - { - "l": "2.0", - "x": 0.5749, - "y": 5.2612 - }, - { - "l": "2.0", - "x": 0.5941, - "y": 5.3359 - }, - { - "l": "2.0", - "x": 0.6133, - "y": 5.406 - }, - { - "l": "2.0", - "x": 0.6324, - "y": 5.4735 - }, - { - "l": "2.0", - "x": 0.6516, - "y": 5.5392 - }, - { - "l": "2.0", - "x": 0.6708, - "y": 5.6043 - }, - { - "l": "2.0", - "x": 0.6899, - "y": 5.6735 - }, - { - "l": "2.0", - "x": 0.7091, - "y": 5.7423 - }, - { - "l": "2.0", - "x": 0.7283, - "y": 5.8101 - }, - { - "l": "2.0", - "x": 0.7474, - "y": 5.8768 - }, - { - "l": "2.0", - "x": 0.7666, - "y": 5.9413 - }, - { - "l": "2.0", - "x": 0.7858, - "y": 6.0039 - }, - { - "l": "2.0", - "x": 0.8049, - "y": 6.0644 - }, - { - "l": "2.0", - "x": 0.8241, - "y": 6.1225 - }, - { - "l": "2.0", - "x": 0.8433, - "y": 6.1759 - }, - { - "l": "2.0", - "x": 0.8624, - "y": 6.2261 - }, - { - "l": "2.0", - "x": 0.8816, - "y": 6.2746 - }, - { - "l": "2.0", - "x": 0.9008, - "y": 6.3222 - }, - { - "l": "2.0", - "x": 0.9199, - "y": 6.3694 - }, - { - "l": "2.0", - "x": 0.9391, - "y": 6.4201 - }, - { - "l": "2.0", - "x": 0.9582, - "y": 6.4707 - }, - { - "l": "2.0", - "x": 0.9774, - "y": 6.5209 - }, - { - "l": "2.0", - "x": 0.9966, - "y": 6.5706 - }, - { - "l": "2.0", - "x": 1.0157, - "y": 6.6191 - }, - { - "l": "2.0", - "x": 1.0349, - "y": 6.6664 - }, - { - "l": "2.0", - "x": 1.0541, - "y": 6.7125 - }, - { - "l": "2.0", - "x": 1.0732, - "y": 6.7569 - }, - { - "l": "2.0", - "x": 1.0924, - "y": 6.7982 - }, - { - "l": "2.0", - "x": 1.1116, - "y": 6.837 - }, - { - "l": "2.0", - "x": 1.1307, - "y": 6.8747 - }, - { - "l": "2.0", - "x": 1.1499, - "y": 6.9119 - }, - { - "l": "2.0", - "x": 1.1691, - "y": 6.9491 - }, - { - "l": "2.0", - "x": 1.1882, - "y": 6.989 - }, - { - "l": "2.0", - "x": 1.2074, - "y": 7.0291 - }, - { - "l": "2.0", - "x": 1.2266, - "y": 7.0693 - }, - { - "l": "2.0", - "x": 1.2457, - "y": 7.1091 - }, - { - "l": "2.0", - "x": 1.2649, - "y": 7.1483 - }, - { - "l": "2.0", - "x": 1.2841, - "y": 7.1868 - }, - { - "l": "2.0", - "x": 1.3032, - "y": 7.2244 - }, - { - "l": "2.0", - "x": 1.3224, - "y": 7.261 - }, - { - "l": "2.0", - "x": 1.3415, - "y": 7.2951 - }, - { - "l": "2.0", - "x": 1.3607, - "y": 7.3273 - }, - { - "l": "2.0", - "x": 1.3799, - "y": 7.3588 - }, - { - "l": "2.0", - "x": 1.399, - "y": 7.3899 - }, - { - "l": "2.0", - "x": 1.4182, - "y": 7.4212 - }, - { - "l": "2.0", - "x": 1.4374, - "y": 7.4547 - }, - { - "l": "2.0", - "x": 1.4565, - "y": 7.4887 - }, - { - "l": "2.0", - "x": 1.4757, - "y": 7.5228 - }, - { - "l": "2.0", - "x": 1.4949, - "y": 7.5568 - }, - { - "l": "2.0", - "x": 1.514, - "y": 7.5904 - }, - { - "l": "2.0", - "x": 1.5332, - "y": 7.6235 - }, - { - "l": "2.0", - "x": 1.5524, - "y": 7.656 - }, - { - "l": "2.0", - "x": 1.5715, - "y": 7.6876 - }, - { - "l": "2.0", - "x": 1.5907, - "y": 7.7174 - }, - { - "l": "2.0", - "x": 1.6099, - "y": 7.7454 - }, - { - "l": "2.0", - "x": 1.629, - "y": 7.7729 - }, - { - "l": "2.0", - "x": 1.6482, - "y": 7.8002 - }, - { - "l": "2.0", - "x": 1.6674, - "y": 7.8277 - }, - { - "l": "2.0", - "x": 1.6865, - "y": 7.8572 - }, - { - "l": "2.0", - "x": 1.7057, - "y": 7.8873 - }, - { - "l": "2.0", - "x": 1.7248, - "y": 7.9176 - }, - { - "l": "2.0", - "x": 1.744, - "y": 7.9479 - }, - { - "l": "2.0", - "x": 1.7632, - "y": 7.978 - }, - { - "l": "2.0", - "x": 1.7823, - "y": 8.0079 - }, - { - "l": "2.0", - "x": 1.8015, - "y": 8.0372 - }, - { - "l": "2.0", - "x": 1.8207, - "y": 8.066 - }, - { - "l": "2.0", - "x": 1.8398, - "y": 8.0932 - }, - { - "l": "2.0", - "x": 1.859, - "y": 8.1188 - }, - { - "l": "2.0", - "x": 1.8782, - "y": 8.1441 - }, - { - "l": "2.0", - "x": 1.8973, - "y": 8.1693 - }, - { - "l": "2.0", - "x": 1.9165, - "y": 8.1948 - }, - { - "l": "2.0", - "x": 1.9357, - "y": 8.2222 - }, - { - "l": "2.0", - "x": 1.9548, - "y": 8.2504 - }, - { - "l": "2.0", - "x": 1.974, - "y": 8.2789 - }, - { - "l": "2.0", - "x": 1.9932, - "y": 8.3075 - }, - { - "l": "2.0", - "x": 2.0123, - "y": 8.3361 - }, - { - "l": "2.0", - "x": 2.0957, - "y": 8.4555 - }, - { - "l": "2.0", - "x": 2.179, - "y": 8.5642 - }, - { - "l": "2.0", - "x": 2.2623, - "y": 8.6856 - }, - { - "l": "2.0", - "x": 2.3457, - "y": 8.8031 - }, - { - "l": "2.0", - "x": 2.429, - "y": 8.9103 - }, - { - "l": "2.0", - "x": 2.5123, - "y": 9.0305 - }, - { - "l": "2.0", - "x": 2.5957, - "y": 9.1475 - }, - { - "l": "2.0", - "x": 2.679, - "y": 9.2546 - }, - { - "l": "2.0", - "x": 2.7623, - "y": 9.3746 - }, - { - "l": "2.0", - "x": 2.8457, - "y": 9.491 - }, - { - "l": "2.0", - "x": 2.929, - "y": 9.597 - }, - { - "l": "2.0", - "x": 3.0123, - "y": 9.7155 - }, - { - "l": "2.0", - "x": 3.0957, - "y": 9.8303 - }, - { - "l": "2.0", - "x": 3.179, - "y": 9.9348 - }, - { - "l": "2.0", - "x": 3.2623, - "y": 10.0514 - }, - { - "l": "2.0", - "x": 3.3457, - "y": 10.1644 - }, - { - "l": "2.0", - "x": 3.429, - "y": 10.2671 - }, - { - "l": "2.0", - "x": 3.5123, - "y": 10.3817 - }, - { - "l": "2.0", - "x": 3.5957, - "y": 10.4926 - }, - { - "l": "2.0", - "x": 3.679, - "y": 10.5935 - }, - { - "l": "2.0", - "x": 3.7623, - "y": 10.7063 - }, - { - "l": "2.0", - "x": 3.8457, - "y": 10.816 - }, - { - "l": "2.0", - "x": 3.929, - "y": 10.9166 - }, - { - "l": "2.0", - "x": 4.0123, - "y": 11.0296 - }, - { - "l": "2.0", - "x": 4.0957, - "y": 11.1399 - }, - { - "l": "2.0", - "x": 4.179, - "y": 11.241 - }, - { - "l": "2.0", - "x": 4.2623, - "y": 11.3543 - }, - { - "l": "2.0", - "x": 4.3457, - "y": 11.4644 - }, - { - "l": "2.0", - "x": 4.429, - "y": 11.565 - }, - { - "l": "2.0", - "x": 4.5123, - "y": 11.6777 - }, - { - "l": "2.0", - "x": 4.5957, - "y": 11.7877 - }, - { - "l": "2.0", - "x": 4.679, - "y": 11.8888 - }, - { - "l": "2.0", - "x": 4.7623, - "y": 12.0028 - }, - { - "l": "2.0", - "x": 4.8457, - "y": 12.1144 - }, - { - "l": "2.0", - "x": 4.929, - "y": 12.2171 - }, - { - "l": "2.0", - "x": 5.0123, - "y": 12.333 - }, - { - "l": "2.0", - "x": 5.0957, - "y": 12.4466 - }, - { - "l": "2.0", - "x": 5.179, - "y": 12.5512 - }, - { - "l": "2.0", - "x": 5.2623, - "y": 12.6693 - }, - { - "l": "2.0", - "x": 5.3457, - "y": 12.785 - }, - { - "l": "2.0", - "x": 5.429, - "y": 12.8915 - }, - { - "l": "2.0", - "x": 5.5123, - "y": 13.0116 - }, - { - "l": "2.0", - "x": 5.5957, - "y": 13.129 - }, - { - "l": "2.0", - "x": 5.679, - "y": 13.2369 - }, - { - "l": "2.0", - "x": 5.7623, - "y": 13.3585 - }, - { - "l": "2.0", - "x": 5.8457, - "y": 13.4774 - }, - { - "l": "2.0", - "x": 5.929, - "y": 13.587 - }, - { - "l": "2.0", - "x": 6.0123, - "y": 13.7109 - }, - { - "l": "2.0", - "x": 6.0957, - "y": 13.8325 - }, - { - "l": "2.0", - "x": 6.179, - "y": 13.945 - }, - { - "l": "2.0", - "x": 6.2623, - "y": 14.0724 - }, - { - "l": "2.0", - "x": 6.3457, - "y": 14.1976 - }, - { - "l": "2.0", - "x": 6.429, - "y": 14.3134 - }, - { - "l": "2.0", - "x": 6.5123, - "y": 14.4445 - }, - { - "l": "2.0", - "x": 6.5957, - "y": 14.5734 - }, - { - "l": "2.0", - "x": 6.679, - "y": 14.6923 - }, - { - "l": "2.0", - "x": 6.7623, - "y": 14.8267 - }, - { - "l": "2.0", - "x": 6.8457, - "y": 14.9583 - }, - { - "l": "2.0", - "x": 6.929, - "y": 15.0794 - }, - { - "l": "2.0", - "x": 7.0123, - "y": 15.2157 - }, - { - "l": "2.0", - "x": 7.0957, - "y": 15.3487 - }, - { - "l": "2.0", - "x": 7.179, - "y": 15.4705 - }, - { - "l": "2.0", - "x": 7.2623, - "y": 15.6072 - }, - { - "l": "2.0", - "x": 7.3457, - "y": 15.7404 - }, - { - "l": "2.0", - "x": 7.429, - "y": 15.8624 - }, - { - "l": "2.0", - "x": 7.5123, - "y": 15.9996 - }, - { - "l": "2.0", - "x": 7.5957, - "y": 16.1336 - }, - { - "l": "2.0", - "x": 7.679, - "y": 16.2565 - }, - { - "l": "2.0", - "x": 7.7623, - "y": 16.3948 - }, - { - "l": "2.0", - "x": 7.8457, - "y": 16.53 - }, - { - "l": "2.0", - "x": 7.929, - "y": 16.6542 - }, - { - "l": "2.0", - "x": 8.0123, - "y": 16.7943 - }, - { - "l": "2.0", - "x": 8.0957, - "y": 16.9314 - }, - { - "l": "2.0", - "x": 8.179, - "y": 17.0578 - }, - { - "l": "2.0", - "x": 8.2623, - "y": 17.2005 - }, - { - "l": "2.0", - "x": 8.3457, - "y": 17.3405 - }, - { - "l": "2.0", - "x": 8.429, - "y": 17.4694 - }, - { - "l": "2.0", - "x": 8.5123, - "y": 17.6149 - }, - { - "l": "2.0", - "x": 8.5957, - "y": 17.7575 - }, - { - "l": "2.0", - "x": 8.679, - "y": 17.8888 - }, - { - "l": "2.0", - "x": 8.7623, - "y": 18.0372 - }, - { - "l": "2.0", - "x": 8.8457, - "y": 18.1828 - }, - { - "l": "2.0", - "x": 8.929, - "y": 18.3171 - }, - { - "l": "2.0", - "x": 9.0123, - "y": 18.4691 - }, - { - "l": "2.0", - "x": 9.0957, - "y": 18.6185 - }, - { - "l": "2.0", - "x": 9.179, - "y": 18.7564 - }, - { - "l": "2.0", - "x": 9.2623, - "y": 18.9125 - }, - { - "l": "2.0", - "x": 9.3457, - "y": 19.0657 - }, - { - "l": "2.0", - "x": 9.429, - "y": 19.207 - }, - { - "l": "2.0", - "x": 9.5123, - "y": 19.3667 - }, - { - "l": "2.0", - "x": 9.5957, - "y": 19.5233 - }, - { - "l": "2.0", - "x": 9.679, - "y": 19.6675 - }, - { - "l": "2.0", - "x": 9.7623, - "y": 19.8304 - }, - { - "l": "2.0", - "x": 9.8457, - "y": 19.9903 - }, - { - "l": "2.0", - "x": 9.929, - "y": 20.1377 - }, - { - "l": "2.0", - "x": 10.0123, - "y": 20.3048 - }, - { - "l": "2.0", - "x": 10.0957, - "y": 20.4692 - }, - { - "l": "2.0", - "x": 10.179, - "y": 20.6215 - }, - { - "l": "2.0", - "x": 10.2623, - "y": 20.7945 - }, - { - "l": "2.0", - "x": 10.3457, - "y": 20.9654 - }, - { - "l": "2.0", - "x": 10.429, - "y": 21.1241 - }, - { - "l": "2.0", - "x": 10.5123, - "y": 21.305 - }, - { - "l": "2.0", - "x": 10.5957, - "y": 21.4841 - }, - { - "l": "2.0", - "x": 10.679, - "y": 21.6509 - }, - { - "l": "2.0", - "x": 10.7623, - "y": 21.8411 - }, - { - "l": "2.0", - "x": 10.8457, - "y": 22.0296 - }, - { - "l": "2.0", - "x": 10.929, - "y": 22.2052 - }, - { - "l": "2.0", - "x": 11.0123, - "y": 22.4056 - }, - { - "l": "2.0", - "x": 11.0957, - "y": 22.6043 - }, - { - "l": "2.0", - "x": 11.179, - "y": 22.7895 - }, - { - "l": "2.0", - "x": 11.2623, - "y": 23.0012 - }, - { - "l": "2.0", - "x": 11.3457, - "y": 23.2114 - }, - { - "l": "2.0", - "x": 11.429, - "y": 23.4077 - }, - { - "l": "2.0", - "x": 11.5123, - "y": 23.6324 - }, - { - "l": "2.0", - "x": 11.5957, - "y": 23.8556 - }, - { - "l": "2.0", - "x": 11.679, - "y": 24.0643 - }, - { - "l": "2.0", - "x": 11.7623, - "y": 24.3031 - }, - { - "l": "2.0", - "x": 11.8457, - "y": 24.5405 - }, - { - "l": "2.0", - "x": 11.929, - "y": 24.7626 - }, - { - "l": "2.0", - "x": 12.0123, - "y": 25.0171 - }, - { - "l": "2.0", - "x": 12.0957, - "y": 25.2703 - }, - { - "l": "2.0", - "x": 12.179, - "y": 25.5066 - }, - { - "l": "2.0", - "x": 12.2623, - "y": 25.777 - }, - { - "l": "2.0", - "x": 12.3457, - "y": 26.0455 - }, - { - "l": "2.0", - "x": 12.429, - "y": 26.2957 - }, - { - "l": "2.0", - "x": 12.5123, - "y": 26.5815 - }, - { - "l": "2.0", - "x": 12.5957, - "y": 26.8644 - }, - { - "l": "2.0", - "x": 12.679, - "y": 27.1273 - }, - { - "l": "2.0", - "x": 12.7623, - "y": 27.4264 - }, - { - "l": "2.0", - "x": 12.8457, - "y": 27.7209 - }, - { - "l": "2.0", - "x": 12.929, - "y": 27.9935 - }, - { - "l": "2.0", - "x": 13.0123, - "y": 28.3026 - }, - { - "l": "2.0", - "x": 13.0957, - "y": 28.6065 - }, - { - "l": "2.0", - "x": 13.179, - "y": 28.887 - }, - { - "l": "2.0", - "x": 13.2623, - "y": 29.2045 - }, - { - "l": "2.0", - "x": 13.3457, - "y": 29.5161 - }, - { - "l": "2.0", - "x": 13.429, - "y": 29.8033 - }, - { - "l": "2.0", - "x": 13.5123, - "y": 30.1273 - }, - { - "l": "2.0", - "x": 13.5957, - "y": 30.4441 - }, - { - "l": "2.0", - "x": 13.679, - "y": 30.7348 - }, - { - "l": "2.0", - "x": 13.7623, - "y": 31.0615 - }, - { - "l": "2.0", - "x": 13.8457, - "y": 31.3796 - }, - { - "l": "2.0", - "x": 13.929, - "y": 31.6704 - }, - { - "l": "2.0", - "x": 14.0123, - "y": 31.996 - }, - { - "l": "2.0", - "x": 14.0957, - "y": 32.3121 - }, - { - "l": "2.0", - "x": 14.179, - "y": 32.6003 - }, - { - "l": "2.0", - "x": 14.2623, - "y": 32.9226 - }, - { - "l": "2.0", - "x": 14.3457, - "y": 33.2353 - }, - { - "l": "2.0", - "x": 14.429, - "y": 33.5202 - }, - { - "l": "2.0", - "x": 14.5123, - "y": 33.8389 - }, - { - "l": "2.0", - "x": 14.5957, - "y": 34.1478 - }, - { - "l": "2.0", - "x": 14.679, - "y": 34.4291 - }, - { - "l": "2.0", - "x": 14.7623, - "y": 34.7435 - }, - { - "l": "2.0", - "x": 14.8457, - "y": 35.0483 - }, - { - "l": "2.0", - "x": 14.929, - "y": 35.3258 - }, - { - "l": "2.0", - "x": 15.0123, - "y": 35.6358 - }, - { - "l": "2.0", - "x": 15.0957, - "y": 35.9362 - }, - { - "l": "2.0", - "x": 15.179, - "y": 36.2099 - }, - { - "l": "2.0", - "x": 15.2623, - "y": 36.5158 - }, - { - "l": "2.0", - "x": 15.3457, - "y": 36.8123 - }, - { - "l": "2.0", - "x": 15.429, - "y": 37.0827 - }, - { - "l": "2.0", - "x": 15.5123, - "y": 37.385 - }, - { - "l": "2.0", - "x": 15.5957, - "y": 37.6786 - }, - { - "l": "2.0", - "x": 15.679, - "y": 37.9462 - }, - { - "l": "2.0", - "x": 15.7623, - "y": 38.2456 - }, - { - "l": "2.0", - "x": 15.8457, - "y": 38.5367 - }, - { - "l": "2.0", - "x": 15.929, - "y": 38.8018 - }, - { - "l": "2.0", - "x": 16.0123, - "y": 39.0984 - }, - { - "l": "2.0", - "x": 16.0957, - "y": 39.3859 - }, - { - "l": "2.0", - "x": 16.179, - "y": 39.648 - }, - { - "l": "2.0", - "x": 16.2623, - "y": 39.9413 - }, - { - "l": "2.0", - "x": 16.3457, - "y": 40.2257 - }, - { - "l": "2.0", - "x": 16.429, - "y": 40.4852 - }, - { - "l": "2.0", - "x": 16.5123, - "y": 40.7753 - }, - { - "l": "2.0", - "x": 16.5957, - "y": 41.0569 - }, - { - "l": "2.0", - "x": 16.679, - "y": 41.314 - }, - { - "l": "2.0", - "x": 16.7623, - "y": 41.6016 - }, - { - "l": "2.0", - "x": 16.8457, - "y": 41.8808 - }, - { - "l": "2.0", - "x": 16.929, - "y": 42.1358 - }, - { - "l": "2.0", - "x": 17.0123, - "y": 42.4209 - }, - { - "l": "2.0", - "x": 17.0957, - "y": 42.6971 - }, - { - "l": "2.0", - "x": 17.179, - "y": 42.9494 - }, - { - "l": "2.0", - "x": 17.2623, - "y": 43.2318 - }, - { - "l": "2.0", - "x": 17.3457, - "y": 43.5049 - }, - { - "l": "2.0", - "x": 17.429, - "y": 43.7544 - }, - { - "l": "2.0", - "x": 17.5123, - "y": 44.0332 - }, - { - "l": "2.0", - "x": 17.5957, - "y": 44.303 - }, - { - "l": "2.0", - "x": 17.679, - "y": 44.5488 - }, - { - "l": "2.0", - "x": 17.7623, - "y": 44.8239 - }, - { - "l": "2.0", - "x": 17.8457, - "y": 45.0903 - }, - { - "l": "2.0", - "x": 17.929, - "y": 45.3328 - }, - { - "l": "2.0", - "x": 18.0123, - "y": 45.6039 - }, - { - "l": "2.0", - "x": 18.0957, - "y": 45.8664 - }, - { - "l": "2.0", - "x": 18.179, - "y": 46.1053 - }, - { - "l": "2.0", - "x": 18.2623, - "y": 46.3729 - }, - { - "l": "2.0", - "x": 18.3457, - "y": 46.6308 - }, - { - "l": "2.0", - "x": 18.429, - "y": 46.8661 - }, - { - "l": "2.0", - "x": 18.5123, - "y": 47.1304 - }, - { - "l": "2.0", - "x": 18.5957, - "y": 47.3859 - }, - { - "l": "2.0", - "x": 18.679, - "y": 47.6178 - }, - { - "l": "2.0", - "x": 18.7623, - "y": 47.8772 - }, - { - "l": "2.0", - "x": 18.8457, - "y": 48.1282 - }, - { - "l": "2.0", - "x": 18.929, - "y": 48.357 - }, - { - "l": "2.0", - "x": 19.0123, - "y": 48.6109 - }, - { - "l": "2.0", - "x": 19.0957, - "y": 48.8587 - }, - { - "l": "2.0", - "x": 19.179, - "y": 49.085 - }, - { - "l": "2.0", - "x": 19.2623, - "y": 49.3336 - }, - { - "l": "2.0", - "x": 19.3457, - "y": 49.5759 - }, - { - "l": "2.0", - "x": 19.429, - "y": 49.7979 - }, - { - "l": "2.0", - "x": 19.5123, - "y": 50.0475 - }, - { - "l": "2.0", - "x": 19.5957, - "y": 50.2909 - }, - { - "l": "2.0", - "x": 19.679, - "y": 50.5126 - }, - { - "l": "2.0", - "x": 19.7623, - "y": 50.7581 - }, - { - "l": "2.0", - "x": 19.8457, - "y": 50.9969 - }, - { - "l": "2.0", - "x": 19.929, - "y": 51.2145 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 0.0, - "y": 2.4458 - }, - { - "l": "9.0", - "x": 0.0192, - "y": 2.57 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 2.6946 - }, - { - "l": "9.0", - "x": 0.0575, - "y": 2.8193 - }, - { - "l": "9.0", - "x": 0.0767, - "y": 2.9443 - }, - { - "l": "9.0", - "x": 0.0958, - "y": 3.0608 - }, - { - "l": "9.0", - "x": 0.115, - "y": 3.1742 - }, - { - "l": "9.0", - "x": 0.1342, - "y": 3.2875 - }, - { - "l": "9.0", - "x": 0.1533, - "y": 3.402 - }, - { - "l": "9.0", - "x": 0.1725, - "y": 3.5199 - }, - { - "l": "9.0", - "x": 0.1916, - "y": 3.6477 - }, - { - "l": "9.0", - "x": 0.2108, - "y": 3.7776 - }, - { - "l": "9.0", - "x": 0.23, - "y": 3.9085 - }, - { - "l": "9.0", - "x": 0.2491, - "y": 4.0394 - }, - { - "l": "9.0", - "x": 0.2683, - "y": 4.1686 - }, - { - "l": "9.0", - "x": 0.2875, - "y": 4.2959 - }, - { - "l": "9.0", - "x": 0.3066, - "y": 4.4203 - }, - { - "l": "9.0", - "x": 0.3258, - "y": 4.541 - }, - { - "l": "9.0", - "x": 0.345, - "y": 4.6519 - }, - { - "l": "9.0", - "x": 0.3641, - "y": 4.7572 - }, - { - "l": "9.0", - "x": 0.3833, - "y": 4.8596 - }, - { - "l": "9.0", - "x": 0.4025, - "y": 4.9602 - }, - { - "l": "9.0", - "x": 0.4216, - "y": 5.0609 - }, - { - "l": "9.0", - "x": 0.4408, - "y": 5.1677 - }, - { - "l": "9.0", - "x": 0.46, - "y": 5.2741 - }, - { - "l": "9.0", - "x": 0.4791, - "y": 5.3792 - }, - { - "l": "9.0", - "x": 0.4983, - "y": 5.4823 - }, - { - "l": "9.0", - "x": 0.5175, - "y": 5.5819 - }, - { - "l": "9.0", - "x": 0.5366, - "y": 5.6782 - }, - { - "l": "9.0", - "x": 0.5558, - "y": 5.771 - }, - { - "l": "9.0", - "x": 0.5749, - "y": 5.8598 - }, - { - "l": "9.0", - "x": 0.5941, - "y": 5.9409 - }, - { - "l": "9.0", - "x": 0.6133, - "y": 6.0169 - }, - { - "l": "9.0", - "x": 0.6324, - "y": 6.09 - }, - { - "l": "9.0", - "x": 0.6516, - "y": 6.1612 - }, - { - "l": "9.0", - "x": 0.6708, - "y": 6.2317 - }, - { - "l": "9.0", - "x": 0.6899, - "y": 6.3066 - }, - { - "l": "9.0", - "x": 0.7091, - "y": 6.3809 - }, - { - "l": "9.0", - "x": 0.7283, - "y": 6.4543 - }, - { - "l": "9.0", - "x": 0.7474, - "y": 6.5262 - }, - { - "l": "9.0", - "x": 0.7666, - "y": 6.596 - }, - { - "l": "9.0", - "x": 0.7858, - "y": 6.6636 - }, - { - "l": "9.0", - "x": 0.8049, - "y": 6.7288 - }, - { - "l": "9.0", - "x": 0.8241, - "y": 6.7915 - }, - { - "l": "9.0", - "x": 0.8433, - "y": 6.8492 - }, - { - "l": "9.0", - "x": 0.8624, - "y": 6.9033 - }, - { - "l": "9.0", - "x": 0.8816, - "y": 6.9557 - }, - { - "l": "9.0", - "x": 0.9008, - "y": 7.007 - }, - { - "l": "9.0", - "x": 0.9199, - "y": 7.058 - }, - { - "l": "9.0", - "x": 0.9391, - "y": 7.1126 - }, - { - "l": "9.0", - "x": 0.9582, - "y": 7.1672 - }, - { - "l": "9.0", - "x": 0.9774, - "y": 7.2214 - }, - { - "l": "9.0", - "x": 0.9966, - "y": 7.275 - }, - { - "l": "9.0", - "x": 1.0157, - "y": 7.3273 - }, - { - "l": "9.0", - "x": 1.0349, - "y": 7.3784 - }, - { - "l": "9.0", - "x": 1.0541, - "y": 7.4281 - }, - { - "l": "9.0", - "x": 1.0732, - "y": 7.4761 - }, - { - "l": "9.0", - "x": 1.0924, - "y": 7.5206 - }, - { - "l": "9.0", - "x": 1.1116, - "y": 7.5625 - }, - { - "l": "9.0", - "x": 1.1307, - "y": 7.6032 - }, - { - "l": "9.0", - "x": 1.1499, - "y": 7.6434 - }, - { - "l": "9.0", - "x": 1.1691, - "y": 7.6836 - }, - { - "l": "9.0", - "x": 1.1882, - "y": 7.7266 - }, - { - "l": "9.0", - "x": 1.2074, - "y": 7.7701 - }, - { - "l": "9.0", - "x": 1.2266, - "y": 7.8134 - }, - { - "l": "9.0", - "x": 1.2457, - "y": 7.8565 - }, - { - "l": "9.0", - "x": 1.2649, - "y": 7.8989 - }, - { - "l": "9.0", - "x": 1.2841, - "y": 7.9405 - }, - { - "l": "9.0", - "x": 1.3032, - "y": 7.9812 - }, - { - "l": "9.0", - "x": 1.3224, - "y": 8.0208 - }, - { - "l": "9.0", - "x": 1.3415, - "y": 8.0577 - }, - { - "l": "9.0", - "x": 1.3607, - "y": 8.0925 - }, - { - "l": "9.0", - "x": 1.3799, - "y": 8.1266 - }, - { - "l": "9.0", - "x": 1.399, - "y": 8.1603 - }, - { - "l": "9.0", - "x": 1.4182, - "y": 8.1942 - }, - { - "l": "9.0", - "x": 1.4374, - "y": 8.2305 - }, - { - "l": "9.0", - "x": 1.4565, - "y": 8.2673 - }, - { - "l": "9.0", - "x": 1.4757, - "y": 8.3042 - }, - { - "l": "9.0", - "x": 1.4949, - "y": 8.341 - }, - { - "l": "9.0", - "x": 1.514, - "y": 8.3775 - }, - { - "l": "9.0", - "x": 1.5332, - "y": 8.4134 - }, - { - "l": "9.0", - "x": 1.5524, - "y": 8.4486 - }, - { - "l": "9.0", - "x": 1.5715, - "y": 8.4829 - }, - { - "l": "9.0", - "x": 1.5907, - "y": 8.5152 - }, - { - "l": "9.0", - "x": 1.6099, - "y": 8.5456 - }, - { - "l": "9.0", - "x": 1.629, - "y": 8.5754 - }, - { - "l": "9.0", - "x": 1.6482, - "y": 8.6051 - }, - { - "l": "9.0", - "x": 1.6674, - "y": 8.6349 - }, - { - "l": "9.0", - "x": 1.6865, - "y": 8.6669 - }, - { - "l": "9.0", - "x": 1.7057, - "y": 8.6996 - }, - { - "l": "9.0", - "x": 1.7248, - "y": 8.7325 - }, - { - "l": "9.0", - "x": 1.744, - "y": 8.7654 - }, - { - "l": "9.0", - "x": 1.7632, - "y": 8.7982 - }, - { - "l": "9.0", - "x": 1.7823, - "y": 8.8306 - }, - { - "l": "9.0", - "x": 1.8015, - "y": 8.8625 - }, - { - "l": "9.0", - "x": 1.8207, - "y": 8.8938 - }, - { - "l": "9.0", - "x": 1.8398, - "y": 8.9234 - }, - { - "l": "9.0", - "x": 1.859, - "y": 8.9513 - }, - { - "l": "9.0", - "x": 1.8782, - "y": 8.9788 - }, - { - "l": "9.0", - "x": 1.8973, - "y": 9.0062 - }, - { - "l": "9.0", - "x": 1.9165, - "y": 9.034 - }, - { - "l": "9.0", - "x": 1.9357, - "y": 9.0638 - }, - { - "l": "9.0", - "x": 1.9548, - "y": 9.0945 - }, - { - "l": "9.0", - "x": 1.974, - "y": 9.1255 - }, - { - "l": "9.0", - "x": 1.9932, - "y": 9.1567 - }, - { - "l": "9.0", - "x": 2.0123, - "y": 9.1879 - }, - { - "l": "9.0", - "x": 2.0957, - "y": 9.3181 - }, - { - "l": "9.0", - "x": 2.179, - "y": 9.4367 - }, - { - "l": "9.0", - "x": 2.2623, - "y": 9.5693 - }, - { - "l": "9.0", - "x": 2.3457, - "y": 9.6979 - }, - { - "l": "9.0", - "x": 2.429, - "y": 9.8152 - }, - { - "l": "9.0", - "x": 2.5123, - "y": 9.947 - }, - { - "l": "9.0", - "x": 2.5957, - "y": 10.0754 - }, - { - "l": "9.0", - "x": 2.679, - "y": 10.193 - }, - { - "l": "9.0", - "x": 2.7623, - "y": 10.325 - }, - { - "l": "9.0", - "x": 2.8457, - "y": 10.4532 - }, - { - "l": "9.0", - "x": 2.929, - "y": 10.5702 - }, - { - "l": "9.0", - "x": 3.0123, - "y": 10.7011 - }, - { - "l": "9.0", - "x": 3.0957, - "y": 10.8281 - }, - { - "l": "9.0", - "x": 3.179, - "y": 10.9438 - }, - { - "l": "9.0", - "x": 3.2623, - "y": 11.0732 - }, - { - "l": "9.0", - "x": 3.3457, - "y": 11.1986 - }, - { - "l": "9.0", - "x": 3.429, - "y": 11.3128 - }, - { - "l": "9.0", - "x": 3.5123, - "y": 11.4405 - }, - { - "l": "9.0", - "x": 3.5957, - "y": 11.5641 - }, - { - "l": "9.0", - "x": 3.679, - "y": 11.6767 - }, - { - "l": "9.0", - "x": 3.7623, - "y": 11.8028 - }, - { - "l": "9.0", - "x": 3.8457, - "y": 11.9256 - }, - { - "l": "9.0", - "x": 3.929, - "y": 12.0383 - }, - { - "l": "9.0", - "x": 4.0123, - "y": 12.1652 - }, - { - "l": "9.0", - "x": 4.0957, - "y": 12.2891 - }, - { - "l": "9.0", - "x": 4.179, - "y": 12.4028 - }, - { - "l": "9.0", - "x": 4.2623, - "y": 12.5305 - }, - { - "l": "9.0", - "x": 4.3457, - "y": 12.6548 - }, - { - "l": "9.0", - "x": 4.429, - "y": 12.7684 - }, - { - "l": "9.0", - "x": 4.5123, - "y": 12.896 - }, - { - "l": "9.0", - "x": 4.5957, - "y": 13.0207 - }, - { - "l": "9.0", - "x": 4.679, - "y": 13.1353 - }, - { - "l": "9.0", - "x": 4.7623, - "y": 13.2649 - }, - { - "l": "9.0", - "x": 4.8457, - "y": 13.3919 - }, - { - "l": "9.0", - "x": 4.929, - "y": 13.5089 - }, - { - "l": "9.0", - "x": 5.0123, - "y": 13.6412 - }, - { - "l": "9.0", - "x": 5.0957, - "y": 13.7709 - }, - { - "l": "9.0", - "x": 5.179, - "y": 13.8905 - }, - { - "l": "9.0", - "x": 5.2623, - "y": 14.0257 - }, - { - "l": "9.0", - "x": 5.3457, - "y": 14.1583 - }, - { - "l": "9.0", - "x": 5.429, - "y": 14.2805 - }, - { - "l": "9.0", - "x": 5.5123, - "y": 14.4184 - }, - { - "l": "9.0", - "x": 5.5957, - "y": 14.5534 - }, - { - "l": "9.0", - "x": 5.679, - "y": 14.6776 - }, - { - "l": "9.0", - "x": 5.7623, - "y": 14.8176 - }, - { - "l": "9.0", - "x": 5.8457, - "y": 14.9547 - }, - { - "l": "9.0", - "x": 5.929, - "y": 15.0811 - }, - { - "l": "9.0", - "x": 6.0123, - "y": 15.2242 - }, - { - "l": "9.0", - "x": 6.0957, - "y": 15.3649 - }, - { - "l": "9.0", - "x": 6.179, - "y": 15.4949 - }, - { - "l": "9.0", - "x": 6.2623, - "y": 15.6424 - }, - { - "l": "9.0", - "x": 6.3457, - "y": 15.7875 - }, - { - "l": "9.0", - "x": 6.429, - "y": 15.9217 - }, - { - "l": "9.0", - "x": 6.5123, - "y": 16.0738 - }, - { - "l": "9.0", - "x": 6.5957, - "y": 16.2234 - }, - { - "l": "9.0", - "x": 6.679, - "y": 16.3614 - }, - { - "l": "9.0", - "x": 6.7623, - "y": 16.5176 - }, - { - "l": "9.0", - "x": 6.8457, - "y": 16.6707 - }, - { - "l": "9.0", - "x": 6.929, - "y": 16.8115 - }, - { - "l": "9.0", - "x": 7.0123, - "y": 16.9702 - }, - { - "l": "9.0", - "x": 7.0957, - "y": 17.1251 - }, - { - "l": "9.0", - "x": 7.179, - "y": 17.2671 - }, - { - "l": "9.0", - "x": 7.2623, - "y": 17.4265 - }, - { - "l": "9.0", - "x": 7.3457, - "y": 17.5819 - }, - { - "l": "9.0", - "x": 7.429, - "y": 17.7243 - }, - { - "l": "9.0", - "x": 7.5123, - "y": 17.8845 - }, - { - "l": "9.0", - "x": 7.5957, - "y": 18.0409 - }, - { - "l": "9.0", - "x": 7.679, - "y": 18.1845 - }, - { - "l": "9.0", - "x": 7.7623, - "y": 18.3462 - }, - { - "l": "9.0", - "x": 7.8457, - "y": 18.5042 - }, - { - "l": "9.0", - "x": 7.929, - "y": 18.6495 - }, - { - "l": "9.0", - "x": 8.0123, - "y": 18.8133 - }, - { - "l": "9.0", - "x": 8.0957, - "y": 18.9738 - }, - { - "l": "9.0", - "x": 8.179, - "y": 19.1216 - }, - { - "l": "9.0", - "x": 8.2623, - "y": 19.2885 - }, - { - "l": "9.0", - "x": 8.3457, - "y": 19.4522 - }, - { - "l": "9.0", - "x": 8.429, - "y": 19.603 - }, - { - "l": "9.0", - "x": 8.5123, - "y": 19.7732 - }, - { - "l": "9.0", - "x": 8.5957, - "y": 19.9399 - }, - { - "l": "9.0", - "x": 8.679, - "y": 20.0933 - }, - { - "l": "9.0", - "x": 8.7623, - "y": 20.2667 - }, - { - "l": "9.0", - "x": 8.8457, - "y": 20.4367 - }, - { - "l": "9.0", - "x": 8.929, - "y": 20.5935 - }, - { - "l": "9.0", - "x": 9.0123, - "y": 20.7709 - }, - { - "l": "9.0", - "x": 9.0957, - "y": 20.9452 - }, - { - "l": "9.0", - "x": 9.179, - "y": 21.106 - }, - { - "l": "9.0", - "x": 9.2623, - "y": 21.2879 - }, - { - "l": "9.0", - "x": 9.3457, - "y": 21.4663 - }, - { - "l": "9.0", - "x": 9.429, - "y": 21.6309 - }, - { - "l": "9.0", - "x": 9.5123, - "y": 21.8167 - }, - { - "l": "9.0", - "x": 9.5957, - "y": 21.9988 - }, - { - "l": "9.0", - "x": 9.679, - "y": 22.1665 - }, - { - "l": "9.0", - "x": 9.7623, - "y": 22.3558 - }, - { - "l": "9.0", - "x": 9.8457, - "y": 22.5415 - }, - { - "l": "9.0", - "x": 9.929, - "y": 22.7127 - }, - { - "l": "9.0", - "x": 10.0123, - "y": 22.9065 - }, - { - "l": "9.0", - "x": 10.0957, - "y": 23.0972 - }, - { - "l": "9.0", - "x": 10.179, - "y": 23.2737 - }, - { - "l": "9.0", - "x": 10.2623, - "y": 23.4742 - }, - { - "l": "9.0", - "x": 10.3457, - "y": 23.672 - }, - { - "l": "9.0", - "x": 10.429, - "y": 23.8557 - }, - { - "l": "9.0", - "x": 10.5123, - "y": 24.065 - }, - { - "l": "9.0", - "x": 10.5957, - "y": 24.272 - }, - { - "l": "9.0", - "x": 10.679, - "y": 24.4646 - }, - { - "l": "9.0", - "x": 10.7623, - "y": 24.6841 - }, - { - "l": "9.0", - "x": 10.8457, - "y": 24.9016 - }, - { - "l": "9.0", - "x": 10.929, - "y": 25.104 - }, - { - "l": "9.0", - "x": 11.0123, - "y": 25.3349 - }, - { - "l": "9.0", - "x": 11.0957, - "y": 25.5637 - }, - { - "l": "9.0", - "x": 11.179, - "y": 25.7767 - }, - { - "l": "9.0", - "x": 11.2623, - "y": 26.0199 - }, - { - "l": "9.0", - "x": 11.3457, - "y": 26.2612 - }, - { - "l": "9.0", - "x": 11.429, - "y": 26.4862 - }, - { - "l": "9.0", - "x": 11.5123, - "y": 26.7435 - }, - { - "l": "9.0", - "x": 11.5957, - "y": 26.9988 - }, - { - "l": "9.0", - "x": 11.679, - "y": 27.2371 - }, - { - "l": "9.0", - "x": 11.7623, - "y": 27.5094 - }, - { - "l": "9.0", - "x": 11.8457, - "y": 27.7797 - }, - { - "l": "9.0", - "x": 11.929, - "y": 28.0321 - }, - { - "l": "9.0", - "x": 12.0123, - "y": 28.3209 - }, - { - "l": "9.0", - "x": 12.0957, - "y": 28.6077 - }, - { - "l": "9.0", - "x": 12.179, - "y": 28.8748 - }, - { - "l": "9.0", - "x": 12.2623, - "y": 29.18 - }, - { - "l": "9.0", - "x": 12.3457, - "y": 29.4823 - }, - { - "l": "9.0", - "x": 12.429, - "y": 29.7635 - }, - { - "l": "9.0", - "x": 12.5123, - "y": 30.0841 - }, - { - "l": "9.0", - "x": 12.5957, - "y": 30.4009 - }, - { - "l": "9.0", - "x": 12.679, - "y": 30.6946 - }, - { - "l": "9.0", - "x": 12.7623, - "y": 31.0281 - }, - { - "l": "9.0", - "x": 12.8457, - "y": 31.3558 - }, - { - "l": "9.0", - "x": 12.929, - "y": 31.6586 - }, - { - "l": "9.0", - "x": 13.0123, - "y": 32.0011 - }, - { - "l": "9.0", - "x": 13.0957, - "y": 32.337 - }, - { - "l": "9.0", - "x": 13.179, - "y": 32.6465 - }, - { - "l": "9.0", - "x": 13.2623, - "y": 32.996 - }, - { - "l": "9.0", - "x": 13.3457, - "y": 33.3382 - }, - { - "l": "9.0", - "x": 13.429, - "y": 33.6528 - }, - { - "l": "9.0", - "x": 13.5123, - "y": 34.0069 - }, - { - "l": "9.0", - "x": 13.5957, - "y": 34.3524 - }, - { - "l": "9.0", - "x": 13.679, - "y": 34.6686 - }, - { - "l": "9.0", - "x": 13.7623, - "y": 35.0232 - }, - { - "l": "9.0", - "x": 13.8457, - "y": 35.3675 - }, - { - "l": "9.0", - "x": 13.929, - "y": 35.6817 - }, - { - "l": "9.0", - "x": 14.0123, - "y": 36.0325 - }, - { - "l": "9.0", - "x": 14.0957, - "y": 36.3722 - }, - { - "l": "9.0", - "x": 14.179, - "y": 36.681 - }, - { - "l": "9.0", - "x": 14.2623, - "y": 37.0256 - }, - { - "l": "9.0", - "x": 14.3457, - "y": 37.3589 - }, - { - "l": "9.0", - "x": 14.429, - "y": 37.6618 - }, - { - "l": "9.0", - "x": 14.5123, - "y": 37.9998 - }, - { - "l": "9.0", - "x": 14.5957, - "y": 38.3266 - }, - { - "l": "9.0", - "x": 14.679, - "y": 38.6233 - }, - { - "l": "9.0", - "x": 14.7623, - "y": 38.9541 - }, - { - "l": "9.0", - "x": 14.8457, - "y": 39.274 - }, - { - "l": "9.0", - "x": 14.929, - "y": 39.5645 - }, - { - "l": "9.0", - "x": 15.0123, - "y": 39.8883 - }, - { - "l": "9.0", - "x": 15.0957, - "y": 40.2012 - }, - { - "l": "9.0", - "x": 15.179, - "y": 40.4857 - }, - { - "l": "9.0", - "x": 15.2623, - "y": 40.8028 - }, - { - "l": "9.0", - "x": 15.3457, - "y": 41.1095 - }, - { - "l": "9.0", - "x": 15.429, - "y": 41.3886 - }, - { - "l": "9.0", - "x": 15.5123, - "y": 41.6998 - }, - { - "l": "9.0", - "x": 15.5957, - "y": 42.0013 - }, - { - "l": "9.0", - "x": 15.679, - "y": 42.2755 - }, - { - "l": "9.0", - "x": 15.7623, - "y": 42.5816 - }, - { - "l": "9.0", - "x": 15.8457, - "y": 42.8787 - }, - { - "l": "9.0", - "x": 15.929, - "y": 43.1486 - }, - { - "l": "9.0", - "x": 16.0123, - "y": 43.45 - }, - { - "l": "9.0", - "x": 16.0957, - "y": 43.7416 - }, - { - "l": "9.0", - "x": 16.179, - "y": 44.007 - }, - { - "l": "9.0", - "x": 16.2623, - "y": 44.3035 - }, - { - "l": "9.0", - "x": 16.3457, - "y": 44.5906 - }, - { - "l": "9.0", - "x": 16.429, - "y": 44.8521 - }, - { - "l": "9.0", - "x": 16.5123, - "y": 45.1441 - }, - { - "l": "9.0", - "x": 16.5957, - "y": 45.4271 - }, - { - "l": "9.0", - "x": 16.679, - "y": 45.6851 - }, - { - "l": "9.0", - "x": 16.7623, - "y": 45.9733 - }, - { - "l": "9.0", - "x": 16.8457, - "y": 46.2528 - }, - { - "l": "9.0", - "x": 16.929, - "y": 46.5077 - }, - { - "l": "9.0", - "x": 17.0123, - "y": 46.7924 - }, - { - "l": "9.0", - "x": 17.0957, - "y": 47.0679 - }, - { - "l": "9.0", - "x": 17.179, - "y": 47.3193 - }, - { - "l": "9.0", - "x": 17.2623, - "y": 47.6005 - }, - { - "l": "9.0", - "x": 17.3457, - "y": 47.8721 - }, - { - "l": "9.0", - "x": 17.429, - "y": 48.1201 - }, - { - "l": "9.0", - "x": 17.5123, - "y": 48.397 - }, - { - "l": "9.0", - "x": 17.5957, - "y": 48.6648 - }, - { - "l": "9.0", - "x": 17.679, - "y": 48.9086 - }, - { - "l": "9.0", - "x": 17.7623, - "y": 49.1813 - }, - { - "l": "9.0", - "x": 17.8457, - "y": 49.4452 - }, - { - "l": "9.0", - "x": 17.929, - "y": 49.6854 - }, - { - "l": "9.0", - "x": 18.0123, - "y": 49.9537 - }, - { - "l": "9.0", - "x": 18.0957, - "y": 50.2135 - }, - { - "l": "9.0", - "x": 18.179, - "y": 50.4499 - }, - { - "l": "9.0", - "x": 18.2623, - "y": 50.7146 - }, - { - "l": "9.0", - "x": 18.3457, - "y": 50.9696 - }, - { - "l": "9.0", - "x": 18.429, - "y": 51.2022 - }, - { - "l": "9.0", - "x": 18.5123, - "y": 51.4634 - }, - { - "l": "9.0", - "x": 18.5957, - "y": 51.7159 - }, - { - "l": "9.0", - "x": 18.679, - "y": 51.945 - }, - { - "l": "9.0", - "x": 18.7623, - "y": 52.2012 - }, - { - "l": "9.0", - "x": 18.8457, - "y": 52.4491 - }, - { - "l": "9.0", - "x": 18.929, - "y": 52.6751 - }, - { - "l": "9.0", - "x": 19.0123, - "y": 52.9259 - }, - { - "l": "9.0", - "x": 19.0957, - "y": 53.1706 - }, - { - "l": "9.0", - "x": 19.179, - "y": 53.3939 - }, - { - "l": "9.0", - "x": 19.2623, - "y": 53.6394 - }, - { - "l": "9.0", - "x": 19.3457, - "y": 53.8786 - }, - { - "l": "9.0", - "x": 19.429, - "y": 54.0978 - }, - { - "l": "9.0", - "x": 19.5123, - "y": 54.3441 - }, - { - "l": "9.0", - "x": 19.5957, - "y": 54.5842 - }, - { - "l": "9.0", - "x": 19.679, - "y": 54.8029 - }, - { - "l": "9.0", - "x": 19.7623, - "y": 55.0451 - }, - { - "l": "9.0", - "x": 19.8457, - "y": 55.2808 - }, - { - "l": "9.0", - "x": 19.929, - "y": 55.4955 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 0.0, - "y": 2.7435 - }, - { - "l": "25.0", - "x": 0.0192, - "y": 2.8813 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 3.0192 - }, - { - "l": "25.0", - "x": 0.0575, - "y": 3.1573 - }, - { - "l": "25.0", - "x": 0.0767, - "y": 3.2955 - }, - { - "l": "25.0", - "x": 0.0958, - "y": 3.4242 - }, - { - "l": "25.0", - "x": 0.115, - "y": 3.5494 - }, - { - "l": "25.0", - "x": 0.1342, - "y": 3.6744 - }, - { - "l": "25.0", - "x": 0.1533, - "y": 3.8005 - }, - { - "l": "25.0", - "x": 0.1725, - "y": 3.9305 - }, - { - "l": "25.0", - "x": 0.1916, - "y": 4.0711 - }, - { - "l": "25.0", - "x": 0.2108, - "y": 4.2139 - }, - { - "l": "25.0", - "x": 0.23, - "y": 4.3578 - }, - { - "l": "25.0", - "x": 0.2491, - "y": 4.5015 - }, - { - "l": "25.0", - "x": 0.2683, - "y": 4.6432 - }, - { - "l": "25.0", - "x": 0.2875, - "y": 4.7826 - }, - { - "l": "25.0", - "x": 0.3066, - "y": 4.9188 - }, - { - "l": "25.0", - "x": 0.3258, - "y": 5.0509 - }, - { - "l": "25.0", - "x": 0.345, - "y": 5.1721 - }, - { - "l": "25.0", - "x": 0.3641, - "y": 5.2871 - }, - { - "l": "25.0", - "x": 0.3833, - "y": 5.3988 - }, - { - "l": "25.0", - "x": 0.4025, - "y": 5.5085 - }, - { - "l": "25.0", - "x": 0.4216, - "y": 5.6182 - }, - { - "l": "25.0", - "x": 0.4408, - "y": 5.7345 - }, - { - "l": "25.0", - "x": 0.46, - "y": 5.8501 - }, - { - "l": "25.0", - "x": 0.4791, - "y": 5.9644 - }, - { - "l": "25.0", - "x": 0.4983, - "y": 6.0764 - }, - { - "l": "25.0", - "x": 0.5175, - "y": 6.1844 - }, - { - "l": "25.0", - "x": 0.5366, - "y": 6.2889 - }, - { - "l": "25.0", - "x": 0.5558, - "y": 6.3894 - }, - { - "l": "25.0", - "x": 0.5749, - "y": 6.4856 - }, - { - "l": "25.0", - "x": 0.5941, - "y": 6.5733 - }, - { - "l": "25.0", - "x": 0.6133, - "y": 6.6555 - }, - { - "l": "25.0", - "x": 0.6324, - "y": 6.7345 - }, - { - "l": "25.0", - "x": 0.6516, - "y": 6.8114 - }, - { - "l": "25.0", - "x": 0.6708, - "y": 6.8876 - }, - { - "l": "25.0", - "x": 0.6899, - "y": 6.9684 - }, - { - "l": "25.0", - "x": 0.7091, - "y": 7.0487 - }, - { - "l": "25.0", - "x": 0.7283, - "y": 7.1278 - }, - { - "l": "25.0", - "x": 0.7474, - "y": 7.2055 - }, - { - "l": "25.0", - "x": 0.7666, - "y": 7.2807 - }, - { - "l": "25.0", - "x": 0.7858, - "y": 7.3535 - }, - { - "l": "25.0", - "x": 0.8049, - "y": 7.4238 - }, - { - "l": "25.0", - "x": 0.8241, - "y": 7.4914 - }, - { - "l": "25.0", - "x": 0.8433, - "y": 7.5536 - }, - { - "l": "25.0", - "x": 0.8624, - "y": 7.6119 - }, - { - "l": "25.0", - "x": 0.8816, - "y": 7.6683 - }, - { - "l": "25.0", - "x": 0.9008, - "y": 7.7236 - }, - { - "l": "25.0", - "x": 0.9199, - "y": 7.7785 - }, - { - "l": "25.0", - "x": 0.9391, - "y": 7.8374 - }, - { - "l": "25.0", - "x": 0.9582, - "y": 7.8962 - }, - { - "l": "25.0", - "x": 0.9774, - "y": 7.9547 - }, - { - "l": "25.0", - "x": 0.9966, - "y": 8.0124 - }, - { - "l": "25.0", - "x": 1.0157, - "y": 8.0688 - }, - { - "l": "25.0", - "x": 1.0349, - "y": 8.1239 - }, - { - "l": "25.0", - "x": 1.0541, - "y": 8.1775 - }, - { - "l": "25.0", - "x": 1.0732, - "y": 8.2292 - }, - { - "l": "25.0", - "x": 1.0924, - "y": 8.2772 - }, - { - "l": "25.0", - "x": 1.1116, - "y": 8.3224 - }, - { - "l": "25.0", - "x": 1.1307, - "y": 8.3664 - }, - { - "l": "25.0", - "x": 1.1499, - "y": 8.4098 - }, - { - "l": "25.0", - "x": 1.1691, - "y": 8.4531 - }, - { - "l": "25.0", - "x": 1.1882, - "y": 8.4996 - }, - { - "l": "25.0", - "x": 1.2074, - "y": 8.5465 - }, - { - "l": "25.0", - "x": 1.2266, - "y": 8.5934 - }, - { - "l": "25.0", - "x": 1.2457, - "y": 8.6399 - }, - { - "l": "25.0", - "x": 1.2649, - "y": 8.6857 - }, - { - "l": "25.0", - "x": 1.2841, - "y": 8.7307 - }, - { - "l": "25.0", - "x": 1.3032, - "y": 8.7747 - }, - { - "l": "25.0", - "x": 1.3224, - "y": 8.8175 - }, - { - "l": "25.0", - "x": 1.3415, - "y": 8.8574 - }, - { - "l": "25.0", - "x": 1.3607, - "y": 8.8951 - }, - { - "l": "25.0", - "x": 1.3799, - "y": 8.932 - }, - { - "l": "25.0", - "x": 1.399, - "y": 8.9685 - }, - { - "l": "25.0", - "x": 1.4182, - "y": 9.0051 - }, - { - "l": "25.0", - "x": 1.4374, - "y": 9.0444 - }, - { - "l": "25.0", - "x": 1.4565, - "y": 9.0843 - }, - { - "l": "25.0", - "x": 1.4757, - "y": 9.1243 - }, - { - "l": "25.0", - "x": 1.4949, - "y": 9.1642 - }, - { - "l": "25.0", - "x": 1.514, - "y": 9.2037 - }, - { - "l": "25.0", - "x": 1.5332, - "y": 9.2426 - }, - { - "l": "25.0", - "x": 1.5524, - "y": 9.2807 - }, - { - "l": "25.0", - "x": 1.5715, - "y": 9.318 - }, - { - "l": "25.0", - "x": 1.5907, - "y": 9.353 - }, - { - "l": "25.0", - "x": 1.6099, - "y": 9.386 - }, - { - "l": "25.0", - "x": 1.629, - "y": 9.4183 - }, - { - "l": "25.0", - "x": 1.6482, - "y": 9.4505 - }, - { - "l": "25.0", - "x": 1.6674, - "y": 9.4829 - }, - { - "l": "25.0", - "x": 1.6865, - "y": 9.5177 - }, - { - "l": "25.0", - "x": 1.7057, - "y": 9.5532 - }, - { - "l": "25.0", - "x": 1.7248, - "y": 9.5889 - }, - { - "l": "25.0", - "x": 1.744, - "y": 9.6247 - }, - { - "l": "25.0", - "x": 1.7632, - "y": 9.6603 - }, - { - "l": "25.0", - "x": 1.7823, - "y": 9.6956 - }, - { - "l": "25.0", - "x": 1.8015, - "y": 9.7303 - }, - { - "l": "25.0", - "x": 1.8207, - "y": 9.7643 - }, - { - "l": "25.0", - "x": 1.8398, - "y": 9.7964 - }, - { - "l": "25.0", - "x": 1.859, - "y": 9.8268 - }, - { - "l": "25.0", - "x": 1.8782, - "y": 9.8568 - }, - { - "l": "25.0", - "x": 1.8973, - "y": 9.8866 - }, - { - "l": "25.0", - "x": 1.9165, - "y": 9.9169 - }, - { - "l": "25.0", - "x": 1.9357, - "y": 9.9494 - }, - { - "l": "25.0", - "x": 1.9548, - "y": 9.9828 - }, - { - "l": "25.0", - "x": 1.974, - "y": 10.0166 - }, - { - "l": "25.0", - "x": 1.9932, - "y": 10.0506 - }, - { - "l": "25.0", - "x": 2.0123, - "y": 10.0846 - }, - { - "l": "25.0", - "x": 2.0957, - "y": 10.2266 - }, - { - "l": "25.0", - "x": 2.179, - "y": 10.3561 - }, - { - "l": "25.0", - "x": 2.2623, - "y": 10.5011 - }, - { - "l": "25.0", - "x": 2.3457, - "y": 10.6418 - }, - { - "l": "25.0", - "x": 2.429, - "y": 10.7705 - }, - { - "l": "25.0", - "x": 2.5123, - "y": 10.915 - }, - { - "l": "25.0", - "x": 2.5957, - "y": 11.0562 - }, - { - "l": "25.0", - "x": 2.679, - "y": 11.1856 - }, - { - "l": "25.0", - "x": 2.7623, - "y": 11.331 - }, - { - "l": "25.0", - "x": 2.8457, - "y": 11.4725 - }, - { - "l": "25.0", - "x": 2.929, - "y": 11.6018 - }, - { - "l": "25.0", - "x": 3.0123, - "y": 11.7466 - }, - { - "l": "25.0", - "x": 3.0957, - "y": 11.8873 - }, - { - "l": "25.0", - "x": 3.179, - "y": 12.0158 - }, - { - "l": "25.0", - "x": 3.2623, - "y": 12.1597 - }, - { - "l": "25.0", - "x": 3.3457, - "y": 12.2993 - }, - { - "l": "25.0", - "x": 3.429, - "y": 12.4266 - }, - { - "l": "25.0", - "x": 3.5123, - "y": 12.5692 - }, - { - "l": "25.0", - "x": 3.5957, - "y": 12.7075 - }, - { - "l": "25.0", - "x": 3.679, - "y": 12.8336 - }, - { - "l": "25.0", - "x": 3.7623, - "y": 12.975 - }, - { - "l": "25.0", - "x": 3.8457, - "y": 13.113 - }, - { - "l": "25.0", - "x": 3.929, - "y": 13.2398 - }, - { - "l": "25.0", - "x": 4.0123, - "y": 13.3828 - }, - { - "l": "25.0", - "x": 4.0957, - "y": 13.5227 - }, - { - "l": "25.0", - "x": 4.179, - "y": 13.6513 - }, - { - "l": "25.0", - "x": 4.2623, - "y": 13.7959 - }, - { - "l": "25.0", - "x": 4.3457, - "y": 13.9368 - }, - { - "l": "25.0", - "x": 4.429, - "y": 14.0659 - }, - { - "l": "25.0", - "x": 4.5123, - "y": 14.2112 - }, - { - "l": "25.0", - "x": 4.5957, - "y": 14.3533 - }, - { - "l": "25.0", - "x": 4.679, - "y": 14.4843 - }, - { - "l": "25.0", - "x": 4.7623, - "y": 14.6325 - }, - { - "l": "25.0", - "x": 4.8457, - "y": 14.778 - }, - { - "l": "25.0", - "x": 4.929, - "y": 14.9124 - }, - { - "l": "25.0", - "x": 5.0123, - "y": 15.0645 - }, - { - "l": "25.0", - "x": 5.0957, - "y": 15.2139 - }, - { - "l": "25.0", - "x": 5.179, - "y": 15.3518 - }, - { - "l": "25.0", - "x": 5.2623, - "y": 15.508 - }, - { - "l": "25.0", - "x": 5.3457, - "y": 15.6614 - }, - { - "l": "25.0", - "x": 5.429, - "y": 15.8029 - }, - { - "l": "25.0", - "x": 5.5123, - "y": 15.963 - }, - { - "l": "25.0", - "x": 5.5957, - "y": 16.1198 - }, - { - "l": "25.0", - "x": 5.679, - "y": 16.2643 - }, - { - "l": "25.0", - "x": 5.7623, - "y": 16.4274 - }, - { - "l": "25.0", - "x": 5.8457, - "y": 16.5874 - }, - { - "l": "25.0", - "x": 5.929, - "y": 16.7351 - }, - { - "l": "25.0", - "x": 6.0123, - "y": 16.9025 - }, - { - "l": "25.0", - "x": 6.0957, - "y": 17.0672 - }, - { - "l": "25.0", - "x": 6.179, - "y": 17.2197 - }, - { - "l": "25.0", - "x": 6.2623, - "y": 17.3929 - }, - { - "l": "25.0", - "x": 6.3457, - "y": 17.5635 - }, - { - "l": "25.0", - "x": 6.429, - "y": 17.7214 - }, - { - "l": "25.0", - "x": 6.5123, - "y": 17.9007 - }, - { - "l": "25.0", - "x": 6.5957, - "y": 18.0771 - }, - { - "l": "25.0", - "x": 6.679, - "y": 18.2402 - }, - { - "l": "25.0", - "x": 6.7623, - "y": 18.4248 - }, - { - "l": "25.0", - "x": 6.8457, - "y": 18.606 - }, - { - "l": "25.0", - "x": 6.929, - "y": 18.7729 - }, - { - "l": "25.0", - "x": 7.0123, - "y": 18.9611 - }, - { - "l": "25.0", - "x": 7.0957, - "y": 19.1451 - }, - { - "l": "25.0", - "x": 7.179, - "y": 19.3138 - }, - { - "l": "25.0", - "x": 7.2623, - "y": 19.5035 - }, - { - "l": "25.0", - "x": 7.3457, - "y": 19.6885 - }, - { - "l": "25.0", - "x": 7.429, - "y": 19.8583 - }, - { - "l": "25.0", - "x": 7.5123, - "y": 20.0495 - }, - { - "l": "25.0", - "x": 7.5957, - "y": 20.2363 - }, - { - "l": "25.0", - "x": 7.679, - "y": 20.4079 - }, - { - "l": "25.0", - "x": 7.7623, - "y": 20.6012 - }, - { - "l": "25.0", - "x": 7.8457, - "y": 20.7904 - }, - { - "l": "25.0", - "x": 7.929, - "y": 20.9643 - }, - { - "l": "25.0", - "x": 8.0123, - "y": 21.1607 - }, - { - "l": "25.0", - "x": 8.0957, - "y": 21.353 - }, - { - "l": "25.0", - "x": 8.179, - "y": 21.5303 - }, - { - "l": "25.0", - "x": 8.2623, - "y": 21.7306 - }, - { - "l": "25.0", - "x": 8.3457, - "y": 21.927 - }, - { - "l": "25.0", - "x": 8.429, - "y": 22.1079 - }, - { - "l": "25.0", - "x": 8.5123, - "y": 22.3121 - }, - { - "l": "25.0", - "x": 8.5957, - "y": 22.5121 - }, - { - "l": "25.0", - "x": 8.679, - "y": 22.6962 - }, - { - "l": "25.0", - "x": 8.7623, - "y": 22.9042 - }, - { - "l": "25.0", - "x": 8.8457, - "y": 23.1081 - }, - { - "l": "25.0", - "x": 8.929, - "y": 23.2961 - }, - { - "l": "25.0", - "x": 9.0123, - "y": 23.5087 - }, - { - "l": "25.0", - "x": 9.0957, - "y": 23.7174 - }, - { - "l": "25.0", - "x": 9.179, - "y": 23.91 - }, - { - "l": "25.0", - "x": 9.2623, - "y": 24.1276 - }, - { - "l": "25.0", - "x": 9.3457, - "y": 24.3411 - }, - { - "l": "25.0", - "x": 9.429, - "y": 24.5377 - }, - { - "l": "25.0", - "x": 9.5123, - "y": 24.7597 - }, - { - "l": "25.0", - "x": 9.5957, - "y": 24.9771 - }, - { - "l": "25.0", - "x": 9.679, - "y": 25.177 - }, - { - "l": "25.0", - "x": 9.7623, - "y": 25.4027 - }, - { - "l": "25.0", - "x": 9.8457, - "y": 25.6239 - }, - { - "l": "25.0", - "x": 9.929, - "y": 25.8275 - }, - { - "l": "25.0", - "x": 10.0123, - "y": 26.058 - }, - { - "l": "25.0", - "x": 10.0957, - "y": 26.2844 - }, - { - "l": "25.0", - "x": 10.179, - "y": 26.4938 - }, - { - "l": "25.0", - "x": 10.2623, - "y": 26.7313 - }, - { - "l": "25.0", - "x": 10.3457, - "y": 26.9655 - }, - { - "l": "25.0", - "x": 10.429, - "y": 27.1826 - }, - { - "l": "25.0", - "x": 10.5123, - "y": 27.4297 - }, - { - "l": "25.0", - "x": 10.5957, - "y": 27.6738 - }, - { - "l": "25.0", - "x": 10.679, - "y": 27.9006 - }, - { - "l": "25.0", - "x": 10.7623, - "y": 28.1587 - }, - { - "l": "25.0", - "x": 10.8457, - "y": 28.4141 - }, - { - "l": "25.0", - "x": 10.929, - "y": 28.6514 - }, - { - "l": "25.0", - "x": 11.0123, - "y": 28.9217 - }, - { - "l": "25.0", - "x": 11.0957, - "y": 29.189 - }, - { - "l": "25.0", - "x": 11.179, - "y": 29.4374 - }, - { - "l": "25.0", - "x": 11.2623, - "y": 29.7206 - }, - { - "l": "25.0", - "x": 11.3457, - "y": 30.001 - }, - { - "l": "25.0", - "x": 11.429, - "y": 30.2619 - }, - { - "l": "25.0", - "x": 11.5123, - "y": 30.5596 - }, - { - "l": "25.0", - "x": 11.5957, - "y": 30.8544 - }, - { - "l": "25.0", - "x": 11.679, - "y": 31.1289 - }, - { - "l": "25.0", - "x": 11.7623, - "y": 31.4419 - }, - { - "l": "25.0", - "x": 11.8457, - "y": 31.7518 - }, - { - "l": "25.0", - "x": 11.929, - "y": 32.0405 - }, - { - "l": "25.0", - "x": 12.0123, - "y": 32.3701 - }, - { - "l": "25.0", - "x": 12.0957, - "y": 32.6965 - }, - { - "l": "25.0", - "x": 12.179, - "y": 32.9998 - }, - { - "l": "25.0", - "x": 12.2623, - "y": 33.3454 - }, - { - "l": "25.0", - "x": 12.3457, - "y": 33.6869 - }, - { - "l": "25.0", - "x": 12.429, - "y": 34.0039 - }, - { - "l": "25.0", - "x": 12.5123, - "y": 34.3643 - }, - { - "l": "25.0", - "x": 12.5957, - "y": 34.7195 - }, - { - "l": "25.0", - "x": 12.679, - "y": 35.048 - }, - { - "l": "25.0", - "x": 12.7623, - "y": 35.4202 - }, - { - "l": "25.0", - "x": 12.8457, - "y": 35.785 - }, - { - "l": "25.0", - "x": 12.929, - "y": 36.1213 - }, - { - "l": "25.0", - "x": 13.0123, - "y": 36.5008 - }, - { - "l": "25.0", - "x": 13.0957, - "y": 36.8721 - }, - { - "l": "25.0", - "x": 13.179, - "y": 37.2134 - }, - { - "l": "25.0", - "x": 13.2623, - "y": 37.5979 - }, - { - "l": "25.0", - "x": 13.3457, - "y": 37.9735 - }, - { - "l": "25.0", - "x": 13.429, - "y": 38.3178 - }, - { - "l": "25.0", - "x": 13.5123, - "y": 38.7046 - }, - { - "l": "25.0", - "x": 13.5957, - "y": 39.081 - }, - { - "l": "25.0", - "x": 13.679, - "y": 39.4246 - }, - { - "l": "25.0", - "x": 13.7623, - "y": 39.809 - }, - { - "l": "25.0", - "x": 13.8457, - "y": 40.1813 - }, - { - "l": "25.0", - "x": 13.929, - "y": 40.5202 - }, - { - "l": "25.0", - "x": 14.0123, - "y": 40.8977 - }, - { - "l": "25.0", - "x": 14.0957, - "y": 41.2622 - }, - { - "l": "25.0", - "x": 14.179, - "y": 41.5926 - }, - { - "l": "25.0", - "x": 14.2623, - "y": 41.9604 - }, - { - "l": "25.0", - "x": 14.3457, - "y": 42.3151 - }, - { - "l": "25.0", - "x": 14.429, - "y": 42.6366 - }, - { - "l": "25.0", - "x": 14.5123, - "y": 42.9942 - }, - { - "l": "25.0", - "x": 14.5957, - "y": 43.339 - }, - { - "l": "25.0", - "x": 14.679, - "y": 43.6513 - }, - { - "l": "25.0", - "x": 14.7623, - "y": 43.9984 - }, - { - "l": "25.0", - "x": 14.8457, - "y": 44.3331 - }, - { - "l": "25.0", - "x": 14.929, - "y": 44.6362 - }, - { - "l": "25.0", - "x": 15.0123, - "y": 44.9731 - }, - { - "l": "25.0", - "x": 15.0957, - "y": 45.2979 - }, - { - "l": "25.0", - "x": 15.179, - "y": 45.5922 - }, - { - "l": "25.0", - "x": 15.2623, - "y": 45.9196 - }, - { - "l": "25.0", - "x": 15.3457, - "y": 46.2352 - }, - { - "l": "25.0", - "x": 15.429, - "y": 46.5217 - }, - { - "l": "25.0", - "x": 15.5123, - "y": 46.8403 - }, - { - "l": "25.0", - "x": 15.5957, - "y": 47.1481 - }, - { - "l": "25.0", - "x": 15.679, - "y": 47.4273 - }, - { - "l": "25.0", - "x": 15.7623, - "y": 47.7381 - }, - { - "l": "25.0", - "x": 15.8457, - "y": 48.0391 - }, - { - "l": "25.0", - "x": 15.929, - "y": 48.3119 - }, - { - "l": "25.0", - "x": 16.0123, - "y": 48.6159 - }, - { - "l": "25.0", - "x": 16.0957, - "y": 48.9094 - }, - { - "l": "25.0", - "x": 16.179, - "y": 49.176 - }, - { - "l": "25.0", - "x": 16.2623, - "y": 49.4733 - }, - { - "l": "25.0", - "x": 16.3457, - "y": 49.7607 - }, - { - "l": "25.0", - "x": 16.429, - "y": 50.0221 - }, - { - "l": "25.0", - "x": 16.5123, - "y": 50.3135 - }, - { - "l": "25.0", - "x": 16.5957, - "y": 50.5955 - }, - { - "l": "25.0", - "x": 16.679, - "y": 50.8521 - }, - { - "l": "25.0", - "x": 16.7623, - "y": 51.1385 - }, - { - "l": "25.0", - "x": 16.8457, - "y": 51.4158 - }, - { - "l": "25.0", - "x": 16.929, - "y": 51.6684 - }, - { - "l": "25.0", - "x": 17.0123, - "y": 51.9503 - }, - { - "l": "25.0", - "x": 17.0957, - "y": 52.2227 - }, - { - "l": "25.0", - "x": 17.179, - "y": 52.4709 - }, - { - "l": "25.0", - "x": 17.2623, - "y": 52.7485 - }, - { - "l": "25.0", - "x": 17.3457, - "y": 53.0163 - }, - { - "l": "25.0", - "x": 17.429, - "y": 53.2607 - }, - { - "l": "25.0", - "x": 17.5123, - "y": 53.5334 - }, - { - "l": "25.0", - "x": 17.5957, - "y": 53.797 - }, - { - "l": "25.0", - "x": 17.679, - "y": 54.0367 - }, - { - "l": "25.0", - "x": 17.7623, - "y": 54.3048 - }, - { - "l": "25.0", - "x": 17.8457, - "y": 54.5642 - }, - { - "l": "25.0", - "x": 17.929, - "y": 54.8002 - }, - { - "l": "25.0", - "x": 18.0123, - "y": 55.0637 - }, - { - "l": "25.0", - "x": 18.0957, - "y": 55.3188 - }, - { - "l": "25.0", - "x": 18.179, - "y": 55.5509 - }, - { - "l": "25.0", - "x": 18.2623, - "y": 55.8107 - }, - { - "l": "25.0", - "x": 18.3457, - "y": 56.0612 - }, - { - "l": "25.0", - "x": 18.429, - "y": 56.2895 - }, - { - "l": "25.0", - "x": 18.5123, - "y": 56.5459 - }, - { - "l": "25.0", - "x": 18.5957, - "y": 56.7937 - }, - { - "l": "25.0", - "x": 18.679, - "y": 57.0186 - }, - { - "l": "25.0", - "x": 18.7623, - "y": 57.2701 - }, - { - "l": "25.0", - "x": 18.8457, - "y": 57.5135 - }, - { - "l": "25.0", - "x": 18.929, - "y": 57.7353 - }, - { - "l": "25.0", - "x": 19.0123, - "y": 57.9815 - }, - { - "l": "25.0", - "x": 19.0957, - "y": 58.2217 - }, - { - "l": "25.0", - "x": 19.179, - "y": 58.4409 - }, - { - "l": "25.0", - "x": 19.2623, - "y": 58.6822 - }, - { - "l": "25.0", - "x": 19.3457, - "y": 58.9172 - }, - { - "l": "25.0", - "x": 19.429, - "y": 59.1325 - }, - { - "l": "25.0", - "x": 19.5123, - "y": 59.3742 - }, - { - "l": "25.0", - "x": 19.5957, - "y": 59.6098 - }, - { - "l": "25.0", - "x": 19.679, - "y": 59.8244 - }, - { - "l": "25.0", - "x": 19.7623, - "y": 60.0623 - }, - { - "l": "25.0", - "x": 19.8457, - "y": 60.2937 - }, - { - "l": "25.0", - "x": 19.929, - "y": 60.5046 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 0.0, - "y": 3.0535 - }, - { - "l": "50.0", - "x": 0.0192, - "y": 3.2055 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 3.3574 - }, - { - "l": "50.0", - "x": 0.0575, - "y": 3.5094 - }, - { - "l": "50.0", - "x": 0.0767, - "y": 3.6613 - }, - { - "l": "50.0", - "x": 0.0958, - "y": 3.8027 - }, - { - "l": "50.0", - "x": 0.115, - "y": 3.9403 - }, - { - "l": "50.0", - "x": 0.1342, - "y": 4.0774 - }, - { - "l": "50.0", - "x": 0.1533, - "y": 4.2157 - }, - { - "l": "50.0", - "x": 0.1725, - "y": 4.3582 - }, - { - "l": "50.0", - "x": 0.1916, - "y": 4.5122 - }, - { - "l": "50.0", - "x": 0.2108, - "y": 4.6686 - }, - { - "l": "50.0", - "x": 0.23, - "y": 4.8259 - }, - { - "l": "50.0", - "x": 0.2491, - "y": 4.983 - }, - { - "l": "50.0", - "x": 0.2683, - "y": 5.1377 - }, - { - "l": "50.0", - "x": 0.2875, - "y": 5.2899 - }, - { - "l": "50.0", - "x": 0.3066, - "y": 5.4384 - }, - { - "l": "50.0", - "x": 0.3258, - "y": 5.5823 - }, - { - "l": "50.0", - "x": 0.345, - "y": 5.7143 - }, - { - "l": "50.0", - "x": 0.3641, - "y": 5.8393 - }, - { - "l": "50.0", - "x": 0.3833, - "y": 5.9608 - }, - { - "l": "50.0", - "x": 0.4025, - "y": 6.08 - }, - { - "l": "50.0", - "x": 0.4216, - "y": 6.1991 - }, - { - "l": "50.0", - "x": 0.4408, - "y": 6.3252 - }, - { - "l": "50.0", - "x": 0.46, - "y": 6.4506 - }, - { - "l": "50.0", - "x": 0.4791, - "y": 6.5744 - }, - { - "l": "50.0", - "x": 0.4983, - "y": 6.6957 - }, - { - "l": "50.0", - "x": 0.5175, - "y": 6.8126 - }, - { - "l": "50.0", - "x": 0.5366, - "y": 6.9255 - }, - { - "l": "50.0", - "x": 0.5558, - "y": 7.0341 - }, - { - "l": "50.0", - "x": 0.5749, - "y": 7.138 - }, - { - "l": "50.0", - "x": 0.5941, - "y": 7.2328 - }, - { - "l": "50.0", - "x": 0.6133, - "y": 7.3215 - }, - { - "l": "50.0", - "x": 0.6324, - "y": 7.4067 - }, - { - "l": "50.0", - "x": 0.6516, - "y": 7.4896 - }, - { - "l": "50.0", - "x": 0.6708, - "y": 7.5717 - }, - { - "l": "50.0", - "x": 0.6899, - "y": 7.6588 - }, - { - "l": "50.0", - "x": 0.7091, - "y": 7.7452 - }, - { - "l": "50.0", - "x": 0.7283, - "y": 7.8305 - }, - { - "l": "50.0", - "x": 0.7474, - "y": 7.9141 - }, - { - "l": "50.0", - "x": 0.7666, - "y": 7.995 - }, - { - "l": "50.0", - "x": 0.7858, - "y": 8.0734 - }, - { - "l": "50.0", - "x": 0.8049, - "y": 8.1491 - }, - { - "l": "50.0", - "x": 0.8241, - "y": 8.2218 - }, - { - "l": "50.0", - "x": 0.8433, - "y": 8.2887 - }, - { - "l": "50.0", - "x": 0.8624, - "y": 8.3515 - }, - { - "l": "50.0", - "x": 0.8816, - "y": 8.4122 - }, - { - "l": "50.0", - "x": 0.9008, - "y": 8.4717 - }, - { - "l": "50.0", - "x": 0.9199, - "y": 8.5308 - }, - { - "l": "50.0", - "x": 0.9391, - "y": 8.5942 - }, - { - "l": "50.0", - "x": 0.9582, - "y": 8.6575 - }, - { - "l": "50.0", - "x": 0.9774, - "y": 8.7205 - }, - { - "l": "50.0", - "x": 0.9966, - "y": 8.7826 - }, - { - "l": "50.0", - "x": 1.0157, - "y": 8.8434 - }, - { - "l": "50.0", - "x": 1.0349, - "y": 8.9027 - }, - { - "l": "50.0", - "x": 1.0541, - "y": 8.9604 - }, - { - "l": "50.0", - "x": 1.0732, - "y": 9.0162 - }, - { - "l": "50.0", - "x": 1.0924, - "y": 9.0679 - }, - { - "l": "50.0", - "x": 1.1116, - "y": 9.1166 - }, - { - "l": "50.0", - "x": 1.1307, - "y": 9.164 - }, - { - "l": "50.0", - "x": 1.1499, - "y": 9.2108 - }, - { - "l": "50.0", - "x": 1.1691, - "y": 9.2576 - }, - { - "l": "50.0", - "x": 1.1882, - "y": 9.3078 - }, - { - "l": "50.0", - "x": 1.2074, - "y": 9.3584 - }, - { - "l": "50.0", - "x": 1.2266, - "y": 9.4089 - }, - { - "l": "50.0", - "x": 1.2457, - "y": 9.4592 - }, - { - "l": "50.0", - "x": 1.2649, - "y": 9.5087 - }, - { - "l": "50.0", - "x": 1.2841, - "y": 9.5573 - }, - { - "l": "50.0", - "x": 1.3032, - "y": 9.6048 - }, - { - "l": "50.0", - "x": 1.3224, - "y": 9.651 - }, - { - "l": "50.0", - "x": 1.3415, - "y": 9.6942 - }, - { - "l": "50.0", - "x": 1.3607, - "y": 9.735 - }, - { - "l": "50.0", - "x": 1.3799, - "y": 9.7748 - }, - { - "l": "50.0", - "x": 1.399, - "y": 9.8143 - }, - { - "l": "50.0", - "x": 1.4182, - "y": 9.854 - }, - { - "l": "50.0", - "x": 1.4374, - "y": 9.8965 - }, - { - "l": "50.0", - "x": 1.4565, - "y": 9.9397 - }, - { - "l": "50.0", - "x": 1.4757, - "y": 9.983 - }, - { - "l": "50.0", - "x": 1.4949, - "y": 10.0262 - }, - { - "l": "50.0", - "x": 1.514, - "y": 10.069 - }, - { - "l": "50.0", - "x": 1.5332, - "y": 10.1112 - }, - { - "l": "50.0", - "x": 1.5524, - "y": 10.1525 - }, - { - "l": "50.0", - "x": 1.5715, - "y": 10.1929 - }, - { - "l": "50.0", - "x": 1.5907, - "y": 10.2309 - }, - { - "l": "50.0", - "x": 1.6099, - "y": 10.2667 - }, - { - "l": "50.0", - "x": 1.629, - "y": 10.3018 - }, - { - "l": "50.0", - "x": 1.6482, - "y": 10.3367 - }, - { - "l": "50.0", - "x": 1.6674, - "y": 10.3719 - }, - { - "l": "50.0", - "x": 1.6865, - "y": 10.4096 - }, - { - "l": "50.0", - "x": 1.7057, - "y": 10.4482 - }, - { - "l": "50.0", - "x": 1.7248, - "y": 10.487 - }, - { - "l": "50.0", - "x": 1.744, - "y": 10.5259 - }, - { - "l": "50.0", - "x": 1.7632, - "y": 10.5646 - }, - { - "l": "50.0", - "x": 1.7823, - "y": 10.6029 - }, - { - "l": "50.0", - "x": 1.8015, - "y": 10.6406 - }, - { - "l": "50.0", - "x": 1.8207, - "y": 10.6776 - }, - { - "l": "50.0", - "x": 1.8398, - "y": 10.7126 - }, - { - "l": "50.0", - "x": 1.859, - "y": 10.7457 - }, - { - "l": "50.0", - "x": 1.8782, - "y": 10.7783 - }, - { - "l": "50.0", - "x": 1.8973, - "y": 10.8108 - }, - { - "l": "50.0", - "x": 1.9165, - "y": 10.8437 - }, - { - "l": "50.0", - "x": 1.9357, - "y": 10.8791 - }, - { - "l": "50.0", - "x": 1.9548, - "y": 10.9155 - }, - { - "l": "50.0", - "x": 1.974, - "y": 10.9523 - }, - { - "l": "50.0", - "x": 1.9932, - "y": 10.9894 - }, - { - "l": "50.0", - "x": 2.0123, - "y": 11.0265 - }, - { - "l": "50.0", - "x": 2.0957, - "y": 11.1815 - }, - { - "l": "50.0", - "x": 2.179, - "y": 11.323 - }, - { - "l": "50.0", - "x": 2.2623, - "y": 11.4815 - }, - { - "l": "50.0", - "x": 2.3457, - "y": 11.6357 - }, - { - "l": "50.0", - "x": 2.429, - "y": 11.7767 - }, - { - "l": "50.0", - "x": 2.5123, - "y": 11.9355 - }, - { - "l": "50.0", - "x": 2.5957, - "y": 12.0907 - }, - { - "l": "50.0", - "x": 2.679, - "y": 12.2332 - }, - { - "l": "50.0", - "x": 2.7623, - "y": 12.3936 - }, - { - "l": "50.0", - "x": 2.8457, - "y": 12.5499 - }, - { - "l": "50.0", - "x": 2.929, - "y": 12.6929 - }, - { - "l": "50.0", - "x": 3.0123, - "y": 12.8534 - }, - { - "l": "50.0", - "x": 3.0957, - "y": 13.0096 - }, - { - "l": "50.0", - "x": 3.179, - "y": 13.1525 - }, - { - "l": "50.0", - "x": 3.2623, - "y": 13.3126 - }, - { - "l": "50.0", - "x": 3.3457, - "y": 13.4683 - }, - { - "l": "50.0", - "x": 3.429, - "y": 13.6106 - }, - { - "l": "50.0", - "x": 3.5123, - "y": 13.7701 - }, - { - "l": "50.0", - "x": 3.5957, - "y": 13.9252 - }, - { - "l": "50.0", - "x": 3.679, - "y": 14.0668 - }, - { - "l": "50.0", - "x": 3.7623, - "y": 14.2258 - }, - { - "l": "50.0", - "x": 3.8457, - "y": 14.3813 - }, - { - "l": "50.0", - "x": 3.929, - "y": 14.5244 - }, - { - "l": "50.0", - "x": 4.0123, - "y": 14.6861 - }, - { - "l": "50.0", - "x": 4.0957, - "y": 14.8445 - }, - { - "l": "50.0", - "x": 4.179, - "y": 14.9904 - }, - { - "l": "50.0", - "x": 4.2623, - "y": 15.1548 - }, - { - "l": "50.0", - "x": 4.3457, - "y": 15.3153 - }, - { - "l": "50.0", - "x": 4.429, - "y": 15.4626 - }, - { - "l": "50.0", - "x": 4.5123, - "y": 15.6287 - }, - { - "l": "50.0", - "x": 4.5957, - "y": 15.7916 - }, - { - "l": "50.0", - "x": 4.679, - "y": 15.9419 - }, - { - "l": "50.0", - "x": 4.7623, - "y": 16.1123 - }, - { - "l": "50.0", - "x": 4.8457, - "y": 16.28 - }, - { - "l": "50.0", - "x": 4.929, - "y": 16.4352 - }, - { - "l": "50.0", - "x": 5.0123, - "y": 16.6111 - }, - { - "l": "50.0", - "x": 5.0957, - "y": 16.7842 - }, - { - "l": "50.0", - "x": 5.179, - "y": 16.9444 - }, - { - "l": "50.0", - "x": 5.2623, - "y": 17.1261 - }, - { - "l": "50.0", - "x": 5.3457, - "y": 17.3049 - }, - { - "l": "50.0", - "x": 5.429, - "y": 17.4701 - }, - { - "l": "50.0", - "x": 5.5123, - "y": 17.6573 - }, - { - "l": "50.0", - "x": 5.5957, - "y": 17.8411 - }, - { - "l": "50.0", - "x": 5.679, - "y": 18.0107 - }, - { - "l": "50.0", - "x": 5.7623, - "y": 18.2026 - }, - { - "l": "50.0", - "x": 5.8457, - "y": 18.3911 - }, - { - "l": "50.0", - "x": 5.929, - "y": 18.5655 - }, - { - "l": "50.0", - "x": 6.0123, - "y": 18.7634 - }, - { - "l": "50.0", - "x": 6.0957, - "y": 18.9585 - }, - { - "l": "50.0", - "x": 6.179, - "y": 19.1395 - }, - { - "l": "50.0", - "x": 6.2623, - "y": 19.3453 - }, - { - "l": "50.0", - "x": 6.3457, - "y": 19.5484 - }, - { - "l": "50.0", - "x": 6.429, - "y": 19.7368 - }, - { - "l": "50.0", - "x": 6.5123, - "y": 19.9509 - }, - { - "l": "50.0", - "x": 6.5957, - "y": 20.162 - }, - { - "l": "50.0", - "x": 6.679, - "y": 20.3574 - }, - { - "l": "50.0", - "x": 6.7623, - "y": 20.579 - }, - { - "l": "50.0", - "x": 6.8457, - "y": 20.7969 - }, - { - "l": "50.0", - "x": 6.929, - "y": 20.9978 - }, - { - "l": "50.0", - "x": 7.0123, - "y": 21.2249 - }, - { - "l": "50.0", - "x": 7.0957, - "y": 21.4472 - }, - { - "l": "50.0", - "x": 7.179, - "y": 21.6514 - }, - { - "l": "50.0", - "x": 7.2623, - "y": 21.8814 - }, - { - "l": "50.0", - "x": 7.3457, - "y": 22.1061 - }, - { - "l": "50.0", - "x": 7.429, - "y": 22.3126 - }, - { - "l": "50.0", - "x": 7.5123, - "y": 22.5454 - }, - { - "l": "50.0", - "x": 7.5957, - "y": 22.7731 - }, - { - "l": "50.0", - "x": 7.679, - "y": 22.9827 - }, - { - "l": "50.0", - "x": 7.7623, - "y": 23.2191 - }, - { - "l": "50.0", - "x": 7.8457, - "y": 23.4506 - }, - { - "l": "50.0", - "x": 7.929, - "y": 23.6638 - }, - { - "l": "50.0", - "x": 8.0123, - "y": 23.9047 - }, - { - "l": "50.0", - "x": 8.0957, - "y": 24.141 - }, - { - "l": "50.0", - "x": 8.179, - "y": 24.3588 - }, - { - "l": "50.0", - "x": 8.2623, - "y": 24.6052 - }, - { - "l": "50.0", - "x": 8.3457, - "y": 24.847 - }, - { - "l": "50.0", - "x": 8.429, - "y": 25.0697 - }, - { - "l": "50.0", - "x": 8.5123, - "y": 25.3213 - }, - { - "l": "50.0", - "x": 8.5957, - "y": 25.5678 - }, - { - "l": "50.0", - "x": 8.679, - "y": 25.7948 - }, - { - "l": "50.0", - "x": 8.7623, - "y": 26.0512 - }, - { - "l": "50.0", - "x": 8.8457, - "y": 26.3026 - }, - { - "l": "50.0", - "x": 8.929, - "y": 26.5344 - }, - { - "l": "50.0", - "x": 9.0123, - "y": 26.7966 - }, - { - "l": "50.0", - "x": 9.0957, - "y": 27.0539 - }, - { - "l": "50.0", - "x": 9.179, - "y": 27.2911 - }, - { - "l": "50.0", - "x": 9.2623, - "y": 27.5592 - }, - { - "l": "50.0", - "x": 9.3457, - "y": 27.822 - }, - { - "l": "50.0", - "x": 9.429, - "y": 28.0639 - }, - { - "l": "50.0", - "x": 9.5123, - "y": 28.3369 - }, - { - "l": "50.0", - "x": 9.5957, - "y": 28.604 - }, - { - "l": "50.0", - "x": 9.679, - "y": 28.8495 - }, - { - "l": "50.0", - "x": 9.7623, - "y": 29.1263 - }, - { - "l": "50.0", - "x": 9.8457, - "y": 29.3973 - }, - { - "l": "50.0", - "x": 9.929, - "y": 29.6465 - }, - { - "l": "50.0", - "x": 10.0123, - "y": 29.9282 - }, - { - "l": "50.0", - "x": 10.0957, - "y": 30.2046 - }, - { - "l": "50.0", - "x": 10.179, - "y": 30.4597 - }, - { - "l": "50.0", - "x": 10.2623, - "y": 30.7487 - }, - { - "l": "50.0", - "x": 10.3457, - "y": 31.0331 - }, - { - "l": "50.0", - "x": 10.429, - "y": 31.2964 - }, - { - "l": "50.0", - "x": 10.5123, - "y": 31.5953 - }, - { - "l": "50.0", - "x": 10.5957, - "y": 31.89 - }, - { - "l": "50.0", - "x": 10.679, - "y": 32.1633 - }, - { - "l": "50.0", - "x": 10.7623, - "y": 32.4735 - }, - { - "l": "50.0", - "x": 10.8457, - "y": 32.7798 - }, - { - "l": "50.0", - "x": 10.929, - "y": 33.0636 - }, - { - "l": "50.0", - "x": 11.0123, - "y": 33.3861 - }, - { - "l": "50.0", - "x": 11.0957, - "y": 33.7041 - }, - { - "l": "50.0", - "x": 11.179, - "y": 33.9988 - }, - { - "l": "50.0", - "x": 11.2623, - "y": 34.3338 - }, - { - "l": "50.0", - "x": 11.3457, - "y": 34.6644 - }, - { - "l": "50.0", - "x": 11.429, - "y": 34.971 - }, - { - "l": "50.0", - "x": 11.5123, - "y": 35.3197 - }, - { - "l": "50.0", - "x": 11.5957, - "y": 35.6639 - }, - { - "l": "50.0", - "x": 11.679, - "y": 35.9831 - }, - { - "l": "50.0", - "x": 11.7623, - "y": 36.3461 - }, - { - "l": "50.0", - "x": 11.8457, - "y": 36.7043 - }, - { - "l": "50.0", - "x": 11.929, - "y": 37.0367 - }, - { - "l": "50.0", - "x": 12.0123, - "y": 37.4149 - }, - { - "l": "50.0", - "x": 12.0957, - "y": 37.7882 - }, - { - "l": "50.0", - "x": 12.179, - "y": 38.134 - }, - { - "l": "50.0", - "x": 12.2623, - "y": 38.5267 - }, - { - "l": "50.0", - "x": 12.3457, - "y": 38.9135 - }, - { - "l": "50.0", - "x": 12.429, - "y": 39.2713 - }, - { - "l": "50.0", - "x": 12.5123, - "y": 39.6768 - }, - { - "l": "50.0", - "x": 12.5957, - "y": 40.0751 - }, - { - "l": "50.0", - "x": 12.679, - "y": 40.4425 - }, - { - "l": "50.0", - "x": 12.7623, - "y": 40.8574 - }, - { - "l": "50.0", - "x": 12.8457, - "y": 41.2631 - }, - { - "l": "50.0", - "x": 12.929, - "y": 41.636 - }, - { - "l": "50.0", - "x": 13.0123, - "y": 42.0557 - }, - { - "l": "50.0", - "x": 13.0957, - "y": 42.4652 - }, - { - "l": "50.0", - "x": 13.179, - "y": 42.8406 - }, - { - "l": "50.0", - "x": 13.2623, - "y": 43.2625 - }, - { - "l": "50.0", - "x": 13.3457, - "y": 43.6734 - }, - { - "l": "50.0", - "x": 13.429, - "y": 44.0492 - }, - { - "l": "50.0", - "x": 13.5123, - "y": 44.4703 - }, - { - "l": "50.0", - "x": 13.5957, - "y": 44.8791 - }, - { - "l": "50.0", - "x": 13.679, - "y": 45.2513 - }, - { - "l": "50.0", - "x": 13.7623, - "y": 45.6668 - }, - { - "l": "50.0", - "x": 13.8457, - "y": 46.0681 - }, - { - "l": "50.0", - "x": 13.929, - "y": 46.4325 - }, - { - "l": "50.0", - "x": 14.0123, - "y": 46.8372 - }, - { - "l": "50.0", - "x": 14.0957, - "y": 47.227 - }, - { - "l": "50.0", - "x": 14.179, - "y": 47.5794 - }, - { - "l": "50.0", - "x": 14.2623, - "y": 47.9705 - }, - { - "l": "50.0", - "x": 14.3457, - "y": 48.3465 - }, - { - "l": "50.0", - "x": 14.429, - "y": 48.6862 - }, - { - "l": "50.0", - "x": 14.5123, - "y": 49.0631 - }, - { - "l": "50.0", - "x": 14.5957, - "y": 49.4254 - }, - { - "l": "50.0", - "x": 14.679, - "y": 49.7524 - }, - { - "l": "50.0", - "x": 14.7623, - "y": 50.1148 - }, - { - "l": "50.0", - "x": 14.8457, - "y": 50.4632 - }, - { - "l": "50.0", - "x": 14.929, - "y": 50.7777 - }, - { - "l": "50.0", - "x": 15.0123, - "y": 51.1262 - }, - { - "l": "50.0", - "x": 15.0957, - "y": 51.461 - }, - { - "l": "50.0", - "x": 15.179, - "y": 51.7636 - }, - { - "l": "50.0", - "x": 15.2623, - "y": 52.099 - }, - { - "l": "50.0", - "x": 15.3457, - "y": 52.4214 - }, - { - "l": "50.0", - "x": 15.429, - "y": 52.7131 - }, - { - "l": "50.0", - "x": 15.5123, - "y": 53.0363 - }, - { - "l": "50.0", - "x": 15.5957, - "y": 53.3477 - }, - { - "l": "50.0", - "x": 15.679, - "y": 53.6292 - }, - { - "l": "50.0", - "x": 15.7623, - "y": 53.9416 - }, - { - "l": "50.0", - "x": 15.8457, - "y": 54.2434 - }, - { - "l": "50.0", - "x": 15.929, - "y": 54.5161 - }, - { - "l": "50.0", - "x": 16.0123, - "y": 54.8193 - }, - { - "l": "50.0", - "x": 16.0957, - "y": 55.1113 - }, - { - "l": "50.0", - "x": 16.179, - "y": 55.3759 - }, - { - "l": "50.0", - "x": 16.2623, - "y": 55.6705 - }, - { - "l": "50.0", - "x": 16.3457, - "y": 55.9548 - }, - { - "l": "50.0", - "x": 16.429, - "y": 56.2128 - }, - { - "l": "50.0", - "x": 16.5123, - "y": 56.5 - }, - { - "l": "50.0", - "x": 16.5957, - "y": 56.7775 - }, - { - "l": "50.0", - "x": 16.679, - "y": 57.0298 - }, - { - "l": "50.0", - "x": 16.7623, - "y": 57.3107 - }, - { - "l": "50.0", - "x": 16.8457, - "y": 57.5825 - }, - { - "l": "50.0", - "x": 16.929, - "y": 57.8297 - }, - { - "l": "50.0", - "x": 17.0123, - "y": 58.1053 - }, - { - "l": "50.0", - "x": 17.0957, - "y": 58.3713 - }, - { - "l": "50.0", - "x": 17.179, - "y": 58.6136 - }, - { - "l": "50.0", - "x": 17.2623, - "y": 58.8842 - }, - { - "l": "50.0", - "x": 17.3457, - "y": 59.1451 - }, - { - "l": "50.0", - "x": 17.429, - "y": 59.3831 - }, - { - "l": "50.0", - "x": 17.5123, - "y": 59.6484 - }, - { - "l": "50.0", - "x": 17.5957, - "y": 59.9048 - }, - { - "l": "50.0", - "x": 17.679, - "y": 60.138 - }, - { - "l": "50.0", - "x": 17.7623, - "y": 60.3986 - }, - { - "l": "50.0", - "x": 17.8457, - "y": 60.6507 - }, - { - "l": "50.0", - "x": 17.929, - "y": 60.8801 - }, - { - "l": "50.0", - "x": 18.0123, - "y": 61.1362 - }, - { - "l": "50.0", - "x": 18.0957, - "y": 61.3842 - }, - { - "l": "50.0", - "x": 18.179, - "y": 61.61 - }, - { - "l": "50.0", - "x": 18.2623, - "y": 61.8625 - }, - { - "l": "50.0", - "x": 18.3457, - "y": 62.1063 - }, - { - "l": "50.0", - "x": 18.429, - "y": 62.3285 - }, - { - "l": "50.0", - "x": 18.5123, - "y": 62.5779 - }, - { - "l": "50.0", - "x": 18.5957, - "y": 62.819 - }, - { - "l": "50.0", - "x": 18.679, - "y": 63.038 - }, - { - "l": "50.0", - "x": 18.7623, - "y": 63.283 - }, - { - "l": "50.0", - "x": 18.8457, - "y": 63.5201 - }, - { - "l": "50.0", - "x": 18.929, - "y": 63.7362 - }, - { - "l": "50.0", - "x": 19.0123, - "y": 63.9765 - }, - { - "l": "50.0", - "x": 19.0957, - "y": 64.2106 - }, - { - "l": "50.0", - "x": 19.179, - "y": 64.4242 - }, - { - "l": "50.0", - "x": 19.2623, - "y": 64.6602 - }, - { - "l": "50.0", - "x": 19.3457, - "y": 64.8898 - }, - { - "l": "50.0", - "x": 19.429, - "y": 65.1 - }, - { - "l": "50.0", - "x": 19.5123, - "y": 65.3359 - }, - { - "l": "50.0", - "x": 19.5957, - "y": 65.5656 - }, - { - "l": "50.0", - "x": 19.679, - "y": 65.7749 - }, - { - "l": "50.0", - "x": 19.7623, - "y": 66.0074 - }, - { - "l": "50.0", - "x": 19.8457, - "y": 66.2335 - }, - { - "l": "50.0", - "x": 19.929, - "y": 66.4398 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 0.0, - "y": 3.3755 - }, - { - "l": "75.0", - "x": 0.0192, - "y": 3.5422 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 3.7087 - }, - { - "l": "75.0", - "x": 0.0575, - "y": 3.8751 - }, - { - "l": "75.0", - "x": 0.0767, - "y": 4.0414 - }, - { - "l": "75.0", - "x": 0.0958, - "y": 4.1961 - }, - { - "l": "75.0", - "x": 0.115, - "y": 4.3464 - }, - { - "l": "75.0", - "x": 0.1342, - "y": 4.4962 - }, - { - "l": "75.0", - "x": 0.1533, - "y": 4.6472 - }, - { - "l": "75.0", - "x": 0.1725, - "y": 4.8027 - }, - { - "l": "75.0", - "x": 0.1916, - "y": 4.9707 - }, - { - "l": "75.0", - "x": 0.2108, - "y": 5.1411 - }, - { - "l": "75.0", - "x": 0.23, - "y": 5.3125 - }, - { - "l": "75.0", - "x": 0.2491, - "y": 5.4834 - }, - { - "l": "75.0", - "x": 0.2683, - "y": 5.6518 - }, - { - "l": "75.0", - "x": 0.2875, - "y": 5.8171 - }, - { - "l": "75.0", - "x": 0.3066, - "y": 5.9785 - }, - { - "l": "75.0", - "x": 0.3258, - "y": 6.1347 - }, - { - "l": "75.0", - "x": 0.345, - "y": 6.2779 - }, - { - "l": "75.0", - "x": 0.3641, - "y": 6.4135 - }, - { - "l": "75.0", - "x": 0.3833, - "y": 6.5451 - }, - { - "l": "75.0", - "x": 0.4025, - "y": 6.6742 - }, - { - "l": "75.0", - "x": 0.4216, - "y": 6.8031 - }, - { - "l": "75.0", - "x": 0.4408, - "y": 6.9396 - }, - { - "l": "75.0", - "x": 0.46, - "y": 7.0751 - }, - { - "l": "75.0", - "x": 0.4791, - "y": 7.2089 - }, - { - "l": "75.0", - "x": 0.4983, - "y": 7.3399 - }, - { - "l": "75.0", - "x": 0.5175, - "y": 7.466 - }, - { - "l": "75.0", - "x": 0.5366, - "y": 7.5878 - }, - { - "l": "75.0", - "x": 0.5558, - "y": 7.7049 - }, - { - "l": "75.0", - "x": 0.5749, - "y": 7.8168 - }, - { - "l": "75.0", - "x": 0.5941, - "y": 7.9189 - }, - { - "l": "75.0", - "x": 0.6133, - "y": 8.0144 - }, - { - "l": "75.0", - "x": 0.6324, - "y": 8.1061 - }, - { - "l": "75.0", - "x": 0.6516, - "y": 8.1953 - }, - { - "l": "75.0", - "x": 0.6708, - "y": 8.2837 - }, - { - "l": "75.0", - "x": 0.6899, - "y": 8.3773 - }, - { - "l": "75.0", - "x": 0.7091, - "y": 8.4703 - }, - { - "l": "75.0", - "x": 0.7283, - "y": 8.5619 - }, - { - "l": "75.0", - "x": 0.7474, - "y": 8.6518 - }, - { - "l": "75.0", - "x": 0.7666, - "y": 8.7388 - }, - { - "l": "75.0", - "x": 0.7858, - "y": 8.823 - }, - { - "l": "75.0", - "x": 0.8049, - "y": 8.9044 - }, - { - "l": "75.0", - "x": 0.8241, - "y": 8.9825 - }, - { - "l": "75.0", - "x": 0.8433, - "y": 9.0544 - }, - { - "l": "75.0", - "x": 0.8624, - "y": 9.1218 - }, - { - "l": "75.0", - "x": 0.8816, - "y": 9.1871 - }, - { - "l": "75.0", - "x": 0.9008, - "y": 9.251 - }, - { - "l": "75.0", - "x": 0.9199, - "y": 9.3146 - }, - { - "l": "75.0", - "x": 0.9391, - "y": 9.3827 - }, - { - "l": "75.0", - "x": 0.9582, - "y": 9.4508 - }, - { - "l": "75.0", - "x": 0.9774, - "y": 9.5185 - }, - { - "l": "75.0", - "x": 0.9966, - "y": 9.5854 - }, - { - "l": "75.0", - "x": 1.0157, - "y": 9.6508 - }, - { - "l": "75.0", - "x": 1.0349, - "y": 9.7146 - }, - { - "l": "75.0", - "x": 1.0541, - "y": 9.7767 - }, - { - "l": "75.0", - "x": 1.0732, - "y": 9.8367 - }, - { - "l": "75.0", - "x": 1.0924, - "y": 9.8924 - }, - { - "l": "75.0", - "x": 1.1116, - "y": 9.9449 - }, - { - "l": "75.0", - "x": 1.1307, - "y": 9.996 - }, - { - "l": "75.0", - "x": 1.1499, - "y": 10.0464 - }, - { - "l": "75.0", - "x": 1.1691, - "y": 10.0968 - }, - { - "l": "75.0", - "x": 1.1882, - "y": 10.1509 - }, - { - "l": "75.0", - "x": 1.2074, - "y": 10.2055 - }, - { - "l": "75.0", - "x": 1.2266, - "y": 10.26 - }, - { - "l": "75.0", - "x": 1.2457, - "y": 10.3143 - }, - { - "l": "75.0", - "x": 1.2649, - "y": 10.3677 - }, - { - "l": "75.0", - "x": 1.2841, - "y": 10.4202 - }, - { - "l": "75.0", - "x": 1.3032, - "y": 10.4715 - }, - { - "l": "75.0", - "x": 1.3224, - "y": 10.5214 - }, - { - "l": "75.0", - "x": 1.3415, - "y": 10.5681 - }, - { - "l": "75.0", - "x": 1.3607, - "y": 10.6121 - }, - { - "l": "75.0", - "x": 1.3799, - "y": 10.6552 - }, - { - "l": "75.0", - "x": 1.399, - "y": 10.6979 - }, - { - "l": "75.0", - "x": 1.4182, - "y": 10.7408 - }, - { - "l": "75.0", - "x": 1.4374, - "y": 10.7868 - }, - { - "l": "75.0", - "x": 1.4565, - "y": 10.8335 - }, - { - "l": "75.0", - "x": 1.4757, - "y": 10.8804 - }, - { - "l": "75.0", - "x": 1.4949, - "y": 10.9272 - }, - { - "l": "75.0", - "x": 1.514, - "y": 10.9735 - }, - { - "l": "75.0", - "x": 1.5332, - "y": 11.0192 - }, - { - "l": "75.0", - "x": 1.5524, - "y": 11.064 - }, - { - "l": "75.0", - "x": 1.5715, - "y": 11.1078 - }, - { - "l": "75.0", - "x": 1.5907, - "y": 11.1489 - }, - { - "l": "75.0", - "x": 1.6099, - "y": 11.1877 - }, - { - "l": "75.0", - "x": 1.629, - "y": 11.2258 - }, - { - "l": "75.0", - "x": 1.6482, - "y": 11.2637 - }, - { - "l": "75.0", - "x": 1.6674, - "y": 11.3019 - }, - { - "l": "75.0", - "x": 1.6865, - "y": 11.3429 - }, - { - "l": "75.0", - "x": 1.7057, - "y": 11.3847 - }, - { - "l": "75.0", - "x": 1.7248, - "y": 11.4269 - }, - { - "l": "75.0", - "x": 1.744, - "y": 11.4691 - }, - { - "l": "75.0", - "x": 1.7632, - "y": 11.5112 - }, - { - "l": "75.0", - "x": 1.7823, - "y": 11.5528 - }, - { - "l": "75.0", - "x": 1.8015, - "y": 11.5938 - }, - { - "l": "75.0", - "x": 1.8207, - "y": 11.6341 - }, - { - "l": "75.0", - "x": 1.8398, - "y": 11.6721 - }, - { - "l": "75.0", - "x": 1.859, - "y": 11.7081 - }, - { - "l": "75.0", - "x": 1.8782, - "y": 11.7436 - }, - { - "l": "75.0", - "x": 1.8973, - "y": 11.779 - }, - { - "l": "75.0", - "x": 1.9165, - "y": 11.8148 - }, - { - "l": "75.0", - "x": 1.9357, - "y": 11.8534 - }, - { - "l": "75.0", - "x": 1.9548, - "y": 11.893 - }, - { - "l": "75.0", - "x": 1.974, - "y": 11.9332 - }, - { - "l": "75.0", - "x": 1.9932, - "y": 11.9735 - }, - { - "l": "75.0", - "x": 2.0123, - "y": 12.014 - }, - { - "l": "75.0", - "x": 2.0957, - "y": 12.1831 - }, - { - "l": "75.0", - "x": 2.179, - "y": 12.3377 - }, - { - "l": "75.0", - "x": 2.2623, - "y": 12.5111 - }, - { - "l": "75.0", - "x": 2.3457, - "y": 12.6799 - }, - { - "l": "75.0", - "x": 2.429, - "y": 12.8347 - }, - { - "l": "75.0", - "x": 2.5123, - "y": 13.009 - }, - { - "l": "75.0", - "x": 2.5957, - "y": 13.1798 - }, - { - "l": "75.0", - "x": 2.679, - "y": 13.3368 - }, - { - "l": "75.0", - "x": 2.7623, - "y": 13.5138 - }, - { - "l": "75.0", - "x": 2.8457, - "y": 13.6865 - }, - { - "l": "75.0", - "x": 2.929, - "y": 13.8448 - }, - { - "l": "75.0", - "x": 3.0123, - "y": 14.0228 - }, - { - "l": "75.0", - "x": 3.0957, - "y": 14.1963 - }, - { - "l": "75.0", - "x": 3.179, - "y": 14.3553 - }, - { - "l": "75.0", - "x": 3.2623, - "y": 14.5338 - }, - { - "l": "75.0", - "x": 3.3457, - "y": 14.7076 - }, - { - "l": "75.0", - "x": 3.429, - "y": 14.8668 - }, - { - "l": "75.0", - "x": 3.5123, - "y": 15.0456 - }, - { - "l": "75.0", - "x": 3.5957, - "y": 15.2196 - }, - { - "l": "75.0", - "x": 3.679, - "y": 15.3789 - }, - { - "l": "75.0", - "x": 3.7623, - "y": 15.5581 - }, - { - "l": "75.0", - "x": 3.8457, - "y": 15.7336 - }, - { - "l": "75.0", - "x": 3.929, - "y": 15.8954 - }, - { - "l": "75.0", - "x": 4.0123, - "y": 16.0786 - }, - { - "l": "75.0", - "x": 4.0957, - "y": 16.2584 - }, - { - "l": "75.0", - "x": 4.179, - "y": 16.4244 - }, - { - "l": "75.0", - "x": 4.2623, - "y": 16.6117 - }, - { - "l": "75.0", - "x": 4.3457, - "y": 16.7951 - }, - { - "l": "75.0", - "x": 4.429, - "y": 16.9637 - }, - { - "l": "75.0", - "x": 4.5123, - "y": 17.1542 - }, - { - "l": "75.0", - "x": 4.5957, - "y": 17.3413 - }, - { - "l": "75.0", - "x": 4.679, - "y": 17.5145 - }, - { - "l": "75.0", - "x": 4.7623, - "y": 17.7112 - }, - { - "l": "75.0", - "x": 4.8457, - "y": 17.9053 - }, - { - "l": "75.0", - "x": 4.929, - "y": 18.0851 - }, - { - "l": "75.0", - "x": 5.0123, - "y": 18.2895 - }, - { - "l": "75.0", - "x": 5.0957, - "y": 18.4911 - }, - { - "l": "75.0", - "x": 5.179, - "y": 18.6781 - }, - { - "l": "75.0", - "x": 5.2623, - "y": 18.8906 - }, - { - "l": "75.0", - "x": 5.3457, - "y": 19.1001 - }, - { - "l": "75.0", - "x": 5.429, - "y": 19.2942 - }, - { - "l": "75.0", - "x": 5.5123, - "y": 19.5145 - }, - { - "l": "75.0", - "x": 5.5957, - "y": 19.7313 - }, - { - "l": "75.0", - "x": 5.679, - "y": 19.9318 - }, - { - "l": "75.0", - "x": 5.7623, - "y": 20.1592 - }, - { - "l": "75.0", - "x": 5.8457, - "y": 20.383 - }, - { - "l": "75.0", - "x": 5.929, - "y": 20.5905 - }, - { - "l": "75.0", - "x": 6.0123, - "y": 20.8266 - }, - { - "l": "75.0", - "x": 6.0957, - "y": 21.0598 - }, - { - "l": "75.0", - "x": 6.179, - "y": 21.2765 - }, - { - "l": "75.0", - "x": 6.2623, - "y": 21.5236 - }, - { - "l": "75.0", - "x": 6.3457, - "y": 21.7679 - }, - { - "l": "75.0", - "x": 6.429, - "y": 21.9949 - }, - { - "l": "75.0", - "x": 6.5123, - "y": 22.2536 - }, - { - "l": "75.0", - "x": 6.5957, - "y": 22.5091 - }, - { - "l": "75.0", - "x": 6.679, - "y": 22.7462 - }, - { - "l": "75.0", - "x": 6.7623, - "y": 23.0157 - }, - { - "l": "75.0", - "x": 6.8457, - "y": 23.2812 - }, - { - "l": "75.0", - "x": 6.929, - "y": 23.5267 - }, - { - "l": "75.0", - "x": 7.0123, - "y": 23.8046 - }, - { - "l": "75.0", - "x": 7.0957, - "y": 24.0773 - }, - { - "l": "75.0", - "x": 7.179, - "y": 24.3285 - }, - { - "l": "75.0", - "x": 7.2623, - "y": 24.612 - }, - { - "l": "75.0", - "x": 7.3457, - "y": 24.8895 - }, - { - "l": "75.0", - "x": 7.429, - "y": 25.145 - }, - { - "l": "75.0", - "x": 7.5123, - "y": 25.4338 - }, - { - "l": "75.0", - "x": 7.5957, - "y": 25.7169 - }, - { - "l": "75.0", - "x": 7.679, - "y": 25.9778 - }, - { - "l": "75.0", - "x": 7.7623, - "y": 26.2728 - }, - { - "l": "75.0", - "x": 7.8457, - "y": 26.5623 - }, - { - "l": "75.0", - "x": 7.929, - "y": 26.8293 - }, - { - "l": "75.0", - "x": 8.0123, - "y": 27.1315 - }, - { - "l": "75.0", - "x": 8.0957, - "y": 27.4284 - }, - { - "l": "75.0", - "x": 8.179, - "y": 27.7025 - }, - { - "l": "75.0", - "x": 8.2623, - "y": 28.0131 - }, - { - "l": "75.0", - "x": 8.3457, - "y": 28.3181 - }, - { - "l": "75.0", - "x": 8.429, - "y": 28.5994 - }, - { - "l": "75.0", - "x": 8.5123, - "y": 28.9175 - }, - { - "l": "75.0", - "x": 8.5957, - "y": 29.2295 - }, - { - "l": "75.0", - "x": 8.679, - "y": 29.5171 - }, - { - "l": "75.0", - "x": 8.7623, - "y": 29.8421 - }, - { - "l": "75.0", - "x": 8.8457, - "y": 30.161 - }, - { - "l": "75.0", - "x": 8.929, - "y": 30.4553 - }, - { - "l": "75.0", - "x": 9.0123, - "y": 30.7881 - }, - { - "l": "75.0", - "x": 9.0957, - "y": 31.1148 - }, - { - "l": "75.0", - "x": 9.179, - "y": 31.4161 - }, - { - "l": "75.0", - "x": 9.2623, - "y": 31.7567 - }, - { - "l": "75.0", - "x": 9.3457, - "y": 32.0904 - }, - { - "l": "75.0", - "x": 9.429, - "y": 32.3975 - }, - { - "l": "75.0", - "x": 9.5123, - "y": 32.7439 - }, - { - "l": "75.0", - "x": 9.5957, - "y": 33.0827 - }, - { - "l": "75.0", - "x": 9.679, - "y": 33.3938 - }, - { - "l": "75.0", - "x": 9.7623, - "y": 33.7444 - }, - { - "l": "75.0", - "x": 9.8457, - "y": 34.0871 - }, - { - "l": "75.0", - "x": 9.929, - "y": 34.402 - }, - { - "l": "75.0", - "x": 10.0123, - "y": 34.7574 - }, - { - "l": "75.0", - "x": 10.0957, - "y": 35.1055 - }, - { - "l": "75.0", - "x": 10.179, - "y": 35.4262 - }, - { - "l": "75.0", - "x": 10.2623, - "y": 35.7888 - }, - { - "l": "75.0", - "x": 10.3457, - "y": 36.1448 - }, - { - "l": "75.0", - "x": 10.429, - "y": 36.4734 - }, - { - "l": "75.0", - "x": 10.5123, - "y": 36.8457 - }, - { - "l": "75.0", - "x": 10.5957, - "y": 37.2118 - }, - { - "l": "75.0", - "x": 10.679, - "y": 37.55 - }, - { - "l": "75.0", - "x": 10.7623, - "y": 37.933 - }, - { - "l": "75.0", - "x": 10.8457, - "y": 38.3096 - }, - { - "l": "75.0", - "x": 10.929, - "y": 38.6574 - }, - { - "l": "75.0", - "x": 11.0123, - "y": 39.0511 - }, - { - "l": "75.0", - "x": 11.0957, - "y": 39.4379 - }, - { - "l": "75.0", - "x": 11.179, - "y": 39.7948 - }, - { - "l": "75.0", - "x": 11.2623, - "y": 40.1986 - }, - { - "l": "75.0", - "x": 11.3457, - "y": 40.5952 - }, - { - "l": "75.0", - "x": 11.429, - "y": 40.9613 - }, - { - "l": "75.0", - "x": 11.5123, - "y": 41.3757 - }, - { - "l": "75.0", - "x": 11.5957, - "y": 41.7827 - }, - { - "l": "75.0", - "x": 11.679, - "y": 42.1584 - }, - { - "l": "75.0", - "x": 11.7623, - "y": 42.5835 - }, - { - "l": "75.0", - "x": 11.8457, - "y": 43.001 - }, - { - "l": "75.0", - "x": 11.929, - "y": 43.3865 - }, - { - "l": "75.0", - "x": 12.0123, - "y": 43.8231 - }, - { - "l": "75.0", - "x": 12.0957, - "y": 44.2518 - }, - { - "l": "75.0", - "x": 12.179, - "y": 44.6472 - }, - { - "l": "75.0", - "x": 12.2623, - "y": 45.0943 - }, - { - "l": "75.0", - "x": 12.3457, - "y": 45.5325 - }, - { - "l": "75.0", - "x": 12.429, - "y": 45.9362 - }, - { - "l": "75.0", - "x": 12.5123, - "y": 46.3918 - }, - { - "l": "75.0", - "x": 12.5957, - "y": 46.8375 - }, - { - "l": "75.0", - "x": 12.679, - "y": 47.2469 - }, - { - "l": "75.0", - "x": 12.7623, - "y": 47.7077 - }, - { - "l": "75.0", - "x": 12.8457, - "y": 48.1569 - }, - { - "l": "75.0", - "x": 12.929, - "y": 48.5682 - }, - { - "l": "75.0", - "x": 13.0123, - "y": 49.0297 - }, - { - "l": "75.0", - "x": 13.0957, - "y": 49.4787 - }, - { - "l": "75.0", - "x": 13.179, - "y": 49.8891 - }, - { - "l": "75.0", - "x": 13.2623, - "y": 50.349 - }, - { - "l": "75.0", - "x": 13.3457, - "y": 50.7957 - }, - { - "l": "75.0", - "x": 13.429, - "y": 51.2031 - }, - { - "l": "75.0", - "x": 13.5123, - "y": 51.6585 - }, - { - "l": "75.0", - "x": 13.5957, - "y": 52.0994 - }, - { - "l": "75.0", - "x": 13.679, - "y": 52.4999 - }, - { - "l": "75.0", - "x": 13.7623, - "y": 52.9458 - }, - { - "l": "75.0", - "x": 13.8457, - "y": 53.3753 - }, - { - "l": "75.0", - "x": 13.929, - "y": 53.7644 - }, - { - "l": "75.0", - "x": 14.0123, - "y": 54.1955 - }, - { - "l": "75.0", - "x": 14.0957, - "y": 54.6095 - }, - { - "l": "75.0", - "x": 14.179, - "y": 54.9826 - }, - { - "l": "75.0", - "x": 14.2623, - "y": 55.3955 - }, - { - "l": "75.0", - "x": 14.3457, - "y": 55.7913 - }, - { - "l": "75.0", - "x": 14.429, - "y": 56.1477 - }, - { - "l": "75.0", - "x": 14.5123, - "y": 56.5418 - }, - { - "l": "75.0", - "x": 14.5957, - "y": 56.9194 - }, - { - "l": "75.0", - "x": 14.679, - "y": 57.2591 - }, - { - "l": "75.0", - "x": 14.7623, - "y": 57.6344 - }, - { - "l": "75.0", - "x": 14.8457, - "y": 57.9938 - }, - { - "l": "75.0", - "x": 14.929, - "y": 58.317 - }, - { - "l": "75.0", - "x": 15.0123, - "y": 58.6739 - }, - { - "l": "75.0", - "x": 15.0957, - "y": 59.0156 - }, - { - "l": "75.0", - "x": 15.179, - "y": 59.3231 - }, - { - "l": "75.0", - "x": 15.2623, - "y": 59.6629 - }, - { - "l": "75.0", - "x": 15.3457, - "y": 59.9881 - }, - { - "l": "75.0", - "x": 15.429, - "y": 60.2813 - }, - { - "l": "75.0", - "x": 15.5123, - "y": 60.6049 - }, - { - "l": "75.0", - "x": 15.5957, - "y": 60.9154 - }, - { - "l": "75.0", - "x": 15.679, - "y": 61.195 - }, - { - "l": "75.0", - "x": 15.7623, - "y": 61.504 - }, - { - "l": "75.0", - "x": 15.8457, - "y": 61.8017 - }, - { - "l": "75.0", - "x": 15.929, - "y": 62.0698 - }, - { - "l": "75.0", - "x": 16.0123, - "y": 62.3669 - }, - { - "l": "75.0", - "x": 16.0957, - "y": 62.6522 - }, - { - "l": "75.0", - "x": 16.179, - "y": 62.9102 - }, - { - "l": "75.0", - "x": 16.2623, - "y": 63.1969 - }, - { - "l": "75.0", - "x": 16.3457, - "y": 63.4728 - }, - { - "l": "75.0", - "x": 16.429, - "y": 63.723 - }, - { - "l": "75.0", - "x": 16.5123, - "y": 64.0009 - }, - { - "l": "75.0", - "x": 16.5957, - "y": 64.269 - }, - { - "l": "75.0", - "x": 16.679, - "y": 64.5122 - }, - { - "l": "75.0", - "x": 16.7623, - "y": 64.7829 - }, - { - "l": "75.0", - "x": 16.8457, - "y": 65.0444 - }, - { - "l": "75.0", - "x": 16.929, - "y": 65.2819 - }, - { - "l": "75.0", - "x": 17.0123, - "y": 65.5465 - }, - { - "l": "75.0", - "x": 17.0957, - "y": 65.8017 - }, - { - "l": "75.0", - "x": 17.179, - "y": 66.0339 - }, - { - "l": "75.0", - "x": 17.2623, - "y": 66.2932 - }, - { - "l": "75.0", - "x": 17.3457, - "y": 66.5431 - }, - { - "l": "75.0", - "x": 17.429, - "y": 66.7709 - }, - { - "l": "75.0", - "x": 17.5123, - "y": 67.0248 - }, - { - "l": "75.0", - "x": 17.5957, - "y": 67.2703 - }, - { - "l": "75.0", - "x": 17.679, - "y": 67.4935 - }, - { - "l": "75.0", - "x": 17.7623, - "y": 67.7429 - }, - { - "l": "75.0", - "x": 17.8457, - "y": 67.9843 - }, - { - "l": "75.0", - "x": 17.929, - "y": 68.204 - }, - { - "l": "75.0", - "x": 18.0123, - "y": 68.4496 - }, - { - "l": "75.0", - "x": 18.0957, - "y": 68.6875 - }, - { - "l": "75.0", - "x": 18.179, - "y": 68.9042 - }, - { - "l": "75.0", - "x": 18.2623, - "y": 69.1467 - }, - { - "l": "75.0", - "x": 18.3457, - "y": 69.3813 - }, - { - "l": "75.0", - "x": 18.429, - "y": 69.5952 - }, - { - "l": "75.0", - "x": 18.5123, - "y": 69.8349 - }, - { - "l": "75.0", - "x": 18.5957, - "y": 70.0671 - }, - { - "l": "75.0", - "x": 18.679, - "y": 70.2784 - }, - { - "l": "75.0", - "x": 18.7623, - "y": 70.5147 - }, - { - "l": "75.0", - "x": 18.8457, - "y": 70.7437 - }, - { - "l": "75.0", - "x": 18.929, - "y": 70.9525 - }, - { - "l": "75.0", - "x": 19.0123, - "y": 71.1853 - }, - { - "l": "75.0", - "x": 19.0957, - "y": 71.4117 - }, - { - "l": "75.0", - "x": 19.179, - "y": 71.6183 - }, - { - "l": "75.0", - "x": 19.2623, - "y": 71.8479 - }, - { - "l": "75.0", - "x": 19.3457, - "y": 72.0711 - }, - { - "l": "75.0", - "x": 19.429, - "y": 72.2751 - }, - { - "l": "75.0", - "x": 19.5123, - "y": 72.5039 - }, - { - "l": "75.0", - "x": 19.5957, - "y": 72.7264 - }, - { - "l": "75.0", - "x": 19.679, - "y": 72.9293 - }, - { - "l": "75.0", - "x": 19.7623, - "y": 73.1555 - }, - { - "l": "75.0", - "x": 19.8457, - "y": 73.3753 - }, - { - "l": "75.0", - "x": 19.929, - "y": 73.5764 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 0.0, - "y": 3.7093 - }, - { - "l": "91.0", - "x": 0.0192, - "y": 3.8912 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 4.0728 - }, - { - "l": "91.0", - "x": 0.0575, - "y": 4.2542 - }, - { - "l": "91.0", - "x": 0.0767, - "y": 4.4353 - }, - { - "l": "91.0", - "x": 0.0958, - "y": 4.6038 - }, - { - "l": "91.0", - "x": 0.115, - "y": 4.7674 - }, - { - "l": "91.0", - "x": 0.1342, - "y": 4.9303 - }, - { - "l": "91.0", - "x": 0.1533, - "y": 5.0946 - }, - { - "l": "91.0", - "x": 0.1725, - "y": 5.2635 - }, - { - "l": "91.0", - "x": 0.1916, - "y": 5.4461 - }, - { - "l": "91.0", - "x": 0.2108, - "y": 5.6311 - }, - { - "l": "91.0", - "x": 0.23, - "y": 5.8171 - }, - { - "l": "91.0", - "x": 0.2491, - "y": 6.0025 - }, - { - "l": "91.0", - "x": 0.2683, - "y": 6.1849 - }, - { - "l": "91.0", - "x": 0.2875, - "y": 6.3641 - }, - { - "l": "91.0", - "x": 0.3066, - "y": 6.5387 - }, - { - "l": "91.0", - "x": 0.3258, - "y": 6.7078 - }, - { - "l": "91.0", - "x": 0.345, - "y": 6.8626 - }, - { - "l": "91.0", - "x": 0.3641, - "y": 7.0092 - }, - { - "l": "91.0", - "x": 0.3833, - "y": 7.1513 - }, - { - "l": "91.0", - "x": 0.4025, - "y": 7.2907 - }, - { - "l": "91.0", - "x": 0.4216, - "y": 7.4299 - }, - { - "l": "91.0", - "x": 0.4408, - "y": 7.5771 - }, - { - "l": "91.0", - "x": 0.46, - "y": 7.7232 - }, - { - "l": "91.0", - "x": 0.4791, - "y": 7.8673 - }, - { - "l": "91.0", - "x": 0.4983, - "y": 8.0084 - }, - { - "l": "91.0", - "x": 0.5175, - "y": 8.1442 - }, - { - "l": "91.0", - "x": 0.5366, - "y": 8.2752 - }, - { - "l": "91.0", - "x": 0.5558, - "y": 8.4012 - }, - { - "l": "91.0", - "x": 0.5749, - "y": 8.5215 - }, - { - "l": "91.0", - "x": 0.5941, - "y": 8.6313 - }, - { - "l": "91.0", - "x": 0.6133, - "y": 8.7338 - }, - { - "l": "91.0", - "x": 0.6324, - "y": 8.8324 - }, - { - "l": "91.0", - "x": 0.6516, - "y": 8.9282 - }, - { - "l": "91.0", - "x": 0.6708, - "y": 9.0231 - }, - { - "l": "91.0", - "x": 0.6899, - "y": 9.1237 - }, - { - "l": "91.0", - "x": 0.7091, - "y": 9.2234 - }, - { - "l": "91.0", - "x": 0.7283, - "y": 9.3218 - }, - { - "l": "91.0", - "x": 0.7474, - "y": 9.4182 - }, - { - "l": "91.0", - "x": 0.7666, - "y": 9.5116 - }, - { - "l": "91.0", - "x": 0.7858, - "y": 9.602 - }, - { - "l": "91.0", - "x": 0.8049, - "y": 9.6893 - }, - { - "l": "91.0", - "x": 0.8241, - "y": 9.7731 - }, - { - "l": "91.0", - "x": 0.8433, - "y": 9.8502 - }, - { - "l": "91.0", - "x": 0.8624, - "y": 9.9227 - }, - { - "l": "91.0", - "x": 0.8816, - "y": 9.9927 - }, - { - "l": "91.0", - "x": 0.9008, - "y": 10.0613 - }, - { - "l": "91.0", - "x": 0.9199, - "y": 10.1296 - }, - { - "l": "91.0", - "x": 0.9391, - "y": 10.2028 - }, - { - "l": "91.0", - "x": 0.9582, - "y": 10.2759 - }, - { - "l": "91.0", - "x": 0.9774, - "y": 10.3486 - }, - { - "l": "91.0", - "x": 0.9966, - "y": 10.4205 - }, - { - "l": "91.0", - "x": 1.0157, - "y": 10.4907 - }, - { - "l": "91.0", - "x": 1.0349, - "y": 10.5594 - }, - { - "l": "91.0", - "x": 1.0541, - "y": 10.6261 - }, - { - "l": "91.0", - "x": 1.0732, - "y": 10.6907 - }, - { - "l": "91.0", - "x": 1.0924, - "y": 10.7506 - }, - { - "l": "91.0", - "x": 1.1116, - "y": 10.8071 - }, - { - "l": "91.0", - "x": 1.1307, - "y": 10.8621 - }, - { - "l": "91.0", - "x": 1.1499, - "y": 10.9164 - }, - { - "l": "91.0", - "x": 1.1691, - "y": 10.9707 - }, - { - "l": "91.0", - "x": 1.1882, - "y": 11.029 - }, - { - "l": "91.0", - "x": 1.2074, - "y": 11.0878 - }, - { - "l": "91.0", - "x": 1.2266, - "y": 11.1466 - }, - { - "l": "91.0", - "x": 1.2457, - "y": 11.205 - }, - { - "l": "91.0", - "x": 1.2649, - "y": 11.2626 - }, - { - "l": "91.0", - "x": 1.2841, - "y": 11.3192 - }, - { - "l": "91.0", - "x": 1.3032, - "y": 11.3746 - }, - { - "l": "91.0", - "x": 1.3224, - "y": 11.4285 - }, - { - "l": "91.0", - "x": 1.3415, - "y": 11.4789 - }, - { - "l": "91.0", - "x": 1.3607, - "y": 11.5265 - }, - { - "l": "91.0", - "x": 1.3799, - "y": 11.573 - }, - { - "l": "91.0", - "x": 1.399, - "y": 11.6191 - }, - { - "l": "91.0", - "x": 1.4182, - "y": 11.6655 - }, - { - "l": "91.0", - "x": 1.4374, - "y": 11.7153 - }, - { - "l": "91.0", - "x": 1.4565, - "y": 11.7658 - }, - { - "l": "91.0", - "x": 1.4757, - "y": 11.8165 - }, - { - "l": "91.0", - "x": 1.4949, - "y": 11.8671 - }, - { - "l": "91.0", - "x": 1.514, - "y": 11.9173 - }, - { - "l": "91.0", - "x": 1.5332, - "y": 11.9667 - }, - { - "l": "91.0", - "x": 1.5524, - "y": 12.0153 - }, - { - "l": "91.0", - "x": 1.5715, - "y": 12.0627 - }, - { - "l": "91.0", - "x": 1.5907, - "y": 12.1072 - }, - { - "l": "91.0", - "x": 1.6099, - "y": 12.1493 - }, - { - "l": "91.0", - "x": 1.629, - "y": 12.1906 - }, - { - "l": "91.0", - "x": 1.6482, - "y": 12.2316 - }, - { - "l": "91.0", - "x": 1.6674, - "y": 12.273 - }, - { - "l": "91.0", - "x": 1.6865, - "y": 12.3175 - }, - { - "l": "91.0", - "x": 1.7057, - "y": 12.3629 - }, - { - "l": "91.0", - "x": 1.7248, - "y": 12.4087 - }, - { - "l": "91.0", - "x": 1.744, - "y": 12.4546 - }, - { - "l": "91.0", - "x": 1.7632, - "y": 12.5002 - }, - { - "l": "91.0", - "x": 1.7823, - "y": 12.5454 - }, - { - "l": "91.0", - "x": 1.8015, - "y": 12.59 - }, - { - "l": "91.0", - "x": 1.8207, - "y": 12.6338 - }, - { - "l": "91.0", - "x": 1.8398, - "y": 12.6751 - }, - { - "l": "91.0", - "x": 1.859, - "y": 12.7143 - }, - { - "l": "91.0", - "x": 1.8782, - "y": 12.7528 - }, - { - "l": "91.0", - "x": 1.8973, - "y": 12.7914 - }, - { - "l": "91.0", - "x": 1.9165, - "y": 12.8304 - }, - { - "l": "91.0", - "x": 1.9357, - "y": 12.8724 - }, - { - "l": "91.0", - "x": 1.9548, - "y": 12.9155 - }, - { - "l": "91.0", - "x": 1.974, - "y": 12.9593 - }, - { - "l": "91.0", - "x": 1.9932, - "y": 13.0033 - }, - { - "l": "91.0", - "x": 2.0123, - "y": 13.0474 - }, - { - "l": "91.0", - "x": 2.0957, - "y": 13.2318 - }, - { - "l": "91.0", - "x": 2.179, - "y": 13.4007 - }, - { - "l": "91.0", - "x": 2.2623, - "y": 13.5903 - }, - { - "l": "91.0", - "x": 2.3457, - "y": 13.7753 - }, - { - "l": "91.0", - "x": 2.429, - "y": 13.945 - }, - { - "l": "91.0", - "x": 2.5123, - "y": 14.1365 - }, - { - "l": "91.0", - "x": 2.5957, - "y": 14.3243 - }, - { - "l": "91.0", - "x": 2.679, - "y": 14.4973 - }, - { - "l": "91.0", - "x": 2.7623, - "y": 14.6926 - }, - { - "l": "91.0", - "x": 2.8457, - "y": 14.8835 - }, - { - "l": "91.0", - "x": 2.929, - "y": 15.0588 - }, - { - "l": "91.0", - "x": 3.0123, - "y": 15.2562 - }, - { - "l": "91.0", - "x": 3.0957, - "y": 15.449 - }, - { - "l": "91.0", - "x": 3.179, - "y": 15.626 - }, - { - "l": "91.0", - "x": 3.2623, - "y": 15.825 - }, - { - "l": "91.0", - "x": 3.3457, - "y": 16.0192 - }, - { - "l": "91.0", - "x": 3.429, - "y": 16.1974 - }, - { - "l": "91.0", - "x": 3.5123, - "y": 16.3978 - }, - { - "l": "91.0", - "x": 3.5957, - "y": 16.5933 - }, - { - "l": "91.0", - "x": 3.679, - "y": 16.7726 - }, - { - "l": "91.0", - "x": 3.7623, - "y": 16.9747 - }, - { - "l": "91.0", - "x": 3.8457, - "y": 17.173 - }, - { - "l": "91.0", - "x": 3.929, - "y": 17.3562 - }, - { - "l": "91.0", - "x": 4.0123, - "y": 17.564 - }, - { - "l": "91.0", - "x": 4.0957, - "y": 17.7684 - }, - { - "l": "91.0", - "x": 4.179, - "y": 17.9574 - }, - { - "l": "91.0", - "x": 4.2623, - "y": 18.1713 - }, - { - "l": "91.0", - "x": 4.3457, - "y": 18.3811 - }, - { - "l": "91.0", - "x": 4.429, - "y": 18.5744 - }, - { - "l": "91.0", - "x": 4.5123, - "y": 18.7933 - }, - { - "l": "91.0", - "x": 4.5957, - "y": 19.0089 - }, - { - "l": "91.0", - "x": 4.679, - "y": 19.2089 - }, - { - "l": "91.0", - "x": 4.7623, - "y": 19.4365 - }, - { - "l": "91.0", - "x": 4.8457, - "y": 19.6615 - }, - { - "l": "91.0", - "x": 4.929, - "y": 19.8706 - }, - { - "l": "91.0", - "x": 5.0123, - "y": 20.1088 - }, - { - "l": "91.0", - "x": 5.0957, - "y": 20.3443 - }, - { - "l": "91.0", - "x": 5.179, - "y": 20.5633 - }, - { - "l": "91.0", - "x": 5.2623, - "y": 20.8127 - }, - { - "l": "91.0", - "x": 5.3457, - "y": 21.0592 - }, - { - "l": "91.0", - "x": 5.429, - "y": 21.2881 - }, - { - "l": "91.0", - "x": 5.5123, - "y": 21.5486 - }, - { - "l": "91.0", - "x": 5.5957, - "y": 21.8056 - }, - { - "l": "91.0", - "x": 5.679, - "y": 22.0438 - }, - { - "l": "91.0", - "x": 5.7623, - "y": 22.3146 - }, - { - "l": "91.0", - "x": 5.8457, - "y": 22.582 - }, - { - "l": "91.0", - "x": 5.929, - "y": 22.8304 - }, - { - "l": "91.0", - "x": 6.0123, - "y": 23.1137 - }, - { - "l": "91.0", - "x": 6.0957, - "y": 23.3944 - }, - { - "l": "91.0", - "x": 6.179, - "y": 23.6558 - }, - { - "l": "91.0", - "x": 6.2623, - "y": 23.9546 - }, - { - "l": "91.0", - "x": 6.3457, - "y": 24.2508 - }, - { - "l": "91.0", - "x": 6.429, - "y": 24.5269 - }, - { - "l": "91.0", - "x": 6.5123, - "y": 24.8421 - }, - { - "l": "91.0", - "x": 6.5957, - "y": 25.1544 - }, - { - "l": "91.0", - "x": 6.679, - "y": 25.445 - }, - { - "l": "91.0", - "x": 6.7623, - "y": 25.7761 - }, - { - "l": "91.0", - "x": 6.8457, - "y": 26.1032 - }, - { - "l": "91.0", - "x": 6.929, - "y": 26.4065 - }, - { - "l": "91.0", - "x": 7.0123, - "y": 26.7509 - }, - { - "l": "91.0", - "x": 7.0957, - "y": 27.0898 - }, - { - "l": "91.0", - "x": 7.179, - "y": 27.4028 - }, - { - "l": "91.0", - "x": 7.2623, - "y": 27.7571 - }, - { - "l": "91.0", - "x": 7.3457, - "y": 28.105 - }, - { - "l": "91.0", - "x": 7.429, - "y": 28.4262 - }, - { - "l": "91.0", - "x": 7.5123, - "y": 28.7902 - }, - { - "l": "91.0", - "x": 7.5957, - "y": 29.148 - }, - { - "l": "91.0", - "x": 7.679, - "y": 29.4786 - }, - { - "l": "91.0", - "x": 7.7623, - "y": 29.8534 - }, - { - "l": "91.0", - "x": 7.8457, - "y": 30.2222 - }, - { - "l": "91.0", - "x": 7.929, - "y": 30.5632 - }, - { - "l": "91.0", - "x": 8.0123, - "y": 30.9501 - }, - { - "l": "91.0", - "x": 8.0957, - "y": 31.3312 - }, - { - "l": "91.0", - "x": 8.179, - "y": 31.6838 - }, - { - "l": "91.0", - "x": 8.2623, - "y": 32.084 - }, - { - "l": "91.0", - "x": 8.3457, - "y": 32.478 - }, - { - "l": "91.0", - "x": 8.429, - "y": 32.8421 - }, - { - "l": "91.0", - "x": 8.5123, - "y": 33.2545 - }, - { - "l": "91.0", - "x": 8.5957, - "y": 33.6598 - }, - { - "l": "91.0", - "x": 8.679, - "y": 34.0338 - }, - { - "l": "91.0", - "x": 8.7623, - "y": 34.4573 - }, - { - "l": "91.0", - "x": 8.8457, - "y": 34.8735 - }, - { - "l": "91.0", - "x": 8.929, - "y": 35.2578 - }, - { - "l": "91.0", - "x": 9.0123, - "y": 35.6932 - }, - { - "l": "91.0", - "x": 9.0957, - "y": 36.1209 - }, - { - "l": "91.0", - "x": 9.179, - "y": 36.5157 - }, - { - "l": "91.0", - "x": 9.2623, - "y": 36.9622 - }, - { - "l": "91.0", - "x": 9.3457, - "y": 37.4 - }, - { - "l": "91.0", - "x": 9.429, - "y": 37.8031 - }, - { - "l": "91.0", - "x": 9.5123, - "y": 38.2577 - }, - { - "l": "91.0", - "x": 9.5957, - "y": 38.7024 - }, - { - "l": "91.0", - "x": 9.679, - "y": 39.1106 - }, - { - "l": "91.0", - "x": 9.7623, - "y": 39.5703 - }, - { - "l": "91.0", - "x": 9.8457, - "y": 40.0193 - }, - { - "l": "91.0", - "x": 9.929, - "y": 40.4316 - }, - { - "l": "91.0", - "x": 10.0123, - "y": 40.8961 - }, - { - "l": "91.0", - "x": 10.0957, - "y": 41.3505 - }, - { - "l": "91.0", - "x": 10.179, - "y": 41.7682 - }, - { - "l": "91.0", - "x": 10.2623, - "y": 42.2395 - }, - { - "l": "91.0", - "x": 10.3457, - "y": 42.701 - }, - { - "l": "91.0", - "x": 10.429, - "y": 43.1258 - }, - { - "l": "91.0", - "x": 10.5123, - "y": 43.6057 - }, - { - "l": "91.0", - "x": 10.5957, - "y": 44.0757 - }, - { - "l": "91.0", - "x": 10.679, - "y": 44.5083 - }, - { - "l": "91.0", - "x": 10.7623, - "y": 44.9963 - }, - { - "l": "91.0", - "x": 10.8457, - "y": 45.474 - }, - { - "l": "91.0", - "x": 10.929, - "y": 45.913 - }, - { - "l": "91.0", - "x": 11.0123, - "y": 46.4076 - }, - { - "l": "91.0", - "x": 11.0957, - "y": 46.8907 - }, - { - "l": "91.0", - "x": 11.179, - "y": 47.3338 - }, - { - "l": "91.0", - "x": 11.2623, - "y": 47.8322 - }, - { - "l": "91.0", - "x": 11.3457, - "y": 48.3183 - }, - { - "l": "91.0", - "x": 11.429, - "y": 48.764 - }, - { - "l": "91.0", - "x": 11.5123, - "y": 49.2651 - }, - { - "l": "91.0", - "x": 11.5957, - "y": 49.7539 - }, - { - "l": "91.0", - "x": 11.679, - "y": 50.2018 - }, - { - "l": "91.0", - "x": 11.7623, - "y": 50.7052 - }, - { - "l": "91.0", - "x": 11.8457, - "y": 51.1962 - }, - { - "l": "91.0", - "x": 11.929, - "y": 51.6464 - }, - { - "l": "91.0", - "x": 12.0123, - "y": 52.1528 - }, - { - "l": "91.0", - "x": 12.0957, - "y": 52.6466 - }, - { - "l": "91.0", - "x": 12.179, - "y": 53.0991 - }, - { - "l": "91.0", - "x": 12.2623, - "y": 53.6076 - }, - { - "l": "91.0", - "x": 12.3457, - "y": 54.1029 - }, - { - "l": "91.0", - "x": 12.429, - "y": 54.5562 - }, - { - "l": "91.0", - "x": 12.5123, - "y": 55.0651 - }, - { - "l": "91.0", - "x": 12.5957, - "y": 55.5601 - }, - { - "l": "91.0", - "x": 12.679, - "y": 56.0124 - }, - { - "l": "91.0", - "x": 12.7623, - "y": 56.5191 - }, - { - "l": "91.0", - "x": 12.8457, - "y": 57.011 - }, - { - "l": "91.0", - "x": 12.929, - "y": 57.4595 - }, - { - "l": "91.0", - "x": 13.0123, - "y": 57.9609 - }, - { - "l": "91.0", - "x": 13.0957, - "y": 58.4469 - }, - { - "l": "91.0", - "x": 13.179, - "y": 58.8896 - }, - { - "l": "91.0", - "x": 13.2623, - "y": 59.3842 - }, - { - "l": "91.0", - "x": 13.3457, - "y": 59.8632 - }, - { - "l": "91.0", - "x": 13.429, - "y": 60.2988 - }, - { - "l": "91.0", - "x": 13.5123, - "y": 60.7845 - }, - { - "l": "91.0", - "x": 13.5957, - "y": 61.2537 - }, - { - "l": "91.0", - "x": 13.679, - "y": 61.6787 - }, - { - "l": "91.0", - "x": 13.7623, - "y": 62.1509 - }, - { - "l": "91.0", - "x": 13.8457, - "y": 62.6046 - }, - { - "l": "91.0", - "x": 13.929, - "y": 63.0147 - }, - { - "l": "91.0", - "x": 14.0123, - "y": 63.4678 - }, - { - "l": "91.0", - "x": 14.0957, - "y": 63.9017 - }, - { - "l": "91.0", - "x": 14.179, - "y": 64.2917 - }, - { - "l": "91.0", - "x": 14.2623, - "y": 64.722 - }, - { - "l": "91.0", - "x": 14.3457, - "y": 65.133 - }, - { - "l": "91.0", - "x": 14.429, - "y": 65.5019 - }, - { - "l": "91.0", - "x": 14.5123, - "y": 65.9086 - }, - { - "l": "91.0", - "x": 14.5957, - "y": 66.2968 - }, - { - "l": "91.0", - "x": 14.679, - "y": 66.6447 - }, - { - "l": "91.0", - "x": 14.7623, - "y": 67.0275 - }, - { - "l": "91.0", - "x": 14.8457, - "y": 67.3927 - }, - { - "l": "91.0", - "x": 14.929, - "y": 67.7197 - }, - { - "l": "91.0", - "x": 15.0123, - "y": 68.0792 - }, - { - "l": "91.0", - "x": 15.0957, - "y": 68.4217 - }, - { - "l": "91.0", - "x": 15.179, - "y": 68.7288 - }, - { - "l": "91.0", - "x": 15.2623, - "y": 69.0664 - }, - { - "l": "91.0", - "x": 15.3457, - "y": 69.388 - }, - { - "l": "91.0", - "x": 15.429, - "y": 69.6766 - }, - { - "l": "91.0", - "x": 15.5123, - "y": 69.9933 - }, - { - "l": "91.0", - "x": 15.5957, - "y": 70.2958 - }, - { - "l": "91.0", - "x": 15.679, - "y": 70.5667 - }, - { - "l": "91.0", - "x": 15.7623, - "y": 70.8648 - }, - { - "l": "91.0", - "x": 15.8457, - "y": 71.1507 - }, - { - "l": "91.0", - "x": 15.929, - "y": 71.407 - }, - { - "l": "91.0", - "x": 16.0123, - "y": 71.6901 - }, - { - "l": "91.0", - "x": 16.0957, - "y": 71.9611 - }, - { - "l": "91.0", - "x": 16.179, - "y": 72.2055 - }, - { - "l": "91.0", - "x": 16.2623, - "y": 72.4763 - }, - { - "l": "91.0", - "x": 16.3457, - "y": 72.7365 - }, - { - "l": "91.0", - "x": 16.429, - "y": 72.9719 - }, - { - "l": "91.0", - "x": 16.5123, - "y": 73.2331 - }, - { - "l": "91.0", - "x": 16.5957, - "y": 73.4846 - }, - { - "l": "91.0", - "x": 16.679, - "y": 73.7126 - }, - { - "l": "91.0", - "x": 16.7623, - "y": 73.966 - }, - { - "l": "91.0", - "x": 16.8457, - "y": 74.2104 - }, - { - "l": "91.0", - "x": 16.929, - "y": 74.4324 - }, - { - "l": "91.0", - "x": 17.0123, - "y": 74.6794 - }, - { - "l": "91.0", - "x": 17.0957, - "y": 74.9179 - }, - { - "l": "91.0", - "x": 17.179, - "y": 75.1346 - }, - { - "l": "91.0", - "x": 17.2623, - "y": 75.3764 - }, - { - "l": "91.0", - "x": 17.3457, - "y": 75.6099 - }, - { - "l": "91.0", - "x": 17.429, - "y": 75.8225 - }, - { - "l": "91.0", - "x": 17.5123, - "y": 76.0597 - }, - { - "l": "91.0", - "x": 17.5957, - "y": 76.2893 - }, - { - "l": "91.0", - "x": 17.679, - "y": 76.4982 - }, - { - "l": "91.0", - "x": 17.7623, - "y": 76.7318 - }, - { - "l": "91.0", - "x": 17.8457, - "y": 76.9581 - }, - { - "l": "91.0", - "x": 17.929, - "y": 77.1645 - }, - { - "l": "91.0", - "x": 18.0123, - "y": 77.3955 - }, - { - "l": "91.0", - "x": 18.0957, - "y": 77.6197 - }, - { - "l": "91.0", - "x": 18.179, - "y": 77.8243 - }, - { - "l": "91.0", - "x": 18.2623, - "y": 78.0534 - }, - { - "l": "91.0", - "x": 18.3457, - "y": 78.276 - }, - { - "l": "91.0", - "x": 18.429, - "y": 78.4792 - }, - { - "l": "91.0", - "x": 18.5123, - "y": 78.7065 - }, - { - "l": "91.0", - "x": 18.5957, - "y": 78.9272 - }, - { - "l": "91.0", - "x": 18.679, - "y": 79.1289 - }, - { - "l": "91.0", - "x": 18.7623, - "y": 79.3545 - }, - { - "l": "91.0", - "x": 18.8457, - "y": 79.5736 - }, - { - "l": "91.0", - "x": 18.929, - "y": 79.7735 - }, - { - "l": "91.0", - "x": 19.0123, - "y": 79.9976 - }, - { - "l": "91.0", - "x": 19.0957, - "y": 80.2149 - }, - { - "l": "91.0", - "x": 19.179, - "y": 80.4133 - }, - { - "l": "91.0", - "x": 19.2623, - "y": 80.6361 - }, - { - "l": "91.0", - "x": 19.3457, - "y": 80.8523 - }, - { - "l": "91.0", - "x": 19.429, - "y": 81.0496 - }, - { - "l": "91.0", - "x": 19.5123, - "y": 81.2704 - }, - { - "l": "91.0", - "x": 19.5957, - "y": 81.4847 - }, - { - "l": "91.0", - "x": 19.679, - "y": 81.6804 - }, - { - "l": "91.0", - "x": 19.7623, - "y": 81.9001 - }, - { - "l": "91.0", - "x": 19.8457, - "y": 82.1135 - }, - { - "l": "91.0", - "x": 19.929, - "y": 82.3093 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 0.0, - "y": 4.0544 - }, - { - "l": "98.0", - "x": 0.0192, - "y": 4.2521 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 4.4494 - }, - { - "l": "98.0", - "x": 0.0575, - "y": 4.6464 - }, - { - "l": "98.0", - "x": 0.0767, - "y": 4.8429 - }, - { - "l": "98.0", - "x": 0.0958, - "y": 5.0256 - }, - { - "l": "98.0", - "x": 0.115, - "y": 5.203 - }, - { - "l": "98.0", - "x": 0.1342, - "y": 5.3796 - }, - { - "l": "98.0", - "x": 0.1533, - "y": 5.5575 - }, - { - "l": "98.0", - "x": 0.1725, - "y": 5.7405 - }, - { - "l": "98.0", - "x": 0.1916, - "y": 5.938 - }, - { - "l": "98.0", - "x": 0.2108, - "y": 6.1382 - }, - { - "l": "98.0", - "x": 0.23, - "y": 6.3393 - }, - { - "l": "98.0", - "x": 0.2491, - "y": 6.5397 - }, - { - "l": "98.0", - "x": 0.2683, - "y": 6.7368 - }, - { - "l": "98.0", - "x": 0.2875, - "y": 6.9303 - }, - { - "l": "98.0", - "x": 0.3066, - "y": 7.1188 - }, - { - "l": "98.0", - "x": 0.3258, - "y": 7.3011 - }, - { - "l": "98.0", - "x": 0.345, - "y": 7.4681 - }, - { - "l": "98.0", - "x": 0.3641, - "y": 7.626 - }, - { - "l": "98.0", - "x": 0.3833, - "y": 7.7791 - }, - { - "l": "98.0", - "x": 0.4025, - "y": 7.9292 - }, - { - "l": "98.0", - "x": 0.4216, - "y": 8.079 - }, - { - "l": "98.0", - "x": 0.4408, - "y": 8.2374 - }, - { - "l": "98.0", - "x": 0.46, - "y": 8.3946 - }, - { - "l": "98.0", - "x": 0.4791, - "y": 8.5495 - }, - { - "l": "98.0", - "x": 0.4983, - "y": 8.7011 - }, - { - "l": "98.0", - "x": 0.5175, - "y": 8.8469 - }, - { - "l": "98.0", - "x": 0.5366, - "y": 8.9876 - }, - { - "l": "98.0", - "x": 0.5558, - "y": 9.1228 - }, - { - "l": "98.0", - "x": 0.5749, - "y": 9.2519 - }, - { - "l": "98.0", - "x": 0.5941, - "y": 9.3696 - }, - { - "l": "98.0", - "x": 0.6133, - "y": 9.4796 - }, - { - "l": "98.0", - "x": 0.6324, - "y": 9.5852 - }, - { - "l": "98.0", - "x": 0.6516, - "y": 9.688 - }, - { - "l": "98.0", - "x": 0.6708, - "y": 9.7897 - }, - { - "l": "98.0", - "x": 0.6899, - "y": 9.8975 - }, - { - "l": "98.0", - "x": 0.7091, - "y": 10.0044 - }, - { - "l": "98.0", - "x": 0.7283, - "y": 10.1098 - }, - { - "l": "98.0", - "x": 0.7474, - "y": 10.2131 - }, - { - "l": "98.0", - "x": 0.7666, - "y": 10.3132 - }, - { - "l": "98.0", - "x": 0.7858, - "y": 10.4101 - }, - { - "l": "98.0", - "x": 0.8049, - "y": 10.5036 - }, - { - "l": "98.0", - "x": 0.8241, - "y": 10.5934 - }, - { - "l": "98.0", - "x": 0.8433, - "y": 10.6761 - }, - { - "l": "98.0", - "x": 0.8624, - "y": 10.7537 - }, - { - "l": "98.0", - "x": 0.8816, - "y": 10.8288 - }, - { - "l": "98.0", - "x": 0.9008, - "y": 10.9024 - }, - { - "l": "98.0", - "x": 0.9199, - "y": 10.9756 - }, - { - "l": "98.0", - "x": 0.9391, - "y": 11.0541 - }, - { - "l": "98.0", - "x": 0.9582, - "y": 11.1326 - }, - { - "l": "98.0", - "x": 0.9774, - "y": 11.2106 - }, - { - "l": "98.0", - "x": 0.9966, - "y": 11.2877 - }, - { - "l": "98.0", - "x": 1.0157, - "y": 11.3632 - }, - { - "l": "98.0", - "x": 1.0349, - "y": 11.4369 - }, - { - "l": "98.0", - "x": 1.0541, - "y": 11.5086 - }, - { - "l": "98.0", - "x": 1.0732, - "y": 11.578 - }, - { - "l": "98.0", - "x": 1.0924, - "y": 11.6424 - }, - { - "l": "98.0", - "x": 1.1116, - "y": 11.7031 - }, - { - "l": "98.0", - "x": 1.1307, - "y": 11.7622 - }, - { - "l": "98.0", - "x": 1.1499, - "y": 11.8206 - }, - { - "l": "98.0", - "x": 1.1691, - "y": 11.879 - }, - { - "l": "98.0", - "x": 1.1882, - "y": 11.9418 - }, - { - "l": "98.0", - "x": 1.2074, - "y": 12.0051 - }, - { - "l": "98.0", - "x": 1.2266, - "y": 12.0684 - }, - { - "l": "98.0", - "x": 1.2457, - "y": 12.1313 - }, - { - "l": "98.0", - "x": 1.2649, - "y": 12.1934 - }, - { - "l": "98.0", - "x": 1.2841, - "y": 12.2545 - }, - { - "l": "98.0", - "x": 1.3032, - "y": 12.3142 - }, - { - "l": "98.0", - "x": 1.3224, - "y": 12.3723 - }, - { - "l": "98.0", - "x": 1.3415, - "y": 12.4266 - }, - { - "l": "98.0", - "x": 1.3607, - "y": 12.478 - }, - { - "l": "98.0", - "x": 1.3799, - "y": 12.5282 - }, - { - "l": "98.0", - "x": 1.399, - "y": 12.578 - }, - { - "l": "98.0", - "x": 1.4182, - "y": 12.6281 - }, - { - "l": "98.0", - "x": 1.4374, - "y": 12.6819 - }, - { - "l": "98.0", - "x": 1.4565, - "y": 12.7365 - }, - { - "l": "98.0", - "x": 1.4757, - "y": 12.7913 - }, - { - "l": "98.0", - "x": 1.4949, - "y": 12.846 - }, - { - "l": "98.0", - "x": 1.514, - "y": 12.9002 - }, - { - "l": "98.0", - "x": 1.5332, - "y": 12.9537 - }, - { - "l": "98.0", - "x": 1.5524, - "y": 13.0062 - }, - { - "l": "98.0", - "x": 1.5715, - "y": 13.0575 - }, - { - "l": "98.0", - "x": 1.5907, - "y": 13.1058 - }, - { - "l": "98.0", - "x": 1.6099, - "y": 13.1513 - }, - { - "l": "98.0", - "x": 1.629, - "y": 13.1961 - }, - { - "l": "98.0", - "x": 1.6482, - "y": 13.2406 - }, - { - "l": "98.0", - "x": 1.6674, - "y": 13.2855 - }, - { - "l": "98.0", - "x": 1.6865, - "y": 13.3336 - }, - { - "l": "98.0", - "x": 1.7057, - "y": 13.3829 - }, - { - "l": "98.0", - "x": 1.7248, - "y": 13.4326 - }, - { - "l": "98.0", - "x": 1.744, - "y": 13.4823 - }, - { - "l": "98.0", - "x": 1.7632, - "y": 13.5319 - }, - { - "l": "98.0", - "x": 1.7823, - "y": 13.581 - }, - { - "l": "98.0", - "x": 1.8015, - "y": 13.6294 - }, - { - "l": "98.0", - "x": 1.8207, - "y": 13.6769 - }, - { - "l": "98.0", - "x": 1.8398, - "y": 13.7219 - }, - { - "l": "98.0", - "x": 1.859, - "y": 13.7644 - }, - { - "l": "98.0", - "x": 1.8782, - "y": 13.8063 - }, - { - "l": "98.0", - "x": 1.8973, - "y": 13.8483 - }, - { - "l": "98.0", - "x": 1.9165, - "y": 13.8907 - }, - { - "l": "98.0", - "x": 1.9357, - "y": 13.9364 - }, - { - "l": "98.0", - "x": 1.9548, - "y": 13.9834 - }, - { - "l": "98.0", - "x": 1.974, - "y": 14.031 - }, - { - "l": "98.0", - "x": 1.9932, - "y": 14.0789 - }, - { - "l": "98.0", - "x": 2.0123, - "y": 14.1269 - }, - { - "l": "98.0", - "x": 2.0957, - "y": 14.328 - }, - { - "l": "98.0", - "x": 2.179, - "y": 14.5124 - }, - { - "l": "98.0", - "x": 2.2623, - "y": 14.7197 - }, - { - "l": "98.0", - "x": 2.3457, - "y": 14.9221 - }, - { - "l": "98.0", - "x": 2.429, - "y": 15.1082 - }, - { - "l": "98.0", - "x": 2.5123, - "y": 15.3184 - }, - { - "l": "98.0", - "x": 2.5957, - "y": 15.5249 - }, - { - "l": "98.0", - "x": 2.679, - "y": 15.7155 - }, - { - "l": "98.0", - "x": 2.7623, - "y": 15.931 - }, - { - "l": "98.0", - "x": 2.8457, - "y": 16.142 - }, - { - "l": "98.0", - "x": 2.929, - "y": 16.336 - }, - { - "l": "98.0", - "x": 3.0123, - "y": 16.5549 - }, - { - "l": "98.0", - "x": 3.0957, - "y": 16.7691 - }, - { - "l": "98.0", - "x": 3.179, - "y": 16.9661 - }, - { - "l": "98.0", - "x": 3.2623, - "y": 17.188 - }, - { - "l": "98.0", - "x": 3.3457, - "y": 17.4049 - }, - { - "l": "98.0", - "x": 3.429, - "y": 17.6044 - }, - { - "l": "98.0", - "x": 3.5123, - "y": 17.8291 - }, - { - "l": "98.0", - "x": 3.5957, - "y": 18.0488 - }, - { - "l": "98.0", - "x": 3.679, - "y": 18.2506 - }, - { - "l": "98.0", - "x": 3.7623, - "y": 18.4786 - }, - { - "l": "98.0", - "x": 3.8457, - "y": 18.7027 - }, - { - "l": "98.0", - "x": 3.929, - "y": 18.9102 - }, - { - "l": "98.0", - "x": 4.0123, - "y": 19.146 - }, - { - "l": "98.0", - "x": 4.0957, - "y": 19.3785 - }, - { - "l": "98.0", - "x": 4.179, - "y": 19.5939 - }, - { - "l": "98.0", - "x": 4.2623, - "y": 19.8383 - }, - { - "l": "98.0", - "x": 4.3457, - "y": 20.0784 - }, - { - "l": "98.0", - "x": 4.429, - "y": 20.3003 - }, - { - "l": "98.0", - "x": 4.5123, - "y": 20.5521 - }, - { - "l": "98.0", - "x": 4.5957, - "y": 20.8007 - }, - { - "l": "98.0", - "x": 4.679, - "y": 21.0318 - }, - { - "l": "98.0", - "x": 4.7623, - "y": 21.2956 - }, - { - "l": "98.0", - "x": 4.8457, - "y": 21.557 - }, - { - "l": "98.0", - "x": 4.929, - "y": 21.8004 - }, - { - "l": "98.0", - "x": 5.0123, - "y": 22.0785 - }, - { - "l": "98.0", - "x": 5.0957, - "y": 22.3541 - }, - { - "l": "98.0", - "x": 5.179, - "y": 22.611 - }, - { - "l": "98.0", - "x": 5.2623, - "y": 22.9044 - }, - { - "l": "98.0", - "x": 5.3457, - "y": 23.1951 - }, - { - "l": "98.0", - "x": 5.429, - "y": 23.4658 - }, - { - "l": "98.0", - "x": 5.5123, - "y": 23.7746 - }, - { - "l": "98.0", - "x": 5.5957, - "y": 24.0802 - }, - { - "l": "98.0", - "x": 5.679, - "y": 24.3642 - }, - { - "l": "98.0", - "x": 5.7623, - "y": 24.688 - }, - { - "l": "98.0", - "x": 5.8457, - "y": 25.0085 - }, - { - "l": "98.0", - "x": 5.929, - "y": 25.3072 - }, - { - "l": "98.0", - "x": 6.0123, - "y": 25.6488 - }, - { - "l": "98.0", - "x": 6.0957, - "y": 25.9882 - }, - { - "l": "98.0", - "x": 6.179, - "y": 26.3053 - }, - { - "l": "98.0", - "x": 6.2623, - "y": 26.6686 - }, - { - "l": "98.0", - "x": 6.3457, - "y": 27.03 - }, - { - "l": "98.0", - "x": 6.429, - "y": 27.3677 - }, - { - "l": "98.0", - "x": 6.5123, - "y": 27.7545 - }, - { - "l": "98.0", - "x": 6.5957, - "y": 28.139 - }, - { - "l": "98.0", - "x": 6.679, - "y": 28.4977 - }, - { - "l": "98.0", - "x": 6.7623, - "y": 28.9079 - }, - { - "l": "98.0", - "x": 6.8457, - "y": 29.3145 - }, - { - "l": "98.0", - "x": 6.929, - "y": 29.6928 - }, - { - "l": "98.0", - "x": 7.0123, - "y": 30.1237 - }, - { - "l": "98.0", - "x": 7.0957, - "y": 30.5493 - }, - { - "l": "98.0", - "x": 7.179, - "y": 30.9437 - }, - { - "l": "98.0", - "x": 7.2623, - "y": 31.3917 - }, - { - "l": "98.0", - "x": 7.3457, - "y": 31.8332 - }, - { - "l": "98.0", - "x": 7.429, - "y": 32.2422 - }, - { - "l": "98.0", - "x": 7.5123, - "y": 32.7071 - }, - { - "l": "98.0", - "x": 7.5957, - "y": 33.1659 - }, - { - "l": "98.0", - "x": 7.679, - "y": 33.5913 - }, - { - "l": "98.0", - "x": 7.7623, - "y": 34.0751 - }, - { - "l": "98.0", - "x": 7.8457, - "y": 34.5528 - }, - { - "l": "98.0", - "x": 7.929, - "y": 34.9959 - }, - { - "l": "98.0", - "x": 8.0123, - "y": 35.5004 - }, - { - "l": "98.0", - "x": 8.0957, - "y": 35.9989 - }, - { - "l": "98.0", - "x": 8.179, - "y": 36.4615 - }, - { - "l": "98.0", - "x": 8.2623, - "y": 36.9883 - }, - { - "l": "98.0", - "x": 8.3457, - "y": 37.5083 - }, - { - "l": "98.0", - "x": 8.429, - "y": 37.9903 - }, - { - "l": "98.0", - "x": 8.5123, - "y": 38.5378 - }, - { - "l": "98.0", - "x": 8.5957, - "y": 39.0773 - }, - { - "l": "98.0", - "x": 8.679, - "y": 39.5766 - }, - { - "l": "98.0", - "x": 8.7623, - "y": 40.1432 - }, - { - "l": "98.0", - "x": 8.8457, - "y": 40.7015 - }, - { - "l": "98.0", - "x": 8.929, - "y": 41.2182 - }, - { - "l": "98.0", - "x": 9.0123, - "y": 41.8047 - }, - { - "l": "98.0", - "x": 9.0957, - "y": 42.3823 - }, - { - "l": "98.0", - "x": 9.179, - "y": 42.9162 - }, - { - "l": "98.0", - "x": 9.2623, - "y": 43.5211 - }, - { - "l": "98.0", - "x": 9.3457, - "y": 44.1153 - }, - { - "l": "98.0", - "x": 9.429, - "y": 44.6627 - }, - { - "l": "98.0", - "x": 9.5123, - "y": 45.2811 - }, - { - "l": "98.0", - "x": 9.5957, - "y": 45.8864 - }, - { - "l": "98.0", - "x": 9.679, - "y": 46.4423 - }, - { - "l": "98.0", - "x": 9.7623, - "y": 47.0685 - }, - { - "l": "98.0", - "x": 9.8457, - "y": 47.6799 - }, - { - "l": "98.0", - "x": 9.929, - "y": 48.2413 - }, - { - "l": "98.0", - "x": 10.0123, - "y": 48.8733 - }, - { - "l": "98.0", - "x": 10.0957, - "y": 49.4906 - }, - { - "l": "98.0", - "x": 10.179, - "y": 50.0571 - }, - { - "l": "98.0", - "x": 10.2623, - "y": 50.6952 - }, - { - "l": "98.0", - "x": 10.3457, - "y": 51.3184 - }, - { - "l": "98.0", - "x": 10.429, - "y": 51.8905 - }, - { - "l": "98.0", - "x": 10.5123, - "y": 52.5343 - }, - { - "l": "98.0", - "x": 10.5957, - "y": 53.1626 - }, - { - "l": "98.0", - "x": 10.679, - "y": 53.7381 - }, - { - "l": "98.0", - "x": 10.7623, - "y": 54.3847 - }, - { - "l": "98.0", - "x": 10.8457, - "y": 55.0138 - }, - { - "l": "98.0", - "x": 10.929, - "y": 55.5886 - }, - { - "l": "98.0", - "x": 11.0123, - "y": 56.2321 - }, - { - "l": "98.0", - "x": 11.0957, - "y": 56.8561 - }, - { - "l": "98.0", - "x": 11.179, - "y": 57.4238 - }, - { - "l": "98.0", - "x": 11.2623, - "y": 58.057 - }, - { - "l": "98.0", - "x": 11.3457, - "y": 58.669 - }, - { - "l": "98.0", - "x": 11.429, - "y": 59.2248 - }, - { - "l": "98.0", - "x": 11.5123, - "y": 59.8439 - }, - { - "l": "98.0", - "x": 11.5957, - "y": 60.4417 - }, - { - "l": "98.0", - "x": 11.679, - "y": 60.9839 - }, - { - "l": "98.0", - "x": 11.7623, - "y": 61.5876 - }, - { - "l": "98.0", - "x": 11.8457, - "y": 62.1703 - }, - { - "l": "98.0", - "x": 11.929, - "y": 62.699 - }, - { - "l": "98.0", - "x": 12.0123, - "y": 63.2878 - }, - { - "l": "98.0", - "x": 12.0957, - "y": 63.8562 - }, - { - "l": "98.0", - "x": 12.179, - "y": 64.3722 - }, - { - "l": "98.0", - "x": 12.2623, - "y": 64.9465 - }, - { - "l": "98.0", - "x": 12.3457, - "y": 65.5007 - }, - { - "l": "98.0", - "x": 12.429, - "y": 66.0034 - }, - { - "l": "98.0", - "x": 12.5123, - "y": 66.5629 - }, - { - "l": "98.0", - "x": 12.5957, - "y": 67.1029 - }, - { - "l": "98.0", - "x": 12.679, - "y": 67.5927 - }, - { - "l": "98.0", - "x": 12.7623, - "y": 68.1378 - }, - { - "l": "98.0", - "x": 12.8457, - "y": 68.664 - }, - { - "l": "98.0", - "x": 12.929, - "y": 69.1409 - }, - { - "l": "98.0", - "x": 13.0123, - "y": 69.6717 - }, - { - "l": "98.0", - "x": 13.0957, - "y": 70.1839 - }, - { - "l": "98.0", - "x": 13.179, - "y": 70.6486 - }, - { - "l": "98.0", - "x": 13.2623, - "y": 71.1661 - }, - { - "l": "98.0", - "x": 13.3457, - "y": 71.6657 - }, - { - "l": "98.0", - "x": 13.429, - "y": 72.1188 - }, - { - "l": "98.0", - "x": 13.5123, - "y": 72.6228 - }, - { - "l": "98.0", - "x": 13.5957, - "y": 73.1085 - }, - { - "l": "98.0", - "x": 13.679, - "y": 73.5477 - }, - { - "l": "98.0", - "x": 13.7623, - "y": 74.0346 - }, - { - "l": "98.0", - "x": 13.8457, - "y": 74.5015 - }, - { - "l": "98.0", - "x": 13.929, - "y": 74.9228 - }, - { - "l": "98.0", - "x": 14.0123, - "y": 75.3873 - }, - { - "l": "98.0", - "x": 14.0957, - "y": 75.8309 - }, - { - "l": "98.0", - "x": 14.179, - "y": 76.2286 - }, - { - "l": "98.0", - "x": 14.2623, - "y": 76.6661 - }, - { - "l": "98.0", - "x": 14.3457, - "y": 77.0826 - }, - { - "l": "98.0", - "x": 14.429, - "y": 77.4552 - }, - { - "l": "98.0", - "x": 14.5123, - "y": 77.8645 - }, - { - "l": "98.0", - "x": 14.5957, - "y": 78.2537 - }, - { - "l": "98.0", - "x": 14.679, - "y": 78.601 - }, - { - "l": "98.0", - "x": 14.7623, - "y": 78.9815 - }, - { - "l": "98.0", - "x": 14.8457, - "y": 79.3426 - }, - { - "l": "98.0", - "x": 14.929, - "y": 79.6643 - }, - { - "l": "98.0", - "x": 15.0123, - "y": 80.0161 - }, - { - "l": "98.0", - "x": 15.0957, - "y": 80.3493 - }, - { - "l": "98.0", - "x": 15.179, - "y": 80.6462 - }, - { - "l": "98.0", - "x": 15.2623, - "y": 80.9708 - }, - { - "l": "98.0", - "x": 15.3457, - "y": 81.278 - }, - { - "l": "98.0", - "x": 15.429, - "y": 81.5518 - }, - { - "l": "98.0", - "x": 15.5123, - "y": 81.8502 - }, - { - "l": "98.0", - "x": 15.5957, - "y": 82.1332 - }, - { - "l": "98.0", - "x": 15.679, - "y": 82.3848 - }, - { - "l": "98.0", - "x": 15.7623, - "y": 82.6596 - }, - { - "l": "98.0", - "x": 15.8457, - "y": 82.9219 - }, - { - "l": "98.0", - "x": 15.929, - "y": 83.1556 - }, - { - "l": "98.0", - "x": 16.0123, - "y": 83.4124 - }, - { - "l": "98.0", - "x": 16.0957, - "y": 83.6573 - }, - { - "l": "98.0", - "x": 16.179, - "y": 83.8774 - }, - { - "l": "98.0", - "x": 16.2623, - "y": 84.1206 - }, - { - "l": "98.0", - "x": 16.3457, - "y": 84.3539 - }, - { - "l": "98.0", - "x": 16.429, - "y": 84.5646 - }, - { - "l": "98.0", - "x": 16.5123, - "y": 84.7981 - }, - { - "l": "98.0", - "x": 16.5957, - "y": 85.0228 - }, - { - "l": "98.0", - "x": 16.679, - "y": 85.2263 - }, - { - "l": "98.0", - "x": 16.7623, - "y": 85.4524 - }, - { - "l": "98.0", - "x": 16.8457, - "y": 85.6705 - }, - { - "l": "98.0", - "x": 16.929, - "y": 85.8684 - }, - { - "l": "98.0", - "x": 17.0123, - "y": 86.089 - }, - { - "l": "98.0", - "x": 17.0957, - "y": 86.3023 - }, - { - "l": "98.0", - "x": 17.179, - "y": 86.4962 - }, - { - "l": "98.0", - "x": 17.2623, - "y": 86.7125 - }, - { - "l": "98.0", - "x": 17.3457, - "y": 86.9224 - }, - { - "l": "98.0", - "x": 17.429, - "y": 87.1133 - }, - { - "l": "98.0", - "x": 17.5123, - "y": 87.3268 - }, - { - "l": "98.0", - "x": 17.5957, - "y": 87.5342 - }, - { - "l": "98.0", - "x": 17.679, - "y": 87.7236 - }, - { - "l": "98.0", - "x": 17.7623, - "y": 87.9353 - }, - { - "l": "98.0", - "x": 17.8457, - "y": 88.1415 - }, - { - "l": "98.0", - "x": 17.929, - "y": 88.3301 - }, - { - "l": "98.0", - "x": 18.0123, - "y": 88.5419 - }, - { - "l": "98.0", - "x": 18.0957, - "y": 88.7483 - }, - { - "l": "98.0", - "x": 18.179, - "y": 88.9375 - }, - { - "l": "98.0", - "x": 18.2623, - "y": 89.1495 - }, - { - "l": "98.0", - "x": 18.3457, - "y": 89.3575 - }, - { - "l": "98.0", - "x": 18.429, - "y": 89.5477 - }, - { - "l": "98.0", - "x": 18.5123, - "y": 89.7598 - }, - { - "l": "98.0", - "x": 18.5957, - "y": 89.967 - }, - { - "l": "98.0", - "x": 18.679, - "y": 90.1575 - }, - { - "l": "98.0", - "x": 18.7623, - "y": 90.3709 - }, - { - "l": "98.0", - "x": 18.8457, - "y": 90.579 - }, - { - "l": "98.0", - "x": 18.929, - "y": 90.7693 - }, - { - "l": "98.0", - "x": 19.0123, - "y": 90.9845 - }, - { - "l": "98.0", - "x": 19.0957, - "y": 91.1923 - }, - { - "l": "98.0", - "x": 19.179, - "y": 91.3822 - }, - { - "l": "98.0", - "x": 19.2623, - "y": 91.5993 - }, - { - "l": "98.0", - "x": 19.3457, - "y": 91.8095 - }, - { - "l": "98.0", - "x": 19.429, - "y": 92.0008 - }, - { - "l": "98.0", - "x": 19.5123, - "y": 92.2141 - }, - { - "l": "98.0", - "x": 19.5957, - "y": 92.4204 - }, - { - "l": "98.0", - "x": 19.679, - "y": 92.6094 - }, - { - "l": "98.0", - "x": 19.7623, - "y": 92.824 - }, - { - "l": "98.0", - "x": 19.8457, - "y": 93.0323 - }, - { - "l": "98.0", - "x": 19.929, - "y": 93.2246 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 0.0, - "y": 4.4107 - }, - { - "l": "99.6", - "x": 0.0192, - "y": 4.6247 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 4.8383 - }, - { - "l": "99.6", - "x": 0.0575, - "y": 5.0513 - }, - { - "l": "99.6", - "x": 0.0767, - "y": 5.2638 - }, - { - "l": "99.6", - "x": 0.0958, - "y": 5.4612 - }, - { - "l": "99.6", - "x": 0.115, - "y": 5.6528 - }, - { - "l": "99.6", - "x": 0.1342, - "y": 5.8436 - }, - { - "l": "99.6", - "x": 0.1533, - "y": 6.0357 - }, - { - "l": "99.6", - "x": 0.1725, - "y": 6.2331 - }, - { - "l": "99.6", - "x": 0.1916, - "y": 6.4463 - }, - { - "l": "99.6", - "x": 0.2108, - "y": 6.6622 - }, - { - "l": "99.6", - "x": 0.23, - "y": 6.879 - }, - { - "l": "99.6", - "x": 0.2491, - "y": 7.0949 - }, - { - "l": "99.6", - "x": 0.2683, - "y": 7.3072 - }, - { - "l": "99.6", - "x": 0.2875, - "y": 7.5154 - }, - { - "l": "99.6", - "x": 0.3066, - "y": 7.7183 - }, - { - "l": "99.6", - "x": 0.3258, - "y": 7.9144 - }, - { - "l": "99.6", - "x": 0.345, - "y": 8.0939 - }, - { - "l": "99.6", - "x": 0.3641, - "y": 8.2637 - }, - { - "l": "99.6", - "x": 0.3833, - "y": 8.4282 - }, - { - "l": "99.6", - "x": 0.4025, - "y": 8.5894 - }, - { - "l": "99.6", - "x": 0.4216, - "y": 8.7502 - }, - { - "l": "99.6", - "x": 0.4408, - "y": 8.9202 - }, - { - "l": "99.6", - "x": 0.46, - "y": 9.0888 - }, - { - "l": "99.6", - "x": 0.4791, - "y": 9.255 - }, - { - "l": "99.6", - "x": 0.4983, - "y": 9.4175 - }, - { - "l": "99.6", - "x": 0.5175, - "y": 9.5737 - }, - { - "l": "99.6", - "x": 0.5366, - "y": 9.7245 - }, - { - "l": "99.6", - "x": 0.5558, - "y": 9.8693 - }, - { - "l": "99.6", - "x": 0.5749, - "y": 10.0076 - }, - { - "l": "99.6", - "x": 0.5941, - "y": 10.1335 - }, - { - "l": "99.6", - "x": 0.6133, - "y": 10.2513 - }, - { - "l": "99.6", - "x": 0.6324, - "y": 10.3644 - }, - { - "l": "99.6", - "x": 0.6516, - "y": 10.4744 - }, - { - "l": "99.6", - "x": 0.6708, - "y": 10.5832 - }, - { - "l": "99.6", - "x": 0.6899, - "y": 10.6985 - }, - { - "l": "99.6", - "x": 0.7091, - "y": 10.8129 - }, - { - "l": "99.6", - "x": 0.7283, - "y": 10.9257 - }, - { - "l": "99.6", - "x": 0.7474, - "y": 11.0362 - }, - { - "l": "99.6", - "x": 0.7666, - "y": 11.1432 - }, - { - "l": "99.6", - "x": 0.7858, - "y": 11.2469 - }, - { - "l": "99.6", - "x": 0.8049, - "y": 11.347 - }, - { - "l": "99.6", - "x": 0.8241, - "y": 11.4432 - }, - { - "l": "99.6", - "x": 0.8433, - "y": 11.5316 - }, - { - "l": "99.6", - "x": 0.8624, - "y": 11.6147 - }, - { - "l": "99.6", - "x": 0.8816, - "y": 11.6951 - }, - { - "l": "99.6", - "x": 0.9008, - "y": 11.774 - }, - { - "l": "99.6", - "x": 0.9199, - "y": 11.8524 - }, - { - "l": "99.6", - "x": 0.9391, - "y": 11.9365 - }, - { - "l": "99.6", - "x": 0.9582, - "y": 12.0206 - }, - { - "l": "99.6", - "x": 0.9774, - "y": 12.1042 - }, - { - "l": "99.6", - "x": 0.9966, - "y": 12.1869 - }, - { - "l": "99.6", - "x": 1.0157, - "y": 12.2678 - }, - { - "l": "99.6", - "x": 1.0349, - "y": 12.3469 - }, - { - "l": "99.6", - "x": 1.0541, - "y": 12.4238 - }, - { - "l": "99.6", - "x": 1.0732, - "y": 12.4983 - }, - { - "l": "99.6", - "x": 1.0924, - "y": 12.5675 - }, - { - "l": "99.6", - "x": 1.1116, - "y": 12.6326 - }, - { - "l": "99.6", - "x": 1.1307, - "y": 12.6962 - }, - { - "l": "99.6", - "x": 1.1499, - "y": 12.7589 - }, - { - "l": "99.6", - "x": 1.1691, - "y": 12.8217 - }, - { - "l": "99.6", - "x": 1.1882, - "y": 12.8892 - }, - { - "l": "99.6", - "x": 1.2074, - "y": 12.9573 - }, - { - "l": "99.6", - "x": 1.2266, - "y": 13.0254 - }, - { - "l": "99.6", - "x": 1.2457, - "y": 13.0932 - }, - { - "l": "99.6", - "x": 1.2649, - "y": 13.16 - }, - { - "l": "99.6", - "x": 1.2841, - "y": 13.2257 - }, - { - "l": "99.6", - "x": 1.3032, - "y": 13.29 - }, - { - "l": "99.6", - "x": 1.3224, - "y": 13.3527 - }, - { - "l": "99.6", - "x": 1.3415, - "y": 13.4112 - }, - { - "l": "99.6", - "x": 1.3607, - "y": 13.4666 - }, - { - "l": "99.6", - "x": 1.3799, - "y": 13.5208 - }, - { - "l": "99.6", - "x": 1.399, - "y": 13.5745 - }, - { - "l": "99.6", - "x": 1.4182, - "y": 13.6286 - }, - { - "l": "99.6", - "x": 1.4374, - "y": 13.6866 - }, - { - "l": "99.6", - "x": 1.4565, - "y": 13.7455 - }, - { - "l": "99.6", - "x": 1.4757, - "y": 13.8047 - }, - { - "l": "99.6", - "x": 1.4949, - "y": 13.8638 - }, - { - "l": "99.6", - "x": 1.514, - "y": 13.9224 - }, - { - "l": "99.6", - "x": 1.5332, - "y": 13.9802 - }, - { - "l": "99.6", - "x": 1.5524, - "y": 14.037 - }, - { - "l": "99.6", - "x": 1.5715, - "y": 14.0925 - }, - { - "l": "99.6", - "x": 1.5907, - "y": 14.1447 - }, - { - "l": "99.6", - "x": 1.6099, - "y": 14.194 - }, - { - "l": "99.6", - "x": 1.629, - "y": 14.2424 - }, - { - "l": "99.6", - "x": 1.6482, - "y": 14.2906 - }, - { - "l": "99.6", - "x": 1.6674, - "y": 14.3392 - }, - { - "l": "99.6", - "x": 1.6865, - "y": 14.3914 - }, - { - "l": "99.6", - "x": 1.7057, - "y": 14.4448 - }, - { - "l": "99.6", - "x": 1.7248, - "y": 14.4986 - }, - { - "l": "99.6", - "x": 1.744, - "y": 14.5526 - }, - { - "l": "99.6", - "x": 1.7632, - "y": 14.6063 - }, - { - "l": "99.6", - "x": 1.7823, - "y": 14.6596 - }, - { - "l": "99.6", - "x": 1.8015, - "y": 14.7122 - }, - { - "l": "99.6", - "x": 1.8207, - "y": 14.7637 - }, - { - "l": "99.6", - "x": 1.8398, - "y": 14.8125 - }, - { - "l": "99.6", - "x": 1.859, - "y": 14.8587 - }, - { - "l": "99.6", - "x": 1.8782, - "y": 14.9043 - }, - { - "l": "99.6", - "x": 1.8973, - "y": 14.9498 - }, - { - "l": "99.6", - "x": 1.9165, - "y": 14.996 - }, - { - "l": "99.6", - "x": 1.9357, - "y": 15.0456 - }, - { - "l": "99.6", - "x": 1.9548, - "y": 15.0968 - }, - { - "l": "99.6", - "x": 1.974, - "y": 15.1485 - }, - { - "l": "99.6", - "x": 1.9932, - "y": 15.2007 - }, - { - "l": "99.6", - "x": 2.0123, - "y": 15.253 - }, - { - "l": "99.6", - "x": 2.0957, - "y": 15.4721 - }, - { - "l": "99.6", - "x": 2.179, - "y": 15.6732 - }, - { - "l": "99.6", - "x": 2.2623, - "y": 15.8997 - }, - { - "l": "99.6", - "x": 2.3457, - "y": 16.1211 - }, - { - "l": "99.6", - "x": 2.429, - "y": 16.325 - }, - { - "l": "99.6", - "x": 2.5123, - "y": 16.5557 - }, - { - "l": "99.6", - "x": 2.5957, - "y": 16.7826 - }, - { - "l": "99.6", - "x": 2.679, - "y": 16.9924 - }, - { - "l": "99.6", - "x": 2.7623, - "y": 17.2299 - }, - { - "l": "99.6", - "x": 2.8457, - "y": 17.463 - }, - { - "l": "99.6", - "x": 2.929, - "y": 17.6776 - }, - { - "l": "99.6", - "x": 3.0123, - "y": 17.9202 - }, - { - "l": "99.6", - "x": 3.0957, - "y": 18.1581 - }, - { - "l": "99.6", - "x": 3.179, - "y": 18.3771 - }, - { - "l": "99.6", - "x": 3.2623, - "y": 18.6245 - }, - { - "l": "99.6", - "x": 3.3457, - "y": 18.8667 - }, - { - "l": "99.6", - "x": 3.429, - "y": 19.0898 - }, - { - "l": "99.6", - "x": 3.5123, - "y": 19.3417 - }, - { - "l": "99.6", - "x": 3.5957, - "y": 19.5884 - }, - { - "l": "99.6", - "x": 3.679, - "y": 19.8156 - }, - { - "l": "99.6", - "x": 3.7623, - "y": 20.0726 - }, - { - "l": "99.6", - "x": 3.8457, - "y": 20.3258 - }, - { - "l": "99.6", - "x": 3.929, - "y": 20.5608 - }, - { - "l": "99.6", - "x": 4.0123, - "y": 20.8284 - }, - { - "l": "99.6", - "x": 4.0957, - "y": 21.0928 - }, - { - "l": "99.6", - "x": 4.179, - "y": 21.3383 - }, - { - "l": "99.6", - "x": 4.2623, - "y": 21.6174 - }, - { - "l": "99.6", - "x": 4.3457, - "y": 21.8924 - }, - { - "l": "99.6", - "x": 4.429, - "y": 22.147 - }, - { - "l": "99.6", - "x": 4.5123, - "y": 22.4367 - }, - { - "l": "99.6", - "x": 4.5957, - "y": 22.7234 - }, - { - "l": "99.6", - "x": 4.679, - "y": 22.9906 - }, - { - "l": "99.6", - "x": 4.7623, - "y": 23.2963 - }, - { - "l": "99.6", - "x": 4.8457, - "y": 23.6001 - }, - { - "l": "99.6", - "x": 4.929, - "y": 23.8837 - }, - { - "l": "99.6", - "x": 5.0123, - "y": 24.2085 - }, - { - "l": "99.6", - "x": 5.0957, - "y": 24.5313 - }, - { - "l": "99.6", - "x": 5.179, - "y": 24.8329 - }, - { - "l": "99.6", - "x": 5.2623, - "y": 25.1784 - }, - { - "l": "99.6", - "x": 5.3457, - "y": 25.5217 - }, - { - "l": "99.6", - "x": 5.429, - "y": 25.8422 - }, - { - "l": "99.6", - "x": 5.5123, - "y": 26.209 - }, - { - "l": "99.6", - "x": 5.5957, - "y": 26.5729 - }, - { - "l": "99.6", - "x": 5.679, - "y": 26.9122 - }, - { - "l": "99.6", - "x": 5.7623, - "y": 27.3 - }, - { - "l": "99.6", - "x": 5.8457, - "y": 27.6853 - }, - { - "l": "99.6", - "x": 5.929, - "y": 28.0453 - }, - { - "l": "99.6", - "x": 6.0123, - "y": 28.4584 - }, - { - "l": "99.6", - "x": 6.0957, - "y": 28.8701 - }, - { - "l": "99.6", - "x": 6.179, - "y": 29.256 - }, - { - "l": "99.6", - "x": 6.2623, - "y": 29.6995 - }, - { - "l": "99.6", - "x": 6.3457, - "y": 30.1422 - }, - { - "l": "99.6", - "x": 6.429, - "y": 30.5571 - }, - { - "l": "99.6", - "x": 6.5123, - "y": 31.0341 - }, - { - "l": "99.6", - "x": 6.5957, - "y": 31.51 - }, - { - "l": "99.6", - "x": 6.679, - "y": 31.9555 - }, - { - "l": "99.6", - "x": 6.7623, - "y": 32.4668 - }, - { - "l": "99.6", - "x": 6.8457, - "y": 32.9756 - }, - { - "l": "99.6", - "x": 6.929, - "y": 33.4506 - }, - { - "l": "99.6", - "x": 7.0123, - "y": 33.994 - }, - { - "l": "99.6", - "x": 7.0957, - "y": 34.5329 - }, - { - "l": "99.6", - "x": 7.179, - "y": 35.0343 - }, - { - "l": "99.6", - "x": 7.2623, - "y": 35.6061 - }, - { - "l": "99.6", - "x": 7.3457, - "y": 36.172 - }, - { - "l": "99.6", - "x": 7.429, - "y": 36.6984 - }, - { - "l": "99.6", - "x": 7.5123, - "y": 37.2992 - }, - { - "l": "99.6", - "x": 7.5957, - "y": 37.8946 - }, - { - "l": "99.6", - "x": 7.679, - "y": 38.4489 - }, - { - "l": "99.6", - "x": 7.7623, - "y": 39.082 - }, - { - "l": "99.6", - "x": 7.8457, - "y": 39.7098 - }, - { - "l": "99.6", - "x": 7.929, - "y": 40.2946 - }, - { - "l": "99.6", - "x": 8.0123, - "y": 40.963 - }, - { - "l": "99.6", - "x": 8.0957, - "y": 41.6264 - }, - { - "l": "99.6", - "x": 8.179, - "y": 42.2445 - }, - { - "l": "99.6", - "x": 8.2623, - "y": 42.9511 - }, - { - "l": "99.6", - "x": 8.3457, - "y": 43.6517 - }, - { - "l": "99.6", - "x": 8.429, - "y": 44.3033 - }, - { - "l": "99.6", - "x": 8.5123, - "y": 45.0465 - }, - { - "l": "99.6", - "x": 8.5957, - "y": 45.7819 - }, - { - "l": "99.6", - "x": 8.679, - "y": 46.4648 - }, - { - "l": "99.6", - "x": 8.7623, - "y": 47.2428 - }, - { - "l": "99.6", - "x": 8.8457, - "y": 48.0122 - }, - { - "l": "99.6", - "x": 8.929, - "y": 48.7268 - }, - { - "l": "99.6", - "x": 9.0123, - "y": 49.5408 - }, - { - "l": "99.6", - "x": 9.0957, - "y": 50.3451 - }, - { - "l": "99.6", - "x": 9.179, - "y": 51.0909 - }, - { - "l": "99.6", - "x": 9.2623, - "y": 51.9384 - }, - { - "l": "99.6", - "x": 9.3457, - "y": 52.7733 - }, - { - "l": "99.6", - "x": 9.429, - "y": 53.5445 - }, - { - "l": "99.6", - "x": 9.5123, - "y": 54.4177 - }, - { - "l": "99.6", - "x": 9.5957, - "y": 55.2742 - }, - { - "l": "99.6", - "x": 9.679, - "y": 56.0623 - }, - { - "l": "99.6", - "x": 9.7623, - "y": 56.9512 - }, - { - "l": "99.6", - "x": 9.8457, - "y": 57.8201 - }, - { - "l": "99.6", - "x": 9.929, - "y": 58.6185 - }, - { - "l": "99.6", - "x": 10.0123, - "y": 59.5173 - }, - { - "l": "99.6", - "x": 10.0957, - "y": 60.3952 - }, - { - "l": "99.6", - "x": 10.179, - "y": 61.2001 - }, - { - "l": "99.6", - "x": 10.2623, - "y": 62.1055 - }, - { - "l": "99.6", - "x": 10.3457, - "y": 62.9883 - }, - { - "l": "99.6", - "x": 10.429, - "y": 63.7963 - }, - { - "l": "99.6", - "x": 10.5123, - "y": 64.7031 - }, - { - "l": "99.6", - "x": 10.5957, - "y": 65.5844 - }, - { - "l": "99.6", - "x": 10.679, - "y": 66.3876 - }, - { - "l": "99.6", - "x": 10.7623, - "y": 67.2859 - }, - { - "l": "99.6", - "x": 10.8457, - "y": 68.1543 - }, - { - "l": "99.6", - "x": 10.929, - "y": 68.9421 - }, - { - "l": "99.6", - "x": 11.0123, - "y": 69.8172 - }, - { - "l": "99.6", - "x": 11.0957, - "y": 70.6581 - }, - { - "l": "99.6", - "x": 11.179, - "y": 71.4154 - }, - { - "l": "99.6", - "x": 11.2623, - "y": 72.2509 - }, - { - "l": "99.6", - "x": 11.3457, - "y": 73.0482 - }, - { - "l": "99.6", - "x": 11.429, - "y": 73.7629 - }, - { - "l": "99.6", - "x": 11.5123, - "y": 74.5485 - }, - { - "l": "99.6", - "x": 11.5957, - "y": 75.2963 - }, - { - "l": "99.6", - "x": 11.679, - "y": 75.9645 - }, - { - "l": "99.6", - "x": 11.7623, - "y": 76.6977 - }, - { - "l": "99.6", - "x": 11.8457, - "y": 77.3945 - }, - { - "l": "99.6", - "x": 11.929, - "y": 78.0168 - }, - { - "l": "99.6", - "x": 12.0123, - "y": 78.6992 - }, - { - "l": "99.6", - "x": 12.0957, - "y": 79.3475 - }, - { - "l": "99.6", - "x": 12.179, - "y": 79.9273 - }, - { - "l": "99.6", - "x": 12.2623, - "y": 80.5628 - }, - { - "l": "99.6", - "x": 12.3457, - "y": 81.1668 - }, - { - "l": "99.6", - "x": 12.429, - "y": 81.7068 - }, - { - "l": "99.6", - "x": 12.5123, - "y": 82.2998 - }, - { - "l": "99.6", - "x": 12.5957, - "y": 82.8647 - }, - { - "l": "99.6", - "x": 12.679, - "y": 83.3711 - }, - { - "l": "99.6", - "x": 12.7623, - "y": 83.9288 - }, - { - "l": "99.6", - "x": 12.8457, - "y": 84.4628 - }, - { - "l": "99.6", - "x": 12.929, - "y": 84.9427 - }, - { - "l": "99.6", - "x": 13.0123, - "y": 85.4732 - }, - { - "l": "99.6", - "x": 13.0957, - "y": 85.9822 - }, - { - "l": "99.6", - "x": 13.179, - "y": 86.4419 - }, - { - "l": "99.6", - "x": 13.2623, - "y": 86.9518 - }, - { - "l": "99.6", - "x": 13.3457, - "y": 87.4426 - }, - { - "l": "99.6", - "x": 13.429, - "y": 87.8869 - }, - { - "l": "99.6", - "x": 13.5123, - "y": 88.3802 - }, - { - "l": "99.6", - "x": 13.5957, - "y": 88.855 - }, - { - "l": "99.6", - "x": 13.679, - "y": 89.2839 - }, - { - "l": "99.6", - "x": 13.7623, - "y": 89.7592 - }, - { - "l": "99.6", - "x": 13.8457, - "y": 90.2147 - }, - { - "l": "99.6", - "x": 13.929, - "y": 90.6253 - }, - { - "l": "99.6", - "x": 14.0123, - "y": 91.0776 - }, - { - "l": "99.6", - "x": 14.0957, - "y": 91.509 - }, - { - "l": "99.6", - "x": 14.179, - "y": 91.895 - }, - { - "l": "99.6", - "x": 14.2623, - "y": 92.3185 - }, - { - "l": "99.6", - "x": 14.3457, - "y": 92.7206 - }, - { - "l": "99.6", - "x": 14.429, - "y": 93.0793 - }, - { - "l": "99.6", - "x": 14.5123, - "y": 93.4718 - }, - { - "l": "99.6", - "x": 14.5957, - "y": 93.8434 - }, - { - "l": "99.6", - "x": 14.679, - "y": 94.1735 - }, - { - "l": "99.6", - "x": 14.7623, - "y": 94.5332 - }, - { - "l": "99.6", - "x": 14.8457, - "y": 94.8725 - }, - { - "l": "99.6", - "x": 14.929, - "y": 95.1726 - }, - { - "l": "99.6", - "x": 15.0123, - "y": 95.4983 - }, - { - "l": "99.6", - "x": 15.0957, - "y": 95.8043 - }, - { - "l": "99.6", - "x": 15.179, - "y": 96.0747 - }, - { - "l": "99.6", - "x": 15.2623, - "y": 96.3678 - }, - { - "l": "99.6", - "x": 15.3457, - "y": 96.6424 - }, - { - "l": "99.6", - "x": 15.429, - "y": 96.8847 - }, - { - "l": "99.6", - "x": 15.5123, - "y": 97.1458 - }, - { - "l": "99.6", - "x": 15.5957, - "y": 97.3905 - }, - { - "l": "99.6", - "x": 15.679, - "y": 97.6056 - }, - { - "l": "99.6", - "x": 15.7623, - "y": 97.8379 - }, - { - "l": "99.6", - "x": 15.8457, - "y": 98.0575 - }, - { - "l": "99.6", - "x": 15.929, - "y": 98.2514 - }, - { - "l": "99.6", - "x": 16.0123, - "y": 98.463 - }, - { - "l": "99.6", - "x": 16.0957, - "y": 98.6634 - }, - { - "l": "99.6", - "x": 16.179, - "y": 98.843 - }, - { - "l": "99.6", - "x": 16.2623, - "y": 99.0408 - }, - { - "l": "99.6", - "x": 16.3457, - "y": 99.2302 - }, - { - "l": "99.6", - "x": 16.429, - "y": 99.4012 - }, - { - "l": "99.6", - "x": 16.5123, - "y": 99.5909 - }, - { - "l": "99.6", - "x": 16.5957, - "y": 99.7736 - }, - { - "l": "99.6", - "x": 16.679, - "y": 99.9392 - }, - { - "l": "99.6", - "x": 16.7623, - "y": 100.1239 - }, - { - "l": "99.6", - "x": 16.8457, - "y": 100.3023 - }, - { - "l": "99.6", - "x": 16.929, - "y": 100.4645 - }, - { - "l": "99.6", - "x": 17.0123, - "y": 100.6461 - }, - { - "l": "99.6", - "x": 17.0957, - "y": 100.8231 - }, - { - "l": "99.6", - "x": 17.179, - "y": 100.9842 - }, - { - "l": "99.6", - "x": 17.2623, - "y": 101.1642 - }, - { - "l": "99.6", - "x": 17.3457, - "y": 101.3412 - }, - { - "l": "99.6", - "x": 17.429, - "y": 101.5018 - }, - { - "l": "99.6", - "x": 17.5123, - "y": 101.683 - }, - { - "l": "99.6", - "x": 17.5957, - "y": 101.8605 - }, - { - "l": "99.6", - "x": 17.679, - "y": 102.0239 - }, - { - "l": "99.6", - "x": 17.7623, - "y": 102.207 - }, - { - "l": "99.6", - "x": 17.8457, - "y": 102.3871 - }, - { - "l": "99.6", - "x": 17.929, - "y": 102.5531 - }, - { - "l": "99.6", - "x": 18.0123, - "y": 102.7411 - }, - { - "l": "99.6", - "x": 18.0957, - "y": 102.9259 - }, - { - "l": "99.6", - "x": 18.179, - "y": 103.0968 - }, - { - "l": "99.6", - "x": 18.2623, - "y": 103.2888 - }, - { - "l": "99.6", - "x": 18.3457, - "y": 103.4805 - }, - { - "l": "99.6", - "x": 18.429, - "y": 103.6566 - }, - { - "l": "99.6", - "x": 18.5123, - "y": 103.8518 - }, - { - "l": "99.6", - "x": 18.5957, - "y": 104.0447 - }, - { - "l": "99.6", - "x": 18.679, - "y": 104.2244 - }, - { - "l": "99.6", - "x": 18.7623, - "y": 104.4263 - }, - { - "l": "99.6", - "x": 18.8457, - "y": 104.6245 - }, - { - "l": "99.6", - "x": 18.929, - "y": 104.8064 - }, - { - "l": "99.6", - "x": 19.0123, - "y": 105.0157 - }, - { - "l": "99.6", - "x": 19.0957, - "y": 105.2163 - }, - { - "l": "99.6", - "x": 19.179, - "y": 105.3997 - }, - { - "l": "99.6", - "x": 19.2623, - "y": 105.6164 - }, - { - "l": "99.6", - "x": 19.3457, - "y": 105.8252 - }, - { - "l": "99.6", - "x": 19.429, - "y": 106.0142 - }, - { - "l": "99.6", - "x": 19.5123, - "y": 106.2241 - }, - { - "l": "99.6", - "x": 19.5957, - "y": 106.426 - }, - { - "l": "99.6", - "x": 19.679, - "y": 106.6117 - }, - { - "l": "99.6", - "x": 19.7623, - "y": 106.8269 - }, - { - "l": "99.6", - "x": 19.8457, - "y": 107.0355 - }, - { - "l": "99.6", - "x": 19.929, - "y": 107.23 - } - ] - } - ], - "ofc": null, - "bmi": null - }, - "female": null - } - } - ] -}; - -var trisomy21WeightFemaleCentileData = { - "centile_data": [ - { - "trisomy-21": { - "male": null, - "female": { - "height": null, - "weight": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 0.0, - "y": 1.9559 - }, - { - "l": "0.4", - "x": 0.0192, - "y": 2.0469 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 2.1381 - }, - { - "l": "0.4", - "x": 0.0575, - "y": 2.2295 - }, - { - "l": "0.4", - "x": 0.0767, - "y": 2.3212 - }, - { - "l": "0.4", - "x": 0.0958, - "y": 2.4061 - }, - { - "l": "0.4", - "x": 0.115, - "y": 2.4885 - }, - { - "l": "0.4", - "x": 0.1342, - "y": 2.5707 - }, - { - "l": "0.4", - "x": 0.1533, - "y": 2.6537 - }, - { - "l": "0.4", - "x": 0.1725, - "y": 2.7392 - }, - { - "l": "0.4", - "x": 0.1916, - "y": 2.8319 - }, - { - "l": "0.4", - "x": 0.2108, - "y": 2.9264 - }, - { - "l": "0.4", - "x": 0.23, - "y": 3.0219 - }, - { - "l": "0.4", - "x": 0.2491, - "y": 3.1178 - }, - { - "l": "0.4", - "x": 0.2683, - "y": 3.2133 - }, - { - "l": "0.4", - "x": 0.2875, - "y": 3.3079 - }, - { - "l": "0.4", - "x": 0.3066, - "y": 3.4008 - }, - { - "l": "0.4", - "x": 0.3258, - "y": 3.4916 - }, - { - "l": "0.4", - "x": 0.345, - "y": 3.5755 - }, - { - "l": "0.4", - "x": 0.3641, - "y": 3.6556 - }, - { - "l": "0.4", - "x": 0.3833, - "y": 3.734 - }, - { - "l": "0.4", - "x": 0.4025, - "y": 3.8116 - }, - { - "l": "0.4", - "x": 0.4216, - "y": 3.8897 - }, - { - "l": "0.4", - "x": 0.4408, - "y": 3.9729 - }, - { - "l": "0.4", - "x": 0.46, - "y": 4.0561 - }, - { - "l": "0.4", - "x": 0.4791, - "y": 4.1389 - }, - { - "l": "0.4", - "x": 0.4983, - "y": 4.2206 - }, - { - "l": "0.4", - "x": 0.5175, - "y": 4.3001 - }, - { - "l": "0.4", - "x": 0.5366, - "y": 4.3774 - }, - { - "l": "0.4", - "x": 0.5558, - "y": 4.4524 - }, - { - "l": "0.4", - "x": 0.5749, - "y": 4.5247 - }, - { - "l": "0.4", - "x": 0.5941, - "y": 4.591 - }, - { - "l": "0.4", - "x": 0.6133, - "y": 4.6535 - }, - { - "l": "0.4", - "x": 0.6324, - "y": 4.7141 - }, - { - "l": "0.4", - "x": 0.6516, - "y": 4.7736 - }, - { - "l": "0.4", - "x": 0.6708, - "y": 4.833 - }, - { - "l": "0.4", - "x": 0.6899, - "y": 4.8964 - }, - { - "l": "0.4", - "x": 0.7091, - "y": 4.9597 - }, - { - "l": "0.4", - "x": 0.7283, - "y": 5.0226 - }, - { - "l": "0.4", - "x": 0.7474, - "y": 5.0846 - }, - { - "l": "0.4", - "x": 0.7666, - "y": 5.1451 - }, - { - "l": "0.4", - "x": 0.7858, - "y": 5.204 - }, - { - "l": "0.4", - "x": 0.8049, - "y": 5.2611 - }, - { - "l": "0.4", - "x": 0.8241, - "y": 5.3163 - }, - { - "l": "0.4", - "x": 0.8433, - "y": 5.3671 - }, - { - "l": "0.4", - "x": 0.8624, - "y": 5.415 - }, - { - "l": "0.4", - "x": 0.8816, - "y": 5.4614 - }, - { - "l": "0.4", - "x": 0.9008, - "y": 5.5071 - }, - { - "l": "0.4", - "x": 0.9199, - "y": 5.5525 - }, - { - "l": "0.4", - "x": 0.9391, - "y": 5.6012 - }, - { - "l": "0.4", - "x": 0.9582, - "y": 5.65 - }, - { - "l": "0.4", - "x": 0.9774, - "y": 5.6985 - }, - { - "l": "0.4", - "x": 0.9966, - "y": 5.7465 - }, - { - "l": "0.4", - "x": 1.0157, - "y": 5.7934 - }, - { - "l": "0.4", - "x": 1.0349, - "y": 5.8392 - }, - { - "l": "0.4", - "x": 1.0541, - "y": 5.8837 - }, - { - "l": "0.4", - "x": 1.0732, - "y": 5.9269 - }, - { - "l": "0.4", - "x": 1.0924, - "y": 5.9669 - }, - { - "l": "0.4", - "x": 1.1116, - "y": 6.0047 - }, - { - "l": "0.4", - "x": 1.1307, - "y": 6.0414 - }, - { - "l": "0.4", - "x": 1.1499, - "y": 6.0777 - }, - { - "l": "0.4", - "x": 1.1691, - "y": 6.1141 - }, - { - "l": "0.4", - "x": 1.1882, - "y": 6.1531 - }, - { - "l": "0.4", - "x": 1.2074, - "y": 6.1925 - }, - { - "l": "0.4", - "x": 1.2266, - "y": 6.2319 - }, - { - "l": "0.4", - "x": 1.2457, - "y": 6.2711 - }, - { - "l": "0.4", - "x": 1.2649, - "y": 6.3097 - }, - { - "l": "0.4", - "x": 1.2841, - "y": 6.3477 - }, - { - "l": "0.4", - "x": 1.3032, - "y": 6.3849 - }, - { - "l": "0.4", - "x": 1.3224, - "y": 6.421 - }, - { - "l": "0.4", - "x": 1.3415, - "y": 6.4548 - }, - { - "l": "0.4", - "x": 1.3607, - "y": 6.4867 - }, - { - "l": "0.4", - "x": 1.3799, - "y": 6.518 - }, - { - "l": "0.4", - "x": 1.399, - "y": 6.5489 - }, - { - "l": "0.4", - "x": 1.4182, - "y": 6.5799 - }, - { - "l": "0.4", - "x": 1.4374, - "y": 6.6132 - }, - { - "l": "0.4", - "x": 1.4565, - "y": 6.6471 - }, - { - "l": "0.4", - "x": 1.4757, - "y": 6.681 - }, - { - "l": "0.4", - "x": 1.4949, - "y": 6.7148 - }, - { - "l": "0.4", - "x": 1.514, - "y": 6.7482 - }, - { - "l": "0.4", - "x": 1.5332, - "y": 6.7812 - }, - { - "l": "0.4", - "x": 1.5524, - "y": 6.8134 - }, - { - "l": "0.4", - "x": 1.5715, - "y": 6.8449 - }, - { - "l": "0.4", - "x": 1.5907, - "y": 6.8745 - }, - { - "l": "0.4", - "x": 1.6099, - "y": 6.9023 - }, - { - "l": "0.4", - "x": 1.629, - "y": 6.9296 - }, - { - "l": "0.4", - "x": 1.6482, - "y": 6.9567 - }, - { - "l": "0.4", - "x": 1.6674, - "y": 6.984 - }, - { - "l": "0.4", - "x": 1.6865, - "y": 7.0132 - }, - { - "l": "0.4", - "x": 1.7057, - "y": 7.043 - }, - { - "l": "0.4", - "x": 1.7248, - "y": 7.073 - }, - { - "l": "0.4", - "x": 1.744, - "y": 7.103 - }, - { - "l": "0.4", - "x": 1.7632, - "y": 7.1328 - }, - { - "l": "0.4", - "x": 1.7823, - "y": 7.1623 - }, - { - "l": "0.4", - "x": 1.8015, - "y": 7.1912 - }, - { - "l": "0.4", - "x": 1.8207, - "y": 7.2196 - }, - { - "l": "0.4", - "x": 1.8398, - "y": 7.2463 - }, - { - "l": "0.4", - "x": 1.859, - "y": 7.2716 - }, - { - "l": "0.4", - "x": 1.8782, - "y": 7.2965 - }, - { - "l": "0.4", - "x": 1.8973, - "y": 7.3212 - }, - { - "l": "0.4", - "x": 1.9165, - "y": 7.3462 - }, - { - "l": "0.4", - "x": 1.9357, - "y": 7.3731 - }, - { - "l": "0.4", - "x": 1.9548, - "y": 7.4006 - }, - { - "l": "0.4", - "x": 1.974, - "y": 7.4284 - }, - { - "l": "0.4", - "x": 1.9932, - "y": 7.4564 - }, - { - "l": "0.4", - "x": 2.0123, - "y": 7.4842 - }, - { - "l": "0.4", - "x": 2.0957, - "y": 7.6 - }, - { - "l": "0.4", - "x": 2.179, - "y": 7.7051 - }, - { - "l": "0.4", - "x": 2.2623, - "y": 7.8226 - }, - { - "l": "0.4", - "x": 2.3457, - "y": 7.9369 - }, - { - "l": "0.4", - "x": 2.429, - "y": 8.0417 - }, - { - "l": "0.4", - "x": 2.5123, - "y": 8.1601 - }, - { - "l": "0.4", - "x": 2.5957, - "y": 8.2762 - }, - { - "l": "0.4", - "x": 2.679, - "y": 8.3833 - }, - { - "l": "0.4", - "x": 2.7623, - "y": 8.5042 - }, - { - "l": "0.4", - "x": 2.8457, - "y": 8.6228 - }, - { - "l": "0.4", - "x": 2.929, - "y": 8.7317 - }, - { - "l": "0.4", - "x": 3.0123, - "y": 8.8544 - }, - { - "l": "0.4", - "x": 3.0957, - "y": 8.9743 - }, - { - "l": "0.4", - "x": 3.179, - "y": 9.0842 - }, - { - "l": "0.4", - "x": 3.2623, - "y": 9.2078 - }, - { - "l": "0.4", - "x": 3.3457, - "y": 9.3281 - }, - { - "l": "0.4", - "x": 3.429, - "y": 9.4381 - }, - { - "l": "0.4", - "x": 3.5123, - "y": 9.561 - }, - { - "l": "0.4", - "x": 3.5957, - "y": 9.6801 - }, - { - "l": "0.4", - "x": 3.679, - "y": 9.7885 - }, - { - "l": "0.4", - "x": 3.7623, - "y": 9.9095 - }, - { - "l": "0.4", - "x": 3.8457, - "y": 10.0266 - }, - { - "l": "0.4", - "x": 3.929, - "y": 10.133 - }, - { - "l": "0.4", - "x": 4.0123, - "y": 10.2517 - }, - { - "l": "0.4", - "x": 4.0957, - "y": 10.3663 - }, - { - "l": "0.4", - "x": 4.179, - "y": 10.4704 - }, - { - "l": "0.4", - "x": 4.2623, - "y": 10.5863 - }, - { - "l": "0.4", - "x": 4.3457, - "y": 10.6984 - }, - { - "l": "0.4", - "x": 4.429, - "y": 10.8002 - }, - { - "l": "0.4", - "x": 4.5123, - "y": 10.9137 - }, - { - "l": "0.4", - "x": 4.5957, - "y": 11.0236 - }, - { - "l": "0.4", - "x": 4.679, - "y": 11.1237 - }, - { - "l": "0.4", - "x": 4.7623, - "y": 11.2357 - }, - { - "l": "0.4", - "x": 4.8457, - "y": 11.3443 - }, - { - "l": "0.4", - "x": 4.929, - "y": 11.4433 - }, - { - "l": "0.4", - "x": 5.0123, - "y": 11.554 - }, - { - "l": "0.4", - "x": 5.0957, - "y": 11.6613 - }, - { - "l": "0.4", - "x": 5.179, - "y": 11.7592 - }, - { - "l": "0.4", - "x": 5.2623, - "y": 11.8689 - }, - { - "l": "0.4", - "x": 5.3457, - "y": 11.9757 - }, - { - "l": "0.4", - "x": 5.429, - "y": 12.0736 - }, - { - "l": "0.4", - "x": 5.5123, - "y": 12.1837 - }, - { - "l": "0.4", - "x": 5.5957, - "y": 12.2912 - }, - { - "l": "0.4", - "x": 5.679, - "y": 12.39 - }, - { - "l": "0.4", - "x": 5.7623, - "y": 12.5013 - }, - { - "l": "0.4", - "x": 5.8457, - "y": 12.6102 - }, - { - "l": "0.4", - "x": 5.929, - "y": 12.7102 - }, - { - "l": "0.4", - "x": 6.0123, - "y": 12.8229 - }, - { - "l": "0.4", - "x": 6.0957, - "y": 12.9331 - }, - { - "l": "0.4", - "x": 6.179, - "y": 13.0346 - }, - { - "l": "0.4", - "x": 6.2623, - "y": 13.1491 - }, - { - "l": "0.4", - "x": 6.3457, - "y": 13.2615 - }, - { - "l": "0.4", - "x": 6.429, - "y": 13.3653 - }, - { - "l": "0.4", - "x": 6.5123, - "y": 13.4832 - }, - { - "l": "0.4", - "x": 6.5957, - "y": 13.5993 - }, - { - "l": "0.4", - "x": 6.679, - "y": 13.707 - }, - { - "l": "0.4", - "x": 6.7623, - "y": 13.8296 - }, - { - "l": "0.4", - "x": 6.8457, - "y": 13.9506 - }, - { - "l": "0.4", - "x": 6.929, - "y": 14.0631 - }, - { - "l": "0.4", - "x": 7.0123, - "y": 14.1912 - }, - { - "l": "0.4", - "x": 7.0957, - "y": 14.3177 - }, - { - "l": "0.4", - "x": 7.179, - "y": 14.4351 - }, - { - "l": "0.4", - "x": 7.2623, - "y": 14.5686 - }, - { - "l": "0.4", - "x": 7.3457, - "y": 14.7003 - }, - { - "l": "0.4", - "x": 7.429, - "y": 14.8222 - }, - { - "l": "0.4", - "x": 7.5123, - "y": 14.9604 - }, - { - "l": "0.4", - "x": 7.5957, - "y": 15.0962 - }, - { - "l": "0.4", - "x": 7.679, - "y": 15.2216 - }, - { - "l": "0.4", - "x": 7.7623, - "y": 15.3634 - }, - { - "l": "0.4", - "x": 7.8457, - "y": 15.5027 - }, - { - "l": "0.4", - "x": 7.929, - "y": 15.6312 - }, - { - "l": "0.4", - "x": 8.0123, - "y": 15.7767 - }, - { - "l": "0.4", - "x": 8.0957, - "y": 15.9194 - }, - { - "l": "0.4", - "x": 8.179, - "y": 16.0512 - }, - { - "l": "0.4", - "x": 8.2623, - "y": 16.2001 - }, - { - "l": "0.4", - "x": 8.3457, - "y": 16.3462 - }, - { - "l": "0.4", - "x": 8.429, - "y": 16.4809 - }, - { - "l": "0.4", - "x": 8.5123, - "y": 16.6328 - }, - { - "l": "0.4", - "x": 8.5957, - "y": 16.7816 - }, - { - "l": "0.4", - "x": 8.679, - "y": 16.9184 - }, - { - "l": "0.4", - "x": 8.7623, - "y": 17.0727 - }, - { - "l": "0.4", - "x": 8.8457, - "y": 17.2236 - }, - { - "l": "0.4", - "x": 8.929, - "y": 17.3621 - }, - { - "l": "0.4", - "x": 9.0123, - "y": 17.5181 - }, - { - "l": "0.4", - "x": 9.0957, - "y": 17.6702 - }, - { - "l": "0.4", - "x": 9.179, - "y": 17.8096 - }, - { - "l": "0.4", - "x": 9.2623, - "y": 17.966 - }, - { - "l": "0.4", - "x": 9.3457, - "y": 18.1182 - }, - { - "l": "0.4", - "x": 9.429, - "y": 18.2573 - }, - { - "l": "0.4", - "x": 9.5123, - "y": 18.413 - }, - { - "l": "0.4", - "x": 9.5957, - "y": 18.5642 - }, - { - "l": "0.4", - "x": 9.679, - "y": 18.7022 - }, - { - "l": "0.4", - "x": 9.7623, - "y": 18.8569 - }, - { - "l": "0.4", - "x": 9.8457, - "y": 19.0073 - }, - { - "l": "0.4", - "x": 9.929, - "y": 19.1452 - }, - { - "l": "0.4", - "x": 10.0123, - "y": 19.3 - }, - { - "l": "0.4", - "x": 10.0957, - "y": 19.4509 - }, - { - "l": "0.4", - "x": 10.179, - "y": 19.5894 - }, - { - "l": "0.4", - "x": 10.2623, - "y": 19.7452 - }, - { - "l": "0.4", - "x": 10.3457, - "y": 19.8973 - }, - { - "l": "0.4", - "x": 10.429, - "y": 20.0372 - }, - { - "l": "0.4", - "x": 10.5123, - "y": 20.1948 - }, - { - "l": "0.4", - "x": 10.5957, - "y": 20.3487 - }, - { - "l": "0.4", - "x": 10.679, - "y": 20.49 - }, - { - "l": "0.4", - "x": 10.7623, - "y": 20.649 - }, - { - "l": "0.4", - "x": 10.8457, - "y": 20.8041 - }, - { - "l": "0.4", - "x": 10.929, - "y": 20.9464 - }, - { - "l": "0.4", - "x": 11.0123, - "y": 21.1063 - }, - { - "l": "0.4", - "x": 11.0957, - "y": 21.2622 - }, - { - "l": "0.4", - "x": 11.179, - "y": 21.4051 - }, - { - "l": "0.4", - "x": 11.2623, - "y": 21.5655 - }, - { - "l": "0.4", - "x": 11.3457, - "y": 21.7213 - }, - { - "l": "0.4", - "x": 11.429, - "y": 21.864 - }, - { - "l": "0.4", - "x": 11.5123, - "y": 22.0238 - }, - { - "l": "0.4", - "x": 11.5957, - "y": 22.1789 - }, - { - "l": "0.4", - "x": 11.679, - "y": 22.3207 - }, - { - "l": "0.4", - "x": 11.7623, - "y": 22.4793 - }, - { - "l": "0.4", - "x": 11.8457, - "y": 22.6334 - }, - { - "l": "0.4", - "x": 11.929, - "y": 22.7741 - }, - { - "l": "0.4", - "x": 12.0123, - "y": 22.9317 - }, - { - "l": "0.4", - "x": 12.0957, - "y": 23.0849 - }, - { - "l": "0.4", - "x": 12.179, - "y": 23.2251 - }, - { - "l": "0.4", - "x": 12.2623, - "y": 23.3823 - }, - { - "l": "0.4", - "x": 12.3457, - "y": 23.5354 - }, - { - "l": "0.4", - "x": 12.429, - "y": 23.6757 - }, - { - "l": "0.4", - "x": 12.5123, - "y": 23.8334 - }, - { - "l": "0.4", - "x": 12.5957, - "y": 23.9875 - }, - { - "l": "0.4", - "x": 12.679, - "y": 24.1288 - }, - { - "l": "0.4", - "x": 12.7623, - "y": 24.288 - }, - { - "l": "0.4", - "x": 12.8457, - "y": 24.4436 - }, - { - "l": "0.4", - "x": 12.929, - "y": 24.5865 - }, - { - "l": "0.4", - "x": 13.0123, - "y": 24.7474 - }, - { - "l": "0.4", - "x": 13.0957, - "y": 24.9046 - }, - { - "l": "0.4", - "x": 13.179, - "y": 25.0488 - }, - { - "l": "0.4", - "x": 13.2623, - "y": 25.2112 - }, - { - "l": "0.4", - "x": 13.3457, - "y": 25.3695 - }, - { - "l": "0.4", - "x": 13.429, - "y": 25.5145 - }, - { - "l": "0.4", - "x": 13.5123, - "y": 25.6772 - }, - { - "l": "0.4", - "x": 13.5957, - "y": 25.8354 - }, - { - "l": "0.4", - "x": 13.679, - "y": 25.9799 - }, - { - "l": "0.4", - "x": 13.7623, - "y": 26.1417 - }, - { - "l": "0.4", - "x": 13.8457, - "y": 26.2988 - }, - { - "l": "0.4", - "x": 13.929, - "y": 26.442 - }, - { - "l": "0.4", - "x": 14.0123, - "y": 26.6022 - }, - { - "l": "0.4", - "x": 14.0957, - "y": 26.7574 - }, - { - "l": "0.4", - "x": 14.179, - "y": 26.8988 - }, - { - "l": "0.4", - "x": 14.2623, - "y": 27.0567 - }, - { - "l": "0.4", - "x": 14.3457, - "y": 27.2096 - }, - { - "l": "0.4", - "x": 14.429, - "y": 27.3485 - }, - { - "l": "0.4", - "x": 14.5123, - "y": 27.5035 - }, - { - "l": "0.4", - "x": 14.5957, - "y": 27.6532 - }, - { - "l": "0.4", - "x": 14.679, - "y": 27.7894 - }, - { - "l": "0.4", - "x": 14.7623, - "y": 27.941 - }, - { - "l": "0.4", - "x": 14.8457, - "y": 28.0874 - }, - { - "l": "0.4", - "x": 14.929, - "y": 28.2202 - }, - { - "l": "0.4", - "x": 15.0123, - "y": 28.3679 - }, - { - "l": "0.4", - "x": 15.0957, - "y": 28.5106 - }, - { - "l": "0.4", - "x": 15.179, - "y": 28.6397 - }, - { - "l": "0.4", - "x": 15.2623, - "y": 28.7832 - }, - { - "l": "0.4", - "x": 15.3457, - "y": 28.9214 - }, - { - "l": "0.4", - "x": 15.429, - "y": 29.046 - }, - { - "l": "0.4", - "x": 15.5123, - "y": 29.1849 - }, - { - "l": "0.4", - "x": 15.5957, - "y": 29.3197 - }, - { - "l": "0.4", - "x": 15.679, - "y": 29.4409 - }, - { - "l": "0.4", - "x": 15.7623, - "y": 29.5754 - }, - { - "l": "0.4", - "x": 15.8457, - "y": 29.7049 - }, - { - "l": "0.4", - "x": 15.929, - "y": 29.822 - }, - { - "l": "0.4", - "x": 16.0123, - "y": 29.9521 - }, - { - "l": "0.4", - "x": 16.0957, - "y": 30.0772 - }, - { - "l": "0.4", - "x": 16.179, - "y": 30.1904 - }, - { - "l": "0.4", - "x": 16.2623, - "y": 30.3163 - }, - { - "l": "0.4", - "x": 16.3457, - "y": 30.4378 - }, - { - "l": "0.4", - "x": 16.429, - "y": 30.5477 - }, - { - "l": "0.4", - "x": 16.5123, - "y": 30.6698 - }, - { - "l": "0.4", - "x": 16.5957, - "y": 30.7876 - }, - { - "l": "0.4", - "x": 16.679, - "y": 30.8945 - }, - { - "l": "0.4", - "x": 16.7623, - "y": 31.0132 - }, - { - "l": "0.4", - "x": 16.8457, - "y": 31.1278 - }, - { - "l": "0.4", - "x": 16.929, - "y": 31.2317 - }, - { - "l": "0.4", - "x": 17.0123, - "y": 31.3474 - }, - { - "l": "0.4", - "x": 17.0957, - "y": 31.459 - }, - { - "l": "0.4", - "x": 17.179, - "y": 31.5606 - }, - { - "l": "0.4", - "x": 17.2623, - "y": 31.6735 - }, - { - "l": "0.4", - "x": 17.3457, - "y": 31.7828 - }, - { - "l": "0.4", - "x": 17.429, - "y": 31.8819 - }, - { - "l": "0.4", - "x": 17.5123, - "y": 31.9924 - }, - { - "l": "0.4", - "x": 17.5957, - "y": 32.0994 - }, - { - "l": "0.4", - "x": 17.679, - "y": 32.1965 - }, - { - "l": "0.4", - "x": 17.7623, - "y": 32.3045 - }, - { - "l": "0.4", - "x": 17.8457, - "y": 32.4095 - }, - { - "l": "0.4", - "x": 17.929, - "y": 32.505 - }, - { - "l": "0.4", - "x": 18.0123, - "y": 32.6113 - }, - { - "l": "0.4", - "x": 18.0957, - "y": 32.7138 - }, - { - "l": "0.4", - "x": 18.179, - "y": 32.8075 - }, - { - "l": "0.4", - "x": 18.2623, - "y": 32.9126 - }, - { - "l": "0.4", - "x": 18.3457, - "y": 33.0139 - }, - { - "l": "0.4", - "x": 18.429, - "y": 33.1061 - }, - { - "l": "0.4", - "x": 18.5123, - "y": 33.2094 - }, - { - "l": "0.4", - "x": 18.5957, - "y": 33.3093 - }, - { - "l": "0.4", - "x": 18.679, - "y": 33.3998 - }, - { - "l": "0.4", - "x": 18.7623, - "y": 33.5012 - }, - { - "l": "0.4", - "x": 18.8457, - "y": 33.6001 - }, - { - "l": "0.4", - "x": 18.929, - "y": 33.6906 - }, - { - "l": "0.4", - "x": 19.0123, - "y": 33.7919 - }, - { - "l": "0.4", - "x": 19.0957, - "y": 33.8896 - }, - { - "l": "0.4", - "x": 19.179, - "y": 33.9785 - }, - { - "l": "0.4", - "x": 19.2623, - "y": 34.0761 - }, - { - "l": "0.4", - "x": 19.3457, - "y": 34.1711 - }, - { - "l": "0.4", - "x": 19.429, - "y": 34.2582 - }, - { - "l": "0.4", - "x": 19.5123, - "y": 34.3561 - }, - { - "l": "0.4", - "x": 19.5957, - "y": 34.4514 - }, - { - "l": "0.4", - "x": 19.679, - "y": 34.5387 - }, - { - "l": "0.4", - "x": 19.7623, - "y": 34.6369 - }, - { - "l": "0.4", - "x": 19.8457, - "y": 34.7325 - }, - { - "l": "0.4", - "x": 19.929, - "y": 34.8204 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 0.0, - "y": 2.1901 - }, - { - "l": "2.0", - "x": 0.0192, - "y": 2.2907 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 2.3914 - }, - { - "l": "2.0", - "x": 0.0575, - "y": 2.4923 - }, - { - "l": "2.0", - "x": 0.0767, - "y": 2.5933 - }, - { - "l": "2.0", - "x": 0.0958, - "y": 2.6868 - }, - { - "l": "2.0", - "x": 0.115, - "y": 2.7775 - }, - { - "l": "2.0", - "x": 0.1342, - "y": 2.8679 - }, - { - "l": "2.0", - "x": 0.1533, - "y": 2.9591 - }, - { - "l": "2.0", - "x": 0.1725, - "y": 3.053 - }, - { - "l": "2.0", - "x": 0.1916, - "y": 3.1547 - }, - { - "l": "2.0", - "x": 0.2108, - "y": 3.2583 - }, - { - "l": "2.0", - "x": 0.23, - "y": 3.3629 - }, - { - "l": "2.0", - "x": 0.2491, - "y": 3.4679 - }, - { - "l": "2.0", - "x": 0.2683, - "y": 3.5724 - }, - { - "l": "2.0", - "x": 0.2875, - "y": 3.6757 - }, - { - "l": "2.0", - "x": 0.3066, - "y": 3.7773 - }, - { - "l": "2.0", - "x": 0.3258, - "y": 3.8763 - }, - { - "l": "2.0", - "x": 0.345, - "y": 3.9678 - }, - { - "l": "2.0", - "x": 0.3641, - "y": 4.0551 - }, - { - "l": "2.0", - "x": 0.3833, - "y": 4.1405 - }, - { - "l": "2.0", - "x": 0.4025, - "y": 4.2249 - }, - { - "l": "2.0", - "x": 0.4216, - "y": 4.3099 - }, - { - "l": "2.0", - "x": 0.4408, - "y": 4.4003 - }, - { - "l": "2.0", - "x": 0.46, - "y": 4.4907 - }, - { - "l": "2.0", - "x": 0.4791, - "y": 4.5806 - }, - { - "l": "2.0", - "x": 0.4983, - "y": 4.6692 - }, - { - "l": "2.0", - "x": 0.5175, - "y": 4.7553 - }, - { - "l": "2.0", - "x": 0.5366, - "y": 4.839 - }, - { - "l": "2.0", - "x": 0.5558, - "y": 4.9201 - }, - { - "l": "2.0", - "x": 0.5749, - "y": 4.9983 - }, - { - "l": "2.0", - "x": 0.5941, - "y": 5.0699 - }, - { - "l": "2.0", - "x": 0.6133, - "y": 5.1375 - }, - { - "l": "2.0", - "x": 0.6324, - "y": 5.2029 - }, - { - "l": "2.0", - "x": 0.6516, - "y": 5.2671 - }, - { - "l": "2.0", - "x": 0.6708, - "y": 5.331 - }, - { - "l": "2.0", - "x": 0.6899, - "y": 5.3994 - }, - { - "l": "2.0", - "x": 0.7091, - "y": 5.4676 - }, - { - "l": "2.0", - "x": 0.7283, - "y": 5.5353 - }, - { - "l": "2.0", - "x": 0.7474, - "y": 5.602 - }, - { - "l": "2.0", - "x": 0.7666, - "y": 5.6671 - }, - { - "l": "2.0", - "x": 0.7858, - "y": 5.7304 - }, - { - "l": "2.0", - "x": 0.8049, - "y": 5.7918 - }, - { - "l": "2.0", - "x": 0.8241, - "y": 5.851 - }, - { - "l": "2.0", - "x": 0.8433, - "y": 5.9056 - }, - { - "l": "2.0", - "x": 0.8624, - "y": 5.957 - }, - { - "l": "2.0", - "x": 0.8816, - "y": 6.0068 - }, - { - "l": "2.0", - "x": 0.9008, - "y": 6.0558 - }, - { - "l": "2.0", - "x": 0.9199, - "y": 6.1045 - }, - { - "l": "2.0", - "x": 0.9391, - "y": 6.1567 - }, - { - "l": "2.0", - "x": 0.9582, - "y": 6.209 - }, - { - "l": "2.0", - "x": 0.9774, - "y": 6.261 - }, - { - "l": "2.0", - "x": 0.9966, - "y": 6.3123 - }, - { - "l": "2.0", - "x": 1.0157, - "y": 6.3626 - }, - { - "l": "2.0", - "x": 1.0349, - "y": 6.4116 - }, - { - "l": "2.0", - "x": 1.0541, - "y": 6.4593 - }, - { - "l": "2.0", - "x": 1.0732, - "y": 6.5055 - }, - { - "l": "2.0", - "x": 1.0924, - "y": 6.5484 - }, - { - "l": "2.0", - "x": 1.1116, - "y": 6.5887 - }, - { - "l": "2.0", - "x": 1.1307, - "y": 6.6281 - }, - { - "l": "2.0", - "x": 1.1499, - "y": 6.6669 - }, - { - "l": "2.0", - "x": 1.1691, - "y": 6.7058 - }, - { - "l": "2.0", - "x": 1.1882, - "y": 6.7475 - }, - { - "l": "2.0", - "x": 1.2074, - "y": 6.7896 - }, - { - "l": "2.0", - "x": 1.2266, - "y": 6.8318 - }, - { - "l": "2.0", - "x": 1.2457, - "y": 6.8737 - }, - { - "l": "2.0", - "x": 1.2649, - "y": 6.915 - }, - { - "l": "2.0", - "x": 1.2841, - "y": 6.9556 - }, - { - "l": "2.0", - "x": 1.3032, - "y": 6.9954 - }, - { - "l": "2.0", - "x": 1.3224, - "y": 7.034 - }, - { - "l": "2.0", - "x": 1.3415, - "y": 7.0702 - }, - { - "l": "2.0", - "x": 1.3607, - "y": 7.1043 - }, - { - "l": "2.0", - "x": 1.3799, - "y": 7.1377 - }, - { - "l": "2.0", - "x": 1.399, - "y": 7.1707 - }, - { - "l": "2.0", - "x": 1.4182, - "y": 7.2039 - }, - { - "l": "2.0", - "x": 1.4374, - "y": 7.2396 - }, - { - "l": "2.0", - "x": 1.4565, - "y": 7.2757 - }, - { - "l": "2.0", - "x": 1.4757, - "y": 7.312 - }, - { - "l": "2.0", - "x": 1.4949, - "y": 7.3481 - }, - { - "l": "2.0", - "x": 1.514, - "y": 7.3839 - }, - { - "l": "2.0", - "x": 1.5332, - "y": 7.4191 - }, - { - "l": "2.0", - "x": 1.5524, - "y": 7.4536 - }, - { - "l": "2.0", - "x": 1.5715, - "y": 7.4873 - }, - { - "l": "2.0", - "x": 1.5907, - "y": 7.5189 - }, - { - "l": "2.0", - "x": 1.6099, - "y": 7.5487 - }, - { - "l": "2.0", - "x": 1.629, - "y": 7.5779 - }, - { - "l": "2.0", - "x": 1.6482, - "y": 7.6068 - }, - { - "l": "2.0", - "x": 1.6674, - "y": 7.636 - }, - { - "l": "2.0", - "x": 1.6865, - "y": 7.6673 - }, - { - "l": "2.0", - "x": 1.7057, - "y": 7.6992 - }, - { - "l": "2.0", - "x": 1.7248, - "y": 7.7313 - }, - { - "l": "2.0", - "x": 1.744, - "y": 7.7634 - }, - { - "l": "2.0", - "x": 1.7632, - "y": 7.7952 - }, - { - "l": "2.0", - "x": 1.7823, - "y": 7.8267 - }, - { - "l": "2.0", - "x": 1.8015, - "y": 7.8577 - }, - { - "l": "2.0", - "x": 1.8207, - "y": 7.8881 - }, - { - "l": "2.0", - "x": 1.8398, - "y": 7.9167 - }, - { - "l": "2.0", - "x": 1.859, - "y": 7.9438 - }, - { - "l": "2.0", - "x": 1.8782, - "y": 7.9704 - }, - { - "l": "2.0", - "x": 1.8973, - "y": 7.9969 - }, - { - "l": "2.0", - "x": 1.9165, - "y": 8.0237 - }, - { - "l": "2.0", - "x": 1.9357, - "y": 8.0524 - }, - { - "l": "2.0", - "x": 1.9548, - "y": 8.0819 - }, - { - "l": "2.0", - "x": 1.974, - "y": 8.1117 - }, - { - "l": "2.0", - "x": 1.9932, - "y": 8.1416 - }, - { - "l": "2.0", - "x": 2.0123, - "y": 8.1714 - }, - { - "l": "2.0", - "x": 2.0957, - "y": 8.2955 - }, - { - "l": "2.0", - "x": 2.179, - "y": 8.4081 - }, - { - "l": "2.0", - "x": 2.2623, - "y": 8.5341 - }, - { - "l": "2.0", - "x": 2.3457, - "y": 8.6567 - }, - { - "l": "2.0", - "x": 2.429, - "y": 8.7693 - }, - { - "l": "2.0", - "x": 2.5123, - "y": 8.8964 - }, - { - "l": "2.0", - "x": 2.5957, - "y": 9.0211 - }, - { - "l": "2.0", - "x": 2.679, - "y": 9.1362 - }, - { - "l": "2.0", - "x": 2.7623, - "y": 9.2664 - }, - { - "l": "2.0", - "x": 2.8457, - "y": 9.3939 - }, - { - "l": "2.0", - "x": 2.929, - "y": 9.5113 - }, - { - "l": "2.0", - "x": 3.0123, - "y": 9.6436 - }, - { - "l": "2.0", - "x": 3.0957, - "y": 9.7729 - }, - { - "l": "2.0", - "x": 3.179, - "y": 9.8915 - }, - { - "l": "2.0", - "x": 3.2623, - "y": 10.025 - }, - { - "l": "2.0", - "x": 3.3457, - "y": 10.1552 - }, - { - "l": "2.0", - "x": 3.429, - "y": 10.2741 - }, - { - "l": "2.0", - "x": 3.5123, - "y": 10.4073 - }, - { - "l": "2.0", - "x": 3.5957, - "y": 10.5364 - }, - { - "l": "2.0", - "x": 3.679, - "y": 10.654 - }, - { - "l": "2.0", - "x": 3.7623, - "y": 10.7854 - }, - { - "l": "2.0", - "x": 3.8457, - "y": 10.9127 - }, - { - "l": "2.0", - "x": 3.929, - "y": 11.0286 - }, - { - "l": "2.0", - "x": 4.0123, - "y": 11.1579 - }, - { - "l": "2.0", - "x": 4.0957, - "y": 11.283 - }, - { - "l": "2.0", - "x": 4.179, - "y": 11.3967 - }, - { - "l": "2.0", - "x": 4.2623, - "y": 11.5235 - }, - { - "l": "2.0", - "x": 4.3457, - "y": 11.6462 - }, - { - "l": "2.0", - "x": 4.429, - "y": 11.7577 - }, - { - "l": "2.0", - "x": 4.5123, - "y": 11.8824 - }, - { - "l": "2.0", - "x": 4.5957, - "y": 12.0032 - }, - { - "l": "2.0", - "x": 4.679, - "y": 12.1135 - }, - { - "l": "2.0", - "x": 4.7623, - "y": 12.2369 - }, - { - "l": "2.0", - "x": 4.8457, - "y": 12.3569 - }, - { - "l": "2.0", - "x": 4.929, - "y": 12.4664 - }, - { - "l": "2.0", - "x": 5.0123, - "y": 12.589 - }, - { - "l": "2.0", - "x": 5.0957, - "y": 12.708 - }, - { - "l": "2.0", - "x": 5.179, - "y": 12.8168 - }, - { - "l": "2.0", - "x": 5.2623, - "y": 12.939 - }, - { - "l": "2.0", - "x": 5.3457, - "y": 13.0581 - }, - { - "l": "2.0", - "x": 5.429, - "y": 13.1674 - }, - { - "l": "2.0", - "x": 5.5123, - "y": 13.2905 - }, - { - "l": "2.0", - "x": 5.5957, - "y": 13.4111 - }, - { - "l": "2.0", - "x": 5.679, - "y": 13.522 - }, - { - "l": "2.0", - "x": 5.7623, - "y": 13.6473 - }, - { - "l": "2.0", - "x": 5.8457, - "y": 13.77 - }, - { - "l": "2.0", - "x": 5.929, - "y": 13.883 - }, - { - "l": "2.0", - "x": 6.0123, - "y": 14.0105 - }, - { - "l": "2.0", - "x": 6.0957, - "y": 14.1354 - }, - { - "l": "2.0", - "x": 6.179, - "y": 14.2506 - }, - { - "l": "2.0", - "x": 6.2623, - "y": 14.3809 - }, - { - "l": "2.0", - "x": 6.3457, - "y": 14.509 - }, - { - "l": "2.0", - "x": 6.429, - "y": 14.6275 - }, - { - "l": "2.0", - "x": 6.5123, - "y": 14.7622 - }, - { - "l": "2.0", - "x": 6.5957, - "y": 14.8952 - }, - { - "l": "2.0", - "x": 6.679, - "y": 15.0188 - }, - { - "l": "2.0", - "x": 6.7623, - "y": 15.1596 - }, - { - "l": "2.0", - "x": 6.8457, - "y": 15.2988 - }, - { - "l": "2.0", - "x": 6.929, - "y": 15.4284 - }, - { - "l": "2.0", - "x": 7.0123, - "y": 15.5763 - }, - { - "l": "2.0", - "x": 7.0957, - "y": 15.7225 - }, - { - "l": "2.0", - "x": 7.179, - "y": 15.8585 - }, - { - "l": "2.0", - "x": 7.2623, - "y": 16.0133 - }, - { - "l": "2.0", - "x": 7.3457, - "y": 16.1663 - }, - { - "l": "2.0", - "x": 7.429, - "y": 16.3082 - }, - { - "l": "2.0", - "x": 7.5123, - "y": 16.4694 - }, - { - "l": "2.0", - "x": 7.5957, - "y": 16.6281 - }, - { - "l": "2.0", - "x": 7.679, - "y": 16.775 - }, - { - "l": "2.0", - "x": 7.7623, - "y": 16.9414 - }, - { - "l": "2.0", - "x": 7.8457, - "y": 17.1052 - }, - { - "l": "2.0", - "x": 7.929, - "y": 17.2567 - }, - { - "l": "2.0", - "x": 8.0123, - "y": 17.4285 - }, - { - "l": "2.0", - "x": 8.0957, - "y": 17.5976 - }, - { - "l": "2.0", - "x": 8.179, - "y": 17.7539 - }, - { - "l": "2.0", - "x": 8.2623, - "y": 17.9311 - }, - { - "l": "2.0", - "x": 8.3457, - "y": 18.1053 - }, - { - "l": "2.0", - "x": 8.429, - "y": 18.2662 - }, - { - "l": "2.0", - "x": 8.5123, - "y": 18.4483 - }, - { - "l": "2.0", - "x": 8.5957, - "y": 18.627 - }, - { - "l": "2.0", - "x": 8.679, - "y": 18.7918 - }, - { - "l": "2.0", - "x": 8.7623, - "y": 18.9781 - }, - { - "l": "2.0", - "x": 8.8457, - "y": 19.1607 - }, - { - "l": "2.0", - "x": 8.929, - "y": 19.3288 - }, - { - "l": "2.0", - "x": 9.0123, - "y": 19.5186 - }, - { - "l": "2.0", - "x": 9.0957, - "y": 19.7042 - }, - { - "l": "2.0", - "x": 9.179, - "y": 19.8747 - }, - { - "l": "2.0", - "x": 9.2623, - "y": 20.0668 - }, - { - "l": "2.0", - "x": 9.3457, - "y": 20.2541 - }, - { - "l": "2.0", - "x": 9.429, - "y": 20.4259 - }, - { - "l": "2.0", - "x": 9.5123, - "y": 20.6188 - }, - { - "l": "2.0", - "x": 9.5957, - "y": 20.8067 - }, - { - "l": "2.0", - "x": 9.679, - "y": 20.9788 - }, - { - "l": "2.0", - "x": 9.7623, - "y": 21.1723 - }, - { - "l": "2.0", - "x": 9.8457, - "y": 21.3611 - }, - { - "l": "2.0", - "x": 9.929, - "y": 21.5346 - }, - { - "l": "2.0", - "x": 10.0123, - "y": 21.73 - }, - { - "l": "2.0", - "x": 10.0957, - "y": 21.921 - }, - { - "l": "2.0", - "x": 10.179, - "y": 22.0966 - }, - { - "l": "2.0", - "x": 10.2623, - "y": 22.2948 - }, - { - "l": "2.0", - "x": 10.3457, - "y": 22.4887 - }, - { - "l": "2.0", - "x": 10.429, - "y": 22.6673 - }, - { - "l": "2.0", - "x": 10.5123, - "y": 22.8689 - }, - { - "l": "2.0", - "x": 10.5957, - "y": 23.0663 - }, - { - "l": "2.0", - "x": 10.679, - "y": 23.2478 - }, - { - "l": "2.0", - "x": 10.7623, - "y": 23.4525 - }, - { - "l": "2.0", - "x": 10.8457, - "y": 23.6525 - }, - { - "l": "2.0", - "x": 10.929, - "y": 23.8363 - }, - { - "l": "2.0", - "x": 11.0123, - "y": 24.0432 - }, - { - "l": "2.0", - "x": 11.0957, - "y": 24.2453 - }, - { - "l": "2.0", - "x": 11.179, - "y": 24.4306 - }, - { - "l": "2.0", - "x": 11.2623, - "y": 24.639 - }, - { - "l": "2.0", - "x": 11.3457, - "y": 24.8418 - }, - { - "l": "2.0", - "x": 11.429, - "y": 25.0274 - }, - { - "l": "2.0", - "x": 11.5123, - "y": 25.2355 - }, - { - "l": "2.0", - "x": 11.5957, - "y": 25.4378 - }, - { - "l": "2.0", - "x": 11.679, - "y": 25.6225 - }, - { - "l": "2.0", - "x": 11.7623, - "y": 25.8292 - }, - { - "l": "2.0", - "x": 11.8457, - "y": 26.0299 - }, - { - "l": "2.0", - "x": 11.929, - "y": 26.213 - }, - { - "l": "2.0", - "x": 12.0123, - "y": 26.4178 - }, - { - "l": "2.0", - "x": 12.0957, - "y": 26.6166 - }, - { - "l": "2.0", - "x": 12.179, - "y": 26.7981 - }, - { - "l": "2.0", - "x": 12.2623, - "y": 27.0011 - }, - { - "l": "2.0", - "x": 12.3457, - "y": 27.1984 - }, - { - "l": "2.0", - "x": 12.429, - "y": 27.3785 - }, - { - "l": "2.0", - "x": 12.5123, - "y": 27.5804 - }, - { - "l": "2.0", - "x": 12.5957, - "y": 27.7766 - }, - { - "l": "2.0", - "x": 12.679, - "y": 27.956 - }, - { - "l": "2.0", - "x": 12.7623, - "y": 28.1571 - }, - { - "l": "2.0", - "x": 12.8457, - "y": 28.3527 - }, - { - "l": "2.0", - "x": 12.929, - "y": 28.5315 - }, - { - "l": "2.0", - "x": 13.0123, - "y": 28.7318 - }, - { - "l": "2.0", - "x": 13.0957, - "y": 28.9266 - }, - { - "l": "2.0", - "x": 13.179, - "y": 29.1044 - }, - { - "l": "2.0", - "x": 13.2623, - "y": 29.3036 - }, - { - "l": "2.0", - "x": 13.3457, - "y": 29.4969 - }, - { - "l": "2.0", - "x": 13.429, - "y": 29.6731 - }, - { - "l": "2.0", - "x": 13.5123, - "y": 29.8699 - }, - { - "l": "2.0", - "x": 13.5957, - "y": 30.0605 - }, - { - "l": "2.0", - "x": 13.679, - "y": 30.2337 - }, - { - "l": "2.0", - "x": 13.7623, - "y": 30.4269 - }, - { - "l": "2.0", - "x": 13.8457, - "y": 30.6138 - }, - { - "l": "2.0", - "x": 13.929, - "y": 30.7834 - }, - { - "l": "2.0", - "x": 14.0123, - "y": 30.9723 - }, - { - "l": "2.0", - "x": 14.0957, - "y": 31.1547 - }, - { - "l": "2.0", - "x": 14.179, - "y": 31.3201 - }, - { - "l": "2.0", - "x": 14.2623, - "y": 31.5041 - }, - { - "l": "2.0", - "x": 14.3457, - "y": 31.6816 - }, - { - "l": "2.0", - "x": 14.429, - "y": 31.8422 - }, - { - "l": "2.0", - "x": 14.5123, - "y": 32.0208 - }, - { - "l": "2.0", - "x": 14.5957, - "y": 32.1925 - }, - { - "l": "2.0", - "x": 14.679, - "y": 32.3484 - }, - { - "l": "2.0", - "x": 14.7623, - "y": 32.5211 - }, - { - "l": "2.0", - "x": 14.8457, - "y": 32.6873 - }, - { - "l": "2.0", - "x": 14.929, - "y": 32.8376 - }, - { - "l": "2.0", - "x": 15.0123, - "y": 33.004 - }, - { - "l": "2.0", - "x": 15.0957, - "y": 33.1644 - }, - { - "l": "2.0", - "x": 15.179, - "y": 33.309 - }, - { - "l": "2.0", - "x": 15.2623, - "y": 33.4693 - }, - { - "l": "2.0", - "x": 15.3457, - "y": 33.6232 - }, - { - "l": "2.0", - "x": 15.429, - "y": 33.7614 - }, - { - "l": "2.0", - "x": 15.5123, - "y": 33.9152 - }, - { - "l": "2.0", - "x": 15.5957, - "y": 34.0643 - }, - { - "l": "2.0", - "x": 15.679, - "y": 34.1978 - }, - { - "l": "2.0", - "x": 15.7623, - "y": 34.3458 - }, - { - "l": "2.0", - "x": 15.8457, - "y": 34.4878 - }, - { - "l": "2.0", - "x": 15.929, - "y": 34.616 - }, - { - "l": "2.0", - "x": 16.0123, - "y": 34.7581 - }, - { - "l": "2.0", - "x": 16.0957, - "y": 34.8946 - }, - { - "l": "2.0", - "x": 16.179, - "y": 35.0178 - }, - { - "l": "2.0", - "x": 16.2623, - "y": 35.1545 - }, - { - "l": "2.0", - "x": 16.3457, - "y": 35.2863 - }, - { - "l": "2.0", - "x": 16.429, - "y": 35.4052 - }, - { - "l": "2.0", - "x": 16.5123, - "y": 35.5372 - }, - { - "l": "2.0", - "x": 16.5957, - "y": 35.6643 - }, - { - "l": "2.0", - "x": 16.679, - "y": 35.7794 - }, - { - "l": "2.0", - "x": 16.7623, - "y": 35.9071 - }, - { - "l": "2.0", - "x": 16.8457, - "y": 36.0301 - }, - { - "l": "2.0", - "x": 16.929, - "y": 36.1415 - }, - { - "l": "2.0", - "x": 17.0123, - "y": 36.2655 - }, - { - "l": "2.0", - "x": 17.0957, - "y": 36.3848 - }, - { - "l": "2.0", - "x": 17.179, - "y": 36.4933 - }, - { - "l": "2.0", - "x": 17.2623, - "y": 36.6138 - }, - { - "l": "2.0", - "x": 17.3457, - "y": 36.7302 - }, - { - "l": "2.0", - "x": 17.429, - "y": 36.8357 - }, - { - "l": "2.0", - "x": 17.5123, - "y": 36.9532 - }, - { - "l": "2.0", - "x": 17.5957, - "y": 37.0669 - }, - { - "l": "2.0", - "x": 17.679, - "y": 37.1699 - }, - { - "l": "2.0", - "x": 17.7623, - "y": 37.2842 - }, - { - "l": "2.0", - "x": 17.8457, - "y": 37.3955 - }, - { - "l": "2.0", - "x": 17.929, - "y": 37.4965 - }, - { - "l": "2.0", - "x": 18.0123, - "y": 37.6089 - }, - { - "l": "2.0", - "x": 18.0957, - "y": 37.7172 - }, - { - "l": "2.0", - "x": 18.179, - "y": 37.816 - }, - { - "l": "2.0", - "x": 18.2623, - "y": 37.9269 - }, - { - "l": "2.0", - "x": 18.3457, - "y": 38.0336 - }, - { - "l": "2.0", - "x": 18.429, - "y": 38.1306 - }, - { - "l": "2.0", - "x": 18.5123, - "y": 38.2393 - }, - { - "l": "2.0", - "x": 18.5957, - "y": 38.3443 - }, - { - "l": "2.0", - "x": 18.679, - "y": 38.4392 - }, - { - "l": "2.0", - "x": 18.7623, - "y": 38.5457 - }, - { - "l": "2.0", - "x": 18.8457, - "y": 38.6494 - }, - { - "l": "2.0", - "x": 18.929, - "y": 38.7444 - }, - { - "l": "2.0", - "x": 19.0123, - "y": 38.8506 - }, - { - "l": "2.0", - "x": 19.0957, - "y": 38.9528 - }, - { - "l": "2.0", - "x": 19.179, - "y": 39.0459 - }, - { - "l": "2.0", - "x": 19.2623, - "y": 39.1478 - }, - { - "l": "2.0", - "x": 19.3457, - "y": 39.247 - }, - { - "l": "2.0", - "x": 19.429, - "y": 39.3379 - }, - { - "l": "2.0", - "x": 19.5123, - "y": 39.44 - }, - { - "l": "2.0", - "x": 19.5957, - "y": 39.5395 - }, - { - "l": "2.0", - "x": 19.679, - "y": 39.6307 - }, - { - "l": "2.0", - "x": 19.7623, - "y": 39.733 - }, - { - "l": "2.0", - "x": 19.8457, - "y": 39.8328 - }, - { - "l": "2.0", - "x": 19.929, - "y": 39.9244 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 0.0, - "y": 2.4407 - }, - { - "l": "9.0", - "x": 0.0192, - "y": 2.5517 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 2.6627 - }, - { - "l": "9.0", - "x": 0.0575, - "y": 2.7739 - }, - { - "l": "9.0", - "x": 0.0767, - "y": 2.8852 - }, - { - "l": "9.0", - "x": 0.0958, - "y": 2.9881 - }, - { - "l": "9.0", - "x": 0.115, - "y": 3.0878 - }, - { - "l": "9.0", - "x": 0.1342, - "y": 3.1871 - }, - { - "l": "9.0", - "x": 0.1533, - "y": 3.2873 - }, - { - "l": "9.0", - "x": 0.1725, - "y": 3.3905 - }, - { - "l": "9.0", - "x": 0.1916, - "y": 3.5021 - }, - { - "l": "9.0", - "x": 0.2108, - "y": 3.6157 - }, - { - "l": "9.0", - "x": 0.23, - "y": 3.7303 - }, - { - "l": "9.0", - "x": 0.2491, - "y": 3.8453 - }, - { - "l": "9.0", - "x": 0.2683, - "y": 3.9597 - }, - { - "l": "9.0", - "x": 0.2875, - "y": 4.0728 - }, - { - "l": "9.0", - "x": 0.3066, - "y": 4.1838 - }, - { - "l": "9.0", - "x": 0.3258, - "y": 4.292 - }, - { - "l": "9.0", - "x": 0.345, - "y": 4.3919 - }, - { - "l": "9.0", - "x": 0.3641, - "y": 4.4873 - }, - { - "l": "9.0", - "x": 0.3833, - "y": 4.5804 - }, - { - "l": "9.0", - "x": 0.4025, - "y": 4.6725 - }, - { - "l": "9.0", - "x": 0.4216, - "y": 4.7651 - }, - { - "l": "9.0", - "x": 0.4408, - "y": 4.8635 - }, - { - "l": "9.0", - "x": 0.46, - "y": 4.962 - }, - { - "l": "9.0", - "x": 0.4791, - "y": 5.0597 - }, - { - "l": "9.0", - "x": 0.4983, - "y": 5.156 - }, - { - "l": "9.0", - "x": 0.5175, - "y": 5.2496 - }, - { - "l": "9.0", - "x": 0.5366, - "y": 5.3405 - }, - { - "l": "9.0", - "x": 0.5558, - "y": 5.4286 - }, - { - "l": "9.0", - "x": 0.5749, - "y": 5.5133 - }, - { - "l": "9.0", - "x": 0.5941, - "y": 5.591 - }, - { - "l": "9.0", - "x": 0.6133, - "y": 5.6642 - }, - { - "l": "9.0", - "x": 0.6324, - "y": 5.7351 - }, - { - "l": "9.0", - "x": 0.6516, - "y": 5.8045 - }, - { - "l": "9.0", - "x": 0.6708, - "y": 5.8738 - }, - { - "l": "9.0", - "x": 0.6899, - "y": 5.9477 - }, - { - "l": "9.0", - "x": 0.7091, - "y": 6.0215 - }, - { - "l": "9.0", - "x": 0.7283, - "y": 6.0947 - }, - { - "l": "9.0", - "x": 0.7474, - "y": 6.1668 - }, - { - "l": "9.0", - "x": 0.7666, - "y": 6.237 - }, - { - "l": "9.0", - "x": 0.7858, - "y": 6.3054 - }, - { - "l": "9.0", - "x": 0.8049, - "y": 6.3717 - }, - { - "l": "9.0", - "x": 0.8241, - "y": 6.4356 - }, - { - "l": "9.0", - "x": 0.8433, - "y": 6.4945 - }, - { - "l": "9.0", - "x": 0.8624, - "y": 6.5499 - }, - { - "l": "9.0", - "x": 0.8816, - "y": 6.6036 - }, - { - "l": "9.0", - "x": 0.9008, - "y": 6.6564 - }, - { - "l": "9.0", - "x": 0.9199, - "y": 6.7089 - }, - { - "l": "9.0", - "x": 0.9391, - "y": 6.7652 - }, - { - "l": "9.0", - "x": 0.9582, - "y": 6.8215 - }, - { - "l": "9.0", - "x": 0.9774, - "y": 6.8774 - }, - { - "l": "9.0", - "x": 0.9966, - "y": 6.9328 - }, - { - "l": "9.0", - "x": 1.0157, - "y": 6.9868 - }, - { - "l": "9.0", - "x": 1.0349, - "y": 7.0396 - }, - { - "l": "9.0", - "x": 1.0541, - "y": 7.091 - }, - { - "l": "9.0", - "x": 1.0732, - "y": 7.1407 - }, - { - "l": "9.0", - "x": 1.0924, - "y": 7.1868 - }, - { - "l": "9.0", - "x": 1.1116, - "y": 7.2302 - }, - { - "l": "9.0", - "x": 1.1307, - "y": 7.2726 - }, - { - "l": "9.0", - "x": 1.1499, - "y": 7.3143 - }, - { - "l": "9.0", - "x": 1.1691, - "y": 7.3561 - }, - { - "l": "9.0", - "x": 1.1882, - "y": 7.4011 - }, - { - "l": "9.0", - "x": 1.2074, - "y": 7.4464 - }, - { - "l": "9.0", - "x": 1.2266, - "y": 7.4917 - }, - { - "l": "9.0", - "x": 1.2457, - "y": 7.5367 - }, - { - "l": "9.0", - "x": 1.2649, - "y": 7.5812 - }, - { - "l": "9.0", - "x": 1.2841, - "y": 7.6249 - }, - { - "l": "9.0", - "x": 1.3032, - "y": 7.6676 - }, - { - "l": "9.0", - "x": 1.3224, - "y": 7.7092 - }, - { - "l": "9.0", - "x": 1.3415, - "y": 7.7481 - }, - { - "l": "9.0", - "x": 1.3607, - "y": 7.7848 - }, - { - "l": "9.0", - "x": 1.3799, - "y": 7.8207 - }, - { - "l": "9.0", - "x": 1.399, - "y": 7.8562 - }, - { - "l": "9.0", - "x": 1.4182, - "y": 7.892 - }, - { - "l": "9.0", - "x": 1.4374, - "y": 7.9303 - }, - { - "l": "9.0", - "x": 1.4565, - "y": 7.9692 - }, - { - "l": "9.0", - "x": 1.4757, - "y": 8.0082 - }, - { - "l": "9.0", - "x": 1.4949, - "y": 8.0471 - }, - { - "l": "9.0", - "x": 1.514, - "y": 8.0856 - }, - { - "l": "9.0", - "x": 1.5332, - "y": 8.1234 - }, - { - "l": "9.0", - "x": 1.5524, - "y": 8.1606 - }, - { - "l": "9.0", - "x": 1.5715, - "y": 8.1968 - }, - { - "l": "9.0", - "x": 1.5907, - "y": 8.2308 - }, - { - "l": "9.0", - "x": 1.6099, - "y": 8.2629 - }, - { - "l": "9.0", - "x": 1.629, - "y": 8.2943 - }, - { - "l": "9.0", - "x": 1.6482, - "y": 8.3255 - }, - { - "l": "9.0", - "x": 1.6674, - "y": 8.3569 - }, - { - "l": "9.0", - "x": 1.6865, - "y": 8.3906 - }, - { - "l": "9.0", - "x": 1.7057, - "y": 8.4249 - }, - { - "l": "9.0", - "x": 1.7248, - "y": 8.4594 - }, - { - "l": "9.0", - "x": 1.744, - "y": 8.494 - }, - { - "l": "9.0", - "x": 1.7632, - "y": 8.5283 - }, - { - "l": "9.0", - "x": 1.7823, - "y": 8.5623 - }, - { - "l": "9.0", - "x": 1.8015, - "y": 8.5956 - }, - { - "l": "9.0", - "x": 1.8207, - "y": 8.6283 - }, - { - "l": "9.0", - "x": 1.8398, - "y": 8.6592 - }, - { - "l": "9.0", - "x": 1.859, - "y": 8.6883 - }, - { - "l": "9.0", - "x": 1.8782, - "y": 8.717 - }, - { - "l": "9.0", - "x": 1.8973, - "y": 8.7456 - }, - { - "l": "9.0", - "x": 1.9165, - "y": 8.7744 - }, - { - "l": "9.0", - "x": 1.9357, - "y": 8.8054 - }, - { - "l": "9.0", - "x": 1.9548, - "y": 8.8372 - }, - { - "l": "9.0", - "x": 1.974, - "y": 8.8693 - }, - { - "l": "9.0", - "x": 1.9932, - "y": 8.9015 - }, - { - "l": "9.0", - "x": 2.0123, - "y": 8.9337 - }, - { - "l": "9.0", - "x": 2.0957, - "y": 9.0675 - }, - { - "l": "9.0", - "x": 2.179, - "y": 9.189 - }, - { - "l": "9.0", - "x": 2.2623, - "y": 9.325 - }, - { - "l": "9.0", - "x": 2.3457, - "y": 9.4575 - }, - { - "l": "9.0", - "x": 2.429, - "y": 9.5791 - }, - { - "l": "9.0", - "x": 2.5123, - "y": 9.7166 - }, - { - "l": "9.0", - "x": 2.5957, - "y": 9.8516 - }, - { - "l": "9.0", - "x": 2.679, - "y": 9.9762 - }, - { - "l": "9.0", - "x": 2.7623, - "y": 10.1172 - }, - { - "l": "9.0", - "x": 2.8457, - "y": 10.2555 - }, - { - "l": "9.0", - "x": 2.929, - "y": 10.3829 - }, - { - "l": "9.0", - "x": 3.0123, - "y": 10.5265 - }, - { - "l": "9.0", - "x": 3.0957, - "y": 10.667 - }, - { - "l": "9.0", - "x": 3.179, - "y": 10.7961 - }, - { - "l": "9.0", - "x": 3.2623, - "y": 10.9414 - }, - { - "l": "9.0", - "x": 3.3457, - "y": 11.0832 - }, - { - "l": "9.0", - "x": 3.429, - "y": 11.2129 - }, - { - "l": "9.0", - "x": 3.5123, - "y": 11.3583 - }, - { - "l": "9.0", - "x": 3.5957, - "y": 11.4994 - }, - { - "l": "9.0", - "x": 3.679, - "y": 11.6281 - }, - { - "l": "9.0", - "x": 3.7623, - "y": 11.772 - }, - { - "l": "9.0", - "x": 3.8457, - "y": 11.9116 - }, - { - "l": "9.0", - "x": 3.929, - "y": 12.0388 - }, - { - "l": "9.0", - "x": 4.0123, - "y": 12.1809 - }, - { - "l": "9.0", - "x": 4.0957, - "y": 12.3186 - }, - { - "l": "9.0", - "x": 4.179, - "y": 12.4438 - }, - { - "l": "9.0", - "x": 4.2623, - "y": 12.5837 - }, - { - "l": "9.0", - "x": 4.3457, - "y": 12.7193 - }, - { - "l": "9.0", - "x": 4.429, - "y": 12.8427 - }, - { - "l": "9.0", - "x": 4.5123, - "y": 12.9808 - }, - { - "l": "9.0", - "x": 4.5957, - "y": 13.1149 - }, - { - "l": "9.0", - "x": 4.679, - "y": 13.2374 - }, - { - "l": "9.0", - "x": 4.7623, - "y": 13.3748 - }, - { - "l": "9.0", - "x": 4.8457, - "y": 13.5085 - }, - { - "l": "9.0", - "x": 4.929, - "y": 13.6308 - }, - { - "l": "9.0", - "x": 5.0123, - "y": 13.7678 - }, - { - "l": "9.0", - "x": 5.0957, - "y": 13.9012 - }, - { - "l": "9.0", - "x": 5.179, - "y": 14.0232 - }, - { - "l": "9.0", - "x": 5.2623, - "y": 14.1605 - }, - { - "l": "9.0", - "x": 5.3457, - "y": 14.2945 - }, - { - "l": "9.0", - "x": 5.429, - "y": 14.4178 - }, - { - "l": "9.0", - "x": 5.5123, - "y": 14.5569 - }, - { - "l": "9.0", - "x": 5.5957, - "y": 14.6933 - }, - { - "l": "9.0", - "x": 5.679, - "y": 14.8191 - }, - { - "l": "9.0", - "x": 5.7623, - "y": 14.9613 - }, - { - "l": "9.0", - "x": 5.8457, - "y": 15.101 - }, - { - "l": "9.0", - "x": 5.929, - "y": 15.2297 - }, - { - "l": "9.0", - "x": 6.0123, - "y": 15.3753 - }, - { - "l": "9.0", - "x": 6.0957, - "y": 15.5182 - }, - { - "l": "9.0", - "x": 6.179, - "y": 15.6501 - }, - { - "l": "9.0", - "x": 6.2623, - "y": 15.7997 - }, - { - "l": "9.0", - "x": 6.3457, - "y": 15.9469 - }, - { - "l": "9.0", - "x": 6.429, - "y": 16.0833 - }, - { - "l": "9.0", - "x": 6.5123, - "y": 16.2386 - }, - { - "l": "9.0", - "x": 6.5957, - "y": 16.3922 - }, - { - "l": "9.0", - "x": 6.679, - "y": 16.535 - }, - { - "l": "9.0", - "x": 6.7623, - "y": 16.698 - }, - { - "l": "9.0", - "x": 6.8457, - "y": 16.8594 - }, - { - "l": "9.0", - "x": 6.929, - "y": 17.0099 - }, - { - "l": "9.0", - "x": 7.0123, - "y": 17.1817 - }, - { - "l": "9.0", - "x": 7.0957, - "y": 17.3519 - }, - { - "l": "9.0", - "x": 7.179, - "y": 17.5103 - }, - { - "l": "9.0", - "x": 7.2623, - "y": 17.6911 - }, - { - "l": "9.0", - "x": 7.3457, - "y": 17.8698 - }, - { - "l": "9.0", - "x": 7.429, - "y": 18.0359 - }, - { - "l": "9.0", - "x": 7.5123, - "y": 18.2249 - }, - { - "l": "9.0", - "x": 7.5957, - "y": 18.4113 - }, - { - "l": "9.0", - "x": 7.679, - "y": 18.584 - }, - { - "l": "9.0", - "x": 7.7623, - "y": 18.7801 - }, - { - "l": "9.0", - "x": 7.8457, - "y": 18.9734 - }, - { - "l": "9.0", - "x": 7.929, - "y": 19.1525 - }, - { - "l": "9.0", - "x": 8.0123, - "y": 19.3559 - }, - { - "l": "9.0", - "x": 8.0957, - "y": 19.5564 - }, - { - "l": "9.0", - "x": 8.179, - "y": 19.7421 - }, - { - "l": "9.0", - "x": 8.2623, - "y": 19.953 - }, - { - "l": "9.0", - "x": 8.3457, - "y": 20.1607 - }, - { - "l": "9.0", - "x": 8.429, - "y": 20.3529 - }, - { - "l": "9.0", - "x": 8.5123, - "y": 20.5708 - }, - { - "l": "9.0", - "x": 8.5957, - "y": 20.785 - }, - { - "l": "9.0", - "x": 8.679, - "y": 20.9829 - }, - { - "l": "9.0", - "x": 8.7623, - "y": 21.2071 - }, - { - "l": "9.0", - "x": 8.8457, - "y": 21.4271 - }, - { - "l": "9.0", - "x": 8.929, - "y": 21.6302 - }, - { - "l": "9.0", - "x": 9.0123, - "y": 21.8597 - }, - { - "l": "9.0", - "x": 9.0957, - "y": 22.0846 - }, - { - "l": "9.0", - "x": 9.179, - "y": 22.2918 - }, - { - "l": "9.0", - "x": 9.2623, - "y": 22.5254 - }, - { - "l": "9.0", - "x": 9.3457, - "y": 22.7538 - }, - { - "l": "9.0", - "x": 9.429, - "y": 22.9636 - }, - { - "l": "9.0", - "x": 9.5123, - "y": 23.1997 - }, - { - "l": "9.0", - "x": 9.5957, - "y": 23.4303 - }, - { - "l": "9.0", - "x": 9.679, - "y": 23.6419 - }, - { - "l": "9.0", - "x": 9.7623, - "y": 23.8803 - }, - { - "l": "9.0", - "x": 9.8457, - "y": 24.1134 - }, - { - "l": "9.0", - "x": 9.929, - "y": 24.3279 - }, - { - "l": "9.0", - "x": 10.0123, - "y": 24.57 - }, - { - "l": "9.0", - "x": 10.0957, - "y": 24.807 - }, - { - "l": "9.0", - "x": 10.179, - "y": 25.0253 - }, - { - "l": "9.0", - "x": 10.2623, - "y": 25.2719 - }, - { - "l": "9.0", - "x": 10.3457, - "y": 25.5136 - }, - { - "l": "9.0", - "x": 10.429, - "y": 25.7365 - }, - { - "l": "9.0", - "x": 10.5123, - "y": 25.9883 - }, - { - "l": "9.0", - "x": 10.5957, - "y": 26.2351 - }, - { - "l": "9.0", - "x": 10.679, - "y": 26.4624 - }, - { - "l": "9.0", - "x": 10.7623, - "y": 26.7189 - }, - { - "l": "9.0", - "x": 10.8457, - "y": 26.9699 - }, - { - "l": "9.0", - "x": 10.929, - "y": 27.2007 - }, - { - "l": "9.0", - "x": 11.0123, - "y": 27.4609 - }, - { - "l": "9.0", - "x": 11.0957, - "y": 27.7152 - }, - { - "l": "9.0", - "x": 11.179, - "y": 27.9486 - }, - { - "l": "9.0", - "x": 11.2623, - "y": 28.2111 - }, - { - "l": "9.0", - "x": 11.3457, - "y": 28.4668 - }, - { - "l": "9.0", - "x": 11.429, - "y": 28.7009 - }, - { - "l": "9.0", - "x": 11.5123, - "y": 28.9636 - }, - { - "l": "9.0", - "x": 11.5957, - "y": 29.2189 - }, - { - "l": "9.0", - "x": 11.679, - "y": 29.452 - }, - { - "l": "9.0", - "x": 11.7623, - "y": 29.7129 - }, - { - "l": "9.0", - "x": 11.8457, - "y": 29.9661 - }, - { - "l": "9.0", - "x": 11.929, - "y": 30.1969 - }, - { - "l": "9.0", - "x": 12.0123, - "y": 30.455 - }, - { - "l": "9.0", - "x": 12.0957, - "y": 30.7051 - }, - { - "l": "9.0", - "x": 12.179, - "y": 30.933 - }, - { - "l": "9.0", - "x": 12.2623, - "y": 31.1878 - }, - { - "l": "9.0", - "x": 12.3457, - "y": 31.4348 - }, - { - "l": "9.0", - "x": 12.429, - "y": 31.6598 - }, - { - "l": "9.0", - "x": 12.5123, - "y": 31.9113 - }, - { - "l": "9.0", - "x": 12.5957, - "y": 32.1551 - }, - { - "l": "9.0", - "x": 12.679, - "y": 32.3774 - }, - { - "l": "9.0", - "x": 12.7623, - "y": 32.6259 - }, - { - "l": "9.0", - "x": 12.8457, - "y": 32.8667 - }, - { - "l": "9.0", - "x": 12.929, - "y": 33.086 - }, - { - "l": "9.0", - "x": 13.0123, - "y": 33.331 - }, - { - "l": "9.0", - "x": 13.0957, - "y": 33.5682 - }, - { - "l": "9.0", - "x": 13.179, - "y": 33.7841 - }, - { - "l": "9.0", - "x": 13.2623, - "y": 34.025 - }, - { - "l": "9.0", - "x": 13.3457, - "y": 34.258 - }, - { - "l": "9.0", - "x": 13.429, - "y": 34.4694 - }, - { - "l": "9.0", - "x": 13.5123, - "y": 34.7049 - }, - { - "l": "9.0", - "x": 13.5957, - "y": 34.9322 - }, - { - "l": "9.0", - "x": 13.679, - "y": 35.138 - }, - { - "l": "9.0", - "x": 13.7623, - "y": 35.3667 - }, - { - "l": "9.0", - "x": 13.8457, - "y": 35.5873 - }, - { - "l": "9.0", - "x": 13.929, - "y": 35.7868 - }, - { - "l": "9.0", - "x": 14.0123, - "y": 36.0083 - }, - { - "l": "9.0", - "x": 14.0957, - "y": 36.2214 - }, - { - "l": "9.0", - "x": 14.179, - "y": 36.4141 - }, - { - "l": "9.0", - "x": 14.2623, - "y": 36.6277 - }, - { - "l": "9.0", - "x": 14.3457, - "y": 36.833 - }, - { - "l": "9.0", - "x": 14.429, - "y": 37.0184 - }, - { - "l": "9.0", - "x": 14.5123, - "y": 37.2236 - }, - { - "l": "9.0", - "x": 14.5957, - "y": 37.4204 - }, - { - "l": "9.0", - "x": 14.679, - "y": 37.5985 - }, - { - "l": "9.0", - "x": 14.7623, - "y": 37.7953 - }, - { - "l": "9.0", - "x": 14.8457, - "y": 37.984 - }, - { - "l": "9.0", - "x": 14.929, - "y": 38.154 - }, - { - "l": "9.0", - "x": 15.0123, - "y": 38.3418 - }, - { - "l": "9.0", - "x": 15.0957, - "y": 38.5223 - }, - { - "l": "9.0", - "x": 15.179, - "y": 38.6846 - }, - { - "l": "9.0", - "x": 15.2623, - "y": 38.864 - }, - { - "l": "9.0", - "x": 15.3457, - "y": 39.0358 - }, - { - "l": "9.0", - "x": 15.429, - "y": 39.1895 - }, - { - "l": "9.0", - "x": 15.5123, - "y": 39.3602 - }, - { - "l": "9.0", - "x": 15.5957, - "y": 39.5256 - }, - { - "l": "9.0", - "x": 15.679, - "y": 39.6732 - }, - { - "l": "9.0", - "x": 15.7623, - "y": 39.8363 - }, - { - "l": "9.0", - "x": 15.8457, - "y": 39.9926 - }, - { - "l": "9.0", - "x": 15.929, - "y": 40.1334 - }, - { - "l": "9.0", - "x": 16.0123, - "y": 40.2892 - }, - { - "l": "9.0", - "x": 16.0957, - "y": 40.4384 - }, - { - "l": "9.0", - "x": 16.179, - "y": 40.5729 - }, - { - "l": "9.0", - "x": 16.2623, - "y": 40.7218 - }, - { - "l": "9.0", - "x": 16.3457, - "y": 40.8652 - }, - { - "l": "9.0", - "x": 16.429, - "y": 40.9942 - }, - { - "l": "9.0", - "x": 16.5123, - "y": 41.1373 - }, - { - "l": "9.0", - "x": 16.5957, - "y": 41.2748 - }, - { - "l": "9.0", - "x": 16.679, - "y": 41.3991 - }, - { - "l": "9.0", - "x": 16.7623, - "y": 41.5368 - }, - { - "l": "9.0", - "x": 16.8457, - "y": 41.6692 - }, - { - "l": "9.0", - "x": 16.929, - "y": 41.789 - }, - { - "l": "9.0", - "x": 17.0123, - "y": 41.9221 - }, - { - "l": "9.0", - "x": 17.0957, - "y": 42.05 - }, - { - "l": "9.0", - "x": 17.179, - "y": 42.1661 - }, - { - "l": "9.0", - "x": 17.2623, - "y": 42.295 - }, - { - "l": "9.0", - "x": 17.3457, - "y": 42.4192 - }, - { - "l": "9.0", - "x": 17.429, - "y": 42.5318 - }, - { - "l": "9.0", - "x": 17.5123, - "y": 42.6569 - }, - { - "l": "9.0", - "x": 17.5957, - "y": 42.7779 - }, - { - "l": "9.0", - "x": 17.679, - "y": 42.8873 - }, - { - "l": "9.0", - "x": 17.7623, - "y": 43.0087 - }, - { - "l": "9.0", - "x": 17.8457, - "y": 43.1267 - }, - { - "l": "9.0", - "x": 17.929, - "y": 43.2338 - }, - { - "l": "9.0", - "x": 18.0123, - "y": 43.3528 - }, - { - "l": "9.0", - "x": 18.0957, - "y": 43.4672 - }, - { - "l": "9.0", - "x": 18.179, - "y": 43.5717 - }, - { - "l": "9.0", - "x": 18.2623, - "y": 43.6887 - }, - { - "l": "9.0", - "x": 18.3457, - "y": 43.8013 - }, - { - "l": "9.0", - "x": 18.429, - "y": 43.9036 - }, - { - "l": "9.0", - "x": 18.5123, - "y": 44.0181 - }, - { - "l": "9.0", - "x": 18.5957, - "y": 44.1285 - }, - { - "l": "9.0", - "x": 18.679, - "y": 44.2283 - }, - { - "l": "9.0", - "x": 18.7623, - "y": 44.3401 - }, - { - "l": "9.0", - "x": 18.8457, - "y": 44.449 - }, - { - "l": "9.0", - "x": 18.929, - "y": 44.5488 - }, - { - "l": "9.0", - "x": 19.0123, - "y": 44.6601 - }, - { - "l": "9.0", - "x": 19.0957, - "y": 44.7673 - }, - { - "l": "9.0", - "x": 19.179, - "y": 44.8647 - }, - { - "l": "9.0", - "x": 19.2623, - "y": 44.9713 - }, - { - "l": "9.0", - "x": 19.3457, - "y": 45.075 - }, - { - "l": "9.0", - "x": 19.429, - "y": 45.1699 - }, - { - "l": "9.0", - "x": 19.5123, - "y": 45.2766 - }, - { - "l": "9.0", - "x": 19.5957, - "y": 45.3805 - }, - { - "l": "9.0", - "x": 19.679, - "y": 45.4756 - }, - { - "l": "9.0", - "x": 19.7623, - "y": 45.5824 - }, - { - "l": "9.0", - "x": 19.8457, - "y": 45.6865 - }, - { - "l": "9.0", - "x": 19.929, - "y": 45.7821 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 0.0, - "y": 2.7079 - }, - { - "l": "25.0", - "x": 0.0192, - "y": 2.8302 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 2.9525 - }, - { - "l": "25.0", - "x": 0.0575, - "y": 3.0749 - }, - { - "l": "25.0", - "x": 0.0767, - "y": 3.1973 - }, - { - "l": "25.0", - "x": 0.0958, - "y": 3.3105 - }, - { - "l": "25.0", - "x": 0.115, - "y": 3.4201 - }, - { - "l": "25.0", - "x": 0.1342, - "y": 3.5292 - }, - { - "l": "25.0", - "x": 0.1533, - "y": 3.6393 - }, - { - "l": "25.0", - "x": 0.1725, - "y": 3.7525 - }, - { - "l": "25.0", - "x": 0.1916, - "y": 3.875 - }, - { - "l": "25.0", - "x": 0.2108, - "y": 3.9996 - }, - { - "l": "25.0", - "x": 0.23, - "y": 4.1254 - }, - { - "l": "25.0", - "x": 0.2491, - "y": 4.2514 - }, - { - "l": "25.0", - "x": 0.2683, - "y": 4.3767 - }, - { - "l": "25.0", - "x": 0.2875, - "y": 4.5005 - }, - { - "l": "25.0", - "x": 0.3066, - "y": 4.622 - }, - { - "l": "25.0", - "x": 0.3258, - "y": 4.7404 - }, - { - "l": "25.0", - "x": 0.345, - "y": 4.8496 - }, - { - "l": "25.0", - "x": 0.3641, - "y": 4.9538 - }, - { - "l": "25.0", - "x": 0.3833, - "y": 5.0556 - }, - { - "l": "25.0", - "x": 0.4025, - "y": 5.1562 - }, - { - "l": "25.0", - "x": 0.4216, - "y": 5.2573 - }, - { - "l": "25.0", - "x": 0.4408, - "y": 5.3647 - }, - { - "l": "25.0", - "x": 0.46, - "y": 5.4721 - }, - { - "l": "25.0", - "x": 0.4791, - "y": 5.5787 - }, - { - "l": "25.0", - "x": 0.4983, - "y": 5.6837 - }, - { - "l": "25.0", - "x": 0.5175, - "y": 5.7856 - }, - { - "l": "25.0", - "x": 0.5366, - "y": 5.8847 - }, - { - "l": "25.0", - "x": 0.5558, - "y": 5.9805 - }, - { - "l": "25.0", - "x": 0.5749, - "y": 6.0727 - }, - { - "l": "25.0", - "x": 0.5941, - "y": 6.1572 - }, - { - "l": "25.0", - "x": 0.6133, - "y": 6.2369 - }, - { - "l": "25.0", - "x": 0.6324, - "y": 6.3139 - }, - { - "l": "25.0", - "x": 0.6516, - "y": 6.3894 - }, - { - "l": "25.0", - "x": 0.6708, - "y": 6.4646 - }, - { - "l": "25.0", - "x": 0.6899, - "y": 6.5449 - }, - { - "l": "25.0", - "x": 0.7091, - "y": 6.625 - }, - { - "l": "25.0", - "x": 0.7283, - "y": 6.7044 - }, - { - "l": "25.0", - "x": 0.7474, - "y": 6.7827 - }, - { - "l": "25.0", - "x": 0.7666, - "y": 6.8589 - }, - { - "l": "25.0", - "x": 0.7858, - "y": 6.9331 - }, - { - "l": "25.0", - "x": 0.8049, - "y": 7.005 - }, - { - "l": "25.0", - "x": 0.8241, - "y": 7.0742 - }, - { - "l": "25.0", - "x": 0.8433, - "y": 7.1381 - }, - { - "l": "25.0", - "x": 0.8624, - "y": 7.1981 - }, - { - "l": "25.0", - "x": 0.8816, - "y": 7.2563 - }, - { - "l": "25.0", - "x": 0.9008, - "y": 7.3135 - }, - { - "l": "25.0", - "x": 0.9199, - "y": 7.3704 - }, - { - "l": "25.0", - "x": 0.9391, - "y": 7.4313 - }, - { - "l": "25.0", - "x": 0.9582, - "y": 7.4923 - }, - { - "l": "25.0", - "x": 0.9774, - "y": 7.5529 - }, - { - "l": "25.0", - "x": 0.9966, - "y": 7.6128 - }, - { - "l": "25.0", - "x": 1.0157, - "y": 7.6714 - }, - { - "l": "25.0", - "x": 1.0349, - "y": 7.7286 - }, - { - "l": "25.0", - "x": 1.0541, - "y": 7.7841 - }, - { - "l": "25.0", - "x": 1.0732, - "y": 7.8379 - }, - { - "l": "25.0", - "x": 1.0924, - "y": 7.8878 - }, - { - "l": "25.0", - "x": 1.1116, - "y": 7.9349 - }, - { - "l": "25.0", - "x": 1.1307, - "y": 7.9807 - }, - { - "l": "25.0", - "x": 1.1499, - "y": 8.0259 - }, - { - "l": "25.0", - "x": 1.1691, - "y": 8.0711 - }, - { - "l": "25.0", - "x": 1.1882, - "y": 8.1197 - }, - { - "l": "25.0", - "x": 1.2074, - "y": 8.1688 - }, - { - "l": "25.0", - "x": 1.2266, - "y": 8.2178 - }, - { - "l": "25.0", - "x": 1.2457, - "y": 8.2666 - }, - { - "l": "25.0", - "x": 1.2649, - "y": 8.3147 - }, - { - "l": "25.0", - "x": 1.2841, - "y": 8.362 - }, - { - "l": "25.0", - "x": 1.3032, - "y": 8.4083 - }, - { - "l": "25.0", - "x": 1.3224, - "y": 8.4533 - }, - { - "l": "25.0", - "x": 1.3415, - "y": 8.4954 - }, - { - "l": "25.0", - "x": 1.3607, - "y": 8.5351 - }, - { - "l": "25.0", - "x": 1.3799, - "y": 8.5739 - }, - { - "l": "25.0", - "x": 1.399, - "y": 8.6124 - }, - { - "l": "25.0", - "x": 1.4182, - "y": 8.6511 - }, - { - "l": "25.0", - "x": 1.4374, - "y": 8.6926 - }, - { - "l": "25.0", - "x": 1.4565, - "y": 8.7347 - }, - { - "l": "25.0", - "x": 1.4757, - "y": 8.777 - }, - { - "l": "25.0", - "x": 1.4949, - "y": 8.8191 - }, - { - "l": "25.0", - "x": 1.514, - "y": 8.8608 - }, - { - "l": "25.0", - "x": 1.5332, - "y": 8.9018 - }, - { - "l": "25.0", - "x": 1.5524, - "y": 8.9421 - }, - { - "l": "25.0", - "x": 1.5715, - "y": 8.9813 - }, - { - "l": "25.0", - "x": 1.5907, - "y": 9.0181 - }, - { - "l": "25.0", - "x": 1.6099, - "y": 9.0529 - }, - { - "l": "25.0", - "x": 1.629, - "y": 9.0869 - }, - { - "l": "25.0", - "x": 1.6482, - "y": 9.1207 - }, - { - "l": "25.0", - "x": 1.6674, - "y": 9.1548 - }, - { - "l": "25.0", - "x": 1.6865, - "y": 9.1913 - }, - { - "l": "25.0", - "x": 1.7057, - "y": 9.2285 - }, - { - "l": "25.0", - "x": 1.7248, - "y": 9.2659 - }, - { - "l": "25.0", - "x": 1.744, - "y": 9.3034 - }, - { - "l": "25.0", - "x": 1.7632, - "y": 9.3406 - }, - { - "l": "25.0", - "x": 1.7823, - "y": 9.3774 - }, - { - "l": "25.0", - "x": 1.8015, - "y": 9.4136 - }, - { - "l": "25.0", - "x": 1.8207, - "y": 9.4491 - }, - { - "l": "25.0", - "x": 1.8398, - "y": 9.4826 - }, - { - "l": "25.0", - "x": 1.859, - "y": 9.5142 - }, - { - "l": "25.0", - "x": 1.8782, - "y": 9.5453 - }, - { - "l": "25.0", - "x": 1.8973, - "y": 9.5763 - }, - { - "l": "25.0", - "x": 1.9165, - "y": 9.6076 - }, - { - "l": "25.0", - "x": 1.9357, - "y": 9.6412 - }, - { - "l": "25.0", - "x": 1.9548, - "y": 9.6757 - }, - { - "l": "25.0", - "x": 1.974, - "y": 9.7106 - }, - { - "l": "25.0", - "x": 1.9932, - "y": 9.7456 - }, - { - "l": "25.0", - "x": 2.0123, - "y": 9.7806 - }, - { - "l": "25.0", - "x": 2.0957, - "y": 9.9259 - }, - { - "l": "25.0", - "x": 2.179, - "y": 10.058 - }, - { - "l": "25.0", - "x": 2.2623, - "y": 10.2059 - }, - { - "l": "25.0", - "x": 2.3457, - "y": 10.3501 - }, - { - "l": "25.0", - "x": 2.429, - "y": 10.4826 - }, - { - "l": "25.0", - "x": 2.5123, - "y": 10.6324 - }, - { - "l": "25.0", - "x": 2.5957, - "y": 10.7796 - }, - { - "l": "25.0", - "x": 2.679, - "y": 10.9156 - }, - { - "l": "25.0", - "x": 2.7623, - "y": 11.0696 - }, - { - "l": "25.0", - "x": 2.8457, - "y": 11.2207 - }, - { - "l": "25.0", - "x": 2.929, - "y": 11.36 - }, - { - "l": "25.0", - "x": 3.0123, - "y": 11.5173 - }, - { - "l": "25.0", - "x": 3.0957, - "y": 11.6712 - }, - { - "l": "25.0", - "x": 3.179, - "y": 11.8128 - }, - { - "l": "25.0", - "x": 3.2623, - "y": 11.9723 - }, - { - "l": "25.0", - "x": 3.3457, - "y": 12.1282 - }, - { - "l": "25.0", - "x": 3.429, - "y": 12.2709 - }, - { - "l": "25.0", - "x": 3.5123, - "y": 12.431 - }, - { - "l": "25.0", - "x": 3.5957, - "y": 12.5866 - }, - { - "l": "25.0", - "x": 3.679, - "y": 12.7286 - }, - { - "l": "25.0", - "x": 3.7623, - "y": 12.8877 - }, - { - "l": "25.0", - "x": 3.8457, - "y": 13.0422 - }, - { - "l": "25.0", - "x": 3.929, - "y": 13.1832 - }, - { - "l": "25.0", - "x": 4.0123, - "y": 13.3409 - }, - { - "l": "25.0", - "x": 4.0957, - "y": 13.4938 - }, - { - "l": "25.0", - "x": 4.179, - "y": 13.6331 - }, - { - "l": "25.0", - "x": 4.2623, - "y": 13.789 - }, - { - "l": "25.0", - "x": 4.3457, - "y": 13.9402 - }, - { - "l": "25.0", - "x": 4.429, - "y": 14.0782 - }, - { - "l": "25.0", - "x": 4.5123, - "y": 14.2327 - }, - { - "l": "25.0", - "x": 4.5957, - "y": 14.383 - }, - { - "l": "25.0", - "x": 4.679, - "y": 14.5205 - }, - { - "l": "25.0", - "x": 4.7623, - "y": 14.675 - }, - { - "l": "25.0", - "x": 4.8457, - "y": 14.8256 - }, - { - "l": "25.0", - "x": 4.929, - "y": 14.9634 - }, - { - "l": "25.0", - "x": 5.0123, - "y": 15.1183 - }, - { - "l": "25.0", - "x": 5.0957, - "y": 15.2692 - }, - { - "l": "25.0", - "x": 5.179, - "y": 15.4075 - }, - { - "l": "25.0", - "x": 5.2623, - "y": 15.5634 - }, - { - "l": "25.0", - "x": 5.3457, - "y": 15.7159 - }, - { - "l": "25.0", - "x": 5.429, - "y": 15.8563 - }, - { - "l": "25.0", - "x": 5.5123, - "y": 16.0152 - }, - { - "l": "25.0", - "x": 5.5957, - "y": 16.1711 - }, - { - "l": "25.0", - "x": 5.679, - "y": 16.3152 - }, - { - "l": "25.0", - "x": 5.7623, - "y": 16.4784 - }, - { - "l": "25.0", - "x": 5.8457, - "y": 16.6388 - }, - { - "l": "25.0", - "x": 5.929, - "y": 16.787 - }, - { - "l": "25.0", - "x": 6.0123, - "y": 16.9549 - }, - { - "l": "25.0", - "x": 6.0957, - "y": 17.1199 - }, - { - "l": "25.0", - "x": 6.179, - "y": 17.2725 - }, - { - "l": "25.0", - "x": 6.2623, - "y": 17.4458 - }, - { - "l": "25.0", - "x": 6.3457, - "y": 17.6166 - }, - { - "l": "25.0", - "x": 6.429, - "y": 17.7751 - }, - { - "l": "25.0", - "x": 6.5123, - "y": 17.9559 - }, - { - "l": "25.0", - "x": 6.5957, - "y": 18.1347 - }, - { - "l": "25.0", - "x": 6.679, - "y": 18.3013 - }, - { - "l": "25.0", - "x": 6.7623, - "y": 18.4916 - }, - { - "l": "25.0", - "x": 6.8457, - "y": 18.6803 - }, - { - "l": "25.0", - "x": 6.929, - "y": 18.8564 - }, - { - "l": "25.0", - "x": 7.0123, - "y": 19.0576 - }, - { - "l": "25.0", - "x": 7.0957, - "y": 19.2572 - }, - { - "l": "25.0", - "x": 7.179, - "y": 19.4432 - }, - { - "l": "25.0", - "x": 7.2623, - "y": 19.6556 - }, - { - "l": "25.0", - "x": 7.3457, - "y": 19.8659 - }, - { - "l": "25.0", - "x": 7.429, - "y": 20.0615 - }, - { - "l": "25.0", - "x": 7.5123, - "y": 20.2843 - }, - { - "l": "25.0", - "x": 7.5957, - "y": 20.5044 - }, - { - "l": "25.0", - "x": 7.679, - "y": 20.7085 - }, - { - "l": "25.0", - "x": 7.7623, - "y": 20.9406 - }, - { - "l": "25.0", - "x": 7.8457, - "y": 21.1697 - }, - { - "l": "25.0", - "x": 7.929, - "y": 21.3821 - }, - { - "l": "25.0", - "x": 8.0123, - "y": 21.6237 - }, - { - "l": "25.0", - "x": 8.0957, - "y": 21.8621 - }, - { - "l": "25.0", - "x": 8.179, - "y": 22.0832 - }, - { - "l": "25.0", - "x": 8.2623, - "y": 22.3346 - }, - { - "l": "25.0", - "x": 8.3457, - "y": 22.5825 - }, - { - "l": "25.0", - "x": 8.429, - "y": 22.8122 - }, - { - "l": "25.0", - "x": 8.5123, - "y": 23.0727 - }, - { - "l": "25.0", - "x": 8.5957, - "y": 23.3292 - }, - { - "l": "25.0", - "x": 8.679, - "y": 23.5665 - }, - { - "l": "25.0", - "x": 8.7623, - "y": 23.8355 - }, - { - "l": "25.0", - "x": 8.8457, - "y": 24.0999 - }, - { - "l": "25.0", - "x": 8.929, - "y": 24.3441 - }, - { - "l": "25.0", - "x": 9.0123, - "y": 24.6205 - }, - { - "l": "25.0", - "x": 9.0957, - "y": 24.8917 - }, - { - "l": "25.0", - "x": 9.179, - "y": 25.1416 - }, - { - "l": "25.0", - "x": 9.2623, - "y": 25.4238 - }, - { - "l": "25.0", - "x": 9.3457, - "y": 25.7 - }, - { - "l": "25.0", - "x": 9.429, - "y": 25.954 - }, - { - "l": "25.0", - "x": 9.5123, - "y": 26.2403 - }, - { - "l": "25.0", - "x": 9.5957, - "y": 26.5202 - }, - { - "l": "25.0", - "x": 9.679, - "y": 26.7773 - }, - { - "l": "25.0", - "x": 9.7623, - "y": 27.0673 - }, - { - "l": "25.0", - "x": 9.8457, - "y": 27.3512 - }, - { - "l": "25.0", - "x": 9.929, - "y": 27.6127 - }, - { - "l": "25.0", - "x": 10.0123, - "y": 27.908 - }, - { - "l": "25.0", - "x": 10.0957, - "y": 28.1975 - }, - { - "l": "25.0", - "x": 10.179, - "y": 28.4643 - }, - { - "l": "25.0", - "x": 10.2623, - "y": 28.7659 - }, - { - "l": "25.0", - "x": 10.3457, - "y": 29.0617 - }, - { - "l": "25.0", - "x": 10.429, - "y": 29.3346 - }, - { - "l": "25.0", - "x": 10.5123, - "y": 29.6431 - }, - { - "l": "25.0", - "x": 10.5957, - "y": 29.9456 - }, - { - "l": "25.0", - "x": 10.679, - "y": 30.2243 - }, - { - "l": "25.0", - "x": 10.7623, - "y": 30.5391 - }, - { - "l": "25.0", - "x": 10.8457, - "y": 30.8471 - }, - { - "l": "25.0", - "x": 10.929, - "y": 31.1306 - }, - { - "l": "25.0", - "x": 11.0123, - "y": 31.4503 - }, - { - "l": "25.0", - "x": 11.0957, - "y": 31.7629 - }, - { - "l": "25.0", - "x": 11.179, - "y": 32.0499 - }, - { - "l": "25.0", - "x": 11.2623, - "y": 32.3727 - }, - { - "l": "25.0", - "x": 11.3457, - "y": 32.6874 - }, - { - "l": "25.0", - "x": 11.429, - "y": 32.9756 - }, - { - "l": "25.0", - "x": 11.5123, - "y": 33.2988 - }, - { - "l": "25.0", - "x": 11.5957, - "y": 33.6131 - }, - { - "l": "25.0", - "x": 11.679, - "y": 33.9 - }, - { - "l": "25.0", - "x": 11.7623, - "y": 34.2212 - }, - { - "l": "25.0", - "x": 11.8457, - "y": 34.5326 - }, - { - "l": "25.0", - "x": 11.929, - "y": 34.8164 - }, - { - "l": "25.0", - "x": 12.0123, - "y": 35.1335 - }, - { - "l": "25.0", - "x": 12.0957, - "y": 35.4407 - }, - { - "l": "25.0", - "x": 12.179, - "y": 35.7202 - }, - { - "l": "25.0", - "x": 12.2623, - "y": 36.0325 - }, - { - "l": "25.0", - "x": 12.3457, - "y": 36.3347 - }, - { - "l": "25.0", - "x": 12.429, - "y": 36.6097 - }, - { - "l": "25.0", - "x": 12.5123, - "y": 36.9165 - }, - { - "l": "25.0", - "x": 12.5957, - "y": 37.2134 - }, - { - "l": "25.0", - "x": 12.679, - "y": 37.4835 - }, - { - "l": "25.0", - "x": 12.7623, - "y": 37.7848 - }, - { - "l": "25.0", - "x": 12.8457, - "y": 38.076 - }, - { - "l": "25.0", - "x": 12.929, - "y": 38.3407 - }, - { - "l": "25.0", - "x": 13.0123, - "y": 38.6357 - }, - { - "l": "25.0", - "x": 13.0957, - "y": 38.9205 - }, - { - "l": "25.0", - "x": 13.179, - "y": 39.179 - }, - { - "l": "25.0", - "x": 13.2623, - "y": 39.4667 - }, - { - "l": "25.0", - "x": 13.3457, - "y": 39.7441 - }, - { - "l": "25.0", - "x": 13.429, - "y": 39.9953 - }, - { - "l": "25.0", - "x": 13.5123, - "y": 40.2742 - }, - { - "l": "25.0", - "x": 13.5957, - "y": 40.5427 - }, - { - "l": "25.0", - "x": 13.679, - "y": 40.7852 - }, - { - "l": "25.0", - "x": 13.7623, - "y": 41.0538 - }, - { - "l": "25.0", - "x": 13.8457, - "y": 41.3125 - }, - { - "l": "25.0", - "x": 13.929, - "y": 41.5456 - }, - { - "l": "25.0", - "x": 14.0123, - "y": 41.8038 - }, - { - "l": "25.0", - "x": 14.0957, - "y": 42.0516 - }, - { - "l": "25.0", - "x": 14.179, - "y": 42.275 - }, - { - "l": "25.0", - "x": 14.2623, - "y": 42.5221 - }, - { - "l": "25.0", - "x": 14.3457, - "y": 42.7589 - }, - { - "l": "25.0", - "x": 14.429, - "y": 42.9721 - }, - { - "l": "25.0", - "x": 14.5123, - "y": 43.2076 - }, - { - "l": "25.0", - "x": 14.5957, - "y": 43.4329 - }, - { - "l": "25.0", - "x": 14.679, - "y": 43.6363 - }, - { - "l": "25.0", - "x": 14.7623, - "y": 43.8603 - }, - { - "l": "25.0", - "x": 14.8457, - "y": 44.0745 - }, - { - "l": "25.0", - "x": 14.929, - "y": 44.2672 - }, - { - "l": "25.0", - "x": 15.0123, - "y": 44.4793 - }, - { - "l": "25.0", - "x": 15.0957, - "y": 44.6828 - }, - { - "l": "25.0", - "x": 15.179, - "y": 44.8652 - }, - { - "l": "25.0", - "x": 15.2623, - "y": 45.0665 - }, - { - "l": "25.0", - "x": 15.3457, - "y": 45.2586 - }, - { - "l": "25.0", - "x": 15.429, - "y": 45.4302 - }, - { - "l": "25.0", - "x": 15.5123, - "y": 45.6203 - }, - { - "l": "25.0", - "x": 15.5957, - "y": 45.8043 - }, - { - "l": "25.0", - "x": 15.679, - "y": 45.9679 - }, - { - "l": "25.0", - "x": 15.7623, - "y": 46.1485 - }, - { - "l": "25.0", - "x": 15.8457, - "y": 46.3211 - }, - { - "l": "25.0", - "x": 15.929, - "y": 46.4763 - }, - { - "l": "25.0", - "x": 16.0123, - "y": 46.6477 - }, - { - "l": "25.0", - "x": 16.0957, - "y": 46.8115 - }, - { - "l": "25.0", - "x": 16.179, - "y": 46.9589 - }, - { - "l": "25.0", - "x": 16.2623, - "y": 47.1218 - }, - { - "l": "25.0", - "x": 16.3457, - "y": 47.2783 - }, - { - "l": "25.0", - "x": 16.429, - "y": 47.4189 - }, - { - "l": "25.0", - "x": 16.5123, - "y": 47.5746 - }, - { - "l": "25.0", - "x": 16.5957, - "y": 47.7238 - }, - { - "l": "25.0", - "x": 16.679, - "y": 47.8587 - }, - { - "l": "25.0", - "x": 16.7623, - "y": 48.0076 - }, - { - "l": "25.0", - "x": 16.8457, - "y": 48.1507 - }, - { - "l": "25.0", - "x": 16.929, - "y": 48.28 - }, - { - "l": "25.0", - "x": 17.0123, - "y": 48.4232 - }, - { - "l": "25.0", - "x": 17.0957, - "y": 48.5608 - }, - { - "l": "25.0", - "x": 17.179, - "y": 48.6855 - }, - { - "l": "25.0", - "x": 17.2623, - "y": 48.8237 - }, - { - "l": "25.0", - "x": 17.3457, - "y": 48.9568 - }, - { - "l": "25.0", - "x": 17.429, - "y": 49.0771 - }, - { - "l": "25.0", - "x": 17.5123, - "y": 49.2109 - }, - { - "l": "25.0", - "x": 17.5957, - "y": 49.3399 - }, - { - "l": "25.0", - "x": 17.679, - "y": 49.4566 - }, - { - "l": "25.0", - "x": 17.7623, - "y": 49.5858 - }, - { - "l": "25.0", - "x": 17.8457, - "y": 49.7113 - }, - { - "l": "25.0", - "x": 17.929, - "y": 49.8251 - }, - { - "l": "25.0", - "x": 18.0123, - "y": 49.9514 - }, - { - "l": "25.0", - "x": 18.0957, - "y": 50.0727 - }, - { - "l": "25.0", - "x": 18.179, - "y": 50.1834 - }, - { - "l": "25.0", - "x": 18.2623, - "y": 50.3073 - }, - { - "l": "25.0", - "x": 18.3457, - "y": 50.4263 - }, - { - "l": "25.0", - "x": 18.429, - "y": 50.5344 - }, - { - "l": "25.0", - "x": 18.5123, - "y": 50.6553 - }, - { - "l": "25.0", - "x": 18.5957, - "y": 50.7717 - }, - { - "l": "25.0", - "x": 18.679, - "y": 50.8768 - }, - { - "l": "25.0", - "x": 18.7623, - "y": 50.9945 - }, - { - "l": "25.0", - "x": 18.8457, - "y": 51.1092 - }, - { - "l": "25.0", - "x": 18.929, - "y": 51.2141 - }, - { - "l": "25.0", - "x": 19.0123, - "y": 51.3312 - }, - { - "l": "25.0", - "x": 19.0957, - "y": 51.4437 - }, - { - "l": "25.0", - "x": 19.179, - "y": 51.546 - }, - { - "l": "25.0", - "x": 19.2623, - "y": 51.6575 - }, - { - "l": "25.0", - "x": 19.3457, - "y": 51.7661 - }, - { - "l": "25.0", - "x": 19.429, - "y": 51.8655 - }, - { - "l": "25.0", - "x": 19.5123, - "y": 51.977 - }, - { - "l": "25.0", - "x": 19.5957, - "y": 52.0857 - }, - { - "l": "25.0", - "x": 19.679, - "y": 52.1852 - }, - { - "l": "25.0", - "x": 19.7623, - "y": 52.2969 - }, - { - "l": "25.0", - "x": 19.8457, - "y": 52.4056 - }, - { - "l": "25.0", - "x": 19.929, - "y": 52.5055 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 0.0, - "y": 2.9922 - }, - { - "l": "50.0", - "x": 0.0192, - "y": 3.1267 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 3.2613 - }, - { - "l": "50.0", - "x": 0.0575, - "y": 3.3958 - }, - { - "l": "50.0", - "x": 0.0767, - "y": 3.5304 - }, - { - "l": "50.0", - "x": 0.0958, - "y": 3.6547 - }, - { - "l": "50.0", - "x": 0.115, - "y": 3.7751 - }, - { - "l": "50.0", - "x": 0.1342, - "y": 3.895 - }, - { - "l": "50.0", - "x": 0.1533, - "y": 4.0158 - }, - { - "l": "50.0", - "x": 0.1725, - "y": 4.1401 - }, - { - "l": "50.0", - "x": 0.1916, - "y": 4.2746 - }, - { - "l": "50.0", - "x": 0.2108, - "y": 4.4112 - }, - { - "l": "50.0", - "x": 0.23, - "y": 4.5491 - }, - { - "l": "50.0", - "x": 0.2491, - "y": 4.6873 - }, - { - "l": "50.0", - "x": 0.2683, - "y": 4.8246 - }, - { - "l": "50.0", - "x": 0.2875, - "y": 4.9603 - }, - { - "l": "50.0", - "x": 0.3066, - "y": 5.0934 - }, - { - "l": "50.0", - "x": 0.3258, - "y": 5.2231 - }, - { - "l": "50.0", - "x": 0.345, - "y": 5.3427 - }, - { - "l": "50.0", - "x": 0.3641, - "y": 5.4567 - }, - { - "l": "50.0", - "x": 0.3833, - "y": 5.5681 - }, - { - "l": "50.0", - "x": 0.4025, - "y": 5.6781 - }, - { - "l": "50.0", - "x": 0.4216, - "y": 5.7887 - }, - { - "l": "50.0", - "x": 0.4408, - "y": 5.9062 - }, - { - "l": "50.0", - "x": 0.46, - "y": 6.0236 - }, - { - "l": "50.0", - "x": 0.4791, - "y": 6.1401 - }, - { - "l": "50.0", - "x": 0.4983, - "y": 6.2548 - }, - { - "l": "50.0", - "x": 0.5175, - "y": 6.3661 - }, - { - "l": "50.0", - "x": 0.5366, - "y": 6.4743 - }, - { - "l": "50.0", - "x": 0.5558, - "y": 6.5789 - }, - { - "l": "50.0", - "x": 0.5749, - "y": 6.6796 - }, - { - "l": "50.0", - "x": 0.5941, - "y": 6.7719 - }, - { - "l": "50.0", - "x": 0.6133, - "y": 6.8587 - }, - { - "l": "50.0", - "x": 0.6324, - "y": 6.9427 - }, - { - "l": "50.0", - "x": 0.6516, - "y": 7.0251 - }, - { - "l": "50.0", - "x": 0.6708, - "y": 7.1071 - }, - { - "l": "50.0", - "x": 0.6899, - "y": 7.1947 - }, - { - "l": "50.0", - "x": 0.7091, - "y": 7.282 - }, - { - "l": "50.0", - "x": 0.7283, - "y": 7.3686 - }, - { - "l": "50.0", - "x": 0.7474, - "y": 7.4539 - }, - { - "l": "50.0", - "x": 0.7666, - "y": 7.537 - }, - { - "l": "50.0", - "x": 0.7858, - "y": 7.6178 - }, - { - "l": "50.0", - "x": 0.8049, - "y": 7.6961 - }, - { - "l": "50.0", - "x": 0.8241, - "y": 7.7716 - }, - { - "l": "50.0", - "x": 0.8433, - "y": 7.8411 - }, - { - "l": "50.0", - "x": 0.8624, - "y": 7.9065 - }, - { - "l": "50.0", - "x": 0.8816, - "y": 7.9699 - }, - { - "l": "50.0", - "x": 0.9008, - "y": 8.0322 - }, - { - "l": "50.0", - "x": 0.9199, - "y": 8.0942 - }, - { - "l": "50.0", - "x": 0.9391, - "y": 8.1605 - }, - { - "l": "50.0", - "x": 0.9582, - "y": 8.2269 - }, - { - "l": "50.0", - "x": 0.9774, - "y": 8.293 - }, - { - "l": "50.0", - "x": 0.9966, - "y": 8.3582 - }, - { - "l": "50.0", - "x": 1.0157, - "y": 8.422 - }, - { - "l": "50.0", - "x": 1.0349, - "y": 8.4842 - }, - { - "l": "50.0", - "x": 1.0541, - "y": 8.5448 - }, - { - "l": "50.0", - "x": 1.0732, - "y": 8.6033 - }, - { - "l": "50.0", - "x": 1.0924, - "y": 8.6577 - }, - { - "l": "50.0", - "x": 1.1116, - "y": 8.7089 - }, - { - "l": "50.0", - "x": 1.1307, - "y": 8.7588 - }, - { - "l": "50.0", - "x": 1.1499, - "y": 8.808 - }, - { - "l": "50.0", - "x": 1.1691, - "y": 8.8573 - }, - { - "l": "50.0", - "x": 1.1882, - "y": 8.9102 - }, - { - "l": "50.0", - "x": 1.2074, - "y": 8.9637 - }, - { - "l": "50.0", - "x": 1.2266, - "y": 9.0171 - }, - { - "l": "50.0", - "x": 1.2457, - "y": 9.0702 - }, - { - "l": "50.0", - "x": 1.2649, - "y": 9.1227 - }, - { - "l": "50.0", - "x": 1.2841, - "y": 9.1742 - }, - { - "l": "50.0", - "x": 1.3032, - "y": 9.2246 - }, - { - "l": "50.0", - "x": 1.3224, - "y": 9.2737 - }, - { - "l": "50.0", - "x": 1.3415, - "y": 9.3195 - }, - { - "l": "50.0", - "x": 1.3607, - "y": 9.3628 - }, - { - "l": "50.0", - "x": 1.3799, - "y": 9.4052 - }, - { - "l": "50.0", - "x": 1.399, - "y": 9.4471 - }, - { - "l": "50.0", - "x": 1.4182, - "y": 9.4893 - }, - { - "l": "50.0", - "x": 1.4374, - "y": 9.5346 - }, - { - "l": "50.0", - "x": 1.4565, - "y": 9.5805 - }, - { - "l": "50.0", - "x": 1.4757, - "y": 9.6266 - }, - { - "l": "50.0", - "x": 1.4949, - "y": 9.6725 - }, - { - "l": "50.0", - "x": 1.514, - "y": 9.718 - }, - { - "l": "50.0", - "x": 1.5332, - "y": 9.7627 - }, - { - "l": "50.0", - "x": 1.5524, - "y": 9.8067 - }, - { - "l": "50.0", - "x": 1.5715, - "y": 9.8495 - }, - { - "l": "50.0", - "x": 1.5907, - "y": 9.8897 - }, - { - "l": "50.0", - "x": 1.6099, - "y": 9.9276 - }, - { - "l": "50.0", - "x": 1.629, - "y": 9.9648 - }, - { - "l": "50.0", - "x": 1.6482, - "y": 10.0017 - }, - { - "l": "50.0", - "x": 1.6674, - "y": 10.0388 - }, - { - "l": "50.0", - "x": 1.6865, - "y": 10.0787 - }, - { - "l": "50.0", - "x": 1.7057, - "y": 10.1193 - }, - { - "l": "50.0", - "x": 1.7248, - "y": 10.1603 - }, - { - "l": "50.0", - "x": 1.744, - "y": 10.2012 - }, - { - "l": "50.0", - "x": 1.7632, - "y": 10.2419 - }, - { - "l": "50.0", - "x": 1.7823, - "y": 10.2821 - }, - { - "l": "50.0", - "x": 1.8015, - "y": 10.3216 - }, - { - "l": "50.0", - "x": 1.8207, - "y": 10.3604 - }, - { - "l": "50.0", - "x": 1.8398, - "y": 10.397 - }, - { - "l": "50.0", - "x": 1.859, - "y": 10.4316 - }, - { - "l": "50.0", - "x": 1.8782, - "y": 10.4656 - }, - { - "l": "50.0", - "x": 1.8973, - "y": 10.4995 - }, - { - "l": "50.0", - "x": 1.9165, - "y": 10.5337 - }, - { - "l": "50.0", - "x": 1.9357, - "y": 10.5705 - }, - { - "l": "50.0", - "x": 1.9548, - "y": 10.6082 - }, - { - "l": "50.0", - "x": 1.974, - "y": 10.6464 - }, - { - "l": "50.0", - "x": 1.9932, - "y": 10.6847 - }, - { - "l": "50.0", - "x": 2.0123, - "y": 10.723 - }, - { - "l": "50.0", - "x": 2.0957, - "y": 10.8822 - }, - { - "l": "50.0", - "x": 2.179, - "y": 11.0269 - }, - { - "l": "50.0", - "x": 2.2623, - "y": 11.1891 - }, - { - "l": "50.0", - "x": 2.3457, - "y": 11.3472 - }, - { - "l": "50.0", - "x": 2.429, - "y": 11.4927 - }, - { - "l": "50.0", - "x": 2.5123, - "y": 11.6573 - }, - { - "l": "50.0", - "x": 2.5957, - "y": 11.8192 - }, - { - "l": "50.0", - "x": 2.679, - "y": 11.9689 - }, - { - "l": "50.0", - "x": 2.7623, - "y": 12.1385 - }, - { - "l": "50.0", - "x": 2.8457, - "y": 12.3051 - }, - { - "l": "50.0", - "x": 2.929, - "y": 12.4589 - }, - { - "l": "50.0", - "x": 3.0123, - "y": 12.6325 - }, - { - "l": "50.0", - "x": 3.0957, - "y": 12.8028 - }, - { - "l": "50.0", - "x": 3.179, - "y": 12.9595 - }, - { - "l": "50.0", - "x": 3.2623, - "y": 13.1363 - }, - { - "l": "50.0", - "x": 3.3457, - "y": 13.3092 - }, - { - "l": "50.0", - "x": 3.429, - "y": 13.4677 - }, - { - "l": "50.0", - "x": 3.5123, - "y": 13.6458 - }, - { - "l": "50.0", - "x": 3.5957, - "y": 13.819 - }, - { - "l": "50.0", - "x": 3.679, - "y": 13.9773 - }, - { - "l": "50.0", - "x": 3.7623, - "y": 14.1549 - }, - { - "l": "50.0", - "x": 3.8457, - "y": 14.3276 - }, - { - "l": "50.0", - "x": 3.929, - "y": 14.4854 - }, - { - "l": "50.0", - "x": 4.0123, - "y": 14.6623 - }, - { - "l": "50.0", - "x": 4.0957, - "y": 14.834 - }, - { - "l": "50.0", - "x": 4.179, - "y": 14.9906 - }, - { - "l": "50.0", - "x": 4.2623, - "y": 15.1662 - }, - { - "l": "50.0", - "x": 4.3457, - "y": 15.3367 - }, - { - "l": "50.0", - "x": 4.429, - "y": 15.4926 - }, - { - "l": "50.0", - "x": 4.5123, - "y": 15.6674 - }, - { - "l": "50.0", - "x": 4.5957, - "y": 15.8377 - }, - { - "l": "50.0", - "x": 4.679, - "y": 15.9938 - }, - { - "l": "50.0", - "x": 4.7623, - "y": 16.1695 - }, - { - "l": "50.0", - "x": 4.8457, - "y": 16.341 - }, - { - "l": "50.0", - "x": 4.929, - "y": 16.4982 - }, - { - "l": "50.0", - "x": 5.0123, - "y": 16.6752 - }, - { - "l": "50.0", - "x": 5.0957, - "y": 16.8479 - }, - { - "l": "50.0", - "x": 5.179, - "y": 17.0065 - }, - { - "l": "50.0", - "x": 5.2623, - "y": 17.1855 - }, - { - "l": "50.0", - "x": 5.3457, - "y": 17.361 - }, - { - "l": "50.0", - "x": 5.429, - "y": 17.5229 - }, - { - "l": "50.0", - "x": 5.5123, - "y": 17.7062 - }, - { - "l": "50.0", - "x": 5.5957, - "y": 17.8866 - }, - { - "l": "50.0", - "x": 5.679, - "y": 18.0534 - }, - { - "l": "50.0", - "x": 5.7623, - "y": 18.2428 - }, - { - "l": "50.0", - "x": 5.8457, - "y": 18.4292 - }, - { - "l": "50.0", - "x": 5.929, - "y": 18.6017 - }, - { - "l": "50.0", - "x": 6.0123, - "y": 18.7974 - }, - { - "l": "50.0", - "x": 6.0957, - "y": 18.9901 - }, - { - "l": "50.0", - "x": 6.179, - "y": 19.1686 - }, - { - "l": "50.0", - "x": 6.2623, - "y": 19.3714 - }, - { - "l": "50.0", - "x": 6.3457, - "y": 19.5717 - }, - { - "l": "50.0", - "x": 6.429, - "y": 19.7578 - }, - { - "l": "50.0", - "x": 6.5123, - "y": 19.9702 - }, - { - "l": "50.0", - "x": 6.5957, - "y": 20.1807 - }, - { - "l": "50.0", - "x": 6.679, - "y": 20.3769 - }, - { - "l": "50.0", - "x": 6.7623, - "y": 20.6012 - }, - { - "l": "50.0", - "x": 6.8457, - "y": 20.8239 - }, - { - "l": "50.0", - "x": 6.929, - "y": 21.0317 - }, - { - "l": "50.0", - "x": 7.0123, - "y": 21.2695 - }, - { - "l": "50.0", - "x": 7.0957, - "y": 21.5056 - }, - { - "l": "50.0", - "x": 7.179, - "y": 21.7258 - }, - { - "l": "50.0", - "x": 7.2623, - "y": 21.9773 - }, - { - "l": "50.0", - "x": 7.3457, - "y": 22.2267 - }, - { - "l": "50.0", - "x": 7.429, - "y": 22.4587 - }, - { - "l": "50.0", - "x": 7.5123, - "y": 22.7232 - }, - { - "l": "50.0", - "x": 7.5957, - "y": 22.9847 - }, - { - "l": "50.0", - "x": 7.679, - "y": 23.2274 - }, - { - "l": "50.0", - "x": 7.7623, - "y": 23.5035 - }, - { - "l": "50.0", - "x": 7.8457, - "y": 23.7763 - }, - { - "l": "50.0", - "x": 7.929, - "y": 24.0294 - }, - { - "l": "50.0", - "x": 8.0123, - "y": 24.3174 - }, - { - "l": "50.0", - "x": 8.0957, - "y": 24.6019 - }, - { - "l": "50.0", - "x": 8.179, - "y": 24.866 - }, - { - "l": "50.0", - "x": 8.2623, - "y": 25.1663 - }, - { - "l": "50.0", - "x": 8.3457, - "y": 25.4626 - }, - { - "l": "50.0", - "x": 8.429, - "y": 25.7372 - }, - { - "l": "50.0", - "x": 8.5123, - "y": 26.049 - }, - { - "l": "50.0", - "x": 8.5957, - "y": 26.3561 - }, - { - "l": "50.0", - "x": 8.679, - "y": 26.6403 - }, - { - "l": "50.0", - "x": 8.7623, - "y": 26.9626 - }, - { - "l": "50.0", - "x": 8.8457, - "y": 27.2796 - }, - { - "l": "50.0", - "x": 8.929, - "y": 27.5724 - }, - { - "l": "50.0", - "x": 9.0123, - "y": 27.9039 - }, - { - "l": "50.0", - "x": 9.0957, - "y": 28.2293 - }, - { - "l": "50.0", - "x": 9.179, - "y": 28.5293 - }, - { - "l": "50.0", - "x": 9.2623, - "y": 28.8681 - }, - { - "l": "50.0", - "x": 9.3457, - "y": 29.1999 - }, - { - "l": "50.0", - "x": 9.429, - "y": 29.5051 - }, - { - "l": "50.0", - "x": 9.5123, - "y": 29.8492 - }, - { - "l": "50.0", - "x": 9.5957, - "y": 30.1856 - }, - { - "l": "50.0", - "x": 9.679, - "y": 30.4949 - }, - { - "l": "50.0", - "x": 9.7623, - "y": 30.8438 - }, - { - "l": "50.0", - "x": 9.8457, - "y": 31.1854 - }, - { - "l": "50.0", - "x": 9.929, - "y": 31.5001 - }, - { - "l": "50.0", - "x": 10.0123, - "y": 31.8557 - }, - { - "l": "50.0", - "x": 10.0957, - "y": 32.2042 - }, - { - "l": "50.0", - "x": 10.179, - "y": 32.5255 - }, - { - "l": "50.0", - "x": 10.2623, - "y": 32.8887 - }, - { - "l": "50.0", - "x": 10.3457, - "y": 33.245 - }, - { - "l": "50.0", - "x": 10.429, - "y": 33.5737 - }, - { - "l": "50.0", - "x": 10.5123, - "y": 33.9453 - }, - { - "l": "50.0", - "x": 10.5957, - "y": 34.3096 - }, - { - "l": "50.0", - "x": 10.679, - "y": 34.6453 - }, - { - "l": "50.0", - "x": 10.7623, - "y": 35.0244 - }, - { - "l": "50.0", - "x": 10.8457, - "y": 35.3955 - }, - { - "l": "50.0", - "x": 10.929, - "y": 35.737 - }, - { - "l": "50.0", - "x": 11.0123, - "y": 36.1222 - }, - { - "l": "50.0", - "x": 11.0957, - "y": 36.4988 - }, - { - "l": "50.0", - "x": 11.179, - "y": 36.8446 - }, - { - "l": "50.0", - "x": 11.2623, - "y": 37.2336 - }, - { - "l": "50.0", - "x": 11.3457, - "y": 37.6129 - }, - { - "l": "50.0", - "x": 11.429, - "y": 37.9601 - }, - { - "l": "50.0", - "x": 11.5123, - "y": 38.3496 - }, - { - "l": "50.0", - "x": 11.5957, - "y": 38.7284 - }, - { - "l": "50.0", - "x": 11.679, - "y": 39.0741 - }, - { - "l": "50.0", - "x": 11.7623, - "y": 39.4609 - }, - { - "l": "50.0", - "x": 11.8457, - "y": 39.836 - }, - { - "l": "50.0", - "x": 11.929, - "y": 40.1777 - }, - { - "l": "50.0", - "x": 12.0123, - "y": 40.5594 - }, - { - "l": "50.0", - "x": 12.0957, - "y": 40.9288 - }, - { - "l": "50.0", - "x": 12.179, - "y": 41.2649 - }, - { - "l": "50.0", - "x": 12.2623, - "y": 41.64 - }, - { - "l": "50.0", - "x": 12.3457, - "y": 42.0028 - }, - { - "l": "50.0", - "x": 12.429, - "y": 42.3325 - }, - { - "l": "50.0", - "x": 12.5123, - "y": 42.7 - }, - { - "l": "50.0", - "x": 12.5957, - "y": 43.0551 - }, - { - "l": "50.0", - "x": 12.679, - "y": 43.378 - }, - { - "l": "50.0", - "x": 12.7623, - "y": 43.7374 - }, - { - "l": "50.0", - "x": 12.8457, - "y": 44.0844 - }, - { - "l": "50.0", - "x": 12.929, - "y": 44.3992 - }, - { - "l": "50.0", - "x": 13.0123, - "y": 44.7494 - }, - { - "l": "50.0", - "x": 13.0957, - "y": 45.0869 - }, - { - "l": "50.0", - "x": 13.179, - "y": 45.3927 - }, - { - "l": "50.0", - "x": 13.2623, - "y": 45.7325 - }, - { - "l": "50.0", - "x": 13.3457, - "y": 46.0594 - }, - { - "l": "50.0", - "x": 13.429, - "y": 46.3548 - }, - { - "l": "50.0", - "x": 13.5123, - "y": 46.6821 - }, - { - "l": "50.0", - "x": 13.5957, - "y": 46.9967 - }, - { - "l": "50.0", - "x": 13.679, - "y": 47.2801 - }, - { - "l": "50.0", - "x": 13.7623, - "y": 47.5934 - }, - { - "l": "50.0", - "x": 13.8457, - "y": 47.8945 - }, - { - "l": "50.0", - "x": 13.929, - "y": 48.1653 - }, - { - "l": "50.0", - "x": 14.0123, - "y": 48.4646 - }, - { - "l": "50.0", - "x": 14.0957, - "y": 48.7514 - }, - { - "l": "50.0", - "x": 14.179, - "y": 49.0093 - }, - { - "l": "50.0", - "x": 14.2623, - "y": 49.294 - }, - { - "l": "50.0", - "x": 14.3457, - "y": 49.5663 - }, - { - "l": "50.0", - "x": 14.429, - "y": 49.811 - }, - { - "l": "50.0", - "x": 14.5123, - "y": 50.0808 - }, - { - "l": "50.0", - "x": 14.5957, - "y": 50.3381 - }, - { - "l": "50.0", - "x": 14.679, - "y": 50.5702 - }, - { - "l": "50.0", - "x": 14.7623, - "y": 50.8252 - }, - { - "l": "50.0", - "x": 14.8457, - "y": 51.0686 - }, - { - "l": "50.0", - "x": 14.929, - "y": 51.287 - }, - { - "l": "50.0", - "x": 15.0123, - "y": 51.5269 - }, - { - "l": "50.0", - "x": 15.0957, - "y": 51.7567 - }, - { - "l": "50.0", - "x": 15.179, - "y": 51.9622 - }, - { - "l": "50.0", - "x": 15.2623, - "y": 52.1885 - }, - { - "l": "50.0", - "x": 15.3457, - "y": 52.4042 - }, - { - "l": "50.0", - "x": 15.429, - "y": 52.5961 - }, - { - "l": "50.0", - "x": 15.5123, - "y": 52.8086 - }, - { - "l": "50.0", - "x": 15.5957, - "y": 53.0141 - }, - { - "l": "50.0", - "x": 15.679, - "y": 53.1963 - }, - { - "l": "50.0", - "x": 15.7623, - "y": 53.397 - }, - { - "l": "50.0", - "x": 15.8457, - "y": 53.5885 - }, - { - "l": "50.0", - "x": 15.929, - "y": 53.7604 - }, - { - "l": "50.0", - "x": 16.0123, - "y": 53.9498 - }, - { - "l": "50.0", - "x": 16.0957, - "y": 54.1304 - }, - { - "l": "50.0", - "x": 16.179, - "y": 54.2927 - }, - { - "l": "50.0", - "x": 16.2623, - "y": 54.4717 - }, - { - "l": "50.0", - "x": 16.3457, - "y": 54.6435 - }, - { - "l": "50.0", - "x": 16.429, - "y": 54.7974 - }, - { - "l": "50.0", - "x": 16.5123, - "y": 54.9675 - }, - { - "l": "50.0", - "x": 16.5957, - "y": 55.1303 - }, - { - "l": "50.0", - "x": 16.679, - "y": 55.2772 - }, - { - "l": "50.0", - "x": 16.7623, - "y": 55.4392 - }, - { - "l": "50.0", - "x": 16.8457, - "y": 55.5944 - }, - { - "l": "50.0", - "x": 16.929, - "y": 55.7345 - }, - { - "l": "50.0", - "x": 17.0123, - "y": 55.8895 - }, - { - "l": "50.0", - "x": 17.0957, - "y": 56.0381 - }, - { - "l": "50.0", - "x": 17.179, - "y": 56.1727 - }, - { - "l": "50.0", - "x": 17.2623, - "y": 56.3215 - }, - { - "l": "50.0", - "x": 17.3457, - "y": 56.4646 - }, - { - "l": "50.0", - "x": 17.429, - "y": 56.5939 - }, - { - "l": "50.0", - "x": 17.5123, - "y": 56.7374 - }, - { - "l": "50.0", - "x": 17.5957, - "y": 56.8757 - }, - { - "l": "50.0", - "x": 17.679, - "y": 57.0005 - }, - { - "l": "50.0", - "x": 17.7623, - "y": 57.1386 - }, - { - "l": "50.0", - "x": 17.8457, - "y": 57.2727 - }, - { - "l": "50.0", - "x": 17.929, - "y": 57.3941 - }, - { - "l": "50.0", - "x": 18.0123, - "y": 57.5287 - }, - { - "l": "50.0", - "x": 18.0957, - "y": 57.6578 - }, - { - "l": "50.0", - "x": 18.179, - "y": 57.7755 - }, - { - "l": "50.0", - "x": 18.2623, - "y": 57.9072 - }, - { - "l": "50.0", - "x": 18.3457, - "y": 58.0336 - }, - { - "l": "50.0", - "x": 18.429, - "y": 58.1481 - }, - { - "l": "50.0", - "x": 18.5123, - "y": 58.2762 - }, - { - "l": "50.0", - "x": 18.5957, - "y": 58.3995 - }, - { - "l": "50.0", - "x": 18.679, - "y": 58.5106 - }, - { - "l": "50.0", - "x": 18.7623, - "y": 58.635 - }, - { - "l": "50.0", - "x": 18.8457, - "y": 58.7561 - }, - { - "l": "50.0", - "x": 18.929, - "y": 58.8669 - }, - { - "l": "50.0", - "x": 19.0123, - "y": 58.9905 - }, - { - "l": "50.0", - "x": 19.0957, - "y": 59.109 - }, - { - "l": "50.0", - "x": 19.179, - "y": 59.2167 - }, - { - "l": "50.0", - "x": 19.2623, - "y": 59.3339 - }, - { - "l": "50.0", - "x": 19.3457, - "y": 59.4479 - }, - { - "l": "50.0", - "x": 19.429, - "y": 59.5522 - }, - { - "l": "50.0", - "x": 19.5123, - "y": 59.6694 - }, - { - "l": "50.0", - "x": 19.5957, - "y": 59.7834 - }, - { - "l": "50.0", - "x": 19.679, - "y": 59.8878 - }, - { - "l": "50.0", - "x": 19.7623, - "y": 60.0049 - }, - { - "l": "50.0", - "x": 19.8457, - "y": 60.1189 - }, - { - "l": "50.0", - "x": 19.929, - "y": 60.2236 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 0.0, - "y": 3.2939 - }, - { - "l": "75.0", - "x": 0.0192, - "y": 3.4417 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 3.5895 - }, - { - "l": "75.0", - "x": 0.0575, - "y": 3.7373 - }, - { - "l": "75.0", - "x": 0.0767, - "y": 3.885 - }, - { - "l": "75.0", - "x": 0.0958, - "y": 4.0215 - }, - { - "l": "75.0", - "x": 0.115, - "y": 4.1537 - }, - { - "l": "75.0", - "x": 0.1342, - "y": 4.2852 - }, - { - "l": "75.0", - "x": 0.1533, - "y": 4.4178 - }, - { - "l": "75.0", - "x": 0.1725, - "y": 4.5542 - }, - { - "l": "75.0", - "x": 0.1916, - "y": 4.7017 - }, - { - "l": "75.0", - "x": 0.2108, - "y": 4.8516 - }, - { - "l": "75.0", - "x": 0.23, - "y": 5.0028 - }, - { - "l": "75.0", - "x": 0.2491, - "y": 5.1543 - }, - { - "l": "75.0", - "x": 0.2683, - "y": 5.3049 - }, - { - "l": "75.0", - "x": 0.2875, - "y": 5.4537 - }, - { - "l": "75.0", - "x": 0.3066, - "y": 5.5996 - }, - { - "l": "75.0", - "x": 0.3258, - "y": 5.7417 - }, - { - "l": "75.0", - "x": 0.345, - "y": 5.8728 - }, - { - "l": "75.0", - "x": 0.3641, - "y": 5.9978 - }, - { - "l": "75.0", - "x": 0.3833, - "y": 6.1198 - }, - { - "l": "75.0", - "x": 0.4025, - "y": 6.2404 - }, - { - "l": "75.0", - "x": 0.4216, - "y": 6.3615 - }, - { - "l": "75.0", - "x": 0.4408, - "y": 6.4903 - }, - { - "l": "75.0", - "x": 0.46, - "y": 6.6189 - }, - { - "l": "75.0", - "x": 0.4791, - "y": 6.7464 - }, - { - "l": "75.0", - "x": 0.4983, - "y": 6.8721 - }, - { - "l": "75.0", - "x": 0.5175, - "y": 6.994 - }, - { - "l": "75.0", - "x": 0.5366, - "y": 7.1124 - }, - { - "l": "75.0", - "x": 0.5558, - "y": 7.227 - }, - { - "l": "75.0", - "x": 0.5749, - "y": 7.3372 - }, - { - "l": "75.0", - "x": 0.5941, - "y": 7.4382 - }, - { - "l": "75.0", - "x": 0.6133, - "y": 7.5333 - }, - { - "l": "75.0", - "x": 0.6324, - "y": 7.6253 - }, - { - "l": "75.0", - "x": 0.6516, - "y": 7.7154 - }, - { - "l": "75.0", - "x": 0.6708, - "y": 7.8053 - }, - { - "l": "75.0", - "x": 0.6899, - "y": 7.9011 - }, - { - "l": "75.0", - "x": 0.7091, - "y": 7.9967 - }, - { - "l": "75.0", - "x": 0.7283, - "y": 8.0915 - }, - { - "l": "75.0", - "x": 0.7474, - "y": 8.1848 - }, - { - "l": "75.0", - "x": 0.7666, - "y": 8.2758 - }, - { - "l": "75.0", - "x": 0.7858, - "y": 8.3642 - }, - { - "l": "75.0", - "x": 0.8049, - "y": 8.45 - }, - { - "l": "75.0", - "x": 0.8241, - "y": 8.5326 - }, - { - "l": "75.0", - "x": 0.8433, - "y": 8.6087 - }, - { - "l": "75.0", - "x": 0.8624, - "y": 8.6803 - }, - { - "l": "75.0", - "x": 0.8816, - "y": 8.7497 - }, - { - "l": "75.0", - "x": 0.9008, - "y": 8.8179 - }, - { - "l": "75.0", - "x": 0.9199, - "y": 8.8858 - }, - { - "l": "75.0", - "x": 0.9391, - "y": 8.9585 - }, - { - "l": "75.0", - "x": 0.9582, - "y": 9.0312 - }, - { - "l": "75.0", - "x": 0.9774, - "y": 9.1035 - }, - { - "l": "75.0", - "x": 0.9966, - "y": 9.175 - }, - { - "l": "75.0", - "x": 1.0157, - "y": 9.2448 - }, - { - "l": "75.0", - "x": 1.0349, - "y": 9.313 - }, - { - "l": "75.0", - "x": 1.0541, - "y": 9.3793 - }, - { - "l": "75.0", - "x": 1.0732, - "y": 9.4435 - }, - { - "l": "75.0", - "x": 1.0924, - "y": 9.5031 - }, - { - "l": "75.0", - "x": 1.1116, - "y": 9.5592 - }, - { - "l": "75.0", - "x": 1.1307, - "y": 9.6139 - }, - { - "l": "75.0", - "x": 1.1499, - "y": 9.6679 - }, - { - "l": "75.0", - "x": 1.1691, - "y": 9.7219 - }, - { - "l": "75.0", - "x": 1.1882, - "y": 9.78 - }, - { - "l": "75.0", - "x": 1.2074, - "y": 9.8385 - }, - { - "l": "75.0", - "x": 1.2266, - "y": 9.8971 - }, - { - "l": "75.0", - "x": 1.2457, - "y": 9.9554 - }, - { - "l": "75.0", - "x": 1.2649, - "y": 10.0129 - }, - { - "l": "75.0", - "x": 1.2841, - "y": 10.0695 - }, - { - "l": "75.0", - "x": 1.3032, - "y": 10.1248 - }, - { - "l": "75.0", - "x": 1.3224, - "y": 10.1787 - }, - { - "l": "75.0", - "x": 1.3415, - "y": 10.229 - }, - { - "l": "75.0", - "x": 1.3607, - "y": 10.2765 - }, - { - "l": "75.0", - "x": 1.3799, - "y": 10.323 - }, - { - "l": "75.0", - "x": 1.399, - "y": 10.3691 - }, - { - "l": "75.0", - "x": 1.4182, - "y": 10.4154 - }, - { - "l": "75.0", - "x": 1.4374, - "y": 10.4651 - }, - { - "l": "75.0", - "x": 1.4565, - "y": 10.5156 - }, - { - "l": "75.0", - "x": 1.4757, - "y": 10.5662 - }, - { - "l": "75.0", - "x": 1.4949, - "y": 10.6167 - }, - { - "l": "75.0", - "x": 1.514, - "y": 10.6666 - }, - { - "l": "75.0", - "x": 1.5332, - "y": 10.7158 - }, - { - "l": "75.0", - "x": 1.5524, - "y": 10.7641 - }, - { - "l": "75.0", - "x": 1.5715, - "y": 10.8112 - }, - { - "l": "75.0", - "x": 1.5907, - "y": 10.8554 - }, - { - "l": "75.0", - "x": 1.6099, - "y": 10.8971 - }, - { - "l": "75.0", - "x": 1.629, - "y": 10.938 - }, - { - "l": "75.0", - "x": 1.6482, - "y": 10.9786 - }, - { - "l": "75.0", - "x": 1.6674, - "y": 11.0195 - }, - { - "l": "75.0", - "x": 1.6865, - "y": 11.0633 - }, - { - "l": "75.0", - "x": 1.7057, - "y": 11.1081 - }, - { - "l": "75.0", - "x": 1.7248, - "y": 11.1532 - }, - { - "l": "75.0", - "x": 1.744, - "y": 11.1982 - }, - { - "l": "75.0", - "x": 1.7632, - "y": 11.243 - }, - { - "l": "75.0", - "x": 1.7823, - "y": 11.2873 - }, - { - "l": "75.0", - "x": 1.8015, - "y": 11.3309 - }, - { - "l": "75.0", - "x": 1.8207, - "y": 11.3736 - }, - { - "l": "75.0", - "x": 1.8398, - "y": 11.4139 - }, - { - "l": "75.0", - "x": 1.859, - "y": 11.452 - }, - { - "l": "75.0", - "x": 1.8782, - "y": 11.4895 - }, - { - "l": "75.0", - "x": 1.8973, - "y": 11.5269 - }, - { - "l": "75.0", - "x": 1.9165, - "y": 11.5647 - }, - { - "l": "75.0", - "x": 1.9357, - "y": 11.6052 - }, - { - "l": "75.0", - "x": 1.9548, - "y": 11.6469 - }, - { - "l": "75.0", - "x": 1.974, - "y": 11.689 - }, - { - "l": "75.0", - "x": 1.9932, - "y": 11.7313 - }, - { - "l": "75.0", - "x": 2.0123, - "y": 11.7735 - }, - { - "l": "75.0", - "x": 2.0957, - "y": 11.9493 - }, - { - "l": "75.0", - "x": 2.179, - "y": 12.1092 - }, - { - "l": "75.0", - "x": 2.2623, - "y": 12.2885 - }, - { - "l": "75.0", - "x": 2.3457, - "y": 12.4636 - }, - { - "l": "75.0", - "x": 2.429, - "y": 12.6248 - }, - { - "l": "75.0", - "x": 2.5123, - "y": 12.8072 - }, - { - "l": "75.0", - "x": 2.5957, - "y": 12.9868 - }, - { - "l": "75.0", - "x": 2.679, - "y": 13.1531 - }, - { - "l": "75.0", - "x": 2.7623, - "y": 13.3417 - }, - { - "l": "75.0", - "x": 2.8457, - "y": 13.5272 - }, - { - "l": "75.0", - "x": 2.929, - "y": 13.6984 - }, - { - "l": "75.0", - "x": 3.0123, - "y": 13.8921 - }, - { - "l": "75.0", - "x": 3.0957, - "y": 14.0822 - }, - { - "l": "75.0", - "x": 3.179, - "y": 14.2574 - }, - { - "l": "75.0", - "x": 3.2623, - "y": 14.4553 - }, - { - "l": "75.0", - "x": 3.3457, - "y": 14.6491 - }, - { - "l": "75.0", - "x": 3.429, - "y": 14.827 - }, - { - "l": "75.0", - "x": 3.5123, - "y": 15.0271 - }, - { - "l": "75.0", - "x": 3.5957, - "y": 15.222 - }, - { - "l": "75.0", - "x": 3.679, - "y": 15.4005 - }, - { - "l": "75.0", - "x": 3.7623, - "y": 15.6009 - }, - { - "l": "75.0", - "x": 3.8457, - "y": 15.7961 - }, - { - "l": "75.0", - "x": 3.929, - "y": 15.9748 - }, - { - "l": "75.0", - "x": 4.0123, - "y": 16.1753 - }, - { - "l": "75.0", - "x": 4.0957, - "y": 16.3703 - }, - { - "l": "75.0", - "x": 4.179, - "y": 16.5485 - }, - { - "l": "75.0", - "x": 4.2623, - "y": 16.7485 - }, - { - "l": "75.0", - "x": 4.3457, - "y": 16.9432 - }, - { - "l": "75.0", - "x": 4.429, - "y": 17.1214 - }, - { - "l": "75.0", - "x": 4.5123, - "y": 17.3216 - }, - { - "l": "75.0", - "x": 4.5957, - "y": 17.5169 - }, - { - "l": "75.0", - "x": 4.679, - "y": 17.6963 - }, - { - "l": "75.0", - "x": 4.7623, - "y": 17.8984 - }, - { - "l": "75.0", - "x": 4.8457, - "y": 18.0961 - }, - { - "l": "75.0", - "x": 4.929, - "y": 18.2778 - }, - { - "l": "75.0", - "x": 5.0123, - "y": 18.4825 - }, - { - "l": "75.0", - "x": 5.0957, - "y": 18.6827 - }, - { - "l": "75.0", - "x": 5.179, - "y": 18.8669 - }, - { - "l": "75.0", - "x": 5.2623, - "y": 19.0751 - }, - { - "l": "75.0", - "x": 5.3457, - "y": 19.2795 - }, - { - "l": "75.0", - "x": 5.429, - "y": 19.4685 - }, - { - "l": "75.0", - "x": 5.5123, - "y": 19.6828 - }, - { - "l": "75.0", - "x": 5.5957, - "y": 19.8939 - }, - { - "l": "75.0", - "x": 5.679, - "y": 20.0896 - }, - { - "l": "75.0", - "x": 5.7623, - "y": 20.312 - }, - { - "l": "75.0", - "x": 5.8457, - "y": 20.5314 - }, - { - "l": "75.0", - "x": 5.929, - "y": 20.7346 - }, - { - "l": "75.0", - "x": 6.0123, - "y": 20.9655 - }, - { - "l": "75.0", - "x": 6.0957, - "y": 21.1932 - }, - { - "l": "75.0", - "x": 6.179, - "y": 21.4044 - }, - { - "l": "75.0", - "x": 6.2623, - "y": 21.6447 - }, - { - "l": "75.0", - "x": 6.3457, - "y": 21.8823 - }, - { - "l": "75.0", - "x": 6.429, - "y": 22.1033 - }, - { - "l": "75.0", - "x": 6.5123, - "y": 22.3558 - }, - { - "l": "75.0", - "x": 6.5957, - "y": 22.6062 - }, - { - "l": "75.0", - "x": 6.679, - "y": 22.8398 - }, - { - "l": "75.0", - "x": 6.7623, - "y": 23.107 - }, - { - "l": "75.0", - "x": 6.8457, - "y": 23.3725 - }, - { - "l": "75.0", - "x": 6.929, - "y": 23.6205 - }, - { - "l": "75.0", - "x": 7.0123, - "y": 23.9043 - }, - { - "l": "75.0", - "x": 7.0957, - "y": 24.1863 - }, - { - "l": "75.0", - "x": 7.179, - "y": 24.4493 - }, - { - "l": "75.0", - "x": 7.2623, - "y": 24.75 - }, - { - "l": "75.0", - "x": 7.3457, - "y": 25.0481 - }, - { - "l": "75.0", - "x": 7.429, - "y": 25.3257 - }, - { - "l": "75.0", - "x": 7.5123, - "y": 25.6421 - }, - { - "l": "75.0", - "x": 7.5957, - "y": 25.9551 - }, - { - "l": "75.0", - "x": 7.679, - "y": 26.2456 - }, - { - "l": "75.0", - "x": 7.7623, - "y": 26.5763 - }, - { - "l": "75.0", - "x": 7.8457, - "y": 26.903 - }, - { - "l": "75.0", - "x": 7.929, - "y": 27.2062 - }, - { - "l": "75.0", - "x": 8.0123, - "y": 27.5513 - }, - { - "l": "75.0", - "x": 8.0957, - "y": 27.8922 - }, - { - "l": "75.0", - "x": 8.179, - "y": 28.2086 - }, - { - "l": "75.0", - "x": 8.2623, - "y": 28.5685 - }, - { - "l": "75.0", - "x": 8.3457, - "y": 28.9235 - }, - { - "l": "75.0", - "x": 8.429, - "y": 29.2525 - }, - { - "l": "75.0", - "x": 8.5123, - "y": 29.626 - }, - { - "l": "75.0", - "x": 8.5957, - "y": 29.9938 - }, - { - "l": "75.0", - "x": 8.679, - "y": 30.334 - }, - { - "l": "75.0", - "x": 8.7623, - "y": 30.7198 - }, - { - "l": "75.0", - "x": 8.8457, - "y": 31.0991 - }, - { - "l": "75.0", - "x": 8.929, - "y": 31.4494 - }, - { - "l": "75.0", - "x": 9.0123, - "y": 31.8457 - }, - { - "l": "75.0", - "x": 9.0957, - "y": 32.2346 - }, - { - "l": "75.0", - "x": 9.179, - "y": 32.5929 - }, - { - "l": "75.0", - "x": 9.2623, - "y": 32.9974 - }, - { - "l": "75.0", - "x": 9.3457, - "y": 33.3933 - }, - { - "l": "75.0", - "x": 9.429, - "y": 33.7573 - }, - { - "l": "75.0", - "x": 9.5123, - "y": 34.1674 - }, - { - "l": "75.0", - "x": 9.5957, - "y": 34.5683 - }, - { - "l": "75.0", - "x": 9.679, - "y": 34.9366 - }, - { - "l": "75.0", - "x": 9.7623, - "y": 35.3519 - }, - { - "l": "75.0", - "x": 9.8457, - "y": 35.7583 - }, - { - "l": "75.0", - "x": 9.929, - "y": 36.1325 - }, - { - "l": "75.0", - "x": 10.0123, - "y": 36.5551 - }, - { - "l": "75.0", - "x": 10.0957, - "y": 36.9691 - }, - { - "l": "75.0", - "x": 10.179, - "y": 37.3506 - }, - { - "l": "75.0", - "x": 10.2623, - "y": 37.7818 - }, - { - "l": "75.0", - "x": 10.3457, - "y": 38.2045 - }, - { - "l": "75.0", - "x": 10.429, - "y": 38.5942 - }, - { - "l": "75.0", - "x": 10.5123, - "y": 39.0346 - }, - { - "l": "75.0", - "x": 10.5957, - "y": 39.4663 - }, - { - "l": "75.0", - "x": 10.679, - "y": 39.8639 - }, - { - "l": "75.0", - "x": 10.7623, - "y": 40.3127 - }, - { - "l": "75.0", - "x": 10.8457, - "y": 40.752 - }, - { - "l": "75.0", - "x": 10.929, - "y": 41.156 - }, - { - "l": "75.0", - "x": 11.0123, - "y": 41.6117 - }, - { - "l": "75.0", - "x": 11.0957, - "y": 42.0571 - }, - { - "l": "75.0", - "x": 11.179, - "y": 42.466 - }, - { - "l": "75.0", - "x": 11.2623, - "y": 42.926 - }, - { - "l": "75.0", - "x": 11.3457, - "y": 43.3744 - }, - { - "l": "75.0", - "x": 11.429, - "y": 43.7849 - }, - { - "l": "75.0", - "x": 11.5123, - "y": 44.2454 - }, - { - "l": "75.0", - "x": 11.5957, - "y": 44.693 - }, - { - "l": "75.0", - "x": 11.679, - "y": 45.1017 - }, - { - "l": "75.0", - "x": 11.7623, - "y": 45.5588 - }, - { - "l": "75.0", - "x": 11.8457, - "y": 46.0021 - }, - { - "l": "75.0", - "x": 11.929, - "y": 46.4058 - }, - { - "l": "75.0", - "x": 12.0123, - "y": 46.8566 - }, - { - "l": "75.0", - "x": 12.0957, - "y": 47.2928 - }, - { - "l": "75.0", - "x": 12.179, - "y": 47.6895 - }, - { - "l": "75.0", - "x": 12.2623, - "y": 48.1321 - }, - { - "l": "75.0", - "x": 12.3457, - "y": 48.56 - }, - { - "l": "75.0", - "x": 12.429, - "y": 48.9488 - }, - { - "l": "75.0", - "x": 12.5123, - "y": 49.3819 - }, - { - "l": "75.0", - "x": 12.5957, - "y": 49.8 - }, - { - "l": "75.0", - "x": 12.679, - "y": 50.1799 - }, - { - "l": "75.0", - "x": 12.7623, - "y": 50.6026 - }, - { - "l": "75.0", - "x": 12.8457, - "y": 51.0102 - }, - { - "l": "75.0", - "x": 12.929, - "y": 51.3796 - }, - { - "l": "75.0", - "x": 13.0123, - "y": 51.7903 - }, - { - "l": "75.0", - "x": 13.0957, - "y": 52.1856 - }, - { - "l": "75.0", - "x": 13.179, - "y": 52.5433 - }, - { - "l": "75.0", - "x": 13.2623, - "y": 52.9403 - }, - { - "l": "75.0", - "x": 13.3457, - "y": 53.3217 - }, - { - "l": "75.0", - "x": 13.429, - "y": 53.6659 - }, - { - "l": "75.0", - "x": 13.5123, - "y": 54.0468 - }, - { - "l": "75.0", - "x": 13.5957, - "y": 54.4123 - }, - { - "l": "75.0", - "x": 13.679, - "y": 54.741 - }, - { - "l": "75.0", - "x": 13.7623, - "y": 55.1039 - }, - { - "l": "75.0", - "x": 13.8457, - "y": 55.4523 - }, - { - "l": "75.0", - "x": 13.929, - "y": 55.765 - }, - { - "l": "75.0", - "x": 14.0123, - "y": 56.1102 - }, - { - "l": "75.0", - "x": 14.0957, - "y": 56.4403 - }, - { - "l": "75.0", - "x": 14.179, - "y": 56.7368 - }, - { - "l": "75.0", - "x": 14.2623, - "y": 57.0637 - }, - { - "l": "75.0", - "x": 14.3457, - "y": 57.376 - }, - { - "l": "75.0", - "x": 14.429, - "y": 57.6561 - }, - { - "l": "75.0", - "x": 14.5123, - "y": 57.9645 - }, - { - "l": "75.0", - "x": 14.5957, - "y": 58.2582 - }, - { - "l": "75.0", - "x": 14.679, - "y": 58.5227 - }, - { - "l": "75.0", - "x": 14.7623, - "y": 58.8129 - }, - { - "l": "75.0", - "x": 14.8457, - "y": 59.0895 - }, - { - "l": "75.0", - "x": 14.929, - "y": 59.3373 - }, - { - "l": "75.0", - "x": 15.0123, - "y": 59.6091 - }, - { - "l": "75.0", - "x": 15.0957, - "y": 59.869 - }, - { - "l": "75.0", - "x": 15.179, - "y": 60.1011 - }, - { - "l": "75.0", - "x": 15.2623, - "y": 60.3563 - }, - { - "l": "75.0", - "x": 15.3457, - "y": 60.5991 - }, - { - "l": "75.0", - "x": 15.429, - "y": 60.8147 - }, - { - "l": "75.0", - "x": 15.5123, - "y": 61.0531 - }, - { - "l": "75.0", - "x": 15.5957, - "y": 61.2836 - }, - { - "l": "75.0", - "x": 15.679, - "y": 61.4873 - }, - { - "l": "75.0", - "x": 15.7623, - "y": 61.7115 - }, - { - "l": "75.0", - "x": 15.8457, - "y": 61.9249 - }, - { - "l": "75.0", - "x": 15.929, - "y": 62.1162 - }, - { - "l": "75.0", - "x": 16.0123, - "y": 62.3266 - }, - { - "l": "75.0", - "x": 16.0957, - "y": 62.527 - }, - { - "l": "75.0", - "x": 16.179, - "y": 62.7066 - }, - { - "l": "75.0", - "x": 16.2623, - "y": 62.9045 - }, - { - "l": "75.0", - "x": 16.3457, - "y": 63.0939 - }, - { - "l": "75.0", - "x": 16.429, - "y": 63.2634 - }, - { - "l": "75.0", - "x": 16.5123, - "y": 63.4504 - }, - { - "l": "75.0", - "x": 16.5957, - "y": 63.6291 - }, - { - "l": "75.0", - "x": 16.679, - "y": 63.7899 - }, - { - "l": "75.0", - "x": 16.7623, - "y": 63.967 - }, - { - "l": "75.0", - "x": 16.8457, - "y": 64.1365 - }, - { - "l": "75.0", - "x": 16.929, - "y": 64.2891 - }, - { - "l": "75.0", - "x": 17.0123, - "y": 64.4578 - }, - { - "l": "75.0", - "x": 17.0957, - "y": 64.6192 - }, - { - "l": "75.0", - "x": 17.179, - "y": 64.7652 - }, - { - "l": "75.0", - "x": 17.2623, - "y": 64.9264 - }, - { - "l": "75.0", - "x": 17.3457, - "y": 65.0812 - }, - { - "l": "75.0", - "x": 17.429, - "y": 65.2209 - }, - { - "l": "75.0", - "x": 17.5123, - "y": 65.3756 - }, - { - "l": "75.0", - "x": 17.5957, - "y": 65.5247 - }, - { - "l": "75.0", - "x": 17.679, - "y": 65.6591 - }, - { - "l": "75.0", - "x": 17.7623, - "y": 65.8074 - }, - { - "l": "75.0", - "x": 17.8457, - "y": 65.9515 - }, - { - "l": "75.0", - "x": 17.929, - "y": 66.0817 - }, - { - "l": "75.0", - "x": 18.0123, - "y": 66.2259 - }, - { - "l": "75.0", - "x": 18.0957, - "y": 66.3641 - }, - { - "l": "75.0", - "x": 18.179, - "y": 66.4899 - }, - { - "l": "75.0", - "x": 18.2623, - "y": 66.6307 - }, - { - "l": "75.0", - "x": 18.3457, - "y": 66.7656 - }, - { - "l": "75.0", - "x": 18.429, - "y": 66.8878 - }, - { - "l": "75.0", - "x": 18.5123, - "y": 67.0243 - }, - { - "l": "75.0", - "x": 18.5957, - "y": 67.1555 - }, - { - "l": "75.0", - "x": 18.679, - "y": 67.2736 - }, - { - "l": "75.0", - "x": 18.7623, - "y": 67.4057 - }, - { - "l": "75.0", - "x": 18.8457, - "y": 67.5343 - }, - { - "l": "75.0", - "x": 18.929, - "y": 67.6519 - }, - { - "l": "75.0", - "x": 19.0123, - "y": 67.783 - }, - { - "l": "75.0", - "x": 19.0957, - "y": 67.9085 - }, - { - "l": "75.0", - "x": 19.179, - "y": 68.0226 - }, - { - "l": "75.0", - "x": 19.2623, - "y": 68.1463 - }, - { - "l": "75.0", - "x": 19.3457, - "y": 68.2667 - }, - { - "l": "75.0", - "x": 19.429, - "y": 68.3769 - }, - { - "l": "75.0", - "x": 19.5123, - "y": 68.5004 - }, - { - "l": "75.0", - "x": 19.5957, - "y": 68.6207 - }, - { - "l": "75.0", - "x": 19.679, - "y": 68.7307 - }, - { - "l": "75.0", - "x": 19.7623, - "y": 68.8542 - }, - { - "l": "75.0", - "x": 19.8457, - "y": 68.9743 - }, - { - "l": "75.0", - "x": 19.929, - "y": 69.0846 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 0.0, - "y": 3.6134 - }, - { - "l": "91.0", - "x": 0.0192, - "y": 3.7756 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 3.9377 - }, - { - "l": "91.0", - "x": 0.0575, - "y": 4.0997 - }, - { - "l": "91.0", - "x": 0.0767, - "y": 4.2617 - }, - { - "l": "91.0", - "x": 0.0958, - "y": 4.4114 - }, - { - "l": "91.0", - "x": 0.115, - "y": 4.5564 - }, - { - "l": "91.0", - "x": 0.1342, - "y": 4.7007 - }, - { - "l": "91.0", - "x": 0.1533, - "y": 4.8461 - }, - { - "l": "91.0", - "x": 0.1725, - "y": 4.9957 - }, - { - "l": "91.0", - "x": 0.1916, - "y": 5.1574 - }, - { - "l": "91.0", - "x": 0.2108, - "y": 5.3218 - }, - { - "l": "91.0", - "x": 0.23, - "y": 5.4877 - }, - { - "l": "91.0", - "x": 0.2491, - "y": 5.6539 - }, - { - "l": "91.0", - "x": 0.2683, - "y": 5.819 - }, - { - "l": "91.0", - "x": 0.2875, - "y": 5.9822 - }, - { - "l": "91.0", - "x": 0.3066, - "y": 6.1423 - }, - { - "l": "91.0", - "x": 0.3258, - "y": 6.2981 - }, - { - "l": "91.0", - "x": 0.345, - "y": 6.4419 - }, - { - "l": "91.0", - "x": 0.3641, - "y": 6.579 - }, - { - "l": "91.0", - "x": 0.3833, - "y": 6.7129 - }, - { - "l": "91.0", - "x": 0.4025, - "y": 6.8452 - }, - { - "l": "91.0", - "x": 0.4216, - "y": 6.9781 - }, - { - "l": "91.0", - "x": 0.4408, - "y": 7.1194 - }, - { - "l": "91.0", - "x": 0.46, - "y": 7.2605 - }, - { - "l": "91.0", - "x": 0.4791, - "y": 7.4005 - }, - { - "l": "91.0", - "x": 0.4983, - "y": 7.5384 - }, - { - "l": "91.0", - "x": 0.5175, - "y": 7.6722 - }, - { - "l": "91.0", - "x": 0.5366, - "y": 7.8022 - }, - { - "l": "91.0", - "x": 0.5558, - "y": 7.928 - }, - { - "l": "91.0", - "x": 0.5749, - "y": 8.049 - }, - { - "l": "91.0", - "x": 0.5941, - "y": 8.1599 - }, - { - "l": "91.0", - "x": 0.6133, - "y": 8.2643 - }, - { - "l": "91.0", - "x": 0.6324, - "y": 8.3654 - }, - { - "l": "91.0", - "x": 0.6516, - "y": 8.4644 - }, - { - "l": "91.0", - "x": 0.6708, - "y": 8.5631 - }, - { - "l": "91.0", - "x": 0.6899, - "y": 8.6684 - }, - { - "l": "91.0", - "x": 0.7091, - "y": 8.7734 - }, - { - "l": "91.0", - "x": 0.7283, - "y": 8.8776 - }, - { - "l": "91.0", - "x": 0.7474, - "y": 8.9802 - }, - { - "l": "91.0", - "x": 0.7666, - "y": 9.0802 - }, - { - "l": "91.0", - "x": 0.7858, - "y": 9.1775 - }, - { - "l": "91.0", - "x": 0.8049, - "y": 9.2717 - }, - { - "l": "91.0", - "x": 0.8241, - "y": 9.3626 - }, - { - "l": "91.0", - "x": 0.8433, - "y": 9.4463 - }, - { - "l": "91.0", - "x": 0.8624, - "y": 9.5252 - }, - { - "l": "91.0", - "x": 0.8816, - "y": 9.6016 - }, - { - "l": "91.0", - "x": 0.9008, - "y": 9.6766 - }, - { - "l": "91.0", - "x": 0.9199, - "y": 9.7513 - }, - { - "l": "91.0", - "x": 0.9391, - "y": 9.8314 - }, - { - "l": "91.0", - "x": 0.9582, - "y": 9.9114 - }, - { - "l": "91.0", - "x": 0.9774, - "y": 9.9911 - }, - { - "l": "91.0", - "x": 0.9966, - "y": 10.0698 - }, - { - "l": "91.0", - "x": 1.0157, - "y": 10.1468 - }, - { - "l": "91.0", - "x": 1.0349, - "y": 10.222 - }, - { - "l": "91.0", - "x": 1.0541, - "y": 10.2951 - }, - { - "l": "91.0", - "x": 1.0732, - "y": 10.3659 - }, - { - "l": "91.0", - "x": 1.0924, - "y": 10.4315 - }, - { - "l": "91.0", - "x": 1.1116, - "y": 10.4935 - }, - { - "l": "91.0", - "x": 1.1307, - "y": 10.5538 - }, - { - "l": "91.0", - "x": 1.1499, - "y": 10.6134 - }, - { - "l": "91.0", - "x": 1.1691, - "y": 10.673 - }, - { - "l": "91.0", - "x": 1.1882, - "y": 10.7371 - }, - { - "l": "91.0", - "x": 1.2074, - "y": 10.8017 - }, - { - "l": "91.0", - "x": 1.2266, - "y": 10.8665 - }, - { - "l": "91.0", - "x": 1.2457, - "y": 10.9308 - }, - { - "l": "91.0", - "x": 1.2649, - "y": 10.9944 - }, - { - "l": "91.0", - "x": 1.2841, - "y": 11.0568 - }, - { - "l": "91.0", - "x": 1.3032, - "y": 11.118 - }, - { - "l": "91.0", - "x": 1.3224, - "y": 11.1775 - }, - { - "l": "91.0", - "x": 1.3415, - "y": 11.2331 - }, - { - "l": "91.0", - "x": 1.3607, - "y": 11.2857 - }, - { - "l": "91.0", - "x": 1.3799, - "y": 11.3371 - }, - { - "l": "91.0", - "x": 1.399, - "y": 11.3881 - }, - { - "l": "91.0", - "x": 1.4182, - "y": 11.4393 - }, - { - "l": "91.0", - "x": 1.4374, - "y": 11.4943 - }, - { - "l": "91.0", - "x": 1.4565, - "y": 11.5502 - }, - { - "l": "91.0", - "x": 1.4757, - "y": 11.6062 - }, - { - "l": "91.0", - "x": 1.4949, - "y": 11.6621 - }, - { - "l": "91.0", - "x": 1.514, - "y": 11.7174 - }, - { - "l": "91.0", - "x": 1.5332, - "y": 11.772 - }, - { - "l": "91.0", - "x": 1.5524, - "y": 11.8254 - }, - { - "l": "91.0", - "x": 1.5715, - "y": 11.8776 - }, - { - "l": "91.0", - "x": 1.5907, - "y": 11.9266 - }, - { - "l": "91.0", - "x": 1.6099, - "y": 11.9729 - }, - { - "l": "91.0", - "x": 1.629, - "y": 12.0182 - }, - { - "l": "91.0", - "x": 1.6482, - "y": 12.0632 - }, - { - "l": "91.0", - "x": 1.6674, - "y": 12.1086 - }, - { - "l": "91.0", - "x": 1.6865, - "y": 12.1572 - }, - { - "l": "91.0", - "x": 1.7057, - "y": 12.2069 - }, - { - "l": "91.0", - "x": 1.7248, - "y": 12.2569 - }, - { - "l": "91.0", - "x": 1.744, - "y": 12.3069 - }, - { - "l": "91.0", - "x": 1.7632, - "y": 12.3567 - }, - { - "l": "91.0", - "x": 1.7823, - "y": 12.4059 - }, - { - "l": "91.0", - "x": 1.8015, - "y": 12.4543 - }, - { - "l": "91.0", - "x": 1.8207, - "y": 12.5017 - }, - { - "l": "91.0", - "x": 1.8398, - "y": 12.5466 - }, - { - "l": "91.0", - "x": 1.859, - "y": 12.5889 - }, - { - "l": "91.0", - "x": 1.8782, - "y": 12.6306 - }, - { - "l": "91.0", - "x": 1.8973, - "y": 12.6722 - }, - { - "l": "91.0", - "x": 1.9165, - "y": 12.7142 - }, - { - "l": "91.0", - "x": 1.9357, - "y": 12.7593 - }, - { - "l": "91.0", - "x": 1.9548, - "y": 12.8056 - }, - { - "l": "91.0", - "x": 1.974, - "y": 12.8525 - }, - { - "l": "91.0", - "x": 1.9932, - "y": 12.8995 - }, - { - "l": "91.0", - "x": 2.0123, - "y": 12.9465 - }, - { - "l": "91.0", - "x": 2.0957, - "y": 13.1423 - }, - { - "l": "91.0", - "x": 2.179, - "y": 13.3207 - }, - { - "l": "91.0", - "x": 2.2623, - "y": 13.5208 - }, - { - "l": "91.0", - "x": 2.3457, - "y": 13.7164 - }, - { - "l": "91.0", - "x": 2.429, - "y": 13.8965 - }, - { - "l": "91.0", - "x": 2.5123, - "y": 14.1008 - }, - { - "l": "91.0", - "x": 2.5957, - "y": 14.302 - }, - { - "l": "91.0", - "x": 2.679, - "y": 14.4885 - }, - { - "l": "91.0", - "x": 2.7623, - "y": 14.7002 - }, - { - "l": "91.0", - "x": 2.8457, - "y": 14.9087 - }, - { - "l": "91.0", - "x": 2.929, - "y": 15.1014 - }, - { - "l": "91.0", - "x": 3.0123, - "y": 15.3197 - }, - { - "l": "91.0", - "x": 3.0957, - "y": 15.5342 - }, - { - "l": "91.0", - "x": 3.179, - "y": 15.7322 - }, - { - "l": "91.0", - "x": 3.2623, - "y": 15.9561 - }, - { - "l": "91.0", - "x": 3.3457, - "y": 16.1756 - }, - { - "l": "91.0", - "x": 3.429, - "y": 16.3775 - }, - { - "l": "91.0", - "x": 3.5123, - "y": 16.6049 - }, - { - "l": "91.0", - "x": 3.5957, - "y": 16.8268 - }, - { - "l": "91.0", - "x": 3.679, - "y": 17.0303 - }, - { - "l": "91.0", - "x": 3.7623, - "y": 17.2591 - }, - { - "l": "91.0", - "x": 3.8457, - "y": 17.4825 - }, - { - "l": "91.0", - "x": 3.929, - "y": 17.6872 - }, - { - "l": "91.0", - "x": 4.0123, - "y": 17.9173 - }, - { - "l": "91.0", - "x": 4.0957, - "y": 18.1415 - }, - { - "l": "91.0", - "x": 4.179, - "y": 18.3468 - }, - { - "l": "91.0", - "x": 4.2623, - "y": 18.5776 - }, - { - "l": "91.0", - "x": 4.3457, - "y": 18.8026 - }, - { - "l": "91.0", - "x": 4.429, - "y": 19.009 - }, - { - "l": "91.0", - "x": 4.5123, - "y": 19.2412 - }, - { - "l": "91.0", - "x": 4.5957, - "y": 19.4683 - }, - { - "l": "91.0", - "x": 4.679, - "y": 19.6771 - }, - { - "l": "91.0", - "x": 4.7623, - "y": 19.9129 - }, - { - "l": "91.0", - "x": 4.8457, - "y": 20.144 - }, - { - "l": "91.0", - "x": 4.929, - "y": 20.3566 - }, - { - "l": "91.0", - "x": 5.0123, - "y": 20.5967 - }, - { - "l": "91.0", - "x": 5.0957, - "y": 20.8319 - }, - { - "l": "91.0", - "x": 5.179, - "y": 21.0487 - }, - { - "l": "91.0", - "x": 5.2623, - "y": 21.2942 - }, - { - "l": "91.0", - "x": 5.3457, - "y": 21.5356 - }, - { - "l": "91.0", - "x": 5.429, - "y": 21.7592 - }, - { - "l": "91.0", - "x": 5.5123, - "y": 22.0132 - }, - { - "l": "91.0", - "x": 5.5957, - "y": 22.2639 - }, - { - "l": "91.0", - "x": 5.679, - "y": 22.4965 - }, - { - "l": "91.0", - "x": 5.7623, - "y": 22.7613 - }, - { - "l": "91.0", - "x": 5.8457, - "y": 23.0229 - }, - { - "l": "91.0", - "x": 5.929, - "y": 23.2656 - }, - { - "l": "91.0", - "x": 6.0123, - "y": 23.5417 - }, - { - "l": "91.0", - "x": 6.0957, - "y": 23.8144 - }, - { - "l": "91.0", - "x": 6.179, - "y": 24.0676 - }, - { - "l": "91.0", - "x": 6.2623, - "y": 24.356 - }, - { - "l": "91.0", - "x": 6.3457, - "y": 24.6416 - }, - { - "l": "91.0", - "x": 6.429, - "y": 24.9074 - }, - { - "l": "91.0", - "x": 6.5123, - "y": 25.2113 - }, - { - "l": "91.0", - "x": 6.5957, - "y": 25.513 - }, - { - "l": "91.0", - "x": 6.679, - "y": 25.7946 - }, - { - "l": "91.0", - "x": 6.7623, - "y": 26.1169 - }, - { - "l": "91.0", - "x": 6.8457, - "y": 26.4372 - }, - { - "l": "91.0", - "x": 6.929, - "y": 26.7365 - }, - { - "l": "91.0", - "x": 7.0123, - "y": 27.0792 - }, - { - "l": "91.0", - "x": 7.0957, - "y": 27.4196 - }, - { - "l": "91.0", - "x": 7.179, - "y": 27.7372 - }, - { - "l": "91.0", - "x": 7.2623, - "y": 28.1004 - }, - { - "l": "91.0", - "x": 7.3457, - "y": 28.4604 - }, - { - "l": "91.0", - "x": 7.429, - "y": 28.7956 - }, - { - "l": "91.0", - "x": 7.5123, - "y": 29.1777 - }, - { - "l": "91.0", - "x": 7.5957, - "y": 29.5554 - }, - { - "l": "91.0", - "x": 7.679, - "y": 29.9061 - }, - { - "l": "91.0", - "x": 7.7623, - "y": 30.3051 - }, - { - "l": "91.0", - "x": 7.8457, - "y": 30.6991 - }, - { - "l": "91.0", - "x": 7.929, - "y": 31.0646 - }, - { - "l": "91.0", - "x": 8.0123, - "y": 31.4805 - }, - { - "l": "91.0", - "x": 8.0957, - "y": 31.8911 - }, - { - "l": "91.0", - "x": 8.179, - "y": 32.272 - }, - { - "l": "91.0", - "x": 8.2623, - "y": 32.7048 - }, - { - "l": "91.0", - "x": 8.3457, - "y": 33.1315 - }, - { - "l": "91.0", - "x": 8.429, - "y": 33.5265 - }, - { - "l": "91.0", - "x": 8.5123, - "y": 33.9746 - }, - { - "l": "91.0", - "x": 8.5957, - "y": 34.4155 - }, - { - "l": "91.0", - "x": 8.679, - "y": 34.8228 - }, - { - "l": "91.0", - "x": 8.7623, - "y": 35.2843 - }, - { - "l": "91.0", - "x": 8.8457, - "y": 35.7374 - }, - { - "l": "91.0", - "x": 8.929, - "y": 36.1553 - }, - { - "l": "91.0", - "x": 9.0123, - "y": 36.6276 - }, - { - "l": "91.0", - "x": 9.0957, - "y": 37.0904 - }, - { - "l": "91.0", - "x": 9.179, - "y": 37.5162 - }, - { - "l": "91.0", - "x": 9.2623, - "y": 37.9963 - }, - { - "l": "91.0", - "x": 9.3457, - "y": 38.4655 - }, - { - "l": "91.0", - "x": 9.429, - "y": 38.8962 - }, - { - "l": "91.0", - "x": 9.5123, - "y": 39.3809 - }, - { - "l": "91.0", - "x": 9.5957, - "y": 39.854 - }, - { - "l": "91.0", - "x": 9.679, - "y": 40.2881 - }, - { - "l": "91.0", - "x": 9.7623, - "y": 40.7769 - }, - { - "l": "91.0", - "x": 9.8457, - "y": 41.2547 - }, - { - "l": "91.0", - "x": 9.929, - "y": 41.6939 - }, - { - "l": "91.0", - "x": 10.0123, - "y": 42.1895 - }, - { - "l": "91.0", - "x": 10.0957, - "y": 42.6746 - }, - { - "l": "91.0", - "x": 10.179, - "y": 43.121 - }, - { - "l": "91.0", - "x": 10.2623, - "y": 43.6251 - }, - { - "l": "91.0", - "x": 10.3457, - "y": 44.1189 - }, - { - "l": "91.0", - "x": 10.429, - "y": 44.5736 - }, - { - "l": "91.0", - "x": 10.5123, - "y": 45.0871 - }, - { - "l": "91.0", - "x": 10.5957, - "y": 45.59 - }, - { - "l": "91.0", - "x": 10.679, - "y": 46.0528 - }, - { - "l": "91.0", - "x": 10.7623, - "y": 46.5749 - }, - { - "l": "91.0", - "x": 10.8457, - "y": 47.0856 - }, - { - "l": "91.0", - "x": 10.929, - "y": 47.5552 - }, - { - "l": "91.0", - "x": 11.0123, - "y": 48.0844 - }, - { - "l": "91.0", - "x": 11.0957, - "y": 48.6016 - }, - { - "l": "91.0", - "x": 11.179, - "y": 49.0762 - }, - { - "l": "91.0", - "x": 11.2623, - "y": 49.61 - }, - { - "l": "91.0", - "x": 11.3457, - "y": 50.1304 - }, - { - "l": "91.0", - "x": 11.429, - "y": 50.6066 - }, - { - "l": "91.0", - "x": 11.5123, - "y": 51.1409 - }, - { - "l": "91.0", - "x": 11.5957, - "y": 51.6603 - }, - { - "l": "91.0", - "x": 11.679, - "y": 52.1343 - }, - { - "l": "91.0", - "x": 11.7623, - "y": 52.6648 - }, - { - "l": "91.0", - "x": 11.8457, - "y": 53.179 - }, - { - "l": "91.0", - "x": 11.929, - "y": 53.6473 - }, - { - "l": "91.0", - "x": 12.0123, - "y": 54.1703 - }, - { - "l": "91.0", - "x": 12.0957, - "y": 54.6765 - }, - { - "l": "91.0", - "x": 12.179, - "y": 55.1367 - }, - { - "l": "91.0", - "x": 12.2623, - "y": 55.6503 - }, - { - "l": "91.0", - "x": 12.3457, - "y": 56.1468 - }, - { - "l": "91.0", - "x": 12.429, - "y": 56.5978 - }, - { - "l": "91.0", - "x": 12.5123, - "y": 57.1003 - }, - { - "l": "91.0", - "x": 12.5957, - "y": 57.5855 - }, - { - "l": "91.0", - "x": 12.679, - "y": 58.0261 - }, - { - "l": "91.0", - "x": 12.7623, - "y": 58.5163 - }, - { - "l": "91.0", - "x": 12.8457, - "y": 58.9889 - }, - { - "l": "91.0", - "x": 12.929, - "y": 59.4171 - }, - { - "l": "91.0", - "x": 13.0123, - "y": 59.8929 - }, - { - "l": "91.0", - "x": 13.0957, - "y": 60.3506 - }, - { - "l": "91.0", - "x": 13.179, - "y": 60.7646 - }, - { - "l": "91.0", - "x": 13.2623, - "y": 61.2238 - }, - { - "l": "91.0", - "x": 13.3457, - "y": 61.6648 - }, - { - "l": "91.0", - "x": 13.429, - "y": 62.0623 - }, - { - "l": "91.0", - "x": 13.5123, - "y": 62.5018 - }, - { - "l": "91.0", - "x": 13.5957, - "y": 62.9232 - }, - { - "l": "91.0", - "x": 13.679, - "y": 63.3019 - }, - { - "l": "91.0", - "x": 13.7623, - "y": 63.7193 - }, - { - "l": "91.0", - "x": 13.8457, - "y": 64.1198 - }, - { - "l": "91.0", - "x": 13.929, - "y": 64.4789 - }, - { - "l": "91.0", - "x": 14.0123, - "y": 64.8748 - }, - { - "l": "91.0", - "x": 14.0957, - "y": 65.2532 - }, - { - "l": "91.0", - "x": 14.179, - "y": 65.5927 - }, - { - "l": "91.0", - "x": 14.2623, - "y": 65.9667 - }, - { - "l": "91.0", - "x": 14.3457, - "y": 66.3236 - }, - { - "l": "91.0", - "x": 14.429, - "y": 66.6436 - }, - { - "l": "91.0", - "x": 14.5123, - "y": 66.9954 - }, - { - "l": "91.0", - "x": 14.5957, - "y": 67.3302 - }, - { - "l": "91.0", - "x": 14.679, - "y": 67.6315 - }, - { - "l": "91.0", - "x": 14.7623, - "y": 67.9617 - }, - { - "l": "91.0", - "x": 14.8457, - "y": 68.2761 - }, - { - "l": "91.0", - "x": 14.929, - "y": 68.5575 - }, - { - "l": "91.0", - "x": 15.0123, - "y": 68.8659 - }, - { - "l": "91.0", - "x": 15.0957, - "y": 69.1605 - }, - { - "l": "91.0", - "x": 15.179, - "y": 69.4233 - }, - { - "l": "91.0", - "x": 15.2623, - "y": 69.7119 - }, - { - "l": "91.0", - "x": 15.3457, - "y": 69.9861 - }, - { - "l": "91.0", - "x": 15.429, - "y": 70.2293 - }, - { - "l": "91.0", - "x": 15.5123, - "y": 70.498 - }, - { - "l": "91.0", - "x": 15.5957, - "y": 70.7574 - }, - { - "l": "91.0", - "x": 15.679, - "y": 70.9865 - }, - { - "l": "91.0", - "x": 15.7623, - "y": 71.2381 - }, - { - "l": "91.0", - "x": 15.8457, - "y": 71.4774 - }, - { - "l": "91.0", - "x": 15.929, - "y": 71.6914 - }, - { - "l": "91.0", - "x": 16.0123, - "y": 71.9267 - }, - { - "l": "91.0", - "x": 16.0957, - "y": 72.1502 - }, - { - "l": "91.0", - "x": 16.179, - "y": 72.3502 - }, - { - "l": "91.0", - "x": 16.2623, - "y": 72.5702 - }, - { - "l": "91.0", - "x": 16.3457, - "y": 72.7806 - }, - { - "l": "91.0", - "x": 16.429, - "y": 72.9685 - }, - { - "l": "91.0", - "x": 16.5123, - "y": 73.1754 - }, - { - "l": "91.0", - "x": 16.5957, - "y": 73.3727 - }, - { - "l": "91.0", - "x": 16.679, - "y": 73.5501 - }, - { - "l": "91.0", - "x": 16.7623, - "y": 73.7451 - }, - { - "l": "91.0", - "x": 16.8457, - "y": 73.9313 - }, - { - "l": "91.0", - "x": 16.929, - "y": 74.0988 - }, - { - "l": "91.0", - "x": 17.0123, - "y": 74.2836 - }, - { - "l": "91.0", - "x": 17.0957, - "y": 74.4602 - }, - { - "l": "91.0", - "x": 17.179, - "y": 74.6196 - }, - { - "l": "91.0", - "x": 17.2623, - "y": 74.7955 - }, - { - "l": "91.0", - "x": 17.3457, - "y": 74.9641 - }, - { - "l": "91.0", - "x": 17.429, - "y": 75.116 - }, - { - "l": "91.0", - "x": 17.5123, - "y": 75.2842 - }, - { - "l": "91.0", - "x": 17.5957, - "y": 75.4459 - }, - { - "l": "91.0", - "x": 17.679, - "y": 75.5916 - }, - { - "l": "91.0", - "x": 17.7623, - "y": 75.7522 - }, - { - "l": "91.0", - "x": 17.8457, - "y": 75.908 - }, - { - "l": "91.0", - "x": 17.929, - "y": 76.0487 - }, - { - "l": "91.0", - "x": 18.0123, - "y": 76.2044 - }, - { - "l": "91.0", - "x": 18.0957, - "y": 76.3533 - }, - { - "l": "91.0", - "x": 18.179, - "y": 76.4889 - }, - { - "l": "91.0", - "x": 18.2623, - "y": 76.6405 - }, - { - "l": "91.0", - "x": 18.3457, - "y": 76.7855 - }, - { - "l": "91.0", - "x": 18.429, - "y": 76.9167 - }, - { - "l": "91.0", - "x": 18.5123, - "y": 77.0632 - }, - { - "l": "91.0", - "x": 18.5957, - "y": 77.2039 - }, - { - "l": "91.0", - "x": 18.679, - "y": 77.3304 - }, - { - "l": "91.0", - "x": 18.7623, - "y": 77.4718 - }, - { - "l": "91.0", - "x": 18.8457, - "y": 77.6093 - }, - { - "l": "91.0", - "x": 18.929, - "y": 77.7351 - }, - { - "l": "91.0", - "x": 19.0123, - "y": 77.8751 - }, - { - "l": "91.0", - "x": 19.0957, - "y": 78.0091 - }, - { - "l": "91.0", - "x": 19.179, - "y": 78.1306 - }, - { - "l": "91.0", - "x": 19.2623, - "y": 78.2623 - }, - { - "l": "91.0", - "x": 19.3457, - "y": 78.3904 - }, - { - "l": "91.0", - "x": 19.429, - "y": 78.5075 - }, - { - "l": "91.0", - "x": 19.5123, - "y": 78.6388 - }, - { - "l": "91.0", - "x": 19.5957, - "y": 78.7666 - }, - { - "l": "91.0", - "x": 19.679, - "y": 78.8835 - }, - { - "l": "91.0", - "x": 19.7623, - "y": 79.0145 - }, - { - "l": "91.0", - "x": 19.8457, - "y": 79.142 - }, - { - "l": "91.0", - "x": 19.929, - "y": 79.259 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 0.0, - "y": 3.9511 - }, - { - "l": "98.0", - "x": 0.0192, - "y": 4.1287 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 4.3062 - }, - { - "l": "98.0", - "x": 0.0575, - "y": 4.4837 - }, - { - "l": "98.0", - "x": 0.0767, - "y": 4.6612 - }, - { - "l": "98.0", - "x": 0.0958, - "y": 4.8252 - }, - { - "l": "98.0", - "x": 0.115, - "y": 4.984 - }, - { - "l": "98.0", - "x": 0.1342, - "y": 5.1421 - }, - { - "l": "98.0", - "x": 0.1533, - "y": 5.3015 - }, - { - "l": "98.0", - "x": 0.1725, - "y": 5.4655 - }, - { - "l": "98.0", - "x": 0.1916, - "y": 5.6428 - }, - { - "l": "98.0", - "x": 0.2108, - "y": 5.823 - }, - { - "l": "98.0", - "x": 0.23, - "y": 6.0049 - }, - { - "l": "98.0", - "x": 0.2491, - "y": 6.1872 - }, - { - "l": "98.0", - "x": 0.2683, - "y": 6.3684 - }, - { - "l": "98.0", - "x": 0.2875, - "y": 6.5474 - }, - { - "l": "98.0", - "x": 0.3066, - "y": 6.723 - }, - { - "l": "98.0", - "x": 0.3258, - "y": 6.8941 - }, - { - "l": "98.0", - "x": 0.345, - "y": 7.052 - }, - { - "l": "98.0", - "x": 0.3641, - "y": 7.2025 - }, - { - "l": "98.0", - "x": 0.3833, - "y": 7.3495 - }, - { - "l": "98.0", - "x": 0.4025, - "y": 7.4948 - }, - { - "l": "98.0", - "x": 0.4216, - "y": 7.6408 - }, - { - "l": "98.0", - "x": 0.4408, - "y": 7.796 - }, - { - "l": "98.0", - "x": 0.46, - "y": 7.9511 - }, - { - "l": "98.0", - "x": 0.4791, - "y": 8.1051 - }, - { - "l": "98.0", - "x": 0.4983, - "y": 8.2567 - }, - { - "l": "98.0", - "x": 0.5175, - "y": 8.4039 - }, - { - "l": "98.0", - "x": 0.5366, - "y": 8.5469 - }, - { - "l": "98.0", - "x": 0.5558, - "y": 8.6854 - }, - { - "l": "98.0", - "x": 0.5749, - "y": 8.8186 - }, - { - "l": "98.0", - "x": 0.5941, - "y": 8.9407 - }, - { - "l": "98.0", - "x": 0.6133, - "y": 9.0557 - }, - { - "l": "98.0", - "x": 0.6324, - "y": 9.167 - }, - { - "l": "98.0", - "x": 0.6516, - "y": 9.2761 - }, - { - "l": "98.0", - "x": 0.6708, - "y": 9.3849 - }, - { - "l": "98.0", - "x": 0.6899, - "y": 9.501 - }, - { - "l": "98.0", - "x": 0.7091, - "y": 9.6169 - }, - { - "l": "98.0", - "x": 0.7283, - "y": 9.7318 - }, - { - "l": "98.0", - "x": 0.7474, - "y": 9.8451 - }, - { - "l": "98.0", - "x": 0.7666, - "y": 9.9554 - }, - { - "l": "98.0", - "x": 0.7858, - "y": 10.0629 - }, - { - "l": "98.0", - "x": 0.8049, - "y": 10.167 - }, - { - "l": "98.0", - "x": 0.8241, - "y": 10.2674 - }, - { - "l": "98.0", - "x": 0.8433, - "y": 10.36 - }, - { - "l": "98.0", - "x": 0.8624, - "y": 10.4471 - }, - { - "l": "98.0", - "x": 0.8816, - "y": 10.5316 - }, - { - "l": "98.0", - "x": 0.9008, - "y": 10.6146 - }, - { - "l": "98.0", - "x": 0.9199, - "y": 10.6973 - }, - { - "l": "98.0", - "x": 0.9391, - "y": 10.7859 - }, - { - "l": "98.0", - "x": 0.9582, - "y": 10.8746 - }, - { - "l": "98.0", - "x": 0.9774, - "y": 10.9628 - }, - { - "l": "98.0", - "x": 0.9966, - "y": 11.0501 - }, - { - "l": "98.0", - "x": 1.0157, - "y": 11.1354 - }, - { - "l": "98.0", - "x": 1.0349, - "y": 11.2187 - }, - { - "l": "98.0", - "x": 1.0541, - "y": 11.2999 - }, - { - "l": "98.0", - "x": 1.0732, - "y": 11.3784 - }, - { - "l": "98.0", - "x": 1.0924, - "y": 11.4512 - }, - { - "l": "98.0", - "x": 1.1116, - "y": 11.52 - }, - { - "l": "98.0", - "x": 1.1307, - "y": 11.587 - }, - { - "l": "98.0", - "x": 1.1499, - "y": 11.6531 - }, - { - "l": "98.0", - "x": 1.1691, - "y": 11.7194 - }, - { - "l": "98.0", - "x": 1.1882, - "y": 11.7906 - }, - { - "l": "98.0", - "x": 1.2074, - "y": 11.8625 - }, - { - "l": "98.0", - "x": 1.2266, - "y": 11.9344 - }, - { - "l": "98.0", - "x": 1.2457, - "y": 12.006 - }, - { - "l": "98.0", - "x": 1.2649, - "y": 12.0767 - }, - { - "l": "98.0", - "x": 1.2841, - "y": 12.1462 - }, - { - "l": "98.0", - "x": 1.3032, - "y": 12.2143 - }, - { - "l": "98.0", - "x": 1.3224, - "y": 12.2805 - }, - { - "l": "98.0", - "x": 1.3415, - "y": 12.3425 - }, - { - "l": "98.0", - "x": 1.3607, - "y": 12.401 - }, - { - "l": "98.0", - "x": 1.3799, - "y": 12.4583 - }, - { - "l": "98.0", - "x": 1.399, - "y": 12.5151 - }, - { - "l": "98.0", - "x": 1.4182, - "y": 12.5722 - }, - { - "l": "98.0", - "x": 1.4374, - "y": 12.6335 - }, - { - "l": "98.0", - "x": 1.4565, - "y": 12.6958 - }, - { - "l": "98.0", - "x": 1.4757, - "y": 12.7583 - }, - { - "l": "98.0", - "x": 1.4949, - "y": 12.8207 - }, - { - "l": "98.0", - "x": 1.514, - "y": 12.8825 - }, - { - "l": "98.0", - "x": 1.5332, - "y": 12.9433 - }, - { - "l": "98.0", - "x": 1.5524, - "y": 13.0031 - }, - { - "l": "98.0", - "x": 1.5715, - "y": 13.0613 - }, - { - "l": "98.0", - "x": 1.5907, - "y": 13.1161 - }, - { - "l": "98.0", - "x": 1.6099, - "y": 13.1677 - }, - { - "l": "98.0", - "x": 1.629, - "y": 13.2184 - }, - { - "l": "98.0", - "x": 1.6482, - "y": 13.2688 - }, - { - "l": "98.0", - "x": 1.6674, - "y": 13.3195 - }, - { - "l": "98.0", - "x": 1.6865, - "y": 13.3739 - }, - { - "l": "98.0", - "x": 1.7057, - "y": 13.4295 - }, - { - "l": "98.0", - "x": 1.7248, - "y": 13.4855 - }, - { - "l": "98.0", - "x": 1.744, - "y": 13.5415 - }, - { - "l": "98.0", - "x": 1.7632, - "y": 13.5972 - }, - { - "l": "98.0", - "x": 1.7823, - "y": 13.6523 - }, - { - "l": "98.0", - "x": 1.8015, - "y": 13.7065 - }, - { - "l": "98.0", - "x": 1.8207, - "y": 13.7597 - }, - { - "l": "98.0", - "x": 1.8398, - "y": 13.8099 - }, - { - "l": "98.0", - "x": 1.859, - "y": 13.8574 - }, - { - "l": "98.0", - "x": 1.8782, - "y": 13.9041 - }, - { - "l": "98.0", - "x": 1.8973, - "y": 13.9508 - }, - { - "l": "98.0", - "x": 1.9165, - "y": 13.9979 - }, - { - "l": "98.0", - "x": 1.9357, - "y": 14.0485 - }, - { - "l": "98.0", - "x": 1.9548, - "y": 14.1005 - }, - { - "l": "98.0", - "x": 1.974, - "y": 14.1531 - }, - { - "l": "98.0", - "x": 1.9932, - "y": 14.206 - }, - { - "l": "98.0", - "x": 2.0123, - "y": 14.2588 - }, - { - "l": "98.0", - "x": 2.0957, - "y": 14.4789 - }, - { - "l": "98.0", - "x": 2.179, - "y": 14.6795 - }, - { - "l": "98.0", - "x": 2.2623, - "y": 14.905 - }, - { - "l": "98.0", - "x": 2.3457, - "y": 15.1255 - }, - { - "l": "98.0", - "x": 2.429, - "y": 15.329 - }, - { - "l": "98.0", - "x": 2.5123, - "y": 15.5598 - }, - { - "l": "98.0", - "x": 2.5957, - "y": 15.7875 - }, - { - "l": "98.0", - "x": 2.679, - "y": 15.9988 - }, - { - "l": "98.0", - "x": 2.7623, - "y": 16.2389 - }, - { - "l": "98.0", - "x": 2.8457, - "y": 16.4758 - }, - { - "l": "98.0", - "x": 2.929, - "y": 16.695 - }, - { - "l": "98.0", - "x": 3.0123, - "y": 16.9437 - }, - { - "l": "98.0", - "x": 3.0957, - "y": 17.1884 - }, - { - "l": "98.0", - "x": 3.179, - "y": 17.4146 - }, - { - "l": "98.0", - "x": 3.2623, - "y": 17.6708 - }, - { - "l": "98.0", - "x": 3.3457, - "y": 17.9225 - }, - { - "l": "98.0", - "x": 3.429, - "y": 18.1543 - }, - { - "l": "98.0", - "x": 3.5123, - "y": 18.4159 - }, - { - "l": "98.0", - "x": 3.5957, - "y": 18.6716 - }, - { - "l": "98.0", - "x": 3.679, - "y": 18.9064 - }, - { - "l": "98.0", - "x": 3.7623, - "y": 19.1711 - }, - { - "l": "98.0", - "x": 3.8457, - "y": 19.4298 - }, - { - "l": "98.0", - "x": 3.929, - "y": 19.6674 - }, - { - "l": "98.0", - "x": 4.0123, - "y": 19.935 - }, - { - "l": "98.0", - "x": 4.0957, - "y": 20.1963 - }, - { - "l": "98.0", - "x": 4.179, - "y": 20.436 - }, - { - "l": "98.0", - "x": 4.2623, - "y": 20.7059 - }, - { - "l": "98.0", - "x": 4.3457, - "y": 20.9696 - }, - { - "l": "98.0", - "x": 4.429, - "y": 21.2119 - }, - { - "l": "98.0", - "x": 4.5123, - "y": 21.4852 - }, - { - "l": "98.0", - "x": 4.5957, - "y": 21.7529 - }, - { - "l": "98.0", - "x": 4.679, - "y": 21.9995 - }, - { - "l": "98.0", - "x": 4.7623, - "y": 22.2785 - }, - { - "l": "98.0", - "x": 4.8457, - "y": 22.5525 - }, - { - "l": "98.0", - "x": 4.929, - "y": 22.8051 - }, - { - "l": "98.0", - "x": 5.0123, - "y": 23.0908 - }, - { - "l": "98.0", - "x": 5.0957, - "y": 23.3713 - }, - { - "l": "98.0", - "x": 5.179, - "y": 23.6303 - }, - { - "l": "98.0", - "x": 5.2623, - "y": 23.9241 - }, - { - "l": "98.0", - "x": 5.3457, - "y": 24.2136 - }, - { - "l": "98.0", - "x": 5.429, - "y": 24.4822 - }, - { - "l": "98.0", - "x": 5.5123, - "y": 24.7877 - }, - { - "l": "98.0", - "x": 5.5957, - "y": 25.0898 - }, - { - "l": "98.0", - "x": 5.679, - "y": 25.3706 - }, - { - "l": "98.0", - "x": 5.7623, - "y": 25.6907 - }, - { - "l": "98.0", - "x": 5.8457, - "y": 26.0074 - }, - { - "l": "98.0", - "x": 5.929, - "y": 26.3015 - }, - { - "l": "98.0", - "x": 6.0123, - "y": 26.6366 - }, - { - "l": "98.0", - "x": 6.0957, - "y": 26.968 - }, - { - "l": "98.0", - "x": 6.179, - "y": 27.2761 - }, - { - "l": "98.0", - "x": 6.2623, - "y": 27.6275 - }, - { - "l": "98.0", - "x": 6.3457, - "y": 27.9757 - }, - { - "l": "98.0", - "x": 6.429, - "y": 28.3001 - }, - { - "l": "98.0", - "x": 6.5123, - "y": 28.6712 - }, - { - "l": "98.0", - "x": 6.5957, - "y": 29.0399 - }, - { - "l": "98.0", - "x": 6.679, - "y": 29.3841 - }, - { - "l": "98.0", - "x": 6.7623, - "y": 29.7783 - }, - { - "l": "98.0", - "x": 6.8457, - "y": 30.1701 - }, - { - "l": "98.0", - "x": 6.929, - "y": 30.5361 - }, - { - "l": "98.0", - "x": 7.0123, - "y": 30.9553 - }, - { - "l": "98.0", - "x": 7.0957, - "y": 31.3716 - }, - { - "l": "98.0", - "x": 7.179, - "y": 31.76 - }, - { - "l": "98.0", - "x": 7.2623, - "y": 32.2038 - }, - { - "l": "98.0", - "x": 7.3457, - "y": 32.6437 - }, - { - "l": "98.0", - "x": 7.429, - "y": 33.0529 - }, - { - "l": "98.0", - "x": 7.5123, - "y": 33.5192 - }, - { - "l": "98.0", - "x": 7.5957, - "y": 33.9798 - }, - { - "l": "98.0", - "x": 7.679, - "y": 34.407 - }, - { - "l": "98.0", - "x": 7.7623, - "y": 34.8927 - }, - { - "l": "98.0", - "x": 7.8457, - "y": 35.3718 - }, - { - "l": "98.0", - "x": 7.929, - "y": 35.8158 - }, - { - "l": "98.0", - "x": 8.0123, - "y": 36.3204 - }, - { - "l": "98.0", - "x": 8.0957, - "y": 36.818 - }, - { - "l": "98.0", - "x": 8.179, - "y": 37.2788 - }, - { - "l": "98.0", - "x": 8.2623, - "y": 37.8018 - }, - { - "l": "98.0", - "x": 8.3457, - "y": 38.3165 - }, - { - "l": "98.0", - "x": 8.429, - "y": 38.7921 - }, - { - "l": "98.0", - "x": 8.5123, - "y": 39.3307 - }, - { - "l": "98.0", - "x": 8.5957, - "y": 39.8597 - }, - { - "l": "98.0", - "x": 8.679, - "y": 40.3474 - }, - { - "l": "98.0", - "x": 8.7623, - "y": 40.8988 - }, - { - "l": "98.0", - "x": 8.8457, - "y": 41.4391 - }, - { - "l": "98.0", - "x": 8.929, - "y": 41.9363 - }, - { - "l": "98.0", - "x": 9.0123, - "y": 42.497 - }, - { - "l": "98.0", - "x": 9.0957, - "y": 43.0451 - }, - { - "l": "98.0", - "x": 9.179, - "y": 43.5482 - }, - { - "l": "98.0", - "x": 9.2623, - "y": 44.1141 - }, - { - "l": "98.0", - "x": 9.3457, - "y": 44.6657 - }, - { - "l": "98.0", - "x": 9.429, - "y": 45.1708 - }, - { - "l": "98.0", - "x": 9.5123, - "y": 45.7379 - }, - { - "l": "98.0", - "x": 9.5957, - "y": 46.29 - }, - { - "l": "98.0", - "x": 9.679, - "y": 46.7954 - }, - { - "l": "98.0", - "x": 9.7623, - "y": 47.3633 - }, - { - "l": "98.0", - "x": 9.8457, - "y": 47.9172 - }, - { - "l": "98.0", - "x": 9.929, - "y": 48.4254 - }, - { - "l": "98.0", - "x": 10.0123, - "y": 48.9977 - }, - { - "l": "98.0", - "x": 10.0957, - "y": 49.5569 - }, - { - "l": "98.0", - "x": 10.179, - "y": 50.0707 - }, - { - "l": "98.0", - "x": 10.2623, - "y": 50.6499 - }, - { - "l": "98.0", - "x": 10.3457, - "y": 51.2165 - }, - { - "l": "98.0", - "x": 10.429, - "y": 51.7376 - }, - { - "l": "98.0", - "x": 10.5123, - "y": 52.3254 - }, - { - "l": "98.0", - "x": 10.5957, - "y": 52.9003 - }, - { - "l": "98.0", - "x": 10.679, - "y": 53.4289 - }, - { - "l": "98.0", - "x": 10.7623, - "y": 54.0246 - }, - { - "l": "98.0", - "x": 10.8457, - "y": 54.6069 - }, - { - "l": "98.0", - "x": 10.929, - "y": 55.1419 - }, - { - "l": "98.0", - "x": 11.0123, - "y": 55.7446 - }, - { - "l": "98.0", - "x": 11.0957, - "y": 56.3333 - }, - { - "l": "98.0", - "x": 11.179, - "y": 56.8733 - }, - { - "l": "98.0", - "x": 11.2623, - "y": 57.4806 - }, - { - "l": "98.0", - "x": 11.3457, - "y": 58.0724 - }, - { - "l": "98.0", - "x": 11.429, - "y": 58.6142 - }, - { - "l": "98.0", - "x": 11.5123, - "y": 59.222 - }, - { - "l": "98.0", - "x": 11.5957, - "y": 59.813 - }, - { - "l": "98.0", - "x": 11.679, - "y": 60.3526 - }, - { - "l": "98.0", - "x": 11.7623, - "y": 60.9563 - }, - { - "l": "98.0", - "x": 11.8457, - "y": 61.5418 - }, - { - "l": "98.0", - "x": 11.929, - "y": 62.0752 - }, - { - "l": "98.0", - "x": 12.0123, - "y": 62.6711 - }, - { - "l": "98.0", - "x": 12.0957, - "y": 63.2481 - }, - { - "l": "98.0", - "x": 12.179, - "y": 63.7729 - }, - { - "l": "98.0", - "x": 12.2623, - "y": 64.3589 - }, - { - "l": "98.0", - "x": 12.3457, - "y": 64.9256 - }, - { - "l": "98.0", - "x": 12.429, - "y": 65.4407 - }, - { - "l": "98.0", - "x": 12.5123, - "y": 66.0149 - }, - { - "l": "98.0", - "x": 12.5957, - "y": 66.5695 - }, - { - "l": "98.0", - "x": 12.679, - "y": 67.0735 - }, - { - "l": "98.0", - "x": 12.7623, - "y": 67.6344 - }, - { - "l": "98.0", - "x": 12.8457, - "y": 68.1753 - }, - { - "l": "98.0", - "x": 12.929, - "y": 68.6655 - }, - { - "l": "98.0", - "x": 13.0123, - "y": 69.2103 - }, - { - "l": "98.0", - "x": 13.0957, - "y": 69.7346 - }, - { - "l": "98.0", - "x": 13.179, - "y": 70.2088 - }, - { - "l": "98.0", - "x": 13.2623, - "y": 70.7349 - }, - { - "l": "98.0", - "x": 13.3457, - "y": 71.2399 - }, - { - "l": "98.0", - "x": 13.429, - "y": 71.6951 - }, - { - "l": "98.0", - "x": 13.5123, - "y": 72.1982 - }, - { - "l": "98.0", - "x": 13.5957, - "y": 72.6804 - }, - { - "l": "98.0", - "x": 13.679, - "y": 73.1134 - }, - { - "l": "98.0", - "x": 13.7623, - "y": 73.5906 - }, - { - "l": "98.0", - "x": 13.8457, - "y": 74.0481 - }, - { - "l": "98.0", - "x": 13.929, - "y": 74.4581 - }, - { - "l": "98.0", - "x": 14.0123, - "y": 74.9099 - }, - { - "l": "98.0", - "x": 14.0957, - "y": 75.3416 - }, - { - "l": "98.0", - "x": 14.179, - "y": 75.7288 - }, - { - "l": "98.0", - "x": 14.2623, - "y": 76.1551 - }, - { - "l": "98.0", - "x": 14.3457, - "y": 76.5619 - }, - { - "l": "98.0", - "x": 14.429, - "y": 76.9264 - }, - { - "l": "98.0", - "x": 14.5123, - "y": 77.327 - }, - { - "l": "98.0", - "x": 14.5957, - "y": 77.7082 - }, - { - "l": "98.0", - "x": 14.679, - "y": 78.0512 - }, - { - "l": "98.0", - "x": 14.7623, - "y": 78.4268 - }, - { - "l": "98.0", - "x": 14.8457, - "y": 78.7844 - }, - { - "l": "98.0", - "x": 14.929, - "y": 79.1042 - }, - { - "l": "98.0", - "x": 15.0123, - "y": 79.4547 - }, - { - "l": "98.0", - "x": 15.0957, - "y": 79.7893 - }, - { - "l": "98.0", - "x": 15.179, - "y": 80.0876 - }, - { - "l": "98.0", - "x": 15.2623, - "y": 80.4151 - }, - { - "l": "98.0", - "x": 15.3457, - "y": 80.7259 - }, - { - "l": "98.0", - "x": 15.429, - "y": 81.0014 - }, - { - "l": "98.0", - "x": 15.5123, - "y": 81.3054 - }, - { - "l": "98.0", - "x": 15.5957, - "y": 81.599 - }, - { - "l": "98.0", - "x": 15.679, - "y": 81.8578 - }, - { - "l": "98.0", - "x": 15.7623, - "y": 82.1418 - }, - { - "l": "98.0", - "x": 15.8457, - "y": 82.4116 - }, - { - "l": "98.0", - "x": 15.929, - "y": 82.6527 - }, - { - "l": "98.0", - "x": 16.0123, - "y": 82.9172 - }, - { - "l": "98.0", - "x": 16.0957, - "y": 83.1683 - }, - { - "l": "98.0", - "x": 16.179, - "y": 83.3926 - }, - { - "l": "98.0", - "x": 16.2623, - "y": 83.639 - }, - { - "l": "98.0", - "x": 16.3457, - "y": 83.8742 - }, - { - "l": "98.0", - "x": 16.429, - "y": 84.084 - }, - { - "l": "98.0", - "x": 16.5123, - "y": 84.3147 - }, - { - "l": "98.0", - "x": 16.5957, - "y": 84.5342 - }, - { - "l": "98.0", - "x": 16.679, - "y": 84.7314 - }, - { - "l": "98.0", - "x": 16.7623, - "y": 84.9477 - }, - { - "l": "98.0", - "x": 16.8457, - "y": 85.154 - }, - { - "l": "98.0", - "x": 16.929, - "y": 85.3393 - }, - { - "l": "98.0", - "x": 17.0123, - "y": 85.5434 - }, - { - "l": "98.0", - "x": 17.0957, - "y": 85.7381 - }, - { - "l": "98.0", - "x": 17.179, - "y": 85.9137 - }, - { - "l": "98.0", - "x": 17.2623, - "y": 86.1071 - }, - { - "l": "98.0", - "x": 17.3457, - "y": 86.2924 - }, - { - "l": "98.0", - "x": 17.429, - "y": 86.459 - }, - { - "l": "98.0", - "x": 17.5123, - "y": 86.6432 - }, - { - "l": "98.0", - "x": 17.5957, - "y": 86.8203 - }, - { - "l": "98.0", - "x": 17.679, - "y": 86.9795 - }, - { - "l": "98.0", - "x": 17.7623, - "y": 87.1549 - }, - { - "l": "98.0", - "x": 17.8457, - "y": 87.3249 - }, - { - "l": "98.0", - "x": 17.929, - "y": 87.4784 - }, - { - "l": "98.0", - "x": 18.0123, - "y": 87.6479 - }, - { - "l": "98.0", - "x": 18.0957, - "y": 87.8098 - }, - { - "l": "98.0", - "x": 18.179, - "y": 87.9572 - }, - { - "l": "98.0", - "x": 18.2623, - "y": 88.1219 - }, - { - "l": "98.0", - "x": 18.3457, - "y": 88.2793 - }, - { - "l": "98.0", - "x": 18.429, - "y": 88.4215 - }, - { - "l": "98.0", - "x": 18.5123, - "y": 88.5803 - }, - { - "l": "98.0", - "x": 18.5957, - "y": 88.7325 - }, - { - "l": "98.0", - "x": 18.679, - "y": 88.8692 - }, - { - "l": "98.0", - "x": 18.7623, - "y": 89.022 - }, - { - "l": "98.0", - "x": 18.8457, - "y": 89.1705 - }, - { - "l": "98.0", - "x": 18.929, - "y": 89.3063 - }, - { - "l": "98.0", - "x": 19.0123, - "y": 89.4573 - }, - { - "l": "98.0", - "x": 19.0957, - "y": 89.6016 - }, - { - "l": "98.0", - "x": 19.179, - "y": 89.7325 - }, - { - "l": "98.0", - "x": 19.2623, - "y": 89.874 - }, - { - "l": "98.0", - "x": 19.3457, - "y": 90.0115 - }, - { - "l": "98.0", - "x": 19.429, - "y": 90.1372 - }, - { - "l": "98.0", - "x": 19.5123, - "y": 90.2782 - }, - { - "l": "98.0", - "x": 19.5957, - "y": 90.4153 - }, - { - "l": "98.0", - "x": 19.679, - "y": 90.5405 - }, - { - "l": "98.0", - "x": 19.7623, - "y": 90.681 - }, - { - "l": "98.0", - "x": 19.8457, - "y": 90.8176 - }, - { - "l": "98.0", - "x": 19.929, - "y": 90.9428 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 0.0, - "y": 4.3073 - }, - { - "l": "99.6", - "x": 0.0192, - "y": 4.5014 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 4.6956 - }, - { - "l": "99.6", - "x": 0.0575, - "y": 4.8898 - }, - { - "l": "99.6", - "x": 0.0767, - "y": 5.084 - }, - { - "l": "99.6", - "x": 0.0958, - "y": 5.2635 - }, - { - "l": "99.6", - "x": 0.115, - "y": 5.4373 - }, - { - "l": "99.6", - "x": 0.1342, - "y": 5.6104 - }, - { - "l": "99.6", - "x": 0.1533, - "y": 5.785 - }, - { - "l": "99.6", - "x": 0.1725, - "y": 5.9646 - }, - { - "l": "99.6", - "x": 0.1916, - "y": 6.1589 - }, - { - "l": "99.6", - "x": 0.2108, - "y": 6.3564 - }, - { - "l": "99.6", - "x": 0.23, - "y": 6.5558 - }, - { - "l": "99.6", - "x": 0.2491, - "y": 6.7557 - }, - { - "l": "99.6", - "x": 0.2683, - "y": 6.9544 - }, - { - "l": "99.6", - "x": 0.2875, - "y": 7.1508 - }, - { - "l": "99.6", - "x": 0.3066, - "y": 7.3436 - }, - { - "l": "99.6", - "x": 0.3258, - "y": 7.5315 - }, - { - "l": "99.6", - "x": 0.345, - "y": 7.7048 - }, - { - "l": "99.6", - "x": 0.3641, - "y": 7.8702 - }, - { - "l": "99.6", - "x": 0.3833, - "y": 8.0318 - }, - { - "l": "99.6", - "x": 0.4025, - "y": 8.1915 - }, - { - "l": "99.6", - "x": 0.4216, - "y": 8.3521 - }, - { - "l": "99.6", - "x": 0.4408, - "y": 8.5229 - }, - { - "l": "99.6", - "x": 0.46, - "y": 8.6936 - }, - { - "l": "99.6", - "x": 0.4791, - "y": 8.8631 - }, - { - "l": "99.6", - "x": 0.4983, - "y": 9.0301 - }, - { - "l": "99.6", - "x": 0.5175, - "y": 9.1923 - }, - { - "l": "99.6", - "x": 0.5366, - "y": 9.3501 - }, - { - "l": "99.6", - "x": 0.5558, - "y": 9.5027 - }, - { - "l": "99.6", - "x": 0.5749, - "y": 9.6497 - }, - { - "l": "99.6", - "x": 0.5941, - "y": 9.7845 - }, - { - "l": "99.6", - "x": 0.6133, - "y": 9.9116 - }, - { - "l": "99.6", - "x": 0.6324, - "y": 10.0345 - }, - { - "l": "99.6", - "x": 0.6516, - "y": 10.1551 - }, - { - "l": "99.6", - "x": 0.6708, - "y": 10.2755 - }, - { - "l": "99.6", - "x": 0.6899, - "y": 10.4039 - }, - { - "l": "99.6", - "x": 0.7091, - "y": 10.5321 - }, - { - "l": "99.6", - "x": 0.7283, - "y": 10.6594 - }, - { - "l": "99.6", - "x": 0.7474, - "y": 10.7848 - }, - { - "l": "99.6", - "x": 0.7666, - "y": 10.9071 - }, - { - "l": "99.6", - "x": 0.7858, - "y": 11.0263 - }, - { - "l": "99.6", - "x": 0.8049, - "y": 11.1418 - }, - { - "l": "99.6", - "x": 0.8241, - "y": 11.2532 - }, - { - "l": "99.6", - "x": 0.8433, - "y": 11.356 - }, - { - "l": "99.6", - "x": 0.8624, - "y": 11.4528 - }, - { - "l": "99.6", - "x": 0.8816, - "y": 11.5467 - }, - { - "l": "99.6", - "x": 0.9008, - "y": 11.639 - }, - { - "l": "99.6", - "x": 0.9199, - "y": 11.731 - }, - { - "l": "99.6", - "x": 0.9391, - "y": 11.8296 - }, - { - "l": "99.6", - "x": 0.9582, - "y": 11.9283 - }, - { - "l": "99.6", - "x": 0.9774, - "y": 12.0265 - }, - { - "l": "99.6", - "x": 0.9966, - "y": 12.1237 - }, - { - "l": "99.6", - "x": 1.0157, - "y": 12.2188 - }, - { - "l": "99.6", - "x": 1.0349, - "y": 12.3118 - }, - { - "l": "99.6", - "x": 1.0541, - "y": 12.4022 - }, - { - "l": "99.6", - "x": 1.0732, - "y": 12.4899 - }, - { - "l": "99.6", - "x": 1.0924, - "y": 12.5712 - }, - { - "l": "99.6", - "x": 1.1116, - "y": 12.648 - }, - { - "l": "99.6", - "x": 1.1307, - "y": 12.7228 - }, - { - "l": "99.6", - "x": 1.1499, - "y": 12.7968 - }, - { - "l": "99.6", - "x": 1.1691, - "y": 12.8709 - }, - { - "l": "99.6", - "x": 1.1882, - "y": 12.9505 - }, - { - "l": "99.6", - "x": 1.2074, - "y": 13.0309 - }, - { - "l": "99.6", - "x": 1.2266, - "y": 13.1115 - }, - { - "l": "99.6", - "x": 1.2457, - "y": 13.1916 - }, - { - "l": "99.6", - "x": 1.2649, - "y": 13.2708 - }, - { - "l": "99.6", - "x": 1.2841, - "y": 13.3487 - }, - { - "l": "99.6", - "x": 1.3032, - "y": 13.4249 - }, - { - "l": "99.6", - "x": 1.3224, - "y": 13.4992 - }, - { - "l": "99.6", - "x": 1.3415, - "y": 13.5687 - }, - { - "l": "99.6", - "x": 1.3607, - "y": 13.6344 - }, - { - "l": "99.6", - "x": 1.3799, - "y": 13.6987 - }, - { - "l": "99.6", - "x": 1.399, - "y": 13.7624 - }, - { - "l": "99.6", - "x": 1.4182, - "y": 13.8266 - }, - { - "l": "99.6", - "x": 1.4374, - "y": 13.8955 - }, - { - "l": "99.6", - "x": 1.4565, - "y": 13.9654 - }, - { - "l": "99.6", - "x": 1.4757, - "y": 14.0357 - }, - { - "l": "99.6", - "x": 1.4949, - "y": 14.1058 - }, - { - "l": "99.6", - "x": 1.514, - "y": 14.1753 - }, - { - "l": "99.6", - "x": 1.5332, - "y": 14.2438 - }, - { - "l": "99.6", - "x": 1.5524, - "y": 14.311 - }, - { - "l": "99.6", - "x": 1.5715, - "y": 14.3766 - }, - { - "l": "99.6", - "x": 1.5907, - "y": 14.4382 - }, - { - "l": "99.6", - "x": 1.6099, - "y": 14.4965 - }, - { - "l": "99.6", - "x": 1.629, - "y": 14.5536 - }, - { - "l": "99.6", - "x": 1.6482, - "y": 14.6103 - }, - { - "l": "99.6", - "x": 1.6674, - "y": 14.6675 - }, - { - "l": "99.6", - "x": 1.6865, - "y": 14.7289 - }, - { - "l": "99.6", - "x": 1.7057, - "y": 14.7916 - }, - { - "l": "99.6", - "x": 1.7248, - "y": 14.8547 - }, - { - "l": "99.6", - "x": 1.744, - "y": 14.918 - }, - { - "l": "99.6", - "x": 1.7632, - "y": 14.9808 - }, - { - "l": "99.6", - "x": 1.7823, - "y": 15.0431 - }, - { - "l": "99.6", - "x": 1.8015, - "y": 15.1044 - }, - { - "l": "99.6", - "x": 1.8207, - "y": 15.1645 - }, - { - "l": "99.6", - "x": 1.8398, - "y": 15.2213 - }, - { - "l": "99.6", - "x": 1.859, - "y": 15.275 - }, - { - "l": "99.6", - "x": 1.8782, - "y": 15.3279 - }, - { - "l": "99.6", - "x": 1.8973, - "y": 15.3806 - }, - { - "l": "99.6", - "x": 1.9165, - "y": 15.434 - }, - { - "l": "99.6", - "x": 1.9357, - "y": 15.4913 - }, - { - "l": "99.6", - "x": 1.9548, - "y": 15.5502 - }, - { - "l": "99.6", - "x": 1.974, - "y": 15.6098 - }, - { - "l": "99.6", - "x": 1.9932, - "y": 15.6697 - }, - { - "l": "99.6", - "x": 2.0123, - "y": 15.7295 - }, - { - "l": "99.6", - "x": 2.0957, - "y": 15.9792 - }, - { - "l": "99.6", - "x": 2.179, - "y": 16.2071 - }, - { - "l": "99.6", - "x": 2.2623, - "y": 16.4635 - }, - { - "l": "99.6", - "x": 2.3457, - "y": 16.7146 - }, - { - "l": "99.6", - "x": 2.429, - "y": 16.9466 - }, - { - "l": "99.6", - "x": 2.5123, - "y": 17.2101 - }, - { - "l": "99.6", - "x": 2.5957, - "y": 17.4705 - }, - { - "l": "99.6", - "x": 2.679, - "y": 17.7123 - }, - { - "l": "99.6", - "x": 2.7623, - "y": 17.9877 - }, - { - "l": "99.6", - "x": 2.8457, - "y": 18.2597 - }, - { - "l": "99.6", - "x": 2.929, - "y": 18.5119 - }, - { - "l": "99.6", - "x": 3.0123, - "y": 18.7984 - }, - { - "l": "99.6", - "x": 3.0957, - "y": 19.0808 - }, - { - "l": "99.6", - "x": 3.179, - "y": 19.3423 - }, - { - "l": "99.6", - "x": 3.2623, - "y": 19.639 - }, - { - "l": "99.6", - "x": 3.3457, - "y": 19.931 - }, - { - "l": "99.6", - "x": 3.429, - "y": 20.2005 - }, - { - "l": "99.6", - "x": 3.5123, - "y": 20.5052 - }, - { - "l": "99.6", - "x": 3.5957, - "y": 20.8036 - }, - { - "l": "99.6", - "x": 3.679, - "y": 21.0783 - }, - { - "l": "99.6", - "x": 3.7623, - "y": 21.3884 - }, - { - "l": "99.6", - "x": 3.8457, - "y": 21.6922 - }, - { - "l": "99.6", - "x": 3.929, - "y": 21.9718 - }, - { - "l": "99.6", - "x": 4.0123, - "y": 22.2873 - }, - { - "l": "99.6", - "x": 4.0957, - "y": 22.5961 - }, - { - "l": "99.6", - "x": 4.179, - "y": 22.8799 - }, - { - "l": "99.6", - "x": 4.2623, - "y": 23.2002 - }, - { - "l": "99.6", - "x": 4.3457, - "y": 23.514 - }, - { - "l": "99.6", - "x": 4.429, - "y": 23.8028 - }, - { - "l": "99.6", - "x": 4.5123, - "y": 24.1292 - }, - { - "l": "99.6", - "x": 4.5957, - "y": 24.4495 - }, - { - "l": "99.6", - "x": 4.679, - "y": 24.7454 - }, - { - "l": "99.6", - "x": 4.7623, - "y": 25.0808 - }, - { - "l": "99.6", - "x": 4.8457, - "y": 25.4107 - }, - { - "l": "99.6", - "x": 4.929, - "y": 25.7156 - }, - { - "l": "99.6", - "x": 5.0123, - "y": 26.0611 - }, - { - "l": "99.6", - "x": 5.0957, - "y": 26.4011 - }, - { - "l": "99.6", - "x": 5.179, - "y": 26.7156 - }, - { - "l": "99.6", - "x": 5.2623, - "y": 27.073 - }, - { - "l": "99.6", - "x": 5.3457, - "y": 27.4259 - }, - { - "l": "99.6", - "x": 5.429, - "y": 27.7537 - }, - { - "l": "99.6", - "x": 5.5123, - "y": 28.1275 - }, - { - "l": "99.6", - "x": 5.5957, - "y": 28.4977 - }, - { - "l": "99.6", - "x": 5.679, - "y": 28.8423 - }, - { - "l": "99.6", - "x": 5.7623, - "y": 29.2357 - }, - { - "l": "99.6", - "x": 5.8457, - "y": 29.6255 - }, - { - "l": "99.6", - "x": 5.929, - "y": 29.9881 - }, - { - "l": "99.6", - "x": 6.0123, - "y": 30.4017 - }, - { - "l": "99.6", - "x": 6.0957, - "y": 30.8112 - }, - { - "l": "99.6", - "x": 6.179, - "y": 31.1924 - }, - { - "l": "99.6", - "x": 6.2623, - "y": 31.6276 - }, - { - "l": "99.6", - "x": 6.3457, - "y": 32.0592 - }, - { - "l": "99.6", - "x": 6.429, - "y": 32.4617 - }, - { - "l": "99.6", - "x": 6.5123, - "y": 32.9224 - }, - { - "l": "99.6", - "x": 6.5957, - "y": 33.3803 - }, - { - "l": "99.6", - "x": 6.679, - "y": 33.8079 - }, - { - "l": "99.6", - "x": 6.7623, - "y": 34.2976 - }, - { - "l": "99.6", - "x": 6.8457, - "y": 34.7845 - }, - { - "l": "99.6", - "x": 6.929, - "y": 35.2392 - }, - { - "l": "99.6", - "x": 7.0123, - "y": 35.7597 - }, - { - "l": "99.6", - "x": 7.0957, - "y": 36.2765 - }, - { - "l": "99.6", - "x": 7.179, - "y": 36.7582 - }, - { - "l": "99.6", - "x": 7.2623, - "y": 37.3084 - }, - { - "l": "99.6", - "x": 7.3457, - "y": 37.8531 - }, - { - "l": "99.6", - "x": 7.429, - "y": 38.3593 - }, - { - "l": "99.6", - "x": 7.5123, - "y": 38.9354 - }, - { - "l": "99.6", - "x": 7.5957, - "y": 39.5038 - }, - { - "l": "99.6", - "x": 7.679, - "y": 40.0301 - }, - { - "l": "99.6", - "x": 7.7623, - "y": 40.6274 - }, - { - "l": "99.6", - "x": 7.8457, - "y": 41.2157 - }, - { - "l": "99.6", - "x": 7.929, - "y": 41.7598 - }, - { - "l": "99.6", - "x": 8.0123, - "y": 42.377 - }, - { - "l": "99.6", - "x": 8.0957, - "y": 42.9842 - }, - { - "l": "99.6", - "x": 8.179, - "y": 43.5453 - }, - { - "l": "99.6", - "x": 8.2623, - "y": 44.1805 - }, - { - "l": "99.6", - "x": 8.3457, - "y": 44.8039 - }, - { - "l": "99.6", - "x": 8.429, - "y": 45.3783 - }, - { - "l": "99.6", - "x": 8.5123, - "y": 46.0269 - }, - { - "l": "99.6", - "x": 8.5957, - "y": 46.662 - }, - { - "l": "99.6", - "x": 8.679, - "y": 47.2458 - }, - { - "l": "99.6", - "x": 8.7623, - "y": 47.9036 - }, - { - "l": "99.6", - "x": 8.8457, - "y": 48.546 - }, - { - "l": "99.6", - "x": 8.929, - "y": 49.1351 - }, - { - "l": "99.6", - "x": 9.0123, - "y": 49.7973 - }, - { - "l": "99.6", - "x": 9.0957, - "y": 50.4422 - }, - { - "l": "99.6", - "x": 9.179, - "y": 51.0319 - }, - { - "l": "99.6", - "x": 9.2623, - "y": 51.6928 - }, - { - "l": "99.6", - "x": 9.3457, - "y": 52.3345 - }, - { - "l": "99.6", - "x": 9.429, - "y": 52.9199 - }, - { - "l": "99.6", - "x": 9.5123, - "y": 53.5747 - }, - { - "l": "99.6", - "x": 9.5957, - "y": 54.2098 - }, - { - "l": "99.6", - "x": 9.679, - "y": 54.7891 - }, - { - "l": "99.6", - "x": 9.7623, - "y": 55.4379 - }, - { - "l": "99.6", - "x": 9.8457, - "y": 56.0686 - }, - { - "l": "99.6", - "x": 9.929, - "y": 56.6457 - }, - { - "l": "99.6", - "x": 10.0123, - "y": 57.2938 - }, - { - "l": "99.6", - "x": 10.0957, - "y": 57.9254 - }, - { - "l": "99.6", - "x": 10.179, - "y": 58.5045 - }, - { - "l": "99.6", - "x": 10.2623, - "y": 59.1561 - }, - { - "l": "99.6", - "x": 10.3457, - "y": 59.7922 - }, - { - "l": "99.6", - "x": 10.429, - "y": 60.3762 - }, - { - "l": "99.6", - "x": 10.5123, - "y": 61.0338 - }, - { - "l": "99.6", - "x": 10.5957, - "y": 61.6762 - }, - { - "l": "99.6", - "x": 10.679, - "y": 62.2661 - }, - { - "l": "99.6", - "x": 10.7623, - "y": 62.9302 - }, - { - "l": "99.6", - "x": 10.8457, - "y": 63.5788 - }, - { - "l": "99.6", - "x": 10.929, - "y": 64.1743 - }, - { - "l": "99.6", - "x": 11.0123, - "y": 64.8448 - }, - { - "l": "99.6", - "x": 11.0957, - "y": 65.4994 - }, - { - "l": "99.6", - "x": 11.179, - "y": 66.0998 - }, - { - "l": "99.6", - "x": 11.2623, - "y": 66.7751 - }, - { - "l": "99.6", - "x": 11.3457, - "y": 67.4332 - }, - { - "l": "99.6", - "x": 11.429, - "y": 68.0359 - }, - { - "l": "99.6", - "x": 11.5123, - "y": 68.7123 - }, - { - "l": "99.6", - "x": 11.5957, - "y": 69.3703 - }, - { - "l": "99.6", - "x": 11.679, - "y": 69.9715 - }, - { - "l": "99.6", - "x": 11.7623, - "y": 70.6446 - }, - { - "l": "99.6", - "x": 11.8457, - "y": 71.2978 - }, - { - "l": "99.6", - "x": 11.929, - "y": 71.8933 - }, - { - "l": "99.6", - "x": 12.0123, - "y": 72.5591 - }, - { - "l": "99.6", - "x": 12.0957, - "y": 73.2045 - }, - { - "l": "99.6", - "x": 12.179, - "y": 73.7922 - }, - { - "l": "99.6", - "x": 12.2623, - "y": 74.4488 - }, - { - "l": "99.6", - "x": 12.3457, - "y": 75.0848 - }, - { - "l": "99.6", - "x": 12.429, - "y": 75.6634 - }, - { - "l": "99.6", - "x": 12.5123, - "y": 76.3092 - }, - { - "l": "99.6", - "x": 12.5957, - "y": 76.9338 - }, - { - "l": "99.6", - "x": 12.679, - "y": 77.502 - }, - { - "l": "99.6", - "x": 12.7623, - "y": 78.135 - }, - { - "l": "99.6", - "x": 12.8457, - "y": 78.7461 - }, - { - "l": "99.6", - "x": 12.929, - "y": 79.3004 - }, - { - "l": "99.6", - "x": 13.0123, - "y": 79.917 - }, - { - "l": "99.6", - "x": 13.0957, - "y": 80.5109 - }, - { - "l": "99.6", - "x": 13.179, - "y": 81.0485 - }, - { - "l": "99.6", - "x": 13.2623, - "y": 81.6452 - }, - { - "l": "99.6", - "x": 13.3457, - "y": 82.2184 - }, - { - "l": "99.6", - "x": 13.429, - "y": 82.7352 - }, - { - "l": "99.6", - "x": 13.5123, - "y": 83.3065 - }, - { - "l": "99.6", - "x": 13.5957, - "y": 83.854 - }, - { - "l": "99.6", - "x": 13.679, - "y": 84.3458 - }, - { - "l": "99.6", - "x": 13.7623, - "y": 84.8876 - }, - { - "l": "99.6", - "x": 13.8457, - "y": 85.407 - }, - { - "l": "99.6", - "x": 13.929, - "y": 85.8725 - }, - { - "l": "99.6", - "x": 14.0123, - "y": 86.3856 - }, - { - "l": "99.6", - "x": 14.0957, - "y": 86.8759 - }, - { - "l": "99.6", - "x": 14.179, - "y": 87.3156 - }, - { - "l": "99.6", - "x": 14.2623, - "y": 87.7999 - }, - { - "l": "99.6", - "x": 14.3457, - "y": 88.2621 - }, - { - "l": "99.6", - "x": 14.429, - "y": 88.6764 - }, - { - "l": "99.6", - "x": 14.5123, - "y": 89.1319 - }, - { - "l": "99.6", - "x": 14.5957, - "y": 89.5653 - }, - { - "l": "99.6", - "x": 14.679, - "y": 89.9553 - }, - { - "l": "99.6", - "x": 14.7623, - "y": 90.3826 - }, - { - "l": "99.6", - "x": 14.8457, - "y": 90.7895 - }, - { - "l": "99.6", - "x": 14.929, - "y": 91.1535 - }, - { - "l": "99.6", - "x": 15.0123, - "y": 91.5524 - }, - { - "l": "99.6", - "x": 15.0957, - "y": 91.9332 - }, - { - "l": "99.6", - "x": 15.179, - "y": 92.2728 - }, - { - "l": "99.6", - "x": 15.2623, - "y": 92.6454 - }, - { - "l": "99.6", - "x": 15.3457, - "y": 92.9992 - }, - { - "l": "99.6", - "x": 15.429, - "y": 93.3125 - }, - { - "l": "99.6", - "x": 15.5123, - "y": 93.6582 - }, - { - "l": "99.6", - "x": 15.5957, - "y": 93.9919 - }, - { - "l": "99.6", - "x": 15.679, - "y": 94.2859 - }, - { - "l": "99.6", - "x": 15.7623, - "y": 94.6083 - }, - { - "l": "99.6", - "x": 15.8457, - "y": 94.9144 - }, - { - "l": "99.6", - "x": 15.929, - "y": 95.1876 - }, - { - "l": "99.6", - "x": 16.0123, - "y": 95.4872 - }, - { - "l": "99.6", - "x": 16.0957, - "y": 95.7711 - }, - { - "l": "99.6", - "x": 16.179, - "y": 96.0245 - }, - { - "l": "99.6", - "x": 16.2623, - "y": 96.3025 - }, - { - "l": "99.6", - "x": 16.3457, - "y": 96.5676 - }, - { - "l": "99.6", - "x": 16.429, - "y": 96.8036 - }, - { - "l": "99.6", - "x": 16.5123, - "y": 97.0629 - }, - { - "l": "99.6", - "x": 16.5957, - "y": 97.3093 - }, - { - "l": "99.6", - "x": 16.679, - "y": 97.5303 - }, - { - "l": "99.6", - "x": 16.7623, - "y": 97.7723 - }, - { - "l": "99.6", - "x": 16.8457, - "y": 98.0029 - }, - { - "l": "99.6", - "x": 16.929, - "y": 98.2096 - }, - { - "l": "99.6", - "x": 17.0123, - "y": 98.4371 - }, - { - "l": "99.6", - "x": 17.0957, - "y": 98.6538 - }, - { - "l": "99.6", - "x": 17.179, - "y": 98.8491 - }, - { - "l": "99.6", - "x": 17.2623, - "y": 99.0638 - }, - { - "l": "99.6", - "x": 17.3457, - "y": 99.2692 - }, - { - "l": "99.6", - "x": 17.429, - "y": 99.4538 - }, - { - "l": "99.6", - "x": 17.5123, - "y": 99.6577 - }, - { - "l": "99.6", - "x": 17.5957, - "y": 99.8535 - }, - { - "l": "99.6", - "x": 17.679, - "y": 100.0294 - }, - { - "l": "99.6", - "x": 17.7623, - "y": 100.2228 - }, - { - "l": "99.6", - "x": 17.8457, - "y": 100.4103 - }, - { - "l": "99.6", - "x": 17.929, - "y": 100.5793 - }, - { - "l": "99.6", - "x": 18.0123, - "y": 100.7659 - }, - { - "l": "99.6", - "x": 18.0957, - "y": 100.944 - }, - { - "l": "99.6", - "x": 18.179, - "y": 101.1059 - }, - { - "l": "99.6", - "x": 18.2623, - "y": 101.2868 - }, - { - "l": "99.6", - "x": 18.3457, - "y": 101.4594 - }, - { - "l": "99.6", - "x": 18.429, - "y": 101.6154 - }, - { - "l": "99.6", - "x": 18.5123, - "y": 101.7893 - }, - { - "l": "99.6", - "x": 18.5957, - "y": 101.9559 - }, - { - "l": "99.6", - "x": 18.679, - "y": 102.1055 - }, - { - "l": "99.6", - "x": 18.7623, - "y": 102.2724 - }, - { - "l": "99.6", - "x": 18.8457, - "y": 102.4347 - }, - { - "l": "99.6", - "x": 18.929, - "y": 102.5829 - }, - { - "l": "99.6", - "x": 19.0123, - "y": 102.7478 - }, - { - "l": "99.6", - "x": 19.0957, - "y": 102.905 - }, - { - "l": "99.6", - "x": 19.179, - "y": 103.0476 - }, - { - "l": "99.6", - "x": 19.2623, - "y": 103.2015 - }, - { - "l": "99.6", - "x": 19.3457, - "y": 103.351 - }, - { - "l": "99.6", - "x": 19.429, - "y": 103.4876 - }, - { - "l": "99.6", - "x": 19.5123, - "y": 103.6407 - }, - { - "l": "99.6", - "x": 19.5957, - "y": 103.7896 - }, - { - "l": "99.6", - "x": 19.679, - "y": 103.9255 - }, - { - "l": "99.6", - "x": 19.7623, - "y": 104.0779 - }, - { - "l": "99.6", - "x": 19.8457, - "y": 104.226 - }, - { - "l": "99.6", - "x": 19.929, - "y": 104.3617 - } - ] - } - ], - "ofc": null, - "bmi": null - } - } - } - ] -}; - -var trisomy21OFCMaleCentileData = { - "centile_data": [ - { - "trisomy-21": { - "male": { - "height": null, - "weight": null, - "ofc": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 0.0, - "y": 29.9809 - }, - { - "l": "0.4", - "x": 0.0192, - "y": 30.3815 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 30.7827 - }, - { - "l": "0.4", - "x": 0.0575, - "y": 31.1845 - }, - { - "l": "0.4", - "x": 0.0767, - "y": 31.5868 - }, - { - "l": "0.4", - "x": 0.0958, - "y": 31.9498 - }, - { - "l": "0.4", - "x": 0.115, - "y": 32.2936 - }, - { - "l": "0.4", - "x": 0.1342, - "y": 32.6286 - }, - { - "l": "0.4", - "x": 0.1533, - "y": 32.9584 - }, - { - "l": "0.4", - "x": 0.1725, - "y": 33.2889 - }, - { - "l": "0.4", - "x": 0.1916, - "y": 33.6365 - }, - { - "l": "0.4", - "x": 0.2108, - "y": 33.9813 - }, - { - "l": "0.4", - "x": 0.23, - "y": 34.3205 - }, - { - "l": "0.4", - "x": 0.2491, - "y": 34.6515 - }, - { - "l": "0.4", - "x": 0.2683, - "y": 34.9678 - }, - { - "l": "0.4", - "x": 0.2875, - "y": 35.2717 - }, - { - "l": "0.4", - "x": 0.3066, - "y": 35.5619 - }, - { - "l": "0.4", - "x": 0.3258, - "y": 35.8371 - }, - { - "l": "0.4", - "x": 0.345, - "y": 36.0852 - }, - { - "l": "0.4", - "x": 0.3641, - "y": 36.3152 - }, - { - "l": "0.4", - "x": 0.3833, - "y": 36.5331 - }, - { - "l": "0.4", - "x": 0.4025, - "y": 36.7419 - }, - { - "l": "0.4", - "x": 0.4216, - "y": 36.9457 - }, - { - "l": "0.4", - "x": 0.4408, - "y": 37.1578 - }, - { - "l": "0.4", - "x": 0.46, - "y": 37.3643 - }, - { - "l": "0.4", - "x": 0.4791, - "y": 37.5641 - }, - { - "l": "0.4", - "x": 0.4983, - "y": 37.7559 - }, - { - "l": "0.4", - "x": 0.5175, - "y": 37.9355 - }, - { - "l": "0.4", - "x": 0.5366, - "y": 38.1052 - }, - { - "l": "0.4", - "x": 0.5558, - "y": 38.2651 - }, - { - "l": "0.4", - "x": 0.5749, - "y": 38.415 - }, - { - "l": "0.4", - "x": 0.5941, - "y": 38.5497 - }, - { - "l": "0.4", - "x": 0.6133, - "y": 38.6736 - }, - { - "l": "0.4", - "x": 0.6324, - "y": 38.7902 - }, - { - "l": "0.4", - "x": 0.6516, - "y": 38.9016 - }, - { - "l": "0.4", - "x": 0.6708, - "y": 39.0101 - }, - { - "l": "0.4", - "x": 0.6899, - "y": 39.1243 - }, - { - "l": "0.4", - "x": 0.7091, - "y": 39.2362 - }, - { - "l": "0.4", - "x": 0.7283, - "y": 39.3451 - }, - { - "l": "0.4", - "x": 0.7474, - "y": 39.4505 - }, - { - "l": "0.4", - "x": 0.7666, - "y": 39.551 - }, - { - "l": "0.4", - "x": 0.7858, - "y": 39.6471 - }, - { - "l": "0.4", - "x": 0.8049, - "y": 39.7387 - }, - { - "l": "0.4", - "x": 0.8241, - "y": 39.8256 - }, - { - "l": "0.4", - "x": 0.8433, - "y": 39.9047 - }, - { - "l": "0.4", - "x": 0.8624, - "y": 39.978 - }, - { - "l": "0.4", - "x": 0.8816, - "y": 40.048 - }, - { - "l": "0.4", - "x": 0.9008, - "y": 40.1157 - }, - { - "l": "0.4", - "x": 0.9199, - "y": 40.1822 - }, - { - "l": "0.4", - "x": 0.9391, - "y": 40.2531 - }, - { - "l": "0.4", - "x": 0.9582, - "y": 40.3232 - }, - { - "l": "0.4", - "x": 0.9774, - "y": 40.3922 - }, - { - "l": "0.4", - "x": 0.9966, - "y": 40.4595 - }, - { - "l": "0.4", - "x": 1.0157, - "y": 40.5242 - }, - { - "l": "0.4", - "x": 1.0349, - "y": 40.5866 - }, - { - "l": "0.4", - "x": 1.0541, - "y": 40.6465 - }, - { - "l": "0.4", - "x": 1.0732, - "y": 40.7037 - }, - { - "l": "0.4", - "x": 1.0924, - "y": 40.7563 - }, - { - "l": "0.4", - "x": 1.1116, - "y": 40.8053 - }, - { - "l": "0.4", - "x": 1.1307, - "y": 40.8524 - }, - { - "l": "0.4", - "x": 1.1499, - "y": 40.8982 - }, - { - "l": "0.4", - "x": 1.1691, - "y": 40.9434 - }, - { - "l": "0.4", - "x": 1.1882, - "y": 40.9914 - }, - { - "l": "0.4", - "x": 1.2074, - "y": 41.0393 - }, - { - "l": "0.4", - "x": 1.2266, - "y": 41.0866 - }, - { - "l": "0.4", - "x": 1.2457, - "y": 41.133 - }, - { - "l": "0.4", - "x": 1.2649, - "y": 41.178 - }, - { - "l": "0.4", - "x": 1.2841, - "y": 41.2216 - }, - { - "l": "0.4", - "x": 1.3032, - "y": 41.2637 - }, - { - "l": "0.4", - "x": 1.3224, - "y": 41.304 - }, - { - "l": "0.4", - "x": 1.3415, - "y": 41.3413 - }, - { - "l": "0.4", - "x": 1.3607, - "y": 41.376 - }, - { - "l": "0.4", - "x": 1.3799, - "y": 41.4094 - }, - { - "l": "0.4", - "x": 1.399, - "y": 41.442 - }, - { - "l": "0.4", - "x": 1.4182, - "y": 41.4743 - }, - { - "l": "0.4", - "x": 1.4374, - "y": 41.5087 - }, - { - "l": "0.4", - "x": 1.4565, - "y": 41.5431 - }, - { - "l": "0.4", - "x": 1.4757, - "y": 41.5774 - }, - { - "l": "0.4", - "x": 1.4949, - "y": 41.6112 - }, - { - "l": "0.4", - "x": 1.514, - "y": 41.6442 - }, - { - "l": "0.4", - "x": 1.5332, - "y": 41.6765 - }, - { - "l": "0.4", - "x": 1.5524, - "y": 41.7078 - }, - { - "l": "0.4", - "x": 1.5715, - "y": 41.7382 - }, - { - "l": "0.4", - "x": 1.5907, - "y": 41.7666 - }, - { - "l": "0.4", - "x": 1.6099, - "y": 41.7931 - }, - { - "l": "0.4", - "x": 1.629, - "y": 41.819 - }, - { - "l": "0.4", - "x": 1.6482, - "y": 41.8446 - }, - { - "l": "0.4", - "x": 1.6674, - "y": 41.8702 - }, - { - "l": "0.4", - "x": 1.6865, - "y": 41.8977 - }, - { - "l": "0.4", - "x": 1.7057, - "y": 41.9255 - }, - { - "l": "0.4", - "x": 1.7248, - "y": 41.9535 - }, - { - "l": "0.4", - "x": 1.744, - "y": 41.9815 - }, - { - "l": "0.4", - "x": 1.7632, - "y": 42.0092 - }, - { - "l": "0.4", - "x": 1.7823, - "y": 42.0366 - }, - { - "l": "0.4", - "x": 1.8015, - "y": 42.0635 - }, - { - "l": "0.4", - "x": 1.8207, - "y": 42.0899 - }, - { - "l": "0.4", - "x": 1.8398, - "y": 42.1148 - }, - { - "l": "0.4", - "x": 1.859, - "y": 42.1384 - }, - { - "l": "0.4", - "x": 1.8782, - "y": 42.1617 - }, - { - "l": "0.4", - "x": 1.8973, - "y": 42.1849 - }, - { - "l": "0.4", - "x": 1.9165, - "y": 42.2083 - }, - { - "l": "0.4", - "x": 1.9357, - "y": 42.2336 - }, - { - "l": "0.4", - "x": 1.9548, - "y": 42.2595 - }, - { - "l": "0.4", - "x": 1.974, - "y": 42.2858 - }, - { - "l": "0.4", - "x": 1.9932, - "y": 42.3122 - }, - { - "l": "0.4", - "x": 2.0123, - "y": 42.3386 - }, - { - "l": "0.4", - "x": 2.0957, - "y": 42.4487 - }, - { - "l": "0.4", - "x": 2.179, - "y": 42.5483 - }, - { - "l": "0.4", - "x": 2.2623, - "y": 42.6581 - }, - { - "l": "0.4", - "x": 2.3457, - "y": 42.7621 - }, - { - "l": "0.4", - "x": 2.429, - "y": 42.8541 - }, - { - "l": "0.4", - "x": 2.5123, - "y": 42.953 - }, - { - "l": "0.4", - "x": 2.5957, - "y": 43.0447 - }, - { - "l": "0.4", - "x": 2.679, - "y": 43.1241 - }, - { - "l": "0.4", - "x": 2.7623, - "y": 43.2081 - }, - { - "l": "0.4", - "x": 2.8457, - "y": 43.2846 - }, - { - "l": "0.4", - "x": 2.929, - "y": 43.3499 - }, - { - "l": "0.4", - "x": 3.0123, - "y": 43.4181 - }, - { - "l": "0.4", - "x": 3.0957, - "y": 43.4795 - }, - { - "l": "0.4", - "x": 3.179, - "y": 43.5318 - }, - { - "l": "0.4", - "x": 3.2623, - "y": 43.5864 - }, - { - "l": "0.4", - "x": 3.3457, - "y": 43.636 - }, - { - "l": "0.4", - "x": 3.429, - "y": 43.6782 - }, - { - "l": "0.4", - "x": 3.5123, - "y": 43.7226 - }, - { - "l": "0.4", - "x": 3.5957, - "y": 43.7632 - }, - { - "l": "0.4", - "x": 3.679, - "y": 43.7981 - }, - { - "l": "0.4", - "x": 3.7623, - "y": 43.8353 - }, - { - "l": "0.4", - "x": 3.8457, - "y": 43.8698 - }, - { - "l": "0.4", - "x": 3.929, - "y": 43.9002 - }, - { - "l": "0.4", - "x": 4.0123, - "y": 43.9333 - }, - { - "l": "0.4", - "x": 4.0957, - "y": 43.965 - }, - { - "l": "0.4", - "x": 4.179, - "y": 43.9938 - }, - { - "l": "0.4", - "x": 4.2623, - "y": 44.0263 - }, - { - "l": "0.4", - "x": 4.3457, - "y": 44.0584 - }, - { - "l": "0.4", - "x": 4.429, - "y": 44.0884 - }, - { - "l": "0.4", - "x": 4.5123, - "y": 44.1227 - }, - { - "l": "0.4", - "x": 4.5957, - "y": 44.1568 - }, - { - "l": "0.4", - "x": 4.679, - "y": 44.1888 - }, - { - "l": "0.4", - "x": 4.7623, - "y": 44.2255 - }, - { - "l": "0.4", - "x": 4.8457, - "y": 44.262 - }, - { - "l": "0.4", - "x": 4.929, - "y": 44.2958 - }, - { - "l": "0.4", - "x": 5.0123, - "y": 44.3342 - }, - { - "l": "0.4", - "x": 5.0957, - "y": 44.372 - }, - { - "l": "0.4", - "x": 5.179, - "y": 44.4068 - }, - { - "l": "0.4", - "x": 5.2623, - "y": 44.446 - }, - { - "l": "0.4", - "x": 5.3457, - "y": 44.4842 - }, - { - "l": "0.4", - "x": 5.429, - "y": 44.5191 - }, - { - "l": "0.4", - "x": 5.5123, - "y": 44.5582 - }, - { - "l": "0.4", - "x": 5.5957, - "y": 44.596 - }, - { - "l": "0.4", - "x": 5.679, - "y": 44.6304 - }, - { - "l": "0.4", - "x": 5.7623, - "y": 44.6686 - }, - { - "l": "0.4", - "x": 5.8457, - "y": 44.7056 - }, - { - "l": "0.4", - "x": 5.929, - "y": 44.7393 - }, - { - "l": "0.4", - "x": 6.0123, - "y": 44.777 - }, - { - "l": "0.4", - "x": 6.0957, - "y": 44.8136 - }, - { - "l": "0.4", - "x": 6.179, - "y": 44.8468 - }, - { - "l": "0.4", - "x": 6.2623, - "y": 44.8839 - }, - { - "l": "0.4", - "x": 6.3457, - "y": 44.9198 - }, - { - "l": "0.4", - "x": 6.429, - "y": 44.9524 - }, - { - "l": "0.4", - "x": 6.5123, - "y": 44.9889 - }, - { - "l": "0.4", - "x": 6.5957, - "y": 45.0241 - }, - { - "l": "0.4", - "x": 6.679, - "y": 45.0562 - }, - { - "l": "0.4", - "x": 6.7623, - "y": 45.0921 - }, - { - "l": "0.4", - "x": 6.8457, - "y": 45.1268 - }, - { - "l": "0.4", - "x": 6.929, - "y": 45.1584 - }, - { - "l": "0.4", - "x": 7.0123, - "y": 45.1938 - }, - { - "l": "0.4", - "x": 7.0957, - "y": 45.2281 - }, - { - "l": "0.4", - "x": 7.179, - "y": 45.2592 - }, - { - "l": "0.4", - "x": 7.2623, - "y": 45.294 - }, - { - "l": "0.4", - "x": 7.3457, - "y": 45.3277 - }, - { - "l": "0.4", - "x": 7.429, - "y": 45.3582 - }, - { - "l": "0.4", - "x": 7.5123, - "y": 45.3923 - }, - { - "l": "0.4", - "x": 7.5957, - "y": 45.4252 - }, - { - "l": "0.4", - "x": 7.679, - "y": 45.4552 - }, - { - "l": "0.4", - "x": 7.7623, - "y": 45.4888 - }, - { - "l": "0.4", - "x": 7.8457, - "y": 45.5212 - }, - { - "l": "0.4", - "x": 7.929, - "y": 45.5509 - }, - { - "l": "0.4", - "x": 8.0123, - "y": 45.5841 - }, - { - "l": "0.4", - "x": 8.0957, - "y": 45.6161 - }, - { - "l": "0.4", - "x": 8.179, - "y": 45.6453 - }, - { - "l": "0.4", - "x": 8.2623, - "y": 45.6777 - }, - { - "l": "0.4", - "x": 8.3457, - "y": 45.709 - }, - { - "l": "0.4", - "x": 8.429, - "y": 45.7374 - }, - { - "l": "0.4", - "x": 8.5123, - "y": 45.7689 - }, - { - "l": "0.4", - "x": 8.5957, - "y": 45.7993 - }, - { - "l": "0.4", - "x": 8.679, - "y": 45.8269 - }, - { - "l": "0.4", - "x": 8.7623, - "y": 45.8576 - }, - { - "l": "0.4", - "x": 8.8457, - "y": 45.8874 - }, - { - "l": "0.4", - "x": 8.929, - "y": 45.9146 - }, - { - "l": "0.4", - "x": 9.0123, - "y": 45.9452 - }, - { - "l": "0.4", - "x": 9.0957, - "y": 45.9748 - }, - { - "l": "0.4", - "x": 9.179, - "y": 46.002 - }, - { - "l": "0.4", - "x": 9.2623, - "y": 46.0325 - }, - { - "l": "0.4", - "x": 9.3457, - "y": 46.0624 - }, - { - "l": "0.4", - "x": 9.429, - "y": 46.0899 - }, - { - "l": "0.4", - "x": 9.5123, - "y": 46.1207 - }, - { - "l": "0.4", - "x": 9.5957, - "y": 46.1511 - }, - { - "l": "0.4", - "x": 9.679, - "y": 46.1793 - }, - { - "l": "0.4", - "x": 9.7623, - "y": 46.2117 - }, - { - "l": "0.4", - "x": 9.8457, - "y": 46.2433 - }, - { - "l": "0.4", - "x": 9.929, - "y": 46.2721 - }, - { - "l": "0.4", - "x": 10.0123, - "y": 46.3048 - }, - { - "l": "0.4", - "x": 10.0957, - "y": 46.3374 - }, - { - "l": "0.4", - "x": 10.179, - "y": 46.3675 - }, - { - "l": "0.4", - "x": 10.2623, - "y": 46.4019 - }, - { - "l": "0.4", - "x": 10.3457, - "y": 46.4356 - }, - { - "l": "0.4", - "x": 10.429, - "y": 46.4664 - }, - { - "l": "0.4", - "x": 10.5123, - "y": 46.5014 - }, - { - "l": "0.4", - "x": 10.5957, - "y": 46.536 - }, - { - "l": "0.4", - "x": 10.679, - "y": 46.5681 - }, - { - "l": "0.4", - "x": 10.7623, - "y": 46.6043 - }, - { - "l": "0.4", - "x": 10.8457, - "y": 46.6398 - }, - { - "l": "0.4", - "x": 10.929, - "y": 46.6725 - }, - { - "l": "0.4", - "x": 11.0123, - "y": 46.7094 - }, - { - "l": "0.4", - "x": 11.0957, - "y": 46.7453 - }, - { - "l": "0.4", - "x": 11.179, - "y": 46.7781 - }, - { - "l": "0.4", - "x": 11.2623, - "y": 46.8149 - }, - { - "l": "0.4", - "x": 11.3457, - "y": 46.8506 - }, - { - "l": "0.4", - "x": 11.429, - "y": 46.8833 - }, - { - "l": "0.4", - "x": 11.5123, - "y": 46.9199 - }, - { - "l": "0.4", - "x": 11.5957, - "y": 46.9555 - }, - { - "l": "0.4", - "x": 11.679, - "y": 46.988 - }, - { - "l": "0.4", - "x": 11.7623, - "y": 47.0244 - }, - { - "l": "0.4", - "x": 11.8457, - "y": 47.0598 - }, - { - "l": "0.4", - "x": 11.929, - "y": 47.0924 - }, - { - "l": "0.4", - "x": 12.0123, - "y": 47.1291 - }, - { - "l": "0.4", - "x": 12.0957, - "y": 47.165 - }, - { - "l": "0.4", - "x": 12.179, - "y": 47.1982 - }, - { - "l": "0.4", - "x": 12.2623, - "y": 47.2359 - }, - { - "l": "0.4", - "x": 12.3457, - "y": 47.2731 - }, - { - "l": "0.4", - "x": 12.429, - "y": 47.3077 - }, - { - "l": "0.4", - "x": 12.5123, - "y": 47.3466 - }, - { - "l": "0.4", - "x": 12.5957, - "y": 47.385 - }, - { - "l": "0.4", - "x": 12.679, - "y": 47.4212 - }, - { - "l": "0.4", - "x": 12.7623, - "y": 47.4619 - }, - { - "l": "0.4", - "x": 12.8457, - "y": 47.5015 - }, - { - "l": "0.4", - "x": 12.929, - "y": 47.5383 - }, - { - "l": "0.4", - "x": 13.0123, - "y": 47.5804 - }, - { - "l": "0.4", - "x": 13.0957, - "y": 47.6214 - }, - { - "l": "0.4", - "x": 13.179, - "y": 47.6591 - }, - { - "l": "0.4", - "x": 13.2623, - "y": 47.7019 - }, - { - "l": "0.4", - "x": 13.3457, - "y": 47.7439 - }, - { - "l": "0.4", - "x": 13.429, - "y": 47.7824 - }, - { - "l": "0.4", - "x": 13.5123, - "y": 47.8258 - }, - { - "l": "0.4", - "x": 13.5957, - "y": 47.8679 - }, - { - "l": "0.4", - "x": 13.679, - "y": 47.9064 - }, - { - "l": "0.4", - "x": 13.7623, - "y": 47.9492 - }, - { - "l": "0.4", - "x": 13.8457, - "y": 47.9903 - }, - { - "l": "0.4", - "x": 13.929, - "y": 48.0277 - }, - { - "l": "0.4", - "x": 14.0123, - "y": 48.0689 - }, - { - "l": "0.4", - "x": 14.0957, - "y": 48.1084 - }, - { - "l": "0.4", - "x": 14.179, - "y": 48.1436 - }, - { - "l": "0.4", - "x": 14.2623, - "y": 48.1825 - }, - { - "l": "0.4", - "x": 14.3457, - "y": 48.2195 - }, - { - "l": "0.4", - "x": 14.429, - "y": 48.2526 - }, - { - "l": "0.4", - "x": 14.5123, - "y": 48.289 - }, - { - "l": "0.4", - "x": 14.5957, - "y": 48.3235 - }, - { - "l": "0.4", - "x": 14.679, - "y": 48.3542 - }, - { - "l": "0.4", - "x": 14.7623, - "y": 48.3876 - }, - { - "l": "0.4", - "x": 14.8457, - "y": 48.4191 - }, - { - "l": "0.4", - "x": 14.929, - "y": 48.4475 - }, - { - "l": "0.4", - "x": 15.0123, - "y": 48.4776 - }, - { - "l": "0.4", - "x": 15.0957, - "y": 48.5066 - }, - { - "l": "0.4", - "x": 15.179, - "y": 48.5326 - }, - { - "l": "0.4", - "x": 15.2623, - "y": 48.5604 - }, - { - "l": "0.4", - "x": 15.3457, - "y": 48.5861 - }, - { - "l": "0.4", - "x": 15.429, - "y": 48.6087 - }, - { - "l": "0.4", - "x": 15.5123, - "y": 48.6341 - }, - { - "l": "0.4", - "x": 15.5957, - "y": 48.6575 - }, - { - "l": "0.4", - "x": 15.679, - "y": 48.6777 - }, - { - "l": "0.4", - "x": 15.7623, - "y": 48.6994 - }, - { - "l": "0.4", - "x": 15.8457, - "y": 48.7197 - }, - { - "l": "0.4", - "x": 15.929, - "y": 48.7371 - }, - { - "l": "0.4", - "x": 16.0123, - "y": 48.7553 - }, - { - "l": "0.4", - "x": 16.0957, - "y": 48.7724 - }, - { - "l": "0.4", - "x": 16.179, - "y": 48.7865 - }, - { - "l": "0.4", - "x": 16.2623, - "y": 48.802 - }, - { - "l": "0.4", - "x": 16.3457, - "y": 48.8158 - }, - { - "l": "0.4", - "x": 16.429, - "y": 48.8276 - }, - { - "l": "0.4", - "x": 16.5123, - "y": 48.8397 - }, - { - "l": "0.4", - "x": 16.5957, - "y": 48.8504 - }, - { - "l": "0.4", - "x": 16.679, - "y": 48.8598 - }, - { - "l": "0.4", - "x": 16.7623, - "y": 48.8689 - }, - { - "l": "0.4", - "x": 16.8457, - "y": 48.877 - }, - { - "l": "0.4", - "x": 16.929, - "y": 48.8834 - }, - { - "l": "0.4", - "x": 17.0123, - "y": 48.8903 - }, - { - "l": "0.4", - "x": 17.0957, - "y": 48.8952 - }, - { - "l": "0.4", - "x": 17.179, - "y": 48.8996 - }, - { - "l": "0.4", - "x": 17.2623, - "y": 48.9042 - }, - { - "l": "0.4", - "x": 17.3457, - "y": 48.9069 - }, - { - "l": "0.4", - "x": 17.429, - "y": 48.9085 - }, - { - "l": "0.4", - "x": 17.5123, - "y": 48.9104 - }, - { - "l": "0.4", - "x": 17.5957, - "y": 48.9123 - }, - { - "l": "0.4", - "x": 17.679, - "y": 48.914 - }, - { - "l": "0.4", - "x": 17.7623, - "y": 48.9159 - }, - { - "l": "0.4", - "x": 17.8457, - "y": 48.9175 - }, - { - "l": "0.4", - "x": 17.929, - "y": 48.9178 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 0.0, - "y": 30.872 - }, - { - "l": "2.0", - "x": 0.0192, - "y": 31.2782 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 31.6848 - }, - { - "l": "2.0", - "x": 0.0575, - "y": 32.0919 - }, - { - "l": "2.0", - "x": 0.0767, - "y": 32.4994 - }, - { - "l": "2.0", - "x": 0.0958, - "y": 32.8669 - }, - { - "l": "2.0", - "x": 0.115, - "y": 33.2148 - }, - { - "l": "2.0", - "x": 0.1342, - "y": 33.5538 - }, - { - "l": "2.0", - "x": 0.1533, - "y": 33.8873 - }, - { - "l": "2.0", - "x": 0.1725, - "y": 34.2215 - }, - { - "l": "2.0", - "x": 0.1916, - "y": 34.5728 - }, - { - "l": "2.0", - "x": 0.2108, - "y": 34.921 - }, - { - "l": "2.0", - "x": 0.23, - "y": 35.2636 - }, - { - "l": "2.0", - "x": 0.2491, - "y": 35.5976 - }, - { - "l": "2.0", - "x": 0.2683, - "y": 35.9167 - }, - { - "l": "2.0", - "x": 0.2875, - "y": 36.2231 - }, - { - "l": "2.0", - "x": 0.3066, - "y": 36.5155 - }, - { - "l": "2.0", - "x": 0.3258, - "y": 36.7927 - }, - { - "l": "2.0", - "x": 0.345, - "y": 37.0424 - }, - { - "l": "2.0", - "x": 0.3641, - "y": 37.2738 - }, - { - "l": "2.0", - "x": 0.3833, - "y": 37.4929 - }, - { - "l": "2.0", - "x": 0.4025, - "y": 37.7028 - }, - { - "l": "2.0", - "x": 0.4216, - "y": 37.9075 - }, - { - "l": "2.0", - "x": 0.4408, - "y": 38.1204 - }, - { - "l": "2.0", - "x": 0.46, - "y": 38.3276 - }, - { - "l": "2.0", - "x": 0.4791, - "y": 38.5279 - }, - { - "l": "2.0", - "x": 0.4983, - "y": 38.7201 - }, - { - "l": "2.0", - "x": 0.5175, - "y": 38.8999 - }, - { - "l": "2.0", - "x": 0.5366, - "y": 39.0697 - }, - { - "l": "2.0", - "x": 0.5558, - "y": 39.2296 - }, - { - "l": "2.0", - "x": 0.5749, - "y": 39.3794 - }, - { - "l": "2.0", - "x": 0.5941, - "y": 39.514 - }, - { - "l": "2.0", - "x": 0.6133, - "y": 39.6377 - }, - { - "l": "2.0", - "x": 0.6324, - "y": 39.7542 - }, - { - "l": "2.0", - "x": 0.6516, - "y": 39.8653 - }, - { - "l": "2.0", - "x": 0.6708, - "y": 39.9735 - }, - { - "l": "2.0", - "x": 0.6899, - "y": 40.0875 - }, - { - "l": "2.0", - "x": 0.7091, - "y": 40.1991 - }, - { - "l": "2.0", - "x": 0.7283, - "y": 40.3077 - }, - { - "l": "2.0", - "x": 0.7474, - "y": 40.4128 - }, - { - "l": "2.0", - "x": 0.7666, - "y": 40.5131 - }, - { - "l": "2.0", - "x": 0.7858, - "y": 40.609 - }, - { - "l": "2.0", - "x": 0.8049, - "y": 40.7004 - }, - { - "l": "2.0", - "x": 0.8241, - "y": 40.7871 - }, - { - "l": "2.0", - "x": 0.8433, - "y": 40.8661 - }, - { - "l": "2.0", - "x": 0.8624, - "y": 40.9394 - }, - { - "l": "2.0", - "x": 0.8816, - "y": 41.0093 - }, - { - "l": "2.0", - "x": 0.9008, - "y": 41.077 - }, - { - "l": "2.0", - "x": 0.9199, - "y": 41.1435 - }, - { - "l": "2.0", - "x": 0.9391, - "y": 41.2145 - }, - { - "l": "2.0", - "x": 0.9582, - "y": 41.2849 - }, - { - "l": "2.0", - "x": 0.9774, - "y": 41.354 - }, - { - "l": "2.0", - "x": 0.9966, - "y": 41.4216 - }, - { - "l": "2.0", - "x": 1.0157, - "y": 41.4867 - }, - { - "l": "2.0", - "x": 1.0349, - "y": 41.5494 - }, - { - "l": "2.0", - "x": 1.0541, - "y": 41.6097 - }, - { - "l": "2.0", - "x": 1.0732, - "y": 41.6674 - }, - { - "l": "2.0", - "x": 1.0924, - "y": 41.7204 - }, - { - "l": "2.0", - "x": 1.1116, - "y": 41.7699 - }, - { - "l": "2.0", - "x": 1.1307, - "y": 41.8175 - }, - { - "l": "2.0", - "x": 1.1499, - "y": 41.8638 - }, - { - "l": "2.0", - "x": 1.1691, - "y": 41.9096 - }, - { - "l": "2.0", - "x": 1.1882, - "y": 41.9584 - }, - { - "l": "2.0", - "x": 1.2074, - "y": 42.007 - }, - { - "l": "2.0", - "x": 1.2266, - "y": 42.055 - }, - { - "l": "2.0", - "x": 1.2457, - "y": 42.1022 - }, - { - "l": "2.0", - "x": 1.2649, - "y": 42.148 - }, - { - "l": "2.0", - "x": 1.2841, - "y": 42.1925 - }, - { - "l": "2.0", - "x": 1.3032, - "y": 42.2354 - }, - { - "l": "2.0", - "x": 1.3224, - "y": 42.2766 - }, - { - "l": "2.0", - "x": 1.3415, - "y": 42.3146 - }, - { - "l": "2.0", - "x": 1.3607, - "y": 42.35 - }, - { - "l": "2.0", - "x": 1.3799, - "y": 42.3842 - }, - { - "l": "2.0", - "x": 1.399, - "y": 42.4176 - }, - { - "l": "2.0", - "x": 1.4182, - "y": 42.4506 - }, - { - "l": "2.0", - "x": 1.4374, - "y": 42.4858 - }, - { - "l": "2.0", - "x": 1.4565, - "y": 42.521 - }, - { - "l": "2.0", - "x": 1.4757, - "y": 42.5561 - }, - { - "l": "2.0", - "x": 1.4949, - "y": 42.5906 - }, - { - "l": "2.0", - "x": 1.514, - "y": 42.6245 - }, - { - "l": "2.0", - "x": 1.5332, - "y": 42.6575 - }, - { - "l": "2.0", - "x": 1.5524, - "y": 42.6895 - }, - { - "l": "2.0", - "x": 1.5715, - "y": 42.7206 - }, - { - "l": "2.0", - "x": 1.5907, - "y": 42.7496 - }, - { - "l": "2.0", - "x": 1.6099, - "y": 42.7768 - }, - { - "l": "2.0", - "x": 1.629, - "y": 42.8033 - }, - { - "l": "2.0", - "x": 1.6482, - "y": 42.8294 - }, - { - "l": "2.0", - "x": 1.6674, - "y": 42.8556 - }, - { - "l": "2.0", - "x": 1.6865, - "y": 42.8835 - }, - { - "l": "2.0", - "x": 1.7057, - "y": 42.912 - }, - { - "l": "2.0", - "x": 1.7248, - "y": 42.9405 - }, - { - "l": "2.0", - "x": 1.744, - "y": 42.9691 - }, - { - "l": "2.0", - "x": 1.7632, - "y": 42.9973 - }, - { - "l": "2.0", - "x": 1.7823, - "y": 43.0252 - }, - { - "l": "2.0", - "x": 1.8015, - "y": 43.0526 - }, - { - "l": "2.0", - "x": 1.8207, - "y": 43.0795 - }, - { - "l": "2.0", - "x": 1.8398, - "y": 43.1049 - }, - { - "l": "2.0", - "x": 1.859, - "y": 43.1289 - }, - { - "l": "2.0", - "x": 1.8782, - "y": 43.1525 - }, - { - "l": "2.0", - "x": 1.8973, - "y": 43.1761 - }, - { - "l": "2.0", - "x": 1.9165, - "y": 43.2 - }, - { - "l": "2.0", - "x": 1.9357, - "y": 43.2257 - }, - { - "l": "2.0", - "x": 1.9548, - "y": 43.2521 - }, - { - "l": "2.0", - "x": 1.974, - "y": 43.2788 - }, - { - "l": "2.0", - "x": 1.9932, - "y": 43.3056 - }, - { - "l": "2.0", - "x": 2.0123, - "y": 43.3325 - }, - { - "l": "2.0", - "x": 2.0957, - "y": 43.4443 - }, - { - "l": "2.0", - "x": 2.179, - "y": 43.5456 - }, - { - "l": "2.0", - "x": 2.2623, - "y": 43.6572 - }, - { - "l": "2.0", - "x": 2.3457, - "y": 43.7628 - }, - { - "l": "2.0", - "x": 2.429, - "y": 43.8562 - }, - { - "l": "2.0", - "x": 2.5123, - "y": 43.9568 - }, - { - "l": "2.0", - "x": 2.5957, - "y": 44.05 - }, - { - "l": "2.0", - "x": 2.679, - "y": 44.1307 - }, - { - "l": "2.0", - "x": 2.7623, - "y": 44.2161 - }, - { - "l": "2.0", - "x": 2.8457, - "y": 44.294 - }, - { - "l": "2.0", - "x": 2.929, - "y": 44.3603 - }, - { - "l": "2.0", - "x": 3.0123, - "y": 44.4297 - }, - { - "l": "2.0", - "x": 3.0957, - "y": 44.4922 - }, - { - "l": "2.0", - "x": 3.179, - "y": 44.5453 - }, - { - "l": "2.0", - "x": 3.2623, - "y": 44.6009 - }, - { - "l": "2.0", - "x": 3.3457, - "y": 44.6512 - }, - { - "l": "2.0", - "x": 3.429, - "y": 44.6942 - }, - { - "l": "2.0", - "x": 3.5123, - "y": 44.7393 - }, - { - "l": "2.0", - "x": 3.5957, - "y": 44.7805 - }, - { - "l": "2.0", - "x": 3.679, - "y": 44.816 - }, - { - "l": "2.0", - "x": 3.7623, - "y": 44.8538 - }, - { - "l": "2.0", - "x": 3.8457, - "y": 44.8889 - }, - { - "l": "2.0", - "x": 3.929, - "y": 44.9198 - }, - { - "l": "2.0", - "x": 4.0123, - "y": 44.9534 - }, - { - "l": "2.0", - "x": 4.0957, - "y": 44.9856 - }, - { - "l": "2.0", - "x": 4.179, - "y": 45.0148 - }, - { - "l": "2.0", - "x": 4.2623, - "y": 45.0479 - }, - { - "l": "2.0", - "x": 4.3457, - "y": 45.0805 - }, - { - "l": "2.0", - "x": 4.429, - "y": 45.1109 - }, - { - "l": "2.0", - "x": 4.5123, - "y": 45.1458 - }, - { - "l": "2.0", - "x": 4.5957, - "y": 45.1804 - }, - { - "l": "2.0", - "x": 4.679, - "y": 45.213 - }, - { - "l": "2.0", - "x": 4.7623, - "y": 45.2502 - }, - { - "l": "2.0", - "x": 4.8457, - "y": 45.2872 - }, - { - "l": "2.0", - "x": 4.929, - "y": 45.3216 - }, - { - "l": "2.0", - "x": 5.0123, - "y": 45.3606 - }, - { - "l": "2.0", - "x": 5.0957, - "y": 45.3989 - }, - { - "l": "2.0", - "x": 5.179, - "y": 45.4343 - }, - { - "l": "2.0", - "x": 5.2623, - "y": 45.4741 - }, - { - "l": "2.0", - "x": 5.3457, - "y": 45.5129 - }, - { - "l": "2.0", - "x": 5.429, - "y": 45.5483 - }, - { - "l": "2.0", - "x": 5.5123, - "y": 45.5879 - }, - { - "l": "2.0", - "x": 5.5957, - "y": 45.6263 - }, - { - "l": "2.0", - "x": 5.679, - "y": 45.6612 - }, - { - "l": "2.0", - "x": 5.7623, - "y": 45.7 - }, - { - "l": "2.0", - "x": 5.8457, - "y": 45.7375 - }, - { - "l": "2.0", - "x": 5.929, - "y": 45.7717 - }, - { - "l": "2.0", - "x": 6.0123, - "y": 45.81 - }, - { - "l": "2.0", - "x": 6.0957, - "y": 45.847 - }, - { - "l": "2.0", - "x": 6.179, - "y": 45.8807 - }, - { - "l": "2.0", - "x": 6.2623, - "y": 45.9184 - }, - { - "l": "2.0", - "x": 6.3457, - "y": 45.9548 - }, - { - "l": "2.0", - "x": 6.429, - "y": 45.9879 - }, - { - "l": "2.0", - "x": 6.5123, - "y": 46.0248 - }, - { - "l": "2.0", - "x": 6.5957, - "y": 46.0606 - }, - { - "l": "2.0", - "x": 6.679, - "y": 46.0931 - }, - { - "l": "2.0", - "x": 6.7623, - "y": 46.1295 - }, - { - "l": "2.0", - "x": 6.8457, - "y": 46.1648 - }, - { - "l": "2.0", - "x": 6.929, - "y": 46.1968 - }, - { - "l": "2.0", - "x": 7.0123, - "y": 46.2327 - }, - { - "l": "2.0", - "x": 7.0957, - "y": 46.2675 - }, - { - "l": "2.0", - "x": 7.179, - "y": 46.2991 - }, - { - "l": "2.0", - "x": 7.2623, - "y": 46.3343 - }, - { - "l": "2.0", - "x": 7.3457, - "y": 46.3685 - }, - { - "l": "2.0", - "x": 7.429, - "y": 46.3996 - }, - { - "l": "2.0", - "x": 7.5123, - "y": 46.4341 - }, - { - "l": "2.0", - "x": 7.5957, - "y": 46.4675 - }, - { - "l": "2.0", - "x": 7.679, - "y": 46.498 - }, - { - "l": "2.0", - "x": 7.7623, - "y": 46.532 - }, - { - "l": "2.0", - "x": 7.8457, - "y": 46.565 - }, - { - "l": "2.0", - "x": 7.929, - "y": 46.5951 - }, - { - "l": "2.0", - "x": 8.0123, - "y": 46.6288 - }, - { - "l": "2.0", - "x": 8.0957, - "y": 46.6613 - }, - { - "l": "2.0", - "x": 8.179, - "y": 46.6909 - }, - { - "l": "2.0", - "x": 8.2623, - "y": 46.7239 - }, - { - "l": "2.0", - "x": 8.3457, - "y": 46.7557 - }, - { - "l": "2.0", - "x": 8.429, - "y": 46.7845 - }, - { - "l": "2.0", - "x": 8.5123, - "y": 46.8165 - }, - { - "l": "2.0", - "x": 8.5957, - "y": 46.8474 - }, - { - "l": "2.0", - "x": 8.679, - "y": 46.8754 - }, - { - "l": "2.0", - "x": 8.7623, - "y": 46.9067 - }, - { - "l": "2.0", - "x": 8.8457, - "y": 46.937 - }, - { - "l": "2.0", - "x": 8.929, - "y": 46.9647 - }, - { - "l": "2.0", - "x": 9.0123, - "y": 46.9957 - }, - { - "l": "2.0", - "x": 9.0957, - "y": 47.0259 - }, - { - "l": "2.0", - "x": 9.179, - "y": 47.0535 - }, - { - "l": "2.0", - "x": 9.2623, - "y": 47.0846 - }, - { - "l": "2.0", - "x": 9.3457, - "y": 47.1149 - }, - { - "l": "2.0", - "x": 9.429, - "y": 47.1429 - }, - { - "l": "2.0", - "x": 9.5123, - "y": 47.1743 - }, - { - "l": "2.0", - "x": 9.5957, - "y": 47.2052 - }, - { - "l": "2.0", - "x": 9.679, - "y": 47.2339 - }, - { - "l": "2.0", - "x": 9.7623, - "y": 47.2668 - }, - { - "l": "2.0", - "x": 9.8457, - "y": 47.299 - }, - { - "l": "2.0", - "x": 9.929, - "y": 47.3284 - }, - { - "l": "2.0", - "x": 10.0123, - "y": 47.3617 - }, - { - "l": "2.0", - "x": 10.0957, - "y": 47.3948 - }, - { - "l": "2.0", - "x": 10.179, - "y": 47.4255 - }, - { - "l": "2.0", - "x": 10.2623, - "y": 47.4606 - }, - { - "l": "2.0", - "x": 10.3457, - "y": 47.4948 - }, - { - "l": "2.0", - "x": 10.429, - "y": 47.5262 - }, - { - "l": "2.0", - "x": 10.5123, - "y": 47.5618 - }, - { - "l": "2.0", - "x": 10.5957, - "y": 47.5971 - }, - { - "l": "2.0", - "x": 10.679, - "y": 47.6298 - }, - { - "l": "2.0", - "x": 10.7623, - "y": 47.6667 - }, - { - "l": "2.0", - "x": 10.8457, - "y": 47.7029 - }, - { - "l": "2.0", - "x": 10.929, - "y": 47.7362 - }, - { - "l": "2.0", - "x": 11.0123, - "y": 47.7738 - }, - { - "l": "2.0", - "x": 11.0957, - "y": 47.8104 - }, - { - "l": "2.0", - "x": 11.179, - "y": 47.8438 - }, - { - "l": "2.0", - "x": 11.2623, - "y": 47.8813 - }, - { - "l": "2.0", - "x": 11.3457, - "y": 47.9178 - }, - { - "l": "2.0", - "x": 11.429, - "y": 47.951 - }, - { - "l": "2.0", - "x": 11.5123, - "y": 47.9884 - }, - { - "l": "2.0", - "x": 11.5957, - "y": 48.0246 - }, - { - "l": "2.0", - "x": 11.679, - "y": 48.0578 - }, - { - "l": "2.0", - "x": 11.7623, - "y": 48.0949 - }, - { - "l": "2.0", - "x": 11.8457, - "y": 48.1311 - }, - { - "l": "2.0", - "x": 11.929, - "y": 48.1642 - }, - { - "l": "2.0", - "x": 12.0123, - "y": 48.2017 - }, - { - "l": "2.0", - "x": 12.0957, - "y": 48.2384 - }, - { - "l": "2.0", - "x": 12.179, - "y": 48.2722 - }, - { - "l": "2.0", - "x": 12.2623, - "y": 48.3106 - }, - { - "l": "2.0", - "x": 12.3457, - "y": 48.3486 - }, - { - "l": "2.0", - "x": 12.429, - "y": 48.3839 - }, - { - "l": "2.0", - "x": 12.5123, - "y": 48.4235 - }, - { - "l": "2.0", - "x": 12.5957, - "y": 48.4627 - }, - { - "l": "2.0", - "x": 12.679, - "y": 48.4997 - }, - { - "l": "2.0", - "x": 12.7623, - "y": 48.5411 - }, - { - "l": "2.0", - "x": 12.8457, - "y": 48.5815 - }, - { - "l": "2.0", - "x": 12.929, - "y": 48.6191 - }, - { - "l": "2.0", - "x": 13.0123, - "y": 48.6621 - }, - { - "l": "2.0", - "x": 13.0957, - "y": 48.7039 - }, - { - "l": "2.0", - "x": 13.179, - "y": 48.7423 - }, - { - "l": "2.0", - "x": 13.2623, - "y": 48.786 - }, - { - "l": "2.0", - "x": 13.3457, - "y": 48.8288 - }, - { - "l": "2.0", - "x": 13.429, - "y": 48.8682 - }, - { - "l": "2.0", - "x": 13.5123, - "y": 48.9124 - }, - { - "l": "2.0", - "x": 13.5957, - "y": 48.9555 - }, - { - "l": "2.0", - "x": 13.679, - "y": 48.9947 - }, - { - "l": "2.0", - "x": 13.7623, - "y": 49.0384 - }, - { - "l": "2.0", - "x": 13.8457, - "y": 49.0804 - }, - { - "l": "2.0", - "x": 13.929, - "y": 49.1186 - }, - { - "l": "2.0", - "x": 14.0123, - "y": 49.1606 - }, - { - "l": "2.0", - "x": 14.0957, - "y": 49.2009 - }, - { - "l": "2.0", - "x": 14.179, - "y": 49.2369 - }, - { - "l": "2.0", - "x": 14.2623, - "y": 49.2766 - }, - { - "l": "2.0", - "x": 14.3457, - "y": 49.3143 - }, - { - "l": "2.0", - "x": 14.429, - "y": 49.3481 - }, - { - "l": "2.0", - "x": 14.5123, - "y": 49.3853 - }, - { - "l": "2.0", - "x": 14.5957, - "y": 49.4205 - }, - { - "l": "2.0", - "x": 14.679, - "y": 49.4518 - }, - { - "l": "2.0", - "x": 14.7623, - "y": 49.486 - }, - { - "l": "2.0", - "x": 14.8457, - "y": 49.5182 - }, - { - "l": "2.0", - "x": 14.929, - "y": 49.5471 - }, - { - "l": "2.0", - "x": 15.0123, - "y": 49.5779 - }, - { - "l": "2.0", - "x": 15.0957, - "y": 49.6076 - }, - { - "l": "2.0", - "x": 15.179, - "y": 49.6341 - }, - { - "l": "2.0", - "x": 15.2623, - "y": 49.6625 - }, - { - "l": "2.0", - "x": 15.3457, - "y": 49.6887 - }, - { - "l": "2.0", - "x": 15.429, - "y": 49.7118 - }, - { - "l": "2.0", - "x": 15.5123, - "y": 49.7377 - }, - { - "l": "2.0", - "x": 15.5957, - "y": 49.7617 - }, - { - "l": "2.0", - "x": 15.679, - "y": 49.7823 - }, - { - "l": "2.0", - "x": 15.7623, - "y": 49.8044 - }, - { - "l": "2.0", - "x": 15.8457, - "y": 49.8251 - }, - { - "l": "2.0", - "x": 15.929, - "y": 49.8429 - }, - { - "l": "2.0", - "x": 16.0123, - "y": 49.8616 - }, - { - "l": "2.0", - "x": 16.0957, - "y": 49.879 - }, - { - "l": "2.0", - "x": 16.179, - "y": 49.8934 - }, - { - "l": "2.0", - "x": 16.2623, - "y": 49.9093 - }, - { - "l": "2.0", - "x": 16.3457, - "y": 49.9233 - }, - { - "l": "2.0", - "x": 16.429, - "y": 49.9353 - }, - { - "l": "2.0", - "x": 16.5123, - "y": 49.9478 - }, - { - "l": "2.0", - "x": 16.5957, - "y": 49.9587 - }, - { - "l": "2.0", - "x": 16.679, - "y": 49.9682 - }, - { - "l": "2.0", - "x": 16.7623, - "y": 49.9775 - }, - { - "l": "2.0", - "x": 16.8457, - "y": 49.9858 - }, - { - "l": "2.0", - "x": 16.929, - "y": 49.9923 - }, - { - "l": "2.0", - "x": 17.0123, - "y": 49.9994 - }, - { - "l": "2.0", - "x": 17.0957, - "y": 50.0043 - }, - { - "l": "2.0", - "x": 17.179, - "y": 50.0088 - }, - { - "l": "2.0", - "x": 17.2623, - "y": 50.0136 - }, - { - "l": "2.0", - "x": 17.3457, - "y": 50.0163 - }, - { - "l": "2.0", - "x": 17.429, - "y": 50.018 - }, - { - "l": "2.0", - "x": 17.5123, - "y": 50.02 - }, - { - "l": "2.0", - "x": 17.5957, - "y": 50.0219 - }, - { - "l": "2.0", - "x": 17.679, - "y": 50.0236 - }, - { - "l": "2.0", - "x": 17.7623, - "y": 50.0256 - }, - { - "l": "2.0", - "x": 17.8457, - "y": 50.0272 - }, - { - "l": "2.0", - "x": 17.929, - "y": 50.0275 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 0.0, - "y": 31.7631 - }, - { - "l": "9.0", - "x": 0.0192, - "y": 32.1749 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 32.5869 - }, - { - "l": "9.0", - "x": 0.0575, - "y": 32.9993 - }, - { - "l": "9.0", - "x": 0.0767, - "y": 33.4119 - }, - { - "l": "9.0", - "x": 0.0958, - "y": 33.784 - }, - { - "l": "9.0", - "x": 0.115, - "y": 34.1361 - }, - { - "l": "9.0", - "x": 0.1342, - "y": 34.479 - }, - { - "l": "9.0", - "x": 0.1533, - "y": 34.8162 - }, - { - "l": "9.0", - "x": 0.1725, - "y": 35.154 - }, - { - "l": "9.0", - "x": 0.1916, - "y": 35.509 - }, - { - "l": "9.0", - "x": 0.2108, - "y": 35.8608 - }, - { - "l": "9.0", - "x": 0.23, - "y": 36.2066 - }, - { - "l": "9.0", - "x": 0.2491, - "y": 36.5438 - }, - { - "l": "9.0", - "x": 0.2683, - "y": 36.8656 - }, - { - "l": "9.0", - "x": 0.2875, - "y": 37.1744 - }, - { - "l": "9.0", - "x": 0.3066, - "y": 37.4691 - }, - { - "l": "9.0", - "x": 0.3258, - "y": 37.7482 - }, - { - "l": "9.0", - "x": 0.345, - "y": 37.9996 - }, - { - "l": "9.0", - "x": 0.3641, - "y": 38.2325 - }, - { - "l": "9.0", - "x": 0.3833, - "y": 38.4528 - }, - { - "l": "9.0", - "x": 0.4025, - "y": 38.6637 - }, - { - "l": "9.0", - "x": 0.4216, - "y": 38.8693 - }, - { - "l": "9.0", - "x": 0.4408, - "y": 39.083 - }, - { - "l": "9.0", - "x": 0.46, - "y": 39.2909 - }, - { - "l": "9.0", - "x": 0.4791, - "y": 39.4917 - }, - { - "l": "9.0", - "x": 0.4983, - "y": 39.6843 - }, - { - "l": "9.0", - "x": 0.5175, - "y": 39.8643 - }, - { - "l": "9.0", - "x": 0.5366, - "y": 40.0342 - }, - { - "l": "9.0", - "x": 0.5558, - "y": 40.1941 - }, - { - "l": "9.0", - "x": 0.5749, - "y": 40.3438 - }, - { - "l": "9.0", - "x": 0.5941, - "y": 40.4783 - }, - { - "l": "9.0", - "x": 0.6133, - "y": 40.6019 - }, - { - "l": "9.0", - "x": 0.6324, - "y": 40.7181 - }, - { - "l": "9.0", - "x": 0.6516, - "y": 40.8291 - }, - { - "l": "9.0", - "x": 0.6708, - "y": 40.937 - }, - { - "l": "9.0", - "x": 0.6899, - "y": 41.0507 - }, - { - "l": "9.0", - "x": 0.7091, - "y": 41.162 - }, - { - "l": "9.0", - "x": 0.7283, - "y": 41.2703 - }, - { - "l": "9.0", - "x": 0.7474, - "y": 41.3751 - }, - { - "l": "9.0", - "x": 0.7666, - "y": 41.4752 - }, - { - "l": "9.0", - "x": 0.7858, - "y": 41.5708 - }, - { - "l": "9.0", - "x": 0.8049, - "y": 41.6621 - }, - { - "l": "9.0", - "x": 0.8241, - "y": 41.7487 - }, - { - "l": "9.0", - "x": 0.8433, - "y": 41.8275 - }, - { - "l": "9.0", - "x": 0.8624, - "y": 41.9007 - }, - { - "l": "9.0", - "x": 0.8816, - "y": 41.9706 - }, - { - "l": "9.0", - "x": 0.9008, - "y": 42.0383 - }, - { - "l": "9.0", - "x": 0.9199, - "y": 42.1049 - }, - { - "l": "9.0", - "x": 0.9391, - "y": 42.176 - }, - { - "l": "9.0", - "x": 0.9582, - "y": 42.2465 - }, - { - "l": "9.0", - "x": 0.9774, - "y": 42.3159 - }, - { - "l": "9.0", - "x": 0.9966, - "y": 42.3837 - }, - { - "l": "9.0", - "x": 1.0157, - "y": 42.4491 - }, - { - "l": "9.0", - "x": 1.0349, - "y": 42.5122 - }, - { - "l": "9.0", - "x": 1.0541, - "y": 42.5729 - }, - { - "l": "9.0", - "x": 1.0732, - "y": 42.631 - }, - { - "l": "9.0", - "x": 1.0924, - "y": 42.6845 - }, - { - "l": "9.0", - "x": 1.1116, - "y": 42.7345 - }, - { - "l": "9.0", - "x": 1.1307, - "y": 42.7825 - }, - { - "l": "9.0", - "x": 1.1499, - "y": 42.8294 - }, - { - "l": "9.0", - "x": 1.1691, - "y": 42.8759 - }, - { - "l": "9.0", - "x": 1.1882, - "y": 42.9253 - }, - { - "l": "9.0", - "x": 1.2074, - "y": 42.9746 - }, - { - "l": "9.0", - "x": 1.2266, - "y": 43.0234 - }, - { - "l": "9.0", - "x": 1.2457, - "y": 43.0714 - }, - { - "l": "9.0", - "x": 1.2649, - "y": 43.1181 - }, - { - "l": "9.0", - "x": 1.2841, - "y": 43.1633 - }, - { - "l": "9.0", - "x": 1.3032, - "y": 43.207 - }, - { - "l": "9.0", - "x": 1.3224, - "y": 43.2491 - }, - { - "l": "9.0", - "x": 1.3415, - "y": 43.2879 - }, - { - "l": "9.0", - "x": 1.3607, - "y": 43.3241 - }, - { - "l": "9.0", - "x": 1.3799, - "y": 43.359 - }, - { - "l": "9.0", - "x": 1.399, - "y": 43.3931 - }, - { - "l": "9.0", - "x": 1.4182, - "y": 43.4269 - }, - { - "l": "9.0", - "x": 1.4374, - "y": 43.4628 - }, - { - "l": "9.0", - "x": 1.4565, - "y": 43.4989 - }, - { - "l": "9.0", - "x": 1.4757, - "y": 43.5347 - }, - { - "l": "9.0", - "x": 1.4949, - "y": 43.5701 - }, - { - "l": "9.0", - "x": 1.514, - "y": 43.6047 - }, - { - "l": "9.0", - "x": 1.5332, - "y": 43.6384 - }, - { - "l": "9.0", - "x": 1.5524, - "y": 43.6713 - }, - { - "l": "9.0", - "x": 1.5715, - "y": 43.703 - }, - { - "l": "9.0", - "x": 1.5907, - "y": 43.7327 - }, - { - "l": "9.0", - "x": 1.6099, - "y": 43.7604 - }, - { - "l": "9.0", - "x": 1.629, - "y": 43.7875 - }, - { - "l": "9.0", - "x": 1.6482, - "y": 43.8141 - }, - { - "l": "9.0", - "x": 1.6674, - "y": 43.8409 - }, - { - "l": "9.0", - "x": 1.6865, - "y": 43.8694 - }, - { - "l": "9.0", - "x": 1.7057, - "y": 43.8984 - }, - { - "l": "9.0", - "x": 1.7248, - "y": 43.9276 - }, - { - "l": "9.0", - "x": 1.744, - "y": 43.9566 - }, - { - "l": "9.0", - "x": 1.7632, - "y": 43.9854 - }, - { - "l": "9.0", - "x": 1.7823, - "y": 44.0138 - }, - { - "l": "9.0", - "x": 1.8015, - "y": 44.0418 - }, - { - "l": "9.0", - "x": 1.8207, - "y": 44.0691 - }, - { - "l": "9.0", - "x": 1.8398, - "y": 44.0949 - }, - { - "l": "9.0", - "x": 1.859, - "y": 44.1194 - }, - { - "l": "9.0", - "x": 1.8782, - "y": 44.1434 - }, - { - "l": "9.0", - "x": 1.8973, - "y": 44.1674 - }, - { - "l": "9.0", - "x": 1.9165, - "y": 44.1917 - }, - { - "l": "9.0", - "x": 1.9357, - "y": 44.2178 - }, - { - "l": "9.0", - "x": 1.9548, - "y": 44.2446 - }, - { - "l": "9.0", - "x": 1.974, - "y": 44.2718 - }, - { - "l": "9.0", - "x": 1.9932, - "y": 44.299 - }, - { - "l": "9.0", - "x": 2.0123, - "y": 44.3263 - }, - { - "l": "9.0", - "x": 2.0957, - "y": 44.44 - }, - { - "l": "9.0", - "x": 2.179, - "y": 44.5428 - }, - { - "l": "9.0", - "x": 2.2623, - "y": 44.6562 - }, - { - "l": "9.0", - "x": 2.3457, - "y": 44.7635 - }, - { - "l": "9.0", - "x": 2.429, - "y": 44.8584 - }, - { - "l": "9.0", - "x": 2.5123, - "y": 44.9606 - }, - { - "l": "9.0", - "x": 2.5957, - "y": 45.0553 - }, - { - "l": "9.0", - "x": 2.679, - "y": 45.1374 - }, - { - "l": "9.0", - "x": 2.7623, - "y": 45.2242 - }, - { - "l": "9.0", - "x": 2.8457, - "y": 45.3033 - }, - { - "l": "9.0", - "x": 2.929, - "y": 45.3708 - }, - { - "l": "9.0", - "x": 3.0123, - "y": 45.4413 - }, - { - "l": "9.0", - "x": 3.0957, - "y": 45.5049 - }, - { - "l": "9.0", - "x": 3.179, - "y": 45.5588 - }, - { - "l": "9.0", - "x": 3.2623, - "y": 45.6153 - }, - { - "l": "9.0", - "x": 3.3457, - "y": 45.6665 - }, - { - "l": "9.0", - "x": 3.429, - "y": 45.7101 - }, - { - "l": "9.0", - "x": 3.5123, - "y": 45.756 - }, - { - "l": "9.0", - "x": 3.5957, - "y": 45.7979 - }, - { - "l": "9.0", - "x": 3.679, - "y": 45.8339 - }, - { - "l": "9.0", - "x": 3.7623, - "y": 45.8723 - }, - { - "l": "9.0", - "x": 3.8457, - "y": 45.908 - }, - { - "l": "9.0", - "x": 3.929, - "y": 45.9393 - }, - { - "l": "9.0", - "x": 4.0123, - "y": 45.9735 - }, - { - "l": "9.0", - "x": 4.0957, - "y": 46.0062 - }, - { - "l": "9.0", - "x": 4.179, - "y": 46.0359 - }, - { - "l": "9.0", - "x": 4.2623, - "y": 46.0695 - }, - { - "l": "9.0", - "x": 4.3457, - "y": 46.1026 - }, - { - "l": "9.0", - "x": 4.429, - "y": 46.1335 - }, - { - "l": "9.0", - "x": 4.5123, - "y": 46.1688 - }, - { - "l": "9.0", - "x": 4.5957, - "y": 46.2041 - }, - { - "l": "9.0", - "x": 4.679, - "y": 46.2371 - }, - { - "l": "9.0", - "x": 4.7623, - "y": 46.2749 - }, - { - "l": "9.0", - "x": 4.8457, - "y": 46.3125 - }, - { - "l": "9.0", - "x": 4.929, - "y": 46.3474 - }, - { - "l": "9.0", - "x": 5.0123, - "y": 46.387 - }, - { - "l": "9.0", - "x": 5.0957, - "y": 46.4259 - }, - { - "l": "9.0", - "x": 5.179, - "y": 46.4617 - }, - { - "l": "9.0", - "x": 5.2623, - "y": 46.5021 - }, - { - "l": "9.0", - "x": 5.3457, - "y": 46.5415 - }, - { - "l": "9.0", - "x": 5.429, - "y": 46.5775 - }, - { - "l": "9.0", - "x": 5.5123, - "y": 46.6177 - }, - { - "l": "9.0", - "x": 5.5957, - "y": 46.6566 - }, - { - "l": "9.0", - "x": 5.679, - "y": 46.692 - }, - { - "l": "9.0", - "x": 5.7623, - "y": 46.7314 - }, - { - "l": "9.0", - "x": 5.8457, - "y": 46.7694 - }, - { - "l": "9.0", - "x": 5.929, - "y": 46.8041 - }, - { - "l": "9.0", - "x": 6.0123, - "y": 46.8429 - }, - { - "l": "9.0", - "x": 6.0957, - "y": 46.8805 - }, - { - "l": "9.0", - "x": 6.179, - "y": 46.9147 - }, - { - "l": "9.0", - "x": 6.2623, - "y": 46.9528 - }, - { - "l": "9.0", - "x": 6.3457, - "y": 46.9897 - }, - { - "l": "9.0", - "x": 6.429, - "y": 47.0233 - }, - { - "l": "9.0", - "x": 6.5123, - "y": 47.0608 - }, - { - "l": "9.0", - "x": 6.5957, - "y": 47.097 - }, - { - "l": "9.0", - "x": 6.679, - "y": 47.13 - }, - { - "l": "9.0", - "x": 6.7623, - "y": 47.167 - }, - { - "l": "9.0", - "x": 6.8457, - "y": 47.2027 - }, - { - "l": "9.0", - "x": 6.929, - "y": 47.2352 - }, - { - "l": "9.0", - "x": 7.0123, - "y": 47.2716 - }, - { - "l": "9.0", - "x": 7.0957, - "y": 47.3069 - }, - { - "l": "9.0", - "x": 7.179, - "y": 47.3389 - }, - { - "l": "9.0", - "x": 7.2623, - "y": 47.3747 - }, - { - "l": "9.0", - "x": 7.3457, - "y": 47.4094 - }, - { - "l": "9.0", - "x": 7.429, - "y": 47.4409 - }, - { - "l": "9.0", - "x": 7.5123, - "y": 47.4759 - }, - { - "l": "9.0", - "x": 7.5957, - "y": 47.5098 - }, - { - "l": "9.0", - "x": 7.679, - "y": 47.5407 - }, - { - "l": "9.0", - "x": 7.7623, - "y": 47.5753 - }, - { - "l": "9.0", - "x": 7.8457, - "y": 47.6087 - }, - { - "l": "9.0", - "x": 7.929, - "y": 47.6393 - }, - { - "l": "9.0", - "x": 8.0123, - "y": 47.6735 - }, - { - "l": "9.0", - "x": 8.0957, - "y": 47.7066 - }, - { - "l": "9.0", - "x": 8.179, - "y": 47.7366 - }, - { - "l": "9.0", - "x": 8.2623, - "y": 47.7701 - }, - { - "l": "9.0", - "x": 8.3457, - "y": 47.8024 - }, - { - "l": "9.0", - "x": 8.429, - "y": 47.8316 - }, - { - "l": "9.0", - "x": 8.5123, - "y": 47.8641 - }, - { - "l": "9.0", - "x": 8.5957, - "y": 47.8955 - }, - { - "l": "9.0", - "x": 8.679, - "y": 47.924 - }, - { - "l": "9.0", - "x": 8.7623, - "y": 47.9558 - }, - { - "l": "9.0", - "x": 8.8457, - "y": 47.9866 - }, - { - "l": "9.0", - "x": 8.929, - "y": 48.0147 - }, - { - "l": "9.0", - "x": 9.0123, - "y": 48.0462 - }, - { - "l": "9.0", - "x": 9.0957, - "y": 48.0769 - }, - { - "l": "9.0", - "x": 9.179, - "y": 48.105 - }, - { - "l": "9.0", - "x": 9.2623, - "y": 48.1366 - }, - { - "l": "9.0", - "x": 9.3457, - "y": 48.1674 - }, - { - "l": "9.0", - "x": 9.429, - "y": 48.1959 - }, - { - "l": "9.0", - "x": 9.5123, - "y": 48.2278 - }, - { - "l": "9.0", - "x": 9.5957, - "y": 48.2593 - }, - { - "l": "9.0", - "x": 9.679, - "y": 48.2885 - }, - { - "l": "9.0", - "x": 9.7623, - "y": 48.322 - }, - { - "l": "9.0", - "x": 9.8457, - "y": 48.3547 - }, - { - "l": "9.0", - "x": 9.929, - "y": 48.3846 - }, - { - "l": "9.0", - "x": 10.0123, - "y": 48.4185 - }, - { - "l": "9.0", - "x": 10.0957, - "y": 48.4522 - }, - { - "l": "9.0", - "x": 10.179, - "y": 48.4835 - }, - { - "l": "9.0", - "x": 10.2623, - "y": 48.5192 - }, - { - "l": "9.0", - "x": 10.3457, - "y": 48.5541 - }, - { - "l": "9.0", - "x": 10.429, - "y": 48.586 - }, - { - "l": "9.0", - "x": 10.5123, - "y": 48.6223 - }, - { - "l": "9.0", - "x": 10.5957, - "y": 48.6582 - }, - { - "l": "9.0", - "x": 10.679, - "y": 48.6915 - }, - { - "l": "9.0", - "x": 10.7623, - "y": 48.7291 - }, - { - "l": "9.0", - "x": 10.8457, - "y": 48.766 - }, - { - "l": "9.0", - "x": 10.929, - "y": 48.7999 - }, - { - "l": "9.0", - "x": 11.0123, - "y": 48.8382 - }, - { - "l": "9.0", - "x": 11.0957, - "y": 48.8755 - }, - { - "l": "9.0", - "x": 11.179, - "y": 48.9096 - }, - { - "l": "9.0", - "x": 11.2623, - "y": 48.9478 - }, - { - "l": "9.0", - "x": 11.3457, - "y": 48.9849 - }, - { - "l": "9.0", - "x": 11.429, - "y": 49.0188 - }, - { - "l": "9.0", - "x": 11.5123, - "y": 49.0569 - }, - { - "l": "9.0", - "x": 11.5957, - "y": 49.0938 - }, - { - "l": "9.0", - "x": 11.679, - "y": 49.1276 - }, - { - "l": "9.0", - "x": 11.7623, - "y": 49.1654 - }, - { - "l": "9.0", - "x": 11.8457, - "y": 49.2023 - }, - { - "l": "9.0", - "x": 11.929, - "y": 49.2361 - }, - { - "l": "9.0", - "x": 12.0123, - "y": 49.2743 - }, - { - "l": "9.0", - "x": 12.0957, - "y": 49.3117 - }, - { - "l": "9.0", - "x": 12.179, - "y": 49.3462 - }, - { - "l": "9.0", - "x": 12.2623, - "y": 49.3853 - }, - { - "l": "9.0", - "x": 12.3457, - "y": 49.424 - }, - { - "l": "9.0", - "x": 12.429, - "y": 49.46 - }, - { - "l": "9.0", - "x": 12.5123, - "y": 49.5004 - }, - { - "l": "9.0", - "x": 12.5957, - "y": 49.5404 - }, - { - "l": "9.0", - "x": 12.679, - "y": 49.5781 - }, - { - "l": "9.0", - "x": 12.7623, - "y": 49.6203 - }, - { - "l": "9.0", - "x": 12.8457, - "y": 49.6615 - }, - { - "l": "9.0", - "x": 12.929, - "y": 49.6999 - }, - { - "l": "9.0", - "x": 13.0123, - "y": 49.7437 - }, - { - "l": "9.0", - "x": 13.0957, - "y": 49.7863 - }, - { - "l": "9.0", - "x": 13.179, - "y": 49.8255 - }, - { - "l": "9.0", - "x": 13.2623, - "y": 49.8701 - }, - { - "l": "9.0", - "x": 13.3457, - "y": 49.9138 - }, - { - "l": "9.0", - "x": 13.429, - "y": 49.9539 - }, - { - "l": "9.0", - "x": 13.5123, - "y": 49.9991 - }, - { - "l": "9.0", - "x": 13.5957, - "y": 50.043 - }, - { - "l": "9.0", - "x": 13.679, - "y": 50.083 - }, - { - "l": "9.0", - "x": 13.7623, - "y": 50.1276 - }, - { - "l": "9.0", - "x": 13.8457, - "y": 50.1704 - }, - { - "l": "9.0", - "x": 13.929, - "y": 50.2094 - }, - { - "l": "9.0", - "x": 14.0123, - "y": 50.2522 - }, - { - "l": "9.0", - "x": 14.0957, - "y": 50.2934 - }, - { - "l": "9.0", - "x": 14.179, - "y": 50.3301 - }, - { - "l": "9.0", - "x": 14.2623, - "y": 50.3706 - }, - { - "l": "9.0", - "x": 14.3457, - "y": 50.4092 - }, - { - "l": "9.0", - "x": 14.429, - "y": 50.4437 - }, - { - "l": "9.0", - "x": 14.5123, - "y": 50.4816 - }, - { - "l": "9.0", - "x": 14.5957, - "y": 50.5175 - }, - { - "l": "9.0", - "x": 14.679, - "y": 50.5495 - }, - { - "l": "9.0", - "x": 14.7623, - "y": 50.5844 - }, - { - "l": "9.0", - "x": 14.8457, - "y": 50.6173 - }, - { - "l": "9.0", - "x": 14.929, - "y": 50.6468 - }, - { - "l": "9.0", - "x": 15.0123, - "y": 50.6782 - }, - { - "l": "9.0", - "x": 15.0957, - "y": 50.7085 - }, - { - "l": "9.0", - "x": 15.179, - "y": 50.7356 - }, - { - "l": "9.0", - "x": 15.2623, - "y": 50.7646 - }, - { - "l": "9.0", - "x": 15.3457, - "y": 50.7913 - }, - { - "l": "9.0", - "x": 15.429, - "y": 50.815 - }, - { - "l": "9.0", - "x": 15.5123, - "y": 50.8414 - }, - { - "l": "9.0", - "x": 15.5957, - "y": 50.8658 - }, - { - "l": "9.0", - "x": 15.679, - "y": 50.8869 - }, - { - "l": "9.0", - "x": 15.7623, - "y": 50.9095 - }, - { - "l": "9.0", - "x": 15.8457, - "y": 50.9306 - }, - { - "l": "9.0", - "x": 15.929, - "y": 50.9487 - }, - { - "l": "9.0", - "x": 16.0123, - "y": 50.9678 - }, - { - "l": "9.0", - "x": 16.0957, - "y": 50.9856 - }, - { - "l": "9.0", - "x": 16.179, - "y": 51.0003 - }, - { - "l": "9.0", - "x": 16.2623, - "y": 51.0165 - }, - { - "l": "9.0", - "x": 16.3457, - "y": 51.0308 - }, - { - "l": "9.0", - "x": 16.429, - "y": 51.0431 - }, - { - "l": "9.0", - "x": 16.5123, - "y": 51.0558 - }, - { - "l": "9.0", - "x": 16.5957, - "y": 51.0669 - }, - { - "l": "9.0", - "x": 16.679, - "y": 51.0767 - }, - { - "l": "9.0", - "x": 16.7623, - "y": 51.0862 - }, - { - "l": "9.0", - "x": 16.8457, - "y": 51.0946 - }, - { - "l": "9.0", - "x": 16.929, - "y": 51.1013 - }, - { - "l": "9.0", - "x": 17.0123, - "y": 51.1085 - }, - { - "l": "9.0", - "x": 17.0957, - "y": 51.1135 - }, - { - "l": "9.0", - "x": 17.179, - "y": 51.1181 - }, - { - "l": "9.0", - "x": 17.2623, - "y": 51.123 - }, - { - "l": "9.0", - "x": 17.3457, - "y": 51.1258 - }, - { - "l": "9.0", - "x": 17.429, - "y": 51.1275 - }, - { - "l": "9.0", - "x": 17.5123, - "y": 51.1295 - }, - { - "l": "9.0", - "x": 17.5957, - "y": 51.1314 - }, - { - "l": "9.0", - "x": 17.679, - "y": 51.1332 - }, - { - "l": "9.0", - "x": 17.7623, - "y": 51.1352 - }, - { - "l": "9.0", - "x": 17.8457, - "y": 51.1369 - }, - { - "l": "9.0", - "x": 17.929, - "y": 51.1372 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 0.0, - "y": 32.6542 - }, - { - "l": "25.0", - "x": 0.0192, - "y": 33.0715 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 33.489 - }, - { - "l": "25.0", - "x": 0.0575, - "y": 33.9067 - }, - { - "l": "25.0", - "x": 0.0767, - "y": 34.3245 - }, - { - "l": "25.0", - "x": 0.0958, - "y": 34.7011 - }, - { - "l": "25.0", - "x": 0.115, - "y": 35.0573 - }, - { - "l": "25.0", - "x": 0.1342, - "y": 35.4042 - }, - { - "l": "25.0", - "x": 0.1533, - "y": 35.7452 - }, - { - "l": "25.0", - "x": 0.1725, - "y": 36.0866 - }, - { - "l": "25.0", - "x": 0.1916, - "y": 36.4453 - }, - { - "l": "25.0", - "x": 0.2108, - "y": 36.8006 - }, - { - "l": "25.0", - "x": 0.23, - "y": 37.1497 - }, - { - "l": "25.0", - "x": 0.2491, - "y": 37.4899 - }, - { - "l": "25.0", - "x": 0.2683, - "y": 37.8145 - }, - { - "l": "25.0", - "x": 0.2875, - "y": 38.1258 - }, - { - "l": "25.0", - "x": 0.3066, - "y": 38.4227 - }, - { - "l": "25.0", - "x": 0.3258, - "y": 38.7038 - }, - { - "l": "25.0", - "x": 0.345, - "y": 38.9569 - }, - { - "l": "25.0", - "x": 0.3641, - "y": 39.1911 - }, - { - "l": "25.0", - "x": 0.3833, - "y": 39.4127 - }, - { - "l": "25.0", - "x": 0.4025, - "y": 39.6246 - }, - { - "l": "25.0", - "x": 0.4216, - "y": 39.8311 - }, - { - "l": "25.0", - "x": 0.4408, - "y": 40.0456 - }, - { - "l": "25.0", - "x": 0.46, - "y": 40.2542 - }, - { - "l": "25.0", - "x": 0.4791, - "y": 40.4556 - }, - { - "l": "25.0", - "x": 0.4983, - "y": 40.6485 - }, - { - "l": "25.0", - "x": 0.5175, - "y": 40.8287 - }, - { - "l": "25.0", - "x": 0.5366, - "y": 40.9987 - }, - { - "l": "25.0", - "x": 0.5558, - "y": 41.1586 - }, - { - "l": "25.0", - "x": 0.5749, - "y": 41.3083 - }, - { - "l": "25.0", - "x": 0.5941, - "y": 41.4426 - }, - { - "l": "25.0", - "x": 0.6133, - "y": 41.566 - }, - { - "l": "25.0", - "x": 0.6324, - "y": 41.682 - }, - { - "l": "25.0", - "x": 0.6516, - "y": 41.7928 - }, - { - "l": "25.0", - "x": 0.6708, - "y": 41.9004 - }, - { - "l": "25.0", - "x": 0.6899, - "y": 42.0139 - }, - { - "l": "25.0", - "x": 0.7091, - "y": 42.1249 - }, - { - "l": "25.0", - "x": 0.7283, - "y": 42.2329 - }, - { - "l": "25.0", - "x": 0.7474, - "y": 42.3375 - }, - { - "l": "25.0", - "x": 0.7666, - "y": 42.4373 - }, - { - "l": "25.0", - "x": 0.7858, - "y": 42.5327 - }, - { - "l": "25.0", - "x": 0.8049, - "y": 42.6237 - }, - { - "l": "25.0", - "x": 0.8241, - "y": 42.7102 - }, - { - "l": "25.0", - "x": 0.8433, - "y": 42.7889 - }, - { - "l": "25.0", - "x": 0.8624, - "y": 42.862 - }, - { - "l": "25.0", - "x": 0.8816, - "y": 42.9319 - }, - { - "l": "25.0", - "x": 0.9008, - "y": 42.9996 - }, - { - "l": "25.0", - "x": 0.9199, - "y": 43.0663 - }, - { - "l": "25.0", - "x": 0.9391, - "y": 43.1375 - }, - { - "l": "25.0", - "x": 0.9582, - "y": 43.2081 - }, - { - "l": "25.0", - "x": 0.9774, - "y": 43.2777 - }, - { - "l": "25.0", - "x": 0.9966, - "y": 43.3458 - }, - { - "l": "25.0", - "x": 1.0157, - "y": 43.4115 - }, - { - "l": "25.0", - "x": 1.0349, - "y": 43.4749 - }, - { - "l": "25.0", - "x": 1.0541, - "y": 43.5361 - }, - { - "l": "25.0", - "x": 1.0732, - "y": 43.5946 - }, - { - "l": "25.0", - "x": 1.0924, - "y": 43.6486 - }, - { - "l": "25.0", - "x": 1.1116, - "y": 43.699 - }, - { - "l": "25.0", - "x": 1.1307, - "y": 43.7476 - }, - { - "l": "25.0", - "x": 1.1499, - "y": 43.7951 - }, - { - "l": "25.0", - "x": 1.1691, - "y": 43.8421 - }, - { - "l": "25.0", - "x": 1.1882, - "y": 43.8922 - }, - { - "l": "25.0", - "x": 1.2074, - "y": 43.9423 - }, - { - "l": "25.0", - "x": 1.2266, - "y": 43.9918 - }, - { - "l": "25.0", - "x": 1.2457, - "y": 44.0406 - }, - { - "l": "25.0", - "x": 1.2649, - "y": 44.0881 - }, - { - "l": "25.0", - "x": 1.2841, - "y": 44.1342 - }, - { - "l": "25.0", - "x": 1.3032, - "y": 44.1787 - }, - { - "l": "25.0", - "x": 1.3224, - "y": 44.2216 - }, - { - "l": "25.0", - "x": 1.3415, - "y": 44.2612 - }, - { - "l": "25.0", - "x": 1.3607, - "y": 44.2982 - }, - { - "l": "25.0", - "x": 1.3799, - "y": 44.3338 - }, - { - "l": "25.0", - "x": 1.399, - "y": 44.3687 - }, - { - "l": "25.0", - "x": 1.4182, - "y": 44.4032 - }, - { - "l": "25.0", - "x": 1.4374, - "y": 44.4399 - }, - { - "l": "25.0", - "x": 1.4565, - "y": 44.4768 - }, - { - "l": "25.0", - "x": 1.4757, - "y": 44.5134 - }, - { - "l": "25.0", - "x": 1.4949, - "y": 44.5496 - }, - { - "l": "25.0", - "x": 1.514, - "y": 44.5849 - }, - { - "l": "25.0", - "x": 1.5332, - "y": 44.6194 - }, - { - "l": "25.0", - "x": 1.5524, - "y": 44.653 - }, - { - "l": "25.0", - "x": 1.5715, - "y": 44.6854 - }, - { - "l": "25.0", - "x": 1.5907, - "y": 44.7157 - }, - { - "l": "25.0", - "x": 1.6099, - "y": 44.7441 - }, - { - "l": "25.0", - "x": 1.629, - "y": 44.7717 - }, - { - "l": "25.0", - "x": 1.6482, - "y": 44.7989 - }, - { - "l": "25.0", - "x": 1.6674, - "y": 44.8262 - }, - { - "l": "25.0", - "x": 1.6865, - "y": 44.8553 - }, - { - "l": "25.0", - "x": 1.7057, - "y": 44.8849 - }, - { - "l": "25.0", - "x": 1.7248, - "y": 44.9146 - }, - { - "l": "25.0", - "x": 1.744, - "y": 44.9442 - }, - { - "l": "25.0", - "x": 1.7632, - "y": 44.9735 - }, - { - "l": "25.0", - "x": 1.7823, - "y": 45.0025 - }, - { - "l": "25.0", - "x": 1.8015, - "y": 45.0309 - }, - { - "l": "25.0", - "x": 1.8207, - "y": 45.0587 - }, - { - "l": "25.0", - "x": 1.8398, - "y": 45.085 - }, - { - "l": "25.0", - "x": 1.859, - "y": 45.1098 - }, - { - "l": "25.0", - "x": 1.8782, - "y": 45.1343 - }, - { - "l": "25.0", - "x": 1.8973, - "y": 45.1587 - }, - { - "l": "25.0", - "x": 1.9165, - "y": 45.1834 - }, - { - "l": "25.0", - "x": 1.9357, - "y": 45.2099 - }, - { - "l": "25.0", - "x": 1.9548, - "y": 45.2371 - }, - { - "l": "25.0", - "x": 1.974, - "y": 45.2647 - }, - { - "l": "25.0", - "x": 1.9932, - "y": 45.2925 - }, - { - "l": "25.0", - "x": 2.0123, - "y": 45.3202 - }, - { - "l": "25.0", - "x": 2.0957, - "y": 45.4356 - }, - { - "l": "25.0", - "x": 2.179, - "y": 45.5401 - }, - { - "l": "25.0", - "x": 2.2623, - "y": 45.6552 - }, - { - "l": "25.0", - "x": 2.3457, - "y": 45.7642 - }, - { - "l": "25.0", - "x": 2.429, - "y": 45.8606 - }, - { - "l": "25.0", - "x": 2.5123, - "y": 45.9644 - }, - { - "l": "25.0", - "x": 2.5957, - "y": 46.0607 - }, - { - "l": "25.0", - "x": 2.679, - "y": 46.144 - }, - { - "l": "25.0", - "x": 2.7623, - "y": 46.2323 - }, - { - "l": "25.0", - "x": 2.8457, - "y": 46.3127 - }, - { - "l": "25.0", - "x": 2.929, - "y": 46.3813 - }, - { - "l": "25.0", - "x": 3.0123, - "y": 46.4529 - }, - { - "l": "25.0", - "x": 3.0957, - "y": 46.5175 - }, - { - "l": "25.0", - "x": 3.179, - "y": 46.5724 - }, - { - "l": "25.0", - "x": 3.2623, - "y": 46.6298 - }, - { - "l": "25.0", - "x": 3.3457, - "y": 46.6818 - }, - { - "l": "25.0", - "x": 3.429, - "y": 46.7261 - }, - { - "l": "25.0", - "x": 3.5123, - "y": 46.7727 - }, - { - "l": "25.0", - "x": 3.5957, - "y": 46.8153 - }, - { - "l": "25.0", - "x": 3.679, - "y": 46.8519 - }, - { - "l": "25.0", - "x": 3.7623, - "y": 46.8909 - }, - { - "l": "25.0", - "x": 3.8457, - "y": 46.9271 - }, - { - "l": "25.0", - "x": 3.929, - "y": 46.9589 - }, - { - "l": "25.0", - "x": 4.0123, - "y": 46.9936 - }, - { - "l": "25.0", - "x": 4.0957, - "y": 47.0268 - }, - { - "l": "25.0", - "x": 4.179, - "y": 47.057 - }, - { - "l": "25.0", - "x": 4.2623, - "y": 47.0911 - }, - { - "l": "25.0", - "x": 4.3457, - "y": 47.1247 - }, - { - "l": "25.0", - "x": 4.429, - "y": 47.1561 - }, - { - "l": "25.0", - "x": 4.5123, - "y": 47.1919 - }, - { - "l": "25.0", - "x": 4.5957, - "y": 47.2277 - }, - { - "l": "25.0", - "x": 4.679, - "y": 47.2612 - }, - { - "l": "25.0", - "x": 4.7623, - "y": 47.2996 - }, - { - "l": "25.0", - "x": 4.8457, - "y": 47.3378 - }, - { - "l": "25.0", - "x": 4.929, - "y": 47.3732 - }, - { - "l": "25.0", - "x": 5.0123, - "y": 47.4133 - }, - { - "l": "25.0", - "x": 5.0957, - "y": 47.4528 - }, - { - "l": "25.0", - "x": 5.179, - "y": 47.4892 - }, - { - "l": "25.0", - "x": 5.2623, - "y": 47.5302 - }, - { - "l": "25.0", - "x": 5.3457, - "y": 47.5701 - }, - { - "l": "25.0", - "x": 5.429, - "y": 47.6066 - }, - { - "l": "25.0", - "x": 5.5123, - "y": 47.6474 - }, - { - "l": "25.0", - "x": 5.5957, - "y": 47.6869 - }, - { - "l": "25.0", - "x": 5.679, - "y": 47.7228 - }, - { - "l": "25.0", - "x": 5.7623, - "y": 47.7627 - }, - { - "l": "25.0", - "x": 5.8457, - "y": 47.8013 - }, - { - "l": "25.0", - "x": 5.929, - "y": 47.8365 - }, - { - "l": "25.0", - "x": 6.0123, - "y": 47.8758 - }, - { - "l": "25.0", - "x": 6.0957, - "y": 47.9139 - }, - { - "l": "25.0", - "x": 6.179, - "y": 47.9486 - }, - { - "l": "25.0", - "x": 6.2623, - "y": 47.9873 - }, - { - "l": "25.0", - "x": 6.3457, - "y": 48.0247 - }, - { - "l": "25.0", - "x": 6.429, - "y": 48.0588 - }, - { - "l": "25.0", - "x": 6.5123, - "y": 48.0968 - }, - { - "l": "25.0", - "x": 6.5957, - "y": 48.1335 - }, - { - "l": "25.0", - "x": 6.679, - "y": 48.167 - }, - { - "l": "25.0", - "x": 6.7623, - "y": 48.2044 - }, - { - "l": "25.0", - "x": 6.8457, - "y": 48.2406 - }, - { - "l": "25.0", - "x": 6.929, - "y": 48.2736 - }, - { - "l": "25.0", - "x": 7.0123, - "y": 48.3105 - }, - { - "l": "25.0", - "x": 7.0957, - "y": 48.3463 - }, - { - "l": "25.0", - "x": 7.179, - "y": 48.3788 - }, - { - "l": "25.0", - "x": 7.2623, - "y": 48.4151 - }, - { - "l": "25.0", - "x": 7.3457, - "y": 48.4503 - }, - { - "l": "25.0", - "x": 7.429, - "y": 48.4822 - }, - { - "l": "25.0", - "x": 7.5123, - "y": 48.5177 - }, - { - "l": "25.0", - "x": 7.5957, - "y": 48.5521 - }, - { - "l": "25.0", - "x": 7.679, - "y": 48.5835 - }, - { - "l": "25.0", - "x": 7.7623, - "y": 48.6185 - }, - { - "l": "25.0", - "x": 7.8457, - "y": 48.6525 - }, - { - "l": "25.0", - "x": 7.929, - "y": 48.6835 - }, - { - "l": "25.0", - "x": 8.0123, - "y": 48.7182 - }, - { - "l": "25.0", - "x": 8.0957, - "y": 48.7518 - }, - { - "l": "25.0", - "x": 8.179, - "y": 48.7823 - }, - { - "l": "25.0", - "x": 8.2623, - "y": 48.8162 - }, - { - "l": "25.0", - "x": 8.3457, - "y": 48.849 - }, - { - "l": "25.0", - "x": 8.429, - "y": 48.8787 - }, - { - "l": "25.0", - "x": 8.5123, - "y": 48.9118 - }, - { - "l": "25.0", - "x": 8.5957, - "y": 48.9436 - }, - { - "l": "25.0", - "x": 8.679, - "y": 48.9726 - }, - { - "l": "25.0", - "x": 8.7623, - "y": 49.0049 - }, - { - "l": "25.0", - "x": 8.8457, - "y": 49.0361 - }, - { - "l": "25.0", - "x": 8.929, - "y": 49.0647 - }, - { - "l": "25.0", - "x": 9.0123, - "y": 49.0968 - }, - { - "l": "25.0", - "x": 9.0957, - "y": 49.1279 - }, - { - "l": "25.0", - "x": 9.179, - "y": 49.1565 - }, - { - "l": "25.0", - "x": 9.2623, - "y": 49.1886 - }, - { - "l": "25.0", - "x": 9.3457, - "y": 49.22 - }, - { - "l": "25.0", - "x": 9.429, - "y": 49.2489 - }, - { - "l": "25.0", - "x": 9.5123, - "y": 49.2814 - }, - { - "l": "25.0", - "x": 9.5957, - "y": 49.3134 - }, - { - "l": "25.0", - "x": 9.679, - "y": 49.3431 - }, - { - "l": "25.0", - "x": 9.7623, - "y": 49.3771 - }, - { - "l": "25.0", - "x": 9.8457, - "y": 49.4104 - }, - { - "l": "25.0", - "x": 9.929, - "y": 49.4409 - }, - { - "l": "25.0", - "x": 10.0123, - "y": 49.4753 - }, - { - "l": "25.0", - "x": 10.0957, - "y": 49.5097 - }, - { - "l": "25.0", - "x": 10.179, - "y": 49.5414 - }, - { - "l": "25.0", - "x": 10.2623, - "y": 49.5778 - }, - { - "l": "25.0", - "x": 10.3457, - "y": 49.6133 - }, - { - "l": "25.0", - "x": 10.429, - "y": 49.6458 - }, - { - "l": "25.0", - "x": 10.5123, - "y": 49.6827 - }, - { - "l": "25.0", - "x": 10.5957, - "y": 49.7194 - }, - { - "l": "25.0", - "x": 10.679, - "y": 49.7532 - }, - { - "l": "25.0", - "x": 10.7623, - "y": 49.7915 - }, - { - "l": "25.0", - "x": 10.8457, - "y": 49.8291 - }, - { - "l": "25.0", - "x": 10.929, - "y": 49.8636 - }, - { - "l": "25.0", - "x": 11.0123, - "y": 49.9026 - }, - { - "l": "25.0", - "x": 11.0957, - "y": 49.9406 - }, - { - "l": "25.0", - "x": 11.179, - "y": 49.9753 - }, - { - "l": "25.0", - "x": 11.2623, - "y": 50.0142 - }, - { - "l": "25.0", - "x": 11.3457, - "y": 50.052 - }, - { - "l": "25.0", - "x": 11.429, - "y": 50.0866 - }, - { - "l": "25.0", - "x": 11.5123, - "y": 50.1253 - }, - { - "l": "25.0", - "x": 11.5957, - "y": 50.163 - }, - { - "l": "25.0", - "x": 11.679, - "y": 50.1974 - }, - { - "l": "25.0", - "x": 11.7623, - "y": 50.236 - }, - { - "l": "25.0", - "x": 11.8457, - "y": 50.2735 - }, - { - "l": "25.0", - "x": 11.929, - "y": 50.308 - }, - { - "l": "25.0", - "x": 12.0123, - "y": 50.3469 - }, - { - "l": "25.0", - "x": 12.0957, - "y": 50.385 - }, - { - "l": "25.0", - "x": 12.179, - "y": 50.4202 - }, - { - "l": "25.0", - "x": 12.2623, - "y": 50.46 - }, - { - "l": "25.0", - "x": 12.3457, - "y": 50.4995 - }, - { - "l": "25.0", - "x": 12.429, - "y": 50.5362 - }, - { - "l": "25.0", - "x": 12.5123, - "y": 50.5774 - }, - { - "l": "25.0", - "x": 12.5957, - "y": 50.6181 - }, - { - "l": "25.0", - "x": 12.679, - "y": 50.6565 - }, - { - "l": "25.0", - "x": 12.7623, - "y": 50.6996 - }, - { - "l": "25.0", - "x": 12.8457, - "y": 50.7416 - }, - { - "l": "25.0", - "x": 12.929, - "y": 50.7807 - }, - { - "l": "25.0", - "x": 13.0123, - "y": 50.8254 - }, - { - "l": "25.0", - "x": 13.0957, - "y": 50.8688 - }, - { - "l": "25.0", - "x": 13.179, - "y": 50.9088 - }, - { - "l": "25.0", - "x": 13.2623, - "y": 50.9542 - }, - { - "l": "25.0", - "x": 13.3457, - "y": 50.9987 - }, - { - "l": "25.0", - "x": 13.429, - "y": 51.0397 - }, - { - "l": "25.0", - "x": 13.5123, - "y": 51.0857 - }, - { - "l": "25.0", - "x": 13.5957, - "y": 51.1305 - }, - { - "l": "25.0", - "x": 13.679, - "y": 51.1713 - }, - { - "l": "25.0", - "x": 13.7623, - "y": 51.2167 - }, - { - "l": "25.0", - "x": 13.8457, - "y": 51.2604 - }, - { - "l": "25.0", - "x": 13.929, - "y": 51.3002 - }, - { - "l": "25.0", - "x": 14.0123, - "y": 51.3439 - }, - { - "l": "25.0", - "x": 14.0957, - "y": 51.3859 - }, - { - "l": "25.0", - "x": 14.179, - "y": 51.4234 - }, - { - "l": "25.0", - "x": 14.2623, - "y": 51.4647 - }, - { - "l": "25.0", - "x": 14.3457, - "y": 51.504 - }, - { - "l": "25.0", - "x": 14.429, - "y": 51.5392 - }, - { - "l": "25.0", - "x": 14.5123, - "y": 51.5779 - }, - { - "l": "25.0", - "x": 14.5957, - "y": 51.6146 - }, - { - "l": "25.0", - "x": 14.679, - "y": 51.6472 - }, - { - "l": "25.0", - "x": 14.7623, - "y": 51.6828 - }, - { - "l": "25.0", - "x": 14.8457, - "y": 51.7163 - }, - { - "l": "25.0", - "x": 14.929, - "y": 51.7465 - }, - { - "l": "25.0", - "x": 15.0123, - "y": 51.7785 - }, - { - "l": "25.0", - "x": 15.0957, - "y": 51.8094 - }, - { - "l": "25.0", - "x": 15.179, - "y": 51.8371 - }, - { - "l": "25.0", - "x": 15.2623, - "y": 51.8666 - }, - { - "l": "25.0", - "x": 15.3457, - "y": 51.8939 - }, - { - "l": "25.0", - "x": 15.429, - "y": 51.9181 - }, - { - "l": "25.0", - "x": 15.5123, - "y": 51.945 - }, - { - "l": "25.0", - "x": 15.5957, - "y": 51.9699 - }, - { - "l": "25.0", - "x": 15.679, - "y": 51.9914 - }, - { - "l": "25.0", - "x": 15.7623, - "y": 52.0145 - }, - { - "l": "25.0", - "x": 15.8457, - "y": 52.0361 - }, - { - "l": "25.0", - "x": 15.929, - "y": 52.0546 - }, - { - "l": "25.0", - "x": 16.0123, - "y": 52.074 - }, - { - "l": "25.0", - "x": 16.0957, - "y": 52.0922 - }, - { - "l": "25.0", - "x": 16.179, - "y": 52.1072 - }, - { - "l": "25.0", - "x": 16.2623, - "y": 52.1237 - }, - { - "l": "25.0", - "x": 16.3457, - "y": 52.1383 - }, - { - "l": "25.0", - "x": 16.429, - "y": 52.1508 - }, - { - "l": "25.0", - "x": 16.5123, - "y": 52.1638 - }, - { - "l": "25.0", - "x": 16.5957, - "y": 52.1752 - }, - { - "l": "25.0", - "x": 16.679, - "y": 52.1851 - }, - { - "l": "25.0", - "x": 16.7623, - "y": 52.1948 - }, - { - "l": "25.0", - "x": 16.8457, - "y": 52.2034 - }, - { - "l": "25.0", - "x": 16.929, - "y": 52.2102 - }, - { - "l": "25.0", - "x": 17.0123, - "y": 52.2176 - }, - { - "l": "25.0", - "x": 17.0957, - "y": 52.2227 - }, - { - "l": "25.0", - "x": 17.179, - "y": 52.2274 - }, - { - "l": "25.0", - "x": 17.2623, - "y": 52.2324 - }, - { - "l": "25.0", - "x": 17.3457, - "y": 52.2352 - }, - { - "l": "25.0", - "x": 17.429, - "y": 52.237 - }, - { - "l": "25.0", - "x": 17.5123, - "y": 52.239 - }, - { - "l": "25.0", - "x": 17.5957, - "y": 52.241 - }, - { - "l": "25.0", - "x": 17.679, - "y": 52.2428 - }, - { - "l": "25.0", - "x": 17.7623, - "y": 52.2448 - }, - { - "l": "25.0", - "x": 17.8457, - "y": 52.2465 - }, - { - "l": "25.0", - "x": 17.929, - "y": 52.2469 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 0.0, - "y": 33.5452 - }, - { - "l": "50.0", - "x": 0.0192, - "y": 33.9682 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 34.3912 - }, - { - "l": "50.0", - "x": 0.0575, - "y": 34.8141 - }, - { - "l": "50.0", - "x": 0.0767, - "y": 35.2371 - }, - { - "l": "50.0", - "x": 0.0958, - "y": 35.6182 - }, - { - "l": "50.0", - "x": 0.115, - "y": 35.9786 - }, - { - "l": "50.0", - "x": 0.1342, - "y": 36.3294 - }, - { - "l": "50.0", - "x": 0.1533, - "y": 36.6741 - }, - { - "l": "50.0", - "x": 0.1725, - "y": 37.0192 - }, - { - "l": "50.0", - "x": 0.1916, - "y": 37.3815 - }, - { - "l": "50.0", - "x": 0.2108, - "y": 37.7403 - }, - { - "l": "50.0", - "x": 0.23, - "y": 38.0928 - }, - { - "l": "50.0", - "x": 0.2491, - "y": 38.436 - }, - { - "l": "50.0", - "x": 0.2683, - "y": 38.7634 - }, - { - "l": "50.0", - "x": 0.2875, - "y": 39.0772 - }, - { - "l": "50.0", - "x": 0.3066, - "y": 39.3763 - }, - { - "l": "50.0", - "x": 0.3258, - "y": 39.6594 - }, - { - "l": "50.0", - "x": 0.345, - "y": 39.9141 - }, - { - "l": "50.0", - "x": 0.3641, - "y": 40.1498 - }, - { - "l": "50.0", - "x": 0.3833, - "y": 40.3725 - }, - { - "l": "50.0", - "x": 0.4025, - "y": 40.5855 - }, - { - "l": "50.0", - "x": 0.4216, - "y": 40.7929 - }, - { - "l": "50.0", - "x": 0.4408, - "y": 41.0082 - }, - { - "l": "50.0", - "x": 0.46, - "y": 41.2175 - }, - { - "l": "50.0", - "x": 0.4791, - "y": 41.4194 - }, - { - "l": "50.0", - "x": 0.4983, - "y": 41.6127 - }, - { - "l": "50.0", - "x": 0.5175, - "y": 41.7931 - }, - { - "l": "50.0", - "x": 0.5366, - "y": 41.9632 - }, - { - "l": "50.0", - "x": 0.5558, - "y": 42.1231 - }, - { - "l": "50.0", - "x": 0.5749, - "y": 42.2727 - }, - { - "l": "50.0", - "x": 0.5941, - "y": 42.4069 - }, - { - "l": "50.0", - "x": 0.6133, - "y": 42.5301 - }, - { - "l": "50.0", - "x": 0.6324, - "y": 42.646 - }, - { - "l": "50.0", - "x": 0.6516, - "y": 42.7565 - }, - { - "l": "50.0", - "x": 0.6708, - "y": 42.8639 - }, - { - "l": "50.0", - "x": 0.6899, - "y": 42.977 - }, - { - "l": "50.0", - "x": 0.7091, - "y": 43.0878 - }, - { - "l": "50.0", - "x": 0.7283, - "y": 43.1955 - }, - { - "l": "50.0", - "x": 0.7474, - "y": 43.2998 - }, - { - "l": "50.0", - "x": 0.7666, - "y": 43.3994 - }, - { - "l": "50.0", - "x": 0.7858, - "y": 43.4946 - }, - { - "l": "50.0", - "x": 0.8049, - "y": 43.5854 - }, - { - "l": "50.0", - "x": 0.8241, - "y": 43.6717 - }, - { - "l": "50.0", - "x": 0.8433, - "y": 43.7503 - }, - { - "l": "50.0", - "x": 0.8624, - "y": 43.8233 - }, - { - "l": "50.0", - "x": 0.8816, - "y": 43.8932 - }, - { - "l": "50.0", - "x": 0.9008, - "y": 43.9609 - }, - { - "l": "50.0", - "x": 0.9199, - "y": 44.0276 - }, - { - "l": "50.0", - "x": 0.9391, - "y": 44.099 - }, - { - "l": "50.0", - "x": 0.9582, - "y": 44.1698 - }, - { - "l": "50.0", - "x": 0.9774, - "y": 44.2396 - }, - { - "l": "50.0", - "x": 0.9966, - "y": 44.3079 - }, - { - "l": "50.0", - "x": 1.0157, - "y": 44.3739 - }, - { - "l": "50.0", - "x": 1.0349, - "y": 44.4377 - }, - { - "l": "50.0", - "x": 1.0541, - "y": 44.4992 - }, - { - "l": "50.0", - "x": 1.0732, - "y": 44.5582 - }, - { - "l": "50.0", - "x": 1.0924, - "y": 44.6127 - }, - { - "l": "50.0", - "x": 1.1116, - "y": 44.6636 - }, - { - "l": "50.0", - "x": 1.1307, - "y": 44.7127 - }, - { - "l": "50.0", - "x": 1.1499, - "y": 44.7607 - }, - { - "l": "50.0", - "x": 1.1691, - "y": 44.8083 - }, - { - "l": "50.0", - "x": 1.1882, - "y": 44.8591 - }, - { - "l": "50.0", - "x": 1.2074, - "y": 44.9099 - }, - { - "l": "50.0", - "x": 1.2266, - "y": 44.9602 - }, - { - "l": "50.0", - "x": 1.2457, - "y": 45.0098 - }, - { - "l": "50.0", - "x": 1.2649, - "y": 45.0581 - }, - { - "l": "50.0", - "x": 1.2841, - "y": 45.105 - }, - { - "l": "50.0", - "x": 1.3032, - "y": 45.1504 - }, - { - "l": "50.0", - "x": 1.3224, - "y": 45.1941 - }, - { - "l": "50.0", - "x": 1.3415, - "y": 45.2345 - }, - { - "l": "50.0", - "x": 1.3607, - "y": 45.2722 - }, - { - "l": "50.0", - "x": 1.3799, - "y": 45.3086 - }, - { - "l": "50.0", - "x": 1.399, - "y": 45.3442 - }, - { - "l": "50.0", - "x": 1.4182, - "y": 45.3795 - }, - { - "l": "50.0", - "x": 1.4374, - "y": 45.417 - }, - { - "l": "50.0", - "x": 1.4565, - "y": 45.4547 - }, - { - "l": "50.0", - "x": 1.4757, - "y": 45.4921 - }, - { - "l": "50.0", - "x": 1.4949, - "y": 45.5291 - }, - { - "l": "50.0", - "x": 1.514, - "y": 45.5652 - }, - { - "l": "50.0", - "x": 1.5332, - "y": 45.6004 - }, - { - "l": "50.0", - "x": 1.5524, - "y": 45.6347 - }, - { - "l": "50.0", - "x": 1.5715, - "y": 45.6678 - }, - { - "l": "50.0", - "x": 1.5907, - "y": 45.6988 - }, - { - "l": "50.0", - "x": 1.6099, - "y": 45.7277 - }, - { - "l": "50.0", - "x": 1.629, - "y": 45.7559 - }, - { - "l": "50.0", - "x": 1.6482, - "y": 45.7837 - }, - { - "l": "50.0", - "x": 1.6674, - "y": 45.8115 - }, - { - "l": "50.0", - "x": 1.6865, - "y": 45.8412 - }, - { - "l": "50.0", - "x": 1.7057, - "y": 45.8713 - }, - { - "l": "50.0", - "x": 1.7248, - "y": 45.9016 - }, - { - "l": "50.0", - "x": 1.744, - "y": 45.9318 - }, - { - "l": "50.0", - "x": 1.7632, - "y": 45.9616 - }, - { - "l": "50.0", - "x": 1.7823, - "y": 45.9911 - }, - { - "l": "50.0", - "x": 1.8015, - "y": 46.02 - }, - { - "l": "50.0", - "x": 1.8207, - "y": 46.0483 - }, - { - "l": "50.0", - "x": 1.8398, - "y": 46.0751 - }, - { - "l": "50.0", - "x": 1.859, - "y": 46.1003 - }, - { - "l": "50.0", - "x": 1.8782, - "y": 46.1252 - }, - { - "l": "50.0", - "x": 1.8973, - "y": 46.15 - }, - { - "l": "50.0", - "x": 1.9165, - "y": 46.175 - }, - { - "l": "50.0", - "x": 1.9357, - "y": 46.202 - }, - { - "l": "50.0", - "x": 1.9548, - "y": 46.2297 - }, - { - "l": "50.0", - "x": 1.974, - "y": 46.2577 - }, - { - "l": "50.0", - "x": 1.9932, - "y": 46.2859 - }, - { - "l": "50.0", - "x": 2.0123, - "y": 46.314 - }, - { - "l": "50.0", - "x": 2.0957, - "y": 46.4312 - }, - { - "l": "50.0", - "x": 2.179, - "y": 46.5373 - }, - { - "l": "50.0", - "x": 2.2623, - "y": 46.6542 - }, - { - "l": "50.0", - "x": 2.3457, - "y": 46.7649 - }, - { - "l": "50.0", - "x": 2.429, - "y": 46.8628 - }, - { - "l": "50.0", - "x": 2.5123, - "y": 46.9682 - }, - { - "l": "50.0", - "x": 2.5957, - "y": 47.066 - }, - { - "l": "50.0", - "x": 2.679, - "y": 47.1506 - }, - { - "l": "50.0", - "x": 2.7623, - "y": 47.2403 - }, - { - "l": "50.0", - "x": 2.8457, - "y": 47.3221 - }, - { - "l": "50.0", - "x": 2.929, - "y": 47.3917 - }, - { - "l": "50.0", - "x": 3.0123, - "y": 47.4645 - }, - { - "l": "50.0", - "x": 3.0957, - "y": 47.5302 - }, - { - "l": "50.0", - "x": 3.179, - "y": 47.5859 - }, - { - "l": "50.0", - "x": 3.2623, - "y": 47.6442 - }, - { - "l": "50.0", - "x": 3.3457, - "y": 47.697 - }, - { - "l": "50.0", - "x": 3.429, - "y": 47.7421 - }, - { - "l": "50.0", - "x": 3.5123, - "y": 47.7894 - }, - { - "l": "50.0", - "x": 3.5957, - "y": 47.8326 - }, - { - "l": "50.0", - "x": 3.679, - "y": 47.8698 - }, - { - "l": "50.0", - "x": 3.7623, - "y": 47.9094 - }, - { - "l": "50.0", - "x": 3.8457, - "y": 47.9462 - }, - { - "l": "50.0", - "x": 3.929, - "y": 47.9785 - }, - { - "l": "50.0", - "x": 4.0123, - "y": 48.0137 - }, - { - "l": "50.0", - "x": 4.0957, - "y": 48.0474 - }, - { - "l": "50.0", - "x": 4.179, - "y": 48.078 - }, - { - "l": "50.0", - "x": 4.2623, - "y": 48.1126 - }, - { - "l": "50.0", - "x": 4.3457, - "y": 48.1468 - }, - { - "l": "50.0", - "x": 4.429, - "y": 48.1786 - }, - { - "l": "50.0", - "x": 4.5123, - "y": 48.215 - }, - { - "l": "50.0", - "x": 4.5957, - "y": 48.2513 - }, - { - "l": "50.0", - "x": 4.679, - "y": 48.2853 - }, - { - "l": "50.0", - "x": 4.7623, - "y": 48.3243 - }, - { - "l": "50.0", - "x": 4.8457, - "y": 48.363 - }, - { - "l": "50.0", - "x": 4.929, - "y": 48.3989 - }, - { - "l": "50.0", - "x": 5.0123, - "y": 48.4397 - }, - { - "l": "50.0", - "x": 5.0957, - "y": 48.4798 - }, - { - "l": "50.0", - "x": 5.179, - "y": 48.5167 - }, - { - "l": "50.0", - "x": 5.2623, - "y": 48.5583 - }, - { - "l": "50.0", - "x": 5.3457, - "y": 48.5988 - }, - { - "l": "50.0", - "x": 5.429, - "y": 48.6358 - }, - { - "l": "50.0", - "x": 5.5123, - "y": 48.6772 - }, - { - "l": "50.0", - "x": 5.5957, - "y": 48.7172 - }, - { - "l": "50.0", - "x": 5.679, - "y": 48.7536 - }, - { - "l": "50.0", - "x": 5.7623, - "y": 48.7941 - }, - { - "l": "50.0", - "x": 5.8457, - "y": 48.8332 - }, - { - "l": "50.0", - "x": 5.929, - "y": 48.8689 - }, - { - "l": "50.0", - "x": 6.0123, - "y": 48.9088 - }, - { - "l": "50.0", - "x": 6.0957, - "y": 48.9474 - }, - { - "l": "50.0", - "x": 6.179, - "y": 48.9825 - }, - { - "l": "50.0", - "x": 6.2623, - "y": 49.0218 - }, - { - "l": "50.0", - "x": 6.3457, - "y": 49.0597 - }, - { - "l": "50.0", - "x": 6.429, - "y": 49.0942 - }, - { - "l": "50.0", - "x": 6.5123, - "y": 49.1327 - }, - { - "l": "50.0", - "x": 6.5957, - "y": 49.17 - }, - { - "l": "50.0", - "x": 6.679, - "y": 49.2039 - }, - { - "l": "50.0", - "x": 6.7623, - "y": 49.2418 - }, - { - "l": "50.0", - "x": 6.8457, - "y": 49.2786 - }, - { - "l": "50.0", - "x": 6.929, - "y": 49.312 - }, - { - "l": "50.0", - "x": 7.0123, - "y": 49.3494 - }, - { - "l": "50.0", - "x": 7.0957, - "y": 49.3857 - }, - { - "l": "50.0", - "x": 7.179, - "y": 49.4186 - }, - { - "l": "50.0", - "x": 7.2623, - "y": 49.4554 - }, - { - "l": "50.0", - "x": 7.3457, - "y": 49.4911 - }, - { - "l": "50.0", - "x": 7.429, - "y": 49.5235 - }, - { - "l": "50.0", - "x": 7.5123, - "y": 49.5595 - }, - { - "l": "50.0", - "x": 7.5957, - "y": 49.5944 - }, - { - "l": "50.0", - "x": 7.679, - "y": 49.6262 - }, - { - "l": "50.0", - "x": 7.7623, - "y": 49.6618 - }, - { - "l": "50.0", - "x": 7.8457, - "y": 49.6962 - }, - { - "l": "50.0", - "x": 7.929, - "y": 49.7277 - }, - { - "l": "50.0", - "x": 8.0123, - "y": 49.7629 - }, - { - "l": "50.0", - "x": 8.0957, - "y": 49.797 - }, - { - "l": "50.0", - "x": 8.179, - "y": 49.8279 - }, - { - "l": "50.0", - "x": 8.2623, - "y": 49.8624 - }, - { - "l": "50.0", - "x": 8.3457, - "y": 49.8957 - }, - { - "l": "50.0", - "x": 8.429, - "y": 49.9259 - }, - { - "l": "50.0", - "x": 8.5123, - "y": 49.9594 - }, - { - "l": "50.0", - "x": 8.5957, - "y": 49.9917 - }, - { - "l": "50.0", - "x": 8.679, - "y": 50.0211 - }, - { - "l": "50.0", - "x": 8.7623, - "y": 50.0539 - }, - { - "l": "50.0", - "x": 8.8457, - "y": 50.0857 - }, - { - "l": "50.0", - "x": 8.929, - "y": 50.1147 - }, - { - "l": "50.0", - "x": 9.0123, - "y": 50.1473 - }, - { - "l": "50.0", - "x": 9.0957, - "y": 50.179 - }, - { - "l": "50.0", - "x": 9.179, - "y": 50.208 - }, - { - "l": "50.0", - "x": 9.2623, - "y": 50.2406 - }, - { - "l": "50.0", - "x": 9.3457, - "y": 50.2725 - }, - { - "l": "50.0", - "x": 9.429, - "y": 50.3019 - }, - { - "l": "50.0", - "x": 9.5123, - "y": 50.3349 - }, - { - "l": "50.0", - "x": 9.5957, - "y": 50.3675 - }, - { - "l": "50.0", - "x": 9.679, - "y": 50.3977 - }, - { - "l": "50.0", - "x": 9.7623, - "y": 50.4323 - }, - { - "l": "50.0", - "x": 9.8457, - "y": 50.4662 - }, - { - "l": "50.0", - "x": 9.929, - "y": 50.4971 - }, - { - "l": "50.0", - "x": 10.0123, - "y": 50.5322 - }, - { - "l": "50.0", - "x": 10.0957, - "y": 50.5671 - }, - { - "l": "50.0", - "x": 10.179, - "y": 50.5994 - }, - { - "l": "50.0", - "x": 10.2623, - "y": 50.6364 - }, - { - "l": "50.0", - "x": 10.3457, - "y": 50.6725 - }, - { - "l": "50.0", - "x": 10.429, - "y": 50.7056 - }, - { - "l": "50.0", - "x": 10.5123, - "y": 50.7432 - }, - { - "l": "50.0", - "x": 10.5957, - "y": 50.7805 - }, - { - "l": "50.0", - "x": 10.679, - "y": 50.8149 - }, - { - "l": "50.0", - "x": 10.7623, - "y": 50.854 - }, - { - "l": "50.0", - "x": 10.8457, - "y": 50.8921 - }, - { - "l": "50.0", - "x": 10.929, - "y": 50.9273 - }, - { - "l": "50.0", - "x": 11.0123, - "y": 50.967 - }, - { - "l": "50.0", - "x": 11.0957, - "y": 51.0057 - }, - { - "l": "50.0", - "x": 11.179, - "y": 51.041 - }, - { - "l": "50.0", - "x": 11.2623, - "y": 51.0806 - }, - { - "l": "50.0", - "x": 11.3457, - "y": 51.1192 - }, - { - "l": "50.0", - "x": 11.429, - "y": 51.1543 - }, - { - "l": "50.0", - "x": 11.5123, - "y": 51.1938 - }, - { - "l": "50.0", - "x": 11.5957, - "y": 51.2322 - }, - { - "l": "50.0", - "x": 11.679, - "y": 51.2672 - }, - { - "l": "50.0", - "x": 11.7623, - "y": 51.3065 - }, - { - "l": "50.0", - "x": 11.8457, - "y": 51.3448 - }, - { - "l": "50.0", - "x": 11.929, - "y": 51.3799 - }, - { - "l": "50.0", - "x": 12.0123, - "y": 51.4195 - }, - { - "l": "50.0", - "x": 12.0957, - "y": 51.4583 - }, - { - "l": "50.0", - "x": 12.179, - "y": 51.4941 - }, - { - "l": "50.0", - "x": 12.2623, - "y": 51.5347 - }, - { - "l": "50.0", - "x": 12.3457, - "y": 51.575 - }, - { - "l": "50.0", - "x": 12.429, - "y": 51.6123 - }, - { - "l": "50.0", - "x": 12.5123, - "y": 51.6543 - }, - { - "l": "50.0", - "x": 12.5957, - "y": 51.6958 - }, - { - "l": "50.0", - "x": 12.679, - "y": 51.7349 - }, - { - "l": "50.0", - "x": 12.7623, - "y": 51.7788 - }, - { - "l": "50.0", - "x": 12.8457, - "y": 51.8216 - }, - { - "l": "50.0", - "x": 12.929, - "y": 51.8615 - }, - { - "l": "50.0", - "x": 13.0123, - "y": 51.907 - }, - { - "l": "50.0", - "x": 13.0957, - "y": 51.9513 - }, - { - "l": "50.0", - "x": 13.179, - "y": 51.992 - }, - { - "l": "50.0", - "x": 13.2623, - "y": 52.0383 - }, - { - "l": "50.0", - "x": 13.3457, - "y": 52.0837 - }, - { - "l": "50.0", - "x": 13.429, - "y": 52.1254 - }, - { - "l": "50.0", - "x": 13.5123, - "y": 52.1723 - }, - { - "l": "50.0", - "x": 13.5957, - "y": 52.218 - }, - { - "l": "50.0", - "x": 13.679, - "y": 52.2596 - }, - { - "l": "50.0", - "x": 13.7623, - "y": 52.3059 - }, - { - "l": "50.0", - "x": 13.8457, - "y": 52.3505 - }, - { - "l": "50.0", - "x": 13.929, - "y": 52.391 - }, - { - "l": "50.0", - "x": 14.0123, - "y": 52.4356 - }, - { - "l": "50.0", - "x": 14.0957, - "y": 52.4784 - }, - { - "l": "50.0", - "x": 14.179, - "y": 52.5166 - }, - { - "l": "50.0", - "x": 14.2623, - "y": 52.5588 - }, - { - "l": "50.0", - "x": 14.3457, - "y": 52.5989 - }, - { - "l": "50.0", - "x": 14.429, - "y": 52.6348 - }, - { - "l": "50.0", - "x": 14.5123, - "y": 52.6742 - }, - { - "l": "50.0", - "x": 14.5957, - "y": 52.7116 - }, - { - "l": "50.0", - "x": 14.679, - "y": 52.7449 - }, - { - "l": "50.0", - "x": 14.7623, - "y": 52.7812 - }, - { - "l": "50.0", - "x": 14.8457, - "y": 52.8154 - }, - { - "l": "50.0", - "x": 14.929, - "y": 52.8462 - }, - { - "l": "50.0", - "x": 15.0123, - "y": 52.8788 - }, - { - "l": "50.0", - "x": 15.0957, - "y": 52.9103 - }, - { - "l": "50.0", - "x": 15.179, - "y": 52.9386 - }, - { - "l": "50.0", - "x": 15.2623, - "y": 52.9687 - }, - { - "l": "50.0", - "x": 15.3457, - "y": 52.9966 - }, - { - "l": "50.0", - "x": 15.429, - "y": 53.0212 - }, - { - "l": "50.0", - "x": 15.5123, - "y": 53.0487 - }, - { - "l": "50.0", - "x": 15.5957, - "y": 53.0741 - }, - { - "l": "50.0", - "x": 15.679, - "y": 53.096 - }, - { - "l": "50.0", - "x": 15.7623, - "y": 53.1195 - }, - { - "l": "50.0", - "x": 15.8457, - "y": 53.1415 - }, - { - "l": "50.0", - "x": 15.929, - "y": 53.1604 - }, - { - "l": "50.0", - "x": 16.0123, - "y": 53.1802 - }, - { - "l": "50.0", - "x": 16.0957, - "y": 53.1987 - }, - { - "l": "50.0", - "x": 16.179, - "y": 53.2141 - }, - { - "l": "50.0", - "x": 16.2623, - "y": 53.2309 - }, - { - "l": "50.0", - "x": 16.3457, - "y": 53.2458 - }, - { - "l": "50.0", - "x": 16.429, - "y": 53.2586 - }, - { - "l": "50.0", - "x": 16.5123, - "y": 53.2718 - }, - { - "l": "50.0", - "x": 16.5957, - "y": 53.2834 - }, - { - "l": "50.0", - "x": 16.679, - "y": 53.2935 - }, - { - "l": "50.0", - "x": 16.7623, - "y": 53.3034 - }, - { - "l": "50.0", - "x": 16.8457, - "y": 53.3122 - }, - { - "l": "50.0", - "x": 16.929, - "y": 53.3192 - }, - { - "l": "50.0", - "x": 17.0123, - "y": 53.3267 - }, - { - "l": "50.0", - "x": 17.0957, - "y": 53.3319 - }, - { - "l": "50.0", - "x": 17.179, - "y": 53.3367 - }, - { - "l": "50.0", - "x": 17.2623, - "y": 53.3418 - }, - { - "l": "50.0", - "x": 17.3457, - "y": 53.3447 - }, - { - "l": "50.0", - "x": 17.429, - "y": 53.3465 - }, - { - "l": "50.0", - "x": 17.5123, - "y": 53.3485 - }, - { - "l": "50.0", - "x": 17.5957, - "y": 53.3505 - }, - { - "l": "50.0", - "x": 17.679, - "y": 53.3524 - }, - { - "l": "50.0", - "x": 17.7623, - "y": 53.3545 - }, - { - "l": "50.0", - "x": 17.8457, - "y": 53.3562 - }, - { - "l": "50.0", - "x": 17.929, - "y": 53.3565 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 0.0, - "y": 34.4363 - }, - { - "l": "75.0", - "x": 0.0192, - "y": 34.8649 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 35.2933 - }, - { - "l": "75.0", - "x": 0.0575, - "y": 35.7215 - }, - { - "l": "75.0", - "x": 0.0767, - "y": 36.1496 - }, - { - "l": "75.0", - "x": 0.0958, - "y": 36.5353 - }, - { - "l": "75.0", - "x": 0.115, - "y": 36.8998 - }, - { - "l": "75.0", - "x": 0.1342, - "y": 37.2545 - }, - { - "l": "75.0", - "x": 0.1533, - "y": 37.6031 - }, - { - "l": "75.0", - "x": 0.1725, - "y": 37.9518 - }, - { - "l": "75.0", - "x": 0.1916, - "y": 38.3178 - }, - { - "l": "75.0", - "x": 0.2108, - "y": 38.6801 - }, - { - "l": "75.0", - "x": 0.23, - "y": 39.0358 - }, - { - "l": "75.0", - "x": 0.2491, - "y": 39.3822 - }, - { - "l": "75.0", - "x": 0.2683, - "y": 39.7123 - }, - { - "l": "75.0", - "x": 0.2875, - "y": 40.0285 - }, - { - "l": "75.0", - "x": 0.3066, - "y": 40.3299 - }, - { - "l": "75.0", - "x": 0.3258, - "y": 40.615 - }, - { - "l": "75.0", - "x": 0.345, - "y": 40.8714 - }, - { - "l": "75.0", - "x": 0.3641, - "y": 41.1084 - }, - { - "l": "75.0", - "x": 0.3833, - "y": 41.3324 - }, - { - "l": "75.0", - "x": 0.4025, - "y": 41.5464 - }, - { - "l": "75.0", - "x": 0.4216, - "y": 41.7547 - }, - { - "l": "75.0", - "x": 0.4408, - "y": 41.9708 - }, - { - "l": "75.0", - "x": 0.46, - "y": 42.1807 - }, - { - "l": "75.0", - "x": 0.4791, - "y": 42.3832 - }, - { - "l": "75.0", - "x": 0.4983, - "y": 42.5769 - }, - { - "l": "75.0", - "x": 0.5175, - "y": 42.7575 - }, - { - "l": "75.0", - "x": 0.5366, - "y": 42.9277 - }, - { - "l": "75.0", - "x": 0.5558, - "y": 43.0876 - }, - { - "l": "75.0", - "x": 0.5749, - "y": 43.2371 - }, - { - "l": "75.0", - "x": 0.5941, - "y": 43.3712 - }, - { - "l": "75.0", - "x": 0.6133, - "y": 43.4943 - }, - { - "l": "75.0", - "x": 0.6324, - "y": 43.6099 - }, - { - "l": "75.0", - "x": 0.6516, - "y": 43.7202 - }, - { - "l": "75.0", - "x": 0.6708, - "y": 43.8274 - }, - { - "l": "75.0", - "x": 0.6899, - "y": 43.9402 - }, - { - "l": "75.0", - "x": 0.7091, - "y": 44.0506 - }, - { - "l": "75.0", - "x": 0.7283, - "y": 44.1581 - }, - { - "l": "75.0", - "x": 0.7474, - "y": 44.2621 - }, - { - "l": "75.0", - "x": 0.7666, - "y": 44.3614 - }, - { - "l": "75.0", - "x": 0.7858, - "y": 44.4564 - }, - { - "l": "75.0", - "x": 0.8049, - "y": 44.5471 - }, - { - "l": "75.0", - "x": 0.8241, - "y": 44.6332 - }, - { - "l": "75.0", - "x": 0.8433, - "y": 44.7117 - }, - { - "l": "75.0", - "x": 0.8624, - "y": 44.7846 - }, - { - "l": "75.0", - "x": 0.8816, - "y": 44.8545 - }, - { - "l": "75.0", - "x": 0.9008, - "y": 44.9222 - }, - { - "l": "75.0", - "x": 0.9199, - "y": 44.989 - }, - { - "l": "75.0", - "x": 0.9391, - "y": 45.0605 - }, - { - "l": "75.0", - "x": 0.9582, - "y": 45.1314 - }, - { - "l": "75.0", - "x": 0.9774, - "y": 45.2014 - }, - { - "l": "75.0", - "x": 0.9966, - "y": 45.27 - }, - { - "l": "75.0", - "x": 1.0157, - "y": 45.3364 - }, - { - "l": "75.0", - "x": 1.0349, - "y": 45.4005 - }, - { - "l": "75.0", - "x": 1.0541, - "y": 45.4624 - }, - { - "l": "75.0", - "x": 1.0732, - "y": 45.5219 - }, - { - "l": "75.0", - "x": 1.0924, - "y": 45.5767 - }, - { - "l": "75.0", - "x": 1.1116, - "y": 45.6281 - }, - { - "l": "75.0", - "x": 1.1307, - "y": 45.6778 - }, - { - "l": "75.0", - "x": 1.1499, - "y": 45.7263 - }, - { - "l": "75.0", - "x": 1.1691, - "y": 45.7745 - }, - { - "l": "75.0", - "x": 1.1882, - "y": 45.826 - }, - { - "l": "75.0", - "x": 1.2074, - "y": 45.8776 - }, - { - "l": "75.0", - "x": 1.2266, - "y": 45.9287 - }, - { - "l": "75.0", - "x": 1.2457, - "y": 45.979 - }, - { - "l": "75.0", - "x": 1.2649, - "y": 46.0281 - }, - { - "l": "75.0", - "x": 1.2841, - "y": 46.0759 - }, - { - "l": "75.0", - "x": 1.3032, - "y": 46.1221 - }, - { - "l": "75.0", - "x": 1.3224, - "y": 46.1666 - }, - { - "l": "75.0", - "x": 1.3415, - "y": 46.2078 - }, - { - "l": "75.0", - "x": 1.3607, - "y": 46.2463 - }, - { - "l": "75.0", - "x": 1.3799, - "y": 46.2834 - }, - { - "l": "75.0", - "x": 1.399, - "y": 46.3197 - }, - { - "l": "75.0", - "x": 1.4182, - "y": 46.3558 - }, - { - "l": "75.0", - "x": 1.4374, - "y": 46.3941 - }, - { - "l": "75.0", - "x": 1.4565, - "y": 46.4326 - }, - { - "l": "75.0", - "x": 1.4757, - "y": 46.4708 - }, - { - "l": "75.0", - "x": 1.4949, - "y": 46.5085 - }, - { - "l": "75.0", - "x": 1.514, - "y": 46.5454 - }, - { - "l": "75.0", - "x": 1.5332, - "y": 46.5814 - }, - { - "l": "75.0", - "x": 1.5524, - "y": 46.6164 - }, - { - "l": "75.0", - "x": 1.5715, - "y": 46.6503 - }, - { - "l": "75.0", - "x": 1.5907, - "y": 46.6818 - }, - { - "l": "75.0", - "x": 1.6099, - "y": 46.7114 - }, - { - "l": "75.0", - "x": 1.629, - "y": 46.7401 - }, - { - "l": "75.0", - "x": 1.6482, - "y": 46.7684 - }, - { - "l": "75.0", - "x": 1.6674, - "y": 46.7968 - }, - { - "l": "75.0", - "x": 1.6865, - "y": 46.827 - }, - { - "l": "75.0", - "x": 1.7057, - "y": 46.8578 - }, - { - "l": "75.0", - "x": 1.7248, - "y": 46.8886 - }, - { - "l": "75.0", - "x": 1.744, - "y": 46.9193 - }, - { - "l": "75.0", - "x": 1.7632, - "y": 46.9497 - }, - { - "l": "75.0", - "x": 1.7823, - "y": 46.9797 - }, - { - "l": "75.0", - "x": 1.8015, - "y": 47.0091 - }, - { - "l": "75.0", - "x": 1.8207, - "y": 47.0379 - }, - { - "l": "75.0", - "x": 1.8398, - "y": 47.0651 - }, - { - "l": "75.0", - "x": 1.859, - "y": 47.0908 - }, - { - "l": "75.0", - "x": 1.8782, - "y": 47.116 - }, - { - "l": "75.0", - "x": 1.8973, - "y": 47.1412 - }, - { - "l": "75.0", - "x": 1.9165, - "y": 47.1667 - }, - { - "l": "75.0", - "x": 1.9357, - "y": 47.1941 - }, - { - "l": "75.0", - "x": 1.9548, - "y": 47.2222 - }, - { - "l": "75.0", - "x": 1.974, - "y": 47.2507 - }, - { - "l": "75.0", - "x": 1.9932, - "y": 47.2793 - }, - { - "l": "75.0", - "x": 2.0123, - "y": 47.3078 - }, - { - "l": "75.0", - "x": 2.0957, - "y": 47.4268 - }, - { - "l": "75.0", - "x": 2.179, - "y": 47.5345 - }, - { - "l": "75.0", - "x": 2.2623, - "y": 47.6532 - }, - { - "l": "75.0", - "x": 2.3457, - "y": 47.7656 - }, - { - "l": "75.0", - "x": 2.429, - "y": 47.8649 - }, - { - "l": "75.0", - "x": 2.5123, - "y": 47.972 - }, - { - "l": "75.0", - "x": 2.5957, - "y": 48.0713 - }, - { - "l": "75.0", - "x": 2.679, - "y": 48.1573 - }, - { - "l": "75.0", - "x": 2.7623, - "y": 48.2484 - }, - { - "l": "75.0", - "x": 2.8457, - "y": 48.3314 - }, - { - "l": "75.0", - "x": 2.929, - "y": 48.4022 - }, - { - "l": "75.0", - "x": 3.0123, - "y": 48.4761 - }, - { - "l": "75.0", - "x": 3.0957, - "y": 48.5428 - }, - { - "l": "75.0", - "x": 3.179, - "y": 48.5994 - }, - { - "l": "75.0", - "x": 3.2623, - "y": 48.6586 - }, - { - "l": "75.0", - "x": 3.3457, - "y": 48.7123 - }, - { - "l": "75.0", - "x": 3.429, - "y": 48.758 - }, - { - "l": "75.0", - "x": 3.5123, - "y": 48.8061 - }, - { - "l": "75.0", - "x": 3.5957, - "y": 48.85 - }, - { - "l": "75.0", - "x": 3.679, - "y": 48.8877 - }, - { - "l": "75.0", - "x": 3.7623, - "y": 48.9279 - }, - { - "l": "75.0", - "x": 3.8457, - "y": 48.9653 - }, - { - "l": "75.0", - "x": 3.929, - "y": 48.9981 - }, - { - "l": "75.0", - "x": 4.0123, - "y": 49.0338 - }, - { - "l": "75.0", - "x": 4.0957, - "y": 49.068 - }, - { - "l": "75.0", - "x": 4.179, - "y": 49.0991 - }, - { - "l": "75.0", - "x": 4.2623, - "y": 49.1342 - }, - { - "l": "75.0", - "x": 4.3457, - "y": 49.1689 - }, - { - "l": "75.0", - "x": 4.429, - "y": 49.2012 - }, - { - "l": "75.0", - "x": 4.5123, - "y": 49.2381 - }, - { - "l": "75.0", - "x": 4.5957, - "y": 49.275 - }, - { - "l": "75.0", - "x": 4.679, - "y": 49.3095 - }, - { - "l": "75.0", - "x": 4.7623, - "y": 49.349 - }, - { - "l": "75.0", - "x": 4.8457, - "y": 49.3883 - }, - { - "l": "75.0", - "x": 4.929, - "y": 49.4247 - }, - { - "l": "75.0", - "x": 5.0123, - "y": 49.4661 - }, - { - "l": "75.0", - "x": 5.0957, - "y": 49.5067 - }, - { - "l": "75.0", - "x": 5.179, - "y": 49.5441 - }, - { - "l": "75.0", - "x": 5.2623, - "y": 49.5863 - }, - { - "l": "75.0", - "x": 5.3457, - "y": 49.6274 - }, - { - "l": "75.0", - "x": 5.429, - "y": 49.6649 - }, - { - "l": "75.0", - "x": 5.5123, - "y": 49.7069 - }, - { - "l": "75.0", - "x": 5.5957, - "y": 49.7475 - }, - { - "l": "75.0", - "x": 5.679, - "y": 49.7844 - }, - { - "l": "75.0", - "x": 5.7623, - "y": 49.8255 - }, - { - "l": "75.0", - "x": 5.8457, - "y": 49.8651 - }, - { - "l": "75.0", - "x": 5.929, - "y": 49.9013 - }, - { - "l": "75.0", - "x": 6.0123, - "y": 49.9417 - }, - { - "l": "75.0", - "x": 6.0957, - "y": 49.9809 - }, - { - "l": "75.0", - "x": 6.179, - "y": 50.0165 - }, - { - "l": "75.0", - "x": 6.2623, - "y": 50.0562 - }, - { - "l": "75.0", - "x": 6.3457, - "y": 50.0947 - }, - { - "l": "75.0", - "x": 6.429, - "y": 50.1297 - }, - { - "l": "75.0", - "x": 6.5123, - "y": 50.1687 - }, - { - "l": "75.0", - "x": 6.5957, - "y": 50.2064 - }, - { - "l": "75.0", - "x": 6.679, - "y": 50.2408 - }, - { - "l": "75.0", - "x": 6.7623, - "y": 50.2793 - }, - { - "l": "75.0", - "x": 6.8457, - "y": 50.3165 - }, - { - "l": "75.0", - "x": 6.929, - "y": 50.3504 - }, - { - "l": "75.0", - "x": 7.0123, - "y": 50.3883 - }, - { - "l": "75.0", - "x": 7.0957, - "y": 50.4251 - }, - { - "l": "75.0", - "x": 7.179, - "y": 50.4585 - }, - { - "l": "75.0", - "x": 7.2623, - "y": 50.4958 - }, - { - "l": "75.0", - "x": 7.3457, - "y": 50.532 - }, - { - "l": "75.0", - "x": 7.429, - "y": 50.5648 - }, - { - "l": "75.0", - "x": 7.5123, - "y": 50.6013 - }, - { - "l": "75.0", - "x": 7.5957, - "y": 50.6367 - }, - { - "l": "75.0", - "x": 7.679, - "y": 50.669 - }, - { - "l": "75.0", - "x": 7.7623, - "y": 50.705 - }, - { - "l": "75.0", - "x": 7.8457, - "y": 50.74 - }, - { - "l": "75.0", - "x": 7.929, - "y": 50.7719 - }, - { - "l": "75.0", - "x": 8.0123, - "y": 50.8076 - }, - { - "l": "75.0", - "x": 8.0957, - "y": 50.8422 - }, - { - "l": "75.0", - "x": 8.179, - "y": 50.8736 - }, - { - "l": "75.0", - "x": 8.2623, - "y": 50.9086 - }, - { - "l": "75.0", - "x": 8.3457, - "y": 50.9424 - }, - { - "l": "75.0", - "x": 8.429, - "y": 50.973 - }, - { - "l": "75.0", - "x": 8.5123, - "y": 51.007 - }, - { - "l": "75.0", - "x": 8.5957, - "y": 51.0398 - }, - { - "l": "75.0", - "x": 8.679, - "y": 51.0697 - }, - { - "l": "75.0", - "x": 8.7623, - "y": 51.103 - }, - { - "l": "75.0", - "x": 8.8457, - "y": 51.1353 - }, - { - "l": "75.0", - "x": 8.929, - "y": 51.1647 - }, - { - "l": "75.0", - "x": 9.0123, - "y": 51.1978 - }, - { - "l": "75.0", - "x": 9.0957, - "y": 51.23 - }, - { - "l": "75.0", - "x": 9.179, - "y": 51.2595 - }, - { - "l": "75.0", - "x": 9.2623, - "y": 51.2926 - }, - { - "l": "75.0", - "x": 9.3457, - "y": 51.325 - }, - { - "l": "75.0", - "x": 9.429, - "y": 51.3549 - }, - { - "l": "75.0", - "x": 9.5123, - "y": 51.3885 - }, - { - "l": "75.0", - "x": 9.5957, - "y": 51.4216 - }, - { - "l": "75.0", - "x": 9.679, - "y": 51.4522 - }, - { - "l": "75.0", - "x": 9.7623, - "y": 51.4875 - }, - { - "l": "75.0", - "x": 9.8457, - "y": 51.5219 - }, - { - "l": "75.0", - "x": 9.929, - "y": 51.5534 - }, - { - "l": "75.0", - "x": 10.0123, - "y": 51.589 - }, - { - "l": "75.0", - "x": 10.0957, - "y": 51.6245 - }, - { - "l": "75.0", - "x": 10.179, - "y": 51.6574 - }, - { - "l": "75.0", - "x": 10.2623, - "y": 51.695 - }, - { - "l": "75.0", - "x": 10.3457, - "y": 51.7318 - }, - { - "l": "75.0", - "x": 10.429, - "y": 51.7654 - }, - { - "l": "75.0", - "x": 10.5123, - "y": 51.8037 - }, - { - "l": "75.0", - "x": 10.5957, - "y": 51.8416 - }, - { - "l": "75.0", - "x": 10.679, - "y": 51.8766 - }, - { - "l": "75.0", - "x": 10.7623, - "y": 51.9164 - }, - { - "l": "75.0", - "x": 10.8457, - "y": 51.9552 - }, - { - "l": "75.0", - "x": 10.929, - "y": 51.991 - }, - { - "l": "75.0", - "x": 11.0123, - "y": 52.0314 - }, - { - "l": "75.0", - "x": 11.0957, - "y": 52.0707 - }, - { - "l": "75.0", - "x": 11.179, - "y": 52.1067 - }, - { - "l": "75.0", - "x": 11.2623, - "y": 52.1471 - }, - { - "l": "75.0", - "x": 11.3457, - "y": 52.1863 - }, - { - "l": "75.0", - "x": 11.429, - "y": 52.2221 - }, - { - "l": "75.0", - "x": 11.5123, - "y": 52.2623 - }, - { - "l": "75.0", - "x": 11.5957, - "y": 52.3014 - }, - { - "l": "75.0", - "x": 11.679, - "y": 52.337 - }, - { - "l": "75.0", - "x": 11.7623, - "y": 52.377 - }, - { - "l": "75.0", - "x": 11.8457, - "y": 52.416 - }, - { - "l": "75.0", - "x": 11.929, - "y": 52.4517 - }, - { - "l": "75.0", - "x": 12.0123, - "y": 52.4921 - }, - { - "l": "75.0", - "x": 12.0957, - "y": 52.5316 - }, - { - "l": "75.0", - "x": 12.179, - "y": 52.5681 - }, - { - "l": "75.0", - "x": 12.2623, - "y": 52.6095 - }, - { - "l": "75.0", - "x": 12.3457, - "y": 52.6504 - }, - { - "l": "75.0", - "x": 12.429, - "y": 52.6885 - }, - { - "l": "75.0", - "x": 12.5123, - "y": 52.7312 - }, - { - "l": "75.0", - "x": 12.5957, - "y": 52.7735 - }, - { - "l": "75.0", - "x": 12.679, - "y": 52.8134 - }, - { - "l": "75.0", - "x": 12.7623, - "y": 52.8581 - }, - { - "l": "75.0", - "x": 12.8457, - "y": 52.9017 - }, - { - "l": "75.0", - "x": 12.929, - "y": 52.9423 - }, - { - "l": "75.0", - "x": 13.0123, - "y": 52.9886 - }, - { - "l": "75.0", - "x": 13.0957, - "y": 53.0337 - }, - { - "l": "75.0", - "x": 13.179, - "y": 53.0752 - }, - { - "l": "75.0", - "x": 13.2623, - "y": 53.1224 - }, - { - "l": "75.0", - "x": 13.3457, - "y": 53.1687 - }, - { - "l": "75.0", - "x": 13.429, - "y": 53.2112 - }, - { - "l": "75.0", - "x": 13.5123, - "y": 53.259 - }, - { - "l": "75.0", - "x": 13.5957, - "y": 53.3055 - }, - { - "l": "75.0", - "x": 13.679, - "y": 53.3479 - }, - { - "l": "75.0", - "x": 13.7623, - "y": 53.3951 - }, - { - "l": "75.0", - "x": 13.8457, - "y": 53.4405 - }, - { - "l": "75.0", - "x": 13.929, - "y": 53.4818 - }, - { - "l": "75.0", - "x": 14.0123, - "y": 53.5273 - }, - { - "l": "75.0", - "x": 14.0957, - "y": 53.5709 - }, - { - "l": "75.0", - "x": 14.179, - "y": 53.6099 - }, - { - "l": "75.0", - "x": 14.2623, - "y": 53.6528 - }, - { - "l": "75.0", - "x": 14.3457, - "y": 53.6937 - }, - { - "l": "75.0", - "x": 14.429, - "y": 53.7303 - }, - { - "l": "75.0", - "x": 14.5123, - "y": 53.7705 - }, - { - "l": "75.0", - "x": 14.5957, - "y": 53.8087 - }, - { - "l": "75.0", - "x": 14.679, - "y": 53.8426 - }, - { - "l": "75.0", - "x": 14.7623, - "y": 53.8796 - }, - { - "l": "75.0", - "x": 14.8457, - "y": 53.9145 - }, - { - "l": "75.0", - "x": 14.929, - "y": 53.9458 - }, - { - "l": "75.0", - "x": 15.0123, - "y": 53.9791 - }, - { - "l": "75.0", - "x": 15.0957, - "y": 54.0113 - }, - { - "l": "75.0", - "x": 15.179, - "y": 54.04 - }, - { - "l": "75.0", - "x": 15.2623, - "y": 54.0708 - }, - { - "l": "75.0", - "x": 15.3457, - "y": 54.0992 - }, - { - "l": "75.0", - "x": 15.429, - "y": 54.1243 - }, - { - "l": "75.0", - "x": 15.5123, - "y": 54.1523 - }, - { - "l": "75.0", - "x": 15.5957, - "y": 54.1782 - }, - { - "l": "75.0", - "x": 15.679, - "y": 54.2006 - }, - { - "l": "75.0", - "x": 15.7623, - "y": 54.2246 - }, - { - "l": "75.0", - "x": 15.8457, - "y": 54.247 - }, - { - "l": "75.0", - "x": 15.929, - "y": 54.2662 - }, - { - "l": "75.0", - "x": 16.0123, - "y": 54.2864 - }, - { - "l": "75.0", - "x": 16.0957, - "y": 54.3053 - }, - { - "l": "75.0", - "x": 16.179, - "y": 54.321 - }, - { - "l": "75.0", - "x": 16.2623, - "y": 54.3381 - }, - { - "l": "75.0", - "x": 16.3457, - "y": 54.3533 - }, - { - "l": "75.0", - "x": 16.429, - "y": 54.3664 - }, - { - "l": "75.0", - "x": 16.5123, - "y": 54.3798 - }, - { - "l": "75.0", - "x": 16.5957, - "y": 54.3916 - }, - { - "l": "75.0", - "x": 16.679, - "y": 54.402 - }, - { - "l": "75.0", - "x": 16.7623, - "y": 54.4121 - }, - { - "l": "75.0", - "x": 16.8457, - "y": 54.421 - }, - { - "l": "75.0", - "x": 16.929, - "y": 54.4281 - }, - { - "l": "75.0", - "x": 17.0123, - "y": 54.4358 - }, - { - "l": "75.0", - "x": 17.0957, - "y": 54.4411 - }, - { - "l": "75.0", - "x": 17.179, - "y": 54.446 - }, - { - "l": "75.0", - "x": 17.2623, - "y": 54.4512 - }, - { - "l": "75.0", - "x": 17.3457, - "y": 54.4541 - }, - { - "l": "75.0", - "x": 17.429, - "y": 54.4559 - }, - { - "l": "75.0", - "x": 17.5123, - "y": 54.458 - }, - { - "l": "75.0", - "x": 17.5957, - "y": 54.4601 - }, - { - "l": "75.0", - "x": 17.679, - "y": 54.462 - }, - { - "l": "75.0", - "x": 17.7623, - "y": 54.4641 - }, - { - "l": "75.0", - "x": 17.8457, - "y": 54.4659 - }, - { - "l": "75.0", - "x": 17.929, - "y": 54.4662 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 0.0, - "y": 35.3274 - }, - { - "l": "91.0", - "x": 0.0192, - "y": 35.7616 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 36.1954 - }, - { - "l": "91.0", - "x": 0.0575, - "y": 36.6289 - }, - { - "l": "91.0", - "x": 0.0767, - "y": 37.0622 - }, - { - "l": "91.0", - "x": 0.0958, - "y": 37.4524 - }, - { - "l": "91.0", - "x": 0.115, - "y": 37.8211 - }, - { - "l": "91.0", - "x": 0.1342, - "y": 38.1797 - }, - { - "l": "91.0", - "x": 0.1533, - "y": 38.532 - }, - { - "l": "91.0", - "x": 0.1725, - "y": 38.8843 - }, - { - "l": "91.0", - "x": 0.1916, - "y": 39.254 - }, - { - "l": "91.0", - "x": 0.2108, - "y": 39.6199 - }, - { - "l": "91.0", - "x": 0.23, - "y": 39.9789 - }, - { - "l": "91.0", - "x": 0.2491, - "y": 40.3283 - }, - { - "l": "91.0", - "x": 0.2683, - "y": 40.6611 - }, - { - "l": "91.0", - "x": 0.2875, - "y": 40.9799 - }, - { - "l": "91.0", - "x": 0.3066, - "y": 41.2835 - }, - { - "l": "91.0", - "x": 0.3258, - "y": 41.5706 - }, - { - "l": "91.0", - "x": 0.345, - "y": 41.8286 - }, - { - "l": "91.0", - "x": 0.3641, - "y": 42.0671 - }, - { - "l": "91.0", - "x": 0.3833, - "y": 42.2923 - }, - { - "l": "91.0", - "x": 0.4025, - "y": 42.5073 - }, - { - "l": "91.0", - "x": 0.4216, - "y": 42.7165 - }, - { - "l": "91.0", - "x": 0.4408, - "y": 42.9334 - }, - { - "l": "91.0", - "x": 0.46, - "y": 43.144 - }, - { - "l": "91.0", - "x": 0.4791, - "y": 43.347 - }, - { - "l": "91.0", - "x": 0.4983, - "y": 43.5411 - }, - { - "l": "91.0", - "x": 0.5175, - "y": 43.722 - }, - { - "l": "91.0", - "x": 0.5366, - "y": 43.8922 - }, - { - "l": "91.0", - "x": 0.5558, - "y": 44.0521 - }, - { - "l": "91.0", - "x": 0.5749, - "y": 44.2015 - }, - { - "l": "91.0", - "x": 0.5941, - "y": 44.3355 - }, - { - "l": "91.0", - "x": 0.6133, - "y": 44.4584 - }, - { - "l": "91.0", - "x": 0.6324, - "y": 44.5738 - }, - { - "l": "91.0", - "x": 0.6516, - "y": 44.6839 - }, - { - "l": "91.0", - "x": 0.6708, - "y": 44.7908 - }, - { - "l": "91.0", - "x": 0.6899, - "y": 44.9034 - }, - { - "l": "91.0", - "x": 0.7091, - "y": 45.0135 - }, - { - "l": "91.0", - "x": 0.7283, - "y": 45.1207 - }, - { - "l": "91.0", - "x": 0.7474, - "y": 45.2245 - }, - { - "l": "91.0", - "x": 0.7666, - "y": 45.3235 - }, - { - "l": "91.0", - "x": 0.7858, - "y": 45.4183 - }, - { - "l": "91.0", - "x": 0.8049, - "y": 45.5088 - }, - { - "l": "91.0", - "x": 0.8241, - "y": 45.5947 - }, - { - "l": "91.0", - "x": 0.8433, - "y": 45.6731 - }, - { - "l": "91.0", - "x": 0.8624, - "y": 45.746 - }, - { - "l": "91.0", - "x": 0.8816, - "y": 45.8157 - }, - { - "l": "91.0", - "x": 0.9008, - "y": 45.8835 - }, - { - "l": "91.0", - "x": 0.9199, - "y": 45.9504 - }, - { - "l": "91.0", - "x": 0.9391, - "y": 46.022 - }, - { - "l": "91.0", - "x": 0.9582, - "y": 46.0931 - }, - { - "l": "91.0", - "x": 0.9774, - "y": 46.1633 - }, - { - "l": "91.0", - "x": 0.9966, - "y": 46.2321 - }, - { - "l": "91.0", - "x": 1.0157, - "y": 46.2988 - }, - { - "l": "91.0", - "x": 1.0349, - "y": 46.3633 - }, - { - "l": "91.0", - "x": 1.0541, - "y": 46.4256 - }, - { - "l": "91.0", - "x": 1.0732, - "y": 46.4855 - }, - { - "l": "91.0", - "x": 1.0924, - "y": 46.5408 - }, - { - "l": "91.0", - "x": 1.1116, - "y": 46.5927 - }, - { - "l": "91.0", - "x": 1.1307, - "y": 46.6428 - }, - { - "l": "91.0", - "x": 1.1499, - "y": 46.692 - }, - { - "l": "91.0", - "x": 1.1691, - "y": 46.7408 - }, - { - "l": "91.0", - "x": 1.1882, - "y": 46.7929 - }, - { - "l": "91.0", - "x": 1.2074, - "y": 46.8452 - }, - { - "l": "91.0", - "x": 1.2266, - "y": 46.8971 - }, - { - "l": "91.0", - "x": 1.2457, - "y": 46.9482 - }, - { - "l": "91.0", - "x": 1.2649, - "y": 46.9982 - }, - { - "l": "91.0", - "x": 1.2841, - "y": 47.0467 - }, - { - "l": "91.0", - "x": 1.3032, - "y": 47.0938 - }, - { - "l": "91.0", - "x": 1.3224, - "y": 47.1392 - }, - { - "l": "91.0", - "x": 1.3415, - "y": 47.1811 - }, - { - "l": "91.0", - "x": 1.3607, - "y": 47.2203 - }, - { - "l": "91.0", - "x": 1.3799, - "y": 47.2582 - }, - { - "l": "91.0", - "x": 1.399, - "y": 47.2953 - }, - { - "l": "91.0", - "x": 1.4182, - "y": 47.3321 - }, - { - "l": "91.0", - "x": 1.4374, - "y": 47.3712 - }, - { - "l": "91.0", - "x": 1.4565, - "y": 47.4105 - }, - { - "l": "91.0", - "x": 1.4757, - "y": 47.4495 - }, - { - "l": "91.0", - "x": 1.4949, - "y": 47.488 - }, - { - "l": "91.0", - "x": 1.514, - "y": 47.5257 - }, - { - "l": "91.0", - "x": 1.5332, - "y": 47.5624 - }, - { - "l": "91.0", - "x": 1.5524, - "y": 47.5981 - }, - { - "l": "91.0", - "x": 1.5715, - "y": 47.6327 - }, - { - "l": "91.0", - "x": 1.5907, - "y": 47.6649 - }, - { - "l": "91.0", - "x": 1.6099, - "y": 47.695 - }, - { - "l": "91.0", - "x": 1.629, - "y": 47.7243 - }, - { - "l": "91.0", - "x": 1.6482, - "y": 47.7532 - }, - { - "l": "91.0", - "x": 1.6674, - "y": 47.7821 - }, - { - "l": "91.0", - "x": 1.6865, - "y": 47.8129 - }, - { - "l": "91.0", - "x": 1.7057, - "y": 47.8442 - }, - { - "l": "91.0", - "x": 1.7248, - "y": 47.8756 - }, - { - "l": "91.0", - "x": 1.744, - "y": 47.9069 - }, - { - "l": "91.0", - "x": 1.7632, - "y": 47.9378 - }, - { - "l": "91.0", - "x": 1.7823, - "y": 47.9683 - }, - { - "l": "91.0", - "x": 1.8015, - "y": 47.9983 - }, - { - "l": "91.0", - "x": 1.8207, - "y": 48.0275 - }, - { - "l": "91.0", - "x": 1.8398, - "y": 48.0552 - }, - { - "l": "91.0", - "x": 1.859, - "y": 48.0813 - }, - { - "l": "91.0", - "x": 1.8782, - "y": 48.1069 - }, - { - "l": "91.0", - "x": 1.8973, - "y": 48.1325 - }, - { - "l": "91.0", - "x": 1.9165, - "y": 48.1584 - }, - { - "l": "91.0", - "x": 1.9357, - "y": 48.1862 - }, - { - "l": "91.0", - "x": 1.9548, - "y": 48.2147 - }, - { - "l": "91.0", - "x": 1.974, - "y": 48.2436 - }, - { - "l": "91.0", - "x": 1.9932, - "y": 48.2727 - }, - { - "l": "91.0", - "x": 2.0123, - "y": 48.3017 - }, - { - "l": "91.0", - "x": 2.0957, - "y": 48.4225 - }, - { - "l": "91.0", - "x": 2.179, - "y": 48.5318 - }, - { - "l": "91.0", - "x": 2.2623, - "y": 48.6522 - }, - { - "l": "91.0", - "x": 2.3457, - "y": 48.7663 - }, - { - "l": "91.0", - "x": 2.429, - "y": 48.8671 - }, - { - "l": "91.0", - "x": 2.5123, - "y": 48.9758 - }, - { - "l": "91.0", - "x": 2.5957, - "y": 49.0766 - }, - { - "l": "91.0", - "x": 2.679, - "y": 49.1639 - }, - { - "l": "91.0", - "x": 2.7623, - "y": 49.2564 - }, - { - "l": "91.0", - "x": 2.8457, - "y": 49.3408 - }, - { - "l": "91.0", - "x": 2.929, - "y": 49.4127 - }, - { - "l": "91.0", - "x": 3.0123, - "y": 49.4878 - }, - { - "l": "91.0", - "x": 3.0957, - "y": 49.5555 - }, - { - "l": "91.0", - "x": 3.179, - "y": 49.6129 - }, - { - "l": "91.0", - "x": 3.2623, - "y": 49.6731 - }, - { - "l": "91.0", - "x": 3.3457, - "y": 49.7276 - }, - { - "l": "91.0", - "x": 3.429, - "y": 49.774 - }, - { - "l": "91.0", - "x": 3.5123, - "y": 49.8228 - }, - { - "l": "91.0", - "x": 3.5957, - "y": 49.8673 - }, - { - "l": "91.0", - "x": 3.679, - "y": 49.9057 - }, - { - "l": "91.0", - "x": 3.7623, - "y": 49.9465 - }, - { - "l": "91.0", - "x": 3.8457, - "y": 49.9843 - }, - { - "l": "91.0", - "x": 3.929, - "y": 50.0176 - }, - { - "l": "91.0", - "x": 4.0123, - "y": 50.054 - }, - { - "l": "91.0", - "x": 4.0957, - "y": 50.0886 - }, - { - "l": "91.0", - "x": 4.179, - "y": 50.1202 - }, - { - "l": "91.0", - "x": 4.2623, - "y": 50.1558 - }, - { - "l": "91.0", - "x": 4.3457, - "y": 50.191 - }, - { - "l": "91.0", - "x": 4.429, - "y": 50.2237 - }, - { - "l": "91.0", - "x": 4.5123, - "y": 50.2612 - }, - { - "l": "91.0", - "x": 4.5957, - "y": 50.2986 - }, - { - "l": "91.0", - "x": 4.679, - "y": 50.3336 - }, - { - "l": "91.0", - "x": 4.7623, - "y": 50.3737 - }, - { - "l": "91.0", - "x": 4.8457, - "y": 50.4135 - }, - { - "l": "91.0", - "x": 4.929, - "y": 50.4505 - }, - { - "l": "91.0", - "x": 5.0123, - "y": 50.4924 - }, - { - "l": "91.0", - "x": 5.0957, - "y": 50.5336 - }, - { - "l": "91.0", - "x": 5.179, - "y": 50.5716 - }, - { - "l": "91.0", - "x": 5.2623, - "y": 50.6144 - }, - { - "l": "91.0", - "x": 5.3457, - "y": 50.656 - }, - { - "l": "91.0", - "x": 5.429, - "y": 50.6941 - }, - { - "l": "91.0", - "x": 5.5123, - "y": 50.7366 - }, - { - "l": "91.0", - "x": 5.5957, - "y": 50.7778 - }, - { - "l": "91.0", - "x": 5.679, - "y": 50.8152 - }, - { - "l": "91.0", - "x": 5.7623, - "y": 50.8568 - }, - { - "l": "91.0", - "x": 5.8457, - "y": 50.897 - }, - { - "l": "91.0", - "x": 5.929, - "y": 50.9337 - }, - { - "l": "91.0", - "x": 6.0123, - "y": 50.9746 - }, - { - "l": "91.0", - "x": 6.0957, - "y": 51.0143 - }, - { - "l": "91.0", - "x": 6.179, - "y": 51.0504 - }, - { - "l": "91.0", - "x": 6.2623, - "y": 51.0907 - }, - { - "l": "91.0", - "x": 6.3457, - "y": 51.1297 - }, - { - "l": "91.0", - "x": 6.429, - "y": 51.1651 - }, - { - "l": "91.0", - "x": 6.5123, - "y": 51.2047 - }, - { - "l": "91.0", - "x": 6.5957, - "y": 51.2429 - }, - { - "l": "91.0", - "x": 6.679, - "y": 51.2778 - }, - { - "l": "91.0", - "x": 6.7623, - "y": 51.3167 - }, - { - "l": "91.0", - "x": 6.8457, - "y": 51.3545 - }, - { - "l": "91.0", - "x": 6.929, - "y": 51.3888 - }, - { - "l": "91.0", - "x": 7.0123, - "y": 51.4272 - }, - { - "l": "91.0", - "x": 7.0957, - "y": 51.4645 - }, - { - "l": "91.0", - "x": 7.179, - "y": 51.4983 - }, - { - "l": "91.0", - "x": 7.2623, - "y": 51.5361 - }, - { - "l": "91.0", - "x": 7.3457, - "y": 51.5728 - }, - { - "l": "91.0", - "x": 7.429, - "y": 51.6061 - }, - { - "l": "91.0", - "x": 7.5123, - "y": 51.6431 - }, - { - "l": "91.0", - "x": 7.5957, - "y": 51.679 - }, - { - "l": "91.0", - "x": 7.679, - "y": 51.7117 - }, - { - "l": "91.0", - "x": 7.7623, - "y": 51.7483 - }, - { - "l": "91.0", - "x": 7.8457, - "y": 51.7837 - }, - { - "l": "91.0", - "x": 7.929, - "y": 51.8161 - }, - { - "l": "91.0", - "x": 8.0123, - "y": 51.8524 - }, - { - "l": "91.0", - "x": 8.0957, - "y": 51.8874 - }, - { - "l": "91.0", - "x": 8.179, - "y": 51.9193 - }, - { - "l": "91.0", - "x": 8.2623, - "y": 51.9547 - }, - { - "l": "91.0", - "x": 8.3457, - "y": 51.989 - }, - { - "l": "91.0", - "x": 8.429, - "y": 52.0201 - }, - { - "l": "91.0", - "x": 8.5123, - "y": 52.0546 - }, - { - "l": "91.0", - "x": 8.5957, - "y": 52.088 - }, - { - "l": "91.0", - "x": 8.679, - "y": 52.1183 - }, - { - "l": "91.0", - "x": 8.7623, - "y": 52.1521 - }, - { - "l": "91.0", - "x": 8.8457, - "y": 52.1848 - }, - { - "l": "91.0", - "x": 8.929, - "y": 52.2148 - }, - { - "l": "91.0", - "x": 9.0123, - "y": 52.2483 - }, - { - "l": "91.0", - "x": 9.0957, - "y": 52.281 - }, - { - "l": "91.0", - "x": 9.179, - "y": 52.311 - }, - { - "l": "91.0", - "x": 9.2623, - "y": 52.3446 - }, - { - "l": "91.0", - "x": 9.3457, - "y": 52.3776 - }, - { - "l": "91.0", - "x": 9.429, - "y": 52.4079 - }, - { - "l": "91.0", - "x": 9.5123, - "y": 52.442 - }, - { - "l": "91.0", - "x": 9.5957, - "y": 52.4756 - }, - { - "l": "91.0", - "x": 9.679, - "y": 52.5068 - }, - { - "l": "91.0", - "x": 9.7623, - "y": 52.5426 - }, - { - "l": "91.0", - "x": 9.8457, - "y": 52.5776 - }, - { - "l": "91.0", - "x": 9.929, - "y": 52.6096 - }, - { - "l": "91.0", - "x": 10.0123, - "y": 52.6458 - }, - { - "l": "91.0", - "x": 10.0957, - "y": 52.6819 - }, - { - "l": "91.0", - "x": 10.179, - "y": 52.7154 - }, - { - "l": "91.0", - "x": 10.2623, - "y": 52.7536 - }, - { - "l": "91.0", - "x": 10.3457, - "y": 52.791 - }, - { - "l": "91.0", - "x": 10.429, - "y": 52.8252 - }, - { - "l": "91.0", - "x": 10.5123, - "y": 52.8641 - }, - { - "l": "91.0", - "x": 10.5957, - "y": 52.9027 - }, - { - "l": "91.0", - "x": 10.679, - "y": 52.9384 - }, - { - "l": "91.0", - "x": 10.7623, - "y": 52.9788 - }, - { - "l": "91.0", - "x": 10.8457, - "y": 53.0183 - }, - { - "l": "91.0", - "x": 10.929, - "y": 53.0547 - }, - { - "l": "91.0", - "x": 11.0123, - "y": 53.0958 - }, - { - "l": "91.0", - "x": 11.0957, - "y": 53.1358 - }, - { - "l": "91.0", - "x": 11.179, - "y": 53.1725 - }, - { - "l": "91.0", - "x": 11.2623, - "y": 53.2135 - }, - { - "l": "91.0", - "x": 11.3457, - "y": 53.2534 - }, - { - "l": "91.0", - "x": 11.429, - "y": 53.2899 - }, - { - "l": "91.0", - "x": 11.5123, - "y": 53.3308 - }, - { - "l": "91.0", - "x": 11.5957, - "y": 53.3706 - }, - { - "l": "91.0", - "x": 11.679, - "y": 53.4069 - }, - { - "l": "91.0", - "x": 11.7623, - "y": 53.4476 - }, - { - "l": "91.0", - "x": 11.8457, - "y": 53.4873 - }, - { - "l": "91.0", - "x": 11.929, - "y": 53.5236 - }, - { - "l": "91.0", - "x": 12.0123, - "y": 53.5647 - }, - { - "l": "91.0", - "x": 12.0957, - "y": 53.6049 - }, - { - "l": "91.0", - "x": 12.179, - "y": 53.6421 - }, - { - "l": "91.0", - "x": 12.2623, - "y": 53.6842 - }, - { - "l": "91.0", - "x": 12.3457, - "y": 53.7259 - }, - { - "l": "91.0", - "x": 12.429, - "y": 53.7646 - }, - { - "l": "91.0", - "x": 12.5123, - "y": 53.8081 - }, - { - "l": "91.0", - "x": 12.5957, - "y": 53.8512 - }, - { - "l": "91.0", - "x": 12.679, - "y": 53.8918 - }, - { - "l": "91.0", - "x": 12.7623, - "y": 53.9373 - }, - { - "l": "91.0", - "x": 12.8457, - "y": 53.9817 - }, - { - "l": "91.0", - "x": 12.929, - "y": 54.023 - }, - { - "l": "91.0", - "x": 13.0123, - "y": 54.0703 - }, - { - "l": "91.0", - "x": 13.0957, - "y": 54.1162 - }, - { - "l": "91.0", - "x": 13.179, - "y": 54.1585 - }, - { - "l": "91.0", - "x": 13.2623, - "y": 54.2065 - }, - { - "l": "91.0", - "x": 13.3457, - "y": 54.2536 - }, - { - "l": "91.0", - "x": 13.429, - "y": 54.2969 - }, - { - "l": "91.0", - "x": 13.5123, - "y": 54.3456 - }, - { - "l": "91.0", - "x": 13.5957, - "y": 54.393 - }, - { - "l": "91.0", - "x": 13.679, - "y": 54.4362 - }, - { - "l": "91.0", - "x": 13.7623, - "y": 54.4843 - }, - { - "l": "91.0", - "x": 13.8457, - "y": 54.5306 - }, - { - "l": "91.0", - "x": 13.929, - "y": 54.5727 - }, - { - "l": "91.0", - "x": 14.0123, - "y": 54.619 - }, - { - "l": "91.0", - "x": 14.0957, - "y": 54.6634 - }, - { - "l": "91.0", - "x": 14.179, - "y": 54.7031 - }, - { - "l": "91.0", - "x": 14.2623, - "y": 54.7469 - }, - { - "l": "91.0", - "x": 14.3457, - "y": 54.7886 - }, - { - "l": "91.0", - "x": 14.429, - "y": 54.8258 - }, - { - "l": "91.0", - "x": 14.5123, - "y": 54.8668 - }, - { - "l": "91.0", - "x": 14.5957, - "y": 54.9057 - }, - { - "l": "91.0", - "x": 14.679, - "y": 54.9403 - }, - { - "l": "91.0", - "x": 14.7623, - "y": 54.978 - }, - { - "l": "91.0", - "x": 14.8457, - "y": 55.0135 - }, - { - "l": "91.0", - "x": 14.929, - "y": 55.0455 - }, - { - "l": "91.0", - "x": 15.0123, - "y": 55.0795 - }, - { - "l": "91.0", - "x": 15.0957, - "y": 55.1122 - }, - { - "l": "91.0", - "x": 15.179, - "y": 55.1415 - }, - { - "l": "91.0", - "x": 15.2623, - "y": 55.1728 - }, - { - "l": "91.0", - "x": 15.3457, - "y": 55.2018 - }, - { - "l": "91.0", - "x": 15.429, - "y": 55.2274 - }, - { - "l": "91.0", - "x": 15.5123, - "y": 55.256 - }, - { - "l": "91.0", - "x": 15.5957, - "y": 55.2824 - }, - { - "l": "91.0", - "x": 15.679, - "y": 55.3051 - }, - { - "l": "91.0", - "x": 15.7623, - "y": 55.3296 - }, - { - "l": "91.0", - "x": 15.8457, - "y": 55.3525 - }, - { - "l": "91.0", - "x": 15.929, - "y": 55.3721 - }, - { - "l": "91.0", - "x": 16.0123, - "y": 55.3927 - }, - { - "l": "91.0", - "x": 16.0957, - "y": 55.4119 - }, - { - "l": "91.0", - "x": 16.179, - "y": 55.4278 - }, - { - "l": "91.0", - "x": 16.2623, - "y": 55.4453 - }, - { - "l": "91.0", - "x": 16.3457, - "y": 55.4608 - }, - { - "l": "91.0", - "x": 16.429, - "y": 55.4741 - }, - { - "l": "91.0", - "x": 16.5123, - "y": 55.4878 - }, - { - "l": "91.0", - "x": 16.5957, - "y": 55.4999 - }, - { - "l": "91.0", - "x": 16.679, - "y": 55.5104 - }, - { - "l": "91.0", - "x": 16.7623, - "y": 55.5207 - }, - { - "l": "91.0", - "x": 16.8457, - "y": 55.5298 - }, - { - "l": "91.0", - "x": 16.929, - "y": 55.537 - }, - { - "l": "91.0", - "x": 17.0123, - "y": 55.5449 - }, - { - "l": "91.0", - "x": 17.0957, - "y": 55.5503 - }, - { - "l": "91.0", - "x": 17.179, - "y": 55.5553 - }, - { - "l": "91.0", - "x": 17.2623, - "y": 55.5605 - }, - { - "l": "91.0", - "x": 17.3457, - "y": 55.5636 - }, - { - "l": "91.0", - "x": 17.429, - "y": 55.5654 - }, - { - "l": "91.0", - "x": 17.5123, - "y": 55.5676 - }, - { - "l": "91.0", - "x": 17.5957, - "y": 55.5696 - }, - { - "l": "91.0", - "x": 17.679, - "y": 55.5716 - }, - { - "l": "91.0", - "x": 17.7623, - "y": 55.5737 - }, - { - "l": "91.0", - "x": 17.8457, - "y": 55.5755 - }, - { - "l": "91.0", - "x": 17.929, - "y": 55.5759 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 0.0, - "y": 36.2185 - }, - { - "l": "98.0", - "x": 0.0192, - "y": 36.6582 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 37.0975 - }, - { - "l": "98.0", - "x": 0.0575, - "y": 37.5363 - }, - { - "l": "98.0", - "x": 0.0767, - "y": 37.9748 - }, - { - "l": "98.0", - "x": 0.0958, - "y": 38.3695 - }, - { - "l": "98.0", - "x": 0.115, - "y": 38.7423 - }, - { - "l": "98.0", - "x": 0.1342, - "y": 39.1049 - }, - { - "l": "98.0", - "x": 0.1533, - "y": 39.4609 - }, - { - "l": "98.0", - "x": 0.1725, - "y": 39.8169 - }, - { - "l": "98.0", - "x": 0.1916, - "y": 40.1903 - }, - { - "l": "98.0", - "x": 0.2108, - "y": 40.5596 - }, - { - "l": "98.0", - "x": 0.23, - "y": 40.922 - }, - { - "l": "98.0", - "x": 0.2491, - "y": 41.2744 - }, - { - "l": "98.0", - "x": 0.2683, - "y": 41.61 - }, - { - "l": "98.0", - "x": 0.2875, - "y": 41.9313 - }, - { - "l": "98.0", - "x": 0.3066, - "y": 42.2371 - }, - { - "l": "98.0", - "x": 0.3258, - "y": 42.5261 - }, - { - "l": "98.0", - "x": 0.345, - "y": 42.7858 - }, - { - "l": "98.0", - "x": 0.3641, - "y": 43.0257 - }, - { - "l": "98.0", - "x": 0.3833, - "y": 43.2521 - }, - { - "l": "98.0", - "x": 0.4025, - "y": 43.4682 - }, - { - "l": "98.0", - "x": 0.4216, - "y": 43.6783 - }, - { - "l": "98.0", - "x": 0.4408, - "y": 43.896 - }, - { - "l": "98.0", - "x": 0.46, - "y": 44.1073 - }, - { - "l": "98.0", - "x": 0.4791, - "y": 44.3108 - }, - { - "l": "98.0", - "x": 0.4983, - "y": 44.5053 - }, - { - "l": "98.0", - "x": 0.5175, - "y": 44.6864 - }, - { - "l": "98.0", - "x": 0.5366, - "y": 44.8567 - }, - { - "l": "98.0", - "x": 0.5558, - "y": 45.0166 - }, - { - "l": "98.0", - "x": 0.5749, - "y": 45.166 - }, - { - "l": "98.0", - "x": 0.5941, - "y": 45.2998 - }, - { - "l": "98.0", - "x": 0.6133, - "y": 45.4225 - }, - { - "l": "98.0", - "x": 0.6324, - "y": 45.5378 - }, - { - "l": "98.0", - "x": 0.6516, - "y": 45.6476 - }, - { - "l": "98.0", - "x": 0.6708, - "y": 45.7543 - }, - { - "l": "98.0", - "x": 0.6899, - "y": 45.8666 - }, - { - "l": "98.0", - "x": 0.7091, - "y": 45.9764 - }, - { - "l": "98.0", - "x": 0.7283, - "y": 46.0833 - }, - { - "l": "98.0", - "x": 0.7474, - "y": 46.1868 - }, - { - "l": "98.0", - "x": 0.7666, - "y": 46.2856 - }, - { - "l": "98.0", - "x": 0.7858, - "y": 46.3802 - }, - { - "l": "98.0", - "x": 0.8049, - "y": 46.4704 - }, - { - "l": "98.0", - "x": 0.8241, - "y": 46.5562 - }, - { - "l": "98.0", - "x": 0.8433, - "y": 46.6345 - }, - { - "l": "98.0", - "x": 0.8624, - "y": 46.7073 - }, - { - "l": "98.0", - "x": 0.8816, - "y": 46.777 - }, - { - "l": "98.0", - "x": 0.9008, - "y": 46.8448 - }, - { - "l": "98.0", - "x": 0.9199, - "y": 46.9117 - }, - { - "l": "98.0", - "x": 0.9391, - "y": 46.9834 - }, - { - "l": "98.0", - "x": 0.9582, - "y": 47.0547 - }, - { - "l": "98.0", - "x": 0.9774, - "y": 47.1251 - }, - { - "l": "98.0", - "x": 0.9966, - "y": 47.1943 - }, - { - "l": "98.0", - "x": 1.0157, - "y": 47.2612 - }, - { - "l": "98.0", - "x": 1.0349, - "y": 47.3261 - }, - { - "l": "98.0", - "x": 1.0541, - "y": 47.3888 - }, - { - "l": "98.0", - "x": 1.0732, - "y": 47.4491 - }, - { - "l": "98.0", - "x": 1.0924, - "y": 47.5049 - }, - { - "l": "98.0", - "x": 1.1116, - "y": 47.5572 - }, - { - "l": "98.0", - "x": 1.1307, - "y": 47.6079 - }, - { - "l": "98.0", - "x": 1.1499, - "y": 47.6576 - }, - { - "l": "98.0", - "x": 1.1691, - "y": 47.707 - }, - { - "l": "98.0", - "x": 1.1882, - "y": 47.7599 - }, - { - "l": "98.0", - "x": 1.2074, - "y": 47.8128 - }, - { - "l": "98.0", - "x": 1.2266, - "y": 47.8655 - }, - { - "l": "98.0", - "x": 1.2457, - "y": 47.9174 - }, - { - "l": "98.0", - "x": 1.2649, - "y": 47.9682 - }, - { - "l": "98.0", - "x": 1.2841, - "y": 48.0176 - }, - { - "l": "98.0", - "x": 1.3032, - "y": 48.0655 - }, - { - "l": "98.0", - "x": 1.3224, - "y": 48.1117 - }, - { - "l": "98.0", - "x": 1.3415, - "y": 48.1545 - }, - { - "l": "98.0", - "x": 1.3607, - "y": 48.1944 - }, - { - "l": "98.0", - "x": 1.3799, - "y": 48.233 - }, - { - "l": "98.0", - "x": 1.399, - "y": 48.2708 - }, - { - "l": "98.0", - "x": 1.4182, - "y": 48.3084 - }, - { - "l": "98.0", - "x": 1.4374, - "y": 48.3483 - }, - { - "l": "98.0", - "x": 1.4565, - "y": 48.3884 - }, - { - "l": "98.0", - "x": 1.4757, - "y": 48.4282 - }, - { - "l": "98.0", - "x": 1.4949, - "y": 48.4675 - }, - { - "l": "98.0", - "x": 1.514, - "y": 48.5059 - }, - { - "l": "98.0", - "x": 1.5332, - "y": 48.5434 - }, - { - "l": "98.0", - "x": 1.5524, - "y": 48.5798 - }, - { - "l": "98.0", - "x": 1.5715, - "y": 48.6151 - }, - { - "l": "98.0", - "x": 1.5907, - "y": 48.6479 - }, - { - "l": "98.0", - "x": 1.6099, - "y": 48.6786 - }, - { - "l": "98.0", - "x": 1.629, - "y": 48.7085 - }, - { - "l": "98.0", - "x": 1.6482, - "y": 48.738 - }, - { - "l": "98.0", - "x": 1.6674, - "y": 48.7674 - }, - { - "l": "98.0", - "x": 1.6865, - "y": 48.7988 - }, - { - "l": "98.0", - "x": 1.7057, - "y": 48.8307 - }, - { - "l": "98.0", - "x": 1.7248, - "y": 48.8626 - }, - { - "l": "98.0", - "x": 1.744, - "y": 48.8945 - }, - { - "l": "98.0", - "x": 1.7632, - "y": 48.926 - }, - { - "l": "98.0", - "x": 1.7823, - "y": 48.957 - }, - { - "l": "98.0", - "x": 1.8015, - "y": 48.9874 - }, - { - "l": "98.0", - "x": 1.8207, - "y": 49.0171 - }, - { - "l": "98.0", - "x": 1.8398, - "y": 49.0452 - }, - { - "l": "98.0", - "x": 1.859, - "y": 49.0717 - }, - { - "l": "98.0", - "x": 1.8782, - "y": 49.0978 - }, - { - "l": "98.0", - "x": 1.8973, - "y": 49.1238 - }, - { - "l": "98.0", - "x": 1.9165, - "y": 49.1501 - }, - { - "l": "98.0", - "x": 1.9357, - "y": 49.1783 - }, - { - "l": "98.0", - "x": 1.9548, - "y": 49.2073 - }, - { - "l": "98.0", - "x": 1.974, - "y": 49.2366 - }, - { - "l": "98.0", - "x": 1.9932, - "y": 49.2661 - }, - { - "l": "98.0", - "x": 2.0123, - "y": 49.2955 - }, - { - "l": "98.0", - "x": 2.0957, - "y": 49.4181 - }, - { - "l": "98.0", - "x": 2.179, - "y": 49.529 - }, - { - "l": "98.0", - "x": 2.2623, - "y": 49.6512 - }, - { - "l": "98.0", - "x": 2.3457, - "y": 49.767 - }, - { - "l": "98.0", - "x": 2.429, - "y": 49.8693 - }, - { - "l": "98.0", - "x": 2.5123, - "y": 49.9796 - }, - { - "l": "98.0", - "x": 2.5957, - "y": 50.0819 - }, - { - "l": "98.0", - "x": 2.679, - "y": 50.1706 - }, - { - "l": "98.0", - "x": 2.7623, - "y": 50.2645 - }, - { - "l": "98.0", - "x": 2.8457, - "y": 50.3501 - }, - { - "l": "98.0", - "x": 2.929, - "y": 50.4231 - }, - { - "l": "98.0", - "x": 3.0123, - "y": 50.4994 - }, - { - "l": "98.0", - "x": 3.0957, - "y": 50.5681 - }, - { - "l": "98.0", - "x": 3.179, - "y": 50.6265 - }, - { - "l": "98.0", - "x": 3.2623, - "y": 50.6875 - }, - { - "l": "98.0", - "x": 3.3457, - "y": 50.7428 - }, - { - "l": "98.0", - "x": 3.429, - "y": 50.79 - }, - { - "l": "98.0", - "x": 3.5123, - "y": 50.8395 - }, - { - "l": "98.0", - "x": 3.5957, - "y": 50.8847 - }, - { - "l": "98.0", - "x": 3.679, - "y": 50.9236 - }, - { - "l": "98.0", - "x": 3.7623, - "y": 50.965 - }, - { - "l": "98.0", - "x": 3.8457, - "y": 51.0034 - }, - { - "l": "98.0", - "x": 3.929, - "y": 51.0372 - }, - { - "l": "98.0", - "x": 4.0123, - "y": 51.0741 - }, - { - "l": "98.0", - "x": 4.0957, - "y": 51.1092 - }, - { - "l": "98.0", - "x": 4.179, - "y": 51.1412 - }, - { - "l": "98.0", - "x": 4.2623, - "y": 51.1774 - }, - { - "l": "98.0", - "x": 4.3457, - "y": 51.2131 - }, - { - "l": "98.0", - "x": 4.429, - "y": 51.2463 - }, - { - "l": "98.0", - "x": 4.5123, - "y": 51.2843 - }, - { - "l": "98.0", - "x": 4.5957, - "y": 51.3222 - }, - { - "l": "98.0", - "x": 4.679, - "y": 51.3577 - }, - { - "l": "98.0", - "x": 4.7623, - "y": 51.3984 - }, - { - "l": "98.0", - "x": 4.8457, - "y": 51.4388 - }, - { - "l": "98.0", - "x": 4.929, - "y": 51.4763 - }, - { - "l": "98.0", - "x": 5.0123, - "y": 51.5188 - }, - { - "l": "98.0", - "x": 5.0957, - "y": 51.5606 - }, - { - "l": "98.0", - "x": 5.179, - "y": 51.5991 - }, - { - "l": "98.0", - "x": 5.2623, - "y": 51.6424 - }, - { - "l": "98.0", - "x": 5.3457, - "y": 51.6847 - }, - { - "l": "98.0", - "x": 5.429, - "y": 51.7232 - }, - { - "l": "98.0", - "x": 5.5123, - "y": 51.7664 - }, - { - "l": "98.0", - "x": 5.5957, - "y": 51.8081 - }, - { - "l": "98.0", - "x": 5.679, - "y": 51.846 - }, - { - "l": "98.0", - "x": 5.7623, - "y": 51.8882 - }, - { - "l": "98.0", - "x": 5.8457, - "y": 51.9289 - }, - { - "l": "98.0", - "x": 5.929, - "y": 51.9661 - }, - { - "l": "98.0", - "x": 6.0123, - "y": 52.0076 - }, - { - "l": "98.0", - "x": 6.0957, - "y": 52.0478 - }, - { - "l": "98.0", - "x": 6.179, - "y": 52.0844 - }, - { - "l": "98.0", - "x": 6.2623, - "y": 52.1252 - }, - { - "l": "98.0", - "x": 6.3457, - "y": 52.1646 - }, - { - "l": "98.0", - "x": 6.429, - "y": 52.2006 - }, - { - "l": "98.0", - "x": 6.5123, - "y": 52.2406 - }, - { - "l": "98.0", - "x": 6.5957, - "y": 52.2794 - }, - { - "l": "98.0", - "x": 6.679, - "y": 52.3147 - }, - { - "l": "98.0", - "x": 6.7623, - "y": 52.3542 - }, - { - "l": "98.0", - "x": 6.8457, - "y": 52.3924 - }, - { - "l": "98.0", - "x": 6.929, - "y": 52.4272 - }, - { - "l": "98.0", - "x": 7.0123, - "y": 52.4661 - }, - { - "l": "98.0", - "x": 7.0957, - "y": 52.5039 - }, - { - "l": "98.0", - "x": 7.179, - "y": 52.5382 - }, - { - "l": "98.0", - "x": 7.2623, - "y": 52.5765 - }, - { - "l": "98.0", - "x": 7.3457, - "y": 52.6137 - }, - { - "l": "98.0", - "x": 7.429, - "y": 52.6474 - }, - { - "l": "98.0", - "x": 7.5123, - "y": 52.685 - }, - { - "l": "98.0", - "x": 7.5957, - "y": 52.7213 - }, - { - "l": "98.0", - "x": 7.679, - "y": 52.7545 - }, - { - "l": "98.0", - "x": 7.7623, - "y": 52.7916 - }, - { - "l": "98.0", - "x": 7.8457, - "y": 52.8275 - }, - { - "l": "98.0", - "x": 7.929, - "y": 52.8603 - }, - { - "l": "98.0", - "x": 8.0123, - "y": 52.8971 - }, - { - "l": "98.0", - "x": 8.0957, - "y": 52.9326 - }, - { - "l": "98.0", - "x": 8.179, - "y": 52.9649 - }, - { - "l": "98.0", - "x": 8.2623, - "y": 53.0009 - }, - { - "l": "98.0", - "x": 8.3457, - "y": 53.0357 - }, - { - "l": "98.0", - "x": 8.429, - "y": 53.0672 - }, - { - "l": "98.0", - "x": 8.5123, - "y": 53.1023 - }, - { - "l": "98.0", - "x": 8.5957, - "y": 53.1361 - }, - { - "l": "98.0", - "x": 8.679, - "y": 53.1668 - }, - { - "l": "98.0", - "x": 8.7623, - "y": 53.2011 - }, - { - "l": "98.0", - "x": 8.8457, - "y": 53.2344 - }, - { - "l": "98.0", - "x": 8.929, - "y": 53.2648 - }, - { - "l": "98.0", - "x": 9.0123, - "y": 53.2989 - }, - { - "l": "98.0", - "x": 9.0957, - "y": 53.332 - }, - { - "l": "98.0", - "x": 9.179, - "y": 53.3625 - }, - { - "l": "98.0", - "x": 9.2623, - "y": 53.3967 - }, - { - "l": "98.0", - "x": 9.3457, - "y": 53.4301 - }, - { - "l": "98.0", - "x": 9.429, - "y": 53.4609 - }, - { - "l": "98.0", - "x": 9.5123, - "y": 53.4956 - }, - { - "l": "98.0", - "x": 9.5957, - "y": 53.5297 - }, - { - "l": "98.0", - "x": 9.679, - "y": 53.5614 - }, - { - "l": "98.0", - "x": 9.7623, - "y": 53.5978 - }, - { - "l": "98.0", - "x": 9.8457, - "y": 53.6333 - }, - { - "l": "98.0", - "x": 9.929, - "y": 53.6659 - }, - { - "l": "98.0", - "x": 10.0123, - "y": 53.7026 - }, - { - "l": "98.0", - "x": 10.0957, - "y": 53.7394 - }, - { - "l": "98.0", - "x": 10.179, - "y": 53.7733 - }, - { - "l": "98.0", - "x": 10.2623, - "y": 53.8122 - }, - { - "l": "98.0", - "x": 10.3457, - "y": 53.8502 - }, - { - "l": "98.0", - "x": 10.429, - "y": 53.885 - }, - { - "l": "98.0", - "x": 10.5123, - "y": 53.9246 - }, - { - "l": "98.0", - "x": 10.5957, - "y": 53.9638 - }, - { - "l": "98.0", - "x": 10.679, - "y": 54.0001 - }, - { - "l": "98.0", - "x": 10.7623, - "y": 54.0412 - }, - { - "l": "98.0", - "x": 10.8457, - "y": 54.0814 - }, - { - "l": "98.0", - "x": 10.929, - "y": 54.1184 - }, - { - "l": "98.0", - "x": 11.0123, - "y": 54.1602 - }, - { - "l": "98.0", - "x": 11.0957, - "y": 54.2009 - }, - { - "l": "98.0", - "x": 11.179, - "y": 54.2382 - }, - { - "l": "98.0", - "x": 11.2623, - "y": 54.28 - }, - { - "l": "98.0", - "x": 11.3457, - "y": 54.3206 - }, - { - "l": "98.0", - "x": 11.429, - "y": 54.3577 - }, - { - "l": "98.0", - "x": 11.5123, - "y": 54.3993 - }, - { - "l": "98.0", - "x": 11.5957, - "y": 54.4397 - }, - { - "l": "98.0", - "x": 11.679, - "y": 54.4767 - }, - { - "l": "98.0", - "x": 11.7623, - "y": 54.5181 - }, - { - "l": "98.0", - "x": 11.8457, - "y": 54.5585 - }, - { - "l": "98.0", - "x": 11.929, - "y": 54.5955 - }, - { - "l": "98.0", - "x": 12.0123, - "y": 54.6373 - }, - { - "l": "98.0", - "x": 12.0957, - "y": 54.6782 - }, - { - "l": "98.0", - "x": 12.179, - "y": 54.716 - }, - { - "l": "98.0", - "x": 12.2623, - "y": 54.7589 - }, - { - "l": "98.0", - "x": 12.3457, - "y": 54.8013 - }, - { - "l": "98.0", - "x": 12.429, - "y": 54.8408 - }, - { - "l": "98.0", - "x": 12.5123, - "y": 54.8851 - }, - { - "l": "98.0", - "x": 12.5957, - "y": 54.9289 - }, - { - "l": "98.0", - "x": 12.679, - "y": 54.9702 - }, - { - "l": "98.0", - "x": 12.7623, - "y": 55.0165 - }, - { - "l": "98.0", - "x": 12.8457, - "y": 55.0617 - }, - { - "l": "98.0", - "x": 12.929, - "y": 55.1038 - }, - { - "l": "98.0", - "x": 13.0123, - "y": 55.1519 - }, - { - "l": "98.0", - "x": 13.0957, - "y": 55.1987 - }, - { - "l": "98.0", - "x": 13.179, - "y": 55.2417 - }, - { - "l": "98.0", - "x": 13.2623, - "y": 55.2906 - }, - { - "l": "98.0", - "x": 13.3457, - "y": 55.3386 - }, - { - "l": "98.0", - "x": 13.429, - "y": 55.3827 - }, - { - "l": "98.0", - "x": 13.5123, - "y": 55.4323 - }, - { - "l": "98.0", - "x": 13.5957, - "y": 55.4805 - }, - { - "l": "98.0", - "x": 13.679, - "y": 55.5245 - }, - { - "l": "98.0", - "x": 13.7623, - "y": 55.5735 - }, - { - "l": "98.0", - "x": 13.8457, - "y": 55.6206 - }, - { - "l": "98.0", - "x": 13.929, - "y": 55.6635 - }, - { - "l": "98.0", - "x": 14.0123, - "y": 55.7106 - }, - { - "l": "98.0", - "x": 14.0957, - "y": 55.7559 - }, - { - "l": "98.0", - "x": 14.179, - "y": 55.7964 - }, - { - "l": "98.0", - "x": 14.2623, - "y": 55.841 - }, - { - "l": "98.0", - "x": 14.3457, - "y": 55.8834 - }, - { - "l": "98.0", - "x": 14.429, - "y": 55.9214 - }, - { - "l": "98.0", - "x": 14.5123, - "y": 55.9631 - }, - { - "l": "98.0", - "x": 14.5957, - "y": 56.0027 - }, - { - "l": "98.0", - "x": 14.679, - "y": 56.038 - }, - { - "l": "98.0", - "x": 14.7623, - "y": 56.0764 - }, - { - "l": "98.0", - "x": 14.8457, - "y": 56.1126 - }, - { - "l": "98.0", - "x": 14.929, - "y": 56.1452 - }, - { - "l": "98.0", - "x": 15.0123, - "y": 56.1798 - }, - { - "l": "98.0", - "x": 15.0957, - "y": 56.2131 - }, - { - "l": "98.0", - "x": 15.179, - "y": 56.243 - }, - { - "l": "98.0", - "x": 15.2623, - "y": 56.2749 - }, - { - "l": "98.0", - "x": 15.3457, - "y": 56.3044 - }, - { - "l": "98.0", - "x": 15.429, - "y": 56.3305 - }, - { - "l": "98.0", - "x": 15.5123, - "y": 56.3596 - }, - { - "l": "98.0", - "x": 15.5957, - "y": 56.3865 - }, - { - "l": "98.0", - "x": 15.679, - "y": 56.4097 - }, - { - "l": "98.0", - "x": 15.7623, - "y": 56.4346 - }, - { - "l": "98.0", - "x": 15.8457, - "y": 56.4579 - }, - { - "l": "98.0", - "x": 15.929, - "y": 56.4779 - }, - { - "l": "98.0", - "x": 16.0123, - "y": 56.4989 - }, - { - "l": "98.0", - "x": 16.0957, - "y": 56.5185 - }, - { - "l": "98.0", - "x": 16.179, - "y": 56.5347 - }, - { - "l": "98.0", - "x": 16.2623, - "y": 56.5525 - }, - { - "l": "98.0", - "x": 16.3457, - "y": 56.5684 - }, - { - "l": "98.0", - "x": 16.429, - "y": 56.5819 - }, - { - "l": "98.0", - "x": 16.5123, - "y": 56.5958 - }, - { - "l": "98.0", - "x": 16.5957, - "y": 56.6081 - }, - { - "l": "98.0", - "x": 16.679, - "y": 56.6189 - }, - { - "l": "98.0", - "x": 16.7623, - "y": 56.6293 - }, - { - "l": "98.0", - "x": 16.8457, - "y": 56.6386 - }, - { - "l": "98.0", - "x": 16.929, - "y": 56.646 - }, - { - "l": "98.0", - "x": 17.0123, - "y": 56.654 - }, - { - "l": "98.0", - "x": 17.0957, - "y": 56.6595 - }, - { - "l": "98.0", - "x": 17.179, - "y": 56.6646 - }, - { - "l": "98.0", - "x": 17.2623, - "y": 56.6699 - }, - { - "l": "98.0", - "x": 17.3457, - "y": 56.673 - }, - { - "l": "98.0", - "x": 17.429, - "y": 56.6749 - }, - { - "l": "98.0", - "x": 17.5123, - "y": 56.6771 - }, - { - "l": "98.0", - "x": 17.5957, - "y": 56.6792 - }, - { - "l": "98.0", - "x": 17.679, - "y": 56.6811 - }, - { - "l": "98.0", - "x": 17.7623, - "y": 56.6834 - }, - { - "l": "98.0", - "x": 17.8457, - "y": 56.6852 - }, - { - "l": "98.0", - "x": 17.929, - "y": 56.6855 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 0.0, - "y": 37.1096 - }, - { - "l": "99.6", - "x": 0.0192, - "y": 37.5549 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 37.9996 - }, - { - "l": "99.6", - "x": 0.0575, - "y": 38.4438 - }, - { - "l": "99.6", - "x": 0.0767, - "y": 38.8873 - }, - { - "l": "99.6", - "x": 0.0958, - "y": 39.2865 - }, - { - "l": "99.6", - "x": 0.115, - "y": 39.6636 - }, - { - "l": "99.6", - "x": 0.1342, - "y": 40.0301 - }, - { - "l": "99.6", - "x": 0.1533, - "y": 40.3899 - }, - { - "l": "99.6", - "x": 0.1725, - "y": 40.7495 - }, - { - "l": "99.6", - "x": 0.1916, - "y": 41.1266 - }, - { - "l": "99.6", - "x": 0.2108, - "y": 41.4994 - }, - { - "l": "99.6", - "x": 0.23, - "y": 41.865 - }, - { - "l": "99.6", - "x": 0.2491, - "y": 42.2206 - }, - { - "l": "99.6", - "x": 0.2683, - "y": 42.5589 - }, - { - "l": "99.6", - "x": 0.2875, - "y": 42.8827 - }, - { - "l": "99.6", - "x": 0.3066, - "y": 43.1907 - }, - { - "l": "99.6", - "x": 0.3258, - "y": 43.4817 - }, - { - "l": "99.6", - "x": 0.345, - "y": 43.7431 - }, - { - "l": "99.6", - "x": 0.3641, - "y": 43.9844 - }, - { - "l": "99.6", - "x": 0.3833, - "y": 44.212 - }, - { - "l": "99.6", - "x": 0.4025, - "y": 44.4291 - }, - { - "l": "99.6", - "x": 0.4216, - "y": 44.6401 - }, - { - "l": "99.6", - "x": 0.4408, - "y": 44.8586 - }, - { - "l": "99.6", - "x": 0.46, - "y": 45.0706 - }, - { - "l": "99.6", - "x": 0.4791, - "y": 45.2746 - }, - { - "l": "99.6", - "x": 0.4983, - "y": 45.4695 - }, - { - "l": "99.6", - "x": 0.5175, - "y": 45.6508 - }, - { - "l": "99.6", - "x": 0.5366, - "y": 45.8212 - }, - { - "l": "99.6", - "x": 0.5558, - "y": 45.9811 - }, - { - "l": "99.6", - "x": 0.5749, - "y": 46.1304 - }, - { - "l": "99.6", - "x": 0.5941, - "y": 46.2641 - }, - { - "l": "99.6", - "x": 0.6133, - "y": 46.3867 - }, - { - "l": "99.6", - "x": 0.6324, - "y": 46.5017 - }, - { - "l": "99.6", - "x": 0.6516, - "y": 46.6113 - }, - { - "l": "99.6", - "x": 0.6708, - "y": 46.7177 - }, - { - "l": "99.6", - "x": 0.6899, - "y": 46.8298 - }, - { - "l": "99.6", - "x": 0.7091, - "y": 46.9393 - }, - { - "l": "99.6", - "x": 0.7283, - "y": 47.0459 - }, - { - "l": "99.6", - "x": 0.7474, - "y": 47.1491 - }, - { - "l": "99.6", - "x": 0.7666, - "y": 47.2477 - }, - { - "l": "99.6", - "x": 0.7858, - "y": 47.342 - }, - { - "l": "99.6", - "x": 0.8049, - "y": 47.4321 - }, - { - "l": "99.6", - "x": 0.8241, - "y": 47.5177 - }, - { - "l": "99.6", - "x": 0.8433, - "y": 47.5959 - }, - { - "l": "99.6", - "x": 0.8624, - "y": 47.6686 - }, - { - "l": "99.6", - "x": 0.8816, - "y": 47.7383 - }, - { - "l": "99.6", - "x": 0.9008, - "y": 47.8061 - }, - { - "l": "99.6", - "x": 0.9199, - "y": 47.8731 - }, - { - "l": "99.6", - "x": 0.9391, - "y": 47.9449 - }, - { - "l": "99.6", - "x": 0.9582, - "y": 48.0164 - }, - { - "l": "99.6", - "x": 0.9774, - "y": 48.087 - }, - { - "l": "99.6", - "x": 0.9966, - "y": 48.1564 - }, - { - "l": "99.6", - "x": 1.0157, - "y": 48.2236 - }, - { - "l": "99.6", - "x": 1.0349, - "y": 48.2889 - }, - { - "l": "99.6", - "x": 1.0541, - "y": 48.352 - }, - { - "l": "99.6", - "x": 1.0732, - "y": 48.4128 - }, - { - "l": "99.6", - "x": 1.0924, - "y": 48.469 - }, - { - "l": "99.6", - "x": 1.1116, - "y": 48.5218 - }, - { - "l": "99.6", - "x": 1.1307, - "y": 48.573 - }, - { - "l": "99.6", - "x": 1.1499, - "y": 48.6232 - }, - { - "l": "99.6", - "x": 1.1691, - "y": 48.6732 - }, - { - "l": "99.6", - "x": 1.1882, - "y": 48.7268 - }, - { - "l": "99.6", - "x": 1.2074, - "y": 48.7805 - }, - { - "l": "99.6", - "x": 1.2266, - "y": 48.8339 - }, - { - "l": "99.6", - "x": 1.2457, - "y": 48.8866 - }, - { - "l": "99.6", - "x": 1.2649, - "y": 48.9382 - }, - { - "l": "99.6", - "x": 1.2841, - "y": 48.9884 - }, - { - "l": "99.6", - "x": 1.3032, - "y": 49.0372 - }, - { - "l": "99.6", - "x": 1.3224, - "y": 49.0842 - }, - { - "l": "99.6", - "x": 1.3415, - "y": 49.1278 - }, - { - "l": "99.6", - "x": 1.3607, - "y": 49.1685 - }, - { - "l": "99.6", - "x": 1.3799, - "y": 49.2078 - }, - { - "l": "99.6", - "x": 1.399, - "y": 49.2464 - }, - { - "l": "99.6", - "x": 1.4182, - "y": 49.2847 - }, - { - "l": "99.6", - "x": 1.4374, - "y": 49.3254 - }, - { - "l": "99.6", - "x": 1.4565, - "y": 49.3663 - }, - { - "l": "99.6", - "x": 1.4757, - "y": 49.4069 - }, - { - "l": "99.6", - "x": 1.4949, - "y": 49.447 - }, - { - "l": "99.6", - "x": 1.514, - "y": 49.4862 - }, - { - "l": "99.6", - "x": 1.5332, - "y": 49.5244 - }, - { - "l": "99.6", - "x": 1.5524, - "y": 49.5616 - }, - { - "l": "99.6", - "x": 1.5715, - "y": 49.5975 - }, - { - "l": "99.6", - "x": 1.5907, - "y": 49.631 - }, - { - "l": "99.6", - "x": 1.6099, - "y": 49.6623 - }, - { - "l": "99.6", - "x": 1.629, - "y": 49.6927 - }, - { - "l": "99.6", - "x": 1.6482, - "y": 49.7227 - }, - { - "l": "99.6", - "x": 1.6674, - "y": 49.7527 - }, - { - "l": "99.6", - "x": 1.6865, - "y": 49.7847 - }, - { - "l": "99.6", - "x": 1.7057, - "y": 49.8172 - }, - { - "l": "99.6", - "x": 1.7248, - "y": 49.8497 - }, - { - "l": "99.6", - "x": 1.744, - "y": 49.882 - }, - { - "l": "99.6", - "x": 1.7632, - "y": 49.9141 - }, - { - "l": "99.6", - "x": 1.7823, - "y": 49.9456 - }, - { - "l": "99.6", - "x": 1.8015, - "y": 49.9765 - }, - { - "l": "99.6", - "x": 1.8207, - "y": 50.0067 - }, - { - "l": "99.6", - "x": 1.8398, - "y": 50.0353 - }, - { - "l": "99.6", - "x": 1.859, - "y": 50.0622 - }, - { - "l": "99.6", - "x": 1.8782, - "y": 50.0887 - }, - { - "l": "99.6", - "x": 1.8973, - "y": 50.1151 - }, - { - "l": "99.6", - "x": 1.9165, - "y": 50.1417 - }, - { - "l": "99.6", - "x": 1.9357, - "y": 50.1704 - }, - { - "l": "99.6", - "x": 1.9548, - "y": 50.1998 - }, - { - "l": "99.6", - "x": 1.974, - "y": 50.2296 - }, - { - "l": "99.6", - "x": 1.9932, - "y": 50.2595 - }, - { - "l": "99.6", - "x": 2.0123, - "y": 50.2894 - }, - { - "l": "99.6", - "x": 2.0957, - "y": 50.4137 - }, - { - "l": "99.6", - "x": 2.179, - "y": 50.5263 - }, - { - "l": "99.6", - "x": 2.2623, - "y": 50.6502 - }, - { - "l": "99.6", - "x": 2.3457, - "y": 50.7677 - }, - { - "l": "99.6", - "x": 2.429, - "y": 50.8715 - }, - { - "l": "99.6", - "x": 2.5123, - "y": 50.9834 - }, - { - "l": "99.6", - "x": 2.5957, - "y": 51.0872 - }, - { - "l": "99.6", - "x": 2.679, - "y": 51.1772 - }, - { - "l": "99.6", - "x": 2.7623, - "y": 51.2726 - }, - { - "l": "99.6", - "x": 2.8457, - "y": 51.3595 - }, - { - "l": "99.6", - "x": 2.929, - "y": 51.4336 - }, - { - "l": "99.6", - "x": 3.0123, - "y": 51.511 - }, - { - "l": "99.6", - "x": 3.0957, - "y": 51.5808 - }, - { - "l": "99.6", - "x": 3.179, - "y": 51.64 - }, - { - "l": "99.6", - "x": 3.2623, - "y": 51.702 - }, - { - "l": "99.6", - "x": 3.3457, - "y": 51.7581 - }, - { - "l": "99.6", - "x": 3.429, - "y": 51.806 - }, - { - "l": "99.6", - "x": 3.5123, - "y": 51.8562 - }, - { - "l": "99.6", - "x": 3.5957, - "y": 51.9021 - }, - { - "l": "99.6", - "x": 3.679, - "y": 51.9415 - }, - { - "l": "99.6", - "x": 3.7623, - "y": 51.9835 - }, - { - "l": "99.6", - "x": 3.8457, - "y": 52.0225 - }, - { - "l": "99.6", - "x": 3.929, - "y": 52.0568 - }, - { - "l": "99.6", - "x": 4.0123, - "y": 52.0942 - }, - { - "l": "99.6", - "x": 4.0957, - "y": 52.1298 - }, - { - "l": "99.6", - "x": 4.179, - "y": 52.1623 - }, - { - "l": "99.6", - "x": 4.2623, - "y": 52.199 - }, - { - "l": "99.6", - "x": 4.3457, - "y": 52.2352 - }, - { - "l": "99.6", - "x": 4.429, - "y": 52.2689 - }, - { - "l": "99.6", - "x": 4.5123, - "y": 52.3074 - }, - { - "l": "99.6", - "x": 4.5957, - "y": 52.3458 - }, - { - "l": "99.6", - "x": 4.679, - "y": 52.3818 - }, - { - "l": "99.6", - "x": 4.7623, - "y": 52.4231 - }, - { - "l": "99.6", - "x": 4.8457, - "y": 52.464 - }, - { - "l": "99.6", - "x": 4.929, - "y": 52.502 - }, - { - "l": "99.6", - "x": 5.0123, - "y": 52.5452 - }, - { - "l": "99.6", - "x": 5.0957, - "y": 52.5875 - }, - { - "l": "99.6", - "x": 5.179, - "y": 52.6265 - }, - { - "l": "99.6", - "x": 5.2623, - "y": 52.6705 - }, - { - "l": "99.6", - "x": 5.3457, - "y": 52.7133 - }, - { - "l": "99.6", - "x": 5.429, - "y": 52.7524 - }, - { - "l": "99.6", - "x": 5.5123, - "y": 52.7961 - }, - { - "l": "99.6", - "x": 5.5957, - "y": 52.8384 - }, - { - "l": "99.6", - "x": 5.679, - "y": 52.8768 - }, - { - "l": "99.6", - "x": 5.7623, - "y": 52.9195 - }, - { - "l": "99.6", - "x": 5.8457, - "y": 52.9608 - }, - { - "l": "99.6", - "x": 5.929, - "y": 52.9985 - }, - { - "l": "99.6", - "x": 6.0123, - "y": 53.0405 - }, - { - "l": "99.6", - "x": 6.0957, - "y": 53.0812 - }, - { - "l": "99.6", - "x": 6.179, - "y": 53.1183 - }, - { - "l": "99.6", - "x": 6.2623, - "y": 53.1596 - }, - { - "l": "99.6", - "x": 6.3457, - "y": 53.1996 - }, - { - "l": "99.6", - "x": 6.429, - "y": 53.236 - }, - { - "l": "99.6", - "x": 6.5123, - "y": 53.2766 - }, - { - "l": "99.6", - "x": 6.5957, - "y": 53.3158 - }, - { - "l": "99.6", - "x": 6.679, - "y": 53.3516 - }, - { - "l": "99.6", - "x": 6.7623, - "y": 53.3916 - }, - { - "l": "99.6", - "x": 6.8457, - "y": 53.4303 - }, - { - "l": "99.6", - "x": 6.929, - "y": 53.4656 - }, - { - "l": "99.6", - "x": 7.0123, - "y": 53.505 - }, - { - "l": "99.6", - "x": 7.0957, - "y": 53.5433 - }, - { - "l": "99.6", - "x": 7.179, - "y": 53.578 - }, - { - "l": "99.6", - "x": 7.2623, - "y": 53.6169 - }, - { - "l": "99.6", - "x": 7.3457, - "y": 53.6545 - }, - { - "l": "99.6", - "x": 7.429, - "y": 53.6887 - }, - { - "l": "99.6", - "x": 7.5123, - "y": 53.7268 - }, - { - "l": "99.6", - "x": 7.5957, - "y": 53.7636 - }, - { - "l": "99.6", - "x": 7.679, - "y": 53.7972 - }, - { - "l": "99.6", - "x": 7.7623, - "y": 53.8348 - }, - { - "l": "99.6", - "x": 7.8457, - "y": 53.8712 - }, - { - "l": "99.6", - "x": 7.929, - "y": 53.9045 - }, - { - "l": "99.6", - "x": 8.0123, - "y": 53.9418 - }, - { - "l": "99.6", - "x": 8.0957, - "y": 53.9778 - }, - { - "l": "99.6", - "x": 8.179, - "y": 54.0106 - }, - { - "l": "99.6", - "x": 8.2623, - "y": 54.0471 - }, - { - "l": "99.6", - "x": 8.3457, - "y": 54.0824 - }, - { - "l": "99.6", - "x": 8.429, - "y": 54.1143 - }, - { - "l": "99.6", - "x": 8.5123, - "y": 54.1499 - }, - { - "l": "99.6", - "x": 8.5957, - "y": 54.1842 - }, - { - "l": "99.6", - "x": 8.679, - "y": 54.2154 - }, - { - "l": "99.6", - "x": 8.7623, - "y": 54.2502 - }, - { - "l": "99.6", - "x": 8.8457, - "y": 54.284 - }, - { - "l": "99.6", - "x": 8.929, - "y": 54.3148 - }, - { - "l": "99.6", - "x": 9.0123, - "y": 54.3494 - }, - { - "l": "99.6", - "x": 9.0957, - "y": 54.3831 - }, - { - "l": "99.6", - "x": 9.179, - "y": 54.414 - }, - { - "l": "99.6", - "x": 9.2623, - "y": 54.4487 - }, - { - "l": "99.6", - "x": 9.3457, - "y": 54.4826 - }, - { - "l": "99.6", - "x": 9.429, - "y": 54.5139 - }, - { - "l": "99.6", - "x": 9.5123, - "y": 54.5491 - }, - { - "l": "99.6", - "x": 9.5957, - "y": 54.5838 - }, - { - "l": "99.6", - "x": 9.679, - "y": 54.616 - }, - { - "l": "99.6", - "x": 9.7623, - "y": 54.653 - }, - { - "l": "99.6", - "x": 9.8457, - "y": 54.6891 - }, - { - "l": "99.6", - "x": 9.929, - "y": 54.7221 - }, - { - "l": "99.6", - "x": 10.0123, - "y": 54.7595 - }, - { - "l": "99.6", - "x": 10.0957, - "y": 54.7968 - }, - { - "l": "99.6", - "x": 10.179, - "y": 54.8313 - }, - { - "l": "99.6", - "x": 10.2623, - "y": 54.8709 - }, - { - "l": "99.6", - "x": 10.3457, - "y": 54.9095 - }, - { - "l": "99.6", - "x": 10.429, - "y": 54.9449 - }, - { - "l": "99.6", - "x": 10.5123, - "y": 54.985 - }, - { - "l": "99.6", - "x": 10.5957, - "y": 55.0249 - }, - { - "l": "99.6", - "x": 10.679, - "y": 55.0618 - }, - { - "l": "99.6", - "x": 10.7623, - "y": 55.1036 - }, - { - "l": "99.6", - "x": 10.8457, - "y": 55.1444 - }, - { - "l": "99.6", - "x": 10.929, - "y": 55.1821 - }, - { - "l": "99.6", - "x": 11.0123, - "y": 55.2246 - }, - { - "l": "99.6", - "x": 11.0957, - "y": 55.266 - }, - { - "l": "99.6", - "x": 11.179, - "y": 55.3039 - }, - { - "l": "99.6", - "x": 11.2623, - "y": 55.3464 - }, - { - "l": "99.6", - "x": 11.3457, - "y": 55.3877 - }, - { - "l": "99.6", - "x": 11.429, - "y": 55.4254 - }, - { - "l": "99.6", - "x": 11.5123, - "y": 55.4678 - }, - { - "l": "99.6", - "x": 11.5957, - "y": 55.5089 - }, - { - "l": "99.6", - "x": 11.679, - "y": 55.5465 - }, - { - "l": "99.6", - "x": 11.7623, - "y": 55.5887 - }, - { - "l": "99.6", - "x": 11.8457, - "y": 55.6297 - }, - { - "l": "99.6", - "x": 11.929, - "y": 55.6674 - }, - { - "l": "99.6", - "x": 12.0123, - "y": 55.7099 - }, - { - "l": "99.6", - "x": 12.0957, - "y": 55.7516 - }, - { - "l": "99.6", - "x": 12.179, - "y": 55.79 - }, - { - "l": "99.6", - "x": 12.2623, - "y": 55.8336 - }, - { - "l": "99.6", - "x": 12.3457, - "y": 55.8768 - }, - { - "l": "99.6", - "x": 12.429, - "y": 55.9169 - }, - { - "l": "99.6", - "x": 12.5123, - "y": 55.962 - }, - { - "l": "99.6", - "x": 12.5957, - "y": 56.0066 - }, - { - "l": "99.6", - "x": 12.679, - "y": 56.0486 - }, - { - "l": "99.6", - "x": 12.7623, - "y": 56.0958 - }, - { - "l": "99.6", - "x": 12.8457, - "y": 56.1418 - }, - { - "l": "99.6", - "x": 12.929, - "y": 56.1846 - }, - { - "l": "99.6", - "x": 13.0123, - "y": 56.2335 - }, - { - "l": "99.6", - "x": 13.0957, - "y": 56.2811 - }, - { - "l": "99.6", - "x": 13.179, - "y": 56.3249 - }, - { - "l": "99.6", - "x": 13.2623, - "y": 56.3747 - }, - { - "l": "99.6", - "x": 13.3457, - "y": 56.4235 - }, - { - "l": "99.6", - "x": 13.429, - "y": 56.4684 - }, - { - "l": "99.6", - "x": 13.5123, - "y": 56.5189 - }, - { - "l": "99.6", - "x": 13.5957, - "y": 56.568 - }, - { - "l": "99.6", - "x": 13.679, - "y": 56.6128 - }, - { - "l": "99.6", - "x": 13.7623, - "y": 56.6627 - }, - { - "l": "99.6", - "x": 13.8457, - "y": 56.7107 - }, - { - "l": "99.6", - "x": 13.929, - "y": 56.7543 - }, - { - "l": "99.6", - "x": 14.0123, - "y": 56.8023 - }, - { - "l": "99.6", - "x": 14.0957, - "y": 56.8484 - }, - { - "l": "99.6", - "x": 14.179, - "y": 56.8896 - }, - { - "l": "99.6", - "x": 14.2623, - "y": 56.935 - }, - { - "l": "99.6", - "x": 14.3457, - "y": 56.9782 - }, - { - "l": "99.6", - "x": 14.429, - "y": 57.0169 - }, - { - "l": "99.6", - "x": 14.5123, - "y": 57.0594 - }, - { - "l": "99.6", - "x": 14.5957, - "y": 57.0998 - }, - { - "l": "99.6", - "x": 14.679, - "y": 57.1357 - }, - { - "l": "99.6", - "x": 14.7623, - "y": 57.1748 - }, - { - "l": "99.6", - "x": 14.8457, - "y": 57.2117 - }, - { - "l": "99.6", - "x": 14.929, - "y": 57.2449 - }, - { - "l": "99.6", - "x": 15.0123, - "y": 57.2801 - }, - { - "l": "99.6", - "x": 15.0957, - "y": 57.3141 - }, - { - "l": "99.6", - "x": 15.179, - "y": 57.3445 - }, - { - "l": "99.6", - "x": 15.2623, - "y": 57.377 - }, - { - "l": "99.6", - "x": 15.3457, - "y": 57.407 - }, - { - "l": "99.6", - "x": 15.429, - "y": 57.4336 - }, - { - "l": "99.6", - "x": 15.5123, - "y": 57.4632 - }, - { - "l": "99.6", - "x": 15.5957, - "y": 57.4907 - }, - { - "l": "99.6", - "x": 15.679, - "y": 57.5143 - }, - { - "l": "99.6", - "x": 15.7623, - "y": 57.5397 - }, - { - "l": "99.6", - "x": 15.8457, - "y": 57.5634 - }, - { - "l": "99.6", - "x": 15.929, - "y": 57.5837 - }, - { - "l": "99.6", - "x": 16.0123, - "y": 57.6051 - }, - { - "l": "99.6", - "x": 16.0957, - "y": 57.6251 - }, - { - "l": "99.6", - "x": 16.179, - "y": 57.6416 - }, - { - "l": "99.6", - "x": 16.2623, - "y": 57.6597 - }, - { - "l": "99.6", - "x": 16.3457, - "y": 57.6759 - }, - { - "l": "99.6", - "x": 16.429, - "y": 57.6896 - }, - { - "l": "99.6", - "x": 16.5123, - "y": 57.7039 - }, - { - "l": "99.6", - "x": 16.5957, - "y": 57.7164 - }, - { - "l": "99.6", - "x": 16.679, - "y": 57.7273 - }, - { - "l": "99.6", - "x": 16.7623, - "y": 57.738 - }, - { - "l": "99.6", - "x": 16.8457, - "y": 57.7474 - }, - { - "l": "99.6", - "x": 16.929, - "y": 57.7549 - }, - { - "l": "99.6", - "x": 17.0123, - "y": 57.763 - }, - { - "l": "99.6", - "x": 17.0957, - "y": 57.7687 - }, - { - "l": "99.6", - "x": 17.179, - "y": 57.7738 - }, - { - "l": "99.6", - "x": 17.2623, - "y": 57.7793 - }, - { - "l": "99.6", - "x": 17.3457, - "y": 57.7824 - }, - { - "l": "99.6", - "x": 17.429, - "y": 57.7844 - }, - { - "l": "99.6", - "x": 17.5123, - "y": 57.7866 - }, - { - "l": "99.6", - "x": 17.5957, - "y": 57.7888 - }, - { - "l": "99.6", - "x": 17.679, - "y": 57.7907 - }, - { - "l": "99.6", - "x": 17.7623, - "y": 57.793 - }, - { - "l": "99.6", - "x": 17.8457, - "y": 57.7949 - }, - { - "l": "99.6", - "x": 17.929, - "y": 57.7952 - } - ] - } - ], - "bmi": null - }, - "female": null - } - } - ] -}; - -var trisomy21OFCFemaleCentileData = { - "centile_data": [ - { - "trisomy-21": { - "male": null, - "female": { - "height": null, - "weight": null, - "ofc": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 0.0, - "y": 29.515 - }, - { - "l": "0.4", - "x": 0.0192, - "y": 29.8951 - }, - { - "l": "0.4", - "x": 0.0383, - "y": 30.2758 - }, - { - "l": "0.4", - "x": 0.0575, - "y": 30.6572 - }, - { - "l": "0.4", - "x": 0.0767, - "y": 31.0391 - }, - { - "l": "0.4", - "x": 0.0958, - "y": 31.3839 - }, - { - "l": "0.4", - "x": 0.115, - "y": 31.7109 - }, - { - "l": "0.4", - "x": 0.1342, - "y": 32.0301 - }, - { - "l": "0.4", - "x": 0.1533, - "y": 32.3449 - }, - { - "l": "0.4", - "x": 0.1725, - "y": 32.6614 - }, - { - "l": "0.4", - "x": 0.1916, - "y": 32.9952 - }, - { - "l": "0.4", - "x": 0.2108, - "y": 33.3275 - }, - { - "l": "0.4", - "x": 0.23, - "y": 33.6557 - }, - { - "l": "0.4", - "x": 0.2491, - "y": 33.9775 - }, - { - "l": "0.4", - "x": 0.2683, - "y": 34.2877 - }, - { - "l": "0.4", - "x": 0.2875, - "y": 34.5873 - }, - { - "l": "0.4", - "x": 0.3066, - "y": 34.8752 - }, - { - "l": "0.4", - "x": 0.3258, - "y": 35.1498 - }, - { - "l": "0.4", - "x": 0.345, - "y": 35.399 - }, - { - "l": "0.4", - "x": 0.3641, - "y": 35.6316 - }, - { - "l": "0.4", - "x": 0.3833, - "y": 35.8535 - }, - { - "l": "0.4", - "x": 0.4025, - "y": 36.0676 - }, - { - "l": "0.4", - "x": 0.4216, - "y": 36.2779 - }, - { - "l": "0.4", - "x": 0.4408, - "y": 36.4978 - }, - { - "l": "0.4", - "x": 0.46, - "y": 36.713 - }, - { - "l": "0.4", - "x": 0.4791, - "y": 36.922 - }, - { - "l": "0.4", - "x": 0.4983, - "y": 37.1231 - }, - { - "l": "0.4", - "x": 0.5175, - "y": 37.3118 - }, - { - "l": "0.4", - "x": 0.5366, - "y": 37.4904 - }, - { - "l": "0.4", - "x": 0.5558, - "y": 37.6588 - }, - { - "l": "0.4", - "x": 0.5749, - "y": 37.8168 - }, - { - "l": "0.4", - "x": 0.5941, - "y": 37.9583 - }, - { - "l": "0.4", - "x": 0.6133, - "y": 38.088 - }, - { - "l": "0.4", - "x": 0.6324, - "y": 38.2098 - }, - { - "l": "0.4", - "x": 0.6516, - "y": 38.3259 - }, - { - "l": "0.4", - "x": 0.6708, - "y": 38.4385 - }, - { - "l": "0.4", - "x": 0.6899, - "y": 38.5567 - }, - { - "l": "0.4", - "x": 0.7091, - "y": 38.6722 - }, - { - "l": "0.4", - "x": 0.7283, - "y": 38.7841 - }, - { - "l": "0.4", - "x": 0.7474, - "y": 38.892 - }, - { - "l": "0.4", - "x": 0.7666, - "y": 38.9943 - }, - { - "l": "0.4", - "x": 0.7858, - "y": 39.0916 - }, - { - "l": "0.4", - "x": 0.8049, - "y": 39.1838 - }, - { - "l": "0.4", - "x": 0.8241, - "y": 39.2709 - }, - { - "l": "0.4", - "x": 0.8433, - "y": 39.35 - }, - { - "l": "0.4", - "x": 0.8624, - "y": 39.4229 - }, - { - "l": "0.4", - "x": 0.8816, - "y": 39.492 - }, - { - "l": "0.4", - "x": 0.9008, - "y": 39.5584 - }, - { - "l": "0.4", - "x": 0.9199, - "y": 39.6232 - }, - { - "l": "0.4", - "x": 0.9391, - "y": 39.6917 - }, - { - "l": "0.4", - "x": 0.9582, - "y": 39.7591 - }, - { - "l": "0.4", - "x": 0.9774, - "y": 39.8249 - }, - { - "l": "0.4", - "x": 0.9966, - "y": 39.8888 - }, - { - "l": "0.4", - "x": 1.0157, - "y": 39.9498 - }, - { - "l": "0.4", - "x": 1.0349, - "y": 40.0083 - }, - { - "l": "0.4", - "x": 1.0541, - "y": 40.0641 - }, - { - "l": "0.4", - "x": 1.0732, - "y": 40.1173 - }, - { - "l": "0.4", - "x": 1.0924, - "y": 40.166 - }, - { - "l": "0.4", - "x": 1.1116, - "y": 40.2111 - }, - { - "l": "0.4", - "x": 1.1307, - "y": 40.2545 - }, - { - "l": "0.4", - "x": 1.1499, - "y": 40.2967 - }, - { - "l": "0.4", - "x": 1.1691, - "y": 40.3386 - }, - { - "l": "0.4", - "x": 1.1882, - "y": 40.3834 - }, - { - "l": "0.4", - "x": 1.2074, - "y": 40.4283 - }, - { - "l": "0.4", - "x": 1.2266, - "y": 40.473 - }, - { - "l": "0.4", - "x": 1.2457, - "y": 40.5173 - }, - { - "l": "0.4", - "x": 1.2649, - "y": 40.5609 - }, - { - "l": "0.4", - "x": 1.2841, - "y": 40.6038 - }, - { - "l": "0.4", - "x": 1.3032, - "y": 40.6456 - }, - { - "l": "0.4", - "x": 1.3224, - "y": 40.6863 - }, - { - "l": "0.4", - "x": 1.3415, - "y": 40.7243 - }, - { - "l": "0.4", - "x": 1.3607, - "y": 40.7603 - }, - { - "l": "0.4", - "x": 1.3799, - "y": 40.7954 - }, - { - "l": "0.4", - "x": 1.399, - "y": 40.8302 - }, - { - "l": "0.4", - "x": 1.4182, - "y": 40.8652 - }, - { - "l": "0.4", - "x": 1.4374, - "y": 40.9027 - }, - { - "l": "0.4", - "x": 1.4565, - "y": 40.9407 - }, - { - "l": "0.4", - "x": 1.4757, - "y": 40.9788 - }, - { - "l": "0.4", - "x": 1.4949, - "y": 41.0166 - }, - { - "l": "0.4", - "x": 1.514, - "y": 41.054 - }, - { - "l": "0.4", - "x": 1.5332, - "y": 41.0907 - }, - { - "l": "0.4", - "x": 1.5524, - "y": 41.1265 - }, - { - "l": "0.4", - "x": 1.5715, - "y": 41.1614 - }, - { - "l": "0.4", - "x": 1.5907, - "y": 41.194 - }, - { - "l": "0.4", - "x": 1.6099, - "y": 41.2247 - }, - { - "l": "0.4", - "x": 1.629, - "y": 41.2546 - }, - { - "l": "0.4", - "x": 1.6482, - "y": 41.2843 - }, - { - "l": "0.4", - "x": 1.6674, - "y": 41.3141 - }, - { - "l": "0.4", - "x": 1.6865, - "y": 41.3462 - }, - { - "l": "0.4", - "x": 1.7057, - "y": 41.3788 - }, - { - "l": "0.4", - "x": 1.7248, - "y": 41.4117 - }, - { - "l": "0.4", - "x": 1.744, - "y": 41.4445 - }, - { - "l": "0.4", - "x": 1.7632, - "y": 41.4771 - }, - { - "l": "0.4", - "x": 1.7823, - "y": 41.5092 - }, - { - "l": "0.4", - "x": 1.8015, - "y": 41.5409 - }, - { - "l": "0.4", - "x": 1.8207, - "y": 41.5719 - }, - { - "l": "0.4", - "x": 1.8398, - "y": 41.6011 - }, - { - "l": "0.4", - "x": 1.859, - "y": 41.6288 - }, - { - "l": "0.4", - "x": 1.8782, - "y": 41.6561 - }, - { - "l": "0.4", - "x": 1.8973, - "y": 41.6832 - }, - { - "l": "0.4", - "x": 1.9165, - "y": 41.7106 - }, - { - "l": "0.4", - "x": 1.9357, - "y": 41.7401 - }, - { - "l": "0.4", - "x": 1.9548, - "y": 41.7703 - }, - { - "l": "0.4", - "x": 1.974, - "y": 41.8007 - }, - { - "l": "0.4", - "x": 1.9932, - "y": 41.8313 - }, - { - "l": "0.4", - "x": 2.0123, - "y": 41.8617 - }, - { - "l": "0.4", - "x": 2.0957, - "y": 41.9869 - }, - { - "l": "0.4", - "x": 2.179, - "y": 42.0979 - }, - { - "l": "0.4", - "x": 2.2623, - "y": 42.2181 - }, - { - "l": "0.4", - "x": 2.3457, - "y": 42.331 - }, - { - "l": "0.4", - "x": 2.429, - "y": 42.4303 - }, - { - "l": "0.4", - "x": 2.5123, - "y": 42.538 - }, - { - "l": "0.4", - "x": 2.5957, - "y": 42.6392 - }, - { - "l": "0.4", - "x": 2.679, - "y": 42.7289 - }, - { - "l": "0.4", - "x": 2.7623, - "y": 42.8263 - }, - { - "l": "0.4", - "x": 2.8457, - "y": 42.9179 - }, - { - "l": "0.4", - "x": 2.929, - "y": 42.9988 - }, - { - "l": "0.4", - "x": 3.0123, - "y": 43.0865 - }, - { - "l": "0.4", - "x": 3.0957, - "y": 43.1686 - }, - { - "l": "0.4", - "x": 3.179, - "y": 43.2408 - }, - { - "l": "0.4", - "x": 3.2623, - "y": 43.319 - }, - { - "l": "0.4", - "x": 3.3457, - "y": 43.3921 - }, - { - "l": "0.4", - "x": 3.429, - "y": 43.4565 - }, - { - "l": "0.4", - "x": 3.5123, - "y": 43.5259 - }, - { - "l": "0.4", - "x": 3.5957, - "y": 43.5909 - }, - { - "l": "0.4", - "x": 3.679, - "y": 43.648 - }, - { - "l": "0.4", - "x": 3.7623, - "y": 43.7098 - }, - { - "l": "0.4", - "x": 3.8457, - "y": 43.7677 - }, - { - "l": "0.4", - "x": 3.929, - "y": 43.8188 - }, - { - "l": "0.4", - "x": 4.0123, - "y": 43.8741 - }, - { - "l": "0.4", - "x": 4.0957, - "y": 43.926 - }, - { - "l": "0.4", - "x": 4.179, - "y": 43.9719 - }, - { - "l": "0.4", - "x": 4.2623, - "y": 44.0216 - }, - { - "l": "0.4", - "x": 4.3457, - "y": 44.0684 - }, - { - "l": "0.4", - "x": 4.429, - "y": 44.1097 - }, - { - "l": "0.4", - "x": 4.5123, - "y": 44.1545 - }, - { - "l": "0.4", - "x": 4.5957, - "y": 44.1967 - }, - { - "l": "0.4", - "x": 4.679, - "y": 44.2339 - }, - { - "l": "0.4", - "x": 4.7623, - "y": 44.2743 - }, - { - "l": "0.4", - "x": 4.8457, - "y": 44.3123 - }, - { - "l": "0.4", - "x": 4.929, - "y": 44.3459 - }, - { - "l": "0.4", - "x": 5.0123, - "y": 44.3821 - }, - { - "l": "0.4", - "x": 5.0957, - "y": 44.4161 - }, - { - "l": "0.4", - "x": 5.179, - "y": 44.446 - }, - { - "l": "0.4", - "x": 5.2623, - "y": 44.4784 - }, - { - "l": "0.4", - "x": 5.3457, - "y": 44.5089 - }, - { - "l": "0.4", - "x": 5.429, - "y": 44.536 - }, - { - "l": "0.4", - "x": 5.5123, - "y": 44.5657 - }, - { - "l": "0.4", - "x": 5.5957, - "y": 44.5941 - }, - { - "l": "0.4", - "x": 5.679, - "y": 44.6196 - }, - { - "l": "0.4", - "x": 5.7623, - "y": 44.6478 - }, - { - "l": "0.4", - "x": 5.8457, - "y": 44.6748 - }, - { - "l": "0.4", - "x": 5.929, - "y": 44.6993 - }, - { - "l": "0.4", - "x": 6.0123, - "y": 44.7267 - }, - { - "l": "0.4", - "x": 6.0957, - "y": 44.7532 - }, - { - "l": "0.4", - "x": 6.179, - "y": 44.7774 - }, - { - "l": "0.4", - "x": 6.2623, - "y": 44.8047 - }, - { - "l": "0.4", - "x": 6.3457, - "y": 44.8314 - }, - { - "l": "0.4", - "x": 6.429, - "y": 44.8561 - }, - { - "l": "0.4", - "x": 6.5123, - "y": 44.8844 - }, - { - "l": "0.4", - "x": 6.5957, - "y": 44.9126 - }, - { - "l": "0.4", - "x": 6.679, - "y": 44.9391 - }, - { - "l": "0.4", - "x": 6.7623, - "y": 44.9698 - }, - { - "l": "0.4", - "x": 6.8457, - "y": 45.001 - }, - { - "l": "0.4", - "x": 6.929, - "y": 45.0307 - }, - { - "l": "0.4", - "x": 7.0123, - "y": 45.0652 - }, - { - "l": "0.4", - "x": 7.0957, - "y": 45.0995 - }, - { - "l": "0.4", - "x": 7.179, - "y": 45.1319 - }, - { - "l": "0.4", - "x": 7.2623, - "y": 45.1691 - }, - { - "l": "0.4", - "x": 7.3457, - "y": 45.2064 - }, - { - "l": "0.4", - "x": 7.429, - "y": 45.2413 - }, - { - "l": "0.4", - "x": 7.5123, - "y": 45.2811 - }, - { - "l": "0.4", - "x": 7.5957, - "y": 45.3206 - }, - { - "l": "0.4", - "x": 7.679, - "y": 45.357 - }, - { - "l": "0.4", - "x": 7.7623, - "y": 45.3984 - }, - { - "l": "0.4", - "x": 7.8457, - "y": 45.439 - }, - { - "l": "0.4", - "x": 7.929, - "y": 45.4764 - }, - { - "l": "0.4", - "x": 8.0123, - "y": 45.5184 - }, - { - "l": "0.4", - "x": 8.0957, - "y": 45.5593 - }, - { - "l": "0.4", - "x": 8.179, - "y": 45.5965 - }, - { - "l": "0.4", - "x": 8.2623, - "y": 45.6382 - }, - { - "l": "0.4", - "x": 8.3457, - "y": 45.6786 - }, - { - "l": "0.4", - "x": 8.429, - "y": 45.7152 - }, - { - "l": "0.4", - "x": 8.5123, - "y": 45.756 - }, - { - "l": "0.4", - "x": 8.5957, - "y": 45.7956 - }, - { - "l": "0.4", - "x": 8.679, - "y": 45.8316 - }, - { - "l": "0.4", - "x": 8.7623, - "y": 45.8719 - }, - { - "l": "0.4", - "x": 8.8457, - "y": 45.911 - }, - { - "l": "0.4", - "x": 8.929, - "y": 45.9467 - }, - { - "l": "0.4", - "x": 9.0123, - "y": 45.9869 - }, - { - "l": "0.4", - "x": 9.0957, - "y": 46.0261 - }, - { - "l": "0.4", - "x": 9.179, - "y": 46.0622 - }, - { - "l": "0.4", - "x": 9.2623, - "y": 46.1028 - }, - { - "l": "0.4", - "x": 9.3457, - "y": 46.1425 - }, - { - "l": "0.4", - "x": 9.429, - "y": 46.1788 - }, - { - "l": "0.4", - "x": 9.5123, - "y": 46.2195 - }, - { - "l": "0.4", - "x": 9.5957, - "y": 46.2589 - }, - { - "l": "0.4", - "x": 9.679, - "y": 46.2948 - }, - { - "l": "0.4", - "x": 9.7623, - "y": 46.3349 - }, - { - "l": "0.4", - "x": 9.8457, - "y": 46.3737 - }, - { - "l": "0.4", - "x": 9.929, - "y": 46.409 - }, - { - "l": "0.4", - "x": 10.0123, - "y": 46.4479 - }, - { - "l": "0.4", - "x": 10.0957, - "y": 46.4857 - }, - { - "l": "0.4", - "x": 10.179, - "y": 46.5203 - }, - { - "l": "0.4", - "x": 10.2623, - "y": 46.5591 - }, - { - "l": "0.4", - "x": 10.3457, - "y": 46.5963 - }, - { - "l": "0.4", - "x": 10.429, - "y": 46.6295 - }, - { - "l": "0.4", - "x": 10.5123, - "y": 46.6666 - }, - { - "l": "0.4", - "x": 10.5957, - "y": 46.7022 - }, - { - "l": "0.4", - "x": 10.679, - "y": 46.7342 - }, - { - "l": "0.4", - "x": 10.7623, - "y": 46.7696 - }, - { - "l": "0.4", - "x": 10.8457, - "y": 46.8036 - }, - { - "l": "0.4", - "x": 10.929, - "y": 46.8342 - }, - { - "l": "0.4", - "x": 11.0123, - "y": 46.8677 - }, - { - "l": "0.4", - "x": 11.0957, - "y": 46.9001 - }, - { - "l": "0.4", - "x": 11.179, - "y": 46.9296 - }, - { - "l": "0.4", - "x": 11.2623, - "y": 46.9623 - }, - { - "l": "0.4", - "x": 11.3457, - "y": 46.9934 - }, - { - "l": "0.4", - "x": 11.429, - "y": 47.0212 - }, - { - "l": "0.4", - "x": 11.5123, - "y": 47.0524 - }, - { - "l": "0.4", - "x": 11.5957, - "y": 47.0825 - }, - { - "l": "0.4", - "x": 11.679, - "y": 47.1095 - }, - { - "l": "0.4", - "x": 11.7623, - "y": 47.1397 - }, - { - "l": "0.4", - "x": 11.8457, - "y": 47.1686 - }, - { - "l": "0.4", - "x": 11.929, - "y": 47.1949 - }, - { - "l": "0.4", - "x": 12.0123, - "y": 47.223 - }, - { - "l": "0.4", - "x": 12.0957, - "y": 47.2505 - }, - { - "l": "0.4", - "x": 12.179, - "y": 47.2755 - }, - { - "l": "0.4", - "x": 12.2623, - "y": 47.3037 - }, - { - "l": "0.4", - "x": 12.3457, - "y": 47.3311 - }, - { - "l": "0.4", - "x": 12.429, - "y": 47.3561 - }, - { - "l": "0.4", - "x": 12.5123, - "y": 47.3831 - }, - { - "l": "0.4", - "x": 12.5957, - "y": 47.4082 - }, - { - "l": "0.4", - "x": 12.679, - "y": 47.4311 - }, - { - "l": "0.4", - "x": 12.7623, - "y": 47.4563 - }, - { - "l": "0.4", - "x": 12.8457, - "y": 47.4803 - }, - { - "l": "0.4", - "x": 12.929, - "y": 47.5018 - }, - { - "l": "0.4", - "x": 13.0123, - "y": 47.5252 - }, - { - "l": "0.4", - "x": 13.0957, - "y": 47.5478 - }, - { - "l": "0.4", - "x": 13.179, - "y": 47.5677 - }, - { - "l": "0.4", - "x": 13.2623, - "y": 47.5892 - }, - { - "l": "0.4", - "x": 13.3457, - "y": 47.6096 - }, - { - "l": "0.4", - "x": 13.429, - "y": 47.6281 - }, - { - "l": "0.4", - "x": 13.5123, - "y": 47.6479 - }, - { - "l": "0.4", - "x": 13.5957, - "y": 47.6662 - }, - { - "l": "0.4", - "x": 13.679, - "y": 47.6824 - }, - { - "l": "0.4", - "x": 13.7623, - "y": 47.6999 - }, - { - "l": "0.4", - "x": 13.8457, - "y": 47.716 - }, - { - "l": "0.4", - "x": 13.929, - "y": 47.7299 - }, - { - "l": "0.4", - "x": 14.0123, - "y": 47.7445 - }, - { - "l": "0.4", - "x": 14.0957, - "y": 47.7582 - }, - { - "l": "0.4", - "x": 14.179, - "y": 47.7697 - }, - { - "l": "0.4", - "x": 14.2623, - "y": 47.7817 - }, - { - "l": "0.4", - "x": 14.3457, - "y": 47.7927 - }, - { - "l": "0.4", - "x": 14.429, - "y": 47.8021 - }, - { - "l": "0.4", - "x": 14.5123, - "y": 47.8116 - }, - { - "l": "0.4", - "x": 14.5957, - "y": 47.8208 - }, - { - "l": "0.4", - "x": 14.679, - "y": 47.8286 - }, - { - "l": "0.4", - "x": 14.7623, - "y": 47.8366 - }, - { - "l": "0.4", - "x": 14.8457, - "y": 47.8436 - }, - { - "l": "0.4", - "x": 14.929, - "y": 47.8493 - }, - { - "l": "0.4", - "x": 15.0123, - "y": 47.8557 - }, - { - "l": "0.4", - "x": 15.0957, - "y": 47.8618 - }, - { - "l": "0.4", - "x": 15.179, - "y": 47.8666 - }, - { - "l": "0.4", - "x": 15.2623, - "y": 47.8717 - }, - { - "l": "0.4", - "x": 15.3457, - "y": 47.8762 - }, - { - "l": "0.4", - "x": 15.429, - "y": 47.88 - }, - { - "l": "0.4", - "x": 15.5123, - "y": 47.8841 - }, - { - "l": "0.4", - "x": 15.5957, - "y": 47.8881 - }, - { - "l": "0.4", - "x": 15.679, - "y": 47.8913 - }, - { - "l": "0.4", - "x": 15.7623, - "y": 47.8947 - }, - { - "l": "0.4", - "x": 15.8457, - "y": 47.8978 - }, - { - "l": "0.4", - "x": 15.929, - "y": 47.9005 - }, - { - "l": "0.4", - "x": 16.0123, - "y": 47.9031 - }, - { - "l": "0.4", - "x": 16.0957, - "y": 47.9054 - }, - { - "l": "0.4", - "x": 16.179, - "y": 47.9074 - }, - { - "l": "0.4", - "x": 16.2623, - "y": 47.9092 - }, - { - "l": "0.4", - "x": 16.3457, - "y": 47.9103 - }, - { - "l": "0.4", - "x": 16.429, - "y": 47.9111 - }, - { - "l": "0.4", - "x": 16.5123, - "y": 47.912 - }, - { - "l": "0.4", - "x": 16.5957, - "y": 47.9129 - }, - { - "l": "0.4", - "x": 16.679, - "y": 47.9136 - }, - { - "l": "0.4", - "x": 16.7623, - "y": 47.9139 - }, - { - "l": "0.4", - "x": 16.8457, - "y": 47.9146 - }, - { - "l": "0.4", - "x": 16.929, - "y": 47.9156 - }, - { - "l": "0.4", - "x": 17.0123, - "y": 47.9171 - }, - { - "l": "0.4", - "x": 17.0957, - "y": 47.9195 - }, - { - "l": "0.4", - "x": 17.179, - "y": 47.9216 - }, - { - "l": "0.4", - "x": 17.2623, - "y": 47.9241 - }, - { - "l": "0.4", - "x": 17.3457, - "y": 47.9268 - }, - { - "l": "0.4", - "x": 17.429, - "y": 47.93 - }, - { - "l": "0.4", - "x": 17.5123, - "y": 47.934 - }, - { - "l": "0.4", - "x": 17.5957, - "y": 47.9381 - }, - { - "l": "0.4", - "x": 17.679, - "y": 47.9419 - }, - { - "l": "0.4", - "x": 17.7623, - "y": 47.947 - }, - { - "l": "0.4", - "x": 17.8457, - "y": 47.952 - }, - { - "l": "0.4", - "x": 17.929, - "y": 47.9566 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 0.0, - "y": 30.3924 - }, - { - "l": "2.0", - "x": 0.0192, - "y": 30.7765 - }, - { - "l": "2.0", - "x": 0.0383, - "y": 31.1611 - }, - { - "l": "2.0", - "x": 0.0575, - "y": 31.5461 - }, - { - "l": "2.0", - "x": 0.0767, - "y": 31.9316 - }, - { - "l": "2.0", - "x": 0.0958, - "y": 32.2795 - }, - { - "l": "2.0", - "x": 0.115, - "y": 32.6091 - }, - { - "l": "2.0", - "x": 0.1342, - "y": 32.9308 - }, - { - "l": "2.0", - "x": 0.1533, - "y": 33.248 - }, - { - "l": "2.0", - "x": 0.1725, - "y": 33.5667 - }, - { - "l": "2.0", - "x": 0.1916, - "y": 33.9026 - }, - { - "l": "2.0", - "x": 0.2108, - "y": 34.2367 - }, - { - "l": "2.0", - "x": 0.23, - "y": 34.5666 - }, - { - "l": "2.0", - "x": 0.2491, - "y": 34.8899 - }, - { - "l": "2.0", - "x": 0.2683, - "y": 35.2012 - }, - { - "l": "2.0", - "x": 0.2875, - "y": 35.5018 - }, - { - "l": "2.0", - "x": 0.3066, - "y": 35.7903 - }, - { - "l": "2.0", - "x": 0.3258, - "y": 36.0654 - }, - { - "l": "2.0", - "x": 0.345, - "y": 36.3149 - }, - { - "l": "2.0", - "x": 0.3641, - "y": 36.5476 - }, - { - "l": "2.0", - "x": 0.3833, - "y": 36.7695 - }, - { - "l": "2.0", - "x": 0.4025, - "y": 36.9833 - }, - { - "l": "2.0", - "x": 0.4216, - "y": 37.1932 - }, - { - "l": "2.0", - "x": 0.4408, - "y": 37.4125 - }, - { - "l": "2.0", - "x": 0.46, - "y": 37.6269 - }, - { - "l": "2.0", - "x": 0.4791, - "y": 37.8349 - }, - { - "l": "2.0", - "x": 0.4983, - "y": 38.0349 - }, - { - "l": "2.0", - "x": 0.5175, - "y": 38.2223 - }, - { - "l": "2.0", - "x": 0.5366, - "y": 38.3995 - }, - { - "l": "2.0", - "x": 0.5558, - "y": 38.5665 - }, - { - "l": "2.0", - "x": 0.5749, - "y": 38.7229 - }, - { - "l": "2.0", - "x": 0.5941, - "y": 38.863 - }, - { - "l": "2.0", - "x": 0.6133, - "y": 38.9912 - }, - { - "l": "2.0", - "x": 0.6324, - "y": 39.1116 - }, - { - "l": "2.0", - "x": 0.6516, - "y": 39.2262 - }, - { - "l": "2.0", - "x": 0.6708, - "y": 39.3373 - }, - { - "l": "2.0", - "x": 0.6899, - "y": 39.4541 - }, - { - "l": "2.0", - "x": 0.7091, - "y": 39.5679 - }, - { - "l": "2.0", - "x": 0.7283, - "y": 39.6784 - }, - { - "l": "2.0", - "x": 0.7474, - "y": 39.7848 - }, - { - "l": "2.0", - "x": 0.7666, - "y": 39.8857 - }, - { - "l": "2.0", - "x": 0.7858, - "y": 39.9817 - }, - { - "l": "2.0", - "x": 0.8049, - "y": 40.0727 - }, - { - "l": "2.0", - "x": 0.8241, - "y": 40.1586 - }, - { - "l": "2.0", - "x": 0.8433, - "y": 40.2366 - }, - { - "l": "2.0", - "x": 0.8624, - "y": 40.3086 - }, - { - "l": "2.0", - "x": 0.8816, - "y": 40.3769 - }, - { - "l": "2.0", - "x": 0.9008, - "y": 40.4425 - }, - { - "l": "2.0", - "x": 0.9199, - "y": 40.5065 - }, - { - "l": "2.0", - "x": 0.9391, - "y": 40.5743 - }, - { - "l": "2.0", - "x": 0.9582, - "y": 40.6409 - }, - { - "l": "2.0", - "x": 0.9774, - "y": 40.706 - }, - { - "l": "2.0", - "x": 0.9966, - "y": 40.7692 - }, - { - "l": "2.0", - "x": 1.0157, - "y": 40.8296 - }, - { - "l": "2.0", - "x": 1.0349, - "y": 40.8874 - }, - { - "l": "2.0", - "x": 1.0541, - "y": 40.9427 - }, - { - "l": "2.0", - "x": 1.0732, - "y": 40.9954 - }, - { - "l": "2.0", - "x": 1.0924, - "y": 41.0436 - }, - { - "l": "2.0", - "x": 1.1116, - "y": 41.0884 - }, - { - "l": "2.0", - "x": 1.1307, - "y": 41.1314 - }, - { - "l": "2.0", - "x": 1.1499, - "y": 41.1733 - }, - { - "l": "2.0", - "x": 1.1691, - "y": 41.2149 - }, - { - "l": "2.0", - "x": 1.1882, - "y": 41.2594 - }, - { - "l": "2.0", - "x": 1.2074, - "y": 41.304 - }, - { - "l": "2.0", - "x": 1.2266, - "y": 41.3485 - }, - { - "l": "2.0", - "x": 1.2457, - "y": 41.3926 - }, - { - "l": "2.0", - "x": 1.2649, - "y": 41.4361 - }, - { - "l": "2.0", - "x": 1.2841, - "y": 41.4788 - }, - { - "l": "2.0", - "x": 1.3032, - "y": 41.5206 - }, - { - "l": "2.0", - "x": 1.3224, - "y": 41.5612 - }, - { - "l": "2.0", - "x": 1.3415, - "y": 41.5992 - }, - { - "l": "2.0", - "x": 1.3607, - "y": 41.6351 - }, - { - "l": "2.0", - "x": 1.3799, - "y": 41.6702 - }, - { - "l": "2.0", - "x": 1.399, - "y": 41.7051 - }, - { - "l": "2.0", - "x": 1.4182, - "y": 41.74 - }, - { - "l": "2.0", - "x": 1.4374, - "y": 41.7776 - }, - { - "l": "2.0", - "x": 1.4565, - "y": 41.8156 - }, - { - "l": "2.0", - "x": 1.4757, - "y": 41.8537 - }, - { - "l": "2.0", - "x": 1.4949, - "y": 41.8917 - }, - { - "l": "2.0", - "x": 1.514, - "y": 41.9291 - }, - { - "l": "2.0", - "x": 1.5332, - "y": 41.9658 - }, - { - "l": "2.0", - "x": 1.5524, - "y": 42.0017 - }, - { - "l": "2.0", - "x": 1.5715, - "y": 42.0366 - }, - { - "l": "2.0", - "x": 1.5907, - "y": 42.0693 - }, - { - "l": "2.0", - "x": 1.6099, - "y": 42.1 - }, - { - "l": "2.0", - "x": 1.629, - "y": 42.1299 - }, - { - "l": "2.0", - "x": 1.6482, - "y": 42.1596 - }, - { - "l": "2.0", - "x": 1.6674, - "y": 42.1895 - }, - { - "l": "2.0", - "x": 1.6865, - "y": 42.2215 - }, - { - "l": "2.0", - "x": 1.7057, - "y": 42.2542 - }, - { - "l": "2.0", - "x": 1.7248, - "y": 42.2871 - }, - { - "l": "2.0", - "x": 1.744, - "y": 42.3199 - }, - { - "l": "2.0", - "x": 1.7632, - "y": 42.3525 - }, - { - "l": "2.0", - "x": 1.7823, - "y": 42.3846 - }, - { - "l": "2.0", - "x": 1.8015, - "y": 42.4163 - }, - { - "l": "2.0", - "x": 1.8207, - "y": 42.4472 - }, - { - "l": "2.0", - "x": 1.8398, - "y": 42.4765 - }, - { - "l": "2.0", - "x": 1.859, - "y": 42.5042 - }, - { - "l": "2.0", - "x": 1.8782, - "y": 42.5314 - }, - { - "l": "2.0", - "x": 1.8973, - "y": 42.5586 - }, - { - "l": "2.0", - "x": 1.9165, - "y": 42.586 - }, - { - "l": "2.0", - "x": 1.9357, - "y": 42.6154 - }, - { - "l": "2.0", - "x": 1.9548, - "y": 42.6455 - }, - { - "l": "2.0", - "x": 1.974, - "y": 42.676 - }, - { - "l": "2.0", - "x": 1.9932, - "y": 42.7065 - }, - { - "l": "2.0", - "x": 2.0123, - "y": 42.7368 - }, - { - "l": "2.0", - "x": 2.0957, - "y": 42.8619 - }, - { - "l": "2.0", - "x": 2.179, - "y": 42.9727 - }, - { - "l": "2.0", - "x": 2.2623, - "y": 43.0927 - }, - { - "l": "2.0", - "x": 2.3457, - "y": 43.2053 - }, - { - "l": "2.0", - "x": 2.429, - "y": 43.3044 - }, - { - "l": "2.0", - "x": 2.5123, - "y": 43.412 - }, - { - "l": "2.0", - "x": 2.5957, - "y": 43.5131 - }, - { - "l": "2.0", - "x": 2.679, - "y": 43.6027 - }, - { - "l": "2.0", - "x": 2.7623, - "y": 43.7002 - }, - { - "l": "2.0", - "x": 2.8457, - "y": 43.7919 - }, - { - "l": "2.0", - "x": 2.929, - "y": 43.8729 - }, - { - "l": "2.0", - "x": 3.0123, - "y": 43.9607 - }, - { - "l": "2.0", - "x": 3.0957, - "y": 44.043 - }, - { - "l": "2.0", - "x": 3.179, - "y": 44.1154 - }, - { - "l": "2.0", - "x": 3.2623, - "y": 44.1938 - }, - { - "l": "2.0", - "x": 3.3457, - "y": 44.2672 - }, - { - "l": "2.0", - "x": 3.429, - "y": 44.3318 - }, - { - "l": "2.0", - "x": 3.5123, - "y": 44.4015 - }, - { - "l": "2.0", - "x": 3.5957, - "y": 44.4667 - }, - { - "l": "2.0", - "x": 3.679, - "y": 44.5241 - }, - { - "l": "2.0", - "x": 3.7623, - "y": 44.5861 - }, - { - "l": "2.0", - "x": 3.8457, - "y": 44.6443 - }, - { - "l": "2.0", - "x": 3.929, - "y": 44.6956 - }, - { - "l": "2.0", - "x": 4.0123, - "y": 44.7512 - }, - { - "l": "2.0", - "x": 4.0957, - "y": 44.8034 - }, - { - "l": "2.0", - "x": 4.179, - "y": 44.8495 - }, - { - "l": "2.0", - "x": 4.2623, - "y": 44.8995 - }, - { - "l": "2.0", - "x": 4.3457, - "y": 44.9465 - }, - { - "l": "2.0", - "x": 4.429, - "y": 44.9881 - }, - { - "l": "2.0", - "x": 4.5123, - "y": 45.0332 - }, - { - "l": "2.0", - "x": 4.5957, - "y": 45.0756 - }, - { - "l": "2.0", - "x": 4.679, - "y": 45.113 - }, - { - "l": "2.0", - "x": 4.7623, - "y": 45.1537 - }, - { - "l": "2.0", - "x": 4.8457, - "y": 45.1919 - }, - { - "l": "2.0", - "x": 4.929, - "y": 45.2257 - }, - { - "l": "2.0", - "x": 5.0123, - "y": 45.2622 - }, - { - "l": "2.0", - "x": 5.0957, - "y": 45.2964 - }, - { - "l": "2.0", - "x": 5.179, - "y": 45.3264 - }, - { - "l": "2.0", - "x": 5.2623, - "y": 45.3591 - }, - { - "l": "2.0", - "x": 5.3457, - "y": 45.3898 - }, - { - "l": "2.0", - "x": 5.429, - "y": 45.417 - }, - { - "l": "2.0", - "x": 5.5123, - "y": 45.4469 - }, - { - "l": "2.0", - "x": 5.5957, - "y": 45.4755 - }, - { - "l": "2.0", - "x": 5.679, - "y": 45.5012 - }, - { - "l": "2.0", - "x": 5.7623, - "y": 45.5296 - }, - { - "l": "2.0", - "x": 5.8457, - "y": 45.5568 - }, - { - "l": "2.0", - "x": 5.929, - "y": 45.5814 - }, - { - "l": "2.0", - "x": 6.0123, - "y": 45.609 - }, - { - "l": "2.0", - "x": 6.0957, - "y": 45.6357 - }, - { - "l": "2.0", - "x": 6.179, - "y": 45.6601 - }, - { - "l": "2.0", - "x": 6.2623, - "y": 45.6875 - }, - { - "l": "2.0", - "x": 6.3457, - "y": 45.7144 - }, - { - "l": "2.0", - "x": 6.429, - "y": 45.7392 - }, - { - "l": "2.0", - "x": 6.5123, - "y": 45.7678 - }, - { - "l": "2.0", - "x": 6.5957, - "y": 45.7962 - }, - { - "l": "2.0", - "x": 6.679, - "y": 45.8229 - }, - { - "l": "2.0", - "x": 6.7623, - "y": 45.8537 - }, - { - "l": "2.0", - "x": 6.8457, - "y": 45.8851 - }, - { - "l": "2.0", - "x": 6.929, - "y": 45.915 - }, - { - "l": "2.0", - "x": 7.0123, - "y": 45.9497 - }, - { - "l": "2.0", - "x": 7.0957, - "y": 45.9843 - }, - { - "l": "2.0", - "x": 7.179, - "y": 46.0169 - }, - { - "l": "2.0", - "x": 7.2623, - "y": 46.0544 - }, - { - "l": "2.0", - "x": 7.3457, - "y": 46.092 - }, - { - "l": "2.0", - "x": 7.429, - "y": 46.127 - }, - { - "l": "2.0", - "x": 7.5123, - "y": 46.1671 - }, - { - "l": "2.0", - "x": 7.5957, - "y": 46.2069 - }, - { - "l": "2.0", - "x": 7.679, - "y": 46.2435 - }, - { - "l": "2.0", - "x": 7.7623, - "y": 46.2852 - }, - { - "l": "2.0", - "x": 7.8457, - "y": 46.326 - }, - { - "l": "2.0", - "x": 7.929, - "y": 46.3637 - }, - { - "l": "2.0", - "x": 8.0123, - "y": 46.406 - }, - { - "l": "2.0", - "x": 8.0957, - "y": 46.4471 - }, - { - "l": "2.0", - "x": 8.179, - "y": 46.4846 - }, - { - "l": "2.0", - "x": 8.2623, - "y": 46.5266 - }, - { - "l": "2.0", - "x": 8.3457, - "y": 46.5672 - }, - { - "l": "2.0", - "x": 8.429, - "y": 46.604 - }, - { - "l": "2.0", - "x": 8.5123, - "y": 46.6451 - }, - { - "l": "2.0", - "x": 8.5957, - "y": 46.6849 - }, - { - "l": "2.0", - "x": 8.679, - "y": 46.7212 - }, - { - "l": "2.0", - "x": 8.7623, - "y": 46.7616 - }, - { - "l": "2.0", - "x": 8.8457, - "y": 46.801 - }, - { - "l": "2.0", - "x": 8.929, - "y": 46.837 - }, - { - "l": "2.0", - "x": 9.0123, - "y": 46.8774 - }, - { - "l": "2.0", - "x": 9.0957, - "y": 46.9168 - }, - { - "l": "2.0", - "x": 9.179, - "y": 46.9531 - }, - { - "l": "2.0", - "x": 9.2623, - "y": 46.994 - }, - { - "l": "2.0", - "x": 9.3457, - "y": 47.0339 - }, - { - "l": "2.0", - "x": 9.429, - "y": 47.0704 - }, - { - "l": "2.0", - "x": 9.5123, - "y": 47.1113 - }, - { - "l": "2.0", - "x": 9.5957, - "y": 47.151 - }, - { - "l": "2.0", - "x": 9.679, - "y": 47.1871 - }, - { - "l": "2.0", - "x": 9.7623, - "y": 47.2275 - }, - { - "l": "2.0", - "x": 9.8457, - "y": 47.2665 - }, - { - "l": "2.0", - "x": 9.929, - "y": 47.302 - }, - { - "l": "2.0", - "x": 10.0123, - "y": 47.3412 - }, - { - "l": "2.0", - "x": 10.0957, - "y": 47.3792 - }, - { - "l": "2.0", - "x": 10.179, - "y": 47.414 - }, - { - "l": "2.0", - "x": 10.2623, - "y": 47.4531 - }, - { - "l": "2.0", - "x": 10.3457, - "y": 47.4905 - }, - { - "l": "2.0", - "x": 10.429, - "y": 47.5239 - }, - { - "l": "2.0", - "x": 10.5123, - "y": 47.5613 - }, - { - "l": "2.0", - "x": 10.5957, - "y": 47.5971 - }, - { - "l": "2.0", - "x": 10.679, - "y": 47.6293 - }, - { - "l": "2.0", - "x": 10.7623, - "y": 47.665 - }, - { - "l": "2.0", - "x": 10.8457, - "y": 47.6992 - }, - { - "l": "2.0", - "x": 10.929, - "y": 47.7301 - }, - { - "l": "2.0", - "x": 11.0123, - "y": 47.7638 - }, - { - "l": "2.0", - "x": 11.0957, - "y": 47.7964 - }, - { - "l": "2.0", - "x": 11.179, - "y": 47.8262 - }, - { - "l": "2.0", - "x": 11.2623, - "y": 47.8591 - }, - { - "l": "2.0", - "x": 11.3457, - "y": 47.8904 - }, - { - "l": "2.0", - "x": 11.429, - "y": 47.9185 - }, - { - "l": "2.0", - "x": 11.5123, - "y": 47.9499 - }, - { - "l": "2.0", - "x": 11.5957, - "y": 47.9803 - }, - { - "l": "2.0", - "x": 11.679, - "y": 48.0076 - }, - { - "l": "2.0", - "x": 11.7623, - "y": 48.0379 - }, - { - "l": "2.0", - "x": 11.8457, - "y": 48.0672 - }, - { - "l": "2.0", - "x": 11.929, - "y": 48.0937 - }, - { - "l": "2.0", - "x": 12.0123, - "y": 48.1221 - }, - { - "l": "2.0", - "x": 12.0957, - "y": 48.1498 - }, - { - "l": "2.0", - "x": 12.179, - "y": 48.1751 - }, - { - "l": "2.0", - "x": 12.2623, - "y": 48.2035 - }, - { - "l": "2.0", - "x": 12.3457, - "y": 48.2312 - }, - { - "l": "2.0", - "x": 12.429, - "y": 48.2564 - }, - { - "l": "2.0", - "x": 12.5123, - "y": 48.2836 - }, - { - "l": "2.0", - "x": 12.5957, - "y": 48.309 - }, - { - "l": "2.0", - "x": 12.679, - "y": 48.3322 - }, - { - "l": "2.0", - "x": 12.7623, - "y": 48.3576 - }, - { - "l": "2.0", - "x": 12.8457, - "y": 48.3819 - }, - { - "l": "2.0", - "x": 12.929, - "y": 48.4035 - }, - { - "l": "2.0", - "x": 13.0123, - "y": 48.4272 - }, - { - "l": "2.0", - "x": 13.0957, - "y": 48.45 - }, - { - "l": "2.0", - "x": 13.179, - "y": 48.4701 - }, - { - "l": "2.0", - "x": 13.2623, - "y": 48.4919 - }, - { - "l": "2.0", - "x": 13.3457, - "y": 48.5125 - }, - { - "l": "2.0", - "x": 13.429, - "y": 48.5312 - }, - { - "l": "2.0", - "x": 13.5123, - "y": 48.5512 - }, - { - "l": "2.0", - "x": 13.5957, - "y": 48.5697 - }, - { - "l": "2.0", - "x": 13.679, - "y": 48.586 - }, - { - "l": "2.0", - "x": 13.7623, - "y": 48.6037 - }, - { - "l": "2.0", - "x": 13.8457, - "y": 48.62 - }, - { - "l": "2.0", - "x": 13.929, - "y": 48.6341 - }, - { - "l": "2.0", - "x": 14.0123, - "y": 48.6488 - }, - { - "l": "2.0", - "x": 14.0957, - "y": 48.6626 - }, - { - "l": "2.0", - "x": 14.179, - "y": 48.6743 - }, - { - "l": "2.0", - "x": 14.2623, - "y": 48.6864 - }, - { - "l": "2.0", - "x": 14.3457, - "y": 48.6975 - }, - { - "l": "2.0", - "x": 14.429, - "y": 48.7071 - }, - { - "l": "2.0", - "x": 14.5123, - "y": 48.7167 - }, - { - "l": "2.0", - "x": 14.5957, - "y": 48.726 - }, - { - "l": "2.0", - "x": 14.679, - "y": 48.7338 - }, - { - "l": "2.0", - "x": 14.7623, - "y": 48.7419 - }, - { - "l": "2.0", - "x": 14.8457, - "y": 48.749 - }, - { - "l": "2.0", - "x": 14.929, - "y": 48.7547 - }, - { - "l": "2.0", - "x": 15.0123, - "y": 48.7612 - }, - { - "l": "2.0", - "x": 15.0957, - "y": 48.7674 - }, - { - "l": "2.0", - "x": 15.179, - "y": 48.7723 - }, - { - "l": "2.0", - "x": 15.2623, - "y": 48.7774 - }, - { - "l": "2.0", - "x": 15.3457, - "y": 48.782 - }, - { - "l": "2.0", - "x": 15.429, - "y": 48.7858 - }, - { - "l": "2.0", - "x": 15.5123, - "y": 48.79 - }, - { - "l": "2.0", - "x": 15.5957, - "y": 48.794 - }, - { - "l": "2.0", - "x": 15.679, - "y": 48.7973 - }, - { - "l": "2.0", - "x": 15.7623, - "y": 48.8007 - }, - { - "l": "2.0", - "x": 15.8457, - "y": 48.8038 - }, - { - "l": "2.0", - "x": 15.929, - "y": 48.8065 - }, - { - "l": "2.0", - "x": 16.0123, - "y": 48.8092 - }, - { - "l": "2.0", - "x": 16.0957, - "y": 48.8115 - }, - { - "l": "2.0", - "x": 16.179, - "y": 48.8135 - }, - { - "l": "2.0", - "x": 16.2623, - "y": 48.8153 - }, - { - "l": "2.0", - "x": 16.3457, - "y": 48.8165 - }, - { - "l": "2.0", - "x": 16.429, - "y": 48.8173 - }, - { - "l": "2.0", - "x": 16.5123, - "y": 48.8182 - }, - { - "l": "2.0", - "x": 16.5957, - "y": 48.8191 - }, - { - "l": "2.0", - "x": 16.679, - "y": 48.8198 - }, - { - "l": "2.0", - "x": 16.7623, - "y": 48.8201 - }, - { - "l": "2.0", - "x": 16.8457, - "y": 48.8208 - }, - { - "l": "2.0", - "x": 16.929, - "y": 48.8218 - }, - { - "l": "2.0", - "x": 17.0123, - "y": 48.8234 - }, - { - "l": "2.0", - "x": 17.0957, - "y": 48.8258 - }, - { - "l": "2.0", - "x": 17.179, - "y": 48.8279 - }, - { - "l": "2.0", - "x": 17.2623, - "y": 48.8304 - }, - { - "l": "2.0", - "x": 17.3457, - "y": 48.8332 - }, - { - "l": "2.0", - "x": 17.429, - "y": 48.8364 - }, - { - "l": "2.0", - "x": 17.5123, - "y": 48.8404 - }, - { - "l": "2.0", - "x": 17.5957, - "y": 48.8445 - }, - { - "l": "2.0", - "x": 17.679, - "y": 48.8484 - }, - { - "l": "2.0", - "x": 17.7623, - "y": 48.8536 - }, - { - "l": "2.0", - "x": 17.8457, - "y": 48.8586 - }, - { - "l": "2.0", - "x": 17.929, - "y": 48.8633 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 0.0, - "y": 31.2699 - }, - { - "l": "9.0", - "x": 0.0192, - "y": 31.658 - }, - { - "l": "9.0", - "x": 0.0383, - "y": 32.0464 - }, - { - "l": "9.0", - "x": 0.0575, - "y": 32.4351 - }, - { - "l": "9.0", - "x": 0.0767, - "y": 32.8241 - }, - { - "l": "9.0", - "x": 0.0958, - "y": 33.175 - }, - { - "l": "9.0", - "x": 0.115, - "y": 33.5073 - }, - { - "l": "9.0", - "x": 0.1342, - "y": 33.8315 - }, - { - "l": "9.0", - "x": 0.1533, - "y": 34.1511 - }, - { - "l": "9.0", - "x": 0.1725, - "y": 34.4719 - }, - { - "l": "9.0", - "x": 0.1916, - "y": 34.8099 - }, - { - "l": "9.0", - "x": 0.2108, - "y": 35.1459 - }, - { - "l": "9.0", - "x": 0.23, - "y": 35.4775 - }, - { - "l": "9.0", - "x": 0.2491, - "y": 35.8023 - }, - { - "l": "9.0", - "x": 0.2683, - "y": 36.1147 - }, - { - "l": "9.0", - "x": 0.2875, - "y": 36.4162 - }, - { - "l": "9.0", - "x": 0.3066, - "y": 36.7055 - }, - { - "l": "9.0", - "x": 0.3258, - "y": 36.9811 - }, - { - "l": "9.0", - "x": 0.345, - "y": 37.2308 - }, - { - "l": "9.0", - "x": 0.3641, - "y": 37.4637 - }, - { - "l": "9.0", - "x": 0.3833, - "y": 37.6854 - }, - { - "l": "9.0", - "x": 0.4025, - "y": 37.899 - }, - { - "l": "9.0", - "x": 0.4216, - "y": 38.1085 - }, - { - "l": "9.0", - "x": 0.4408, - "y": 38.3272 - }, - { - "l": "9.0", - "x": 0.46, - "y": 38.5408 - }, - { - "l": "9.0", - "x": 0.4791, - "y": 38.7478 - }, - { - "l": "9.0", - "x": 0.4983, - "y": 38.9467 - }, - { - "l": "9.0", - "x": 0.5175, - "y": 39.1329 - }, - { - "l": "9.0", - "x": 0.5366, - "y": 39.3087 - }, - { - "l": "9.0", - "x": 0.5558, - "y": 39.4742 - }, - { - "l": "9.0", - "x": 0.5749, - "y": 39.6291 - }, - { - "l": "9.0", - "x": 0.5941, - "y": 39.7677 - }, - { - "l": "9.0", - "x": 0.6133, - "y": 39.8945 - }, - { - "l": "9.0", - "x": 0.6324, - "y": 40.0134 - }, - { - "l": "9.0", - "x": 0.6516, - "y": 40.1266 - }, - { - "l": "9.0", - "x": 0.6708, - "y": 40.2362 - }, - { - "l": "9.0", - "x": 0.6899, - "y": 40.3514 - }, - { - "l": "9.0", - "x": 0.7091, - "y": 40.4637 - }, - { - "l": "9.0", - "x": 0.7283, - "y": 40.5726 - }, - { - "l": "9.0", - "x": 0.7474, - "y": 40.6776 - }, - { - "l": "9.0", - "x": 0.7666, - "y": 40.7771 - }, - { - "l": "9.0", - "x": 0.7858, - "y": 40.8717 - }, - { - "l": "9.0", - "x": 0.8049, - "y": 40.9615 - }, - { - "l": "9.0", - "x": 0.8241, - "y": 41.0463 - }, - { - "l": "9.0", - "x": 0.8433, - "y": 41.1233 - }, - { - "l": "9.0", - "x": 0.8624, - "y": 41.1944 - }, - { - "l": "9.0", - "x": 0.8816, - "y": 41.2618 - }, - { - "l": "9.0", - "x": 0.9008, - "y": 41.3266 - }, - { - "l": "9.0", - "x": 0.9199, - "y": 41.3899 - }, - { - "l": "9.0", - "x": 0.9391, - "y": 41.4568 - }, - { - "l": "9.0", - "x": 0.9582, - "y": 41.5227 - }, - { - "l": "9.0", - "x": 0.9774, - "y": 41.5871 - }, - { - "l": "9.0", - "x": 0.9966, - "y": 41.6496 - }, - { - "l": "9.0", - "x": 1.0157, - "y": 41.7093 - }, - { - "l": "9.0", - "x": 1.0349, - "y": 41.7666 - }, - { - "l": "9.0", - "x": 1.0541, - "y": 41.8214 - }, - { - "l": "9.0", - "x": 1.0732, - "y": 41.8735 - }, - { - "l": "9.0", - "x": 1.0924, - "y": 41.9213 - }, - { - "l": "9.0", - "x": 1.1116, - "y": 41.9657 - }, - { - "l": "9.0", - "x": 1.1307, - "y": 42.0083 - }, - { - "l": "9.0", - "x": 1.1499, - "y": 42.0499 - }, - { - "l": "9.0", - "x": 1.1691, - "y": 42.0912 - }, - { - "l": "9.0", - "x": 1.1882, - "y": 42.1354 - }, - { - "l": "9.0", - "x": 1.2074, - "y": 42.1798 - }, - { - "l": "9.0", - "x": 1.2266, - "y": 42.224 - }, - { - "l": "9.0", - "x": 1.2457, - "y": 42.268 - }, - { - "l": "9.0", - "x": 1.2649, - "y": 42.3113 - }, - { - "l": "9.0", - "x": 1.2841, - "y": 42.3539 - }, - { - "l": "9.0", - "x": 1.3032, - "y": 42.3955 - }, - { - "l": "9.0", - "x": 1.3224, - "y": 42.4361 - }, - { - "l": "9.0", - "x": 1.3415, - "y": 42.474 - }, - { - "l": "9.0", - "x": 1.3607, - "y": 42.5099 - }, - { - "l": "9.0", - "x": 1.3799, - "y": 42.5451 - }, - { - "l": "9.0", - "x": 1.399, - "y": 42.5799 - }, - { - "l": "9.0", - "x": 1.4182, - "y": 42.6149 - }, - { - "l": "9.0", - "x": 1.4374, - "y": 42.6525 - }, - { - "l": "9.0", - "x": 1.4565, - "y": 42.6906 - }, - { - "l": "9.0", - "x": 1.4757, - "y": 42.7287 - }, - { - "l": "9.0", - "x": 1.4949, - "y": 42.7667 - }, - { - "l": "9.0", - "x": 1.514, - "y": 42.8041 - }, - { - "l": "9.0", - "x": 1.5332, - "y": 42.8409 - }, - { - "l": "9.0", - "x": 1.5524, - "y": 42.8769 - }, - { - "l": "9.0", - "x": 1.5715, - "y": 42.9118 - }, - { - "l": "9.0", - "x": 1.5907, - "y": 42.9445 - }, - { - "l": "9.0", - "x": 1.6099, - "y": 42.9752 - }, - { - "l": "9.0", - "x": 1.629, - "y": 43.0052 - }, - { - "l": "9.0", - "x": 1.6482, - "y": 43.035 - }, - { - "l": "9.0", - "x": 1.6674, - "y": 43.0648 - }, - { - "l": "9.0", - "x": 1.6865, - "y": 43.0969 - }, - { - "l": "9.0", - "x": 1.7057, - "y": 43.1296 - }, - { - "l": "9.0", - "x": 1.7248, - "y": 43.1625 - }, - { - "l": "9.0", - "x": 1.744, - "y": 43.1953 - }, - { - "l": "9.0", - "x": 1.7632, - "y": 43.2279 - }, - { - "l": "9.0", - "x": 1.7823, - "y": 43.26 - }, - { - "l": "9.0", - "x": 1.8015, - "y": 43.2917 - }, - { - "l": "9.0", - "x": 1.8207, - "y": 43.3226 - }, - { - "l": "9.0", - "x": 1.8398, - "y": 43.3519 - }, - { - "l": "9.0", - "x": 1.859, - "y": 43.3796 - }, - { - "l": "9.0", - "x": 1.8782, - "y": 43.4068 - }, - { - "l": "9.0", - "x": 1.8973, - "y": 43.4339 - }, - { - "l": "9.0", - "x": 1.9165, - "y": 43.4613 - }, - { - "l": "9.0", - "x": 1.9357, - "y": 43.4907 - }, - { - "l": "9.0", - "x": 1.9548, - "y": 43.5208 - }, - { - "l": "9.0", - "x": 1.974, - "y": 43.5512 - }, - { - "l": "9.0", - "x": 1.9932, - "y": 43.5817 - }, - { - "l": "9.0", - "x": 2.0123, - "y": 43.612 - }, - { - "l": "9.0", - "x": 2.0957, - "y": 43.7369 - }, - { - "l": "9.0", - "x": 2.179, - "y": 43.8474 - }, - { - "l": "9.0", - "x": 2.2623, - "y": 43.9672 - }, - { - "l": "9.0", - "x": 2.3457, - "y": 44.0796 - }, - { - "l": "9.0", - "x": 2.429, - "y": 44.1786 - }, - { - "l": "9.0", - "x": 2.5123, - "y": 44.2859 - }, - { - "l": "9.0", - "x": 2.5957, - "y": 44.387 - }, - { - "l": "9.0", - "x": 2.679, - "y": 44.4766 - }, - { - "l": "9.0", - "x": 2.7623, - "y": 44.5741 - }, - { - "l": "9.0", - "x": 2.8457, - "y": 44.6659 - }, - { - "l": "9.0", - "x": 2.929, - "y": 44.747 - }, - { - "l": "9.0", - "x": 3.0123, - "y": 44.8349 - }, - { - "l": "9.0", - "x": 3.0957, - "y": 44.9174 - }, - { - "l": "9.0", - "x": 3.179, - "y": 44.99 - }, - { - "l": "9.0", - "x": 3.2623, - "y": 45.0687 - }, - { - "l": "9.0", - "x": 3.3457, - "y": 45.1423 - }, - { - "l": "9.0", - "x": 3.429, - "y": 45.2071 - }, - { - "l": "9.0", - "x": 3.5123, - "y": 45.2771 - }, - { - "l": "9.0", - "x": 3.5957, - "y": 45.3425 - }, - { - "l": "9.0", - "x": 3.679, - "y": 45.4001 - }, - { - "l": "9.0", - "x": 3.7623, - "y": 45.4624 - }, - { - "l": "9.0", - "x": 3.8457, - "y": 45.5209 - }, - { - "l": "9.0", - "x": 3.929, - "y": 45.5724 - }, - { - "l": "9.0", - "x": 4.0123, - "y": 45.6283 - }, - { - "l": "9.0", - "x": 4.0957, - "y": 45.6808 - }, - { - "l": "9.0", - "x": 4.179, - "y": 45.7271 - }, - { - "l": "9.0", - "x": 4.2623, - "y": 45.7774 - }, - { - "l": "9.0", - "x": 4.3457, - "y": 45.8247 - }, - { - "l": "9.0", - "x": 4.429, - "y": 45.8665 - }, - { - "l": "9.0", - "x": 4.5123, - "y": 45.9118 - }, - { - "l": "9.0", - "x": 4.5957, - "y": 45.9545 - }, - { - "l": "9.0", - "x": 4.679, - "y": 45.9921 - }, - { - "l": "9.0", - "x": 4.7623, - "y": 46.0331 - }, - { - "l": "9.0", - "x": 4.8457, - "y": 46.0716 - }, - { - "l": "9.0", - "x": 4.929, - "y": 46.1055 - }, - { - "l": "9.0", - "x": 5.0123, - "y": 46.1422 - }, - { - "l": "9.0", - "x": 5.0957, - "y": 46.1766 - }, - { - "l": "9.0", - "x": 5.179, - "y": 46.2069 - }, - { - "l": "9.0", - "x": 5.2623, - "y": 46.2397 - }, - { - "l": "9.0", - "x": 5.3457, - "y": 46.2706 - }, - { - "l": "9.0", - "x": 5.429, - "y": 46.298 - }, - { - "l": "9.0", - "x": 5.5123, - "y": 46.3282 - }, - { - "l": "9.0", - "x": 5.5957, - "y": 46.3569 - }, - { - "l": "9.0", - "x": 5.679, - "y": 46.3828 - }, - { - "l": "9.0", - "x": 5.7623, - "y": 46.4113 - }, - { - "l": "9.0", - "x": 5.8457, - "y": 46.4387 - }, - { - "l": "9.0", - "x": 5.929, - "y": 46.4635 - }, - { - "l": "9.0", - "x": 6.0123, - "y": 46.4913 - }, - { - "l": "9.0", - "x": 6.0957, - "y": 46.5181 - }, - { - "l": "9.0", - "x": 6.179, - "y": 46.5427 - }, - { - "l": "9.0", - "x": 6.2623, - "y": 46.5703 - }, - { - "l": "9.0", - "x": 6.3457, - "y": 46.5974 - }, - { - "l": "9.0", - "x": 6.429, - "y": 46.6224 - }, - { - "l": "9.0", - "x": 6.5123, - "y": 46.6511 - }, - { - "l": "9.0", - "x": 6.5957, - "y": 46.6797 - }, - { - "l": "9.0", - "x": 6.679, - "y": 46.7066 - }, - { - "l": "9.0", - "x": 6.7623, - "y": 46.7376 - }, - { - "l": "9.0", - "x": 6.8457, - "y": 46.7692 - }, - { - "l": "9.0", - "x": 6.929, - "y": 46.7994 - }, - { - "l": "9.0", - "x": 7.0123, - "y": 46.8343 - }, - { - "l": "9.0", - "x": 7.0957, - "y": 46.8691 - }, - { - "l": "9.0", - "x": 7.179, - "y": 46.9019 - }, - { - "l": "9.0", - "x": 7.2623, - "y": 46.9396 - }, - { - "l": "9.0", - "x": 7.3457, - "y": 46.9775 - }, - { - "l": "9.0", - "x": 7.429, - "y": 47.0128 - }, - { - "l": "9.0", - "x": 7.5123, - "y": 47.0531 - }, - { - "l": "9.0", - "x": 7.5957, - "y": 47.0931 - }, - { - "l": "9.0", - "x": 7.679, - "y": 47.13 - }, - { - "l": "9.0", - "x": 7.7623, - "y": 47.1719 - }, - { - "l": "9.0", - "x": 7.8457, - "y": 47.2131 - }, - { - "l": "9.0", - "x": 7.929, - "y": 47.251 - }, - { - "l": "9.0", - "x": 8.0123, - "y": 47.2936 - }, - { - "l": "9.0", - "x": 8.0957, - "y": 47.335 - }, - { - "l": "9.0", - "x": 8.179, - "y": 47.3727 - }, - { - "l": "9.0", - "x": 8.2623, - "y": 47.4149 - }, - { - "l": "9.0", - "x": 8.3457, - "y": 47.4558 - }, - { - "l": "9.0", - "x": 8.429, - "y": 47.4929 - }, - { - "l": "9.0", - "x": 8.5123, - "y": 47.5341 - }, - { - "l": "9.0", - "x": 8.5957, - "y": 47.5742 - }, - { - "l": "9.0", - "x": 8.679, - "y": 47.6107 - }, - { - "l": "9.0", - "x": 8.7623, - "y": 47.6514 - }, - { - "l": "9.0", - "x": 8.8457, - "y": 47.691 - }, - { - "l": "9.0", - "x": 8.929, - "y": 47.7272 - }, - { - "l": "9.0", - "x": 9.0123, - "y": 47.7679 - }, - { - "l": "9.0", - "x": 9.0957, - "y": 47.8076 - }, - { - "l": "9.0", - "x": 9.179, - "y": 47.8441 - }, - { - "l": "9.0", - "x": 9.2623, - "y": 47.8852 - }, - { - "l": "9.0", - "x": 9.3457, - "y": 47.9253 - }, - { - "l": "9.0", - "x": 9.429, - "y": 47.962 - }, - { - "l": "9.0", - "x": 9.5123, - "y": 48.0032 - }, - { - "l": "9.0", - "x": 9.5957, - "y": 48.0431 - }, - { - "l": "9.0", - "x": 9.679, - "y": 48.0795 - }, - { - "l": "9.0", - "x": 9.7623, - "y": 48.12 - }, - { - "l": "9.0", - "x": 9.8457, - "y": 48.1593 - }, - { - "l": "9.0", - "x": 9.929, - "y": 48.195 - }, - { - "l": "9.0", - "x": 10.0123, - "y": 48.2345 - }, - { - "l": "9.0", - "x": 10.0957, - "y": 48.2727 - }, - { - "l": "9.0", - "x": 10.179, - "y": 48.3078 - }, - { - "l": "9.0", - "x": 10.2623, - "y": 48.347 - }, - { - "l": "9.0", - "x": 10.3457, - "y": 48.3847 - }, - { - "l": "9.0", - "x": 10.429, - "y": 48.4184 - }, - { - "l": "9.0", - "x": 10.5123, - "y": 48.456 - }, - { - "l": "9.0", - "x": 10.5957, - "y": 48.492 - }, - { - "l": "9.0", - "x": 10.679, - "y": 48.5244 - }, - { - "l": "9.0", - "x": 10.7623, - "y": 48.5603 - }, - { - "l": "9.0", - "x": 10.8457, - "y": 48.5948 - }, - { - "l": "9.0", - "x": 10.929, - "y": 48.6259 - }, - { - "l": "9.0", - "x": 11.0123, - "y": 48.6599 - }, - { - "l": "9.0", - "x": 11.0957, - "y": 48.6927 - }, - { - "l": "9.0", - "x": 11.179, - "y": 48.7227 - }, - { - "l": "9.0", - "x": 11.2623, - "y": 48.7559 - }, - { - "l": "9.0", - "x": 11.3457, - "y": 48.7875 - }, - { - "l": "9.0", - "x": 11.429, - "y": 48.8158 - }, - { - "l": "9.0", - "x": 11.5123, - "y": 48.8474 - }, - { - "l": "9.0", - "x": 11.5957, - "y": 48.8781 - }, - { - "l": "9.0", - "x": 11.679, - "y": 48.9056 - }, - { - "l": "9.0", - "x": 11.7623, - "y": 48.9362 - }, - { - "l": "9.0", - "x": 11.8457, - "y": 48.9657 - }, - { - "l": "9.0", - "x": 11.929, - "y": 48.9924 - }, - { - "l": "9.0", - "x": 12.0123, - "y": 49.0211 - }, - { - "l": "9.0", - "x": 12.0957, - "y": 49.0491 - }, - { - "l": "9.0", - "x": 12.179, - "y": 49.0746 - }, - { - "l": "9.0", - "x": 12.2623, - "y": 49.1033 - }, - { - "l": "9.0", - "x": 12.3457, - "y": 49.1312 - }, - { - "l": "9.0", - "x": 12.429, - "y": 49.1567 - }, - { - "l": "9.0", - "x": 12.5123, - "y": 49.1842 - }, - { - "l": "9.0", - "x": 12.5957, - "y": 49.2098 - }, - { - "l": "9.0", - "x": 12.679, - "y": 49.2332 - }, - { - "l": "9.0", - "x": 12.7623, - "y": 49.2589 - }, - { - "l": "9.0", - "x": 12.8457, - "y": 49.2834 - }, - { - "l": "9.0", - "x": 12.929, - "y": 49.3052 - }, - { - "l": "9.0", - "x": 13.0123, - "y": 49.3292 - }, - { - "l": "9.0", - "x": 13.0957, - "y": 49.3522 - }, - { - "l": "9.0", - "x": 13.179, - "y": 49.3726 - }, - { - "l": "9.0", - "x": 13.2623, - "y": 49.3945 - }, - { - "l": "9.0", - "x": 13.3457, - "y": 49.4153 - }, - { - "l": "9.0", - "x": 13.429, - "y": 49.4343 - }, - { - "l": "9.0", - "x": 13.5123, - "y": 49.4545 - }, - { - "l": "9.0", - "x": 13.5957, - "y": 49.4732 - }, - { - "l": "9.0", - "x": 13.679, - "y": 49.4897 - }, - { - "l": "9.0", - "x": 13.7623, - "y": 49.5075 - }, - { - "l": "9.0", - "x": 13.8457, - "y": 49.524 - }, - { - "l": "9.0", - "x": 13.929, - "y": 49.5383 - }, - { - "l": "9.0", - "x": 14.0123, - "y": 49.5532 - }, - { - "l": "9.0", - "x": 14.0957, - "y": 49.5671 - }, - { - "l": "9.0", - "x": 14.179, - "y": 49.5789 - }, - { - "l": "9.0", - "x": 14.2623, - "y": 49.5912 - }, - { - "l": "9.0", - "x": 14.3457, - "y": 49.6024 - }, - { - "l": "9.0", - "x": 14.429, - "y": 49.612 - }, - { - "l": "9.0", - "x": 14.5123, - "y": 49.6218 - }, - { - "l": "9.0", - "x": 14.5957, - "y": 49.6312 - }, - { - "l": "9.0", - "x": 14.679, - "y": 49.6391 - }, - { - "l": "9.0", - "x": 14.7623, - "y": 49.6473 - }, - { - "l": "9.0", - "x": 14.8457, - "y": 49.6544 - }, - { - "l": "9.0", - "x": 14.929, - "y": 49.6602 - }, - { - "l": "9.0", - "x": 15.0123, - "y": 49.6668 - }, - { - "l": "9.0", - "x": 15.0957, - "y": 49.6731 - }, - { - "l": "9.0", - "x": 15.179, - "y": 49.6779 - }, - { - "l": "9.0", - "x": 15.2623, - "y": 49.6831 - }, - { - "l": "9.0", - "x": 15.3457, - "y": 49.6878 - }, - { - "l": "9.0", - "x": 15.429, - "y": 49.6916 - }, - { - "l": "9.0", - "x": 15.5123, - "y": 49.6959 - }, - { - "l": "9.0", - "x": 15.5957, - "y": 49.6999 - }, - { - "l": "9.0", - "x": 15.679, - "y": 49.7032 - }, - { - "l": "9.0", - "x": 15.7623, - "y": 49.7067 - }, - { - "l": "9.0", - "x": 15.8457, - "y": 49.7098 - }, - { - "l": "9.0", - "x": 15.929, - "y": 49.7125 - }, - { - "l": "9.0", - "x": 16.0123, - "y": 49.7153 - }, - { - "l": "9.0", - "x": 16.0957, - "y": 49.7176 - }, - { - "l": "9.0", - "x": 16.179, - "y": 49.7196 - }, - { - "l": "9.0", - "x": 16.2623, - "y": 49.7215 - }, - { - "l": "9.0", - "x": 16.3457, - "y": 49.7226 - }, - { - "l": "9.0", - "x": 16.429, - "y": 49.7234 - }, - { - "l": "9.0", - "x": 16.5123, - "y": 49.7243 - }, - { - "l": "9.0", - "x": 16.5957, - "y": 49.7253 - }, - { - "l": "9.0", - "x": 16.679, - "y": 49.726 - }, - { - "l": "9.0", - "x": 16.7623, - "y": 49.7263 - }, - { - "l": "9.0", - "x": 16.8457, - "y": 49.727 - }, - { - "l": "9.0", - "x": 16.929, - "y": 49.728 - }, - { - "l": "9.0", - "x": 17.0123, - "y": 49.7296 - }, - { - "l": "9.0", - "x": 17.0957, - "y": 49.732 - }, - { - "l": "9.0", - "x": 17.179, - "y": 49.7342 - }, - { - "l": "9.0", - "x": 17.2623, - "y": 49.7367 - }, - { - "l": "9.0", - "x": 17.3457, - "y": 49.7395 - }, - { - "l": "9.0", - "x": 17.429, - "y": 49.7427 - }, - { - "l": "9.0", - "x": 17.5123, - "y": 49.7468 - }, - { - "l": "9.0", - "x": 17.5957, - "y": 49.751 - }, - { - "l": "9.0", - "x": 17.679, - "y": 49.7549 - }, - { - "l": "9.0", - "x": 17.7623, - "y": 49.7601 - }, - { - "l": "9.0", - "x": 17.8457, - "y": 49.7652 - }, - { - "l": "9.0", - "x": 17.929, - "y": 49.7699 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 0.0, - "y": 32.1473 - }, - { - "l": "25.0", - "x": 0.0192, - "y": 32.5394 - }, - { - "l": "25.0", - "x": 0.0383, - "y": 32.9316 - }, - { - "l": "25.0", - "x": 0.0575, - "y": 33.324 - }, - { - "l": "25.0", - "x": 0.0767, - "y": 33.7166 - }, - { - "l": "25.0", - "x": 0.0958, - "y": 34.0705 - }, - { - "l": "25.0", - "x": 0.115, - "y": 34.4056 - }, - { - "l": "25.0", - "x": 0.1342, - "y": 34.7323 - }, - { - "l": "25.0", - "x": 0.1533, - "y": 35.0541 - }, - { - "l": "25.0", - "x": 0.1725, - "y": 35.3771 - }, - { - "l": "25.0", - "x": 0.1916, - "y": 35.7172 - }, - { - "l": "25.0", - "x": 0.2108, - "y": 36.0551 - }, - { - "l": "25.0", - "x": 0.23, - "y": 36.3884 - }, - { - "l": "25.0", - "x": 0.2491, - "y": 36.7146 - }, - { - "l": "25.0", - "x": 0.2683, - "y": 37.0283 - }, - { - "l": "25.0", - "x": 0.2875, - "y": 37.3307 - }, - { - "l": "25.0", - "x": 0.3066, - "y": 37.6206 - }, - { - "l": "25.0", - "x": 0.3258, - "y": 37.8967 - }, - { - "l": "25.0", - "x": 0.345, - "y": 38.1468 - }, - { - "l": "25.0", - "x": 0.3641, - "y": 38.3797 - }, - { - "l": "25.0", - "x": 0.3833, - "y": 38.6014 - }, - { - "l": "25.0", - "x": 0.4025, - "y": 38.8147 - }, - { - "l": "25.0", - "x": 0.4216, - "y": 39.0238 - }, - { - "l": "25.0", - "x": 0.4408, - "y": 39.2418 - }, - { - "l": "25.0", - "x": 0.46, - "y": 39.4547 - }, - { - "l": "25.0", - "x": 0.4791, - "y": 39.6608 - }, - { - "l": "25.0", - "x": 0.4983, - "y": 39.8586 - }, - { - "l": "25.0", - "x": 0.5175, - "y": 40.0434 - }, - { - "l": "25.0", - "x": 0.5366, - "y": 40.2178 - }, - { - "l": "25.0", - "x": 0.5558, - "y": 40.3819 - }, - { - "l": "25.0", - "x": 0.5749, - "y": 40.5352 - }, - { - "l": "25.0", - "x": 0.5941, - "y": 40.6724 - }, - { - "l": "25.0", - "x": 0.6133, - "y": 40.7977 - }, - { - "l": "25.0", - "x": 0.6324, - "y": 40.9153 - }, - { - "l": "25.0", - "x": 0.6516, - "y": 41.0269 - }, - { - "l": "25.0", - "x": 0.6708, - "y": 41.1351 - }, - { - "l": "25.0", - "x": 0.6899, - "y": 41.2488 - }, - { - "l": "25.0", - "x": 0.7091, - "y": 41.3595 - }, - { - "l": "25.0", - "x": 0.7283, - "y": 41.4669 - }, - { - "l": "25.0", - "x": 0.7474, - "y": 41.5704 - }, - { - "l": "25.0", - "x": 0.7666, - "y": 41.6685 - }, - { - "l": "25.0", - "x": 0.7858, - "y": 41.7618 - }, - { - "l": "25.0", - "x": 0.8049, - "y": 41.8504 - }, - { - "l": "25.0", - "x": 0.8241, - "y": 41.934 - }, - { - "l": "25.0", - "x": 0.8433, - "y": 42.0099 - }, - { - "l": "25.0", - "x": 0.8624, - "y": 42.0801 - }, - { - "l": "25.0", - "x": 0.8816, - "y": 42.1467 - }, - { - "l": "25.0", - "x": 0.9008, - "y": 42.2107 - }, - { - "l": "25.0", - "x": 0.9199, - "y": 42.2732 - }, - { - "l": "25.0", - "x": 0.9391, - "y": 42.3394 - }, - { - "l": "25.0", - "x": 0.9582, - "y": 42.4045 - }, - { - "l": "25.0", - "x": 0.9774, - "y": 42.4681 - }, - { - "l": "25.0", - "x": 0.9966, - "y": 42.53 - }, - { - "l": "25.0", - "x": 1.0157, - "y": 42.5891 - }, - { - "l": "25.0", - "x": 1.0349, - "y": 42.6457 - }, - { - "l": "25.0", - "x": 1.0541, - "y": 42.7 - }, - { - "l": "25.0", - "x": 1.0732, - "y": 42.7516 - }, - { - "l": "25.0", - "x": 1.0924, - "y": 42.7989 - }, - { - "l": "25.0", - "x": 1.1116, - "y": 42.8429 - }, - { - "l": "25.0", - "x": 1.1307, - "y": 42.8852 - }, - { - "l": "25.0", - "x": 1.1499, - "y": 42.9265 - }, - { - "l": "25.0", - "x": 1.1691, - "y": 42.9674 - }, - { - "l": "25.0", - "x": 1.1882, - "y": 43.0114 - }, - { - "l": "25.0", - "x": 1.2074, - "y": 43.0555 - }, - { - "l": "25.0", - "x": 1.2266, - "y": 43.0996 - }, - { - "l": "25.0", - "x": 1.2457, - "y": 43.1433 - }, - { - "l": "25.0", - "x": 1.2649, - "y": 43.1865 - }, - { - "l": "25.0", - "x": 1.2841, - "y": 43.2289 - }, - { - "l": "25.0", - "x": 1.3032, - "y": 43.2705 - }, - { - "l": "25.0", - "x": 1.3224, - "y": 43.311 - }, - { - "l": "25.0", - "x": 1.3415, - "y": 43.3489 - }, - { - "l": "25.0", - "x": 1.3607, - "y": 43.3848 - }, - { - "l": "25.0", - "x": 1.3799, - "y": 43.4199 - }, - { - "l": "25.0", - "x": 1.399, - "y": 43.4548 - }, - { - "l": "25.0", - "x": 1.4182, - "y": 43.4898 - }, - { - "l": "25.0", - "x": 1.4374, - "y": 43.5274 - }, - { - "l": "25.0", - "x": 1.4565, - "y": 43.5655 - }, - { - "l": "25.0", - "x": 1.4757, - "y": 43.6037 - }, - { - "l": "25.0", - "x": 1.4949, - "y": 43.6417 - }, - { - "l": "25.0", - "x": 1.514, - "y": 43.6792 - }, - { - "l": "25.0", - "x": 1.5332, - "y": 43.716 - }, - { - "l": "25.0", - "x": 1.5524, - "y": 43.752 - }, - { - "l": "25.0", - "x": 1.5715, - "y": 43.7871 - }, - { - "l": "25.0", - "x": 1.5907, - "y": 43.8198 - }, - { - "l": "25.0", - "x": 1.6099, - "y": 43.8505 - }, - { - "l": "25.0", - "x": 1.629, - "y": 43.8806 - }, - { - "l": "25.0", - "x": 1.6482, - "y": 43.9103 - }, - { - "l": "25.0", - "x": 1.6674, - "y": 43.9402 - }, - { - "l": "25.0", - "x": 1.6865, - "y": 43.9723 - }, - { - "l": "25.0", - "x": 1.7057, - "y": 44.005 - }, - { - "l": "25.0", - "x": 1.7248, - "y": 44.0379 - }, - { - "l": "25.0", - "x": 1.744, - "y": 44.0707 - }, - { - "l": "25.0", - "x": 1.7632, - "y": 44.1033 - }, - { - "l": "25.0", - "x": 1.7823, - "y": 44.1355 - }, - { - "l": "25.0", - "x": 1.8015, - "y": 44.1671 - }, - { - "l": "25.0", - "x": 1.8207, - "y": 44.198 - }, - { - "l": "25.0", - "x": 1.8398, - "y": 44.2273 - }, - { - "l": "25.0", - "x": 1.859, - "y": 44.255 - }, - { - "l": "25.0", - "x": 1.8782, - "y": 44.2822 - }, - { - "l": "25.0", - "x": 1.8973, - "y": 44.3093 - }, - { - "l": "25.0", - "x": 1.9165, - "y": 44.3366 - }, - { - "l": "25.0", - "x": 1.9357, - "y": 44.366 - }, - { - "l": "25.0", - "x": 1.9548, - "y": 44.3961 - }, - { - "l": "25.0", - "x": 1.974, - "y": 44.4265 - }, - { - "l": "25.0", - "x": 1.9932, - "y": 44.4569 - }, - { - "l": "25.0", - "x": 2.0123, - "y": 44.4872 - }, - { - "l": "25.0", - "x": 2.0957, - "y": 44.6118 - }, - { - "l": "25.0", - "x": 2.179, - "y": 44.7222 - }, - { - "l": "25.0", - "x": 2.2623, - "y": 44.8417 - }, - { - "l": "25.0", - "x": 2.3457, - "y": 44.9539 - }, - { - "l": "25.0", - "x": 2.429, - "y": 45.0527 - }, - { - "l": "25.0", - "x": 2.5123, - "y": 45.1599 - }, - { - "l": "25.0", - "x": 2.5957, - "y": 45.2609 - }, - { - "l": "25.0", - "x": 2.679, - "y": 45.3504 - }, - { - "l": "25.0", - "x": 2.7623, - "y": 45.448 - }, - { - "l": "25.0", - "x": 2.8457, - "y": 45.5398 - }, - { - "l": "25.0", - "x": 2.929, - "y": 45.621 - }, - { - "l": "25.0", - "x": 3.0123, - "y": 45.7092 - }, - { - "l": "25.0", - "x": 3.0957, - "y": 45.7918 - }, - { - "l": "25.0", - "x": 3.179, - "y": 45.8647 - }, - { - "l": "25.0", - "x": 3.2623, - "y": 45.9435 - }, - { - "l": "25.0", - "x": 3.3457, - "y": 46.0173 - }, - { - "l": "25.0", - "x": 3.429, - "y": 46.0824 - }, - { - "l": "25.0", - "x": 3.5123, - "y": 46.1526 - }, - { - "l": "25.0", - "x": 3.5957, - "y": 46.2184 - }, - { - "l": "25.0", - "x": 3.679, - "y": 46.2762 - }, - { - "l": "25.0", - "x": 3.7623, - "y": 46.3388 - }, - { - "l": "25.0", - "x": 3.8457, - "y": 46.3975 - }, - { - "l": "25.0", - "x": 3.929, - "y": 46.4493 - }, - { - "l": "25.0", - "x": 4.0123, - "y": 46.5054 - }, - { - "l": "25.0", - "x": 4.0957, - "y": 46.5581 - }, - { - "l": "25.0", - "x": 4.179, - "y": 46.6047 - }, - { - "l": "25.0", - "x": 4.2623, - "y": 46.6553 - }, - { - "l": "25.0", - "x": 4.3457, - "y": 46.7029 - }, - { - "l": "25.0", - "x": 4.429, - "y": 46.7449 - }, - { - "l": "25.0", - "x": 4.5123, - "y": 46.7905 - }, - { - "l": "25.0", - "x": 4.5957, - "y": 46.8334 - }, - { - "l": "25.0", - "x": 4.679, - "y": 46.8713 - }, - { - "l": "25.0", - "x": 4.7623, - "y": 46.9124 - }, - { - "l": "25.0", - "x": 4.8457, - "y": 46.9512 - }, - { - "l": "25.0", - "x": 4.929, - "y": 46.9853 - }, - { - "l": "25.0", - "x": 5.0123, - "y": 47.0223 - }, - { - "l": "25.0", - "x": 5.0957, - "y": 47.0569 - }, - { - "l": "25.0", - "x": 5.179, - "y": 47.0874 - }, - { - "l": "25.0", - "x": 5.2623, - "y": 47.1204 - }, - { - "l": "25.0", - "x": 5.3457, - "y": 47.1515 - }, - { - "l": "25.0", - "x": 5.429, - "y": 47.1791 - }, - { - "l": "25.0", - "x": 5.5123, - "y": 47.2094 - }, - { - "l": "25.0", - "x": 5.5957, - "y": 47.2383 - }, - { - "l": "25.0", - "x": 5.679, - "y": 47.2644 - }, - { - "l": "25.0", - "x": 5.7623, - "y": 47.2931 - }, - { - "l": "25.0", - "x": 5.8457, - "y": 47.3207 - }, - { - "l": "25.0", - "x": 5.929, - "y": 47.3456 - }, - { - "l": "25.0", - "x": 6.0123, - "y": 47.3736 - }, - { - "l": "25.0", - "x": 6.0957, - "y": 47.4006 - }, - { - "l": "25.0", - "x": 6.179, - "y": 47.4253 - }, - { - "l": "25.0", - "x": 6.2623, - "y": 47.4531 - }, - { - "l": "25.0", - "x": 6.3457, - "y": 47.4804 - }, - { - "l": "25.0", - "x": 6.429, - "y": 47.5055 - }, - { - "l": "25.0", - "x": 6.5123, - "y": 47.5345 - }, - { - "l": "25.0", - "x": 6.5957, - "y": 47.5632 - }, - { - "l": "25.0", - "x": 6.679, - "y": 47.5903 - }, - { - "l": "25.0", - "x": 6.7623, - "y": 47.6216 - }, - { - "l": "25.0", - "x": 6.8457, - "y": 47.6534 - }, - { - "l": "25.0", - "x": 6.929, - "y": 47.6837 - }, - { - "l": "25.0", - "x": 7.0123, - "y": 47.7189 - }, - { - "l": "25.0", - "x": 7.0957, - "y": 47.7539 - }, - { - "l": "25.0", - "x": 7.179, - "y": 47.7869 - }, - { - "l": "25.0", - "x": 7.2623, - "y": 47.8249 - }, - { - "l": "25.0", - "x": 7.3457, - "y": 47.863 - }, - { - "l": "25.0", - "x": 7.429, - "y": 47.8985 - }, - { - "l": "25.0", - "x": 7.5123, - "y": 47.9391 - }, - { - "l": "25.0", - "x": 7.5957, - "y": 47.9794 - }, - { - "l": "25.0", - "x": 7.679, - "y": 48.0165 - }, - { - "l": "25.0", - "x": 7.7623, - "y": 48.0587 - }, - { - "l": "25.0", - "x": 7.8457, - "y": 48.1002 - }, - { - "l": "25.0", - "x": 7.929, - "y": 48.1383 - }, - { - "l": "25.0", - "x": 8.0123, - "y": 48.1811 - }, - { - "l": "25.0", - "x": 8.0957, - "y": 48.2228 - }, - { - "l": "25.0", - "x": 8.179, - "y": 48.2608 - }, - { - "l": "25.0", - "x": 8.2623, - "y": 48.3033 - }, - { - "l": "25.0", - "x": 8.3457, - "y": 48.3444 - }, - { - "l": "25.0", - "x": 8.429, - "y": 48.3817 - }, - { - "l": "25.0", - "x": 8.5123, - "y": 48.4232 - }, - { - "l": "25.0", - "x": 8.5957, - "y": 48.4635 - }, - { - "l": "25.0", - "x": 8.679, - "y": 48.5003 - }, - { - "l": "25.0", - "x": 8.7623, - "y": 48.5412 - }, - { - "l": "25.0", - "x": 8.8457, - "y": 48.5811 - }, - { - "l": "25.0", - "x": 8.929, - "y": 48.6175 - }, - { - "l": "25.0", - "x": 9.0123, - "y": 48.6584 - }, - { - "l": "25.0", - "x": 9.0957, - "y": 48.6983 - }, - { - "l": "25.0", - "x": 9.179, - "y": 48.735 - }, - { - "l": "25.0", - "x": 9.2623, - "y": 48.7764 - }, - { - "l": "25.0", - "x": 9.3457, - "y": 48.8168 - }, - { - "l": "25.0", - "x": 9.429, - "y": 48.8537 - }, - { - "l": "25.0", - "x": 9.5123, - "y": 48.8951 - }, - { - "l": "25.0", - "x": 9.5957, - "y": 48.9352 - }, - { - "l": "25.0", - "x": 9.679, - "y": 48.9718 - }, - { - "l": "25.0", - "x": 9.7623, - "y": 49.0126 - }, - { - "l": "25.0", - "x": 9.8457, - "y": 49.0521 - }, - { - "l": "25.0", - "x": 9.929, - "y": 49.088 - }, - { - "l": "25.0", - "x": 10.0123, - "y": 49.1277 - }, - { - "l": "25.0", - "x": 10.0957, - "y": 49.1662 - }, - { - "l": "25.0", - "x": 10.179, - "y": 49.2015 - }, - { - "l": "25.0", - "x": 10.2623, - "y": 49.241 - }, - { - "l": "25.0", - "x": 10.3457, - "y": 49.2789 - }, - { - "l": "25.0", - "x": 10.429, - "y": 49.3128 - }, - { - "l": "25.0", - "x": 10.5123, - "y": 49.3506 - }, - { - "l": "25.0", - "x": 10.5957, - "y": 49.3869 - }, - { - "l": "25.0", - "x": 10.679, - "y": 49.4196 - }, - { - "l": "25.0", - "x": 10.7623, - "y": 49.4557 - }, - { - "l": "25.0", - "x": 10.8457, - "y": 49.4905 - }, - { - "l": "25.0", - "x": 10.929, - "y": 49.5217 - }, - { - "l": "25.0", - "x": 11.0123, - "y": 49.556 - }, - { - "l": "25.0", - "x": 11.0957, - "y": 49.5891 - }, - { - "l": "25.0", - "x": 11.179, - "y": 49.6193 - }, - { - "l": "25.0", - "x": 11.2623, - "y": 49.6528 - }, - { - "l": "25.0", - "x": 11.3457, - "y": 49.6846 - }, - { - "l": "25.0", - "x": 11.429, - "y": 49.7131 - }, - { - "l": "25.0", - "x": 11.5123, - "y": 49.745 - }, - { - "l": "25.0", - "x": 11.5957, - "y": 49.7759 - }, - { - "l": "25.0", - "x": 11.679, - "y": 49.8036 - }, - { - "l": "25.0", - "x": 11.7623, - "y": 49.8345 - }, - { - "l": "25.0", - "x": 11.8457, - "y": 49.8643 - }, - { - "l": "25.0", - "x": 11.929, - "y": 49.8912 - }, - { - "l": "25.0", - "x": 12.0123, - "y": 49.9202 - }, - { - "l": "25.0", - "x": 12.0957, - "y": 49.9484 - }, - { - "l": "25.0", - "x": 12.179, - "y": 49.9741 - }, - { - "l": "25.0", - "x": 12.2623, - "y": 50.0031 - }, - { - "l": "25.0", - "x": 12.3457, - "y": 50.0313 - }, - { - "l": "25.0", - "x": 12.429, - "y": 50.057 - }, - { - "l": "25.0", - "x": 12.5123, - "y": 50.0847 - }, - { - "l": "25.0", - "x": 12.5957, - "y": 50.1106 - }, - { - "l": "25.0", - "x": 12.679, - "y": 50.1342 - }, - { - "l": "25.0", - "x": 12.7623, - "y": 50.1602 - }, - { - "l": "25.0", - "x": 12.8457, - "y": 50.1849 - }, - { - "l": "25.0", - "x": 12.929, - "y": 50.207 - }, - { - "l": "25.0", - "x": 13.0123, - "y": 50.2312 - }, - { - "l": "25.0", - "x": 13.0957, - "y": 50.2544 - }, - { - "l": "25.0", - "x": 13.179, - "y": 50.275 - }, - { - "l": "25.0", - "x": 13.2623, - "y": 50.2972 - }, - { - "l": "25.0", - "x": 13.3457, - "y": 50.3182 - }, - { - "l": "25.0", - "x": 13.429, - "y": 50.3373 - }, - { - "l": "25.0", - "x": 13.5123, - "y": 50.3577 - }, - { - "l": "25.0", - "x": 13.5957, - "y": 50.3767 - }, - { - "l": "25.0", - "x": 13.679, - "y": 50.3934 - }, - { - "l": "25.0", - "x": 13.7623, - "y": 50.4114 - }, - { - "l": "25.0", - "x": 13.8457, - "y": 50.4281 - }, - { - "l": "25.0", - "x": 13.929, - "y": 50.4424 - }, - { - "l": "25.0", - "x": 14.0123, - "y": 50.4575 - }, - { - "l": "25.0", - "x": 14.0957, - "y": 50.4716 - }, - { - "l": "25.0", - "x": 14.179, - "y": 50.4835 - }, - { - "l": "25.0", - "x": 14.2623, - "y": 50.4959 - }, - { - "l": "25.0", - "x": 14.3457, - "y": 50.5073 - }, - { - "l": "25.0", - "x": 14.429, - "y": 50.517 - }, - { - "l": "25.0", - "x": 14.5123, - "y": 50.5268 - }, - { - "l": "25.0", - "x": 14.5957, - "y": 50.5363 - }, - { - "l": "25.0", - "x": 14.679, - "y": 50.5443 - }, - { - "l": "25.0", - "x": 14.7623, - "y": 50.5526 - }, - { - "l": "25.0", - "x": 14.8457, - "y": 50.5599 - }, - { - "l": "25.0", - "x": 14.929, - "y": 50.5657 - }, - { - "l": "25.0", - "x": 15.0123, - "y": 50.5723 - }, - { - "l": "25.0", - "x": 15.0957, - "y": 50.5787 - }, - { - "l": "25.0", - "x": 15.179, - "y": 50.5836 - }, - { - "l": "25.0", - "x": 15.2623, - "y": 50.5889 - }, - { - "l": "25.0", - "x": 15.3457, - "y": 50.5936 - }, - { - "l": "25.0", - "x": 15.429, - "y": 50.5974 - }, - { - "l": "25.0", - "x": 15.5123, - "y": 50.6017 - }, - { - "l": "25.0", - "x": 15.5957, - "y": 50.6058 - }, - { - "l": "25.0", - "x": 15.679, - "y": 50.6092 - }, - { - "l": "25.0", - "x": 15.7623, - "y": 50.6127 - }, - { - "l": "25.0", - "x": 15.8457, - "y": 50.6158 - }, - { - "l": "25.0", - "x": 15.929, - "y": 50.6186 - }, - { - "l": "25.0", - "x": 16.0123, - "y": 50.6213 - }, - { - "l": "25.0", - "x": 16.0957, - "y": 50.6237 - }, - { - "l": "25.0", - "x": 16.179, - "y": 50.6257 - }, - { - "l": "25.0", - "x": 16.2623, - "y": 50.6276 - }, - { - "l": "25.0", - "x": 16.3457, - "y": 50.6288 - }, - { - "l": "25.0", - "x": 16.429, - "y": 50.6296 - }, - { - "l": "25.0", - "x": 16.5123, - "y": 50.6305 - }, - { - "l": "25.0", - "x": 16.5957, - "y": 50.6314 - }, - { - "l": "25.0", - "x": 16.679, - "y": 50.6322 - }, - { - "l": "25.0", - "x": 16.7623, - "y": 50.6325 - }, - { - "l": "25.0", - "x": 16.8457, - "y": 50.6332 - }, - { - "l": "25.0", - "x": 16.929, - "y": 50.6342 - }, - { - "l": "25.0", - "x": 17.0123, - "y": 50.6358 - }, - { - "l": "25.0", - "x": 17.0957, - "y": 50.6383 - }, - { - "l": "25.0", - "x": 17.179, - "y": 50.6405 - }, - { - "l": "25.0", - "x": 17.2623, - "y": 50.643 - }, - { - "l": "25.0", - "x": 17.3457, - "y": 50.6458 - }, - { - "l": "25.0", - "x": 17.429, - "y": 50.6491 - }, - { - "l": "25.0", - "x": 17.5123, - "y": 50.6532 - }, - { - "l": "25.0", - "x": 17.5957, - "y": 50.6574 - }, - { - "l": "25.0", - "x": 17.679, - "y": 50.6614 - }, - { - "l": "25.0", - "x": 17.7623, - "y": 50.6667 - }, - { - "l": "25.0", - "x": 17.8457, - "y": 50.6718 - }, - { - "l": "25.0", - "x": 17.929, - "y": 50.6766 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 0.0, - "y": 33.0247 - }, - { - "l": "50.0", - "x": 0.0192, - "y": 33.4208 - }, - { - "l": "50.0", - "x": 0.0383, - "y": 33.8169 - }, - { - "l": "50.0", - "x": 0.0575, - "y": 34.213 - }, - { - "l": "50.0", - "x": 0.0767, - "y": 34.6091 - }, - { - "l": "50.0", - "x": 0.0958, - "y": 34.966 - }, - { - "l": "50.0", - "x": 0.115, - "y": 35.3038 - }, - { - "l": "50.0", - "x": 0.1342, - "y": 35.633 - }, - { - "l": "50.0", - "x": 0.1533, - "y": 35.9572 - }, - { - "l": "50.0", - "x": 0.1725, - "y": 36.2823 - }, - { - "l": "50.0", - "x": 0.1916, - "y": 36.6245 - }, - { - "l": "50.0", - "x": 0.2108, - "y": 36.9644 - }, - { - "l": "50.0", - "x": 0.23, - "y": 37.2993 - }, - { - "l": "50.0", - "x": 0.2491, - "y": 37.627 - }, - { - "l": "50.0", - "x": 0.2683, - "y": 37.9418 - }, - { - "l": "50.0", - "x": 0.2875, - "y": 38.2451 - }, - { - "l": "50.0", - "x": 0.3066, - "y": 38.5358 - }, - { - "l": "50.0", - "x": 0.3258, - "y": 38.8123 - }, - { - "l": "50.0", - "x": 0.345, - "y": 39.0627 - }, - { - "l": "50.0", - "x": 0.3641, - "y": 39.2957 - }, - { - "l": "50.0", - "x": 0.3833, - "y": 39.5173 - }, - { - "l": "50.0", - "x": 0.4025, - "y": 39.7304 - }, - { - "l": "50.0", - "x": 0.4216, - "y": 39.939 - }, - { - "l": "50.0", - "x": 0.4408, - "y": 40.1565 - }, - { - "l": "50.0", - "x": 0.46, - "y": 40.3686 - }, - { - "l": "50.0", - "x": 0.4791, - "y": 40.5737 - }, - { - "l": "50.0", - "x": 0.4983, - "y": 40.7704 - }, - { - "l": "50.0", - "x": 0.5175, - "y": 40.954 - }, - { - "l": "50.0", - "x": 0.5366, - "y": 41.127 - }, - { - "l": "50.0", - "x": 0.5558, - "y": 41.2895 - }, - { - "l": "50.0", - "x": 0.5749, - "y": 41.4414 - }, - { - "l": "50.0", - "x": 0.5941, - "y": 41.5771 - }, - { - "l": "50.0", - "x": 0.6133, - "y": 41.701 - }, - { - "l": "50.0", - "x": 0.6324, - "y": 41.8171 - }, - { - "l": "50.0", - "x": 0.6516, - "y": 41.9273 - }, - { - "l": "50.0", - "x": 0.6708, - "y": 42.034 - }, - { - "l": "50.0", - "x": 0.6899, - "y": 42.1461 - }, - { - "l": "50.0", - "x": 0.7091, - "y": 42.2553 - }, - { - "l": "50.0", - "x": 0.7283, - "y": 42.3612 - }, - { - "l": "50.0", - "x": 0.7474, - "y": 42.4631 - }, - { - "l": "50.0", - "x": 0.7666, - "y": 42.5599 - }, - { - "l": "50.0", - "x": 0.7858, - "y": 42.6519 - }, - { - "l": "50.0", - "x": 0.8049, - "y": 42.7392 - }, - { - "l": "50.0", - "x": 0.8241, - "y": 42.8217 - }, - { - "l": "50.0", - "x": 0.8433, - "y": 42.8966 - }, - { - "l": "50.0", - "x": 0.8624, - "y": 42.9658 - }, - { - "l": "50.0", - "x": 0.8816, - "y": 43.0316 - }, - { - "l": "50.0", - "x": 0.9008, - "y": 43.0948 - }, - { - "l": "50.0", - "x": 0.9199, - "y": 43.1565 - }, - { - "l": "50.0", - "x": 0.9391, - "y": 43.2219 - }, - { - "l": "50.0", - "x": 0.9582, - "y": 43.2863 - }, - { - "l": "50.0", - "x": 0.9774, - "y": 43.3492 - }, - { - "l": "50.0", - "x": 0.9966, - "y": 43.4104 - }, - { - "l": "50.0", - "x": 1.0157, - "y": 43.4688 - }, - { - "l": "50.0", - "x": 1.0349, - "y": 43.5249 - }, - { - "l": "50.0", - "x": 1.0541, - "y": 43.5786 - }, - { - "l": "50.0", - "x": 1.0732, - "y": 43.6297 - }, - { - "l": "50.0", - "x": 1.0924, - "y": 43.6766 - }, - { - "l": "50.0", - "x": 1.1116, - "y": 43.7202 - }, - { - "l": "50.0", - "x": 1.1307, - "y": 43.7621 - }, - { - "l": "50.0", - "x": 1.1499, - "y": 43.8031 - }, - { - "l": "50.0", - "x": 1.1691, - "y": 43.8437 - }, - { - "l": "50.0", - "x": 1.1882, - "y": 43.8874 - }, - { - "l": "50.0", - "x": 1.2074, - "y": 43.9313 - }, - { - "l": "50.0", - "x": 1.2266, - "y": 43.9751 - }, - { - "l": "50.0", - "x": 1.2457, - "y": 44.0186 - }, - { - "l": "50.0", - "x": 1.2649, - "y": 44.0616 - }, - { - "l": "50.0", - "x": 1.2841, - "y": 44.104 - }, - { - "l": "50.0", - "x": 1.3032, - "y": 44.1455 - }, - { - "l": "50.0", - "x": 1.3224, - "y": 44.1859 - }, - { - "l": "50.0", - "x": 1.3415, - "y": 44.2237 - }, - { - "l": "50.0", - "x": 1.3607, - "y": 44.2596 - }, - { - "l": "50.0", - "x": 1.3799, - "y": 44.2947 - }, - { - "l": "50.0", - "x": 1.399, - "y": 44.3296 - }, - { - "l": "50.0", - "x": 1.4182, - "y": 44.3646 - }, - { - "l": "50.0", - "x": 1.4374, - "y": 44.4023 - }, - { - "l": "50.0", - "x": 1.4565, - "y": 44.4404 - }, - { - "l": "50.0", - "x": 1.4757, - "y": 44.4787 - }, - { - "l": "50.0", - "x": 1.4949, - "y": 44.5168 - }, - { - "l": "50.0", - "x": 1.514, - "y": 44.5543 - }, - { - "l": "50.0", - "x": 1.5332, - "y": 44.5912 - }, - { - "l": "50.0", - "x": 1.5524, - "y": 44.6272 - }, - { - "l": "50.0", - "x": 1.5715, - "y": 44.6623 - }, - { - "l": "50.0", - "x": 1.5907, - "y": 44.695 - }, - { - "l": "50.0", - "x": 1.6099, - "y": 44.7258 - }, - { - "l": "50.0", - "x": 1.629, - "y": 44.7559 - }, - { - "l": "50.0", - "x": 1.6482, - "y": 44.7856 - }, - { - "l": "50.0", - "x": 1.6674, - "y": 44.8155 - }, - { - "l": "50.0", - "x": 1.6865, - "y": 44.8476 - }, - { - "l": "50.0", - "x": 1.7057, - "y": 44.8804 - }, - { - "l": "50.0", - "x": 1.7248, - "y": 44.9133 - }, - { - "l": "50.0", - "x": 1.744, - "y": 44.9461 - }, - { - "l": "50.0", - "x": 1.7632, - "y": 44.9787 - }, - { - "l": "50.0", - "x": 1.7823, - "y": 45.0109 - }, - { - "l": "50.0", - "x": 1.8015, - "y": 45.0425 - }, - { - "l": "50.0", - "x": 1.8207, - "y": 45.0734 - }, - { - "l": "50.0", - "x": 1.8398, - "y": 45.1027 - }, - { - "l": "50.0", - "x": 1.859, - "y": 45.1303 - }, - { - "l": "50.0", - "x": 1.8782, - "y": 45.1575 - }, - { - "l": "50.0", - "x": 1.8973, - "y": 45.1846 - }, - { - "l": "50.0", - "x": 1.9165, - "y": 45.2119 - }, - { - "l": "50.0", - "x": 1.9357, - "y": 45.2413 - }, - { - "l": "50.0", - "x": 1.9548, - "y": 45.2714 - }, - { - "l": "50.0", - "x": 1.974, - "y": 45.3017 - }, - { - "l": "50.0", - "x": 1.9932, - "y": 45.3321 - }, - { - "l": "50.0", - "x": 2.0123, - "y": 45.3623 - }, - { - "l": "50.0", - "x": 2.0957, - "y": 45.4868 - }, - { - "l": "50.0", - "x": 2.179, - "y": 45.597 - }, - { - "l": "50.0", - "x": 2.2623, - "y": 45.7162 - }, - { - "l": "50.0", - "x": 2.3457, - "y": 45.8281 - }, - { - "l": "50.0", - "x": 2.429, - "y": 45.9268 - }, - { - "l": "50.0", - "x": 2.5123, - "y": 46.0339 - }, - { - "l": "50.0", - "x": 2.5957, - "y": 46.1348 - }, - { - "l": "50.0", - "x": 2.679, - "y": 46.2243 - }, - { - "l": "50.0", - "x": 2.7623, - "y": 46.3219 - }, - { - "l": "50.0", - "x": 2.8457, - "y": 46.4138 - }, - { - "l": "50.0", - "x": 2.929, - "y": 46.4951 - }, - { - "l": "50.0", - "x": 3.0123, - "y": 46.5834 - }, - { - "l": "50.0", - "x": 3.0957, - "y": 46.6662 - }, - { - "l": "50.0", - "x": 3.179, - "y": 46.7393 - }, - { - "l": "50.0", - "x": 3.2623, - "y": 46.8183 - }, - { - "l": "50.0", - "x": 3.3457, - "y": 46.8924 - }, - { - "l": "50.0", - "x": 3.429, - "y": 46.9577 - }, - { - "l": "50.0", - "x": 3.5123, - "y": 47.0282 - }, - { - "l": "50.0", - "x": 3.5957, - "y": 47.0942 - }, - { - "l": "50.0", - "x": 3.679, - "y": 47.1522 - }, - { - "l": "50.0", - "x": 3.7623, - "y": 47.2151 - }, - { - "l": "50.0", - "x": 3.8457, - "y": 47.274 - }, - { - "l": "50.0", - "x": 3.929, - "y": 47.3261 - }, - { - "l": "50.0", - "x": 4.0123, - "y": 47.3825 - }, - { - "l": "50.0", - "x": 4.0957, - "y": 47.4355 - }, - { - "l": "50.0", - "x": 4.179, - "y": 47.4824 - }, - { - "l": "50.0", - "x": 4.2623, - "y": 47.5332 - }, - { - "l": "50.0", - "x": 4.3457, - "y": 47.581 - }, - { - "l": "50.0", - "x": 4.429, - "y": 47.6233 - }, - { - "l": "50.0", - "x": 4.5123, - "y": 47.6692 - }, - { - "l": "50.0", - "x": 4.5957, - "y": 47.7123 - }, - { - "l": "50.0", - "x": 4.679, - "y": 47.7504 - }, - { - "l": "50.0", - "x": 4.7623, - "y": 47.7918 - }, - { - "l": "50.0", - "x": 4.8457, - "y": 47.8308 - }, - { - "l": "50.0", - "x": 4.929, - "y": 47.8651 - }, - { - "l": "50.0", - "x": 5.0123, - "y": 47.9023 - }, - { - "l": "50.0", - "x": 5.0957, - "y": 47.9371 - }, - { - "l": "50.0", - "x": 5.179, - "y": 47.9678 - }, - { - "l": "50.0", - "x": 5.2623, - "y": 48.001 - }, - { - "l": "50.0", - "x": 5.3457, - "y": 48.0323 - }, - { - "l": "50.0", - "x": 5.429, - "y": 48.0601 - }, - { - "l": "50.0", - "x": 5.5123, - "y": 48.0906 - }, - { - "l": "50.0", - "x": 5.5957, - "y": 48.1197 - }, - { - "l": "50.0", - "x": 5.679, - "y": 48.1459 - }, - { - "l": "50.0", - "x": 5.7623, - "y": 48.1748 - }, - { - "l": "50.0", - "x": 5.8457, - "y": 48.2026 - }, - { - "l": "50.0", - "x": 5.929, - "y": 48.2278 - }, - { - "l": "50.0", - "x": 6.0123, - "y": 48.2558 - }, - { - "l": "50.0", - "x": 6.0957, - "y": 48.2831 - }, - { - "l": "50.0", - "x": 6.179, - "y": 48.3079 - }, - { - "l": "50.0", - "x": 6.2623, - "y": 48.3359 - }, - { - "l": "50.0", - "x": 6.3457, - "y": 48.3634 - }, - { - "l": "50.0", - "x": 6.429, - "y": 48.3887 - }, - { - "l": "50.0", - "x": 6.5123, - "y": 48.4178 - }, - { - "l": "50.0", - "x": 6.5957, - "y": 48.4468 - }, - { - "l": "50.0", - "x": 6.679, - "y": 48.474 - }, - { - "l": "50.0", - "x": 6.7623, - "y": 48.5055 - }, - { - "l": "50.0", - "x": 6.8457, - "y": 48.5375 - }, - { - "l": "50.0", - "x": 6.929, - "y": 48.568 - }, - { - "l": "50.0", - "x": 7.0123, - "y": 48.6034 - }, - { - "l": "50.0", - "x": 7.0957, - "y": 48.6387 - }, - { - "l": "50.0", - "x": 7.179, - "y": 48.6719 - }, - { - "l": "50.0", - "x": 7.2623, - "y": 48.7102 - }, - { - "l": "50.0", - "x": 7.3457, - "y": 48.7485 - }, - { - "l": "50.0", - "x": 7.429, - "y": 48.7843 - }, - { - "l": "50.0", - "x": 7.5123, - "y": 48.8251 - }, - { - "l": "50.0", - "x": 7.5957, - "y": 48.8657 - }, - { - "l": "50.0", - "x": 7.679, - "y": 48.9031 - }, - { - "l": "50.0", - "x": 7.7623, - "y": 48.9455 - }, - { - "l": "50.0", - "x": 7.8457, - "y": 48.9872 - }, - { - "l": "50.0", - "x": 7.929, - "y": 49.0256 - }, - { - "l": "50.0", - "x": 8.0123, - "y": 49.0687 - }, - { - "l": "50.0", - "x": 8.0957, - "y": 49.1106 - }, - { - "l": "50.0", - "x": 8.179, - "y": 49.1488 - }, - { - "l": "50.0", - "x": 8.2623, - "y": 49.1916 - }, - { - "l": "50.0", - "x": 8.3457, - "y": 49.233 - }, - { - "l": "50.0", - "x": 8.429, - "y": 49.2705 - }, - { - "l": "50.0", - "x": 8.5123, - "y": 49.3123 - }, - { - "l": "50.0", - "x": 8.5957, - "y": 49.3529 - }, - { - "l": "50.0", - "x": 8.679, - "y": 49.3898 - }, - { - "l": "50.0", - "x": 8.7623, - "y": 49.431 - }, - { - "l": "50.0", - "x": 8.8457, - "y": 49.4711 - }, - { - "l": "50.0", - "x": 8.929, - "y": 49.5077 - }, - { - "l": "50.0", - "x": 9.0123, - "y": 49.5489 - }, - { - "l": "50.0", - "x": 9.0957, - "y": 49.589 - }, - { - "l": "50.0", - "x": 9.179, - "y": 49.626 - }, - { - "l": "50.0", - "x": 9.2623, - "y": 49.6676 - }, - { - "l": "50.0", - "x": 9.3457, - "y": 49.7082 - }, - { - "l": "50.0", - "x": 9.429, - "y": 49.7453 - }, - { - "l": "50.0", - "x": 9.5123, - "y": 49.787 - }, - { - "l": "50.0", - "x": 9.5957, - "y": 49.8273 - }, - { - "l": "50.0", - "x": 9.679, - "y": 49.8641 - }, - { - "l": "50.0", - "x": 9.7623, - "y": 49.9052 - }, - { - "l": "50.0", - "x": 9.8457, - "y": 49.9449 - }, - { - "l": "50.0", - "x": 9.929, - "y": 49.981 - }, - { - "l": "50.0", - "x": 10.0123, - "y": 50.021 - }, - { - "l": "50.0", - "x": 10.0957, - "y": 50.0597 - }, - { - "l": "50.0", - "x": 10.179, - "y": 50.0952 - }, - { - "l": "50.0", - "x": 10.2623, - "y": 50.135 - }, - { - "l": "50.0", - "x": 10.3457, - "y": 50.1731 - }, - { - "l": "50.0", - "x": 10.429, - "y": 50.2072 - }, - { - "l": "50.0", - "x": 10.5123, - "y": 50.2453 - }, - { - "l": "50.0", - "x": 10.5957, - "y": 50.2818 - }, - { - "l": "50.0", - "x": 10.679, - "y": 50.3147 - }, - { - "l": "50.0", - "x": 10.7623, - "y": 50.3511 - }, - { - "l": "50.0", - "x": 10.8457, - "y": 50.3861 - }, - { - "l": "50.0", - "x": 10.929, - "y": 50.4176 - }, - { - "l": "50.0", - "x": 11.0123, - "y": 50.4521 - }, - { - "l": "50.0", - "x": 11.0957, - "y": 50.4854 - }, - { - "l": "50.0", - "x": 11.179, - "y": 50.5159 - }, - { - "l": "50.0", - "x": 11.2623, - "y": 50.5496 - }, - { - "l": "50.0", - "x": 11.3457, - "y": 50.5816 - }, - { - "l": "50.0", - "x": 11.429, - "y": 50.6104 - }, - { - "l": "50.0", - "x": 11.5123, - "y": 50.6425 - }, - { - "l": "50.0", - "x": 11.5957, - "y": 50.6737 - }, - { - "l": "50.0", - "x": 11.679, - "y": 50.7016 - }, - { - "l": "50.0", - "x": 11.7623, - "y": 50.7328 - }, - { - "l": "50.0", - "x": 11.8457, - "y": 50.7628 - }, - { - "l": "50.0", - "x": 11.929, - "y": 50.79 - }, - { - "l": "50.0", - "x": 12.0123, - "y": 50.8192 - }, - { - "l": "50.0", - "x": 12.0957, - "y": 50.8477 - }, - { - "l": "50.0", - "x": 12.179, - "y": 50.8737 - }, - { - "l": "50.0", - "x": 12.2623, - "y": 50.9029 - }, - { - "l": "50.0", - "x": 12.3457, - "y": 50.9313 - }, - { - "l": "50.0", - "x": 12.429, - "y": 50.9572 - }, - { - "l": "50.0", - "x": 12.5123, - "y": 50.9852 - }, - { - "l": "50.0", - "x": 12.5957, - "y": 51.0114 - }, - { - "l": "50.0", - "x": 12.679, - "y": 51.0352 - }, - { - "l": "50.0", - "x": 12.7623, - "y": 51.0615 - }, - { - "l": "50.0", - "x": 12.8457, - "y": 51.0864 - }, - { - "l": "50.0", - "x": 12.929, - "y": 51.1087 - }, - { - "l": "50.0", - "x": 13.0123, - "y": 51.1332 - }, - { - "l": "50.0", - "x": 13.0957, - "y": 51.1566 - }, - { - "l": "50.0", - "x": 13.179, - "y": 51.1774 - }, - { - "l": "50.0", - "x": 13.2623, - "y": 51.1998 - }, - { - "l": "50.0", - "x": 13.3457, - "y": 51.2211 - }, - { - "l": "50.0", - "x": 13.429, - "y": 51.2404 - }, - { - "l": "50.0", - "x": 13.5123, - "y": 51.261 - }, - { - "l": "50.0", - "x": 13.5957, - "y": 51.2802 - }, - { - "l": "50.0", - "x": 13.679, - "y": 51.297 - }, - { - "l": "50.0", - "x": 13.7623, - "y": 51.3152 - }, - { - "l": "50.0", - "x": 13.8457, - "y": 51.3321 - }, - { - "l": "50.0", - "x": 13.929, - "y": 51.3466 - }, - { - "l": "50.0", - "x": 14.0123, - "y": 51.3618 - }, - { - "l": "50.0", - "x": 14.0957, - "y": 51.3761 - }, - { - "l": "50.0", - "x": 14.179, - "y": 51.3881 - }, - { - "l": "50.0", - "x": 14.2623, - "y": 51.4006 - }, - { - "l": "50.0", - "x": 14.3457, - "y": 51.4121 - }, - { - "l": "50.0", - "x": 14.429, - "y": 51.422 - }, - { - "l": "50.0", - "x": 14.5123, - "y": 51.4319 - }, - { - "l": "50.0", - "x": 14.5957, - "y": 51.4415 - }, - { - "l": "50.0", - "x": 14.679, - "y": 51.4496 - }, - { - "l": "50.0", - "x": 14.7623, - "y": 51.4579 - }, - { - "l": "50.0", - "x": 14.8457, - "y": 51.4653 - }, - { - "l": "50.0", - "x": 14.929, - "y": 51.4712 - }, - { - "l": "50.0", - "x": 15.0123, - "y": 51.4779 - }, - { - "l": "50.0", - "x": 15.0957, - "y": 51.4843 - }, - { - "l": "50.0", - "x": 15.179, - "y": 51.4893 - }, - { - "l": "50.0", - "x": 15.2623, - "y": 51.4946 - }, - { - "l": "50.0", - "x": 15.3457, - "y": 51.4993 - }, - { - "l": "50.0", - "x": 15.429, - "y": 51.5032 - }, - { - "l": "50.0", - "x": 15.5123, - "y": 51.5076 - }, - { - "l": "50.0", - "x": 15.5957, - "y": 51.5117 - }, - { - "l": "50.0", - "x": 15.679, - "y": 51.5151 - }, - { - "l": "50.0", - "x": 15.7623, - "y": 51.5187 - }, - { - "l": "50.0", - "x": 15.8457, - "y": 51.5219 - }, - { - "l": "50.0", - "x": 15.929, - "y": 51.5246 - }, - { - "l": "50.0", - "x": 16.0123, - "y": 51.5274 - }, - { - "l": "50.0", - "x": 16.0957, - "y": 51.5298 - }, - { - "l": "50.0", - "x": 16.179, - "y": 51.5319 - }, - { - "l": "50.0", - "x": 16.2623, - "y": 51.5337 - }, - { - "l": "50.0", - "x": 16.3457, - "y": 51.5349 - }, - { - "l": "50.0", - "x": 16.429, - "y": 51.5358 - }, - { - "l": "50.0", - "x": 16.5123, - "y": 51.5367 - }, - { - "l": "50.0", - "x": 16.5957, - "y": 51.5376 - }, - { - "l": "50.0", - "x": 16.679, - "y": 51.5384 - }, - { - "l": "50.0", - "x": 16.7623, - "y": 51.5387 - }, - { - "l": "50.0", - "x": 16.8457, - "y": 51.5394 - }, - { - "l": "50.0", - "x": 16.929, - "y": 51.5404 - }, - { - "l": "50.0", - "x": 17.0123, - "y": 51.542 - }, - { - "l": "50.0", - "x": 17.0957, - "y": 51.5445 - }, - { - "l": "50.0", - "x": 17.179, - "y": 51.5467 - }, - { - "l": "50.0", - "x": 17.2623, - "y": 51.5493 - }, - { - "l": "50.0", - "x": 17.3457, - "y": 51.5522 - }, - { - "l": "50.0", - "x": 17.429, - "y": 51.5555 - }, - { - "l": "50.0", - "x": 17.5123, - "y": 51.5596 - }, - { - "l": "50.0", - "x": 17.5957, - "y": 51.5639 - }, - { - "l": "50.0", - "x": 17.679, - "y": 51.5679 - }, - { - "l": "50.0", - "x": 17.7623, - "y": 51.5732 - }, - { - "l": "50.0", - "x": 17.8457, - "y": 51.5785 - }, - { - "l": "50.0", - "x": 17.929, - "y": 51.5832 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 0.0, - "y": 33.9021 - }, - { - "l": "75.0", - "x": 0.0192, - "y": 34.3022 - }, - { - "l": "75.0", - "x": 0.0383, - "y": 34.7022 - }, - { - "l": "75.0", - "x": 0.0575, - "y": 35.1019 - }, - { - "l": "75.0", - "x": 0.0767, - "y": 35.5016 - }, - { - "l": "75.0", - "x": 0.0958, - "y": 35.8615 - }, - { - "l": "75.0", - "x": 0.115, - "y": 36.2021 - }, - { - "l": "75.0", - "x": 0.1342, - "y": 36.5338 - }, - { - "l": "75.0", - "x": 0.1533, - "y": 36.8602 - }, - { - "l": "75.0", - "x": 0.1725, - "y": 37.1876 - }, - { - "l": "75.0", - "x": 0.1916, - "y": 37.5319 - }, - { - "l": "75.0", - "x": 0.2108, - "y": 37.8736 - }, - { - "l": "75.0", - "x": 0.23, - "y": 38.2103 - }, - { - "l": "75.0", - "x": 0.2491, - "y": 38.5393 - }, - { - "l": "75.0", - "x": 0.2683, - "y": 38.8553 - }, - { - "l": "75.0", - "x": 0.2875, - "y": 39.1596 - }, - { - "l": "75.0", - "x": 0.3066, - "y": 39.4509 - }, - { - "l": "75.0", - "x": 0.3258, - "y": 39.728 - }, - { - "l": "75.0", - "x": 0.345, - "y": 39.9786 - }, - { - "l": "75.0", - "x": 0.3641, - "y": 40.2117 - }, - { - "l": "75.0", - "x": 0.3833, - "y": 40.4333 - }, - { - "l": "75.0", - "x": 0.4025, - "y": 40.6461 - }, - { - "l": "75.0", - "x": 0.4216, - "y": 40.8543 - }, - { - "l": "75.0", - "x": 0.4408, - "y": 41.0712 - }, - { - "l": "75.0", - "x": 0.46, - "y": 41.2825 - }, - { - "l": "75.0", - "x": 0.4791, - "y": 41.4866 - }, - { - "l": "75.0", - "x": 0.4983, - "y": 41.6822 - }, - { - "l": "75.0", - "x": 0.5175, - "y": 41.8645 - }, - { - "l": "75.0", - "x": 0.5366, - "y": 42.0361 - }, - { - "l": "75.0", - "x": 0.5558, - "y": 42.1972 - }, - { - "l": "75.0", - "x": 0.5749, - "y": 42.3476 - }, - { - "l": "75.0", - "x": 0.5941, - "y": 42.4818 - }, - { - "l": "75.0", - "x": 0.6133, - "y": 42.6042 - }, - { - "l": "75.0", - "x": 0.6324, - "y": 42.7189 - }, - { - "l": "75.0", - "x": 0.6516, - "y": 42.8276 - }, - { - "l": "75.0", - "x": 0.6708, - "y": 42.9329 - }, - { - "l": "75.0", - "x": 0.6899, - "y": 43.0434 - }, - { - "l": "75.0", - "x": 0.7091, - "y": 43.1511 - }, - { - "l": "75.0", - "x": 0.7283, - "y": 43.2554 - }, - { - "l": "75.0", - "x": 0.7474, - "y": 43.3559 - }, - { - "l": "75.0", - "x": 0.7666, - "y": 43.4513 - }, - { - "l": "75.0", - "x": 0.7858, - "y": 43.542 - }, - { - "l": "75.0", - "x": 0.8049, - "y": 43.6281 - }, - { - "l": "75.0", - "x": 0.8241, - "y": 43.7094 - }, - { - "l": "75.0", - "x": 0.8433, - "y": 43.7833 - }, - { - "l": "75.0", - "x": 0.8624, - "y": 43.8516 - }, - { - "l": "75.0", - "x": 0.8816, - "y": 43.9165 - }, - { - "l": "75.0", - "x": 0.9008, - "y": 43.9789 - }, - { - "l": "75.0", - "x": 0.9199, - "y": 44.0399 - }, - { - "l": "75.0", - "x": 0.9391, - "y": 44.1045 - }, - { - "l": "75.0", - "x": 0.9582, - "y": 44.1681 - }, - { - "l": "75.0", - "x": 0.9774, - "y": 44.2303 - }, - { - "l": "75.0", - "x": 0.9966, - "y": 44.2907 - }, - { - "l": "75.0", - "x": 1.0157, - "y": 44.3486 - }, - { - "l": "75.0", - "x": 1.0349, - "y": 44.4041 - }, - { - "l": "75.0", - "x": 1.0541, - "y": 44.4572 - }, - { - "l": "75.0", - "x": 1.0732, - "y": 44.5079 - }, - { - "l": "75.0", - "x": 1.0924, - "y": 44.5543 - }, - { - "l": "75.0", - "x": 1.1116, - "y": 44.5974 - }, - { - "l": "75.0", - "x": 1.1307, - "y": 44.639 - }, - { - "l": "75.0", - "x": 1.1499, - "y": 44.6796 - }, - { - "l": "75.0", - "x": 1.1691, - "y": 44.72 - }, - { - "l": "75.0", - "x": 1.1882, - "y": 44.7634 - }, - { - "l": "75.0", - "x": 1.2074, - "y": 44.807 - }, - { - "l": "75.0", - "x": 1.2266, - "y": 44.8506 - }, - { - "l": "75.0", - "x": 1.2457, - "y": 44.8939 - }, - { - "l": "75.0", - "x": 1.2649, - "y": 44.9368 - }, - { - "l": "75.0", - "x": 1.2841, - "y": 44.979 - }, - { - "l": "75.0", - "x": 1.3032, - "y": 45.0204 - }, - { - "l": "75.0", - "x": 1.3224, - "y": 45.0608 - }, - { - "l": "75.0", - "x": 1.3415, - "y": 45.0986 - }, - { - "l": "75.0", - "x": 1.3607, - "y": 45.1344 - }, - { - "l": "75.0", - "x": 1.3799, - "y": 45.1696 - }, - { - "l": "75.0", - "x": 1.399, - "y": 45.2044 - }, - { - "l": "75.0", - "x": 1.4182, - "y": 45.2395 - }, - { - "l": "75.0", - "x": 1.4374, - "y": 45.2772 - }, - { - "l": "75.0", - "x": 1.4565, - "y": 45.3154 - }, - { - "l": "75.0", - "x": 1.4757, - "y": 45.3537 - }, - { - "l": "75.0", - "x": 1.4949, - "y": 45.3918 - }, - { - "l": "75.0", - "x": 1.514, - "y": 45.4294 - }, - { - "l": "75.0", - "x": 1.5332, - "y": 45.4663 - }, - { - "l": "75.0", - "x": 1.5524, - "y": 45.5024 - }, - { - "l": "75.0", - "x": 1.5715, - "y": 45.5375 - }, - { - "l": "75.0", - "x": 1.5907, - "y": 45.5703 - }, - { - "l": "75.0", - "x": 1.6099, - "y": 45.6011 - }, - { - "l": "75.0", - "x": 1.629, - "y": 45.6312 - }, - { - "l": "75.0", - "x": 1.6482, - "y": 45.661 - }, - { - "l": "75.0", - "x": 1.6674, - "y": 45.6909 - }, - { - "l": "75.0", - "x": 1.6865, - "y": 45.723 - }, - { - "l": "75.0", - "x": 1.7057, - "y": 45.7558 - }, - { - "l": "75.0", - "x": 1.7248, - "y": 45.7887 - }, - { - "l": "75.0", - "x": 1.744, - "y": 45.8215 - }, - { - "l": "75.0", - "x": 1.7632, - "y": 45.8541 - }, - { - "l": "75.0", - "x": 1.7823, - "y": 45.8863 - }, - { - "l": "75.0", - "x": 1.8015, - "y": 45.9179 - }, - { - "l": "75.0", - "x": 1.8207, - "y": 45.9488 - }, - { - "l": "75.0", - "x": 1.8398, - "y": 45.9781 - }, - { - "l": "75.0", - "x": 1.859, - "y": 46.0057 - }, - { - "l": "75.0", - "x": 1.8782, - "y": 46.0329 - }, - { - "l": "75.0", - "x": 1.8973, - "y": 46.0599 - }, - { - "l": "75.0", - "x": 1.9165, - "y": 46.0873 - }, - { - "l": "75.0", - "x": 1.9357, - "y": 46.1166 - }, - { - "l": "75.0", - "x": 1.9548, - "y": 46.1466 - }, - { - "l": "75.0", - "x": 1.974, - "y": 46.1769 - }, - { - "l": "75.0", - "x": 1.9932, - "y": 46.2073 - }, - { - "l": "75.0", - "x": 2.0123, - "y": 46.2375 - }, - { - "l": "75.0", - "x": 2.0957, - "y": 46.3618 - }, - { - "l": "75.0", - "x": 2.179, - "y": 46.4718 - }, - { - "l": "75.0", - "x": 2.2623, - "y": 46.5908 - }, - { - "l": "75.0", - "x": 2.3457, - "y": 46.7024 - }, - { - "l": "75.0", - "x": 2.429, - "y": 46.8009 - }, - { - "l": "75.0", - "x": 2.5123, - "y": 46.9078 - }, - { - "l": "75.0", - "x": 2.5957, - "y": 47.0086 - }, - { - "l": "75.0", - "x": 2.679, - "y": 47.0981 - }, - { - "l": "75.0", - "x": 2.7623, - "y": 47.1958 - }, - { - "l": "75.0", - "x": 2.8457, - "y": 47.2878 - }, - { - "l": "75.0", - "x": 2.929, - "y": 47.3692 - }, - { - "l": "75.0", - "x": 3.0123, - "y": 47.4577 - }, - { - "l": "75.0", - "x": 3.0957, - "y": 47.5407 - }, - { - "l": "75.0", - "x": 3.179, - "y": 47.6139 - }, - { - "l": "75.0", - "x": 3.2623, - "y": 47.6932 - }, - { - "l": "75.0", - "x": 3.3457, - "y": 47.7675 - }, - { - "l": "75.0", - "x": 3.429, - "y": 47.833 - }, - { - "l": "75.0", - "x": 3.5123, - "y": 47.9037 - }, - { - "l": "75.0", - "x": 3.5957, - "y": 47.97 - }, - { - "l": "75.0", - "x": 3.679, - "y": 48.0283 - }, - { - "l": "75.0", - "x": 3.7623, - "y": 48.0914 - }, - { - "l": "75.0", - "x": 3.8457, - "y": 48.1506 - }, - { - "l": "75.0", - "x": 3.929, - "y": 48.2029 - }, - { - "l": "75.0", - "x": 4.0123, - "y": 48.2597 - }, - { - "l": "75.0", - "x": 4.0957, - "y": 48.3129 - }, - { - "l": "75.0", - "x": 4.179, - "y": 48.36 - }, - { - "l": "75.0", - "x": 4.2623, - "y": 48.4111 - }, - { - "l": "75.0", - "x": 4.3457, - "y": 48.4592 - }, - { - "l": "75.0", - "x": 4.429, - "y": 48.5017 - }, - { - "l": "75.0", - "x": 4.5123, - "y": 48.5478 - }, - { - "l": "75.0", - "x": 4.5957, - "y": 48.5912 - }, - { - "l": "75.0", - "x": 4.679, - "y": 48.6295 - }, - { - "l": "75.0", - "x": 4.7623, - "y": 48.6712 - }, - { - "l": "75.0", - "x": 4.8457, - "y": 48.7104 - }, - { - "l": "75.0", - "x": 4.929, - "y": 48.7449 - }, - { - "l": "75.0", - "x": 5.0123, - "y": 48.7824 - }, - { - "l": "75.0", - "x": 5.0957, - "y": 48.8174 - }, - { - "l": "75.0", - "x": 5.179, - "y": 48.8483 - }, - { - "l": "75.0", - "x": 5.2623, - "y": 48.8817 - }, - { - "l": "75.0", - "x": 5.3457, - "y": 48.9132 - }, - { - "l": "75.0", - "x": 5.429, - "y": 48.9411 - }, - { - "l": "75.0", - "x": 5.5123, - "y": 48.9718 - }, - { - "l": "75.0", - "x": 5.5957, - "y": 49.0011 - }, - { - "l": "75.0", - "x": 5.679, - "y": 49.0275 - }, - { - "l": "75.0", - "x": 5.7623, - "y": 49.0566 - }, - { - "l": "75.0", - "x": 5.8457, - "y": 49.0845 - }, - { - "l": "75.0", - "x": 5.929, - "y": 49.1099 - }, - { - "l": "75.0", - "x": 6.0123, - "y": 49.1381 - }, - { - "l": "75.0", - "x": 6.0957, - "y": 49.1655 - }, - { - "l": "75.0", - "x": 6.179, - "y": 49.1906 - }, - { - "l": "75.0", - "x": 6.2623, - "y": 49.2187 - }, - { - "l": "75.0", - "x": 6.3457, - "y": 49.2464 - }, - { - "l": "75.0", - "x": 6.429, - "y": 49.2719 - }, - { - "l": "75.0", - "x": 6.5123, - "y": 49.3012 - }, - { - "l": "75.0", - "x": 6.5957, - "y": 49.3303 - }, - { - "l": "75.0", - "x": 6.679, - "y": 49.3577 - }, - { - "l": "75.0", - "x": 6.7623, - "y": 49.3894 - }, - { - "l": "75.0", - "x": 6.8457, - "y": 49.4216 - }, - { - "l": "75.0", - "x": 6.929, - "y": 49.4524 - }, - { - "l": "75.0", - "x": 7.0123, - "y": 49.488 - }, - { - "l": "75.0", - "x": 7.0957, - "y": 49.5235 - }, - { - "l": "75.0", - "x": 7.179, - "y": 49.5569 - }, - { - "l": "75.0", - "x": 7.2623, - "y": 49.5954 - }, - { - "l": "75.0", - "x": 7.3457, - "y": 49.634 - }, - { - "l": "75.0", - "x": 7.429, - "y": 49.67 - }, - { - "l": "75.0", - "x": 7.5123, - "y": 49.7112 - }, - { - "l": "75.0", - "x": 7.5957, - "y": 49.752 - }, - { - "l": "75.0", - "x": 7.679, - "y": 49.7896 - }, - { - "l": "75.0", - "x": 7.7623, - "y": 49.8323 - }, - { - "l": "75.0", - "x": 7.8457, - "y": 49.8743 - }, - { - "l": "75.0", - "x": 7.929, - "y": 49.9129 - }, - { - "l": "75.0", - "x": 8.0123, - "y": 49.9563 - }, - { - "l": "75.0", - "x": 8.0957, - "y": 49.9985 - }, - { - "l": "75.0", - "x": 8.179, - "y": 50.0369 - }, - { - "l": "75.0", - "x": 8.2623, - "y": 50.08 - }, - { - "l": "75.0", - "x": 8.3457, - "y": 50.1216 - }, - { - "l": "75.0", - "x": 8.429, - "y": 50.1594 - }, - { - "l": "75.0", - "x": 8.5123, - "y": 50.2014 - }, - { - "l": "75.0", - "x": 8.5957, - "y": 50.2422 - }, - { - "l": "75.0", - "x": 8.679, - "y": 50.2794 - }, - { - "l": "75.0", - "x": 8.7623, - "y": 50.3208 - }, - { - "l": "75.0", - "x": 8.8457, - "y": 50.3611 - }, - { - "l": "75.0", - "x": 8.929, - "y": 50.398 - }, - { - "l": "75.0", - "x": 9.0123, - "y": 50.4394 - }, - { - "l": "75.0", - "x": 9.0957, - "y": 50.4798 - }, - { - "l": "75.0", - "x": 9.179, - "y": 50.5169 - }, - { - "l": "75.0", - "x": 9.2623, - "y": 50.5588 - }, - { - "l": "75.0", - "x": 9.3457, - "y": 50.5996 - }, - { - "l": "75.0", - "x": 9.429, - "y": 50.637 - }, - { - "l": "75.0", - "x": 9.5123, - "y": 50.6788 - }, - { - "l": "75.0", - "x": 9.5957, - "y": 50.7194 - }, - { - "l": "75.0", - "x": 9.679, - "y": 50.7564 - }, - { - "l": "75.0", - "x": 9.7623, - "y": 50.7977 - }, - { - "l": "75.0", - "x": 9.8457, - "y": 50.8377 - }, - { - "l": "75.0", - "x": 9.929, - "y": 50.874 - }, - { - "l": "75.0", - "x": 10.0123, - "y": 50.9143 - }, - { - "l": "75.0", - "x": 10.0957, - "y": 50.9532 - }, - { - "l": "75.0", - "x": 10.179, - "y": 50.9889 - }, - { - "l": "75.0", - "x": 10.2623, - "y": 51.0289 - }, - { - "l": "75.0", - "x": 10.3457, - "y": 51.0673 - }, - { - "l": "75.0", - "x": 10.429, - "y": 51.1016 - }, - { - "l": "75.0", - "x": 10.5123, - "y": 51.14 - }, - { - "l": "75.0", - "x": 10.5957, - "y": 51.1767 - }, - { - "l": "75.0", - "x": 10.679, - "y": 51.2098 - }, - { - "l": "75.0", - "x": 10.7623, - "y": 51.2465 - }, - { - "l": "75.0", - "x": 10.8457, - "y": 51.2817 - }, - { - "l": "75.0", - "x": 10.929, - "y": 51.3134 - }, - { - "l": "75.0", - "x": 11.0123, - "y": 51.3482 - }, - { - "l": "75.0", - "x": 11.0957, - "y": 51.3818 - }, - { - "l": "75.0", - "x": 11.179, - "y": 51.4124 - }, - { - "l": "75.0", - "x": 11.2623, - "y": 51.4464 - }, - { - "l": "75.0", - "x": 11.3457, - "y": 51.4787 - }, - { - "l": "75.0", - "x": 11.429, - "y": 51.5077 - }, - { - "l": "75.0", - "x": 11.5123, - "y": 51.5401 - }, - { - "l": "75.0", - "x": 11.5957, - "y": 51.5715 - }, - { - "l": "75.0", - "x": 11.679, - "y": 51.5997 - }, - { - "l": "75.0", - "x": 11.7623, - "y": 51.6311 - }, - { - "l": "75.0", - "x": 11.8457, - "y": 51.6614 - }, - { - "l": "75.0", - "x": 11.929, - "y": 51.6888 - }, - { - "l": "75.0", - "x": 12.0123, - "y": 51.7183 - }, - { - "l": "75.0", - "x": 12.0957, - "y": 51.7469 - }, - { - "l": "75.0", - "x": 12.179, - "y": 51.7732 - }, - { - "l": "75.0", - "x": 12.2623, - "y": 51.8027 - }, - { - "l": "75.0", - "x": 12.3457, - "y": 51.8314 - }, - { - "l": "75.0", - "x": 12.429, - "y": 51.8575 - }, - { - "l": "75.0", - "x": 12.5123, - "y": 51.8858 - }, - { - "l": "75.0", - "x": 12.5957, - "y": 51.9122 - }, - { - "l": "75.0", - "x": 12.679, - "y": 51.9363 - }, - { - "l": "75.0", - "x": 12.7623, - "y": 51.9627 - }, - { - "l": "75.0", - "x": 12.8457, - "y": 51.988 - }, - { - "l": "75.0", - "x": 12.929, - "y": 52.0105 - }, - { - "l": "75.0", - "x": 13.0123, - "y": 52.0352 - }, - { - "l": "75.0", - "x": 13.0957, - "y": 52.0589 - }, - { - "l": "75.0", - "x": 13.179, - "y": 52.0799 - }, - { - "l": "75.0", - "x": 13.2623, - "y": 52.1025 - }, - { - "l": "75.0", - "x": 13.3457, - "y": 52.1239 - }, - { - "l": "75.0", - "x": 13.429, - "y": 52.1435 - }, - { - "l": "75.0", - "x": 13.5123, - "y": 52.1643 - }, - { - "l": "75.0", - "x": 13.5957, - "y": 52.1836 - }, - { - "l": "75.0", - "x": 13.679, - "y": 52.2007 - }, - { - "l": "75.0", - "x": 13.7623, - "y": 52.2191 - }, - { - "l": "75.0", - "x": 13.8457, - "y": 52.2361 - }, - { - "l": "75.0", - "x": 13.929, - "y": 52.2508 - }, - { - "l": "75.0", - "x": 14.0123, - "y": 52.2662 - }, - { - "l": "75.0", - "x": 14.0957, - "y": 52.2806 - }, - { - "l": "75.0", - "x": 14.179, - "y": 52.2927 - }, - { - "l": "75.0", - "x": 14.2623, - "y": 52.3054 - }, - { - "l": "75.0", - "x": 14.3457, - "y": 52.317 - }, - { - "l": "75.0", - "x": 14.429, - "y": 52.3269 - }, - { - "l": "75.0", - "x": 14.5123, - "y": 52.337 - }, - { - "l": "75.0", - "x": 14.5957, - "y": 52.3467 - }, - { - "l": "75.0", - "x": 14.679, - "y": 52.3549 - }, - { - "l": "75.0", - "x": 14.7623, - "y": 52.3633 - }, - { - "l": "75.0", - "x": 14.8457, - "y": 52.3707 - }, - { - "l": "75.0", - "x": 14.929, - "y": 52.3767 - }, - { - "l": "75.0", - "x": 15.0123, - "y": 52.3835 - }, - { - "l": "75.0", - "x": 15.0957, - "y": 52.3899 - }, - { - "l": "75.0", - "x": 15.179, - "y": 52.395 - }, - { - "l": "75.0", - "x": 15.2623, - "y": 52.4003 - }, - { - "l": "75.0", - "x": 15.3457, - "y": 52.4051 - }, - { - "l": "75.0", - "x": 15.429, - "y": 52.4091 - }, - { - "l": "75.0", - "x": 15.5123, - "y": 52.4135 - }, - { - "l": "75.0", - "x": 15.5957, - "y": 52.4176 - }, - { - "l": "75.0", - "x": 15.679, - "y": 52.4211 - }, - { - "l": "75.0", - "x": 15.7623, - "y": 52.4247 - }, - { - "l": "75.0", - "x": 15.8457, - "y": 52.4279 - }, - { - "l": "75.0", - "x": 15.929, - "y": 52.4307 - }, - { - "l": "75.0", - "x": 16.0123, - "y": 52.4335 - }, - { - "l": "75.0", - "x": 16.0957, - "y": 52.4359 - }, - { - "l": "75.0", - "x": 16.179, - "y": 52.438 - }, - { - "l": "75.0", - "x": 16.2623, - "y": 52.4399 - }, - { - "l": "75.0", - "x": 16.3457, - "y": 52.4411 - }, - { - "l": "75.0", - "x": 16.429, - "y": 52.4419 - }, - { - "l": "75.0", - "x": 16.5123, - "y": 52.4429 - }, - { - "l": "75.0", - "x": 16.5957, - "y": 52.4438 - }, - { - "l": "75.0", - "x": 16.679, - "y": 52.4446 - }, - { - "l": "75.0", - "x": 16.7623, - "y": 52.4449 - }, - { - "l": "75.0", - "x": 16.8457, - "y": 52.4456 - }, - { - "l": "75.0", - "x": 16.929, - "y": 52.4466 - }, - { - "l": "75.0", - "x": 17.0123, - "y": 52.4483 - }, - { - "l": "75.0", - "x": 17.0957, - "y": 52.4508 - }, - { - "l": "75.0", - "x": 17.179, - "y": 52.453 - }, - { - "l": "75.0", - "x": 17.2623, - "y": 52.4556 - }, - { - "l": "75.0", - "x": 17.3457, - "y": 52.4585 - }, - { - "l": "75.0", - "x": 17.429, - "y": 52.4618 - }, - { - "l": "75.0", - "x": 17.5123, - "y": 52.466 - }, - { - "l": "75.0", - "x": 17.5957, - "y": 52.4704 - }, - { - "l": "75.0", - "x": 17.679, - "y": 52.4744 - }, - { - "l": "75.0", - "x": 17.7623, - "y": 52.4798 - }, - { - "l": "75.0", - "x": 17.8457, - "y": 52.4851 - }, - { - "l": "75.0", - "x": 17.929, - "y": 52.4899 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 0.0, - "y": 34.7796 - }, - { - "l": "91.0", - "x": 0.0192, - "y": 35.1837 - }, - { - "l": "91.0", - "x": 0.0383, - "y": 35.5874 - }, - { - "l": "91.0", - "x": 0.0575, - "y": 35.9909 - }, - { - "l": "91.0", - "x": 0.0767, - "y": 36.394 - }, - { - "l": "91.0", - "x": 0.0958, - "y": 36.757 - }, - { - "l": "91.0", - "x": 0.115, - "y": 37.1003 - }, - { - "l": "91.0", - "x": 0.1342, - "y": 37.4345 - }, - { - "l": "91.0", - "x": 0.1533, - "y": 37.7633 - }, - { - "l": "91.0", - "x": 0.1725, - "y": 38.0928 - }, - { - "l": "91.0", - "x": 0.1916, - "y": 38.4392 - }, - { - "l": "91.0", - "x": 0.2108, - "y": 38.7828 - }, - { - "l": "91.0", - "x": 0.23, - "y": 39.1212 - }, - { - "l": "91.0", - "x": 0.2491, - "y": 39.4517 - }, - { - "l": "91.0", - "x": 0.2683, - "y": 39.7688 - }, - { - "l": "91.0", - "x": 0.2875, - "y": 40.074 - }, - { - "l": "91.0", - "x": 0.3066, - "y": 40.3661 - }, - { - "l": "91.0", - "x": 0.3258, - "y": 40.6436 - }, - { - "l": "91.0", - "x": 0.345, - "y": 40.8945 - }, - { - "l": "91.0", - "x": 0.3641, - "y": 41.1278 - }, - { - "l": "91.0", - "x": 0.3833, - "y": 41.3493 - }, - { - "l": "91.0", - "x": 0.4025, - "y": 41.5619 - }, - { - "l": "91.0", - "x": 0.4216, - "y": 41.7696 - }, - { - "l": "91.0", - "x": 0.4408, - "y": 41.9859 - }, - { - "l": "91.0", - "x": 0.46, - "y": 42.1963 - }, - { - "l": "91.0", - "x": 0.4791, - "y": 42.3996 - }, - { - "l": "91.0", - "x": 0.4983, - "y": 42.594 - }, - { - "l": "91.0", - "x": 0.5175, - "y": 42.7751 - }, - { - "l": "91.0", - "x": 0.5366, - "y": 42.9453 - }, - { - "l": "91.0", - "x": 0.5558, - "y": 43.1049 - }, - { - "l": "91.0", - "x": 0.5749, - "y": 43.2537 - }, - { - "l": "91.0", - "x": 0.5941, - "y": 43.3865 - }, - { - "l": "91.0", - "x": 0.6133, - "y": 43.5075 - }, - { - "l": "91.0", - "x": 0.6324, - "y": 43.6207 - }, - { - "l": "91.0", - "x": 0.6516, - "y": 43.728 - }, - { - "l": "91.0", - "x": 0.6708, - "y": 43.8318 - }, - { - "l": "91.0", - "x": 0.6899, - "y": 43.9408 - }, - { - "l": "91.0", - "x": 0.7091, - "y": 44.0469 - }, - { - "l": "91.0", - "x": 0.7283, - "y": 44.1497 - }, - { - "l": "91.0", - "x": 0.7474, - "y": 44.2487 - }, - { - "l": "91.0", - "x": 0.7666, - "y": 44.3427 - }, - { - "l": "91.0", - "x": 0.7858, - "y": 44.4321 - }, - { - "l": "91.0", - "x": 0.8049, - "y": 44.5169 - }, - { - "l": "91.0", - "x": 0.8241, - "y": 44.5971 - }, - { - "l": "91.0", - "x": 0.8433, - "y": 44.6699 - }, - { - "l": "91.0", - "x": 0.8624, - "y": 44.7373 - }, - { - "l": "91.0", - "x": 0.8816, - "y": 44.8013 - }, - { - "l": "91.0", - "x": 0.9008, - "y": 44.863 - }, - { - "l": "91.0", - "x": 0.9199, - "y": 44.9232 - }, - { - "l": "91.0", - "x": 0.9391, - "y": 44.987 - }, - { - "l": "91.0", - "x": 0.9582, - "y": 45.0498 - }, - { - "l": "91.0", - "x": 0.9774, - "y": 45.1113 - }, - { - "l": "91.0", - "x": 0.9966, - "y": 45.1711 - }, - { - "l": "91.0", - "x": 1.0157, - "y": 45.2283 - }, - { - "l": "91.0", - "x": 1.0349, - "y": 45.2832 - }, - { - "l": "91.0", - "x": 1.0541, - "y": 45.3358 - }, - { - "l": "91.0", - "x": 1.0732, - "y": 45.386 - }, - { - "l": "91.0", - "x": 1.0924, - "y": 45.4319 - }, - { - "l": "91.0", - "x": 1.1116, - "y": 45.4747 - }, - { - "l": "91.0", - "x": 1.1307, - "y": 45.5159 - }, - { - "l": "91.0", - "x": 1.1499, - "y": 45.5562 - }, - { - "l": "91.0", - "x": 1.1691, - "y": 45.5963 - }, - { - "l": "91.0", - "x": 1.1882, - "y": 45.6394 - }, - { - "l": "91.0", - "x": 1.2074, - "y": 45.6828 - }, - { - "l": "91.0", - "x": 1.2266, - "y": 45.7261 - }, - { - "l": "91.0", - "x": 1.2457, - "y": 45.7693 - }, - { - "l": "91.0", - "x": 1.2649, - "y": 45.812 - }, - { - "l": "91.0", - "x": 1.2841, - "y": 45.8541 - }, - { - "l": "91.0", - "x": 1.3032, - "y": 45.8954 - }, - { - "l": "91.0", - "x": 1.3224, - "y": 45.9357 - }, - { - "l": "91.0", - "x": 1.3415, - "y": 45.9735 - }, - { - "l": "91.0", - "x": 1.3607, - "y": 46.0093 - }, - { - "l": "91.0", - "x": 1.3799, - "y": 46.0444 - }, - { - "l": "91.0", - "x": 1.399, - "y": 46.0793 - }, - { - "l": "91.0", - "x": 1.4182, - "y": 46.1144 - }, - { - "l": "91.0", - "x": 1.4374, - "y": 46.1521 - }, - { - "l": "91.0", - "x": 1.4565, - "y": 46.1903 - }, - { - "l": "91.0", - "x": 1.4757, - "y": 46.2287 - }, - { - "l": "91.0", - "x": 1.4949, - "y": 46.2668 - }, - { - "l": "91.0", - "x": 1.514, - "y": 46.3045 - }, - { - "l": "91.0", - "x": 1.5332, - "y": 46.3414 - }, - { - "l": "91.0", - "x": 1.5524, - "y": 46.3776 - }, - { - "l": "91.0", - "x": 1.5715, - "y": 46.4127 - }, - { - "l": "91.0", - "x": 1.5907, - "y": 46.4455 - }, - { - "l": "91.0", - "x": 1.6099, - "y": 46.4764 - }, - { - "l": "91.0", - "x": 1.629, - "y": 46.5065 - }, - { - "l": "91.0", - "x": 1.6482, - "y": 46.5363 - }, - { - "l": "91.0", - "x": 1.6674, - "y": 46.5662 - }, - { - "l": "91.0", - "x": 1.6865, - "y": 46.5984 - }, - { - "l": "91.0", - "x": 1.7057, - "y": 46.6311 - }, - { - "l": "91.0", - "x": 1.7248, - "y": 46.6641 - }, - { - "l": "91.0", - "x": 1.744, - "y": 46.6969 - }, - { - "l": "91.0", - "x": 1.7632, - "y": 46.7295 - }, - { - "l": "91.0", - "x": 1.7823, - "y": 46.7617 - }, - { - "l": "91.0", - "x": 1.8015, - "y": 46.7933 - }, - { - "l": "91.0", - "x": 1.8207, - "y": 46.8242 - }, - { - "l": "91.0", - "x": 1.8398, - "y": 46.8535 - }, - { - "l": "91.0", - "x": 1.859, - "y": 46.8811 - }, - { - "l": "91.0", - "x": 1.8782, - "y": 46.9082 - }, - { - "l": "91.0", - "x": 1.8973, - "y": 46.9353 - }, - { - "l": "91.0", - "x": 1.9165, - "y": 46.9626 - }, - { - "l": "91.0", - "x": 1.9357, - "y": 46.9919 - }, - { - "l": "91.0", - "x": 1.9548, - "y": 47.0219 - }, - { - "l": "91.0", - "x": 1.974, - "y": 47.0522 - }, - { - "l": "91.0", - "x": 1.9932, - "y": 47.0825 - }, - { - "l": "91.0", - "x": 2.0123, - "y": 47.1127 - }, - { - "l": "91.0", - "x": 2.0957, - "y": 47.2368 - }, - { - "l": "91.0", - "x": 2.179, - "y": 47.3465 - }, - { - "l": "91.0", - "x": 2.2623, - "y": 47.4653 - }, - { - "l": "91.0", - "x": 2.3457, - "y": 47.5767 - }, - { - "l": "91.0", - "x": 2.429, - "y": 47.675 - }, - { - "l": "91.0", - "x": 2.5123, - "y": 47.7818 - }, - { - "l": "91.0", - "x": 2.5957, - "y": 47.8825 - }, - { - "l": "91.0", - "x": 2.679, - "y": 47.972 - }, - { - "l": "91.0", - "x": 2.7623, - "y": 48.0696 - }, - { - "l": "91.0", - "x": 2.8457, - "y": 48.1617 - }, - { - "l": "91.0", - "x": 2.929, - "y": 48.2433 - }, - { - "l": "91.0", - "x": 3.0123, - "y": 48.3319 - }, - { - "l": "91.0", - "x": 3.0957, - "y": 48.4151 - }, - { - "l": "91.0", - "x": 3.179, - "y": 48.4885 - }, - { - "l": "91.0", - "x": 3.2623, - "y": 48.568 - }, - { - "l": "91.0", - "x": 3.3457, - "y": 48.6425 - }, - { - "l": "91.0", - "x": 3.429, - "y": 48.7082 - }, - { - "l": "91.0", - "x": 3.5123, - "y": 48.7793 - }, - { - "l": "91.0", - "x": 3.5957, - "y": 48.8458 - }, - { - "l": "91.0", - "x": 3.679, - "y": 48.9043 - }, - { - "l": "91.0", - "x": 3.7623, - "y": 48.9677 - }, - { - "l": "91.0", - "x": 3.8457, - "y": 49.0272 - }, - { - "l": "91.0", - "x": 3.929, - "y": 49.0798 - }, - { - "l": "91.0", - "x": 4.0123, - "y": 49.1368 - }, - { - "l": "91.0", - "x": 4.0957, - "y": 49.1903 - }, - { - "l": "91.0", - "x": 4.179, - "y": 49.2376 - }, - { - "l": "91.0", - "x": 4.2623, - "y": 49.289 - }, - { - "l": "91.0", - "x": 4.3457, - "y": 49.3374 - }, - { - "l": "91.0", - "x": 4.429, - "y": 49.3801 - }, - { - "l": "91.0", - "x": 4.5123, - "y": 49.4265 - }, - { - "l": "91.0", - "x": 4.5957, - "y": 49.4701 - }, - { - "l": "91.0", - "x": 4.679, - "y": 49.5087 - }, - { - "l": "91.0", - "x": 4.7623, - "y": 49.5506 - }, - { - "l": "91.0", - "x": 4.8457, - "y": 49.59 - }, - { - "l": "91.0", - "x": 4.929, - "y": 49.6248 - }, - { - "l": "91.0", - "x": 5.0123, - "y": 49.6624 - }, - { - "l": "91.0", - "x": 5.0957, - "y": 49.6977 - }, - { - "l": "91.0", - "x": 5.179, - "y": 49.7287 - }, - { - "l": "91.0", - "x": 5.2623, - "y": 49.7624 - }, - { - "l": "91.0", - "x": 5.3457, - "y": 49.794 - }, - { - "l": "91.0", - "x": 5.429, - "y": 49.8222 - }, - { - "l": "91.0", - "x": 5.5123, - "y": 49.8531 - }, - { - "l": "91.0", - "x": 5.5957, - "y": 49.8826 - }, - { - "l": "91.0", - "x": 5.679, - "y": 49.9091 - }, - { - "l": "91.0", - "x": 5.7623, - "y": 49.9384 - }, - { - "l": "91.0", - "x": 5.8457, - "y": 49.9665 - }, - { - "l": "91.0", - "x": 5.929, - "y": 49.992 - }, - { - "l": "91.0", - "x": 6.0123, - "y": 50.0204 - }, - { - "l": "91.0", - "x": 6.0957, - "y": 50.048 - }, - { - "l": "91.0", - "x": 6.179, - "y": 50.0732 - }, - { - "l": "91.0", - "x": 6.2623, - "y": 50.1016 - }, - { - "l": "91.0", - "x": 6.3457, - "y": 50.1294 - }, - { - "l": "91.0", - "x": 6.429, - "y": 50.155 - }, - { - "l": "91.0", - "x": 6.5123, - "y": 50.1845 - }, - { - "l": "91.0", - "x": 6.5957, - "y": 50.2139 - }, - { - "l": "91.0", - "x": 6.679, - "y": 50.2414 - }, - { - "l": "91.0", - "x": 6.7623, - "y": 50.2733 - }, - { - "l": "91.0", - "x": 6.8457, - "y": 50.3058 - }, - { - "l": "91.0", - "x": 6.929, - "y": 50.3367 - }, - { - "l": "91.0", - "x": 7.0123, - "y": 50.3726 - }, - { - "l": "91.0", - "x": 7.0957, - "y": 50.4082 - }, - { - "l": "91.0", - "x": 7.179, - "y": 50.442 - }, - { - "l": "91.0", - "x": 7.2623, - "y": 50.4807 - }, - { - "l": "91.0", - "x": 7.3457, - "y": 50.5195 - }, - { - "l": "91.0", - "x": 7.429, - "y": 50.5558 - }, - { - "l": "91.0", - "x": 7.5123, - "y": 50.5972 - }, - { - "l": "91.0", - "x": 7.5957, - "y": 50.6382 - }, - { - "l": "91.0", - "x": 7.679, - "y": 50.6761 - }, - { - "l": "91.0", - "x": 7.7623, - "y": 50.7191 - }, - { - "l": "91.0", - "x": 7.8457, - "y": 50.7613 - }, - { - "l": "91.0", - "x": 7.929, - "y": 50.8002 - }, - { - "l": "91.0", - "x": 8.0123, - "y": 50.8439 - }, - { - "l": "91.0", - "x": 8.0957, - "y": 50.8863 - }, - { - "l": "91.0", - "x": 8.179, - "y": 50.925 - }, - { - "l": "91.0", - "x": 8.2623, - "y": 50.9683 - }, - { - "l": "91.0", - "x": 8.3457, - "y": 51.0102 - }, - { - "l": "91.0", - "x": 8.429, - "y": 51.0482 - }, - { - "l": "91.0", - "x": 8.5123, - "y": 51.0905 - }, - { - "l": "91.0", - "x": 8.5957, - "y": 51.1315 - }, - { - "l": "91.0", - "x": 8.679, - "y": 51.1689 - }, - { - "l": "91.0", - "x": 8.7623, - "y": 51.2106 - }, - { - "l": "91.0", - "x": 8.8457, - "y": 51.2512 - }, - { - "l": "91.0", - "x": 8.929, - "y": 51.2882 - }, - { - "l": "91.0", - "x": 9.0123, - "y": 51.3299 - }, - { - "l": "91.0", - "x": 9.0957, - "y": 51.3705 - }, - { - "l": "91.0", - "x": 9.179, - "y": 51.4079 - }, - { - "l": "91.0", - "x": 9.2623, - "y": 51.4499 - }, - { - "l": "91.0", - "x": 9.3457, - "y": 51.491 - }, - { - "l": "91.0", - "x": 9.429, - "y": 51.5286 - }, - { - "l": "91.0", - "x": 9.5123, - "y": 51.5707 - }, - { - "l": "91.0", - "x": 9.5957, - "y": 51.6115 - }, - { - "l": "91.0", - "x": 9.679, - "y": 51.6488 - }, - { - "l": "91.0", - "x": 9.7623, - "y": 51.6903 - }, - { - "l": "91.0", - "x": 9.8457, - "y": 51.7305 - }, - { - "l": "91.0", - "x": 9.929, - "y": 51.7671 - }, - { - "l": "91.0", - "x": 10.0123, - "y": 51.8075 - }, - { - "l": "91.0", - "x": 10.0957, - "y": 51.8467 - }, - { - "l": "91.0", - "x": 10.179, - "y": 51.8826 - }, - { - "l": "91.0", - "x": 10.2623, - "y": 51.9229 - }, - { - "l": "91.0", - "x": 10.3457, - "y": 51.9615 - }, - { - "l": "91.0", - "x": 10.429, - "y": 51.996 - }, - { - "l": "91.0", - "x": 10.5123, - "y": 52.0346 - }, - { - "l": "91.0", - "x": 10.5957, - "y": 52.0716 - }, - { - "l": "91.0", - "x": 10.679, - "y": 52.1049 - }, - { - "l": "91.0", - "x": 10.7623, - "y": 52.1419 - }, - { - "l": "91.0", - "x": 10.8457, - "y": 52.1773 - }, - { - "l": "91.0", - "x": 10.929, - "y": 52.2093 - }, - { - "l": "91.0", - "x": 11.0123, - "y": 52.2443 - }, - { - "l": "91.0", - "x": 11.0957, - "y": 52.2781 - }, - { - "l": "91.0", - "x": 11.179, - "y": 52.309 - }, - { - "l": "91.0", - "x": 11.2623, - "y": 52.3432 - }, - { - "l": "91.0", - "x": 11.3457, - "y": 52.3758 - }, - { - "l": "91.0", - "x": 11.429, - "y": 52.405 - }, - { - "l": "91.0", - "x": 11.5123, - "y": 52.4376 - }, - { - "l": "91.0", - "x": 11.5957, - "y": 52.4693 - }, - { - "l": "91.0", - "x": 11.679, - "y": 52.4977 - }, - { - "l": "91.0", - "x": 11.7623, - "y": 52.5294 - }, - { - "l": "91.0", - "x": 11.8457, - "y": 52.5599 - }, - { - "l": "91.0", - "x": 11.929, - "y": 52.5876 - }, - { - "l": "91.0", - "x": 12.0123, - "y": 52.6173 - }, - { - "l": "91.0", - "x": 12.0957, - "y": 52.6462 - }, - { - "l": "91.0", - "x": 12.179, - "y": 52.6727 - }, - { - "l": "91.0", - "x": 12.2623, - "y": 52.7024 - }, - { - "l": "91.0", - "x": 12.3457, - "y": 52.7314 - }, - { - "l": "91.0", - "x": 12.429, - "y": 52.7578 - }, - { - "l": "91.0", - "x": 12.5123, - "y": 52.7863 - }, - { - "l": "91.0", - "x": 12.5957, - "y": 52.813 - }, - { - "l": "91.0", - "x": 12.679, - "y": 52.8373 - }, - { - "l": "91.0", - "x": 12.7623, - "y": 52.864 - }, - { - "l": "91.0", - "x": 12.8457, - "y": 52.8895 - }, - { - "l": "91.0", - "x": 12.929, - "y": 52.9122 - }, - { - "l": "91.0", - "x": 13.0123, - "y": 52.9372 - }, - { - "l": "91.0", - "x": 13.0957, - "y": 52.9611 - }, - { - "l": "91.0", - "x": 13.179, - "y": 52.9823 - }, - { - "l": "91.0", - "x": 13.2623, - "y": 53.0051 - }, - { - "l": "91.0", - "x": 13.3457, - "y": 53.0268 - }, - { - "l": "91.0", - "x": 13.429, - "y": 53.0465 - }, - { - "l": "91.0", - "x": 13.5123, - "y": 53.0676 - }, - { - "l": "91.0", - "x": 13.5957, - "y": 53.0871 - }, - { - "l": "91.0", - "x": 13.679, - "y": 53.1043 - }, - { - "l": "91.0", - "x": 13.7623, - "y": 53.1229 - }, - { - "l": "91.0", - "x": 13.8457, - "y": 53.1401 - }, - { - "l": "91.0", - "x": 13.929, - "y": 53.1549 - }, - { - "l": "91.0", - "x": 14.0123, - "y": 53.1705 - }, - { - "l": "91.0", - "x": 14.0957, - "y": 53.185 - }, - { - "l": "91.0", - "x": 14.179, - "y": 53.1974 - }, - { - "l": "91.0", - "x": 14.2623, - "y": 53.2101 - }, - { - "l": "91.0", - "x": 14.3457, - "y": 53.2218 - }, - { - "l": "91.0", - "x": 14.429, - "y": 53.2319 - }, - { - "l": "91.0", - "x": 14.5123, - "y": 53.242 - }, - { - "l": "91.0", - "x": 14.5957, - "y": 53.2518 - }, - { - "l": "91.0", - "x": 14.679, - "y": 53.2601 - }, - { - "l": "91.0", - "x": 14.7623, - "y": 53.2686 - }, - { - "l": "91.0", - "x": 14.8457, - "y": 53.2761 - }, - { - "l": "91.0", - "x": 14.929, - "y": 53.2822 - }, - { - "l": "91.0", - "x": 15.0123, - "y": 53.289 - }, - { - "l": "91.0", - "x": 15.0957, - "y": 53.2955 - }, - { - "l": "91.0", - "x": 15.179, - "y": 53.3006 - }, - { - "l": "91.0", - "x": 15.2623, - "y": 53.306 - }, - { - "l": "91.0", - "x": 15.3457, - "y": 53.3109 - }, - { - "l": "91.0", - "x": 15.429, - "y": 53.3149 - }, - { - "l": "91.0", - "x": 15.5123, - "y": 53.3193 - }, - { - "l": "91.0", - "x": 15.5957, - "y": 53.3236 - }, - { - "l": "91.0", - "x": 15.679, - "y": 53.327 - }, - { - "l": "91.0", - "x": 15.7623, - "y": 53.3306 - }, - { - "l": "91.0", - "x": 15.8457, - "y": 53.3339 - }, - { - "l": "91.0", - "x": 15.929, - "y": 53.3367 - }, - { - "l": "91.0", - "x": 16.0123, - "y": 53.3396 - }, - { - "l": "91.0", - "x": 16.0957, - "y": 53.342 - }, - { - "l": "91.0", - "x": 16.179, - "y": 53.3441 - }, - { - "l": "91.0", - "x": 16.2623, - "y": 53.346 - }, - { - "l": "91.0", - "x": 16.3457, - "y": 53.3473 - }, - { - "l": "91.0", - "x": 16.429, - "y": 53.3481 - }, - { - "l": "91.0", - "x": 16.5123, - "y": 53.349 - }, - { - "l": "91.0", - "x": 16.5957, - "y": 53.35 - }, - { - "l": "91.0", - "x": 16.679, - "y": 53.3507 - }, - { - "l": "91.0", - "x": 16.7623, - "y": 53.3511 - }, - { - "l": "91.0", - "x": 16.8457, - "y": 53.3518 - }, - { - "l": "91.0", - "x": 16.929, - "y": 53.3528 - }, - { - "l": "91.0", - "x": 17.0123, - "y": 53.3545 - }, - { - "l": "91.0", - "x": 17.0957, - "y": 53.357 - }, - { - "l": "91.0", - "x": 17.179, - "y": 53.3593 - }, - { - "l": "91.0", - "x": 17.2623, - "y": 53.3619 - }, - { - "l": "91.0", - "x": 17.3457, - "y": 53.3648 - }, - { - "l": "91.0", - "x": 17.429, - "y": 53.3682 - }, - { - "l": "91.0", - "x": 17.5123, - "y": 53.3725 - }, - { - "l": "91.0", - "x": 17.5957, - "y": 53.3768 - }, - { - "l": "91.0", - "x": 17.679, - "y": 53.3809 - }, - { - "l": "91.0", - "x": 17.7623, - "y": 53.3864 - }, - { - "l": "91.0", - "x": 17.8457, - "y": 53.3917 - }, - { - "l": "91.0", - "x": 17.929, - "y": 53.3966 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 0.0, - "y": 35.657 - }, - { - "l": "98.0", - "x": 0.0192, - "y": 36.0651 - }, - { - "l": "98.0", - "x": 0.0383, - "y": 36.4727 - }, - { - "l": "98.0", - "x": 0.0575, - "y": 36.8798 - }, - { - "l": "98.0", - "x": 0.0767, - "y": 37.2865 - }, - { - "l": "98.0", - "x": 0.0958, - "y": 37.6526 - }, - { - "l": "98.0", - "x": 0.115, - "y": 37.9985 - }, - { - "l": "98.0", - "x": 0.1342, - "y": 38.3353 - }, - { - "l": "98.0", - "x": 0.1533, - "y": 38.6664 - }, - { - "l": "98.0", - "x": 0.1725, - "y": 38.998 - }, - { - "l": "98.0", - "x": 0.1916, - "y": 39.3465 - }, - { - "l": "98.0", - "x": 0.2108, - "y": 39.692 - }, - { - "l": "98.0", - "x": 0.23, - "y": 40.0321 - }, - { - "l": "98.0", - "x": 0.2491, - "y": 40.364 - }, - { - "l": "98.0", - "x": 0.2683, - "y": 40.6823 - }, - { - "l": "98.0", - "x": 0.2875, - "y": 40.9885 - }, - { - "l": "98.0", - "x": 0.3066, - "y": 41.2812 - }, - { - "l": "98.0", - "x": 0.3258, - "y": 41.5592 - }, - { - "l": "98.0", - "x": 0.345, - "y": 41.8104 - }, - { - "l": "98.0", - "x": 0.3641, - "y": 42.0438 - }, - { - "l": "98.0", - "x": 0.3833, - "y": 42.2652 - }, - { - "l": "98.0", - "x": 0.4025, - "y": 42.4776 - }, - { - "l": "98.0", - "x": 0.4216, - "y": 42.6849 - }, - { - "l": "98.0", - "x": 0.4408, - "y": 42.9005 - }, - { - "l": "98.0", - "x": 0.46, - "y": 43.1102 - }, - { - "l": "98.0", - "x": 0.4791, - "y": 43.3125 - }, - { - "l": "98.0", - "x": 0.4983, - "y": 43.5059 - }, - { - "l": "98.0", - "x": 0.5175, - "y": 43.6856 - }, - { - "l": "98.0", - "x": 0.5366, - "y": 43.8544 - }, - { - "l": "98.0", - "x": 0.5558, - "y": 44.0126 - }, - { - "l": "98.0", - "x": 0.5749, - "y": 44.1599 - }, - { - "l": "98.0", - "x": 0.5941, - "y": 44.2912 - }, - { - "l": "98.0", - "x": 0.6133, - "y": 44.4107 - }, - { - "l": "98.0", - "x": 0.6324, - "y": 44.5225 - }, - { - "l": "98.0", - "x": 0.6516, - "y": 44.6283 - }, - { - "l": "98.0", - "x": 0.6708, - "y": 44.7307 - }, - { - "l": "98.0", - "x": 0.6899, - "y": 44.8381 - }, - { - "l": "98.0", - "x": 0.7091, - "y": 44.9427 - }, - { - "l": "98.0", - "x": 0.7283, - "y": 45.044 - }, - { - "l": "98.0", - "x": 0.7474, - "y": 45.1415 - }, - { - "l": "98.0", - "x": 0.7666, - "y": 45.2341 - }, - { - "l": "98.0", - "x": 0.7858, - "y": 45.3221 - }, - { - "l": "98.0", - "x": 0.8049, - "y": 45.4058 - }, - { - "l": "98.0", - "x": 0.8241, - "y": 45.4848 - }, - { - "l": "98.0", - "x": 0.8433, - "y": 45.5566 - }, - { - "l": "98.0", - "x": 0.8624, - "y": 45.6231 - }, - { - "l": "98.0", - "x": 0.8816, - "y": 45.6862 - }, - { - "l": "98.0", - "x": 0.9008, - "y": 45.7471 - }, - { - "l": "98.0", - "x": 0.9199, - "y": 45.8065 - }, - { - "l": "98.0", - "x": 0.9391, - "y": 45.8696 - }, - { - "l": "98.0", - "x": 0.9582, - "y": 45.9316 - }, - { - "l": "98.0", - "x": 0.9774, - "y": 45.9924 - }, - { - "l": "98.0", - "x": 0.9966, - "y": 46.0515 - }, - { - "l": "98.0", - "x": 1.0157, - "y": 46.1081 - }, - { - "l": "98.0", - "x": 1.0349, - "y": 46.1624 - }, - { - "l": "98.0", - "x": 1.0541, - "y": 46.2144 - }, - { - "l": "98.0", - "x": 1.0732, - "y": 46.2641 - }, - { - "l": "98.0", - "x": 1.0924, - "y": 46.3096 - }, - { - "l": "98.0", - "x": 1.1116, - "y": 46.352 - }, - { - "l": "98.0", - "x": 1.1307, - "y": 46.3928 - }, - { - "l": "98.0", - "x": 1.1499, - "y": 46.4328 - }, - { - "l": "98.0", - "x": 1.1691, - "y": 46.4726 - }, - { - "l": "98.0", - "x": 1.1882, - "y": 46.5154 - }, - { - "l": "98.0", - "x": 1.2074, - "y": 46.5585 - }, - { - "l": "98.0", - "x": 1.2266, - "y": 46.6016 - }, - { - "l": "98.0", - "x": 1.2457, - "y": 46.6446 - }, - { - "l": "98.0", - "x": 1.2649, - "y": 46.6872 - }, - { - "l": "98.0", - "x": 1.2841, - "y": 46.7292 - }, - { - "l": "98.0", - "x": 1.3032, - "y": 46.7704 - }, - { - "l": "98.0", - "x": 1.3224, - "y": 46.8106 - }, - { - "l": "98.0", - "x": 1.3415, - "y": 46.8483 - }, - { - "l": "98.0", - "x": 1.3607, - "y": 46.8841 - }, - { - "l": "98.0", - "x": 1.3799, - "y": 46.9192 - }, - { - "l": "98.0", - "x": 1.399, - "y": 46.9541 - }, - { - "l": "98.0", - "x": 1.4182, - "y": 46.9893 - }, - { - "l": "98.0", - "x": 1.4374, - "y": 47.027 - }, - { - "l": "98.0", - "x": 1.4565, - "y": 47.0653 - }, - { - "l": "98.0", - "x": 1.4757, - "y": 47.1036 - }, - { - "l": "98.0", - "x": 1.4949, - "y": 47.1419 - }, - { - "l": "98.0", - "x": 1.514, - "y": 47.1795 - }, - { - "l": "98.0", - "x": 1.5332, - "y": 47.2165 - }, - { - "l": "98.0", - "x": 1.5524, - "y": 47.2527 - }, - { - "l": "98.0", - "x": 1.5715, - "y": 47.2879 - }, - { - "l": "98.0", - "x": 1.5907, - "y": 47.3208 - }, - { - "l": "98.0", - "x": 1.6099, - "y": 47.3517 - }, - { - "l": "98.0", - "x": 1.629, - "y": 47.3818 - }, - { - "l": "98.0", - "x": 1.6482, - "y": 47.4116 - }, - { - "l": "98.0", - "x": 1.6674, - "y": 47.4416 - }, - { - "l": "98.0", - "x": 1.6865, - "y": 47.4738 - }, - { - "l": "98.0", - "x": 1.7057, - "y": 47.5065 - }, - { - "l": "98.0", - "x": 1.7248, - "y": 47.5395 - }, - { - "l": "98.0", - "x": 1.744, - "y": 47.5723 - }, - { - "l": "98.0", - "x": 1.7632, - "y": 47.6049 - }, - { - "l": "98.0", - "x": 1.7823, - "y": 47.6371 - }, - { - "l": "98.0", - "x": 1.8015, - "y": 47.6687 - }, - { - "l": "98.0", - "x": 1.8207, - "y": 47.6996 - }, - { - "l": "98.0", - "x": 1.8398, - "y": 47.7289 - }, - { - "l": "98.0", - "x": 1.859, - "y": 47.7565 - }, - { - "l": "98.0", - "x": 1.8782, - "y": 47.7836 - }, - { - "l": "98.0", - "x": 1.8973, - "y": 47.8106 - }, - { - "l": "98.0", - "x": 1.9165, - "y": 47.8379 - }, - { - "l": "98.0", - "x": 1.9357, - "y": 47.8672 - }, - { - "l": "98.0", - "x": 1.9548, - "y": 47.8972 - }, - { - "l": "98.0", - "x": 1.974, - "y": 47.9274 - }, - { - "l": "98.0", - "x": 1.9932, - "y": 47.9577 - }, - { - "l": "98.0", - "x": 2.0123, - "y": 47.9878 - }, - { - "l": "98.0", - "x": 2.0957, - "y": 48.1117 - }, - { - "l": "98.0", - "x": 2.179, - "y": 48.2213 - }, - { - "l": "98.0", - "x": 2.2623, - "y": 48.3398 - }, - { - "l": "98.0", - "x": 2.3457, - "y": 48.451 - }, - { - "l": "98.0", - "x": 2.429, - "y": 48.5491 - }, - { - "l": "98.0", - "x": 2.5123, - "y": 48.6558 - }, - { - "l": "98.0", - "x": 2.5957, - "y": 48.7564 - }, - { - "l": "98.0", - "x": 2.679, - "y": 48.8458 - }, - { - "l": "98.0", - "x": 2.7623, - "y": 48.9435 - }, - { - "l": "98.0", - "x": 2.8457, - "y": 49.0357 - }, - { - "l": "98.0", - "x": 2.929, - "y": 49.1173 - }, - { - "l": "98.0", - "x": 3.0123, - "y": 49.2061 - }, - { - "l": "98.0", - "x": 3.0957, - "y": 49.2895 - }, - { - "l": "98.0", - "x": 3.179, - "y": 49.3631 - }, - { - "l": "98.0", - "x": 3.2623, - "y": 49.4428 - }, - { - "l": "98.0", - "x": 3.3457, - "y": 49.5176 - }, - { - "l": "98.0", - "x": 3.429, - "y": 49.5835 - }, - { - "l": "98.0", - "x": 3.5123, - "y": 49.6548 - }, - { - "l": "98.0", - "x": 3.5957, - "y": 49.7216 - }, - { - "l": "98.0", - "x": 3.679, - "y": 49.7804 - }, - { - "l": "98.0", - "x": 3.7623, - "y": 49.8441 - }, - { - "l": "98.0", - "x": 3.8457, - "y": 49.9038 - }, - { - "l": "98.0", - "x": 3.929, - "y": 49.9566 - }, - { - "l": "98.0", - "x": 4.0123, - "y": 50.0139 - }, - { - "l": "98.0", - "x": 4.0957, - "y": 50.0677 - }, - { - "l": "98.0", - "x": 4.179, - "y": 50.1153 - }, - { - "l": "98.0", - "x": 4.2623, - "y": 50.1669 - }, - { - "l": "98.0", - "x": 4.3457, - "y": 50.2155 - }, - { - "l": "98.0", - "x": 4.429, - "y": 50.2585 - }, - { - "l": "98.0", - "x": 4.5123, - "y": 50.3051 - }, - { - "l": "98.0", - "x": 4.5957, - "y": 50.349 - }, - { - "l": "98.0", - "x": 4.679, - "y": 50.3878 - }, - { - "l": "98.0", - "x": 4.7623, - "y": 50.4299 - }, - { - "l": "98.0", - "x": 4.8457, - "y": 50.4696 - }, - { - "l": "98.0", - "x": 4.929, - "y": 50.5046 - }, - { - "l": "98.0", - "x": 5.0123, - "y": 50.5425 - }, - { - "l": "98.0", - "x": 5.0957, - "y": 50.5779 - }, - { - "l": "98.0", - "x": 5.179, - "y": 50.6092 - }, - { - "l": "98.0", - "x": 5.2623, - "y": 50.643 - }, - { - "l": "98.0", - "x": 5.3457, - "y": 50.6749 - }, - { - "l": "98.0", - "x": 5.429, - "y": 50.7032 - }, - { - "l": "98.0", - "x": 5.5123, - "y": 50.7343 - }, - { - "l": "98.0", - "x": 5.5957, - "y": 50.764 - }, - { - "l": "98.0", - "x": 5.679, - "y": 50.7907 - }, - { - "l": "98.0", - "x": 5.7623, - "y": 50.8201 - }, - { - "l": "98.0", - "x": 5.8457, - "y": 50.8484 - }, - { - "l": "98.0", - "x": 5.929, - "y": 50.8741 - }, - { - "l": "98.0", - "x": 6.0123, - "y": 50.9027 - }, - { - "l": "98.0", - "x": 6.0957, - "y": 50.9305 - }, - { - "l": "98.0", - "x": 6.179, - "y": 50.9558 - }, - { - "l": "98.0", - "x": 6.2623, - "y": 50.9844 - }, - { - "l": "98.0", - "x": 6.3457, - "y": 51.0124 - }, - { - "l": "98.0", - "x": 6.429, - "y": 51.0382 - }, - { - "l": "98.0", - "x": 6.5123, - "y": 51.0678 - }, - { - "l": "98.0", - "x": 6.5957, - "y": 51.0974 - }, - { - "l": "98.0", - "x": 6.679, - "y": 51.1252 - }, - { - "l": "98.0", - "x": 6.7623, - "y": 51.1572 - }, - { - "l": "98.0", - "x": 6.8457, - "y": 51.1899 - }, - { - "l": "98.0", - "x": 6.929, - "y": 51.221 - }, - { - "l": "98.0", - "x": 7.0123, - "y": 51.2571 - }, - { - "l": "98.0", - "x": 7.0957, - "y": 51.293 - }, - { - "l": "98.0", - "x": 7.179, - "y": 51.327 - }, - { - "l": "98.0", - "x": 7.2623, - "y": 51.3659 - }, - { - "l": "98.0", - "x": 7.3457, - "y": 51.405 - }, - { - "l": "98.0", - "x": 7.429, - "y": 51.4415 - }, - { - "l": "98.0", - "x": 7.5123, - "y": 51.4832 - }, - { - "l": "98.0", - "x": 7.5957, - "y": 51.5245 - }, - { - "l": "98.0", - "x": 7.679, - "y": 51.5626 - }, - { - "l": "98.0", - "x": 7.7623, - "y": 51.6059 - }, - { - "l": "98.0", - "x": 7.8457, - "y": 51.6484 - }, - { - "l": "98.0", - "x": 7.929, - "y": 51.6875 - }, - { - "l": "98.0", - "x": 8.0123, - "y": 51.7314 - }, - { - "l": "98.0", - "x": 8.0957, - "y": 51.7742 - }, - { - "l": "98.0", - "x": 8.179, - "y": 51.8131 - }, - { - "l": "98.0", - "x": 8.2623, - "y": 51.8566 - }, - { - "l": "98.0", - "x": 8.3457, - "y": 51.8988 - }, - { - "l": "98.0", - "x": 8.429, - "y": 51.937 - }, - { - "l": "98.0", - "x": 8.5123, - "y": 51.9796 - }, - { - "l": "98.0", - "x": 8.5957, - "y": 52.0209 - }, - { - "l": "98.0", - "x": 8.679, - "y": 52.0585 - }, - { - "l": "98.0", - "x": 8.7623, - "y": 52.1004 - }, - { - "l": "98.0", - "x": 8.8457, - "y": 52.1412 - }, - { - "l": "98.0", - "x": 8.929, - "y": 52.1785 - }, - { - "l": "98.0", - "x": 9.0123, - "y": 52.2204 - }, - { - "l": "98.0", - "x": 9.0957, - "y": 52.2612 - }, - { - "l": "98.0", - "x": 9.179, - "y": 52.2988 - }, - { - "l": "98.0", - "x": 9.2623, - "y": 52.3411 - }, - { - "l": "98.0", - "x": 9.3457, - "y": 52.3824 - }, - { - "l": "98.0", - "x": 9.429, - "y": 52.4202 - }, - { - "l": "98.0", - "x": 9.5123, - "y": 52.4626 - }, - { - "l": "98.0", - "x": 9.5957, - "y": 52.5037 - }, - { - "l": "98.0", - "x": 9.679, - "y": 52.5411 - }, - { - "l": "98.0", - "x": 9.7623, - "y": 52.5829 - }, - { - "l": "98.0", - "x": 9.8457, - "y": 52.6233 - }, - { - "l": "98.0", - "x": 9.929, - "y": 52.6601 - }, - { - "l": "98.0", - "x": 10.0123, - "y": 52.7008 - }, - { - "l": "98.0", - "x": 10.0957, - "y": 52.7402 - }, - { - "l": "98.0", - "x": 10.179, - "y": 52.7764 - }, - { - "l": "98.0", - "x": 10.2623, - "y": 52.8168 - }, - { - "l": "98.0", - "x": 10.3457, - "y": 52.8557 - }, - { - "l": "98.0", - "x": 10.429, - "y": 52.8905 - }, - { - "l": "98.0", - "x": 10.5123, - "y": 52.9293 - }, - { - "l": "98.0", - "x": 10.5957, - "y": 52.9665 - }, - { - "l": "98.0", - "x": 10.679, - "y": 53.0001 - }, - { - "l": "98.0", - "x": 10.7623, - "y": 53.0372 - }, - { - "l": "98.0", - "x": 10.8457, - "y": 53.073 - }, - { - "l": "98.0", - "x": 10.929, - "y": 53.1051 - }, - { - "l": "98.0", - "x": 11.0123, - "y": 53.1404 - }, - { - "l": "98.0", - "x": 11.0957, - "y": 53.1745 - }, - { - "l": "98.0", - "x": 11.179, - "y": 53.2056 - }, - { - "l": "98.0", - "x": 11.2623, - "y": 53.24 - }, - { - "l": "98.0", - "x": 11.3457, - "y": 53.2728 - }, - { - "l": "98.0", - "x": 11.429, - "y": 53.3023 - }, - { - "l": "98.0", - "x": 11.5123, - "y": 53.3352 - }, - { - "l": "98.0", - "x": 11.5957, - "y": 53.3671 - }, - { - "l": "98.0", - "x": 11.679, - "y": 53.3957 - }, - { - "l": "98.0", - "x": 11.7623, - "y": 53.4277 - }, - { - "l": "98.0", - "x": 11.8457, - "y": 53.4585 - }, - { - "l": "98.0", - "x": 11.929, - "y": 53.4863 - }, - { - "l": "98.0", - "x": 12.0123, - "y": 53.5163 - }, - { - "l": "98.0", - "x": 12.0957, - "y": 53.5455 - }, - { - "l": "98.0", - "x": 12.179, - "y": 53.5723 - }, - { - "l": "98.0", - "x": 12.2623, - "y": 53.6022 - }, - { - "l": "98.0", - "x": 12.3457, - "y": 53.6315 - }, - { - "l": "98.0", - "x": 12.429, - "y": 53.6581 - }, - { - "l": "98.0", - "x": 12.5123, - "y": 53.6869 - }, - { - "l": "98.0", - "x": 12.5957, - "y": 53.7138 - }, - { - "l": "98.0", - "x": 12.679, - "y": 53.7383 - }, - { - "l": "98.0", - "x": 12.7623, - "y": 53.7653 - }, - { - "l": "98.0", - "x": 12.8457, - "y": 53.791 - }, - { - "l": "98.0", - "x": 12.929, - "y": 53.814 - }, - { - "l": "98.0", - "x": 13.0123, - "y": 53.8391 - }, - { - "l": "98.0", - "x": 13.0957, - "y": 53.8633 - }, - { - "l": "98.0", - "x": 13.179, - "y": 53.8847 - }, - { - "l": "98.0", - "x": 13.2623, - "y": 53.9078 - }, - { - "l": "98.0", - "x": 13.3457, - "y": 53.9297 - }, - { - "l": "98.0", - "x": 13.429, - "y": 53.9496 - }, - { - "l": "98.0", - "x": 13.5123, - "y": 53.9709 - }, - { - "l": "98.0", - "x": 13.5957, - "y": 53.9906 - }, - { - "l": "98.0", - "x": 13.679, - "y": 54.008 - }, - { - "l": "98.0", - "x": 13.7623, - "y": 54.0267 - }, - { - "l": "98.0", - "x": 13.8457, - "y": 54.0441 - }, - { - "l": "98.0", - "x": 13.929, - "y": 54.0591 - }, - { - "l": "98.0", - "x": 14.0123, - "y": 54.0748 - }, - { - "l": "98.0", - "x": 14.0957, - "y": 54.0895 - }, - { - "l": "98.0", - "x": 14.179, - "y": 54.102 - }, - { - "l": "98.0", - "x": 14.2623, - "y": 54.1148 - }, - { - "l": "98.0", - "x": 14.3457, - "y": 54.1267 - }, - { - "l": "98.0", - "x": 14.429, - "y": 54.1368 - }, - { - "l": "98.0", - "x": 14.5123, - "y": 54.1471 - }, - { - "l": "98.0", - "x": 14.5957, - "y": 54.157 - }, - { - "l": "98.0", - "x": 14.679, - "y": 54.1654 - }, - { - "l": "98.0", - "x": 14.7623, - "y": 54.174 - }, - { - "l": "98.0", - "x": 14.8457, - "y": 54.1815 - }, - { - "l": "98.0", - "x": 14.929, - "y": 54.1876 - }, - { - "l": "98.0", - "x": 15.0123, - "y": 54.1946 - }, - { - "l": "98.0", - "x": 15.0957, - "y": 54.2012 - }, - { - "l": "98.0", - "x": 15.179, - "y": 54.2063 - }, - { - "l": "98.0", - "x": 15.2623, - "y": 54.2118 - }, - { - "l": "98.0", - "x": 15.3457, - "y": 54.2167 - }, - { - "l": "98.0", - "x": 15.429, - "y": 54.2207 - }, - { - "l": "98.0", - "x": 15.5123, - "y": 54.2252 - }, - { - "l": "98.0", - "x": 15.5957, - "y": 54.2295 - }, - { - "l": "98.0", - "x": 15.679, - "y": 54.2329 - }, - { - "l": "98.0", - "x": 15.7623, - "y": 54.2366 - }, - { - "l": "98.0", - "x": 15.8457, - "y": 54.2399 - }, - { - "l": "98.0", - "x": 15.929, - "y": 54.2428 - }, - { - "l": "98.0", - "x": 16.0123, - "y": 54.2456 - }, - { - "l": "98.0", - "x": 16.0957, - "y": 54.2481 - }, - { - "l": "98.0", - "x": 16.179, - "y": 54.2502 - }, - { - "l": "98.0", - "x": 16.2623, - "y": 54.2522 - }, - { - "l": "98.0", - "x": 16.3457, - "y": 54.2534 - }, - { - "l": "98.0", - "x": 16.429, - "y": 54.2542 - }, - { - "l": "98.0", - "x": 16.5123, - "y": 54.2552 - }, - { - "l": "98.0", - "x": 16.5957, - "y": 54.2562 - }, - { - "l": "98.0", - "x": 16.679, - "y": 54.2569 - }, - { - "l": "98.0", - "x": 16.7623, - "y": 54.2573 - }, - { - "l": "98.0", - "x": 16.8457, - "y": 54.258 - }, - { - "l": "98.0", - "x": 16.929, - "y": 54.2591 - }, - { - "l": "98.0", - "x": 17.0123, - "y": 54.2607 - }, - { - "l": "98.0", - "x": 17.0957, - "y": 54.2633 - }, - { - "l": "98.0", - "x": 17.179, - "y": 54.2656 - }, - { - "l": "98.0", - "x": 17.2623, - "y": 54.2682 - }, - { - "l": "98.0", - "x": 17.3457, - "y": 54.2712 - }, - { - "l": "98.0", - "x": 17.429, - "y": 54.2746 - }, - { - "l": "98.0", - "x": 17.5123, - "y": 54.2789 - }, - { - "l": "98.0", - "x": 17.5957, - "y": 54.2833 - }, - { - "l": "98.0", - "x": 17.679, - "y": 54.2874 - }, - { - "l": "98.0", - "x": 17.7623, - "y": 54.2929 - }, - { - "l": "98.0", - "x": 17.8457, - "y": 54.2983 - }, - { - "l": "98.0", - "x": 17.929, - "y": 54.3032 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 0.0, - "y": 36.5344 - }, - { - "l": "99.6", - "x": 0.0192, - "y": 36.9465 - }, - { - "l": "99.6", - "x": 0.0383, - "y": 37.358 - }, - { - "l": "99.6", - "x": 0.0575, - "y": 37.7688 - }, - { - "l": "99.6", - "x": 0.0767, - "y": 38.179 - }, - { - "l": "99.6", - "x": 0.0958, - "y": 38.5481 - }, - { - "l": "99.6", - "x": 0.115, - "y": 38.8968 - }, - { - "l": "99.6", - "x": 0.1342, - "y": 39.236 - }, - { - "l": "99.6", - "x": 0.1533, - "y": 39.5694 - }, - { - "l": "99.6", - "x": 0.1725, - "y": 39.9032 - }, - { - "l": "99.6", - "x": 0.1916, - "y": 40.2538 - }, - { - "l": "99.6", - "x": 0.2108, - "y": 40.6013 - }, - { - "l": "99.6", - "x": 0.23, - "y": 40.943 - }, - { - "l": "99.6", - "x": 0.2491, - "y": 41.2764 - }, - { - "l": "99.6", - "x": 0.2683, - "y": 41.5959 - }, - { - "l": "99.6", - "x": 0.2875, - "y": 41.9029 - }, - { - "l": "99.6", - "x": 0.3066, - "y": 42.1964 - }, - { - "l": "99.6", - "x": 0.3258, - "y": 42.4749 - }, - { - "l": "99.6", - "x": 0.345, - "y": 42.7264 - }, - { - "l": "99.6", - "x": 0.3641, - "y": 42.9598 - }, - { - "l": "99.6", - "x": 0.3833, - "y": 43.1812 - }, - { - "l": "99.6", - "x": 0.4025, - "y": 43.3933 - }, - { - "l": "99.6", - "x": 0.4216, - "y": 43.6002 - }, - { - "l": "99.6", - "x": 0.4408, - "y": 43.8152 - }, - { - "l": "99.6", - "x": 0.46, - "y": 44.0241 - }, - { - "l": "99.6", - "x": 0.4791, - "y": 44.2254 - }, - { - "l": "99.6", - "x": 0.4983, - "y": 44.4177 - }, - { - "l": "99.6", - "x": 0.5175, - "y": 44.5962 - }, - { - "l": "99.6", - "x": 0.5366, - "y": 44.7636 - }, - { - "l": "99.6", - "x": 0.5558, - "y": 44.9202 - }, - { - "l": "99.6", - "x": 0.5749, - "y": 45.066 - }, - { - "l": "99.6", - "x": 0.5941, - "y": 45.1958 - }, - { - "l": "99.6", - "x": 0.6133, - "y": 45.314 - }, - { - "l": "99.6", - "x": 0.6324, - "y": 45.4243 - }, - { - "l": "99.6", - "x": 0.6516, - "y": 45.5287 - }, - { - "l": "99.6", - "x": 0.6708, - "y": 45.6296 - }, - { - "l": "99.6", - "x": 0.6899, - "y": 45.7354 - }, - { - "l": "99.6", - "x": 0.7091, - "y": 45.8385 - }, - { - "l": "99.6", - "x": 0.7283, - "y": 45.9382 - }, - { - "l": "99.6", - "x": 0.7474, - "y": 46.0343 - }, - { - "l": "99.6", - "x": 0.7666, - "y": 46.1255 - }, - { - "l": "99.6", - "x": 0.7858, - "y": 46.2122 - }, - { - "l": "99.6", - "x": 0.8049, - "y": 46.2946 - }, - { - "l": "99.6", - "x": 0.8241, - "y": 46.3725 - }, - { - "l": "99.6", - "x": 0.8433, - "y": 46.4433 - }, - { - "l": "99.6", - "x": 0.8624, - "y": 46.5088 - }, - { - "l": "99.6", - "x": 0.8816, - "y": 46.5711 - }, - { - "l": "99.6", - "x": 0.9008, - "y": 46.6312 - }, - { - "l": "99.6", - "x": 0.9199, - "y": 46.6899 - }, - { - "l": "99.6", - "x": 0.9391, - "y": 46.7521 - }, - { - "l": "99.6", - "x": 0.9582, - "y": 46.8134 - }, - { - "l": "99.6", - "x": 0.9774, - "y": 46.8735 - }, - { - "l": "99.6", - "x": 0.9966, - "y": 46.9319 - }, - { - "l": "99.6", - "x": 1.0157, - "y": 46.9878 - }, - { - "l": "99.6", - "x": 1.0349, - "y": 47.0415 - }, - { - "l": "99.6", - "x": 1.0541, - "y": 47.093 - }, - { - "l": "99.6", - "x": 1.0732, - "y": 47.1422 - }, - { - "l": "99.6", - "x": 1.0924, - "y": 47.1872 - }, - { - "l": "99.6", - "x": 1.1116, - "y": 47.2292 - }, - { - "l": "99.6", - "x": 1.1307, - "y": 47.2697 - }, - { - "l": "99.6", - "x": 1.1499, - "y": 47.3094 - }, - { - "l": "99.6", - "x": 1.1691, - "y": 47.3489 - }, - { - "l": "99.6", - "x": 1.1882, - "y": 47.3914 - }, - { - "l": "99.6", - "x": 1.2074, - "y": 47.4343 - }, - { - "l": "99.6", - "x": 1.2266, - "y": 47.4772 - }, - { - "l": "99.6", - "x": 1.2457, - "y": 47.5199 - }, - { - "l": "99.6", - "x": 1.2649, - "y": 47.5623 - }, - { - "l": "99.6", - "x": 1.2841, - "y": 47.6042 - }, - { - "l": "99.6", - "x": 1.3032, - "y": 47.6453 - }, - { - "l": "99.6", - "x": 1.3224, - "y": 47.6855 - }, - { - "l": "99.6", - "x": 1.3415, - "y": 47.7232 - }, - { - "l": "99.6", - "x": 1.3607, - "y": 47.7589 - }, - { - "l": "99.6", - "x": 1.3799, - "y": 47.7941 - }, - { - "l": "99.6", - "x": 1.399, - "y": 47.829 - }, - { - "l": "99.6", - "x": 1.4182, - "y": 47.8641 - }, - { - "l": "99.6", - "x": 1.4374, - "y": 47.9019 - }, - { - "l": "99.6", - "x": 1.4565, - "y": 47.9402 - }, - { - "l": "99.6", - "x": 1.4757, - "y": 47.9786 - }, - { - "l": "99.6", - "x": 1.4949, - "y": 48.0169 - }, - { - "l": "99.6", - "x": 1.514, - "y": 48.0546 - }, - { - "l": "99.6", - "x": 1.5332, - "y": 48.0917 - }, - { - "l": "99.6", - "x": 1.5524, - "y": 48.1279 - }, - { - "l": "99.6", - "x": 1.5715, - "y": 48.1631 - }, - { - "l": "99.6", - "x": 1.5907, - "y": 48.196 - }, - { - "l": "99.6", - "x": 1.6099, - "y": 48.2269 - }, - { - "l": "99.6", - "x": 1.629, - "y": 48.2571 - }, - { - "l": "99.6", - "x": 1.6482, - "y": 48.287 - }, - { - "l": "99.6", - "x": 1.6674, - "y": 48.317 - }, - { - "l": "99.6", - "x": 1.6865, - "y": 48.3491 - }, - { - "l": "99.6", - "x": 1.7057, - "y": 48.3819 - }, - { - "l": "99.6", - "x": 1.7248, - "y": 48.4149 - }, - { - "l": "99.6", - "x": 1.744, - "y": 48.4478 - }, - { - "l": "99.6", - "x": 1.7632, - "y": 48.4803 - }, - { - "l": "99.6", - "x": 1.7823, - "y": 48.5125 - }, - { - "l": "99.6", - "x": 1.8015, - "y": 48.5441 - }, - { - "l": "99.6", - "x": 1.8207, - "y": 48.575 - }, - { - "l": "99.6", - "x": 1.8398, - "y": 48.6042 - }, - { - "l": "99.6", - "x": 1.859, - "y": 48.6318 - }, - { - "l": "99.6", - "x": 1.8782, - "y": 48.659 - }, - { - "l": "99.6", - "x": 1.8973, - "y": 48.686 - }, - { - "l": "99.6", - "x": 1.9165, - "y": 48.7132 - }, - { - "l": "99.6", - "x": 1.9357, - "y": 48.7424 - }, - { - "l": "99.6", - "x": 1.9548, - "y": 48.7724 - }, - { - "l": "99.6", - "x": 1.974, - "y": 48.8026 - }, - { - "l": "99.6", - "x": 1.9932, - "y": 48.8329 - }, - { - "l": "99.6", - "x": 2.0123, - "y": 48.863 - }, - { - "l": "99.6", - "x": 2.0957, - "y": 48.9867 - }, - { - "l": "99.6", - "x": 2.179, - "y": 49.0961 - }, - { - "l": "99.6", - "x": 2.2623, - "y": 49.2143 - }, - { - "l": "99.6", - "x": 2.3457, - "y": 49.3253 - }, - { - "l": "99.6", - "x": 2.429, - "y": 49.4232 - }, - { - "l": "99.6", - "x": 2.5123, - "y": 49.5297 - }, - { - "l": "99.6", - "x": 2.5957, - "y": 49.6303 - }, - { - "l": "99.6", - "x": 2.679, - "y": 49.7197 - }, - { - "l": "99.6", - "x": 2.7623, - "y": 49.8174 - }, - { - "l": "99.6", - "x": 2.8457, - "y": 49.9097 - }, - { - "l": "99.6", - "x": 2.929, - "y": 49.9914 - }, - { - "l": "99.6", - "x": 3.0123, - "y": 50.0804 - }, - { - "l": "99.6", - "x": 3.0957, - "y": 50.1639 - }, - { - "l": "99.6", - "x": 3.179, - "y": 50.2377 - }, - { - "l": "99.6", - "x": 3.2623, - "y": 50.3177 - }, - { - "l": "99.6", - "x": 3.3457, - "y": 50.3927 - }, - { - "l": "99.6", - "x": 3.429, - "y": 50.4588 - }, - { - "l": "99.6", - "x": 3.5123, - "y": 50.5304 - }, - { - "l": "99.6", - "x": 3.5957, - "y": 50.5974 - }, - { - "l": "99.6", - "x": 3.679, - "y": 50.6564 - }, - { - "l": "99.6", - "x": 3.7623, - "y": 50.7204 - }, - { - "l": "99.6", - "x": 3.8457, - "y": 50.7804 - }, - { - "l": "99.6", - "x": 3.929, - "y": 50.8335 - }, - { - "l": "99.6", - "x": 4.0123, - "y": 50.891 - }, - { - "l": "99.6", - "x": 4.0957, - "y": 50.9451 - }, - { - "l": "99.6", - "x": 4.179, - "y": 50.9929 - }, - { - "l": "99.6", - "x": 4.2623, - "y": 51.0448 - }, - { - "l": "99.6", - "x": 4.3457, - "y": 51.0937 - }, - { - "l": "99.6", - "x": 4.429, - "y": 51.1369 - }, - { - "l": "99.6", - "x": 4.5123, - "y": 51.1838 - }, - { - "l": "99.6", - "x": 4.5957, - "y": 51.2279 - }, - { - "l": "99.6", - "x": 4.679, - "y": 51.2669 - }, - { - "l": "99.6", - "x": 4.7623, - "y": 51.3093 - }, - { - "l": "99.6", - "x": 4.8457, - "y": 51.3492 - }, - { - "l": "99.6", - "x": 4.929, - "y": 51.3844 - }, - { - "l": "99.6", - "x": 5.0123, - "y": 51.4225 - }, - { - "l": "99.6", - "x": 5.0957, - "y": 51.4582 - }, - { - "l": "99.6", - "x": 5.179, - "y": 51.4896 - }, - { - "l": "99.6", - "x": 5.2623, - "y": 51.5237 - }, - { - "l": "99.6", - "x": 5.3457, - "y": 51.5557 - }, - { - "l": "99.6", - "x": 5.429, - "y": 51.5842 - }, - { - "l": "99.6", - "x": 5.5123, - "y": 51.6155 - }, - { - "l": "99.6", - "x": 5.5957, - "y": 51.6454 - }, - { - "l": "99.6", - "x": 5.679, - "y": 51.6722 - }, - { - "l": "99.6", - "x": 5.7623, - "y": 51.7019 - }, - { - "l": "99.6", - "x": 5.8457, - "y": 51.7304 - }, - { - "l": "99.6", - "x": 5.929, - "y": 51.7562 - }, - { - "l": "99.6", - "x": 6.0123, - "y": 51.785 - }, - { - "l": "99.6", - "x": 6.0957, - "y": 51.8129 - }, - { - "l": "99.6", - "x": 6.179, - "y": 51.8385 - }, - { - "l": "99.6", - "x": 6.2623, - "y": 51.8672 - }, - { - "l": "99.6", - "x": 6.3457, - "y": 51.8954 - }, - { - "l": "99.6", - "x": 6.429, - "y": 51.9213 - }, - { - "l": "99.6", - "x": 6.5123, - "y": 51.9512 - }, - { - "l": "99.6", - "x": 6.5957, - "y": 51.9809 - }, - { - "l": "99.6", - "x": 6.679, - "y": 52.0089 - }, - { - "l": "99.6", - "x": 6.7623, - "y": 52.0412 - }, - { - "l": "99.6", - "x": 6.8457, - "y": 52.074 - }, - { - "l": "99.6", - "x": 6.929, - "y": 52.1054 - }, - { - "l": "99.6", - "x": 7.0123, - "y": 52.1417 - }, - { - "l": "99.6", - "x": 7.0957, - "y": 52.1778 - }, - { - "l": "99.6", - "x": 7.179, - "y": 52.212 - }, - { - "l": "99.6", - "x": 7.2623, - "y": 52.2512 - }, - { - "l": "99.6", - "x": 7.3457, - "y": 52.2905 - }, - { - "l": "99.6", - "x": 7.429, - "y": 52.3273 - }, - { - "l": "99.6", - "x": 7.5123, - "y": 52.3692 - }, - { - "l": "99.6", - "x": 7.5957, - "y": 52.4108 - }, - { - "l": "99.6", - "x": 7.679, - "y": 52.4491 - }, - { - "l": "99.6", - "x": 7.7623, - "y": 52.4927 - }, - { - "l": "99.6", - "x": 7.8457, - "y": 52.5355 - }, - { - "l": "99.6", - "x": 7.929, - "y": 52.5748 - }, - { - "l": "99.6", - "x": 8.0123, - "y": 52.619 - }, - { - "l": "99.6", - "x": 8.0957, - "y": 52.662 - }, - { - "l": "99.6", - "x": 8.179, - "y": 52.7012 - }, - { - "l": "99.6", - "x": 8.2623, - "y": 52.745 - }, - { - "l": "99.6", - "x": 8.3457, - "y": 52.7874 - }, - { - "l": "99.6", - "x": 8.429, - "y": 52.8258 - }, - { - "l": "99.6", - "x": 8.5123, - "y": 52.8687 - }, - { - "l": "99.6", - "x": 8.5957, - "y": 52.9102 - }, - { - "l": "99.6", - "x": 8.679, - "y": 52.948 - }, - { - "l": "99.6", - "x": 8.7623, - "y": 52.9902 - }, - { - "l": "99.6", - "x": 8.8457, - "y": 53.0312 - }, - { - "l": "99.6", - "x": 8.929, - "y": 53.0687 - }, - { - "l": "99.6", - "x": 9.0123, - "y": 53.1109 - }, - { - "l": "99.6", - "x": 9.0957, - "y": 53.152 - }, - { - "l": "99.6", - "x": 9.179, - "y": 53.1898 - }, - { - "l": "99.6", - "x": 9.2623, - "y": 53.2323 - }, - { - "l": "99.6", - "x": 9.3457, - "y": 53.2739 - }, - { - "l": "99.6", - "x": 9.429, - "y": 53.3119 - }, - { - "l": "99.6", - "x": 9.5123, - "y": 53.3545 - }, - { - "l": "99.6", - "x": 9.5957, - "y": 53.3958 - }, - { - "l": "99.6", - "x": 9.679, - "y": 53.4334 - }, - { - "l": "99.6", - "x": 9.7623, - "y": 53.4754 - }, - { - "l": "99.6", - "x": 9.8457, - "y": 53.5161 - }, - { - "l": "99.6", - "x": 9.929, - "y": 53.5531 - }, - { - "l": "99.6", - "x": 10.0123, - "y": 53.594 - }, - { - "l": "99.6", - "x": 10.0957, - "y": 53.6337 - }, - { - "l": "99.6", - "x": 10.179, - "y": 53.6701 - }, - { - "l": "99.6", - "x": 10.2623, - "y": 53.7108 - }, - { - "l": "99.6", - "x": 10.3457, - "y": 53.7499 - }, - { - "l": "99.6", - "x": 10.429, - "y": 53.7849 - }, - { - "l": "99.6", - "x": 10.5123, - "y": 53.824 - }, - { - "l": "99.6", - "x": 10.5957, - "y": 53.8614 - }, - { - "l": "99.6", - "x": 10.679, - "y": 53.8952 - }, - { - "l": "99.6", - "x": 10.7623, - "y": 53.9326 - }, - { - "l": "99.6", - "x": 10.8457, - "y": 53.9686 - }, - { - "l": "99.6", - "x": 10.929, - "y": 54.001 - }, - { - "l": "99.6", - "x": 11.0123, - "y": 54.0365 - }, - { - "l": "99.6", - "x": 11.0957, - "y": 54.0708 - }, - { - "l": "99.6", - "x": 11.179, - "y": 54.1021 - }, - { - "l": "99.6", - "x": 11.2623, - "y": 54.1369 - }, - { - "l": "99.6", - "x": 11.3457, - "y": 54.1699 - }, - { - "l": "99.6", - "x": 11.429, - "y": 54.1996 - }, - { - "l": "99.6", - "x": 11.5123, - "y": 54.2327 - }, - { - "l": "99.6", - "x": 11.5957, - "y": 54.2649 - }, - { - "l": "99.6", - "x": 11.679, - "y": 54.2938 - }, - { - "l": "99.6", - "x": 11.7623, - "y": 54.326 - }, - { - "l": "99.6", - "x": 11.8457, - "y": 54.357 - }, - { - "l": "99.6", - "x": 11.929, - "y": 54.3851 - }, - { - "l": "99.6", - "x": 12.0123, - "y": 54.4154 - }, - { - "l": "99.6", - "x": 12.0957, - "y": 54.4448 - }, - { - "l": "99.6", - "x": 12.179, - "y": 54.4718 - }, - { - "l": "99.6", - "x": 12.2623, - "y": 54.502 - }, - { - "l": "99.6", - "x": 12.3457, - "y": 54.5315 - }, - { - "l": "99.6", - "x": 12.429, - "y": 54.5584 - }, - { - "l": "99.6", - "x": 12.5123, - "y": 54.5874 - }, - { - "l": "99.6", - "x": 12.5957, - "y": 54.6146 - }, - { - "l": "99.6", - "x": 12.679, - "y": 54.6394 - }, - { - "l": "99.6", - "x": 12.7623, - "y": 54.6666 - }, - { - "l": "99.6", - "x": 12.8457, - "y": 54.6925 - }, - { - "l": "99.6", - "x": 12.929, - "y": 54.7157 - }, - { - "l": "99.6", - "x": 13.0123, - "y": 54.7411 - }, - { - "l": "99.6", - "x": 13.0957, - "y": 54.7655 - }, - { - "l": "99.6", - "x": 13.179, - "y": 54.7871 - }, - { - "l": "99.6", - "x": 13.2623, - "y": 54.8104 - }, - { - "l": "99.6", - "x": 13.3457, - "y": 54.8326 - }, - { - "l": "99.6", - "x": 13.429, - "y": 54.8527 - }, - { - "l": "99.6", - "x": 13.5123, - "y": 54.8741 - }, - { - "l": "99.6", - "x": 13.5957, - "y": 54.8941 - }, - { - "l": "99.6", - "x": 13.679, - "y": 54.9116 - }, - { - "l": "99.6", - "x": 13.7623, - "y": 54.9306 - }, - { - "l": "99.6", - "x": 13.8457, - "y": 54.9481 - }, - { - "l": "99.6", - "x": 13.929, - "y": 54.9633 - }, - { - "l": "99.6", - "x": 14.0123, - "y": 54.9792 - }, - { - "l": "99.6", - "x": 14.0957, - "y": 54.994 - }, - { - "l": "99.6", - "x": 14.179, - "y": 55.0066 - }, - { - "l": "99.6", - "x": 14.2623, - "y": 55.0196 - }, - { - "l": "99.6", - "x": 14.3457, - "y": 55.0316 - }, - { - "l": "99.6", - "x": 14.429, - "y": 55.0418 - }, - { - "l": "99.6", - "x": 14.5123, - "y": 55.0522 - }, - { - "l": "99.6", - "x": 14.5957, - "y": 55.0622 - }, - { - "l": "99.6", - "x": 14.679, - "y": 55.0706 - }, - { - "l": "99.6", - "x": 14.7623, - "y": 55.0793 - }, - { - "l": "99.6", - "x": 14.8457, - "y": 55.087 - }, - { - "l": "99.6", - "x": 14.929, - "y": 55.0931 - }, - { - "l": "99.6", - "x": 15.0123, - "y": 55.1001 - }, - { - "l": "99.6", - "x": 15.0957, - "y": 55.1068 - }, - { - "l": "99.6", - "x": 15.179, - "y": 55.112 - }, - { - "l": "99.6", - "x": 15.2623, - "y": 55.1175 - }, - { - "l": "99.6", - "x": 15.3457, - "y": 55.1224 - }, - { - "l": "99.6", - "x": 15.429, - "y": 55.1265 - }, - { - "l": "99.6", - "x": 15.5123, - "y": 55.1311 - }, - { - "l": "99.6", - "x": 15.5957, - "y": 55.1354 - }, - { - "l": "99.6", - "x": 15.679, - "y": 55.1389 - }, - { - "l": "99.6", - "x": 15.7623, - "y": 55.1426 - }, - { - "l": "99.6", - "x": 15.8457, - "y": 55.1459 - }, - { - "l": "99.6", - "x": 15.929, - "y": 55.1488 - }, - { - "l": "99.6", - "x": 16.0123, - "y": 55.1517 - }, - { - "l": "99.6", - "x": 16.0957, - "y": 55.1542 - }, - { - "l": "99.6", - "x": 16.179, - "y": 55.1564 - }, - { - "l": "99.6", - "x": 16.2623, - "y": 55.1583 - }, - { - "l": "99.6", - "x": 16.3457, - "y": 55.1596 - }, - { - "l": "99.6", - "x": 16.429, - "y": 55.1604 - }, - { - "l": "99.6", - "x": 16.5123, - "y": 55.1614 - }, - { - "l": "99.6", - "x": 16.5957, - "y": 55.1623 - }, - { - "l": "99.6", - "x": 16.679, - "y": 55.1631 - }, - { - "l": "99.6", - "x": 16.7623, - "y": 55.1635 - }, - { - "l": "99.6", - "x": 16.8457, - "y": 55.1642 - }, - { - "l": "99.6", - "x": 16.929, - "y": 55.1653 - }, - { - "l": "99.6", - "x": 17.0123, - "y": 55.167 - }, - { - "l": "99.6", - "x": 17.0957, - "y": 55.1695 - }, - { - "l": "99.6", - "x": 17.179, - "y": 55.1719 - }, - { - "l": "99.6", - "x": 17.2623, - "y": 55.1745 - }, - { - "l": "99.6", - "x": 17.3457, - "y": 55.1775 - }, - { - "l": "99.6", - "x": 17.429, - "y": 55.181 - }, - { - "l": "99.6", - "x": 17.5123, - "y": 55.1853 - }, - { - "l": "99.6", - "x": 17.5957, - "y": 55.1897 - }, - { - "l": "99.6", - "x": 17.679, - "y": 55.1939 - }, - { - "l": "99.6", - "x": 17.7623, - "y": 55.1995 - }, - { - "l": "99.6", - "x": 17.8457, - "y": 55.2049 - }, - { - "l": "99.6", - "x": 17.929, - "y": 55.2099 - } - ] - } - ], - "bmi": null - } - } - } - ] -}; - -var turnerHeightFemaleCentileData = { - "centile_data": [ - { - "turners-syndrome": { - "male": null, - "female": { - "height": [ - { - "sds": -2.67, - "centile": 0.4, - "data": [ - { - "l": "0.4", - "x": 1.0, - "y": 57.2119 - }, - { - "l": "0.4", - "x": 1.0192, - "y": 57.3729 - }, - { - "l": "0.4", - "x": 1.0383, - "y": 57.5338 - }, - { - "l": "0.4", - "x": 1.0575, - "y": 57.6947 - }, - { - "l": "0.4", - "x": 1.0767, - "y": 57.8556 - }, - { - "l": "0.4", - "x": 1.0958, - "y": 58.0166 - }, - { - "l": "0.4", - "x": 1.115, - "y": 58.1775 - }, - { - "l": "0.4", - "x": 1.1342, - "y": 58.3384 - }, - { - "l": "0.4", - "x": 1.1533, - "y": 58.4993 - }, - { - "l": "0.4", - "x": 1.1725, - "y": 58.6603 - }, - { - "l": "0.4", - "x": 1.1916, - "y": 58.8212 - }, - { - "l": "0.4", - "x": 1.2108, - "y": 58.9821 - }, - { - "l": "0.4", - "x": 1.23, - "y": 59.143 - }, - { - "l": "0.4", - "x": 1.2491, - "y": 59.304 - }, - { - "l": "0.4", - "x": 1.2683, - "y": 59.4649 - }, - { - "l": "0.4", - "x": 1.2875, - "y": 59.6258 - }, - { - "l": "0.4", - "x": 1.3066, - "y": 59.7867 - }, - { - "l": "0.4", - "x": 1.3258, - "y": 59.9477 - }, - { - "l": "0.4", - "x": 1.345, - "y": 60.1086 - }, - { - "l": "0.4", - "x": 1.3641, - "y": 60.2695 - }, - { - "l": "0.4", - "x": 1.3833, - "y": 60.4304 - }, - { - "l": "0.4", - "x": 1.4025, - "y": 60.5914 - }, - { - "l": "0.4", - "x": 1.4216, - "y": 60.7523 - }, - { - "l": "0.4", - "x": 1.4408, - "y": 60.9132 - }, - { - "l": "0.4", - "x": 1.46, - "y": 61.0741 - }, - { - "l": "0.4", - "x": 1.4791, - "y": 61.2351 - }, - { - "l": "0.4", - "x": 1.4983, - "y": 61.396 - }, - { - "l": "0.4", - "x": 1.5175, - "y": 61.5569 - }, - { - "l": "0.4", - "x": 1.5366, - "y": 61.7178 - }, - { - "l": "0.4", - "x": 1.5558, - "y": 61.8788 - }, - { - "l": "0.4", - "x": 1.5749, - "y": 62.0397 - }, - { - "l": "0.4", - "x": 1.5941, - "y": 62.2006 - }, - { - "l": "0.4", - "x": 1.6133, - "y": 62.3615 - }, - { - "l": "0.4", - "x": 1.6324, - "y": 62.5224 - }, - { - "l": "0.4", - "x": 1.6516, - "y": 62.6834 - }, - { - "l": "0.4", - "x": 1.6708, - "y": 62.8443 - }, - { - "l": "0.4", - "x": 1.6899, - "y": 63.0052 - }, - { - "l": "0.4", - "x": 1.7091, - "y": 63.1661 - }, - { - "l": "0.4", - "x": 1.7283, - "y": 63.3271 - }, - { - "l": "0.4", - "x": 1.7474, - "y": 63.488 - }, - { - "l": "0.4", - "x": 1.7666, - "y": 63.6489 - }, - { - "l": "0.4", - "x": 1.7858, - "y": 63.8098 - }, - { - "l": "0.4", - "x": 1.8049, - "y": 63.9708 - }, - { - "l": "0.4", - "x": 1.8241, - "y": 64.1317 - }, - { - "l": "0.4", - "x": 1.8433, - "y": 64.2926 - }, - { - "l": "0.4", - "x": 1.8624, - "y": 64.4535 - }, - { - "l": "0.4", - "x": 1.8816, - "y": 64.6145 - }, - { - "l": "0.4", - "x": 1.9008, - "y": 64.7754 - }, - { - "l": "0.4", - "x": 1.9199, - "y": 64.9363 - }, - { - "l": "0.4", - "x": 1.9391, - "y": 65.0972 - }, - { - "l": "0.4", - "x": 1.9582, - "y": 65.2582 - }, - { - "l": "0.4", - "x": 1.9774, - "y": 65.4191 - }, - { - "l": "0.4", - "x": 1.9966, - "y": 65.58 - }, - { - "l": "0.4", - "x": 2.0157, - "y": 65.738 - }, - { - "l": "0.4", - "x": 2.0991, - "y": 66.4202 - }, - { - "l": "0.4", - "x": 2.1824, - "y": 67.0981 - }, - { - "l": "0.4", - "x": 2.2657, - "y": 67.7716 - }, - { - "l": "0.4", - "x": 2.3491, - "y": 68.4403 - }, - { - "l": "0.4", - "x": 2.4324, - "y": 69.1039 - }, - { - "l": "0.4", - "x": 2.5157, - "y": 69.7621 - }, - { - "l": "0.4", - "x": 2.5991, - "y": 70.4146 - }, - { - "l": "0.4", - "x": 2.6824, - "y": 71.061 - }, - { - "l": "0.4", - "x": 2.7657, - "y": 71.701 - }, - { - "l": "0.4", - "x": 2.8491, - "y": 72.3343 - }, - { - "l": "0.4", - "x": 2.9324, - "y": 72.9606 - }, - { - "l": "0.4", - "x": 3.0157, - "y": 73.5793 - }, - { - "l": "0.4", - "x": 3.0991, - "y": 74.1889 - }, - { - "l": "0.4", - "x": 3.1824, - "y": 74.7907 - }, - { - "l": "0.4", - "x": 3.2657, - "y": 75.3843 - }, - { - "l": "0.4", - "x": 3.3491, - "y": 75.9695 - }, - { - "l": "0.4", - "x": 3.4324, - "y": 76.5461 - }, - { - "l": "0.4", - "x": 3.5157, - "y": 77.1139 - }, - { - "l": "0.4", - "x": 3.5991, - "y": 77.6724 - }, - { - "l": "0.4", - "x": 3.6824, - "y": 78.2217 - }, - { - "l": "0.4", - "x": 3.7657, - "y": 78.7613 - }, - { - "l": "0.4", - "x": 3.8491, - "y": 79.291 - }, - { - "l": "0.4", - "x": 3.9324, - "y": 79.8106 - }, - { - "l": "0.4", - "x": 4.0157, - "y": 80.3178 - }, - { - "l": "0.4", - "x": 4.0991, - "y": 80.8057 - }, - { - "l": "0.4", - "x": 4.1824, - "y": 81.2833 - }, - { - "l": "0.4", - "x": 4.2657, - "y": 81.7508 - }, - { - "l": "0.4", - "x": 4.3491, - "y": 82.2084 - }, - { - "l": "0.4", - "x": 4.4324, - "y": 82.6562 - }, - { - "l": "0.4", - "x": 4.5157, - "y": 83.0945 - }, - { - "l": "0.4", - "x": 4.5991, - "y": 83.5235 - }, - { - "l": "0.4", - "x": 4.6824, - "y": 83.9434 - }, - { - "l": "0.4", - "x": 4.7657, - "y": 84.3544 - }, - { - "l": "0.4", - "x": 4.8491, - "y": 84.7566 - }, - { - "l": "0.4", - "x": 4.9324, - "y": 85.1504 - }, - { - "l": "0.4", - "x": 5.0157, - "y": 85.535 - }, - { - "l": "0.4", - "x": 5.0991, - "y": 85.9079 - }, - { - "l": "0.4", - "x": 5.1824, - "y": 86.2732 - }, - { - "l": "0.4", - "x": 5.2657, - "y": 86.6311 - }, - { - "l": "0.4", - "x": 5.3491, - "y": 86.9822 - }, - { - "l": "0.4", - "x": 5.4324, - "y": 87.3267 - }, - { - "l": "0.4", - "x": 5.5157, - "y": 87.6652 - }, - { - "l": "0.4", - "x": 5.5991, - "y": 87.9979 - }, - { - "l": "0.4", - "x": 5.6824, - "y": 88.3253 - }, - { - "l": "0.4", - "x": 5.7657, - "y": 88.6477 - }, - { - "l": "0.4", - "x": 5.8491, - "y": 88.9655 - }, - { - "l": "0.4", - "x": 5.9324, - "y": 89.2792 - }, - { - "l": "0.4", - "x": 6.0157, - "y": 89.5893 - }, - { - "l": "0.4", - "x": 6.0991, - "y": 89.8964 - }, - { - "l": "0.4", - "x": 6.1824, - "y": 90.2005 - }, - { - "l": "0.4", - "x": 6.2657, - "y": 90.5019 - }, - { - "l": "0.4", - "x": 6.3491, - "y": 90.8011 - }, - { - "l": "0.4", - "x": 6.4324, - "y": 91.0983 - }, - { - "l": "0.4", - "x": 6.5157, - "y": 91.3939 - }, - { - "l": "0.4", - "x": 6.5991, - "y": 91.6883 - }, - { - "l": "0.4", - "x": 6.6824, - "y": 91.9819 - }, - { - "l": "0.4", - "x": 6.7657, - "y": 92.275 - }, - { - "l": "0.4", - "x": 6.8491, - "y": 92.568 - }, - { - "l": "0.4", - "x": 6.9324, - "y": 92.8612 - }, - { - "l": "0.4", - "x": 7.0157, - "y": 93.1566 - }, - { - "l": "0.4", - "x": 7.0991, - "y": 93.4591 - }, - { - "l": "0.4", - "x": 7.1824, - "y": 93.7626 - }, - { - "l": "0.4", - "x": 7.2657, - "y": 94.067 - }, - { - "l": "0.4", - "x": 7.3491, - "y": 94.3726 - }, - { - "l": "0.4", - "x": 7.4324, - "y": 94.6792 - }, - { - "l": "0.4", - "x": 7.5157, - "y": 94.9869 - }, - { - "l": "0.4", - "x": 7.5991, - "y": 95.2958 - }, - { - "l": "0.4", - "x": 7.6824, - "y": 95.6059 - }, - { - "l": "0.4", - "x": 7.7657, - "y": 95.9172 - }, - { - "l": "0.4", - "x": 7.8491, - "y": 96.2298 - }, - { - "l": "0.4", - "x": 7.9324, - "y": 96.5437 - }, - { - "l": "0.4", - "x": 8.0157, - "y": 96.8601 - }, - { - "l": "0.4", - "x": 8.0991, - "y": 97.1822 - }, - { - "l": "0.4", - "x": 8.1824, - "y": 97.5055 - }, - { - "l": "0.4", - "x": 8.2657, - "y": 97.8297 - }, - { - "l": "0.4", - "x": 8.3491, - "y": 98.1548 - }, - { - "l": "0.4", - "x": 8.4324, - "y": 98.4805 - }, - { - "l": "0.4", - "x": 8.5157, - "y": 98.8066 - }, - { - "l": "0.4", - "x": 8.5991, - "y": 99.1329 - }, - { - "l": "0.4", - "x": 8.6824, - "y": 99.4593 - }, - { - "l": "0.4", - "x": 8.7657, - "y": 99.7856 - }, - { - "l": "0.4", - "x": 8.8491, - "y": 100.1115 - }, - { - "l": "0.4", - "x": 8.9324, - "y": 100.4369 - }, - { - "l": "0.4", - "x": 9.0157, - "y": 100.7616 - }, - { - "l": "0.4", - "x": 9.0991, - "y": 101.0849 - }, - { - "l": "0.4", - "x": 9.1824, - "y": 101.4072 - }, - { - "l": "0.4", - "x": 9.2657, - "y": 101.7283 - }, - { - "l": "0.4", - "x": 9.3491, - "y": 102.048 - }, - { - "l": "0.4", - "x": 9.4324, - "y": 102.3662 - }, - { - "l": "0.4", - "x": 9.5157, - "y": 102.6826 - }, - { - "l": "0.4", - "x": 9.5991, - "y": 102.9972 - }, - { - "l": "0.4", - "x": 9.6824, - "y": 103.3097 - }, - { - "l": "0.4", - "x": 9.7657, - "y": 103.62 - }, - { - "l": "0.4", - "x": 9.8491, - "y": 103.9279 - }, - { - "l": "0.4", - "x": 9.9324, - "y": 104.2333 - }, - { - "l": "0.4", - "x": 10.0157, - "y": 104.5352 - }, - { - "l": "0.4", - "x": 10.0991, - "y": 104.8315 - }, - { - "l": "0.4", - "x": 10.1824, - "y": 105.1249 - }, - { - "l": "0.4", - "x": 10.2657, - "y": 105.4154 - }, - { - "l": "0.4", - "x": 10.3491, - "y": 105.7029 - }, - { - "l": "0.4", - "x": 10.4324, - "y": 105.9876 - }, - { - "l": "0.4", - "x": 10.5157, - "y": 106.2692 - }, - { - "l": "0.4", - "x": 10.5991, - "y": 106.5479 - }, - { - "l": "0.4", - "x": 10.6824, - "y": 106.8236 - }, - { - "l": "0.4", - "x": 10.7657, - "y": 107.0963 - }, - { - "l": "0.4", - "x": 10.8491, - "y": 107.3659 - }, - { - "l": "0.4", - "x": 10.9324, - "y": 107.6325 - }, - { - "l": "0.4", - "x": 11.0157, - "y": 107.8952 - }, - { - "l": "0.4", - "x": 11.0991, - "y": 108.152 - }, - { - "l": "0.4", - "x": 11.1824, - "y": 108.4059 - }, - { - "l": "0.4", - "x": 11.2657, - "y": 108.6569 - }, - { - "l": "0.4", - "x": 11.3491, - "y": 108.9052 - }, - { - "l": "0.4", - "x": 11.4324, - "y": 109.1511 - }, - { - "l": "0.4", - "x": 11.5157, - "y": 109.3944 - }, - { - "l": "0.4", - "x": 11.5991, - "y": 109.6355 - }, - { - "l": "0.4", - "x": 11.6824, - "y": 109.8745 - }, - { - "l": "0.4", - "x": 11.7657, - "y": 110.1114 - }, - { - "l": "0.4", - "x": 11.8491, - "y": 110.3465 - }, - { - "l": "0.4", - "x": 11.9324, - "y": 110.5798 - }, - { - "l": "0.4", - "x": 12.0157, - "y": 110.8114 - }, - { - "l": "0.4", - "x": 12.0991, - "y": 111.0413 - }, - { - "l": "0.4", - "x": 12.1824, - "y": 111.2699 - }, - { - "l": "0.4", - "x": 12.2657, - "y": 111.4973 - }, - { - "l": "0.4", - "x": 12.3491, - "y": 111.7236 - }, - { - "l": "0.4", - "x": 12.4324, - "y": 111.949 - }, - { - "l": "0.4", - "x": 12.5157, - "y": 112.1735 - }, - { - "l": "0.4", - "x": 12.5991, - "y": 112.3975 - }, - { - "l": "0.4", - "x": 12.6824, - "y": 112.621 - }, - { - "l": "0.4", - "x": 12.7657, - "y": 112.8441 - }, - { - "l": "0.4", - "x": 12.8491, - "y": 113.0669 - }, - { - "l": "0.4", - "x": 12.9324, - "y": 113.2897 - }, - { - "l": "0.4", - "x": 13.0157, - "y": 113.5132 - }, - { - "l": "0.4", - "x": 13.0991, - "y": 113.7391 - }, - { - "l": "0.4", - "x": 13.1824, - "y": 113.9653 - }, - { - "l": "0.4", - "x": 13.2657, - "y": 114.1917 - }, - { - "l": "0.4", - "x": 13.3491, - "y": 114.4184 - }, - { - "l": "0.4", - "x": 13.4324, - "y": 114.6453 - }, - { - "l": "0.4", - "x": 13.5157, - "y": 114.8725 - }, - { - "l": "0.4", - "x": 13.5991, - "y": 115.1 - }, - { - "l": "0.4", - "x": 13.6824, - "y": 115.3278 - }, - { - "l": "0.4", - "x": 13.7657, - "y": 115.556 - }, - { - "l": "0.4", - "x": 13.8491, - "y": 115.7845 - }, - { - "l": "0.4", - "x": 13.9324, - "y": 116.0135 - }, - { - "l": "0.4", - "x": 14.0157, - "y": 116.2438 - }, - { - "l": "0.4", - "x": 14.0991, - "y": 116.4786 - }, - { - "l": "0.4", - "x": 14.1824, - "y": 116.7136 - }, - { - "l": "0.4", - "x": 14.2657, - "y": 116.9486 - }, - { - "l": "0.4", - "x": 14.3491, - "y": 117.1835 - }, - { - "l": "0.4", - "x": 14.4324, - "y": 117.4179 - }, - { - "l": "0.4", - "x": 14.5157, - "y": 117.6518 - }, - { - "l": "0.4", - "x": 14.5991, - "y": 117.8849 - }, - { - "l": "0.4", - "x": 14.6824, - "y": 118.1171 - }, - { - "l": "0.4", - "x": 14.7657, - "y": 118.3481 - }, - { - "l": "0.4", - "x": 14.8491, - "y": 118.5778 - }, - { - "l": "0.4", - "x": 14.9324, - "y": 118.8059 - }, - { - "l": "0.4", - "x": 15.0157, - "y": 119.0323 - }, - { - "l": "0.4", - "x": 15.0991, - "y": 119.2568 - }, - { - "l": "0.4", - "x": 15.1824, - "y": 119.4791 - }, - { - "l": "0.4", - "x": 15.2657, - "y": 119.6992 - }, - { - "l": "0.4", - "x": 15.3491, - "y": 119.9168 - }, - { - "l": "0.4", - "x": 15.4324, - "y": 120.1317 - }, - { - "l": "0.4", - "x": 15.5157, - "y": 120.3437 - }, - { - "l": "0.4", - "x": 15.5991, - "y": 120.5526 - }, - { - "l": "0.4", - "x": 15.6824, - "y": 120.7583 - }, - { - "l": "0.4", - "x": 15.7657, - "y": 120.9605 - }, - { - "l": "0.4", - "x": 15.8491, - "y": 121.159 - }, - { - "l": "0.4", - "x": 15.9324, - "y": 121.3537 - }, - { - "l": "0.4", - "x": 16.0157, - "y": 121.544 - }, - { - "l": "0.4", - "x": 16.0991, - "y": 121.7286 - }, - { - "l": "0.4", - "x": 16.1824, - "y": 121.9088 - }, - { - "l": "0.4", - "x": 16.2657, - "y": 122.0845 - }, - { - "l": "0.4", - "x": 16.3491, - "y": 122.2558 - }, - { - "l": "0.4", - "x": 16.4324, - "y": 122.4223 - }, - { - "l": "0.4", - "x": 16.5157, - "y": 122.5841 - }, - { - "l": "0.4", - "x": 16.5991, - "y": 122.741 - }, - { - "l": "0.4", - "x": 16.6824, - "y": 122.893 - }, - { - "l": "0.4", - "x": 16.7657, - "y": 123.0398 - }, - { - "l": "0.4", - "x": 16.8491, - "y": 123.1814 - }, - { - "l": "0.4", - "x": 16.9324, - "y": 123.3177 - }, - { - "l": "0.4", - "x": 17.0157, - "y": 123.4474 - }, - { - "l": "0.4", - "x": 17.0991, - "y": 123.5669 - }, - { - "l": "0.4", - "x": 17.1824, - "y": 123.6811 - }, - { - "l": "0.4", - "x": 17.2657, - "y": 123.79 - }, - { - "l": "0.4", - "x": 17.3491, - "y": 123.8938 - }, - { - "l": "0.4", - "x": 17.4324, - "y": 123.9927 - }, - { - "l": "0.4", - "x": 17.5157, - "y": 124.0867 - }, - { - "l": "0.4", - "x": 17.5991, - "y": 124.176 - }, - { - "l": "0.4", - "x": 17.6824, - "y": 124.2607 - }, - { - "l": "0.4", - "x": 17.7657, - "y": 124.3409 - }, - { - "l": "0.4", - "x": 17.8491, - "y": 124.4168 - }, - { - "l": "0.4", - "x": 17.9324, - "y": 124.4886 - }, - { - "l": "0.4", - "x": 18.0157, - "y": 124.5561 - }, - { - "l": "0.4", - "x": 18.0991, - "y": 124.6192 - }, - { - "l": "0.4", - "x": 18.1824, - "y": 124.6785 - }, - { - "l": "0.4", - "x": 18.2657, - "y": 124.7342 - }, - { - "l": "0.4", - "x": 18.3491, - "y": 124.7864 - }, - { - "l": "0.4", - "x": 18.4324, - "y": 124.8354 - }, - { - "l": "0.4", - "x": 18.5157, - "y": 124.8813 - }, - { - "l": "0.4", - "x": 18.5991, - "y": 124.9243 - }, - { - "l": "0.4", - "x": 18.6824, - "y": 124.9644 - }, - { - "l": "0.4", - "x": 18.7657, - "y": 125.002 - }, - { - "l": "0.4", - "x": 18.8491, - "y": 125.037 - }, - { - "l": "0.4", - "x": 18.9324, - "y": 125.0698 - }, - { - "l": "0.4", - "x": 19.0157, - "y": 125.099 - }, - { - "l": "0.4", - "x": 19.0991, - "y": 125.1208 - }, - { - "l": "0.4", - "x": 19.1824, - "y": 125.1427 - }, - { - "l": "0.4", - "x": 19.2657, - "y": 125.1646 - }, - { - "l": "0.4", - "x": 19.3491, - "y": 125.1864 - }, - { - "l": "0.4", - "x": 19.4324, - "y": 125.2083 - }, - { - "l": "0.4", - "x": 19.5157, - "y": 125.2302 - }, - { - "l": "0.4", - "x": 19.5991, - "y": 125.252 - }, - { - "l": "0.4", - "x": 19.6824, - "y": 125.2739 - }, - { - "l": "0.4", - "x": 19.7657, - "y": 125.2958 - }, - { - "l": "0.4", - "x": 19.8491, - "y": 125.3176 - }, - { - "l": "0.4", - "x": 19.9324, - "y": 125.3395 - } - ] - }, - { - "sds": -2.0, - "centile": 2.0, - "data": [ - { - "l": "2.0", - "x": 1.0, - "y": 59.2615 - }, - { - "l": "2.0", - "x": 1.0192, - "y": 59.4281 - }, - { - "l": "2.0", - "x": 1.0383, - "y": 59.5948 - }, - { - "l": "2.0", - "x": 1.0575, - "y": 59.7615 - }, - { - "l": "2.0", - "x": 1.0767, - "y": 59.9282 - }, - { - "l": "2.0", - "x": 1.0958, - "y": 60.0949 - }, - { - "l": "2.0", - "x": 1.115, - "y": 60.2616 - }, - { - "l": "2.0", - "x": 1.1342, - "y": 60.4283 - }, - { - "l": "2.0", - "x": 1.1533, - "y": 60.595 - }, - { - "l": "2.0", - "x": 1.1725, - "y": 60.7617 - }, - { - "l": "2.0", - "x": 1.1916, - "y": 60.9284 - }, - { - "l": "2.0", - "x": 1.2108, - "y": 61.095 - }, - { - "l": "2.0", - "x": 1.23, - "y": 61.2617 - }, - { - "l": "2.0", - "x": 1.2491, - "y": 61.4284 - }, - { - "l": "2.0", - "x": 1.2683, - "y": 61.5951 - }, - { - "l": "2.0", - "x": 1.2875, - "y": 61.7618 - }, - { - "l": "2.0", - "x": 1.3066, - "y": 61.9285 - }, - { - "l": "2.0", - "x": 1.3258, - "y": 62.0952 - }, - { - "l": "2.0", - "x": 1.345, - "y": 62.2619 - }, - { - "l": "2.0", - "x": 1.3641, - "y": 62.4286 - }, - { - "l": "2.0", - "x": 1.3833, - "y": 62.5952 - }, - { - "l": "2.0", - "x": 1.4025, - "y": 62.7619 - }, - { - "l": "2.0", - "x": 1.4216, - "y": 62.9286 - }, - { - "l": "2.0", - "x": 1.4408, - "y": 63.0953 - }, - { - "l": "2.0", - "x": 1.46, - "y": 63.262 - }, - { - "l": "2.0", - "x": 1.4791, - "y": 63.4287 - }, - { - "l": "2.0", - "x": 1.4983, - "y": 63.5954 - }, - { - "l": "2.0", - "x": 1.5175, - "y": 63.7621 - }, - { - "l": "2.0", - "x": 1.5366, - "y": 63.9288 - }, - { - "l": "2.0", - "x": 1.5558, - "y": 64.0954 - }, - { - "l": "2.0", - "x": 1.5749, - "y": 64.2621 - }, - { - "l": "2.0", - "x": 1.5941, - "y": 64.4288 - }, - { - "l": "2.0", - "x": 1.6133, - "y": 64.5955 - }, - { - "l": "2.0", - "x": 1.6324, - "y": 64.7622 - }, - { - "l": "2.0", - "x": 1.6516, - "y": 64.9289 - }, - { - "l": "2.0", - "x": 1.6708, - "y": 65.0956 - }, - { - "l": "2.0", - "x": 1.6899, - "y": 65.2623 - }, - { - "l": "2.0", - "x": 1.7091, - "y": 65.429 - }, - { - "l": "2.0", - "x": 1.7283, - "y": 65.5956 - }, - { - "l": "2.0", - "x": 1.7474, - "y": 65.7623 - }, - { - "l": "2.0", - "x": 1.7666, - "y": 65.929 - }, - { - "l": "2.0", - "x": 1.7858, - "y": 66.0957 - }, - { - "l": "2.0", - "x": 1.8049, - "y": 66.2624 - }, - { - "l": "2.0", - "x": 1.8241, - "y": 66.4291 - }, - { - "l": "2.0", - "x": 1.8433, - "y": 66.5958 - }, - { - "l": "2.0", - "x": 1.8624, - "y": 66.7625 - }, - { - "l": "2.0", - "x": 1.8816, - "y": 66.9292 - }, - { - "l": "2.0", - "x": 1.9008, - "y": 67.0958 - }, - { - "l": "2.0", - "x": 1.9199, - "y": 67.2625 - }, - { - "l": "2.0", - "x": 1.9391, - "y": 67.4292 - }, - { - "l": "2.0", - "x": 1.9582, - "y": 67.5959 - }, - { - "l": "2.0", - "x": 1.9774, - "y": 67.7626 - }, - { - "l": "2.0", - "x": 1.9966, - "y": 67.9293 - }, - { - "l": "2.0", - "x": 2.0157, - "y": 68.093 - }, - { - "l": "2.0", - "x": 2.0991, - "y": 68.7995 - }, - { - "l": "2.0", - "x": 2.1824, - "y": 69.5018 - }, - { - "l": "2.0", - "x": 2.2657, - "y": 70.1994 - }, - { - "l": "2.0", - "x": 2.3491, - "y": 70.8921 - }, - { - "l": "2.0", - "x": 2.4324, - "y": 71.5795 - }, - { - "l": "2.0", - "x": 2.5157, - "y": 72.2612 - }, - { - "l": "2.0", - "x": 2.5991, - "y": 72.9371 - }, - { - "l": "2.0", - "x": 2.6824, - "y": 73.6066 - }, - { - "l": "2.0", - "x": 2.7657, - "y": 74.2696 - }, - { - "l": "2.0", - "x": 2.8491, - "y": 74.9256 - }, - { - "l": "2.0", - "x": 2.9324, - "y": 75.5743 - }, - { - "l": "2.0", - "x": 3.0157, - "y": 76.2151 - }, - { - "l": "2.0", - "x": 3.0991, - "y": 76.8466 - }, - { - "l": "2.0", - "x": 3.1824, - "y": 77.4699 - }, - { - "l": "2.0", - "x": 3.2657, - "y": 78.0848 - }, - { - "l": "2.0", - "x": 3.3491, - "y": 78.691 - }, - { - "l": "2.0", - "x": 3.4324, - "y": 79.2883 - }, - { - "l": "2.0", - "x": 3.5157, - "y": 79.8763 - }, - { - "l": "2.0", - "x": 3.5991, - "y": 80.4549 - }, - { - "l": "2.0", - "x": 3.6824, - "y": 81.0238 - }, - { - "l": "2.0", - "x": 3.7657, - "y": 81.5827 - }, - { - "l": "2.0", - "x": 3.8491, - "y": 82.1314 - }, - { - "l": "2.0", - "x": 3.9324, - "y": 82.6697 - }, - { - "l": "2.0", - "x": 4.0157, - "y": 83.195 - }, - { - "l": "2.0", - "x": 4.0991, - "y": 83.7004 - }, - { - "l": "2.0", - "x": 4.1824, - "y": 84.1951 - }, - { - "l": "2.0", - "x": 4.2657, - "y": 84.6794 - }, - { - "l": "2.0", - "x": 4.3491, - "y": 85.1533 - }, - { - "l": "2.0", - "x": 4.4324, - "y": 85.6172 - }, - { - "l": "2.0", - "x": 4.5157, - "y": 86.0712 - }, - { - "l": "2.0", - "x": 4.5991, - "y": 86.5156 - }, - { - "l": "2.0", - "x": 4.6824, - "y": 86.9505 - }, - { - "l": "2.0", - "x": 4.7657, - "y": 87.3762 - }, - { - "l": "2.0", - "x": 4.8491, - "y": 87.7929 - }, - { - "l": "2.0", - "x": 4.9324, - "y": 88.2008 - }, - { - "l": "2.0", - "x": 5.0157, - "y": 88.5992 - }, - { - "l": "2.0", - "x": 5.0991, - "y": 88.9854 - }, - { - "l": "2.0", - "x": 5.1824, - "y": 89.3638 - }, - { - "l": "2.0", - "x": 5.2657, - "y": 89.7345 - }, - { - "l": "2.0", - "x": 5.3491, - "y": 90.0982 - }, - { - "l": "2.0", - "x": 5.4324, - "y": 90.4551 - }, - { - "l": "2.0", - "x": 5.5157, - "y": 90.8056 - }, - { - "l": "2.0", - "x": 5.5991, - "y": 91.1502 - }, - { - "l": "2.0", - "x": 5.6824, - "y": 91.4893 - }, - { - "l": "2.0", - "x": 5.7657, - "y": 91.8233 - }, - { - "l": "2.0", - "x": 5.8491, - "y": 92.1526 - }, - { - "l": "2.0", - "x": 5.9324, - "y": 92.4775 - }, - { - "l": "2.0", - "x": 6.0157, - "y": 92.7986 - }, - { - "l": "2.0", - "x": 6.0991, - "y": 93.1168 - }, - { - "l": "2.0", - "x": 6.1824, - "y": 93.4318 - }, - { - "l": "2.0", - "x": 6.2657, - "y": 93.744 - }, - { - "l": "2.0", - "x": 6.3491, - "y": 94.0539 - }, - { - "l": "2.0", - "x": 6.4324, - "y": 94.3617 - }, - { - "l": "2.0", - "x": 6.5157, - "y": 94.6679 - }, - { - "l": "2.0", - "x": 6.5991, - "y": 94.9729 - }, - { - "l": "2.0", - "x": 6.6824, - "y": 95.277 - }, - { - "l": "2.0", - "x": 6.7657, - "y": 95.5806 - }, - { - "l": "2.0", - "x": 6.8491, - "y": 95.8841 - }, - { - "l": "2.0", - "x": 6.9324, - "y": 96.1878 - }, - { - "l": "2.0", - "x": 7.0157, - "y": 96.4937 - }, - { - "l": "2.0", - "x": 7.0991, - "y": 96.8071 - }, - { - "l": "2.0", - "x": 7.1824, - "y": 97.1214 - }, - { - "l": "2.0", - "x": 7.2657, - "y": 97.4368 - }, - { - "l": "2.0", - "x": 7.3491, - "y": 97.7533 - }, - { - "l": "2.0", - "x": 7.4324, - "y": 98.0709 - }, - { - "l": "2.0", - "x": 7.5157, - "y": 98.3896 - }, - { - "l": "2.0", - "x": 7.5991, - "y": 98.7096 - }, - { - "l": "2.0", - "x": 7.6824, - "y": 99.0308 - }, - { - "l": "2.0", - "x": 7.7657, - "y": 99.3532 - }, - { - "l": "2.0", - "x": 7.8491, - "y": 99.6771 - }, - { - "l": "2.0", - "x": 7.9324, - "y": 100.0022 - }, - { - "l": "2.0", - "x": 8.0157, - "y": 100.3299 - }, - { - "l": "2.0", - "x": 8.0991, - "y": 100.6635 - }, - { - "l": "2.0", - "x": 8.1824, - "y": 100.9984 - }, - { - "l": "2.0", - "x": 8.2657, - "y": 101.3343 - }, - { - "l": "2.0", - "x": 8.3491, - "y": 101.671 - }, - { - "l": "2.0", - "x": 8.4324, - "y": 102.0084 - }, - { - "l": "2.0", - "x": 8.5157, - "y": 102.3461 - }, - { - "l": "2.0", - "x": 8.5991, - "y": 102.6842 - }, - { - "l": "2.0", - "x": 8.6824, - "y": 103.0223 - }, - { - "l": "2.0", - "x": 8.7657, - "y": 103.3602 - }, - { - "l": "2.0", - "x": 8.8491, - "y": 103.6978 - }, - { - "l": "2.0", - "x": 8.9324, - "y": 104.0349 - }, - { - "l": "2.0", - "x": 9.0157, - "y": 104.3712 - }, - { - "l": "2.0", - "x": 9.0991, - "y": 104.7061 - }, - { - "l": "2.0", - "x": 9.1824, - "y": 105.04 - }, - { - "l": "2.0", - "x": 9.2657, - "y": 105.3726 - }, - { - "l": "2.0", - "x": 9.3491, - "y": 105.7037 - }, - { - "l": "2.0", - "x": 9.4324, - "y": 106.0333 - }, - { - "l": "2.0", - "x": 9.5157, - "y": 106.3611 - }, - { - "l": "2.0", - "x": 9.5991, - "y": 106.6869 - }, - { - "l": "2.0", - "x": 9.6824, - "y": 107.0106 - }, - { - "l": "2.0", - "x": 9.7657, - "y": 107.332 - }, - { - "l": "2.0", - "x": 9.8491, - "y": 107.6509 - }, - { - "l": "2.0", - "x": 9.9324, - "y": 107.9672 - }, - { - "l": "2.0", - "x": 10.0157, - "y": 108.28 - }, - { - "l": "2.0", - "x": 10.0991, - "y": 108.5869 - }, - { - "l": "2.0", - "x": 10.1824, - "y": 108.8908 - }, - { - "l": "2.0", - "x": 10.2657, - "y": 109.1917 - }, - { - "l": "2.0", - "x": 10.3491, - "y": 109.4895 - }, - { - "l": "2.0", - "x": 10.4324, - "y": 109.7844 - }, - { - "l": "2.0", - "x": 10.5157, - "y": 110.0761 - }, - { - "l": "2.0", - "x": 10.5991, - "y": 110.3648 - }, - { - "l": "2.0", - "x": 10.6824, - "y": 110.6504 - }, - { - "l": "2.0", - "x": 10.7657, - "y": 110.9328 - }, - { - "l": "2.0", - "x": 10.8491, - "y": 111.2121 - }, - { - "l": "2.0", - "x": 10.9324, - "y": 111.4882 - }, - { - "l": "2.0", - "x": 11.0157, - "y": 111.7604 - }, - { - "l": "2.0", - "x": 11.0991, - "y": 112.0264 - }, - { - "l": "2.0", - "x": 11.1824, - "y": 112.2893 - }, - { - "l": "2.0", - "x": 11.2657, - "y": 112.5493 - }, - { - "l": "2.0", - "x": 11.3491, - "y": 112.8066 - }, - { - "l": "2.0", - "x": 11.4324, - "y": 113.0612 - }, - { - "l": "2.0", - "x": 11.5157, - "y": 113.3133 - }, - { - "l": "2.0", - "x": 11.5991, - "y": 113.563 - }, - { - "l": "2.0", - "x": 11.6824, - "y": 113.8106 - }, - { - "l": "2.0", - "x": 11.7657, - "y": 114.056 - }, - { - "l": "2.0", - "x": 11.8491, - "y": 114.2994 - }, - { - "l": "2.0", - "x": 11.9324, - "y": 114.5411 - }, - { - "l": "2.0", - "x": 12.0157, - "y": 114.781 - }, - { - "l": "2.0", - "x": 12.0991, - "y": 115.0192 - }, - { - "l": "2.0", - "x": 12.1824, - "y": 115.2559 - }, - { - "l": "2.0", - "x": 12.2657, - "y": 115.4915 - }, - { - "l": "2.0", - "x": 12.3491, - "y": 115.7259 - }, - { - "l": "2.0", - "x": 12.4324, - "y": 115.9593 - }, - { - "l": "2.0", - "x": 12.5157, - "y": 116.192 - }, - { - "l": "2.0", - "x": 12.5991, - "y": 116.4239 - }, - { - "l": "2.0", - "x": 12.6824, - "y": 116.6554 - }, - { - "l": "2.0", - "x": 12.7657, - "y": 116.8865 - }, - { - "l": "2.0", - "x": 12.8491, - "y": 117.1174 - }, - { - "l": "2.0", - "x": 12.9324, - "y": 117.3481 - }, - { - "l": "2.0", - "x": 13.0157, - "y": 117.5796 - }, - { - "l": "2.0", - "x": 13.0991, - "y": 117.8136 - }, - { - "l": "2.0", - "x": 13.1824, - "y": 118.0479 - }, - { - "l": "2.0", - "x": 13.2657, - "y": 118.2824 - }, - { - "l": "2.0", - "x": 13.3491, - "y": 118.5172 - }, - { - "l": "2.0", - "x": 13.4324, - "y": 118.7522 - }, - { - "l": "2.0", - "x": 13.5157, - "y": 118.9876 - }, - { - "l": "2.0", - "x": 13.5991, - "y": 119.2232 - }, - { - "l": "2.0", - "x": 13.6824, - "y": 119.4592 - }, - { - "l": "2.0", - "x": 13.7657, - "y": 119.6956 - }, - { - "l": "2.0", - "x": 13.8491, - "y": 119.9323 - }, - { - "l": "2.0", - "x": 13.9324, - "y": 120.1694 - }, - { - "l": "2.0", - "x": 14.0157, - "y": 120.408 - }, - { - "l": "2.0", - "x": 14.0991, - "y": 120.6512 - }, - { - "l": "2.0", - "x": 14.1824, - "y": 120.8947 - }, - { - "l": "2.0", - "x": 14.2657, - "y": 121.1381 - }, - { - "l": "2.0", - "x": 14.3491, - "y": 121.3814 - }, - { - "l": "2.0", - "x": 14.4324, - "y": 121.6242 - }, - { - "l": "2.0", - "x": 14.5157, - "y": 121.8665 - }, - { - "l": "2.0", - "x": 14.5991, - "y": 122.1079 - }, - { - "l": "2.0", - "x": 14.6824, - "y": 122.3484 - }, - { - "l": "2.0", - "x": 14.7657, - "y": 122.5877 - }, - { - "l": "2.0", - "x": 14.8491, - "y": 122.8256 - }, - { - "l": "2.0", - "x": 14.9324, - "y": 123.0619 - }, - { - "l": "2.0", - "x": 15.0157, - "y": 123.2964 - }, - { - "l": "2.0", - "x": 15.0991, - "y": 123.5289 - }, - { - "l": "2.0", - "x": 15.1824, - "y": 123.7593 - }, - { - "l": "2.0", - "x": 15.2657, - "y": 123.9872 - }, - { - "l": "2.0", - "x": 15.3491, - "y": 124.2126 - }, - { - "l": "2.0", - "x": 15.4324, - "y": 124.4352 - }, - { - "l": "2.0", - "x": 15.5157, - "y": 124.6548 - }, - { - "l": "2.0", - "x": 15.5991, - "y": 124.8712 - }, - { - "l": "2.0", - "x": 15.6824, - "y": 125.0842 - }, - { - "l": "2.0", - "x": 15.7657, - "y": 125.2936 - }, - { - "l": "2.0", - "x": 15.8491, - "y": 125.4993 - }, - { - "l": "2.0", - "x": 15.9324, - "y": 125.701 - }, - { - "l": "2.0", - "x": 16.0157, - "y": 125.8981 - }, - { - "l": "2.0", - "x": 16.0991, - "y": 126.0893 - }, - { - "l": "2.0", - "x": 16.1824, - "y": 126.2759 - }, - { - "l": "2.0", - "x": 16.2657, - "y": 126.458 - }, - { - "l": "2.0", - "x": 16.3491, - "y": 126.6353 - }, - { - "l": "2.0", - "x": 16.4324, - "y": 126.8079 - }, - { - "l": "2.0", - "x": 16.5157, - "y": 126.9755 - }, - { - "l": "2.0", - "x": 16.5991, - "y": 127.138 - }, - { - "l": "2.0", - "x": 16.6824, - "y": 127.2954 - }, - { - "l": "2.0", - "x": 16.7657, - "y": 127.4475 - }, - { - "l": "2.0", - "x": 16.8491, - "y": 127.5941 - }, - { - "l": "2.0", - "x": 16.9324, - "y": 127.7353 - }, - { - "l": "2.0", - "x": 17.0157, - "y": 127.8697 - }, - { - "l": "2.0", - "x": 17.0991, - "y": 127.9935 - }, - { - "l": "2.0", - "x": 17.1824, - "y": 128.1118 - }, - { - "l": "2.0", - "x": 17.2657, - "y": 128.2246 - }, - { - "l": "2.0", - "x": 17.3491, - "y": 128.3321 - }, - { - "l": "2.0", - "x": 17.4324, - "y": 128.4345 - }, - { - "l": "2.0", - "x": 17.5157, - "y": 128.5318 - }, - { - "l": "2.0", - "x": 17.5991, - "y": 128.6243 - }, - { - "l": "2.0", - "x": 17.6824, - "y": 128.7121 - }, - { - "l": "2.0", - "x": 17.7657, - "y": 128.7952 - }, - { - "l": "2.0", - "x": 17.8491, - "y": 128.8738 - }, - { - "l": "2.0", - "x": 17.9324, - "y": 128.9482 - }, - { - "l": "2.0", - "x": 18.0157, - "y": 129.0181 - }, - { - "l": "2.0", - "x": 18.0991, - "y": 129.0834 - }, - { - "l": "2.0", - "x": 18.1824, - "y": 129.1448 - }, - { - "l": "2.0", - "x": 18.2657, - "y": 129.2025 - }, - { - "l": "2.0", - "x": 18.3491, - "y": 129.2567 - }, - { - "l": "2.0", - "x": 18.4324, - "y": 129.3074 - }, - { - "l": "2.0", - "x": 18.5157, - "y": 129.355 - }, - { - "l": "2.0", - "x": 18.5991, - "y": 129.3994 - }, - { - "l": "2.0", - "x": 18.6824, - "y": 129.441 - }, - { - "l": "2.0", - "x": 18.7657, - "y": 129.4799 - }, - { - "l": "2.0", - "x": 18.8491, - "y": 129.5163 - }, - { - "l": "2.0", - "x": 18.9324, - "y": 129.5502 - }, - { - "l": "2.0", - "x": 19.0157, - "y": 129.5804 - }, - { - "l": "2.0", - "x": 19.0991, - "y": 129.603 - }, - { - "l": "2.0", - "x": 19.1824, - "y": 129.6257 - }, - { - "l": "2.0", - "x": 19.2657, - "y": 129.6483 - }, - { - "l": "2.0", - "x": 19.3491, - "y": 129.671 - }, - { - "l": "2.0", - "x": 19.4324, - "y": 129.6936 - }, - { - "l": "2.0", - "x": 19.5157, - "y": 129.7163 - }, - { - "l": "2.0", - "x": 19.5991, - "y": 129.7389 - }, - { - "l": "2.0", - "x": 19.6824, - "y": 129.7616 - }, - { - "l": "2.0", - "x": 19.7657, - "y": 129.7842 - }, - { - "l": "2.0", - "x": 19.8491, - "y": 129.8069 - }, - { - "l": "2.0", - "x": 19.9324, - "y": 129.8295 - } - ] - }, - { - "sds": -1.33, - "centile": 9.0, - "data": [ - { - "l": "9.0", - "x": 1.0, - "y": 61.311 - }, - { - "l": "9.0", - "x": 1.0192, - "y": 61.4834 - }, - { - "l": "9.0", - "x": 1.0383, - "y": 61.6559 - }, - { - "l": "9.0", - "x": 1.0575, - "y": 61.8283 - }, - { - "l": "9.0", - "x": 1.0767, - "y": 62.0008 - }, - { - "l": "9.0", - "x": 1.0958, - "y": 62.1732 - }, - { - "l": "9.0", - "x": 1.115, - "y": 62.3457 - }, - { - "l": "9.0", - "x": 1.1342, - "y": 62.5182 - }, - { - "l": "9.0", - "x": 1.1533, - "y": 62.6906 - }, - { - "l": "9.0", - "x": 1.1725, - "y": 62.8631 - }, - { - "l": "9.0", - "x": 1.1916, - "y": 63.0355 - }, - { - "l": "9.0", - "x": 1.2108, - "y": 63.208 - }, - { - "l": "9.0", - "x": 1.23, - "y": 63.3804 - }, - { - "l": "9.0", - "x": 1.2491, - "y": 63.5529 - }, - { - "l": "9.0", - "x": 1.2683, - "y": 63.7253 - }, - { - "l": "9.0", - "x": 1.2875, - "y": 63.8978 - }, - { - "l": "9.0", - "x": 1.3066, - "y": 64.0702 - }, - { - "l": "9.0", - "x": 1.3258, - "y": 64.2427 - }, - { - "l": "9.0", - "x": 1.345, - "y": 64.4151 - }, - { - "l": "9.0", - "x": 1.3641, - "y": 64.5876 - }, - { - "l": "9.0", - "x": 1.3833, - "y": 64.7601 - }, - { - "l": "9.0", - "x": 1.4025, - "y": 64.9325 - }, - { - "l": "9.0", - "x": 1.4216, - "y": 65.105 - }, - { - "l": "9.0", - "x": 1.4408, - "y": 65.2774 - }, - { - "l": "9.0", - "x": 1.46, - "y": 65.4499 - }, - { - "l": "9.0", - "x": 1.4791, - "y": 65.6223 - }, - { - "l": "9.0", - "x": 1.4983, - "y": 65.7948 - }, - { - "l": "9.0", - "x": 1.5175, - "y": 65.9672 - }, - { - "l": "9.0", - "x": 1.5366, - "y": 66.1397 - }, - { - "l": "9.0", - "x": 1.5558, - "y": 66.3121 - }, - { - "l": "9.0", - "x": 1.5749, - "y": 66.4846 - }, - { - "l": "9.0", - "x": 1.5941, - "y": 66.657 - }, - { - "l": "9.0", - "x": 1.6133, - "y": 66.8295 - }, - { - "l": "9.0", - "x": 1.6324, - "y": 67.002 - }, - { - "l": "9.0", - "x": 1.6516, - "y": 67.1744 - }, - { - "l": "9.0", - "x": 1.6708, - "y": 67.3469 - }, - { - "l": "9.0", - "x": 1.6899, - "y": 67.5193 - }, - { - "l": "9.0", - "x": 1.7091, - "y": 67.6918 - }, - { - "l": "9.0", - "x": 1.7283, - "y": 67.8642 - }, - { - "l": "9.0", - "x": 1.7474, - "y": 68.0367 - }, - { - "l": "9.0", - "x": 1.7666, - "y": 68.2091 - }, - { - "l": "9.0", - "x": 1.7858, - "y": 68.3816 - }, - { - "l": "9.0", - "x": 1.8049, - "y": 68.554 - }, - { - "l": "9.0", - "x": 1.8241, - "y": 68.7265 - }, - { - "l": "9.0", - "x": 1.8433, - "y": 68.8989 - }, - { - "l": "9.0", - "x": 1.8624, - "y": 69.0714 - }, - { - "l": "9.0", - "x": 1.8816, - "y": 69.2439 - }, - { - "l": "9.0", - "x": 1.9008, - "y": 69.4163 - }, - { - "l": "9.0", - "x": 1.9199, - "y": 69.5888 - }, - { - "l": "9.0", - "x": 1.9391, - "y": 69.7612 - }, - { - "l": "9.0", - "x": 1.9582, - "y": 69.9337 - }, - { - "l": "9.0", - "x": 1.9774, - "y": 70.1061 - }, - { - "l": "9.0", - "x": 1.9966, - "y": 70.2786 - }, - { - "l": "9.0", - "x": 2.0157, - "y": 70.4479 - }, - { - "l": "9.0", - "x": 2.0991, - "y": 71.1789 - }, - { - "l": "9.0", - "x": 2.1824, - "y": 71.9054 - }, - { - "l": "9.0", - "x": 2.2657, - "y": 72.6272 - }, - { - "l": "9.0", - "x": 2.3491, - "y": 73.3438 - }, - { - "l": "9.0", - "x": 2.4324, - "y": 74.055 - }, - { - "l": "9.0", - "x": 2.5157, - "y": 74.7603 - }, - { - "l": "9.0", - "x": 2.5991, - "y": 75.4595 - }, - { - "l": "9.0", - "x": 2.6824, - "y": 76.1522 - }, - { - "l": "9.0", - "x": 2.7657, - "y": 76.8381 - }, - { - "l": "9.0", - "x": 2.8491, - "y": 77.5168 - }, - { - "l": "9.0", - "x": 2.9324, - "y": 78.188 - }, - { - "l": "9.0", - "x": 3.0157, - "y": 78.851 - }, - { - "l": "9.0", - "x": 3.0991, - "y": 79.5043 - }, - { - "l": "9.0", - "x": 3.1824, - "y": 80.1492 - }, - { - "l": "9.0", - "x": 3.2657, - "y": 80.7853 - }, - { - "l": "9.0", - "x": 3.3491, - "y": 81.4125 - }, - { - "l": "9.0", - "x": 3.4324, - "y": 82.0304 - }, - { - "l": "9.0", - "x": 3.5157, - "y": 82.6388 - }, - { - "l": "9.0", - "x": 3.5991, - "y": 83.2374 - }, - { - "l": "9.0", - "x": 3.6824, - "y": 83.826 - }, - { - "l": "9.0", - "x": 3.7657, - "y": 84.4042 - }, - { - "l": "9.0", - "x": 3.8491, - "y": 84.9719 - }, - { - "l": "9.0", - "x": 3.9324, - "y": 85.5287 - }, - { - "l": "9.0", - "x": 4.0157, - "y": 86.0723 - }, - { - "l": "9.0", - "x": 4.0991, - "y": 86.5951 - }, - { - "l": "9.0", - "x": 4.1824, - "y": 87.107 - }, - { - "l": "9.0", - "x": 4.2657, - "y": 87.6079 - }, - { - "l": "9.0", - "x": 4.3491, - "y": 88.0983 - }, - { - "l": "9.0", - "x": 4.4324, - "y": 88.5782 - }, - { - "l": "9.0", - "x": 4.5157, - "y": 89.0479 - }, - { - "l": "9.0", - "x": 4.5991, - "y": 89.5077 - }, - { - "l": "9.0", - "x": 4.6824, - "y": 89.9576 - }, - { - "l": "9.0", - "x": 4.7657, - "y": 90.3981 - }, - { - "l": "9.0", - "x": 4.8491, - "y": 90.8292 - }, - { - "l": "9.0", - "x": 4.9324, - "y": 91.2511 - }, - { - "l": "9.0", - "x": 5.0157, - "y": 91.6633 - }, - { - "l": "9.0", - "x": 5.0991, - "y": 92.0629 - }, - { - "l": "9.0", - "x": 5.1824, - "y": 92.4543 - }, - { - "l": "9.0", - "x": 5.2657, - "y": 92.8379 - }, - { - "l": "9.0", - "x": 5.3491, - "y": 93.2141 - }, - { - "l": "9.0", - "x": 5.4324, - "y": 93.5834 - }, - { - "l": "9.0", - "x": 5.5157, - "y": 93.9461 - }, - { - "l": "9.0", - "x": 5.5991, - "y": 94.3026 - }, - { - "l": "9.0", - "x": 5.6824, - "y": 94.6534 - }, - { - "l": "9.0", - "x": 5.7657, - "y": 94.999 - }, - { - "l": "9.0", - "x": 5.8491, - "y": 95.3396 - }, - { - "l": "9.0", - "x": 5.9324, - "y": 95.6758 - }, - { - "l": "9.0", - "x": 6.0157, - "y": 96.008 - }, - { - "l": "9.0", - "x": 6.0991, - "y": 96.3371 - }, - { - "l": "9.0", - "x": 6.1824, - "y": 96.663 - }, - { - "l": "9.0", - "x": 6.2657, - "y": 96.9861 - }, - { - "l": "9.0", - "x": 6.3491, - "y": 97.3066 - }, - { - "l": "9.0", - "x": 6.4324, - "y": 97.6251 - }, - { - "l": "9.0", - "x": 6.5157, - "y": 97.9419 - }, - { - "l": "9.0", - "x": 6.5991, - "y": 98.2575 - }, - { - "l": "9.0", - "x": 6.6824, - "y": 98.5721 - }, - { - "l": "9.0", - "x": 6.7657, - "y": 98.8862 - }, - { - "l": "9.0", - "x": 6.8491, - "y": 99.2002 - }, - { - "l": "9.0", - "x": 6.9324, - "y": 99.5144 - }, - { - "l": "9.0", - "x": 7.0157, - "y": 99.8309 - }, - { - "l": "9.0", - "x": 7.0991, - "y": 100.1551 - }, - { - "l": "9.0", - "x": 7.1824, - "y": 100.4803 - }, - { - "l": "9.0", - "x": 7.2657, - "y": 100.8066 - }, - { - "l": "9.0", - "x": 7.3491, - "y": 101.134 - }, - { - "l": "9.0", - "x": 7.4324, - "y": 101.4626 - }, - { - "l": "9.0", - "x": 7.5157, - "y": 101.7923 - }, - { - "l": "9.0", - "x": 7.5991, - "y": 102.1234 - }, - { - "l": "9.0", - "x": 7.6824, - "y": 102.4557 - }, - { - "l": "9.0", - "x": 7.7657, - "y": 102.7893 - }, - { - "l": "9.0", - "x": 7.8491, - "y": 103.1243 - }, - { - "l": "9.0", - "x": 7.9324, - "y": 103.4607 - }, - { - "l": "9.0", - "x": 8.0157, - "y": 103.7997 - }, - { - "l": "9.0", - "x": 8.0991, - "y": 104.1449 - }, - { - "l": "9.0", - "x": 8.1824, - "y": 104.4914 - }, - { - "l": "9.0", - "x": 8.2657, - "y": 104.8389 - }, - { - "l": "9.0", - "x": 8.3491, - "y": 105.1872 - }, - { - "l": "9.0", - "x": 8.4324, - "y": 105.5362 - }, - { - "l": "9.0", - "x": 8.5157, - "y": 105.8857 - }, - { - "l": "9.0", - "x": 8.5991, - "y": 106.2354 - }, - { - "l": "9.0", - "x": 8.6824, - "y": 106.5852 - }, - { - "l": "9.0", - "x": 8.7657, - "y": 106.9348 - }, - { - "l": "9.0", - "x": 8.8491, - "y": 107.2841 - }, - { - "l": "9.0", - "x": 8.9324, - "y": 107.6329 - }, - { - "l": "9.0", - "x": 9.0157, - "y": 107.9808 - }, - { - "l": "9.0", - "x": 9.0991, - "y": 108.3273 - }, - { - "l": "9.0", - "x": 9.1824, - "y": 108.6727 - }, - { - "l": "9.0", - "x": 9.2657, - "y": 109.0168 - }, - { - "l": "9.0", - "x": 9.3491, - "y": 109.3594 - }, - { - "l": "9.0", - "x": 9.4324, - "y": 109.7004 - }, - { - "l": "9.0", - "x": 9.5157, - "y": 110.0395 - }, - { - "l": "9.0", - "x": 9.5991, - "y": 110.3766 - }, - { - "l": "9.0", - "x": 9.6824, - "y": 110.7115 - }, - { - "l": "9.0", - "x": 9.7657, - "y": 111.044 - }, - { - "l": "9.0", - "x": 9.8491, - "y": 111.374 - }, - { - "l": "9.0", - "x": 9.9324, - "y": 111.7012 - }, - { - "l": "9.0", - "x": 10.0157, - "y": 112.0248 - }, - { - "l": "9.0", - "x": 10.0991, - "y": 112.3423 - }, - { - "l": "9.0", - "x": 10.1824, - "y": 112.6567 - }, - { - "l": "9.0", - "x": 10.2657, - "y": 112.968 - }, - { - "l": "9.0", - "x": 10.3491, - "y": 113.2762 - }, - { - "l": "9.0", - "x": 10.4324, - "y": 113.5812 - }, - { - "l": "9.0", - "x": 10.5157, - "y": 113.883 - }, - { - "l": "9.0", - "x": 10.5991, - "y": 114.1817 - }, - { - "l": "9.0", - "x": 10.6824, - "y": 114.4771 - }, - { - "l": "9.0", - "x": 10.7657, - "y": 114.7693 - }, - { - "l": "9.0", - "x": 10.8491, - "y": 115.0583 - }, - { - "l": "9.0", - "x": 10.9324, - "y": 115.3439 - }, - { - "l": "9.0", - "x": 11.0157, - "y": 115.6255 - }, - { - "l": "9.0", - "x": 11.0991, - "y": 115.9007 - }, - { - "l": "9.0", - "x": 11.1824, - "y": 116.1728 - }, - { - "l": "9.0", - "x": 11.2657, - "y": 116.4418 - }, - { - "l": "9.0", - "x": 11.3491, - "y": 116.7079 - }, - { - "l": "9.0", - "x": 11.4324, - "y": 116.9713 - }, - { - "l": "9.0", - "x": 11.5157, - "y": 117.2322 - }, - { - "l": "9.0", - "x": 11.5991, - "y": 117.4905 - }, - { - "l": "9.0", - "x": 11.6824, - "y": 117.7466 - }, - { - "l": "9.0", - "x": 11.7657, - "y": 118.0005 - }, - { - "l": "9.0", - "x": 11.8491, - "y": 118.2524 - }, - { - "l": "9.0", - "x": 11.9324, - "y": 118.5024 - }, - { - "l": "9.0", - "x": 12.0157, - "y": 118.7506 - }, - { - "l": "9.0", - "x": 12.0991, - "y": 118.997 - }, - { - "l": "9.0", - "x": 12.1824, - "y": 119.242 - }, - { - "l": "9.0", - "x": 12.2657, - "y": 119.4856 - }, - { - "l": "9.0", - "x": 12.3491, - "y": 119.7282 - }, - { - "l": "9.0", - "x": 12.4324, - "y": 119.9697 - }, - { - "l": "9.0", - "x": 12.5157, - "y": 120.2104 - }, - { - "l": "9.0", - "x": 12.5991, - "y": 120.4504 - }, - { - "l": "9.0", - "x": 12.6824, - "y": 120.6898 - }, - { - "l": "9.0", - "x": 12.7657, - "y": 120.9289 - }, - { - "l": "9.0", - "x": 12.8491, - "y": 121.1678 - }, - { - "l": "9.0", - "x": 12.9324, - "y": 121.4065 - }, - { - "l": "9.0", - "x": 13.0157, - "y": 121.646 - }, - { - "l": "9.0", - "x": 13.0991, - "y": 121.8881 - }, - { - "l": "9.0", - "x": 13.1824, - "y": 122.1305 - }, - { - "l": "9.0", - "x": 13.2657, - "y": 122.3731 - }, - { - "l": "9.0", - "x": 13.3491, - "y": 122.616 - }, - { - "l": "9.0", - "x": 13.4324, - "y": 122.8592 - }, - { - "l": "9.0", - "x": 13.5157, - "y": 123.1027 - }, - { - "l": "9.0", - "x": 13.5991, - "y": 123.3465 - }, - { - "l": "9.0", - "x": 13.6824, - "y": 123.5906 - }, - { - "l": "9.0", - "x": 13.7657, - "y": 123.8352 - }, - { - "l": "9.0", - "x": 13.8491, - "y": 124.0801 - }, - { - "l": "9.0", - "x": 13.9324, - "y": 124.3254 - }, - { - "l": "9.0", - "x": 14.0157, - "y": 124.5722 - }, - { - "l": "9.0", - "x": 14.0991, - "y": 124.8239 - }, - { - "l": "9.0", - "x": 14.1824, - "y": 125.0757 - }, - { - "l": "9.0", - "x": 14.2657, - "y": 125.3276 - }, - { - "l": "9.0", - "x": 14.3491, - "y": 125.5792 - }, - { - "l": "9.0", - "x": 14.4324, - "y": 125.8305 - }, - { - "l": "9.0", - "x": 14.5157, - "y": 126.0811 - }, - { - "l": "9.0", - "x": 14.5991, - "y": 126.3309 - }, - { - "l": "9.0", - "x": 14.6824, - "y": 126.5797 - }, - { - "l": "9.0", - "x": 14.7657, - "y": 126.8273 - }, - { - "l": "9.0", - "x": 14.8491, - "y": 127.0734 - }, - { - "l": "9.0", - "x": 14.9324, - "y": 127.3179 - }, - { - "l": "9.0", - "x": 15.0157, - "y": 127.5605 - }, - { - "l": "9.0", - "x": 15.0991, - "y": 127.8011 - }, - { - "l": "9.0", - "x": 15.1824, - "y": 128.0394 - }, - { - "l": "9.0", - "x": 15.2657, - "y": 128.2752 - }, - { - "l": "9.0", - "x": 15.3491, - "y": 128.5084 - }, - { - "l": "9.0", - "x": 15.4324, - "y": 128.7387 - }, - { - "l": "9.0", - "x": 15.5157, - "y": 128.9658 - }, - { - "l": "9.0", - "x": 15.5991, - "y": 129.1897 - }, - { - "l": "9.0", - "x": 15.6824, - "y": 129.4101 - }, - { - "l": "9.0", - "x": 15.7657, - "y": 129.6268 - }, - { - "l": "9.0", - "x": 15.8491, - "y": 129.8396 - }, - { - "l": "9.0", - "x": 15.9324, - "y": 130.0483 - }, - { - "l": "9.0", - "x": 16.0157, - "y": 130.2522 - }, - { - "l": "9.0", - "x": 16.0991, - "y": 130.45 - }, - { - "l": "9.0", - "x": 16.1824, - "y": 130.6431 - }, - { - "l": "9.0", - "x": 16.2657, - "y": 130.8314 - }, - { - "l": "9.0", - "x": 16.3491, - "y": 131.0149 - }, - { - "l": "9.0", - "x": 16.4324, - "y": 131.1934 - }, - { - "l": "9.0", - "x": 16.5157, - "y": 131.3668 - }, - { - "l": "9.0", - "x": 16.5991, - "y": 131.535 - }, - { - "l": "9.0", - "x": 16.6824, - "y": 131.6978 - }, - { - "l": "9.0", - "x": 16.7657, - "y": 131.8551 - }, - { - "l": "9.0", - "x": 16.8491, - "y": 132.0069 - }, - { - "l": "9.0", - "x": 16.9324, - "y": 132.1529 - }, - { - "l": "9.0", - "x": 17.0157, - "y": 132.292 - }, - { - "l": "9.0", - "x": 17.0991, - "y": 132.4201 - }, - { - "l": "9.0", - "x": 17.1824, - "y": 132.5424 - }, - { - "l": "9.0", - "x": 17.2657, - "y": 132.6591 - }, - { - "l": "9.0", - "x": 17.3491, - "y": 132.7704 - }, - { - "l": "9.0", - "x": 17.4324, - "y": 132.8763 - }, - { - "l": "9.0", - "x": 17.5157, - "y": 132.977 - }, - { - "l": "9.0", - "x": 17.5991, - "y": 133.0727 - }, - { - "l": "9.0", - "x": 17.6824, - "y": 133.1635 - }, - { - "l": "9.0", - "x": 17.7657, - "y": 133.2495 - }, - { - "l": "9.0", - "x": 17.8491, - "y": 133.3308 - }, - { - "l": "9.0", - "x": 17.9324, - "y": 133.4077 - }, - { - "l": "9.0", - "x": 18.0157, - "y": 133.4801 - }, - { - "l": "9.0", - "x": 18.0991, - "y": 133.5477 - }, - { - "l": "9.0", - "x": 18.1824, - "y": 133.6112 - }, - { - "l": "9.0", - "x": 18.2657, - "y": 133.6709 - }, - { - "l": "9.0", - "x": 18.3491, - "y": 133.7269 - }, - { - "l": "9.0", - "x": 18.4324, - "y": 133.7794 - }, - { - "l": "9.0", - "x": 18.5157, - "y": 133.8286 - }, - { - "l": "9.0", - "x": 18.5991, - "y": 133.8746 - }, - { - "l": "9.0", - "x": 18.6824, - "y": 133.9177 - }, - { - "l": "9.0", - "x": 18.7657, - "y": 133.9579 - }, - { - "l": "9.0", - "x": 18.8491, - "y": 133.9955 - }, - { - "l": "9.0", - "x": 18.9324, - "y": 134.0306 - }, - { - "l": "9.0", - "x": 19.0157, - "y": 134.0618 - }, - { - "l": "9.0", - "x": 19.0991, - "y": 134.0853 - }, - { - "l": "9.0", - "x": 19.1824, - "y": 134.1087 - }, - { - "l": "9.0", - "x": 19.2657, - "y": 134.1321 - }, - { - "l": "9.0", - "x": 19.3491, - "y": 134.1556 - }, - { - "l": "9.0", - "x": 19.4324, - "y": 134.179 - }, - { - "l": "9.0", - "x": 19.5157, - "y": 134.2024 - }, - { - "l": "9.0", - "x": 19.5991, - "y": 134.2259 - }, - { - "l": "9.0", - "x": 19.6824, - "y": 134.2493 - }, - { - "l": "9.0", - "x": 19.7657, - "y": 134.2727 - }, - { - "l": "9.0", - "x": 19.8491, - "y": 134.2962 - }, - { - "l": "9.0", - "x": 19.9324, - "y": 134.3196 - } - ] - }, - { - "sds": -0.67, - "centile": 25.0, - "data": [ - { - "l": "25.0", - "x": 1.0, - "y": 63.3605 - }, - { - "l": "25.0", - "x": 1.0192, - "y": 63.5387 - }, - { - "l": "25.0", - "x": 1.0383, - "y": 63.7169 - }, - { - "l": "25.0", - "x": 1.0575, - "y": 63.8951 - }, - { - "l": "25.0", - "x": 1.0767, - "y": 64.0734 - }, - { - "l": "25.0", - "x": 1.0958, - "y": 64.2516 - }, - { - "l": "25.0", - "x": 1.115, - "y": 64.4298 - }, - { - "l": "25.0", - "x": 1.1342, - "y": 64.608 - }, - { - "l": "25.0", - "x": 1.1533, - "y": 64.7862 - }, - { - "l": "25.0", - "x": 1.1725, - "y": 64.9645 - }, - { - "l": "25.0", - "x": 1.1916, - "y": 65.1427 - }, - { - "l": "25.0", - "x": 1.2108, - "y": 65.3209 - }, - { - "l": "25.0", - "x": 1.23, - "y": 65.4991 - }, - { - "l": "25.0", - "x": 1.2491, - "y": 65.6773 - }, - { - "l": "25.0", - "x": 1.2683, - "y": 65.8555 - }, - { - "l": "25.0", - "x": 1.2875, - "y": 66.0338 - }, - { - "l": "25.0", - "x": 1.3066, - "y": 66.212 - }, - { - "l": "25.0", - "x": 1.3258, - "y": 66.3902 - }, - { - "l": "25.0", - "x": 1.345, - "y": 66.5684 - }, - { - "l": "25.0", - "x": 1.3641, - "y": 66.7466 - }, - { - "l": "25.0", - "x": 1.3833, - "y": 66.9249 - }, - { - "l": "25.0", - "x": 1.4025, - "y": 67.1031 - }, - { - "l": "25.0", - "x": 1.4216, - "y": 67.2813 - }, - { - "l": "25.0", - "x": 1.4408, - "y": 67.4595 - }, - { - "l": "25.0", - "x": 1.46, - "y": 67.6377 - }, - { - "l": "25.0", - "x": 1.4791, - "y": 67.816 - }, - { - "l": "25.0", - "x": 1.4983, - "y": 67.9942 - }, - { - "l": "25.0", - "x": 1.5175, - "y": 68.1724 - }, - { - "l": "25.0", - "x": 1.5366, - "y": 68.3506 - }, - { - "l": "25.0", - "x": 1.5558, - "y": 68.5288 - }, - { - "l": "25.0", - "x": 1.5749, - "y": 68.707 - }, - { - "l": "25.0", - "x": 1.5941, - "y": 68.8853 - }, - { - "l": "25.0", - "x": 1.6133, - "y": 69.0635 - }, - { - "l": "25.0", - "x": 1.6324, - "y": 69.2417 - }, - { - "l": "25.0", - "x": 1.6516, - "y": 69.4199 - }, - { - "l": "25.0", - "x": 1.6708, - "y": 69.5981 - }, - { - "l": "25.0", - "x": 1.6899, - "y": 69.7764 - }, - { - "l": "25.0", - "x": 1.7091, - "y": 69.9546 - }, - { - "l": "25.0", - "x": 1.7283, - "y": 70.1328 - }, - { - "l": "25.0", - "x": 1.7474, - "y": 70.311 - }, - { - "l": "25.0", - "x": 1.7666, - "y": 70.4892 - }, - { - "l": "25.0", - "x": 1.7858, - "y": 70.6675 - }, - { - "l": "25.0", - "x": 1.8049, - "y": 70.8457 - }, - { - "l": "25.0", - "x": 1.8241, - "y": 71.0239 - }, - { - "l": "25.0", - "x": 1.8433, - "y": 71.2021 - }, - { - "l": "25.0", - "x": 1.8624, - "y": 71.3803 - }, - { - "l": "25.0", - "x": 1.8816, - "y": 71.5585 - }, - { - "l": "25.0", - "x": 1.9008, - "y": 71.7368 - }, - { - "l": "25.0", - "x": 1.9199, - "y": 71.915 - }, - { - "l": "25.0", - "x": 1.9391, - "y": 72.0932 - }, - { - "l": "25.0", - "x": 1.9582, - "y": 72.2714 - }, - { - "l": "25.0", - "x": 1.9774, - "y": 72.4496 - }, - { - "l": "25.0", - "x": 1.9966, - "y": 72.6279 - }, - { - "l": "25.0", - "x": 2.0157, - "y": 72.8029 - }, - { - "l": "25.0", - "x": 2.0991, - "y": 73.5583 - }, - { - "l": "25.0", - "x": 2.1824, - "y": 74.3091 - }, - { - "l": "25.0", - "x": 2.2657, - "y": 75.055 - }, - { - "l": "25.0", - "x": 2.3491, - "y": 75.7956 - }, - { - "l": "25.0", - "x": 2.4324, - "y": 76.5305 - }, - { - "l": "25.0", - "x": 2.5157, - "y": 77.2594 - }, - { - "l": "25.0", - "x": 2.5991, - "y": 77.982 - }, - { - "l": "25.0", - "x": 2.6824, - "y": 78.6979 - }, - { - "l": "25.0", - "x": 2.7657, - "y": 79.4067 - }, - { - "l": "25.0", - "x": 2.8491, - "y": 80.1081 - }, - { - "l": "25.0", - "x": 2.9324, - "y": 80.8017 - }, - { - "l": "25.0", - "x": 3.0157, - "y": 81.4868 - }, - { - "l": "25.0", - "x": 3.0991, - "y": 82.162 - }, - { - "l": "25.0", - "x": 3.1824, - "y": 82.8284 - }, - { - "l": "25.0", - "x": 3.2657, - "y": 83.4858 - }, - { - "l": "25.0", - "x": 3.3491, - "y": 84.1339 - }, - { - "l": "25.0", - "x": 3.4324, - "y": 84.7725 - }, - { - "l": "25.0", - "x": 3.5157, - "y": 85.4012 - }, - { - "l": "25.0", - "x": 3.5991, - "y": 86.0199 - }, - { - "l": "25.0", - "x": 3.6824, - "y": 86.6281 - }, - { - "l": "25.0", - "x": 3.7657, - "y": 87.2257 - }, - { - "l": "25.0", - "x": 3.8491, - "y": 87.8123 - }, - { - "l": "25.0", - "x": 3.9324, - "y": 88.3878 - }, - { - "l": "25.0", - "x": 4.0157, - "y": 88.9495 - }, - { - "l": "25.0", - "x": 4.0991, - "y": 89.4899 - }, - { - "l": "25.0", - "x": 4.1824, - "y": 90.0188 - }, - { - "l": "25.0", - "x": 4.2657, - "y": 90.5365 - }, - { - "l": "25.0", - "x": 4.3491, - "y": 91.0432 - }, - { - "l": "25.0", - "x": 4.4324, - "y": 91.5392 - }, - { - "l": "25.0", - "x": 4.5157, - "y": 92.0246 - }, - { - "l": "25.0", - "x": 4.5991, - "y": 92.4997 - }, - { - "l": "25.0", - "x": 4.6824, - "y": 92.9648 - }, - { - "l": "25.0", - "x": 4.7657, - "y": 93.4199 - }, - { - "l": "25.0", - "x": 4.8491, - "y": 93.8654 - }, - { - "l": "25.0", - "x": 4.9324, - "y": 94.3015 - }, - { - "l": "25.0", - "x": 5.0157, - "y": 94.7274 - }, - { - "l": "25.0", - "x": 5.0991, - "y": 95.1404 - }, - { - "l": "25.0", - "x": 5.1824, - "y": 95.5449 - }, - { - "l": "25.0", - "x": 5.2657, - "y": 95.9413 - }, - { - "l": "25.0", - "x": 5.3491, - "y": 96.3301 - }, - { - "l": "25.0", - "x": 5.4324, - "y": 96.7117 - }, - { - "l": "25.0", - "x": 5.5157, - "y": 97.0865 - }, - { - "l": "25.0", - "x": 5.5991, - "y": 97.455 - }, - { - "l": "25.0", - "x": 5.6824, - "y": 97.8175 - }, - { - "l": "25.0", - "x": 5.7657, - "y": 98.1746 - }, - { - "l": "25.0", - "x": 5.8491, - "y": 98.5266 - }, - { - "l": "25.0", - "x": 5.9324, - "y": 98.874 - }, - { - "l": "25.0", - "x": 6.0157, - "y": 99.2174 - }, - { - "l": "25.0", - "x": 6.0991, - "y": 99.5575 - }, - { - "l": "25.0", - "x": 6.1824, - "y": 99.8943 - }, - { - "l": "25.0", - "x": 6.2657, - "y": 100.2281 - }, - { - "l": "25.0", - "x": 6.3491, - "y": 100.5594 - }, - { - "l": "25.0", - "x": 6.4324, - "y": 100.8886 - }, - { - "l": "25.0", - "x": 6.5157, - "y": 101.216 - }, - { - "l": "25.0", - "x": 6.5991, - "y": 101.542 - }, - { - "l": "25.0", - "x": 6.6824, - "y": 101.8672 - }, - { - "l": "25.0", - "x": 6.7657, - "y": 102.1918 - }, - { - "l": "25.0", - "x": 6.8491, - "y": 102.5162 - }, - { - "l": "25.0", - "x": 6.9324, - "y": 102.841 - }, - { - "l": "25.0", - "x": 7.0157, - "y": 103.1681 - }, - { - "l": "25.0", - "x": 7.0991, - "y": 103.5031 - }, - { - "l": "25.0", - "x": 7.1824, - "y": 103.8392 - }, - { - "l": "25.0", - "x": 7.2657, - "y": 104.1764 - }, - { - "l": "25.0", - "x": 7.3491, - "y": 104.5147 - }, - { - "l": "25.0", - "x": 7.4324, - "y": 104.8543 - }, - { - "l": "25.0", - "x": 7.5157, - "y": 105.1951 - }, - { - "l": "25.0", - "x": 7.5991, - "y": 105.5372 - }, - { - "l": "25.0", - "x": 7.6824, - "y": 105.8806 - }, - { - "l": "25.0", - "x": 7.7657, - "y": 106.2254 - }, - { - "l": "25.0", - "x": 7.8491, - "y": 106.5716 - }, - { - "l": "25.0", - "x": 7.9324, - "y": 106.9192 - }, - { - "l": "25.0", - "x": 8.0157, - "y": 107.2696 - }, - { - "l": "25.0", - "x": 8.0991, - "y": 107.6263 - }, - { - "l": "25.0", - "x": 8.1824, - "y": 107.9843 - }, - { - "l": "25.0", - "x": 8.2657, - "y": 108.3434 - }, - { - "l": "25.0", - "x": 8.3491, - "y": 108.7034 - }, - { - "l": "25.0", - "x": 8.4324, - "y": 109.0641 - }, - { - "l": "25.0", - "x": 8.5157, - "y": 109.4253 - }, - { - "l": "25.0", - "x": 8.5991, - "y": 109.7867 - }, - { - "l": "25.0", - "x": 8.6824, - "y": 110.1482 - }, - { - "l": "25.0", - "x": 8.7657, - "y": 110.5095 - }, - { - "l": "25.0", - "x": 8.8491, - "y": 110.8704 - }, - { - "l": "25.0", - "x": 8.9324, - "y": 111.2308 - }, - { - "l": "25.0", - "x": 9.0157, - "y": 111.5904 - }, - { - "l": "25.0", - "x": 9.0991, - "y": 111.9485 - }, - { - "l": "25.0", - "x": 9.1824, - "y": 112.3054 - }, - { - "l": "25.0", - "x": 9.2657, - "y": 112.661 - }, - { - "l": "25.0", - "x": 9.3491, - "y": 113.0151 - }, - { - "l": "25.0", - "x": 9.4324, - "y": 113.3674 - }, - { - "l": "25.0", - "x": 9.5157, - "y": 113.7179 - }, - { - "l": "25.0", - "x": 9.5991, - "y": 114.0663 - }, - { - "l": "25.0", - "x": 9.6824, - "y": 114.4124 - }, - { - "l": "25.0", - "x": 9.7657, - "y": 114.756 - }, - { - "l": "25.0", - "x": 9.8491, - "y": 115.097 - }, - { - "l": "25.0", - "x": 9.9324, - "y": 115.4352 - }, - { - "l": "25.0", - "x": 10.0157, - "y": 115.7696 - }, - { - "l": "25.0", - "x": 10.0991, - "y": 116.0977 - }, - { - "l": "25.0", - "x": 10.1824, - "y": 116.4226 - }, - { - "l": "25.0", - "x": 10.2657, - "y": 116.7443 - }, - { - "l": "25.0", - "x": 10.3491, - "y": 117.0628 - }, - { - "l": "25.0", - "x": 10.4324, - "y": 117.378 - }, - { - "l": "25.0", - "x": 10.5157, - "y": 117.6899 - }, - { - "l": "25.0", - "x": 10.5991, - "y": 117.9986 - }, - { - "l": "25.0", - "x": 10.6824, - "y": 118.3039 - }, - { - "l": "25.0", - "x": 10.7657, - "y": 118.6058 - }, - { - "l": "25.0", - "x": 10.8491, - "y": 118.9044 - }, - { - "l": "25.0", - "x": 10.9324, - "y": 119.1997 - }, - { - "l": "25.0", - "x": 11.0157, - "y": 119.4907 - }, - { - "l": "25.0", - "x": 11.0991, - "y": 119.7751 - }, - { - "l": "25.0", - "x": 11.1824, - "y": 120.0562 - }, - { - "l": "25.0", - "x": 11.2657, - "y": 120.3342 - }, - { - "l": "25.0", - "x": 11.3491, - "y": 120.6092 - }, - { - "l": "25.0", - "x": 11.4324, - "y": 120.8815 - }, - { - "l": "25.0", - "x": 11.5157, - "y": 121.151 - }, - { - "l": "25.0", - "x": 11.5991, - "y": 121.418 - }, - { - "l": "25.0", - "x": 11.6824, - "y": 121.6827 - }, - { - "l": "25.0", - "x": 11.7657, - "y": 121.9451 - }, - { - "l": "25.0", - "x": 11.8491, - "y": 122.2054 - }, - { - "l": "25.0", - "x": 11.9324, - "y": 122.4637 - }, - { - "l": "25.0", - "x": 12.0157, - "y": 122.7202 - }, - { - "l": "25.0", - "x": 12.0991, - "y": 122.9749 - }, - { - "l": "25.0", - "x": 12.1824, - "y": 123.228 - }, - { - "l": "25.0", - "x": 12.2657, - "y": 123.4798 - }, - { - "l": "25.0", - "x": 12.3491, - "y": 123.7304 - }, - { - "l": "25.0", - "x": 12.4324, - "y": 123.9801 - }, - { - "l": "25.0", - "x": 12.5157, - "y": 124.2288 - }, - { - "l": "25.0", - "x": 12.5991, - "y": 124.4768 - }, - { - "l": "25.0", - "x": 12.6824, - "y": 124.7243 - }, - { - "l": "25.0", - "x": 12.7657, - "y": 124.9714 - }, - { - "l": "25.0", - "x": 12.8491, - "y": 125.2182 - }, - { - "l": "25.0", - "x": 12.9324, - "y": 125.4649 - }, - { - "l": "25.0", - "x": 13.0157, - "y": 125.7124 - }, - { - "l": "25.0", - "x": 13.0991, - "y": 125.9626 - }, - { - "l": "25.0", - "x": 13.1824, - "y": 126.2131 - }, - { - "l": "25.0", - "x": 13.2657, - "y": 126.4638 - }, - { - "l": "25.0", - "x": 13.3491, - "y": 126.7148 - }, - { - "l": "25.0", - "x": 13.4324, - "y": 126.9661 - }, - { - "l": "25.0", - "x": 13.5157, - "y": 127.2178 - }, - { - "l": "25.0", - "x": 13.5991, - "y": 127.4697 - }, - { - "l": "25.0", - "x": 13.6824, - "y": 127.722 - }, - { - "l": "25.0", - "x": 13.7657, - "y": 127.9747 - }, - { - "l": "25.0", - "x": 13.8491, - "y": 128.2278 - }, - { - "l": "25.0", - "x": 13.9324, - "y": 128.4814 - }, - { - "l": "25.0", - "x": 14.0157, - "y": 128.7365 - }, - { - "l": "25.0", - "x": 14.0991, - "y": 128.9965 - }, - { - "l": "25.0", - "x": 14.1824, - "y": 129.2568 - }, - { - "l": "25.0", - "x": 14.2657, - "y": 129.5171 - }, - { - "l": "25.0", - "x": 14.3491, - "y": 129.7771 - }, - { - "l": "25.0", - "x": 14.4324, - "y": 130.0368 - }, - { - "l": "25.0", - "x": 14.5157, - "y": 130.2958 - }, - { - "l": "25.0", - "x": 14.5991, - "y": 130.554 - }, - { - "l": "25.0", - "x": 14.6824, - "y": 130.8111 - }, - { - "l": "25.0", - "x": 14.7657, - "y": 131.0669 - }, - { - "l": "25.0", - "x": 14.8491, - "y": 131.3212 - }, - { - "l": "25.0", - "x": 14.9324, - "y": 131.5739 - }, - { - "l": "25.0", - "x": 15.0157, - "y": 131.8246 - }, - { - "l": "25.0", - "x": 15.0991, - "y": 132.0732 - }, - { - "l": "25.0", - "x": 15.1824, - "y": 132.3195 - }, - { - "l": "25.0", - "x": 15.2657, - "y": 132.5632 - }, - { - "l": "25.0", - "x": 15.3491, - "y": 132.8042 - }, - { - "l": "25.0", - "x": 15.4324, - "y": 133.0421 - }, - { - "l": "25.0", - "x": 15.5157, - "y": 133.2769 - }, - { - "l": "25.0", - "x": 15.5991, - "y": 133.5083 - }, - { - "l": "25.0", - "x": 15.6824, - "y": 133.7361 - }, - { - "l": "25.0", - "x": 15.7657, - "y": 133.96 - }, - { - "l": "25.0", - "x": 15.8491, - "y": 134.1799 - }, - { - "l": "25.0", - "x": 15.9324, - "y": 134.3955 - }, - { - "l": "25.0", - "x": 16.0157, - "y": 134.6063 - }, - { - "l": "25.0", - "x": 16.0991, - "y": 134.8107 - }, - { - "l": "25.0", - "x": 16.1824, - "y": 135.0102 - }, - { - "l": "25.0", - "x": 16.2657, - "y": 135.2049 - }, - { - "l": "25.0", - "x": 16.3491, - "y": 135.3945 - }, - { - "l": "25.0", - "x": 16.4324, - "y": 135.579 - }, - { - "l": "25.0", - "x": 16.5157, - "y": 135.7582 - }, - { - "l": "25.0", - "x": 16.5991, - "y": 135.9319 - }, - { - "l": "25.0", - "x": 16.6824, - "y": 136.1002 - }, - { - "l": "25.0", - "x": 16.7657, - "y": 136.2628 - }, - { - "l": "25.0", - "x": 16.8491, - "y": 136.4196 - }, - { - "l": "25.0", - "x": 16.9324, - "y": 136.5706 - }, - { - "l": "25.0", - "x": 17.0157, - "y": 136.7142 - }, - { - "l": "25.0", - "x": 17.0991, - "y": 136.8466 - }, - { - "l": "25.0", - "x": 17.1824, - "y": 136.9731 - }, - { - "l": "25.0", - "x": 17.2657, - "y": 137.0937 - }, - { - "l": "25.0", - "x": 17.3491, - "y": 137.2086 - }, - { - "l": "25.0", - "x": 17.4324, - "y": 137.3181 - }, - { - "l": "25.0", - "x": 17.5157, - "y": 137.4222 - }, - { - "l": "25.0", - "x": 17.5991, - "y": 137.5211 - }, - { - "l": "25.0", - "x": 17.6824, - "y": 137.6149 - }, - { - "l": "25.0", - "x": 17.7657, - "y": 137.7038 - }, - { - "l": "25.0", - "x": 17.8491, - "y": 137.7879 - }, - { - "l": "25.0", - "x": 17.9324, - "y": 137.8673 - }, - { - "l": "25.0", - "x": 18.0157, - "y": 137.9421 - }, - { - "l": "25.0", - "x": 18.0991, - "y": 138.0119 - }, - { - "l": "25.0", - "x": 18.1824, - "y": 138.0776 - }, - { - "l": "25.0", - "x": 18.2657, - "y": 138.1393 - }, - { - "l": "25.0", - "x": 18.3491, - "y": 138.1972 - }, - { - "l": "25.0", - "x": 18.4324, - "y": 138.2514 - }, - { - "l": "25.0", - "x": 18.5157, - "y": 138.3023 - }, - { - "l": "25.0", - "x": 18.5991, - "y": 138.3498 - }, - { - "l": "25.0", - "x": 18.6824, - "y": 138.3943 - }, - { - "l": "25.0", - "x": 18.7657, - "y": 138.4359 - }, - { - "l": "25.0", - "x": 18.8491, - "y": 138.4747 - }, - { - "l": "25.0", - "x": 18.9324, - "y": 138.511 - }, - { - "l": "25.0", - "x": 19.0157, - "y": 138.5433 - }, - { - "l": "25.0", - "x": 19.0991, - "y": 138.5675 - }, - { - "l": "25.0", - "x": 19.1824, - "y": 138.5917 - }, - { - "l": "25.0", - "x": 19.2657, - "y": 138.6159 - }, - { - "l": "25.0", - "x": 19.3491, - "y": 138.6401 - }, - { - "l": "25.0", - "x": 19.4324, - "y": 138.6644 - }, - { - "l": "25.0", - "x": 19.5157, - "y": 138.6886 - }, - { - "l": "25.0", - "x": 19.5991, - "y": 138.7128 - }, - { - "l": "25.0", - "x": 19.6824, - "y": 138.737 - }, - { - "l": "25.0", - "x": 19.7657, - "y": 138.7612 - }, - { - "l": "25.0", - "x": 19.8491, - "y": 138.7854 - }, - { - "l": "25.0", - "x": 19.9324, - "y": 138.8097 - } - ] - }, - { - "sds": 0.0, - "centile": 50.0, - "data": [ - { - "l": "50.0", - "x": 1.0, - "y": 65.41 - }, - { - "l": "50.0", - "x": 1.0192, - "y": 65.594 - }, - { - "l": "50.0", - "x": 1.0383, - "y": 65.778 - }, - { - "l": "50.0", - "x": 1.0575, - "y": 65.962 - }, - { - "l": "50.0", - "x": 1.0767, - "y": 66.1459 - }, - { - "l": "50.0", - "x": 1.0958, - "y": 66.3299 - }, - { - "l": "50.0", - "x": 1.115, - "y": 66.5139 - }, - { - "l": "50.0", - "x": 1.1342, - "y": 66.6979 - }, - { - "l": "50.0", - "x": 1.1533, - "y": 66.8819 - }, - { - "l": "50.0", - "x": 1.1725, - "y": 67.0659 - }, - { - "l": "50.0", - "x": 1.1916, - "y": 67.2498 - }, - { - "l": "50.0", - "x": 1.2108, - "y": 67.4338 - }, - { - "l": "50.0", - "x": 1.23, - "y": 67.6178 - }, - { - "l": "50.0", - "x": 1.2491, - "y": 67.8018 - }, - { - "l": "50.0", - "x": 1.2683, - "y": 67.9858 - }, - { - "l": "50.0", - "x": 1.2875, - "y": 68.1698 - }, - { - "l": "50.0", - "x": 1.3066, - "y": 68.3537 - }, - { - "l": "50.0", - "x": 1.3258, - "y": 68.5377 - }, - { - "l": "50.0", - "x": 1.345, - "y": 68.7217 - }, - { - "l": "50.0", - "x": 1.3641, - "y": 68.9057 - }, - { - "l": "50.0", - "x": 1.3833, - "y": 69.0897 - }, - { - "l": "50.0", - "x": 1.4025, - "y": 69.2737 - }, - { - "l": "50.0", - "x": 1.4216, - "y": 69.4576 - }, - { - "l": "50.0", - "x": 1.4408, - "y": 69.6416 - }, - { - "l": "50.0", - "x": 1.46, - "y": 69.8256 - }, - { - "l": "50.0", - "x": 1.4791, - "y": 70.0096 - }, - { - "l": "50.0", - "x": 1.4983, - "y": 70.1936 - }, - { - "l": "50.0", - "x": 1.5175, - "y": 70.3776 - }, - { - "l": "50.0", - "x": 1.5366, - "y": 70.5615 - }, - { - "l": "50.0", - "x": 1.5558, - "y": 70.7455 - }, - { - "l": "50.0", - "x": 1.5749, - "y": 70.9295 - }, - { - "l": "50.0", - "x": 1.5941, - "y": 71.1135 - }, - { - "l": "50.0", - "x": 1.6133, - "y": 71.2975 - }, - { - "l": "50.0", - "x": 1.6324, - "y": 71.4815 - }, - { - "l": "50.0", - "x": 1.6516, - "y": 71.6654 - }, - { - "l": "50.0", - "x": 1.6708, - "y": 71.8494 - }, - { - "l": "50.0", - "x": 1.6899, - "y": 72.0334 - }, - { - "l": "50.0", - "x": 1.7091, - "y": 72.2174 - }, - { - "l": "50.0", - "x": 1.7283, - "y": 72.4014 - }, - { - "l": "50.0", - "x": 1.7474, - "y": 72.5854 - }, - { - "l": "50.0", - "x": 1.7666, - "y": 72.7693 - }, - { - "l": "50.0", - "x": 1.7858, - "y": 72.9533 - }, - { - "l": "50.0", - "x": 1.8049, - "y": 73.1373 - }, - { - "l": "50.0", - "x": 1.8241, - "y": 73.3213 - }, - { - "l": "50.0", - "x": 1.8433, - "y": 73.5053 - }, - { - "l": "50.0", - "x": 1.8624, - "y": 73.6893 - }, - { - "l": "50.0", - "x": 1.8816, - "y": 73.8732 - }, - { - "l": "50.0", - "x": 1.9008, - "y": 74.0572 - }, - { - "l": "50.0", - "x": 1.9199, - "y": 74.2412 - }, - { - "l": "50.0", - "x": 1.9391, - "y": 74.4252 - }, - { - "l": "50.0", - "x": 1.9582, - "y": 74.6092 - }, - { - "l": "50.0", - "x": 1.9774, - "y": 74.7932 - }, - { - "l": "50.0", - "x": 1.9966, - "y": 74.9771 - }, - { - "l": "50.0", - "x": 2.0157, - "y": 75.1578 - }, - { - "l": "50.0", - "x": 2.0991, - "y": 75.9377 - }, - { - "l": "50.0", - "x": 2.1824, - "y": 76.7128 - }, - { - "l": "50.0", - "x": 2.2657, - "y": 77.4828 - }, - { - "l": "50.0", - "x": 2.3491, - "y": 78.2473 - }, - { - "l": "50.0", - "x": 2.4324, - "y": 79.006 - }, - { - "l": "50.0", - "x": 2.5157, - "y": 79.7585 - }, - { - "l": "50.0", - "x": 2.5991, - "y": 80.5045 - }, - { - "l": "50.0", - "x": 2.6824, - "y": 81.2435 - }, - { - "l": "50.0", - "x": 2.7657, - "y": 81.9752 - }, - { - "l": "50.0", - "x": 2.8491, - "y": 82.6993 - }, - { - "l": "50.0", - "x": 2.9324, - "y": 83.4154 - }, - { - "l": "50.0", - "x": 3.0157, - "y": 84.1227 - }, - { - "l": "50.0", - "x": 3.0991, - "y": 84.8197 - }, - { - "l": "50.0", - "x": 3.1824, - "y": 85.5076 - }, - { - "l": "50.0", - "x": 3.2657, - "y": 86.1863 - }, - { - "l": "50.0", - "x": 3.3491, - "y": 86.8554 - }, - { - "l": "50.0", - "x": 3.4324, - "y": 87.5146 - }, - { - "l": "50.0", - "x": 3.5157, - "y": 88.1637 - }, - { - "l": "50.0", - "x": 3.5991, - "y": 88.8023 - }, - { - "l": "50.0", - "x": 3.6824, - "y": 89.4303 - }, - { - "l": "50.0", - "x": 3.7657, - "y": 90.0472 - }, - { - "l": "50.0", - "x": 3.8491, - "y": 90.6528 - }, - { - "l": "50.0", - "x": 3.9324, - "y": 91.2469 - }, - { - "l": "50.0", - "x": 4.0157, - "y": 91.8267 - }, - { - "l": "50.0", - "x": 4.0991, - "y": 92.3846 - }, - { - "l": "50.0", - "x": 4.1824, - "y": 92.9306 - }, - { - "l": "50.0", - "x": 4.2657, - "y": 93.4651 - }, - { - "l": "50.0", - "x": 4.3491, - "y": 93.9882 - }, - { - "l": "50.0", - "x": 4.4324, - "y": 94.5002 - }, - { - "l": "50.0", - "x": 4.5157, - "y": 95.0013 - }, - { - "l": "50.0", - "x": 4.5991, - "y": 95.4918 - }, - { - "l": "50.0", - "x": 4.6824, - "y": 95.9719 - }, - { - "l": "50.0", - "x": 4.7657, - "y": 96.4417 - }, - { - "l": "50.0", - "x": 4.8491, - "y": 96.9017 - }, - { - "l": "50.0", - "x": 4.9324, - "y": 97.3518 - }, - { - "l": "50.0", - "x": 5.0157, - "y": 97.7916 - }, - { - "l": "50.0", - "x": 5.0991, - "y": 98.2179 - }, - { - "l": "50.0", - "x": 5.1824, - "y": 98.6355 - }, - { - "l": "50.0", - "x": 5.2657, - "y": 99.0447 - }, - { - "l": "50.0", - "x": 5.3491, - "y": 99.4461 - }, - { - "l": "50.0", - "x": 5.4324, - "y": 99.84 - }, - { - "l": "50.0", - "x": 5.5157, - "y": 100.227 - }, - { - "l": "50.0", - "x": 5.5991, - "y": 100.6073 - }, - { - "l": "50.0", - "x": 5.6824, - "y": 100.9816 - }, - { - "l": "50.0", - "x": 5.7657, - "y": 101.3502 - }, - { - "l": "50.0", - "x": 5.8491, - "y": 101.7137 - }, - { - "l": "50.0", - "x": 5.9324, - "y": 102.0723 - }, - { - "l": "50.0", - "x": 6.0157, - "y": 102.4268 - }, - { - "l": "50.0", - "x": 6.0991, - "y": 102.7779 - }, - { - "l": "50.0", - "x": 6.1824, - "y": 103.1256 - }, - { - "l": "50.0", - "x": 6.2657, - "y": 103.4702 - }, - { - "l": "50.0", - "x": 6.3491, - "y": 103.8122 - }, - { - "l": "50.0", - "x": 6.4324, - "y": 104.152 - }, - { - "l": "50.0", - "x": 6.5157, - "y": 104.49 - }, - { - "l": "50.0", - "x": 6.5991, - "y": 104.8266 - }, - { - "l": "50.0", - "x": 6.6824, - "y": 105.1622 - }, - { - "l": "50.0", - "x": 6.7657, - "y": 105.4973 - }, - { - "l": "50.0", - "x": 6.8491, - "y": 105.8323 - }, - { - "l": "50.0", - "x": 6.9324, - "y": 106.1676 - }, - { - "l": "50.0", - "x": 7.0157, - "y": 106.5052 - }, - { - "l": "50.0", - "x": 7.0991, - "y": 106.8511 - }, - { - "l": "50.0", - "x": 7.1824, - "y": 107.1981 - }, - { - "l": "50.0", - "x": 7.2657, - "y": 107.5462 - }, - { - "l": "50.0", - "x": 7.3491, - "y": 107.8955 - }, - { - "l": "50.0", - "x": 7.4324, - "y": 108.246 - }, - { - "l": "50.0", - "x": 7.5157, - "y": 108.5978 - }, - { - "l": "50.0", - "x": 7.5991, - "y": 108.951 - }, - { - "l": "50.0", - "x": 7.6824, - "y": 109.3055 - }, - { - "l": "50.0", - "x": 7.7657, - "y": 109.6614 - }, - { - "l": "50.0", - "x": 7.8491, - "y": 110.0188 - }, - { - "l": "50.0", - "x": 7.9324, - "y": 110.3777 - }, - { - "l": "50.0", - "x": 8.0157, - "y": 110.7394 - }, - { - "l": "50.0", - "x": 8.0991, - "y": 111.1077 - }, - { - "l": "50.0", - "x": 8.1824, - "y": 111.4773 - }, - { - "l": "50.0", - "x": 8.2657, - "y": 111.848 - }, - { - "l": "50.0", - "x": 8.3491, - "y": 112.2197 - }, - { - "l": "50.0", - "x": 8.4324, - "y": 112.592 - }, - { - "l": "50.0", - "x": 8.5157, - "y": 112.9648 - }, - { - "l": "50.0", - "x": 8.5991, - "y": 113.3379 - }, - { - "l": "50.0", - "x": 8.6824, - "y": 113.7111 - }, - { - "l": "50.0", - "x": 8.7657, - "y": 114.0841 - }, - { - "l": "50.0", - "x": 8.8491, - "y": 114.4568 - }, - { - "l": "50.0", - "x": 8.9324, - "y": 114.8288 - }, - { - "l": "50.0", - "x": 9.0157, - "y": 115.2 - }, - { - "l": "50.0", - "x": 9.0991, - "y": 115.5697 - }, - { - "l": "50.0", - "x": 9.1824, - "y": 115.9381 - }, - { - "l": "50.0", - "x": 9.2657, - "y": 116.3053 - }, - { - "l": "50.0", - "x": 9.3491, - "y": 116.6708 - }, - { - "l": "50.0", - "x": 9.4324, - "y": 117.0345 - }, - { - "l": "50.0", - "x": 9.5157, - "y": 117.3963 - }, - { - "l": "50.0", - "x": 9.5991, - "y": 117.7559 - }, - { - "l": "50.0", - "x": 9.6824, - "y": 118.1132 - }, - { - "l": "50.0", - "x": 9.7657, - "y": 118.468 - }, - { - "l": "50.0", - "x": 9.8491, - "y": 118.82 - }, - { - "l": "50.0", - "x": 9.9324, - "y": 119.1691 - }, - { - "l": "50.0", - "x": 10.0157, - "y": 119.5144 - }, - { - "l": "50.0", - "x": 10.0991, - "y": 119.8531 - }, - { - "l": "50.0", - "x": 10.1824, - "y": 120.1885 - }, - { - "l": "50.0", - "x": 10.2657, - "y": 120.5206 - }, - { - "l": "50.0", - "x": 10.3491, - "y": 120.8494 - }, - { - "l": "50.0", - "x": 10.4324, - "y": 121.1748 - }, - { - "l": "50.0", - "x": 10.5157, - "y": 121.4968 - }, - { - "l": "50.0", - "x": 10.5991, - "y": 121.8154 - }, - { - "l": "50.0", - "x": 10.6824, - "y": 122.1306 - }, - { - "l": "50.0", - "x": 10.7657, - "y": 122.4424 - }, - { - "l": "50.0", - "x": 10.8491, - "y": 122.7506 - }, - { - "l": "50.0", - "x": 10.9324, - "y": 123.0554 - }, - { - "l": "50.0", - "x": 11.0157, - "y": 123.3558 - }, - { - "l": "50.0", - "x": 11.0991, - "y": 123.6494 - }, - { - "l": "50.0", - "x": 11.1824, - "y": 123.9396 - }, - { - "l": "50.0", - "x": 11.2657, - "y": 124.2266 - }, - { - "l": "50.0", - "x": 11.3491, - "y": 124.5106 - }, - { - "l": "50.0", - "x": 11.4324, - "y": 124.7916 - }, - { - "l": "50.0", - "x": 11.5157, - "y": 125.0699 - }, - { - "l": "50.0", - "x": 11.5991, - "y": 125.3455 - }, - { - "l": "50.0", - "x": 11.6824, - "y": 125.6187 - }, - { - "l": "50.0", - "x": 11.7657, - "y": 125.8896 - }, - { - "l": "50.0", - "x": 11.8491, - "y": 126.1583 - }, - { - "l": "50.0", - "x": 11.9324, - "y": 126.425 - }, - { - "l": "50.0", - "x": 12.0157, - "y": 126.6898 - }, - { - "l": "50.0", - "x": 12.0991, - "y": 126.9527 - }, - { - "l": "50.0", - "x": 12.1824, - "y": 127.2141 - }, - { - "l": "50.0", - "x": 12.2657, - "y": 127.474 - }, - { - "l": "50.0", - "x": 12.3491, - "y": 127.7327 - }, - { - "l": "50.0", - "x": 12.4324, - "y": 127.9904 - }, - { - "l": "50.0", - "x": 12.5157, - "y": 128.2472 - }, - { - "l": "50.0", - "x": 12.5991, - "y": 128.5032 - }, - { - "l": "50.0", - "x": 12.6824, - "y": 128.7587 - }, - { - "l": "50.0", - "x": 12.7657, - "y": 129.0138 - }, - { - "l": "50.0", - "x": 12.8491, - "y": 129.2686 - }, - { - "l": "50.0", - "x": 12.9324, - "y": 129.5233 - }, - { - "l": "50.0", - "x": 13.0157, - "y": 129.7788 - }, - { - "l": "50.0", - "x": 13.0991, - "y": 130.0371 - }, - { - "l": "50.0", - "x": 13.1824, - "y": 130.2957 - }, - { - "l": "50.0", - "x": 13.2657, - "y": 130.5545 - }, - { - "l": "50.0", - "x": 13.3491, - "y": 130.8137 - }, - { - "l": "50.0", - "x": 13.4324, - "y": 131.0731 - }, - { - "l": "50.0", - "x": 13.5157, - "y": 131.3328 - }, - { - "l": "50.0", - "x": 13.5991, - "y": 131.593 - }, - { - "l": "50.0", - "x": 13.6824, - "y": 131.8534 - }, - { - "l": "50.0", - "x": 13.7657, - "y": 132.1143 - }, - { - "l": "50.0", - "x": 13.8491, - "y": 132.3756 - }, - { - "l": "50.0", - "x": 13.9324, - "y": 132.6374 - }, - { - "l": "50.0", - "x": 14.0157, - "y": 132.9007 - }, - { - "l": "50.0", - "x": 14.0991, - "y": 133.1691 - }, - { - "l": "50.0", - "x": 14.1824, - "y": 133.4378 - }, - { - "l": "50.0", - "x": 14.2657, - "y": 133.7065 - }, - { - "l": "50.0", - "x": 14.3491, - "y": 133.975 - }, - { - "l": "50.0", - "x": 14.4324, - "y": 134.2431 - }, - { - "l": "50.0", - "x": 14.5157, - "y": 134.5105 - }, - { - "l": "50.0", - "x": 14.5991, - "y": 134.777 - }, - { - "l": "50.0", - "x": 14.6824, - "y": 135.0424 - }, - { - "l": "50.0", - "x": 14.7657, - "y": 135.3065 - }, - { - "l": "50.0", - "x": 14.8491, - "y": 135.5691 - }, - { - "l": "50.0", - "x": 14.9324, - "y": 135.8299 - }, - { - "l": "50.0", - "x": 15.0157, - "y": 136.0887 - }, - { - "l": "50.0", - "x": 15.0991, - "y": 136.3454 - }, - { - "l": "50.0", - "x": 15.1824, - "y": 136.5996 - }, - { - "l": "50.0", - "x": 15.2657, - "y": 136.8512 - }, - { - "l": "50.0", - "x": 15.3491, - "y": 137.1 - }, - { - "l": "50.0", - "x": 15.4324, - "y": 137.3456 - }, - { - "l": "50.0", - "x": 15.5157, - "y": 137.588 - }, - { - "l": "50.0", - "x": 15.5991, - "y": 137.8269 - }, - { - "l": "50.0", - "x": 15.6824, - "y": 138.062 - }, - { - "l": "50.0", - "x": 15.7657, - "y": 138.2932 - }, - { - "l": "50.0", - "x": 15.8491, - "y": 138.5202 - }, - { - "l": "50.0", - "x": 15.9324, - "y": 138.7428 - }, - { - "l": "50.0", - "x": 16.0157, - "y": 138.9604 - }, - { - "l": "50.0", - "x": 16.0991, - "y": 139.1714 - }, - { - "l": "50.0", - "x": 16.1824, - "y": 139.3774 - }, - { - "l": "50.0", - "x": 16.2657, - "y": 139.5783 - }, - { - "l": "50.0", - "x": 16.3491, - "y": 139.7741 - }, - { - "l": "50.0", - "x": 16.4324, - "y": 139.9645 - }, - { - "l": "50.0", - "x": 16.5157, - "y": 140.1495 - }, - { - "l": "50.0", - "x": 16.5991, - "y": 140.3289 - }, - { - "l": "50.0", - "x": 16.6824, - "y": 140.5026 - }, - { - "l": "50.0", - "x": 16.7657, - "y": 140.6705 - }, - { - "l": "50.0", - "x": 16.8491, - "y": 140.8324 - }, - { - "l": "50.0", - "x": 16.9324, - "y": 140.9882 - }, - { - "l": "50.0", - "x": 17.0157, - "y": 141.1365 - }, - { - "l": "50.0", - "x": 17.0991, - "y": 141.2732 - }, - { - "l": "50.0", - "x": 17.1824, - "y": 141.4037 - }, - { - "l": "50.0", - "x": 17.2657, - "y": 141.5282 - }, - { - "l": "50.0", - "x": 17.3491, - "y": 141.6469 - }, - { - "l": "50.0", - "x": 17.4324, - "y": 141.7599 - }, - { - "l": "50.0", - "x": 17.5157, - "y": 141.8674 - }, - { - "l": "50.0", - "x": 17.5991, - "y": 141.9695 - }, - { - "l": "50.0", - "x": 17.6824, - "y": 142.0663 - }, - { - "l": "50.0", - "x": 17.7657, - "y": 142.158 - }, - { - "l": "50.0", - "x": 17.8491, - "y": 142.2449 - }, - { - "l": "50.0", - "x": 17.9324, - "y": 142.3269 - }, - { - "l": "50.0", - "x": 18.0157, - "y": 142.4041 - }, - { - "l": "50.0", - "x": 18.0991, - "y": 142.4762 - }, - { - "l": "50.0", - "x": 18.1824, - "y": 142.544 - }, - { - "l": "50.0", - "x": 18.2657, - "y": 142.6077 - }, - { - "l": "50.0", - "x": 18.3491, - "y": 142.6674 - }, - { - "l": "50.0", - "x": 18.4324, - "y": 142.7234 - }, - { - "l": "50.0", - "x": 18.5157, - "y": 142.7759 - }, - { - "l": "50.0", - "x": 18.5991, - "y": 142.825 - }, - { - "l": "50.0", - "x": 18.6824, - "y": 142.8709 - }, - { - "l": "50.0", - "x": 18.7657, - "y": 142.9138 - }, - { - "l": "50.0", - "x": 18.8491, - "y": 142.9539 - }, - { - "l": "50.0", - "x": 18.9324, - "y": 142.9914 - }, - { - "l": "50.0", - "x": 19.0157, - "y": 143.0247 - }, - { - "l": "50.0", - "x": 19.0991, - "y": 143.0497 - }, - { - "l": "50.0", - "x": 19.1824, - "y": 143.0747 - }, - { - "l": "50.0", - "x": 19.2657, - "y": 143.0997 - }, - { - "l": "50.0", - "x": 19.3491, - "y": 143.1247 - }, - { - "l": "50.0", - "x": 19.4324, - "y": 143.1497 - }, - { - "l": "50.0", - "x": 19.5157, - "y": 143.1747 - }, - { - "l": "50.0", - "x": 19.5991, - "y": 143.1997 - }, - { - "l": "50.0", - "x": 19.6824, - "y": 143.2247 - }, - { - "l": "50.0", - "x": 19.7657, - "y": 143.2497 - }, - { - "l": "50.0", - "x": 19.8491, - "y": 143.2747 - }, - { - "l": "50.0", - "x": 19.9324, - "y": 143.2997 - } - ] - }, - { - "sds": 0.67, - "centile": 75.0, - "data": [ - { - "l": "75.0", - "x": 1.0, - "y": 67.4595 - }, - { - "l": "75.0", - "x": 1.0192, - "y": 67.6493 - }, - { - "l": "75.0", - "x": 1.0383, - "y": 67.839 - }, - { - "l": "75.0", - "x": 1.0575, - "y": 68.0288 - }, - { - "l": "75.0", - "x": 1.0767, - "y": 68.2185 - }, - { - "l": "75.0", - "x": 1.0958, - "y": 68.4083 - }, - { - "l": "75.0", - "x": 1.115, - "y": 68.598 - }, - { - "l": "75.0", - "x": 1.1342, - "y": 68.7878 - }, - { - "l": "75.0", - "x": 1.1533, - "y": 68.9775 - }, - { - "l": "75.0", - "x": 1.1725, - "y": 69.1672 - }, - { - "l": "75.0", - "x": 1.1916, - "y": 69.357 - }, - { - "l": "75.0", - "x": 1.2108, - "y": 69.5467 - }, - { - "l": "75.0", - "x": 1.23, - "y": 69.7365 - }, - { - "l": "75.0", - "x": 1.2491, - "y": 69.9262 - }, - { - "l": "75.0", - "x": 1.2683, - "y": 70.116 - }, - { - "l": "75.0", - "x": 1.2875, - "y": 70.3057 - }, - { - "l": "75.0", - "x": 1.3066, - "y": 70.4955 - }, - { - "l": "75.0", - "x": 1.3258, - "y": 70.6852 - }, - { - "l": "75.0", - "x": 1.345, - "y": 70.875 - }, - { - "l": "75.0", - "x": 1.3641, - "y": 71.0647 - }, - { - "l": "75.0", - "x": 1.3833, - "y": 71.2545 - }, - { - "l": "75.0", - "x": 1.4025, - "y": 71.4442 - }, - { - "l": "75.0", - "x": 1.4216, - "y": 71.634 - }, - { - "l": "75.0", - "x": 1.4408, - "y": 71.8237 - }, - { - "l": "75.0", - "x": 1.46, - "y": 72.0135 - }, - { - "l": "75.0", - "x": 1.4791, - "y": 72.2032 - }, - { - "l": "75.0", - "x": 1.4983, - "y": 72.393 - }, - { - "l": "75.0", - "x": 1.5175, - "y": 72.5827 - }, - { - "l": "75.0", - "x": 1.5366, - "y": 72.7725 - }, - { - "l": "75.0", - "x": 1.5558, - "y": 72.9622 - }, - { - "l": "75.0", - "x": 1.5749, - "y": 73.152 - }, - { - "l": "75.0", - "x": 1.5941, - "y": 73.3417 - }, - { - "l": "75.0", - "x": 1.6133, - "y": 73.5315 - }, - { - "l": "75.0", - "x": 1.6324, - "y": 73.7212 - }, - { - "l": "75.0", - "x": 1.6516, - "y": 73.911 - }, - { - "l": "75.0", - "x": 1.6708, - "y": 74.1007 - }, - { - "l": "75.0", - "x": 1.6899, - "y": 74.2905 - }, - { - "l": "75.0", - "x": 1.7091, - "y": 74.4802 - }, - { - "l": "75.0", - "x": 1.7283, - "y": 74.67 - }, - { - "l": "75.0", - "x": 1.7474, - "y": 74.8597 - }, - { - "l": "75.0", - "x": 1.7666, - "y": 75.0494 - }, - { - "l": "75.0", - "x": 1.7858, - "y": 75.2392 - }, - { - "l": "75.0", - "x": 1.8049, - "y": 75.4289 - }, - { - "l": "75.0", - "x": 1.8241, - "y": 75.6187 - }, - { - "l": "75.0", - "x": 1.8433, - "y": 75.8084 - }, - { - "l": "75.0", - "x": 1.8624, - "y": 75.9982 - }, - { - "l": "75.0", - "x": 1.8816, - "y": 76.1879 - }, - { - "l": "75.0", - "x": 1.9008, - "y": 76.3777 - }, - { - "l": "75.0", - "x": 1.9199, - "y": 76.5674 - }, - { - "l": "75.0", - "x": 1.9391, - "y": 76.7572 - }, - { - "l": "75.0", - "x": 1.9582, - "y": 76.9469 - }, - { - "l": "75.0", - "x": 1.9774, - "y": 77.1367 - }, - { - "l": "75.0", - "x": 1.9966, - "y": 77.3264 - }, - { - "l": "75.0", - "x": 2.0157, - "y": 77.5128 - }, - { - "l": "75.0", - "x": 2.0991, - "y": 78.3171 - }, - { - "l": "75.0", - "x": 2.1824, - "y": 79.1165 - }, - { - "l": "75.0", - "x": 2.2657, - "y": 79.9106 - }, - { - "l": "75.0", - "x": 2.3491, - "y": 80.6991 - }, - { - "l": "75.0", - "x": 2.4324, - "y": 81.4816 - }, - { - "l": "75.0", - "x": 2.5157, - "y": 82.2576 - }, - { - "l": "75.0", - "x": 2.5991, - "y": 83.027 - }, - { - "l": "75.0", - "x": 2.6824, - "y": 83.7891 - }, - { - "l": "75.0", - "x": 2.7657, - "y": 84.5438 - }, - { - "l": "75.0", - "x": 2.8491, - "y": 85.2906 - }, - { - "l": "75.0", - "x": 2.9324, - "y": 86.029 - }, - { - "l": "75.0", - "x": 3.0157, - "y": 86.7585 - }, - { - "l": "75.0", - "x": 3.0991, - "y": 87.4773 - }, - { - "l": "75.0", - "x": 3.1824, - "y": 88.1869 - }, - { - "l": "75.0", - "x": 3.2657, - "y": 88.8868 - }, - { - "l": "75.0", - "x": 3.3491, - "y": 89.5769 - }, - { - "l": "75.0", - "x": 3.4324, - "y": 90.2568 - }, - { - "l": "75.0", - "x": 3.5157, - "y": 90.9262 - }, - { - "l": "75.0", - "x": 3.5991, - "y": 91.5848 - }, - { - "l": "75.0", - "x": 3.6824, - "y": 92.2324 - }, - { - "l": "75.0", - "x": 3.7657, - "y": 92.8686 - }, - { - "l": "75.0", - "x": 3.8491, - "y": 93.4933 - }, - { - "l": "75.0", - "x": 3.9324, - "y": 94.1059 - }, - { - "l": "75.0", - "x": 4.0157, - "y": 94.704 - }, - { - "l": "75.0", - "x": 4.0991, - "y": 95.2793 - }, - { - "l": "75.0", - "x": 4.1824, - "y": 95.8425 - }, - { - "l": "75.0", - "x": 4.2657, - "y": 96.3937 - }, - { - "l": "75.0", - "x": 4.3491, - "y": 96.9332 - }, - { - "l": "75.0", - "x": 4.4324, - "y": 97.4612 - }, - { - "l": "75.0", - "x": 4.5157, - "y": 97.9781 - }, - { - "l": "75.0", - "x": 4.5991, - "y": 98.4839 - }, - { - "l": "75.0", - "x": 4.6824, - "y": 98.979 - }, - { - "l": "75.0", - "x": 4.7657, - "y": 99.4636 - }, - { - "l": "75.0", - "x": 4.8491, - "y": 99.9379 - }, - { - "l": "75.0", - "x": 4.9324, - "y": 100.4022 - }, - { - "l": "75.0", - "x": 5.0157, - "y": 100.8557 - }, - { - "l": "75.0", - "x": 5.0991, - "y": 101.2954 - }, - { - "l": "75.0", - "x": 5.1824, - "y": 101.7261 - }, - { - "l": "75.0", - "x": 5.2657, - "y": 102.1481 - }, - { - "l": "75.0", - "x": 5.3491, - "y": 102.5621 - }, - { - "l": "75.0", - "x": 5.4324, - "y": 102.9683 - }, - { - "l": "75.0", - "x": 5.5157, - "y": 103.3674 - }, - { - "l": "75.0", - "x": 5.5991, - "y": 103.7597 - }, - { - "l": "75.0", - "x": 5.6824, - "y": 104.1457 - }, - { - "l": "75.0", - "x": 5.7657, - "y": 104.5259 - }, - { - "l": "75.0", - "x": 5.8491, - "y": 104.9007 - }, - { - "l": "75.0", - "x": 5.9324, - "y": 105.2706 - }, - { - "l": "75.0", - "x": 6.0157, - "y": 105.6361 - }, - { - "l": "75.0", - "x": 6.0991, - "y": 105.9983 - }, - { - "l": "75.0", - "x": 6.1824, - "y": 106.3568 - }, - { - "l": "75.0", - "x": 6.2657, - "y": 106.7123 - }, - { - "l": "75.0", - "x": 6.3491, - "y": 107.065 - }, - { - "l": "75.0", - "x": 6.4324, - "y": 107.4154 - }, - { - "l": "75.0", - "x": 6.5157, - "y": 107.764 - }, - { - "l": "75.0", - "x": 6.5991, - "y": 108.1112 - }, - { - "l": "75.0", - "x": 6.6824, - "y": 108.4573 - }, - { - "l": "75.0", - "x": 6.7657, - "y": 108.8029 - }, - { - "l": "75.0", - "x": 6.8491, - "y": 109.1484 - }, - { - "l": "75.0", - "x": 6.9324, - "y": 109.4942 - }, - { - "l": "75.0", - "x": 7.0157, - "y": 109.8424 - }, - { - "l": "75.0", - "x": 7.0991, - "y": 110.1991 - }, - { - "l": "75.0", - "x": 7.1824, - "y": 110.5569 - }, - { - "l": "75.0", - "x": 7.2657, - "y": 110.9159 - }, - { - "l": "75.0", - "x": 7.3491, - "y": 111.2762 - }, - { - "l": "75.0", - "x": 7.4324, - "y": 111.6377 - }, - { - "l": "75.0", - "x": 7.5157, - "y": 112.0005 - }, - { - "l": "75.0", - "x": 7.5991, - "y": 112.3648 - }, - { - "l": "75.0", - "x": 7.6824, - "y": 112.7304 - }, - { - "l": "75.0", - "x": 7.7657, - "y": 113.0975 - }, - { - "l": "75.0", - "x": 7.8491, - "y": 113.4661 - }, - { - "l": "75.0", - "x": 7.9324, - "y": 113.8362 - }, - { - "l": "75.0", - "x": 8.0157, - "y": 114.2092 - }, - { - "l": "75.0", - "x": 8.0991, - "y": 114.589 - }, - { - "l": "75.0", - "x": 8.1824, - "y": 114.9702 - }, - { - "l": "75.0", - "x": 8.2657, - "y": 115.3526 - }, - { - "l": "75.0", - "x": 8.3491, - "y": 115.7359 - }, - { - "l": "75.0", - "x": 8.4324, - "y": 116.1199 - }, - { - "l": "75.0", - "x": 8.5157, - "y": 116.5044 - }, - { - "l": "75.0", - "x": 8.5991, - "y": 116.8892 - }, - { - "l": "75.0", - "x": 8.6824, - "y": 117.2741 - }, - { - "l": "75.0", - "x": 8.7657, - "y": 117.6588 - }, - { - "l": "75.0", - "x": 8.8491, - "y": 118.0431 - }, - { - "l": "75.0", - "x": 8.9324, - "y": 118.4268 - }, - { - "l": "75.0", - "x": 9.0157, - "y": 118.8096 - }, - { - "l": "75.0", - "x": 9.0991, - "y": 119.1908 - }, - { - "l": "75.0", - "x": 9.1824, - "y": 119.5709 - }, - { - "l": "75.0", - "x": 9.2657, - "y": 119.9495 - }, - { - "l": "75.0", - "x": 9.3491, - "y": 120.3265 - }, - { - "l": "75.0", - "x": 9.4324, - "y": 120.7016 - }, - { - "l": "75.0", - "x": 9.5157, - "y": 121.0747 - }, - { - "l": "75.0", - "x": 9.5991, - "y": 121.4456 - }, - { - "l": "75.0", - "x": 9.6824, - "y": 121.8141 - }, - { - "l": "75.0", - "x": 9.7657, - "y": 122.18 - }, - { - "l": "75.0", - "x": 9.8491, - "y": 122.543 - }, - { - "l": "75.0", - "x": 9.9324, - "y": 122.9031 - }, - { - "l": "75.0", - "x": 10.0157, - "y": 123.2591 - }, - { - "l": "75.0", - "x": 10.0991, - "y": 123.6085 - }, - { - "l": "75.0", - "x": 10.1824, - "y": 123.9544 - }, - { - "l": "75.0", - "x": 10.2657, - "y": 124.2969 - }, - { - "l": "75.0", - "x": 10.3491, - "y": 124.636 - }, - { - "l": "75.0", - "x": 10.4324, - "y": 124.9716 - }, - { - "l": "75.0", - "x": 10.5157, - "y": 125.3037 - }, - { - "l": "75.0", - "x": 10.5991, - "y": 125.6323 - }, - { - "l": "75.0", - "x": 10.6824, - "y": 125.9574 - }, - { - "l": "75.0", - "x": 10.7657, - "y": 126.2789 - }, - { - "l": "75.0", - "x": 10.8491, - "y": 126.5968 - }, - { - "l": "75.0", - "x": 10.9324, - "y": 126.9111 - }, - { - "l": "75.0", - "x": 11.0157, - "y": 127.221 - }, - { - "l": "75.0", - "x": 11.0991, - "y": 127.5238 - }, - { - "l": "75.0", - "x": 11.1824, - "y": 127.8231 - }, - { - "l": "75.0", - "x": 11.2657, - "y": 128.1191 - }, - { - "l": "75.0", - "x": 11.3491, - "y": 128.4119 - }, - { - "l": "75.0", - "x": 11.4324, - "y": 128.7017 - }, - { - "l": "75.0", - "x": 11.5157, - "y": 128.9887 - }, - { - "l": "75.0", - "x": 11.5991, - "y": 129.273 - }, - { - "l": "75.0", - "x": 11.6824, - "y": 129.5548 - }, - { - "l": "75.0", - "x": 11.7657, - "y": 129.8341 - }, - { - "l": "75.0", - "x": 11.8491, - "y": 130.1113 - }, - { - "l": "75.0", - "x": 11.9324, - "y": 130.3864 - }, - { - "l": "75.0", - "x": 12.0157, - "y": 130.6595 - }, - { - "l": "75.0", - "x": 12.0991, - "y": 130.9306 - }, - { - "l": "75.0", - "x": 12.1824, - "y": 131.2001 - }, - { - "l": "75.0", - "x": 12.2657, - "y": 131.4682 - }, - { - "l": "75.0", - "x": 12.3491, - "y": 131.735 - }, - { - "l": "75.0", - "x": 12.4324, - "y": 132.0008 - }, - { - "l": "75.0", - "x": 12.5157, - "y": 132.2656 - }, - { - "l": "75.0", - "x": 12.5991, - "y": 132.5297 - }, - { - "l": "75.0", - "x": 12.6824, - "y": 132.7932 - }, - { - "l": "75.0", - "x": 12.7657, - "y": 133.0562 - }, - { - "l": "75.0", - "x": 12.8491, - "y": 133.319 - }, - { - "l": "75.0", - "x": 12.9324, - "y": 133.5817 - }, - { - "l": "75.0", - "x": 13.0157, - "y": 133.8452 - }, - { - "l": "75.0", - "x": 13.0991, - "y": 134.1116 - }, - { - "l": "75.0", - "x": 13.1824, - "y": 134.3783 - }, - { - "l": "75.0", - "x": 13.2657, - "y": 134.6453 - }, - { - "l": "75.0", - "x": 13.3491, - "y": 134.9125 - }, - { - "l": "75.0", - "x": 13.4324, - "y": 135.18 - }, - { - "l": "75.0", - "x": 13.5157, - "y": 135.4479 - }, - { - "l": "75.0", - "x": 13.5991, - "y": 135.7162 - }, - { - "l": "75.0", - "x": 13.6824, - "y": 135.9848 - }, - { - "l": "75.0", - "x": 13.7657, - "y": 136.2539 - }, - { - "l": "75.0", - "x": 13.8491, - "y": 136.5234 - }, - { - "l": "75.0", - "x": 13.9324, - "y": 136.7933 - }, - { - "l": "75.0", - "x": 14.0157, - "y": 137.0649 - }, - { - "l": "75.0", - "x": 14.0991, - "y": 137.3418 - }, - { - "l": "75.0", - "x": 14.1824, - "y": 137.6189 - }, - { - "l": "75.0", - "x": 14.2657, - "y": 137.896 - }, - { - "l": "75.0", - "x": 14.3491, - "y": 138.1729 - }, - { - "l": "75.0", - "x": 14.4324, - "y": 138.4493 - }, - { - "l": "75.0", - "x": 14.5157, - "y": 138.7251 - }, - { - "l": "75.0", - "x": 14.5991, - "y": 139.0 - }, - { - "l": "75.0", - "x": 14.6824, - "y": 139.2737 - }, - { - "l": "75.0", - "x": 14.7657, - "y": 139.5461 - }, - { - "l": "75.0", - "x": 14.8491, - "y": 139.8169 - }, - { - "l": "75.0", - "x": 14.9324, - "y": 140.0859 - }, - { - "l": "75.0", - "x": 15.0157, - "y": 140.3529 - }, - { - "l": "75.0", - "x": 15.0991, - "y": 140.6175 - }, - { - "l": "75.0", - "x": 15.1824, - "y": 140.8797 - }, - { - "l": "75.0", - "x": 15.2657, - "y": 141.1392 - }, - { - "l": "75.0", - "x": 15.3491, - "y": 141.3958 - }, - { - "l": "75.0", - "x": 15.4324, - "y": 141.6491 - }, - { - "l": "75.0", - "x": 15.5157, - "y": 141.8991 - }, - { - "l": "75.0", - "x": 15.5991, - "y": 142.1455 - }, - { - "l": "75.0", - "x": 15.6824, - "y": 142.388 - }, - { - "l": "75.0", - "x": 15.7657, - "y": 142.6264 - }, - { - "l": "75.0", - "x": 15.8491, - "y": 142.8605 - }, - { - "l": "75.0", - "x": 15.9324, - "y": 143.0901 - }, - { - "l": "75.0", - "x": 16.0157, - "y": 143.3145 - }, - { - "l": "75.0", - "x": 16.0991, - "y": 143.5321 - }, - { - "l": "75.0", - "x": 16.1824, - "y": 143.7446 - }, - { - "l": "75.0", - "x": 16.2657, - "y": 143.9518 - }, - { - "l": "75.0", - "x": 16.3491, - "y": 144.1537 - }, - { - "l": "75.0", - "x": 16.4324, - "y": 144.3501 - }, - { - "l": "75.0", - "x": 16.5157, - "y": 144.5409 - }, - { - "l": "75.0", - "x": 16.5991, - "y": 144.7259 - }, - { - "l": "75.0", - "x": 16.6824, - "y": 144.905 - }, - { - "l": "75.0", - "x": 16.7657, - "y": 145.0782 - }, - { - "l": "75.0", - "x": 16.8491, - "y": 145.2451 - }, - { - "l": "75.0", - "x": 16.9324, - "y": 145.4058 - }, - { - "l": "75.0", - "x": 17.0157, - "y": 145.5588 - }, - { - "l": "75.0", - "x": 17.0991, - "y": 145.6997 - }, - { - "l": "75.0", - "x": 17.1824, - "y": 145.8343 - }, - { - "l": "75.0", - "x": 17.2657, - "y": 145.9628 - }, - { - "l": "75.0", - "x": 17.3491, - "y": 146.0852 - }, - { - "l": "75.0", - "x": 17.4324, - "y": 146.2017 - }, - { - "l": "75.0", - "x": 17.5157, - "y": 146.3126 - }, - { - "l": "75.0", - "x": 17.5991, - "y": 146.4178 - }, - { - "l": "75.0", - "x": 17.6824, - "y": 146.5177 - }, - { - "l": "75.0", - "x": 17.7657, - "y": 146.6123 - }, - { - "l": "75.0", - "x": 17.8491, - "y": 146.7019 - }, - { - "l": "75.0", - "x": 17.9324, - "y": 146.7865 - }, - { - "l": "75.0", - "x": 18.0157, - "y": 146.8661 - }, - { - "l": "75.0", - "x": 18.0991, - "y": 146.9404 - }, - { - "l": "75.0", - "x": 18.1824, - "y": 147.0104 - }, - { - "l": "75.0", - "x": 18.2657, - "y": 147.076 - }, - { - "l": "75.0", - "x": 18.3491, - "y": 147.1377 - }, - { - "l": "75.0", - "x": 18.4324, - "y": 147.1954 - }, - { - "l": "75.0", - "x": 18.5157, - "y": 147.2495 - }, - { - "l": "75.0", - "x": 18.5991, - "y": 147.3002 - }, - { - "l": "75.0", - "x": 18.6824, - "y": 147.3475 - }, - { - "l": "75.0", - "x": 18.7657, - "y": 147.3918 - }, - { - "l": "75.0", - "x": 18.8491, - "y": 147.4332 - }, - { - "l": "75.0", - "x": 18.9324, - "y": 147.4718 - }, - { - "l": "75.0", - "x": 19.0157, - "y": 147.5062 - }, - { - "l": "75.0", - "x": 19.0991, - "y": 147.5319 - }, - { - "l": "75.0", - "x": 19.1824, - "y": 147.5577 - }, - { - "l": "75.0", - "x": 19.2657, - "y": 147.5835 - }, - { - "l": "75.0", - "x": 19.3491, - "y": 147.6093 - }, - { - "l": "75.0", - "x": 19.4324, - "y": 147.6351 - }, - { - "l": "75.0", - "x": 19.5157, - "y": 147.6609 - }, - { - "l": "75.0", - "x": 19.5991, - "y": 147.6866 - }, - { - "l": "75.0", - "x": 19.6824, - "y": 147.7124 - }, - { - "l": "75.0", - "x": 19.7657, - "y": 147.7382 - }, - { - "l": "75.0", - "x": 19.8491, - "y": 147.764 - }, - { - "l": "75.0", - "x": 19.9324, - "y": 147.7898 - } - ] - }, - { - "sds": 1.33, - "centile": 91.0, - "data": [ - { - "l": "91.0", - "x": 1.0, - "y": 69.509 - }, - { - "l": "91.0", - "x": 1.0192, - "y": 69.7045 - }, - { - "l": "91.0", - "x": 1.0383, - "y": 69.9001 - }, - { - "l": "91.0", - "x": 1.0575, - "y": 70.0956 - }, - { - "l": "91.0", - "x": 1.0767, - "y": 70.2911 - }, - { - "l": "91.0", - "x": 1.0958, - "y": 70.4866 - }, - { - "l": "91.0", - "x": 1.115, - "y": 70.6821 - }, - { - "l": "91.0", - "x": 1.1342, - "y": 70.8776 - }, - { - "l": "91.0", - "x": 1.1533, - "y": 71.0731 - }, - { - "l": "91.0", - "x": 1.1725, - "y": 71.2686 - }, - { - "l": "91.0", - "x": 1.1916, - "y": 71.4642 - }, - { - "l": "91.0", - "x": 1.2108, - "y": 71.6597 - }, - { - "l": "91.0", - "x": 1.23, - "y": 71.8552 - }, - { - "l": "91.0", - "x": 1.2491, - "y": 72.0507 - }, - { - "l": "91.0", - "x": 1.2683, - "y": 72.2462 - }, - { - "l": "91.0", - "x": 1.2875, - "y": 72.4417 - }, - { - "l": "91.0", - "x": 1.3066, - "y": 72.6372 - }, - { - "l": "91.0", - "x": 1.3258, - "y": 72.8328 - }, - { - "l": "91.0", - "x": 1.345, - "y": 73.0283 - }, - { - "l": "91.0", - "x": 1.3641, - "y": 73.2238 - }, - { - "l": "91.0", - "x": 1.3833, - "y": 73.4193 - }, - { - "l": "91.0", - "x": 1.4025, - "y": 73.6148 - }, - { - "l": "91.0", - "x": 1.4216, - "y": 73.8103 - }, - { - "l": "91.0", - "x": 1.4408, - "y": 74.0058 - }, - { - "l": "91.0", - "x": 1.46, - "y": 74.2013 - }, - { - "l": "91.0", - "x": 1.4791, - "y": 74.3969 - }, - { - "l": "91.0", - "x": 1.4983, - "y": 74.5924 - }, - { - "l": "91.0", - "x": 1.5175, - "y": 74.7879 - }, - { - "l": "91.0", - "x": 1.5366, - "y": 74.9834 - }, - { - "l": "91.0", - "x": 1.5558, - "y": 75.1789 - }, - { - "l": "91.0", - "x": 1.5749, - "y": 75.3744 - }, - { - "l": "91.0", - "x": 1.5941, - "y": 75.5699 - }, - { - "l": "91.0", - "x": 1.6133, - "y": 75.7654 - }, - { - "l": "91.0", - "x": 1.6324, - "y": 75.961 - }, - { - "l": "91.0", - "x": 1.6516, - "y": 76.1565 - }, - { - "l": "91.0", - "x": 1.6708, - "y": 76.352 - }, - { - "l": "91.0", - "x": 1.6899, - "y": 76.5475 - }, - { - "l": "91.0", - "x": 1.7091, - "y": 76.743 - }, - { - "l": "91.0", - "x": 1.7283, - "y": 76.9385 - }, - { - "l": "91.0", - "x": 1.7474, - "y": 77.134 - }, - { - "l": "91.0", - "x": 1.7666, - "y": 77.3296 - }, - { - "l": "91.0", - "x": 1.7858, - "y": 77.5251 - }, - { - "l": "91.0", - "x": 1.8049, - "y": 77.7206 - }, - { - "l": "91.0", - "x": 1.8241, - "y": 77.9161 - }, - { - "l": "91.0", - "x": 1.8433, - "y": 78.1116 - }, - { - "l": "91.0", - "x": 1.8624, - "y": 78.3071 - }, - { - "l": "91.0", - "x": 1.8816, - "y": 78.5026 - }, - { - "l": "91.0", - "x": 1.9008, - "y": 78.6981 - }, - { - "l": "91.0", - "x": 1.9199, - "y": 78.8937 - }, - { - "l": "91.0", - "x": 1.9391, - "y": 79.0892 - }, - { - "l": "91.0", - "x": 1.9582, - "y": 79.2847 - }, - { - "l": "91.0", - "x": 1.9774, - "y": 79.4802 - }, - { - "l": "91.0", - "x": 1.9966, - "y": 79.6757 - }, - { - "l": "91.0", - "x": 2.0157, - "y": 79.8677 - }, - { - "l": "91.0", - "x": 2.0991, - "y": 80.6964 - }, - { - "l": "91.0", - "x": 2.1824, - "y": 81.5201 - }, - { - "l": "91.0", - "x": 2.2657, - "y": 82.3384 - }, - { - "l": "91.0", - "x": 2.3491, - "y": 83.1508 - }, - { - "l": "91.0", - "x": 2.4324, - "y": 83.9571 - }, - { - "l": "91.0", - "x": 2.5157, - "y": 84.7567 - }, - { - "l": "91.0", - "x": 2.5991, - "y": 85.5494 - }, - { - "l": "91.0", - "x": 2.6824, - "y": 86.3348 - }, - { - "l": "91.0", - "x": 2.7657, - "y": 87.1123 - }, - { - "l": "91.0", - "x": 2.8491, - "y": 87.8818 - }, - { - "l": "91.0", - "x": 2.9324, - "y": 88.6427 - }, - { - "l": "91.0", - "x": 3.0157, - "y": 89.3943 - }, - { - "l": "91.0", - "x": 3.0991, - "y": 90.135 - }, - { - "l": "91.0", - "x": 3.1824, - "y": 90.8661 - }, - { - "l": "91.0", - "x": 3.2657, - "y": 91.5873 - }, - { - "l": "91.0", - "x": 3.3491, - "y": 92.2983 - }, - { - "l": "91.0", - "x": 3.4324, - "y": 92.9989 - }, - { - "l": "91.0", - "x": 3.5157, - "y": 93.6886 - }, - { - "l": "91.0", - "x": 3.5991, - "y": 94.3673 - }, - { - "l": "91.0", - "x": 3.6824, - "y": 95.0346 - }, - { - "l": "91.0", - "x": 3.7657, - "y": 95.6901 - }, - { - "l": "91.0", - "x": 3.8491, - "y": 96.3337 - }, - { - "l": "91.0", - "x": 3.9324, - "y": 96.965 - }, - { - "l": "91.0", - "x": 4.0157, - "y": 97.5812 - }, - { - "l": "91.0", - "x": 4.0991, - "y": 98.174 - }, - { - "l": "91.0", - "x": 4.1824, - "y": 98.7543 - }, - { - "l": "91.0", - "x": 4.2657, - "y": 99.3222 - }, - { - "l": "91.0", - "x": 4.3491, - "y": 99.8781 - }, - { - "l": "91.0", - "x": 4.4324, - "y": 100.4222 - }, - { - "l": "91.0", - "x": 4.5157, - "y": 100.9548 - }, - { - "l": "91.0", - "x": 4.5991, - "y": 101.476 - }, - { - "l": "91.0", - "x": 4.6824, - "y": 101.9861 - }, - { - "l": "91.0", - "x": 4.7657, - "y": 102.4854 - }, - { - "l": "91.0", - "x": 4.8491, - "y": 102.9742 - }, - { - "l": "91.0", - "x": 4.9324, - "y": 103.4526 - }, - { - "l": "91.0", - "x": 5.0157, - "y": 103.9198 - }, - { - "l": "91.0", - "x": 5.0991, - "y": 104.3729 - }, - { - "l": "91.0", - "x": 5.1824, - "y": 104.8167 - }, - { - "l": "91.0", - "x": 5.2657, - "y": 105.2515 - }, - { - "l": "91.0", - "x": 5.3491, - "y": 105.6781 - }, - { - "l": "91.0", - "x": 5.4324, - "y": 106.0967 - }, - { - "l": "91.0", - "x": 5.5157, - "y": 106.5078 - }, - { - "l": "91.0", - "x": 5.5991, - "y": 106.9121 - }, - { - "l": "91.0", - "x": 5.6824, - "y": 107.3098 - }, - { - "l": "91.0", - "x": 5.7657, - "y": 107.7015 - }, - { - "l": "91.0", - "x": 5.8491, - "y": 108.0877 - }, - { - "l": "91.0", - "x": 5.9324, - "y": 108.4688 - }, - { - "l": "91.0", - "x": 6.0157, - "y": 108.8455 - }, - { - "l": "91.0", - "x": 6.0991, - "y": 109.2186 - }, - { - "l": "91.0", - "x": 6.1824, - "y": 109.5881 - }, - { - "l": "91.0", - "x": 6.2657, - "y": 109.9543 - }, - { - "l": "91.0", - "x": 6.3491, - "y": 110.3178 - }, - { - "l": "91.0", - "x": 6.4324, - "y": 110.6788 - }, - { - "l": "91.0", - "x": 6.5157, - "y": 111.038 - }, - { - "l": "91.0", - "x": 6.5991, - "y": 111.3957 - }, - { - "l": "91.0", - "x": 6.6824, - "y": 111.7524 - }, - { - "l": "91.0", - "x": 6.7657, - "y": 112.1085 - }, - { - "l": "91.0", - "x": 6.8491, - "y": 112.4645 - }, - { - "l": "91.0", - "x": 6.9324, - "y": 112.8207 - }, - { - "l": "91.0", - "x": 7.0157, - "y": 113.1795 - }, - { - "l": "91.0", - "x": 7.0991, - "y": 113.5471 - }, - { - "l": "91.0", - "x": 7.1824, - "y": 113.9158 - }, - { - "l": "91.0", - "x": 7.2657, - "y": 114.2857 - }, - { - "l": "91.0", - "x": 7.3491, - "y": 114.6569 - }, - { - "l": "91.0", - "x": 7.4324, - "y": 115.0294 - }, - { - "l": "91.0", - "x": 7.5157, - "y": 115.4033 - }, - { - "l": "91.0", - "x": 7.5991, - "y": 115.7785 - }, - { - "l": "91.0", - "x": 7.6824, - "y": 116.1553 - }, - { - "l": "91.0", - "x": 7.7657, - "y": 116.5335 - }, - { - "l": "91.0", - "x": 7.8491, - "y": 116.9133 - }, - { - "l": "91.0", - "x": 7.9324, - "y": 117.2947 - }, - { - "l": "91.0", - "x": 8.0157, - "y": 117.6791 - }, - { - "l": "91.0", - "x": 8.0991, - "y": 118.0704 - }, - { - "l": "91.0", - "x": 8.1824, - "y": 118.4632 - }, - { - "l": "91.0", - "x": 8.2657, - "y": 118.8571 - }, - { - "l": "91.0", - "x": 8.3491, - "y": 119.2521 - }, - { - "l": "91.0", - "x": 8.4324, - "y": 119.6478 - }, - { - "l": "91.0", - "x": 8.5157, - "y": 120.044 - }, - { - "l": "91.0", - "x": 8.5991, - "y": 120.4405 - }, - { - "l": "91.0", - "x": 8.6824, - "y": 120.837 - }, - { - "l": "91.0", - "x": 8.7657, - "y": 121.2334 - }, - { - "l": "91.0", - "x": 8.8491, - "y": 121.6294 - }, - { - "l": "91.0", - "x": 8.9324, - "y": 122.0247 - }, - { - "l": "91.0", - "x": 9.0157, - "y": 122.4192 - }, - { - "l": "91.0", - "x": 9.0991, - "y": 122.812 - }, - { - "l": "91.0", - "x": 9.1824, - "y": 123.2036 - }, - { - "l": "91.0", - "x": 9.2657, - "y": 123.5937 - }, - { - "l": "91.0", - "x": 9.3491, - "y": 123.9821 - }, - { - "l": "91.0", - "x": 9.4324, - "y": 124.3687 - }, - { - "l": "91.0", - "x": 9.5157, - "y": 124.7531 - }, - { - "l": "91.0", - "x": 9.5991, - "y": 125.1353 - }, - { - "l": "91.0", - "x": 9.6824, - "y": 125.515 - }, - { - "l": "91.0", - "x": 9.7657, - "y": 125.892 - }, - { - "l": "91.0", - "x": 9.8491, - "y": 126.2661 - }, - { - "l": "91.0", - "x": 9.9324, - "y": 126.637 - }, - { - "l": "91.0", - "x": 10.0157, - "y": 127.0039 - }, - { - "l": "91.0", - "x": 10.0991, - "y": 127.3639 - }, - { - "l": "91.0", - "x": 10.1824, - "y": 127.7203 - }, - { - "l": "91.0", - "x": 10.2657, - "y": 128.0732 - }, - { - "l": "91.0", - "x": 10.3491, - "y": 128.4226 - }, - { - "l": "91.0", - "x": 10.4324, - "y": 128.7684 - }, - { - "l": "91.0", - "x": 10.5157, - "y": 129.1106 - }, - { - "l": "91.0", - "x": 10.5991, - "y": 129.4492 - }, - { - "l": "91.0", - "x": 10.6824, - "y": 129.7842 - }, - { - "l": "91.0", - "x": 10.7657, - "y": 130.1154 - }, - { - "l": "91.0", - "x": 10.8491, - "y": 130.443 - }, - { - "l": "91.0", - "x": 10.9324, - "y": 130.7669 - }, - { - "l": "91.0", - "x": 11.0157, - "y": 131.0861 - }, - { - "l": "91.0", - "x": 11.0991, - "y": 131.3981 - }, - { - "l": "91.0", - "x": 11.1824, - "y": 131.7065 - }, - { - "l": "91.0", - "x": 11.2657, - "y": 132.0115 - }, - { - "l": "91.0", - "x": 11.3491, - "y": 132.3132 - }, - { - "l": "91.0", - "x": 11.4324, - "y": 132.6119 - }, - { - "l": "91.0", - "x": 11.5157, - "y": 132.9076 - }, - { - "l": "91.0", - "x": 11.5991, - "y": 133.2005 - }, - { - "l": "91.0", - "x": 11.6824, - "y": 133.4908 - }, - { - "l": "91.0", - "x": 11.7657, - "y": 133.7787 - }, - { - "l": "91.0", - "x": 11.8491, - "y": 134.0642 - }, - { - "l": "91.0", - "x": 11.9324, - "y": 134.3477 - }, - { - "l": "91.0", - "x": 12.0157, - "y": 134.6291 - }, - { - "l": "91.0", - "x": 12.0991, - "y": 134.9084 - }, - { - "l": "91.0", - "x": 12.1824, - "y": 135.1861 - }, - { - "l": "91.0", - "x": 12.2657, - "y": 135.4624 - }, - { - "l": "91.0", - "x": 12.3491, - "y": 135.7373 - }, - { - "l": "91.0", - "x": 12.4324, - "y": 136.0112 - }, - { - "l": "91.0", - "x": 12.5157, - "y": 136.284 - }, - { - "l": "91.0", - "x": 12.5991, - "y": 136.5561 - }, - { - "l": "91.0", - "x": 12.6824, - "y": 136.8276 - }, - { - "l": "91.0", - "x": 12.7657, - "y": 137.0987 - }, - { - "l": "91.0", - "x": 12.8491, - "y": 137.3694 - }, - { - "l": "91.0", - "x": 12.9324, - "y": 137.6401 - }, - { - "l": "91.0", - "x": 13.0157, - "y": 137.9116 - }, - { - "l": "91.0", - "x": 13.0991, - "y": 138.1861 - }, - { - "l": "91.0", - "x": 13.1824, - "y": 138.4609 - }, - { - "l": "91.0", - "x": 13.2657, - "y": 138.736 - }, - { - "l": "91.0", - "x": 13.3491, - "y": 139.0113 - }, - { - "l": "91.0", - "x": 13.4324, - "y": 139.287 - }, - { - "l": "91.0", - "x": 13.5157, - "y": 139.563 - }, - { - "l": "91.0", - "x": 13.5991, - "y": 139.8394 - }, - { - "l": "91.0", - "x": 13.6824, - "y": 140.1163 - }, - { - "l": "91.0", - "x": 13.7657, - "y": 140.3935 - }, - { - "l": "91.0", - "x": 13.8491, - "y": 140.6712 - }, - { - "l": "91.0", - "x": 13.9324, - "y": 140.9493 - }, - { - "l": "91.0", - "x": 14.0157, - "y": 141.2291 - }, - { - "l": "91.0", - "x": 14.0991, - "y": 141.5144 - }, - { - "l": "91.0", - "x": 14.1824, - "y": 141.7999 - }, - { - "l": "91.0", - "x": 14.2657, - "y": 142.0855 - }, - { - "l": "91.0", - "x": 14.3491, - "y": 142.3708 - }, - { - "l": "91.0", - "x": 14.4324, - "y": 142.6556 - }, - { - "l": "91.0", - "x": 14.5157, - "y": 142.9398 - }, - { - "l": "91.0", - "x": 14.5991, - "y": 143.223 - }, - { - "l": "91.0", - "x": 14.6824, - "y": 143.505 - }, - { - "l": "91.0", - "x": 14.7657, - "y": 143.7857 - }, - { - "l": "91.0", - "x": 14.8491, - "y": 144.0647 - }, - { - "l": "91.0", - "x": 14.9324, - "y": 144.3419 - }, - { - "l": "91.0", - "x": 15.0157, - "y": 144.617 - }, - { - "l": "91.0", - "x": 15.0991, - "y": 144.8897 - }, - { - "l": "91.0", - "x": 15.1824, - "y": 145.1599 - }, - { - "l": "91.0", - "x": 15.2657, - "y": 145.4272 - }, - { - "l": "91.0", - "x": 15.3491, - "y": 145.6916 - }, - { - "l": "91.0", - "x": 15.4324, - "y": 145.9526 - }, - { - "l": "91.0", - "x": 15.5157, - "y": 146.2102 - }, - { - "l": "91.0", - "x": 15.5991, - "y": 146.464 - }, - { - "l": "91.0", - "x": 15.6824, - "y": 146.7139 - }, - { - "l": "91.0", - "x": 15.7657, - "y": 146.9596 - }, - { - "l": "91.0", - "x": 15.8491, - "y": 147.2008 - }, - { - "l": "91.0", - "x": 15.9324, - "y": 147.4374 - }, - { - "l": "91.0", - "x": 16.0157, - "y": 147.6686 - }, - { - "l": "91.0", - "x": 16.0991, - "y": 147.8928 - }, - { - "l": "91.0", - "x": 16.1824, - "y": 148.1117 - }, - { - "l": "91.0", - "x": 16.2657, - "y": 148.3253 - }, - { - "l": "91.0", - "x": 16.3491, - "y": 148.5333 - }, - { - "l": "91.0", - "x": 16.4324, - "y": 148.7357 - }, - { - "l": "91.0", - "x": 16.5157, - "y": 148.9322 - }, - { - "l": "91.0", - "x": 16.5991, - "y": 149.1229 - }, - { - "l": "91.0", - "x": 16.6824, - "y": 149.3074 - }, - { - "l": "91.0", - "x": 16.7657, - "y": 149.4858 - }, - { - "l": "91.0", - "x": 16.8491, - "y": 149.6579 - }, - { - "l": "91.0", - "x": 16.9324, - "y": 149.8234 - }, - { - "l": "91.0", - "x": 17.0157, - "y": 149.9811 - }, - { - "l": "91.0", - "x": 17.0991, - "y": 150.1263 - }, - { - "l": "91.0", - "x": 17.1824, - "y": 150.265 - }, - { - "l": "91.0", - "x": 17.2657, - "y": 150.3973 - }, - { - "l": "91.0", - "x": 17.3491, - "y": 150.5235 - }, - { - "l": "91.0", - "x": 17.4324, - "y": 150.6435 - }, - { - "l": "91.0", - "x": 17.5157, - "y": 150.7577 - }, - { - "l": "91.0", - "x": 17.5991, - "y": 150.8662 - }, - { - "l": "91.0", - "x": 17.6824, - "y": 150.9691 - }, - { - "l": "91.0", - "x": 17.7657, - "y": 151.0666 - }, - { - "l": "91.0", - "x": 17.8491, - "y": 151.1589 - }, - { - "l": "91.0", - "x": 17.9324, - "y": 151.246 - }, - { - "l": "91.0", - "x": 18.0157, - "y": 151.3281 - }, - { - "l": "91.0", - "x": 18.0991, - "y": 151.4047 - }, - { - "l": "91.0", - "x": 18.1824, - "y": 151.4767 - }, - { - "l": "91.0", - "x": 18.2657, - "y": 151.5444 - }, - { - "l": "91.0", - "x": 18.3491, - "y": 151.6079 - }, - { - "l": "91.0", - "x": 18.4324, - "y": 151.6674 - }, - { - "l": "91.0", - "x": 18.5157, - "y": 151.7232 - }, - { - "l": "91.0", - "x": 18.5991, - "y": 151.7754 - }, - { - "l": "91.0", - "x": 18.6824, - "y": 151.8242 - }, - { - "l": "91.0", - "x": 18.7657, - "y": 151.8698 - }, - { - "l": "91.0", - "x": 18.8491, - "y": 151.9124 - }, - { - "l": "91.0", - "x": 18.9324, - "y": 151.9522 - }, - { - "l": "91.0", - "x": 19.0157, - "y": 151.9876 - }, - { - "l": "91.0", - "x": 19.0991, - "y": 152.0142 - }, - { - "l": "91.0", - "x": 19.1824, - "y": 152.0407 - }, - { - "l": "91.0", - "x": 19.2657, - "y": 152.0673 - }, - { - "l": "91.0", - "x": 19.3491, - "y": 152.0939 - }, - { - "l": "91.0", - "x": 19.4324, - "y": 152.1204 - }, - { - "l": "91.0", - "x": 19.5157, - "y": 152.147 - }, - { - "l": "91.0", - "x": 19.5991, - "y": 152.1736 - }, - { - "l": "91.0", - "x": 19.6824, - "y": 152.2001 - }, - { - "l": "91.0", - "x": 19.7657, - "y": 152.2267 - }, - { - "l": "91.0", - "x": 19.8491, - "y": 152.2533 - }, - { - "l": "91.0", - "x": 19.9324, - "y": 152.2798 - } - ] - }, - { - "sds": 2.0, - "centile": 98.0, - "data": [ - { - "l": "98.0", - "x": 1.0, - "y": 71.5585 - }, - { - "l": "98.0", - "x": 1.0192, - "y": 71.7598 - }, - { - "l": "98.0", - "x": 1.0383, - "y": 71.9611 - }, - { - "l": "98.0", - "x": 1.0575, - "y": 72.1624 - }, - { - "l": "98.0", - "x": 1.0767, - "y": 72.3637 - }, - { - "l": "98.0", - "x": 1.0958, - "y": 72.5649 - }, - { - "l": "98.0", - "x": 1.115, - "y": 72.7662 - }, - { - "l": "98.0", - "x": 1.1342, - "y": 72.9675 - }, - { - "l": "98.0", - "x": 1.1533, - "y": 73.1688 - }, - { - "l": "98.0", - "x": 1.1725, - "y": 73.37 - }, - { - "l": "98.0", - "x": 1.1916, - "y": 73.5713 - }, - { - "l": "98.0", - "x": 1.2108, - "y": 73.7726 - }, - { - "l": "98.0", - "x": 1.23, - "y": 73.9739 - }, - { - "l": "98.0", - "x": 1.2491, - "y": 74.1752 - }, - { - "l": "98.0", - "x": 1.2683, - "y": 74.3764 - }, - { - "l": "98.0", - "x": 1.2875, - "y": 74.5777 - }, - { - "l": "98.0", - "x": 1.3066, - "y": 74.779 - }, - { - "l": "98.0", - "x": 1.3258, - "y": 74.9803 - }, - { - "l": "98.0", - "x": 1.345, - "y": 75.1815 - }, - { - "l": "98.0", - "x": 1.3641, - "y": 75.3828 - }, - { - "l": "98.0", - "x": 1.3833, - "y": 75.5841 - }, - { - "l": "98.0", - "x": 1.4025, - "y": 75.7854 - }, - { - "l": "98.0", - "x": 1.4216, - "y": 75.9867 - }, - { - "l": "98.0", - "x": 1.4408, - "y": 76.1879 - }, - { - "l": "98.0", - "x": 1.46, - "y": 76.3892 - }, - { - "l": "98.0", - "x": 1.4791, - "y": 76.5905 - }, - { - "l": "98.0", - "x": 1.4983, - "y": 76.7918 - }, - { - "l": "98.0", - "x": 1.5175, - "y": 76.993 - }, - { - "l": "98.0", - "x": 1.5366, - "y": 77.1943 - }, - { - "l": "98.0", - "x": 1.5558, - "y": 77.3956 - }, - { - "l": "98.0", - "x": 1.5749, - "y": 77.5969 - }, - { - "l": "98.0", - "x": 1.5941, - "y": 77.7982 - }, - { - "l": "98.0", - "x": 1.6133, - "y": 77.9994 - }, - { - "l": "98.0", - "x": 1.6324, - "y": 78.2007 - }, - { - "l": "98.0", - "x": 1.6516, - "y": 78.402 - }, - { - "l": "98.0", - "x": 1.6708, - "y": 78.6033 - }, - { - "l": "98.0", - "x": 1.6899, - "y": 78.8045 - }, - { - "l": "98.0", - "x": 1.7091, - "y": 79.0058 - }, - { - "l": "98.0", - "x": 1.7283, - "y": 79.2071 - }, - { - "l": "98.0", - "x": 1.7474, - "y": 79.4084 - }, - { - "l": "98.0", - "x": 1.7666, - "y": 79.6097 - }, - { - "l": "98.0", - "x": 1.7858, - "y": 79.8109 - }, - { - "l": "98.0", - "x": 1.8049, - "y": 80.0122 - }, - { - "l": "98.0", - "x": 1.8241, - "y": 80.2135 - }, - { - "l": "98.0", - "x": 1.8433, - "y": 80.4148 - }, - { - "l": "98.0", - "x": 1.8624, - "y": 80.6161 - }, - { - "l": "98.0", - "x": 1.8816, - "y": 80.8173 - }, - { - "l": "98.0", - "x": 1.9008, - "y": 81.0186 - }, - { - "l": "98.0", - "x": 1.9199, - "y": 81.2199 - }, - { - "l": "98.0", - "x": 1.9391, - "y": 81.4212 - }, - { - "l": "98.0", - "x": 1.9582, - "y": 81.6224 - }, - { - "l": "98.0", - "x": 1.9774, - "y": 81.8237 - }, - { - "l": "98.0", - "x": 1.9966, - "y": 82.025 - }, - { - "l": "98.0", - "x": 2.0157, - "y": 82.2227 - }, - { - "l": "98.0", - "x": 2.0991, - "y": 83.0758 - }, - { - "l": "98.0", - "x": 2.1824, - "y": 83.9238 - }, - { - "l": "98.0", - "x": 2.2657, - "y": 84.7662 - }, - { - "l": "98.0", - "x": 2.3491, - "y": 85.6026 - }, - { - "l": "98.0", - "x": 2.4324, - "y": 86.4326 - }, - { - "l": "98.0", - "x": 2.5157, - "y": 87.2558 - }, - { - "l": "98.0", - "x": 2.5991, - "y": 88.0719 - }, - { - "l": "98.0", - "x": 2.6824, - "y": 88.8804 - }, - { - "l": "98.0", - "x": 2.7657, - "y": 89.6809 - }, - { - "l": "98.0", - "x": 2.8491, - "y": 90.473 - }, - { - "l": "98.0", - "x": 2.9324, - "y": 91.2564 - }, - { - "l": "98.0", - "x": 3.0157, - "y": 92.0302 - }, - { - "l": "98.0", - "x": 3.0991, - "y": 92.7927 - }, - { - "l": "98.0", - "x": 3.1824, - "y": 93.5454 - }, - { - "l": "98.0", - "x": 3.2657, - "y": 94.2878 - }, - { - "l": "98.0", - "x": 3.3491, - "y": 95.0198 - }, - { - "l": "98.0", - "x": 3.4324, - "y": 95.741 - }, - { - "l": "98.0", - "x": 3.5157, - "y": 96.4511 - }, - { - "l": "98.0", - "x": 3.5991, - "y": 97.1498 - }, - { - "l": "98.0", - "x": 3.6824, - "y": 97.8367 - }, - { - "l": "98.0", - "x": 3.7657, - "y": 98.5116 - }, - { - "l": "98.0", - "x": 3.8491, - "y": 99.1742 - }, - { - "l": "98.0", - "x": 3.9324, - "y": 99.8241 - }, - { - "l": "98.0", - "x": 4.0157, - "y": 100.4584 - }, - { - "l": "98.0", - "x": 4.0991, - "y": 101.0687 - }, - { - "l": "98.0", - "x": 4.1824, - "y": 101.6661 - }, - { - "l": "98.0", - "x": 4.2657, - "y": 102.2508 - }, - { - "l": "98.0", - "x": 4.3491, - "y": 102.8231 - }, - { - "l": "98.0", - "x": 4.4324, - "y": 103.3832 - }, - { - "l": "98.0", - "x": 4.5157, - "y": 103.9315 - }, - { - "l": "98.0", - "x": 4.5991, - "y": 104.4681 - }, - { - "l": "98.0", - "x": 4.6824, - "y": 104.9932 - }, - { - "l": "98.0", - "x": 4.7657, - "y": 105.5073 - }, - { - "l": "98.0", - "x": 4.8491, - "y": 106.0104 - }, - { - "l": "98.0", - "x": 4.9324, - "y": 106.5029 - }, - { - "l": "98.0", - "x": 5.0157, - "y": 106.984 - }, - { - "l": "98.0", - "x": 5.0991, - "y": 107.4504 - }, - { - "l": "98.0", - "x": 5.1824, - "y": 107.9072 - }, - { - "l": "98.0", - "x": 5.2657, - "y": 108.3549 - }, - { - "l": "98.0", - "x": 5.3491, - "y": 108.794 - }, - { - "l": "98.0", - "x": 5.4324, - "y": 109.225 - }, - { - "l": "98.0", - "x": 5.5157, - "y": 109.6483 - }, - { - "l": "98.0", - "x": 5.5991, - "y": 110.0644 - }, - { - "l": "98.0", - "x": 5.6824, - "y": 110.4739 - }, - { - "l": "98.0", - "x": 5.7657, - "y": 110.8772 - }, - { - "l": "98.0", - "x": 5.8491, - "y": 111.2747 - }, - { - "l": "98.0", - "x": 5.9324, - "y": 111.6671 - }, - { - "l": "98.0", - "x": 6.0157, - "y": 112.0549 - }, - { - "l": "98.0", - "x": 6.0991, - "y": 112.439 - }, - { - "l": "98.0", - "x": 6.1824, - "y": 112.8194 - }, - { - "l": "98.0", - "x": 6.2657, - "y": 113.1964 - }, - { - "l": "98.0", - "x": 6.3491, - "y": 113.5706 - }, - { - "l": "98.0", - "x": 6.4324, - "y": 113.9423 - }, - { - "l": "98.0", - "x": 6.5157, - "y": 114.312 - }, - { - "l": "98.0", - "x": 6.5991, - "y": 114.6803 - }, - { - "l": "98.0", - "x": 6.6824, - "y": 115.0475 - }, - { - "l": "98.0", - "x": 6.7657, - "y": 115.4141 - }, - { - "l": "98.0", - "x": 6.8491, - "y": 115.7806 - }, - { - "l": "98.0", - "x": 6.9324, - "y": 116.1473 - }, - { - "l": "98.0", - "x": 7.0157, - "y": 116.5167 - }, - { - "l": "98.0", - "x": 7.0991, - "y": 116.8951 - }, - { - "l": "98.0", - "x": 7.1824, - "y": 117.2747 - }, - { - "l": "98.0", - "x": 7.2657, - "y": 117.6555 - }, - { - "l": "98.0", - "x": 7.3491, - "y": 118.0376 - }, - { - "l": "98.0", - "x": 7.4324, - "y": 118.4211 - }, - { - "l": "98.0", - "x": 7.5157, - "y": 118.806 - }, - { - "l": "98.0", - "x": 7.5991, - "y": 119.1923 - }, - { - "l": "98.0", - "x": 7.6824, - "y": 119.5802 - }, - { - "l": "98.0", - "x": 7.7657, - "y": 119.9696 - }, - { - "l": "98.0", - "x": 7.8491, - "y": 120.3606 - }, - { - "l": "98.0", - "x": 7.9324, - "y": 120.7532 - }, - { - "l": "98.0", - "x": 8.0157, - "y": 121.1489 - }, - { - "l": "98.0", - "x": 8.0991, - "y": 121.5518 - }, - { - "l": "98.0", - "x": 8.1824, - "y": 121.9561 - }, - { - "l": "98.0", - "x": 8.2657, - "y": 122.3617 - }, - { - "l": "98.0", - "x": 8.3491, - "y": 122.7683 - }, - { - "l": "98.0", - "x": 8.4324, - "y": 123.1756 - }, - { - "l": "98.0", - "x": 8.5157, - "y": 123.5835 - }, - { - "l": "98.0", - "x": 8.5991, - "y": 123.9917 - }, - { - "l": "98.0", - "x": 8.6824, - "y": 124.4 - }, - { - "l": "98.0", - "x": 8.7657, - "y": 124.808 - }, - { - "l": "98.0", - "x": 8.8491, - "y": 125.2157 - }, - { - "l": "98.0", - "x": 8.9324, - "y": 125.6227 - }, - { - "l": "98.0", - "x": 9.0157, - "y": 126.0288 - }, - { - "l": "98.0", - "x": 9.0991, - "y": 126.4332 - }, - { - "l": "98.0", - "x": 9.1824, - "y": 126.8363 - }, - { - "l": "98.0", - "x": 9.2657, - "y": 127.2379 - }, - { - "l": "98.0", - "x": 9.3491, - "y": 127.6378 - }, - { - "l": "98.0", - "x": 9.4324, - "y": 128.0358 - }, - { - "l": "98.0", - "x": 9.5157, - "y": 128.4316 - }, - { - "l": "98.0", - "x": 9.5991, - "y": 128.825 - }, - { - "l": "98.0", - "x": 9.6824, - "y": 129.2159 - }, - { - "l": "98.0", - "x": 9.7657, - "y": 129.604 - }, - { - "l": "98.0", - "x": 9.8491, - "y": 129.9891 - }, - { - "l": "98.0", - "x": 9.9324, - "y": 130.371 - }, - { - "l": "98.0", - "x": 10.0157, - "y": 130.7487 - }, - { - "l": "98.0", - "x": 10.0991, - "y": 131.1193 - }, - { - "l": "98.0", - "x": 10.1824, - "y": 131.4862 - }, - { - "l": "98.0", - "x": 10.2657, - "y": 131.8495 - }, - { - "l": "98.0", - "x": 10.3491, - "y": 132.2092 - }, - { - "l": "98.0", - "x": 10.4324, - "y": 132.5652 - }, - { - "l": "98.0", - "x": 10.5157, - "y": 132.9175 - }, - { - "l": "98.0", - "x": 10.5991, - "y": 133.2661 - }, - { - "l": "98.0", - "x": 10.6824, - "y": 133.6109 - }, - { - "l": "98.0", - "x": 10.7657, - "y": 133.952 - }, - { - "l": "98.0", - "x": 10.8491, - "y": 134.2892 - }, - { - "l": "98.0", - "x": 10.9324, - "y": 134.6226 - }, - { - "l": "98.0", - "x": 11.0157, - "y": 134.9513 - }, - { - "l": "98.0", - "x": 11.0991, - "y": 135.2725 - }, - { - "l": "98.0", - "x": 11.1824, - "y": 135.59 - }, - { - "l": "98.0", - "x": 11.2657, - "y": 135.9039 - }, - { - "l": "98.0", - "x": 11.3491, - "y": 136.2146 - }, - { - "l": "98.0", - "x": 11.4324, - "y": 136.522 - }, - { - "l": "98.0", - "x": 11.5157, - "y": 136.8264 - }, - { - "l": "98.0", - "x": 11.5991, - "y": 137.128 - }, - { - "l": "98.0", - "x": 11.6824, - "y": 137.4269 - }, - { - "l": "98.0", - "x": 11.7657, - "y": 137.7232 - }, - { - "l": "98.0", - "x": 11.8491, - "y": 138.0172 - }, - { - "l": "98.0", - "x": 11.9324, - "y": 138.309 - }, - { - "l": "98.0", - "x": 12.0157, - "y": 138.5987 - }, - { - "l": "98.0", - "x": 12.0991, - "y": 138.8863 - }, - { - "l": "98.0", - "x": 12.1824, - "y": 139.1722 - }, - { - "l": "98.0", - "x": 12.2657, - "y": 139.4566 - }, - { - "l": "98.0", - "x": 12.3491, - "y": 139.7396 - }, - { - "l": "98.0", - "x": 12.4324, - "y": 140.0215 - }, - { - "l": "98.0", - "x": 12.5157, - "y": 140.3024 - }, - { - "l": "98.0", - "x": 12.5991, - "y": 140.5825 - }, - { - "l": "98.0", - "x": 12.6824, - "y": 140.862 - }, - { - "l": "98.0", - "x": 12.7657, - "y": 141.1411 - }, - { - "l": "98.0", - "x": 12.8491, - "y": 141.4199 - }, - { - "l": "98.0", - "x": 12.9324, - "y": 141.6985 - }, - { - "l": "98.0", - "x": 13.0157, - "y": 141.978 - }, - { - "l": "98.0", - "x": 13.0991, - "y": 142.2606 - }, - { - "l": "98.0", - "x": 13.1824, - "y": 142.5435 - }, - { - "l": "98.0", - "x": 13.2657, - "y": 142.8267 - }, - { - "l": "98.0", - "x": 13.3491, - "y": 143.1101 - }, - { - "l": "98.0", - "x": 13.4324, - "y": 143.394 - }, - { - "l": "98.0", - "x": 13.5157, - "y": 143.6781 - }, - { - "l": "98.0", - "x": 13.5991, - "y": 143.9627 - }, - { - "l": "98.0", - "x": 13.6824, - "y": 144.2477 - }, - { - "l": "98.0", - "x": 13.7657, - "y": 144.5331 - }, - { - "l": "98.0", - "x": 13.8491, - "y": 144.8189 - }, - { - "l": "98.0", - "x": 13.9324, - "y": 145.1053 - }, - { - "l": "98.0", - "x": 14.0157, - "y": 145.3933 - }, - { - "l": "98.0", - "x": 14.0991, - "y": 145.687 - }, - { - "l": "98.0", - "x": 14.1824, - "y": 145.981 - }, - { - "l": "98.0", - "x": 14.2657, - "y": 146.2749 - }, - { - "l": "98.0", - "x": 14.3491, - "y": 146.5687 - }, - { - "l": "98.0", - "x": 14.4324, - "y": 146.8619 - }, - { - "l": "98.0", - "x": 14.5157, - "y": 147.1544 - }, - { - "l": "98.0", - "x": 14.5991, - "y": 147.446 - }, - { - "l": "98.0", - "x": 14.6824, - "y": 147.7364 - }, - { - "l": "98.0", - "x": 14.7657, - "y": 148.0253 - }, - { - "l": "98.0", - "x": 14.8491, - "y": 148.3126 - }, - { - "l": "98.0", - "x": 14.9324, - "y": 148.5979 - }, - { - "l": "98.0", - "x": 15.0157, - "y": 148.8811 - }, - { - "l": "98.0", - "x": 15.0991, - "y": 149.1619 - }, - { - "l": "98.0", - "x": 15.1824, - "y": 149.44 - }, - { - "l": "98.0", - "x": 15.2657, - "y": 149.7152 - }, - { - "l": "98.0", - "x": 15.3491, - "y": 149.9874 - }, - { - "l": "98.0", - "x": 15.4324, - "y": 150.2561 - }, - { - "l": "98.0", - "x": 15.5157, - "y": 150.5213 - }, - { - "l": "98.0", - "x": 15.5991, - "y": 150.7826 - }, - { - "l": "98.0", - "x": 15.6824, - "y": 151.0399 - }, - { - "l": "98.0", - "x": 15.7657, - "y": 151.2928 - }, - { - "l": "98.0", - "x": 15.8491, - "y": 151.5411 - }, - { - "l": "98.0", - "x": 15.9324, - "y": 151.7846 - }, - { - "l": "98.0", - "x": 16.0157, - "y": 152.0227 - }, - { - "l": "98.0", - "x": 16.0991, - "y": 152.2535 - }, - { - "l": "98.0", - "x": 16.1824, - "y": 152.4789 - }, - { - "l": "98.0", - "x": 16.2657, - "y": 152.6987 - }, - { - "l": "98.0", - "x": 16.3491, - "y": 152.9129 - }, - { - "l": "98.0", - "x": 16.4324, - "y": 153.1212 - }, - { - "l": "98.0", - "x": 16.5157, - "y": 153.3236 - }, - { - "l": "98.0", - "x": 16.5991, - "y": 153.5198 - }, - { - "l": "98.0", - "x": 16.6824, - "y": 153.7099 - }, - { - "l": "98.0", - "x": 16.7657, - "y": 153.8935 - }, - { - "l": "98.0", - "x": 16.8491, - "y": 154.0706 - }, - { - "l": "98.0", - "x": 16.9324, - "y": 154.2411 - }, - { - "l": "98.0", - "x": 17.0157, - "y": 154.4034 - }, - { - "l": "98.0", - "x": 17.0991, - "y": 154.5529 - }, - { - "l": "98.0", - "x": 17.1824, - "y": 154.6956 - }, - { - "l": "98.0", - "x": 17.2657, - "y": 154.8319 - }, - { - "l": "98.0", - "x": 17.3491, - "y": 154.9617 - }, - { - "l": "98.0", - "x": 17.4324, - "y": 155.0854 - }, - { - "l": "98.0", - "x": 17.5157, - "y": 155.2029 - }, - { - "l": "98.0", - "x": 17.5991, - "y": 155.3146 - }, - { - "l": "98.0", - "x": 17.6824, - "y": 155.4205 - }, - { - "l": "98.0", - "x": 17.7657, - "y": 155.5209 - }, - { - "l": "98.0", - "x": 17.8491, - "y": 155.6159 - }, - { - "l": "98.0", - "x": 17.9324, - "y": 155.7056 - }, - { - "l": "98.0", - "x": 18.0157, - "y": 155.7901 - }, - { - "l": "98.0", - "x": 18.0991, - "y": 155.869 - }, - { - "l": "98.0", - "x": 18.1824, - "y": 155.9431 - }, - { - "l": "98.0", - "x": 18.2657, - "y": 156.0128 - }, - { - "l": "98.0", - "x": 18.3491, - "y": 156.0782 - }, - { - "l": "98.0", - "x": 18.4324, - "y": 156.1394 - }, - { - "l": "98.0", - "x": 18.5157, - "y": 156.1968 - }, - { - "l": "98.0", - "x": 18.5991, - "y": 156.2505 - }, - { - "l": "98.0", - "x": 18.6824, - "y": 156.3008 - }, - { - "l": "98.0", - "x": 18.7657, - "y": 156.3477 - }, - { - "l": "98.0", - "x": 18.8491, - "y": 156.3916 - }, - { - "l": "98.0", - "x": 18.9324, - "y": 156.4326 - }, - { - "l": "98.0", - "x": 19.0157, - "y": 156.469 - }, - { - "l": "98.0", - "x": 19.0991, - "y": 156.4964 - }, - { - "l": "98.0", - "x": 19.1824, - "y": 156.5237 - }, - { - "l": "98.0", - "x": 19.2657, - "y": 156.5511 - }, - { - "l": "98.0", - "x": 19.3491, - "y": 156.5784 - }, - { - "l": "98.0", - "x": 19.4324, - "y": 156.6058 - }, - { - "l": "98.0", - "x": 19.5157, - "y": 156.6331 - }, - { - "l": "98.0", - "x": 19.5991, - "y": 156.6605 - }, - { - "l": "98.0", - "x": 19.6824, - "y": 156.6878 - }, - { - "l": "98.0", - "x": 19.7657, - "y": 156.7152 - }, - { - "l": "98.0", - "x": 19.8491, - "y": 156.7425 - }, - { - "l": "98.0", - "x": 19.9324, - "y": 156.7699 - } - ] - }, - { - "sds": 2.67, - "centile": 99.6, - "data": [ - { - "l": "99.6", - "x": 1.0, - "y": 73.6081 - }, - { - "l": "99.6", - "x": 1.0192, - "y": 73.8151 - }, - { - "l": "99.6", - "x": 1.0383, - "y": 74.0221 - }, - { - "l": "99.6", - "x": 1.0575, - "y": 74.2292 - }, - { - "l": "99.6", - "x": 1.0767, - "y": 74.4362 - }, - { - "l": "99.6", - "x": 1.0958, - "y": 74.6433 - }, - { - "l": "99.6", - "x": 1.115, - "y": 74.8503 - }, - { - "l": "99.6", - "x": 1.1342, - "y": 75.0574 - }, - { - "l": "99.6", - "x": 1.1533, - "y": 75.2644 - }, - { - "l": "99.6", - "x": 1.1725, - "y": 75.4714 - }, - { - "l": "99.6", - "x": 1.1916, - "y": 75.6785 - }, - { - "l": "99.6", - "x": 1.2108, - "y": 75.8855 - }, - { - "l": "99.6", - "x": 1.23, - "y": 76.0926 - }, - { - "l": "99.6", - "x": 1.2491, - "y": 76.2996 - }, - { - "l": "99.6", - "x": 1.2683, - "y": 76.5067 - }, - { - "l": "99.6", - "x": 1.2875, - "y": 76.7137 - }, - { - "l": "99.6", - "x": 1.3066, - "y": 76.9207 - }, - { - "l": "99.6", - "x": 1.3258, - "y": 77.1278 - }, - { - "l": "99.6", - "x": 1.345, - "y": 77.3348 - }, - { - "l": "99.6", - "x": 1.3641, - "y": 77.5419 - }, - { - "l": "99.6", - "x": 1.3833, - "y": 77.7489 - }, - { - "l": "99.6", - "x": 1.4025, - "y": 77.956 - }, - { - "l": "99.6", - "x": 1.4216, - "y": 78.163 - }, - { - "l": "99.6", - "x": 1.4408, - "y": 78.37 - }, - { - "l": "99.6", - "x": 1.46, - "y": 78.5771 - }, - { - "l": "99.6", - "x": 1.4791, - "y": 78.7841 - }, - { - "l": "99.6", - "x": 1.4983, - "y": 78.9912 - }, - { - "l": "99.6", - "x": 1.5175, - "y": 79.1982 - }, - { - "l": "99.6", - "x": 1.5366, - "y": 79.4053 - }, - { - "l": "99.6", - "x": 1.5558, - "y": 79.6123 - }, - { - "l": "99.6", - "x": 1.5749, - "y": 79.8193 - }, - { - "l": "99.6", - "x": 1.5941, - "y": 80.0264 - }, - { - "l": "99.6", - "x": 1.6133, - "y": 80.2334 - }, - { - "l": "99.6", - "x": 1.6324, - "y": 80.4405 - }, - { - "l": "99.6", - "x": 1.6516, - "y": 80.6475 - }, - { - "l": "99.6", - "x": 1.6708, - "y": 80.8546 - }, - { - "l": "99.6", - "x": 1.6899, - "y": 81.0616 - }, - { - "l": "99.6", - "x": 1.7091, - "y": 81.2686 - }, - { - "l": "99.6", - "x": 1.7283, - "y": 81.4757 - }, - { - "l": "99.6", - "x": 1.7474, - "y": 81.6827 - }, - { - "l": "99.6", - "x": 1.7666, - "y": 81.8898 - }, - { - "l": "99.6", - "x": 1.7858, - "y": 82.0968 - }, - { - "l": "99.6", - "x": 1.8049, - "y": 82.3039 - }, - { - "l": "99.6", - "x": 1.8241, - "y": 82.5109 - }, - { - "l": "99.6", - "x": 1.8433, - "y": 82.7179 - }, - { - "l": "99.6", - "x": 1.8624, - "y": 82.925 - }, - { - "l": "99.6", - "x": 1.8816, - "y": 83.132 - }, - { - "l": "99.6", - "x": 1.9008, - "y": 83.3391 - }, - { - "l": "99.6", - "x": 1.9199, - "y": 83.5461 - }, - { - "l": "99.6", - "x": 1.9391, - "y": 83.7532 - }, - { - "l": "99.6", - "x": 1.9582, - "y": 83.9602 - }, - { - "l": "99.6", - "x": 1.9774, - "y": 84.1672 - }, - { - "l": "99.6", - "x": 1.9966, - "y": 84.3743 - }, - { - "l": "99.6", - "x": 2.0157, - "y": 84.5776 - }, - { - "l": "99.6", - "x": 2.0991, - "y": 85.4552 - }, - { - "l": "99.6", - "x": 2.1824, - "y": 86.3275 - }, - { - "l": "99.6", - "x": 2.2657, - "y": 87.194 - }, - { - "l": "99.6", - "x": 2.3491, - "y": 88.0543 - }, - { - "l": "99.6", - "x": 2.4324, - "y": 88.9081 - }, - { - "l": "99.6", - "x": 2.5157, - "y": 89.7549 - }, - { - "l": "99.6", - "x": 2.5991, - "y": 90.5944 - }, - { - "l": "99.6", - "x": 2.6824, - "y": 91.426 - }, - { - "l": "99.6", - "x": 2.7657, - "y": 92.2495 - }, - { - "l": "99.6", - "x": 2.8491, - "y": 93.0643 - }, - { - "l": "99.6", - "x": 2.9324, - "y": 93.8701 - }, - { - "l": "99.6", - "x": 3.0157, - "y": 94.666 - }, - { - "l": "99.6", - "x": 3.0991, - "y": 95.4504 - }, - { - "l": "99.6", - "x": 3.1824, - "y": 96.2246 - }, - { - "l": "99.6", - "x": 3.2657, - "y": 96.9883 - }, - { - "l": "99.6", - "x": 3.3491, - "y": 97.7413 - }, - { - "l": "99.6", - "x": 3.4324, - "y": 98.4831 - }, - { - "l": "99.6", - "x": 3.5157, - "y": 99.2136 - }, - { - "l": "99.6", - "x": 3.5991, - "y": 99.9322 - }, - { - "l": "99.6", - "x": 3.6824, - "y": 100.6388 - }, - { - "l": "99.6", - "x": 3.7657, - "y": 101.3331 - }, - { - "l": "99.6", - "x": 3.8491, - "y": 102.0146 - }, - { - "l": "99.6", - "x": 3.9324, - "y": 102.6831 - }, - { - "l": "99.6", - "x": 4.0157, - "y": 103.3357 - }, - { - "l": "99.6", - "x": 4.0991, - "y": 103.9634 - }, - { - "l": "99.6", - "x": 4.1824, - "y": 104.5779 - }, - { - "l": "99.6", - "x": 4.2657, - "y": 105.1794 - }, - { - "l": "99.6", - "x": 4.3491, - "y": 105.7681 - }, - { - "l": "99.6", - "x": 4.4324, - "y": 106.3442 - }, - { - "l": "99.6", - "x": 4.5157, - "y": 106.9082 - }, - { - "l": "99.6", - "x": 4.5991, - "y": 107.4601 - }, - { - "l": "99.6", - "x": 4.6824, - "y": 108.0004 - }, - { - "l": "99.6", - "x": 4.7657, - "y": 108.5291 - }, - { - "l": "99.6", - "x": 4.8491, - "y": 109.0467 - }, - { - "l": "99.6", - "x": 4.9324, - "y": 109.5533 - }, - { - "l": "99.6", - "x": 5.0157, - "y": 110.0481 - }, - { - "l": "99.6", - "x": 5.0991, - "y": 110.5279 - }, - { - "l": "99.6", - "x": 5.1824, - "y": 110.9978 - }, - { - "l": "99.6", - "x": 5.2657, - "y": 111.4583 - }, - { - "l": "99.6", - "x": 5.3491, - "y": 111.91 - }, - { - "l": "99.6", - "x": 5.4324, - "y": 112.3533 - }, - { - "l": "99.6", - "x": 5.5157, - "y": 112.7887 - }, - { - "l": "99.6", - "x": 5.5991, - "y": 113.2168 - }, - { - "l": "99.6", - "x": 5.6824, - "y": 113.638 - }, - { - "l": "99.6", - "x": 5.7657, - "y": 114.0528 - }, - { - "l": "99.6", - "x": 5.8491, - "y": 114.4618 - }, - { - "l": "99.6", - "x": 5.9324, - "y": 114.8654 - }, - { - "l": "99.6", - "x": 6.0157, - "y": 115.2642 - }, - { - "l": "99.6", - "x": 6.0991, - "y": 115.6594 - }, - { - "l": "99.6", - "x": 6.1824, - "y": 116.0506 - }, - { - "l": "99.6", - "x": 6.2657, - "y": 116.4385 - }, - { - "l": "99.6", - "x": 6.3491, - "y": 116.8233 - }, - { - "l": "99.6", - "x": 6.4324, - "y": 117.2057 - }, - { - "l": "99.6", - "x": 6.5157, - "y": 117.5861 - }, - { - "l": "99.6", - "x": 6.5991, - "y": 117.9649 - }, - { - "l": "99.6", - "x": 6.6824, - "y": 118.3426 - }, - { - "l": "99.6", - "x": 6.7657, - "y": 118.7197 - }, - { - "l": "99.6", - "x": 6.8491, - "y": 119.0966 - }, - { - "l": "99.6", - "x": 6.9324, - "y": 119.4739 - }, - { - "l": "99.6", - "x": 7.0157, - "y": 119.8539 - }, - { - "l": "99.6", - "x": 7.0991, - "y": 120.2431 - }, - { - "l": "99.6", - "x": 7.1824, - "y": 120.6335 - }, - { - "l": "99.6", - "x": 7.2657, - "y": 121.0253 - }, - { - "l": "99.6", - "x": 7.3491, - "y": 121.4184 - }, - { - "l": "99.6", - "x": 7.4324, - "y": 121.8128 - }, - { - "l": "99.6", - "x": 7.5157, - "y": 122.2087 - }, - { - "l": "99.6", - "x": 7.5991, - "y": 122.6061 - }, - { - "l": "99.6", - "x": 7.6824, - "y": 123.0051 - }, - { - "l": "99.6", - "x": 7.7657, - "y": 123.4056 - }, - { - "l": "99.6", - "x": 7.8491, - "y": 123.8078 - }, - { - "l": "99.6", - "x": 7.9324, - "y": 124.2118 - }, - { - "l": "99.6", - "x": 8.0157, - "y": 124.6187 - }, - { - "l": "99.6", - "x": 8.0991, - "y": 125.0332 - }, - { - "l": "99.6", - "x": 8.1824, - "y": 125.4491 - }, - { - "l": "99.6", - "x": 8.2657, - "y": 125.8663 - }, - { - "l": "99.6", - "x": 8.3491, - "y": 126.2845 - }, - { - "l": "99.6", - "x": 8.4324, - "y": 126.7035 - }, - { - "l": "99.6", - "x": 8.5157, - "y": 127.1231 - }, - { - "l": "99.6", - "x": 8.5991, - "y": 127.543 - }, - { - "l": "99.6", - "x": 8.6824, - "y": 127.9629 - }, - { - "l": "99.6", - "x": 8.7657, - "y": 128.3827 - }, - { - "l": "99.6", - "x": 8.8491, - "y": 128.802 - }, - { - "l": "99.6", - "x": 8.9324, - "y": 129.2207 - }, - { - "l": "99.6", - "x": 9.0157, - "y": 129.6384 - }, - { - "l": "99.6", - "x": 9.0991, - "y": 130.0544 - }, - { - "l": "99.6", - "x": 9.1824, - "y": 130.4691 - }, - { - "l": "99.6", - "x": 9.2657, - "y": 130.8822 - }, - { - "l": "99.6", - "x": 9.3491, - "y": 131.2935 - }, - { - "l": "99.6", - "x": 9.4324, - "y": 131.7029 - }, - { - "l": "99.6", - "x": 9.5157, - "y": 132.11 - }, - { - "l": "99.6", - "x": 9.5991, - "y": 132.5147 - }, - { - "l": "99.6", - "x": 9.6824, - "y": 132.9168 - }, - { - "l": "99.6", - "x": 9.7657, - "y": 133.316 - }, - { - "l": "99.6", - "x": 9.8491, - "y": 133.7121 - }, - { - "l": "99.6", - "x": 9.9324, - "y": 134.105 - }, - { - "l": "99.6", - "x": 10.0157, - "y": 134.4935 - }, - { - "l": "99.6", - "x": 10.0991, - "y": 134.8747 - }, - { - "l": "99.6", - "x": 10.1824, - "y": 135.2521 - }, - { - "l": "99.6", - "x": 10.2657, - "y": 135.6259 - }, - { - "l": "99.6", - "x": 10.3491, - "y": 135.9958 - }, - { - "l": "99.6", - "x": 10.4324, - "y": 136.362 - }, - { - "l": "99.6", - "x": 10.5157, - "y": 136.7244 - }, - { - "l": "99.6", - "x": 10.5991, - "y": 137.083 - }, - { - "l": "99.6", - "x": 10.6824, - "y": 137.4377 - }, - { - "l": "99.6", - "x": 10.7657, - "y": 137.7885 - }, - { - "l": "99.6", - "x": 10.8491, - "y": 138.1354 - }, - { - "l": "99.6", - "x": 10.9324, - "y": 138.4783 - }, - { - "l": "99.6", - "x": 11.0157, - "y": 138.8164 - }, - { - "l": "99.6", - "x": 11.0991, - "y": 139.1468 - }, - { - "l": "99.6", - "x": 11.1824, - "y": 139.4734 - }, - { - "l": "99.6", - "x": 11.2657, - "y": 139.7964 - }, - { - "l": "99.6", - "x": 11.3491, - "y": 140.1159 - }, - { - "l": "99.6", - "x": 11.4324, - "y": 140.4321 - }, - { - "l": "99.6", - "x": 11.5157, - "y": 140.7453 - }, - { - "l": "99.6", - "x": 11.5991, - "y": 141.0555 - }, - { - "l": "99.6", - "x": 11.6824, - "y": 141.3629 - }, - { - "l": "99.6", - "x": 11.7657, - "y": 141.6678 - }, - { - "l": "99.6", - "x": 11.8491, - "y": 141.9702 - }, - { - "l": "99.6", - "x": 11.9324, - "y": 142.2703 - }, - { - "l": "99.6", - "x": 12.0157, - "y": 142.5683 - }, - { - "l": "99.6", - "x": 12.0991, - "y": 142.8641 - }, - { - "l": "99.6", - "x": 12.1824, - "y": 143.1582 - }, - { - "l": "99.6", - "x": 12.2657, - "y": 143.4508 - }, - { - "l": "99.6", - "x": 12.3491, - "y": 143.7419 - }, - { - "l": "99.6", - "x": 12.4324, - "y": 144.0319 - }, - { - "l": "99.6", - "x": 12.5157, - "y": 144.3208 - }, - { - "l": "99.6", - "x": 12.5991, - "y": 144.609 - }, - { - "l": "99.6", - "x": 12.6824, - "y": 144.8965 - }, - { - "l": "99.6", - "x": 12.7657, - "y": 145.1835 - }, - { - "l": "99.6", - "x": 12.8491, - "y": 145.4703 - }, - { - "l": "99.6", - "x": 12.9324, - "y": 145.7569 - }, - { - "l": "99.6", - "x": 13.0157, - "y": 146.0444 - }, - { - "l": "99.6", - "x": 13.0991, - "y": 146.3351 - }, - { - "l": "99.6", - "x": 13.1824, - "y": 146.6261 - }, - { - "l": "99.6", - "x": 13.2657, - "y": 146.9174 - }, - { - "l": "99.6", - "x": 13.3491, - "y": 147.209 - }, - { - "l": "99.6", - "x": 13.4324, - "y": 147.5009 - }, - { - "l": "99.6", - "x": 13.5157, - "y": 147.7932 - }, - { - "l": "99.6", - "x": 13.5991, - "y": 148.0859 - }, - { - "l": "99.6", - "x": 13.6824, - "y": 148.3791 - }, - { - "l": "99.6", - "x": 13.7657, - "y": 148.6726 - }, - { - "l": "99.6", - "x": 13.8491, - "y": 148.9667 - }, - { - "l": "99.6", - "x": 13.9324, - "y": 149.2612 - }, - { - "l": "99.6", - "x": 14.0157, - "y": 149.5576 - }, - { - "l": "99.6", - "x": 14.0991, - "y": 149.8597 - }, - { - "l": "99.6", - "x": 14.1824, - "y": 150.162 - }, - { - "l": "99.6", - "x": 14.2657, - "y": 150.4644 - }, - { - "l": "99.6", - "x": 14.3491, - "y": 150.7665 - }, - { - "l": "99.6", - "x": 14.4324, - "y": 151.0682 - }, - { - "l": "99.6", - "x": 14.5157, - "y": 151.3691 - }, - { - "l": "99.6", - "x": 14.5991, - "y": 151.669 - }, - { - "l": "99.6", - "x": 14.6824, - "y": 151.9677 - }, - { - "l": "99.6", - "x": 14.7657, - "y": 152.2649 - }, - { - "l": "99.6", - "x": 14.8491, - "y": 152.5604 - }, - { - "l": "99.6", - "x": 14.9324, - "y": 152.8539 - }, - { - "l": "99.6", - "x": 15.0157, - "y": 153.1452 - }, - { - "l": "99.6", - "x": 15.0991, - "y": 153.434 - }, - { - "l": "99.6", - "x": 15.1824, - "y": 153.7201 - }, - { - "l": "99.6", - "x": 15.2657, - "y": 154.0032 - }, - { - "l": "99.6", - "x": 15.3491, - "y": 154.2832 - }, - { - "l": "99.6", - "x": 15.4324, - "y": 154.5596 - }, - { - "l": "99.6", - "x": 15.5157, - "y": 154.8324 - }, - { - "l": "99.6", - "x": 15.5991, - "y": 155.1012 - }, - { - "l": "99.6", - "x": 15.6824, - "y": 155.3658 - }, - { - "l": "99.6", - "x": 15.7657, - "y": 155.626 - }, - { - "l": "99.6", - "x": 15.8491, - "y": 155.8814 - }, - { - "l": "99.6", - "x": 15.9324, - "y": 156.1319 - }, - { - "l": "99.6", - "x": 16.0157, - "y": 156.3768 - }, - { - "l": "99.6", - "x": 16.0991, - "y": 156.6142 - }, - { - "l": "99.6", - "x": 16.1824, - "y": 156.846 - }, - { - "l": "99.6", - "x": 16.2657, - "y": 157.0722 - }, - { - "l": "99.6", - "x": 16.3491, - "y": 157.2925 - }, - { - "l": "99.6", - "x": 16.4324, - "y": 157.5068 - }, - { - "l": "99.6", - "x": 16.5157, - "y": 157.7149 - }, - { - "l": "99.6", - "x": 16.5991, - "y": 157.9168 - }, - { - "l": "99.6", - "x": 16.6824, - "y": 158.1123 - }, - { - "l": "99.6", - "x": 16.7657, - "y": 158.3012 - }, - { - "l": "99.6", - "x": 16.8491, - "y": 158.4834 - }, - { - "l": "99.6", - "x": 16.9324, - "y": 158.6587 - }, - { - "l": "99.6", - "x": 17.0157, - "y": 158.8256 - }, - { - "l": "99.6", - "x": 17.0991, - "y": 158.9794 - }, - { - "l": "99.6", - "x": 17.1824, - "y": 159.1263 - }, - { - "l": "99.6", - "x": 17.2657, - "y": 159.2664 - }, - { - "l": "99.6", - "x": 17.3491, - "y": 159.4 - }, - { - "l": "99.6", - "x": 17.4324, - "y": 159.5272 - }, - { - "l": "99.6", - "x": 17.5157, - "y": 159.6481 - }, - { - "l": "99.6", - "x": 17.5991, - "y": 159.763 - }, - { - "l": "99.6", - "x": 17.6824, - "y": 159.8719 - }, - { - "l": "99.6", - "x": 17.7657, - "y": 159.9752 - }, - { - "l": "99.6", - "x": 17.8491, - "y": 160.0729 - }, - { - "l": "99.6", - "x": 17.9324, - "y": 160.1652 - }, - { - "l": "99.6", - "x": 18.0157, - "y": 160.2521 - }, - { - "l": "99.6", - "x": 18.0991, - "y": 160.3332 - }, - { - "l": "99.6", - "x": 18.1824, - "y": 160.4095 - }, - { - "l": "99.6", - "x": 18.2657, - "y": 160.4812 - }, - { - "l": "99.6", - "x": 18.3491, - "y": 160.5484 - }, - { - "l": "99.6", - "x": 18.4324, - "y": 160.6114 - }, - { - "l": "99.6", - "x": 18.5157, - "y": 160.6705 - }, - { - "l": "99.6", - "x": 18.5991, - "y": 160.7257 - }, - { - "l": "99.6", - "x": 18.6824, - "y": 160.7774 - }, - { - "l": "99.6", - "x": 18.7657, - "y": 160.8257 - }, - { - "l": "99.6", - "x": 18.8491, - "y": 160.8708 - }, - { - "l": "99.6", - "x": 18.9324, - "y": 160.913 - }, - { - "l": "99.6", - "x": 19.0157, - "y": 160.9505 - }, - { - "l": "99.6", - "x": 19.0991, - "y": 160.9786 - }, - { - "l": "99.6", - "x": 19.1824, - "y": 161.0068 - }, - { - "l": "99.6", - "x": 19.2657, - "y": 161.0349 - }, - { - "l": "99.6", - "x": 19.3491, - "y": 161.063 - }, - { - "l": "99.6", - "x": 19.4324, - "y": 161.0912 - }, - { - "l": "99.6", - "x": 19.5157, - "y": 161.1193 - }, - { - "l": "99.6", - "x": 19.5991, - "y": 161.1474 - }, - { - "l": "99.6", - "x": 19.6824, - "y": 161.1756 - }, - { - "l": "99.6", - "x": 19.7657, - "y": 161.2037 - }, - { - "l": "99.6", - "x": 19.8491, - "y": 161.2318 - }, - { - "l": "99.6", - "x": 19.9324, - "y": 161.26 - } - ] - } - ], - "weight": null, - "ofc": null, - "bmi": null - } - } - } - ] -}; - -// import ukwhoData from '../chartdata/uk_who_chart_data'; -var blankDataset = [ - [ - { centile: 0.4, data: [], sds: -2.67 }, - { centile: 2, data: [], sds: -2 }, - { centile: 9, data: [], sds: -1.33 }, - { centile: 25, data: [], sds: -0.67 }, - { centile: 50, data: [], sds: 0 }, - { centile: 75, data: [], sds: 0.67 }, - { centile: 91, data: [], sds: 1.33 }, - { centile: 98, data: [], sds: 2 }, - { centile: 99.6, data: [], sds: 2.67 }, - ], - [ - { centile: 0.4, data: [], sds: -2.67 }, - { centile: 2, data: [], sds: -2 }, - { centile: 9, data: [], sds: -1.33 }, - { centile: 25, data: [], sds: -0.67 }, - { centile: 50, data: [], sds: 0 }, - { centile: 75, data: [], sds: 0.67 }, - { centile: 91, data: [], sds: 1.33 }, - { centile: 98, data: [], sds: 2 }, - { centile: 99.6, data: [], sds: 2.67 }, - ], - [ - { centile: 0.4, data: [], sds: -2.67 }, - { centile: 2, data: [], sds: -2 }, - { centile: 9, data: [], sds: -1.33 }, - { centile: 25, data: [], sds: -0.67 }, - { centile: 50, data: [], sds: 0 }, - { centile: 75, data: [], sds: 0.67 }, - { centile: 91, data: [], sds: 1.33 }, - { centile: 98, data: [], sds: 2 }, - { centile: 99.6, data: [], sds: 2.67 }, - ], - [ - { centile: 0.4, data: [], sds: -2.67 }, - { centile: 2, data: [], sds: -2 }, - { centile: 9, data: [], sds: -1.33 }, - { centile: 25, data: [], sds: -0.67 }, - { centile: 50, data: [], sds: 0 }, - { centile: 75, data: [], sds: 0.67 }, - { centile: 91, data: [], sds: 1.33 }, - { centile: 98, data: [], sds: 2 }, - { centile: 99.6, data: [], sds: 2.67 }, - ], -]; -function makeDefaultDomains(sex, reference, measurementMethod) { - var all = { - male: { - 'uk-who': { - height: { - x: [0.038329911019849415, 20.05], - y: [36.841246, 204.840832], - }, - weight: { - x: [0.038329911019849415, 20.05], - y: [0, 109.984056], - }, - bmi: { - x: [0.038329911019849415, 20.05], - y: [8.878608, 34.219536000000005], - }, - ofc: { - x: [0.038329911019849415, 18.05], - y: [30.716032000000002, 63.533944000000005], - }, - }, - 'trisomy-21': { - height: { - x: [-0.01, 20.05], - y: [33.456711999999996, 185.010504], - }, - weight: { - x: [-0.01, 20.05], - y: [0, 113.55046], - }, - bmi: { - x: [-0.01, 18.87], - y: [0, 67.871482], - }, - ofc: { - x: [-0.01, 18.05], - y: [28.033898999999998, 59.464058], - }, - }, - }, - female: { - 'uk-who': { - height: { - x: [0.038329911019849415, 20.05], - y: [37.106385, 187.74047], - }, - weight: { - x: [0.038329911019849415, 20.05], - y: [0, 94.233692], - }, - bmi: { - x: [0.038329911019849415, 20.05], - y: [8.569247, 34.568174], - }, - ofc: { - x: [0.038329911019849415, 17.05], - y: [30.280771, 60.829982], - }, - }, - 'trisomy-21': { - height: { - x: [-0.01, 20.05], - y: [34.805428, 170.823076], - }, - weight: { - x: [-0.01, 20.05], - y: [0, 110.50604799999999], - }, - bmi: { - x: [-0.01, 18.87], - y: [0, 48.775794], - }, - ofc: { - x: [-0.01, 18.05], - y: [27.716357000000002, 56.751594], - }, - }, - turner: { - height: { - x: [0.99, 20.05], - y: [54.450081, 169.723302], - }, - }, - }, - }; - return all[sex][reference][measurementMethod]; -} -// data validation / analyses whole child measurement array to work out top and bottom x and y -function childMeasurementRanges(childMeasurements, showCorrected, showChronological, sex, measurementMethod) { - var highestChildX = -500; - var lowestChildX = 500; - var highestChildY = -500; - var lowestChildY = 500; - var gestationInDays = null; - var dateOfBirth = null; - var internalSex = null; - var internalMeasurementMethod = null; - var workingMeasurement = null; - for (var _i = 0, childMeasurements_1 = childMeasurements; _i < childMeasurements_1.length; _i++) { - var measurement = childMeasurements_1[_i]; - if (workingMeasurement === JSON.stringify(measurement)) { - throw new Error('Duplicate measurement entries detected.'); - } - workingMeasurement = JSON.stringify(measurement); - if (!measurement.plottable_data) { - throw new Error('No plottable data found. Are you using the correct server version?'); - } - var tempGestDays = measurement.birth_data.gestation_weeks * 7 + measurement.birth_data.gestation_days; - if (gestationInDays === null) { - gestationInDays = tempGestDays; - } - else if (gestationInDays !== tempGestDays) { - throw new Error('Measurement entries with different gestations detected. Measurements from only one patient at one time are supported.'); - } - var tempDob = measurement.birth_data.birth_date; - if (dateOfBirth === null) { - dateOfBirth = tempDob; - } - else if (dateOfBirth !== tempDob) { - throw new Error('Measurement entries with different date of births detected. Measurements from only one patient at one time are supported.'); - } - var tempSex = measurement.birth_data.sex; - if (internalSex === null) { - internalSex = tempSex; - if (internalSex !== sex) { - throw new Error('Sex supplied by chart props does not match sex supplied in measurements array.'); - } - } - else if (internalSex !== tempSex) { - throw new Error('Measurement entries with different sexes detected. Measurements from only one patient at one time are supported'); - } - else if (internalSex !== sex) { - throw new Error('Sex supplied by chart props does not match sex supplied in measurements array.'); - } - var tempMeasurementMethod = measurement.child_observation_value.measurement_method; - if (internalMeasurementMethod === null) { - internalMeasurementMethod = tempMeasurementMethod; - if (internalMeasurementMethod !== measurementMethod) { - throw new Error('Measurement method supplied by chart props does not match measurement method supplied in measurements array.'); - } - } - else if (internalMeasurementMethod !== tempMeasurementMethod) { - throw new Error('Measurement entries with different measurement methods detected. Only one measurement method is supported at a time.'); - } - else if (internalMeasurementMethod !== measurementMethod) { - throw new Error('Measurement method supplied by chart props does not match measurement method supplied in measurements array.'); - } - var correctedX = measurement.plottable_data.centile_data.corrected_decimal_age_data.x; - var chronologicalX = measurement.plottable_data.centile_data.chronological_decimal_age_data.x; - var correctedY = measurement.plottable_data.centile_data.corrected_decimal_age_data.y; - var chronologicalY = measurement.plottable_data.centile_data.chronological_decimal_age_data.y; - var errorsPresent = measurement.measurement_calculated_values.corrected_measurement_error || - measurement.measurement_calculated_values.chronological_measurement_error - ? true - : false; - if (!errorsPresent) { - if (showCorrected && !showChronological) { - chronologicalX = correctedX; - chronologicalY = correctedY; - } - else if (showChronological && !showCorrected) { - correctedX = chronologicalX; - correctedY = chronologicalY; - } - var arrayOfX = [chronologicalX, correctedX]; - var arrayOfY = [chronologicalY, correctedY]; - for (var _a = 0, arrayOfX_1 = arrayOfX; _a < arrayOfX_1.length; _a++) { - var coord = arrayOfX_1[_a]; - if (highestChildX < coord) { - highestChildX = coord; - } - if (lowestChildX > coord) { - lowestChildX = coord; - } - } - for (var _b = 0, arrayOfY_1 = arrayOfY; _b < arrayOfY_1.length; _b++) { - var coord = arrayOfY_1[_b]; - if (highestChildY < coord) { - highestChildY = coord; - } - if (lowestChildY > coord) { - lowestChildY = coord; - } - } - } - else { - console.warn('Measurements considered invalid by the API given to the chart. The chart will ignore them.'); - } - } - return { lowestChildX: lowestChildX, highestChildX: highestChildX, lowestChildY: lowestChildY, highestChildY: highestChildY }; -} -// keep track of top and bottom values in visible area: -function makeExtremeValues(native) { - if (native === void 0) { native = false; } - return { - lowestY: 500, - highestY: -500, - lowestYForX: native - ? { - 0.4: { value: 500, workingX: 500 }, - 2: { value: 500, workingX: 500 }, - 9: { value: 500, workingX: 500 }, - 25: { value: 500, workingX: 500 }, - 50: { value: 500, workingX: 500 }, - 75: { value: 500, workingX: 500 }, - 91: { value: 500, workingX: 500 }, - 98: { value: 500, workingX: 500 }, - 99.6: { value: 500, workingX: 500 }, - } - : null, - highestYForX: native - ? { - 0.4: { value: -500, workingX: -500 }, - 2: { value: -500, workingX: -500 }, - 9: { value: -500, workingX: -500 }, - 25: { value: -500, workingX: -500 }, - 50: { value: -500, workingX: -500 }, - 75: { value: -500, workingX: -500 }, - 91: { value: -500, workingX: -500 }, - 98: { value: -500, workingX: -500 }, - 99.6: { value: -500, workingX: -500 }, - } - : null, - }; -} -/* update highest / lowest values in visible data set for labels / setting up best y domains. This is run in the filter - data loops, so that only one run of looping required: -*/ -function updateCoordsOfExtremeValues(extremeValues, centileString, d, native) { - if (native === void 0) { native = false; } - // transition points can lead to inaccurate coords for centile labels, therefore don't include 2 or 4 years old - if (!native || (d.x !== 4 && d.x !== 2)) { - if (extremeValues.lowestY > d.y) { - extremeValues.lowestY = d.y; - } - if (extremeValues.highestY < d.y) { - extremeValues.highestY = d.y; - } - if (native) { - if (extremeValues.highestYForX[centileString].workingX < d.x) { - extremeValues.highestYForX[centileString].value = d.y; - extremeValues.highestYForX[centileString].workingX = d.x; - } - if (extremeValues.lowestYForX[centileString].workingX > d.x) { - extremeValues.lowestYForX[centileString].value = d.y; - extremeValues.lowestYForX[centileString].workingX = d.x; - } - } - } -} -//filter data to data that will be visible on screen: -function filterData(data, lowerX, upperX, centileString, extremeValues, native) { - if (native === void 0) { native = false; } - return data.filter(function (d, currentIndex, wholeArray) { - var _a, _b; - //as centile data is to 4 decimal places, this prevents premature chopping off at either end: - var upperXTo4 = Number(upperX === null || upperX === void 0 ? void 0 : upperX.toFixed(4)); - var lowerXTo4 = Number(lowerX === null || lowerX === void 0 ? void 0 : lowerX.toFixed(4)); - if (d.x <= upperXTo4 && d.x >= lowerXTo4) { - if (extremeValues) { - updateCoordsOfExtremeValues(extremeValues, centileString, d, native); - } - return true; - } - else { - var xBelow = (_a = wholeArray[currentIndex - 1]) === null || _a === void 0 ? void 0 : _a.x; - var xAbove = (_b = wholeArray[currentIndex + 1]) === null || _b === void 0 ? void 0 : _b.x; - if ((xBelow <= upperXTo4 && xBelow >= lowerXTo4) || (xAbove <= upperXTo4 && xAbove >= lowerXTo4)) { - return true; - } - else { - return false; - } - } - }); -} -// loops through data sets with filterData function: -function truncate(rawDataSet, lowerX, upperX, extremeValues, native) { - if (native === void 0) { native = false; } - var truncatedDataSet = []; - for (var _i = 0, rawDataSet_1 = rawDataSet; _i < rawDataSet_1.length; _i++) { - var originalCentileObject = rawDataSet_1[_i]; - var rawData = originalCentileObject.data; - if (rawData.length > 0) { - var centileString = originalCentileObject.centile; - var truncatedData = filterData(rawData, lowerX, upperX, centileString, extremeValues, native); - truncatedDataSet.push(__assign(__assign({}, originalCentileObject), { data: truncatedData })); - } - else { - truncatedDataSet.push(originalCentileObject); - } - } - return truncatedDataSet; -} -// gets relevant data sets: -function getRelevantDataSets(sex, measurementMethod, reference, lowestChildX, highestChildX, isSDS) { - if (reference === 'uk-who') { - var ukwhoData = void 0; - if (measurementMethod === 'height') { - ukwhoData = sex === "male" ? ukwhoHeightMaleCentileData.centile_data : ukwhoHeightFemaleCentileData.centile_data; - } - if (measurementMethod === 'weight') { - ukwhoData = sex === "male" ? ukwhoWeightMaleCentileData.centile_data : ukwhoWeightFemaleCentileData.centile_data; - } - if (measurementMethod === 'ofc') { - ukwhoData = sex === "male" ? ukwhoOFCMaleCentileData.centile_data : ukwhoOFCFemaleCentileData.centile_data; - } - if (measurementMethod === 'bmi') { - if (isSDS) { - ukwhoData = sex === "male" ? ukwhoBMIMaleSDSData.centile_data : ukwhoBMIFemaleSDSData.centile_data; - } - else { - ukwhoData = sex === "male" ? ukwhoBMIMaleCentileData.centile_data : ukwhoBMIFemaleCentileData.centile_data; - } - } - var dataSetRanges = [ - [-0.33, 0.0383], - [0.0383, 2], - [2, 4], - [4, 21], - ]; - var startingGroup = 0; - var endingGroup = 3; - for (var i = 0; i < dataSetRanges.length; i++) { - var range = dataSetRanges[i]; - if (lowestChildX >= range[0] && lowestChildX < range[1]) { - startingGroup = i; - break; - } - } - for (var i = 0; i < dataSetRanges.length; i++) { - var range = dataSetRanges[i]; - if (highestChildX >= range[0] && highestChildX < range[1]) { - endingGroup = i; - break; - } - } - var allData = [ - measurementMethod !== 'bmi' ? ukwhoData[0].uk90_preterm[sex][measurementMethod] : deepCopy(blankDataset[0]), - ukwhoData[1].uk_who_infant[sex][measurementMethod], - ukwhoData[2].uk_who_child[sex][measurementMethod], - ukwhoData[3].uk90_child[sex][measurementMethod], - ]; - var returnArray = deepCopy(blankDataset); - for (var i = startingGroup; i <= endingGroup; i++) { - returnArray.splice(i, 1, allData[i]); - } - return returnArray; - } - else if (reference === 'trisomy-21') { - var trisomy21Data = void 0; - // let trisomy21SDSData: Reference[] - if (measurementMethod === 'height') { - trisomy21Data = sex === "male" ? trisomy21HeightMaleCentileData.centile_data : trisomy21HeightFemaleCentileData.centile_data; - } - if (measurementMethod === 'weight') { - trisomy21Data = sex === "male" ? trisomy21WeightMaleCentileData.centile_data : trisomy21WeightFemaleCentileData.centile_data; - } - if (measurementMethod === 'ofc') { - trisomy21Data = sex === "male" ? trisomy21OFCMaleCentileData.centile_data : trisomy21OFCFemaleCentileData.centile_data; - } - if (measurementMethod === 'bmi') { - if (isSDS) { - trisomy21Data = sex === "male" ? trisomy21BMIMaleSDSData.centile_data : trisomy21BMIFemaleSDSData.centile_data; - } - else { - trisomy21Data = sex === "male" ? trisomy21BMIMaleCentileData.centile_data : trisomy21BMIFemaleCentileData.centile_data; - } - } - var blankSubSet = deepCopy(blankDataset[0]); - return [trisomy21Data[0]['trisomy-21'][sex][measurementMethod], blankSubSet, blankSubSet, blankSubSet]; - } - else if (reference === 'turner') { - var turnerData = turnerHeightFemaleCentileData.centile_data; - var blankSubSet = deepCopy(blankDataset[0]); - if (sex !== 'female' && measurementMethod !== 'height') { - throw new Error('No centile lines have rendered, as only height data is supported for turner reference.'); - } - return [turnerData[0]['turners-syndrome'].female.height, blankSubSet, blankSubSet, blankSubSet]; - } - else { - throw new Error('No valid reference given to getRelevantDataSets'); - } -} -// main function to get best domains, fetch relevant data. -function getDomainsAndData(childMeasurements, sex, measurementMethod, reference, showCorrected, showChronological) { - // variables initialised to chart for bigger child: - var internalChartScaleType = 'biggerChild'; - var finalCentileData = []; - var finalSDSData = []; - var internalDomains; - if (childMeasurements.length > 0) { - var twoWeeksPostnatal = 0.038329911019849415; - var gestWeeks37 = -0.057494866529774126; - var gestWeeks24 = -0.306639288158795; - var gestWeeks22 = -0.33; - var absoluteBottomX = twoWeeksPostnatal; - var absoluteHighX = 20.05; - var agePadding = totalMinPadding.biggerChild; - if (reference === 'uk-who') { - if (measurementMethod === 'ofc') { - if (sex === 'female') { - absoluteHighX = 17.05; - } - else { - absoluteHighX = 18.05; - } - } - } - if (reference === 'trisomy-21') { - absoluteBottomX = -0.01; - if (measurementMethod === 'ofc') { - absoluteHighX = 18.05; - } - if (measurementMethod === 'bmi') { - absoluteHighX = 18.87; - } - } - if (reference === 'turner') { - absoluteBottomX = 0.99; - } - var lowestXForDomain = absoluteBottomX; - var highestXForDomain = absoluteHighX; - var lowestYFromMeasurements = null; - var highestYFromMeasurements = null; - var childCoordinates = childMeasurementRanges(childMeasurements, showCorrected, showChronological, sex, measurementMethod); - var errorFree = true; - for (var _i = 0, _a = Object.values(childCoordinates); _i < _a.length; _i++) { - var value = _a[_i]; - if (Math.abs(value) === 500) { - errorFree = false; - break; - } - } - if (errorFree) { - var lowestChildX = childCoordinates.lowestChildX, highestChildX = childCoordinates.highestChildX, lowestChildY = childCoordinates.lowestChildY, highestChildY = childCoordinates.highestChildY; - lowestYFromMeasurements = lowestChildY; - highestYFromMeasurements = highestChildY; - var difference = highestChildX - lowestChildX; - var birthGestationWeeks = childMeasurements[0].birth_data.gestation_weeks; - // set appropriate chart scale based on data: - if (birthGestationWeeks < 37 && highestChildX <= twoWeeksPostnatal && reference === 'uk-who') { - // prem: - absoluteBottomX = gestWeeks22; - agePadding = totalMinPadding.prem; - absoluteHighX = twoWeeksPostnatal; - if (measurementMethod === 'height') { - absoluteBottomX = gestWeeks24; - } - if (difference > totalMinPadding.prem) { - internalChartScaleType = 'infant'; - } - else { - internalChartScaleType = 'prem'; - } - } - else if (highestChildX <= 2) { - //infant: - agePadding = totalMinPadding.infant; - if (lowestChildX >= gestWeeks37 && lowestChildX < twoWeeksPostnatal && reference === 'uk-who') { - absoluteBottomX = gestWeeks37; - } - else if (lowestChildX < gestWeeks37) { - absoluteBottomX = measurementMethod === 'height' ? gestWeeks24 : gestWeeks22; - } - if (difference > totalMinPadding.infant) { - internalChartScaleType = 'smallChild'; - } - else { - internalChartScaleType = 'infant'; - } - } - else if (highestChildX <= 4) { - // small child: - agePadding = totalMinPadding.smallChild; - if (difference <= totalMinPadding.smallChild) { - internalChartScaleType = 'smallChild'; - } - } - // work out most appropriate highest and lowest x coords for domain setting: - var unroundedLowestX_1 = 0; - var unroundedHighestX_1 = 0; - if (agePadding <= difference) { - unroundedLowestX_1 = absoluteBottomX > lowestChildX - 0.01 ? absoluteBottomX : lowestChildX - 0.01; - unroundedHighestX_1 = absoluteHighX < highestChildX + 0.01 ? absoluteHighX : highestChildX + 0.01; - } - else { - var leftOverAgePadding = agePadding - difference; - var addToHighest = 0; - var candidateLowX = lowestChildX - leftOverAgePadding / 2; - if (candidateLowX < absoluteBottomX) { - unroundedLowestX_1 = absoluteBottomX; - addToHighest = absoluteBottomX - candidateLowX; - } - else { - unroundedLowestX_1 = candidateLowX; - } - var candidateHighX = highestChildX + leftOverAgePadding / 2; - if (candidateHighX > absoluteHighX) { - unroundedHighestX_1 = absoluteHighX; - unroundedLowestX_1 = unroundedLowestX_1 - (candidateHighX - absoluteHighX); - } - else { - unroundedHighestX_1 = candidateHighX + addToHighest; - } - } - lowestXForDomain = unroundedLowestX_1; - var xTickValues = getTickValuesForChartScaling(internalChartScaleType); - if (lowestXForDomain !== absoluteBottomX) { - var arrayForOrdering = __spreadArrays(xTickValues); - arrayForOrdering.push(unroundedLowestX_1); - arrayForOrdering.sort(function (a, b) { return a - b; }); - var lowestXIndex = arrayForOrdering.findIndex(function (element) { return element === unroundedLowestX_1; }); - lowestXForDomain = arrayForOrdering[lowestXIndex - 1] || lowestXForDomain; - } - highestXForDomain = unroundedHighestX_1; - if (highestXForDomain !== absoluteHighX) { - var arrayForOrdering = __spreadArrays(xTickValues); - arrayForOrdering.push(unroundedHighestX_1); - arrayForOrdering.sort(function (a, b) { return a - b; }); - var highestXIndex = arrayForOrdering.findIndex(function (element) { return element === unroundedHighestX_1; }); - highestXForDomain = arrayForOrdering[highestXIndex + 1] || highestXForDomain; - } - } - else { - var errorString = 'No valid measurements entered. Error message from the server: '; - for (var _b = 0, childMeasurements_2 = childMeasurements; _b < childMeasurements_2.length; _b++) { - var measurement = childMeasurements_2[_b]; - if (measurement.measurement_calculated_values.corrected_measurement_error) { - errorString += " " + measurement.measurement_calculated_values.corrected_measurement_error; - throw new Error(errorString); - } - } - } - // this object keeps track of highest / lowest visible coords to use for chart scaling / labels: - var extremeValues = makeExtremeValues(); - //removes irrelevant datasets before filtering to visible data: - var relevantCentileDataSets = getRelevantDataSets(sex, measurementMethod, reference, lowestXForDomain, highestXForDomain, false); - if (measurementMethod === "bmi" && reference !== "turner") { - var relevantSDSDataSets = getRelevantDataSets(sex, 'bmi', reference, lowestXForDomain, highestXForDomain, true); - //get final sds data set for centile line render: - for (var _c = 0, relevantSDSDataSets_1 = relevantSDSDataSets; _c < relevantSDSDataSets_1.length; _c++) { - var referenceSet = relevantSDSDataSets_1[_c]; - var truncatedSDS = truncate(referenceSet, lowestXForDomain, highestXForDomain, extremeValues); - finalSDSData.push(truncatedSDS); - } - } - //get final centile data set for centile line render: - for (var _d = 0, relevantCentileDataSets_1 = relevantCentileDataSets; _d < relevantCentileDataSets_1.length; _d++) { - var referenceSet = relevantCentileDataSets_1[_d]; - var truncated = truncate(referenceSet, lowestXForDomain, highestXForDomain, extremeValues); - finalCentileData.push(truncated); - } - var lowestDataY = extremeValues.lowestY; - var highestDataY = extremeValues.highestY; - var prePaddingLowestY = lowestDataY; - var prePaddingHighestY = highestDataY; - // decide if measurement or centile band highest and lowest y: - // lowest y - if (childMeasurements.length > 0 && lowestYFromMeasurements !== null) { - prePaddingLowestY = lowestYFromMeasurements < lowestDataY ? lowestYFromMeasurements : lowestDataY; - } - // highest y - if (childMeasurements.length > 0 && highestYFromMeasurements !== null) { - prePaddingHighestY = highestYFromMeasurements > highestDataY ? highestYFromMeasurements : highestDataY; - } - // to give a bit of space in vertical axis: - var candidatefinalLowestY = prePaddingLowestY - (prePaddingHighestY - prePaddingLowestY) * 0.07; - var finalLowestY = candidatefinalLowestY < 0 ? 0 : candidatefinalLowestY; - var finalHighestY = prePaddingHighestY + (prePaddingHighestY - prePaddingLowestY) * 0.06; - internalDomains = { - x: [lowestXForDomain, highestXForDomain], - y: [finalLowestY, finalHighestY], - }; - } - else { - internalDomains = makeDefaultDomains(sex, reference, measurementMethod); - finalCentileData = getRelevantDataSets(sex, measurementMethod, reference, internalDomains.x[0], internalDomains.x[1], false); - finalSDSData = getRelevantDataSets(sex, measurementMethod, reference, internalDomains.x[0], internalDomains.x[1], true); - } - return { - bmiSDSData: finalSDSData, - centileData: finalCentileData, - computedDomains: internalDomains, - chartScaleType: internalChartScaleType, - }; -} -function getVisibleData(sex, measurementMethod, reference, domains) { - if (!domains) { - return null; - } - var chartScaleType = 'biggerChild'; - var lowestX = domains.x[0]; - var highestX = domains.x[1]; - var xDifference = highestX - lowestX; - switch (true) { - case xDifference <= totalMinPadding.prem: - chartScaleType = 'prem'; - break; - case xDifference <= totalMinPadding.infant: - chartScaleType = 'infant'; - break; - case xDifference <= totalMinPadding.smallChild: - chartScaleType = 'smallChild'; - break; - } - var relevantCentileDataSets = getRelevantDataSets(sex, measurementMethod, reference, lowestX, highestX, false); - var relevantSDSDataSets = getRelevantDataSets(sex, measurementMethod, reference, lowestX, highestX, true); - var centileData = []; - var sdsData = []; - for (var _i = 0, relevantCentileDataSets_2 = relevantCentileDataSets; _i < relevantCentileDataSets_2.length; _i++) { - var referenceSet = relevantCentileDataSets_2[_i]; - var truncated = truncate(referenceSet, lowestX, highestX); - centileData.push(truncated); - } - for (var _a = 0, relevantSDSDataSets_2 = relevantSDSDataSets; _a < relevantSDSDataSets_2.length; _a++) { - var referenceSet = relevantSDSDataSets_2[_a]; - var truncated = truncate(referenceSet, lowestX, highestX); - sdsData.push(truncated); - } - return { chartScaleType: chartScaleType, centileData: centileData, sdsData: sdsData }; -} -var delayedPubertyData = { - male: ukwhoHeightMaleCentileData.centile_data[3].uk90_child.male.height[0].data, - female: ukwhoHeightFemaleCentileData.centile_data[3].uk90_child.female.height[0].data //ukwhoData.uk90_child.female.height[0].data, -}; - -function yAxisLabel(measurement_method, isSDS) { - if (isSDS) { - if (measurement_method === 'height') { - return 'Height / Length (SDS)'; - } - if (measurement_method === 'weight') { - return 'Weight (SDS)'; - } - if (measurement_method === 'bmi') { - return 'Body Mass Index (SDS)'; - } - if (measurement_method === 'ofc') { - return 'Head Circumference (SDS)'; - } - } - else { - if (measurement_method === 'height') { - return 'Height / Length (cm)'; - } - if (measurement_method === 'weight') { - return 'Weight (kg)'; - } - if (measurement_method === 'bmi') { - return 'Body Mass Index (kg/m²)'; - } - if (measurement_method === 'ofc') { - return 'Head Circumference (cm)'; - } - } -} - -function xAxislabel(chartScaleType, domains) { - var lowerX = domains.x[0]; - var upperX = domains.x[1]; - switch (chartScaleType) { - case 'prem': - if (upperX <= 0.038329911019849415) { - return 'Gestation (weeks)'; - } - else { - return 'Gestation or postnatal weeks'; - } - case 'infant': - if (lowerX < 0 && upperX >= 0) { - return 'Gestation or postnatal weeks / months'; - } - else if (upperX < 0) { - return 'Gestation'; - } - else { - return 'Age (in weeks and months)'; - } - case 'smallChild': - return 'Age (in years and months)'; - case 'biggerChild': - return 'Age (in years)'; - default: - throw new Error('Invalid chartScaleStyle given to xAxisLabel function'); - } -} - -function defaultToggles(childMeasurements) { - if (!childMeasurements || childMeasurements.length < 1) { - // although no values to plot, allows SDS chart to render unselected measurement types - return { defaultShowCorrected: false, defaultShowChronological: true, showToggle: false }; - } - if (!childMeasurements[0].plottable_data) { - throw new Error('No plottable data found. Are you using the correct server version?'); - } - // if == 40 weeks, only show chronological: - var gestWeeks = childMeasurements[0].birth_data.gestation_weeks; - if (gestWeeks == 40) { - return { defaultShowCorrected: false, defaultShowChronological: true, showToggle: false }; - } - // get max corrected age from data: - var arrayOfCorrectedX = []; - for (var _i = 0, childMeasurements_1 = childMeasurements; _i < childMeasurements_1.length; _i++) { - var measurement = childMeasurements_1[_i]; - var correctedX = measurement.plottable_data.centile_data.corrected_decimal_age_data.x; - arrayOfCorrectedX.push(correctedX); - } - var maxAge = Math.max.apply(Math, arrayOfCorrectedX); - var averageAge = arrayOfCorrectedX.reduce(function (a, b) { return a + b; }, 0) / arrayOfCorrectedX.length; - // show 2 points if born prem, max age < 2 and average age >= 2 weeks corrected: - if (maxAge < 2 && averageAge >= 0.038329911019849415 && gestWeeks < 37) { - return { defaultShowCorrected: true, defaultShowChronological: true, showToggle: true }; - } - // all other cases show just corrected: - return { defaultShowCorrected: true, defaultShowChronological: false, showToggle: true }; -} - -function measurementSuffix(measurement) { - if (measurement === "height") { - return 'cm'; - } - if (measurement === 'weight') { - return 'kg'; - } - if (measurement === 'ofc') { - return 'cm'; - } - if (measurement === 'bmi') { - return 'kg/m²'; - } -} - -// input a number and outputs a string with ordinal suffix attached -var addOrdinalSuffix = function (inputNumber) { - var answerNumber = inputNumber.toString(); - var workingNumber = Number(inputNumber); - if (Number.isInteger(workingNumber) === false) { - workingNumber *= 10; - if (Number.isInteger(workingNumber) === false) { - throw Error('Only integers or numbers to 1 decimal place are supported'); - } - } - else { - answerNumber = answerNumber.split(".")[0]; // this is an integer - remove the decimal point - } - var remainder10 = workingNumber % 10; - var remainder100 = workingNumber % 100; - if (remainder10 === 1 && remainder100 !== 11) { - return answerNumber + "st"; - } - if (remainder10 === 2 && remainder100 !== 12) { - return answerNumber + "nd"; - } - if (remainder10 === 3 && remainder100 !== 13) { - return answerNumber + "rd"; - } - else { - return answerNumber + "th"; - } -}; - -function tooltipText(reference, measurementMethod, datum, midParentalHeightData, clinicianFocus, // flag passed in from user - defines if tooltip text aimed at clinicians or families -sex) { - var childName = datum.childName, x = datum.x, // the decimal age - l = datum.l, // labels - observation_date = datum.observation_date, age_type = datum.age_type, centile_band = datum.centile_band, calendar_age = datum.calendar_age, corrected_gestational_age = datum.corrected_gestational_age, y = datum.y, observation_value_error = datum.observation_value_error, age_error = datum.age_error, lay_comment = datum.lay_comment, clinician_comment = datum.clinician_comment, b = datum.b, centile = datum.centile, sds = datum.sds, bone_age_label = datum.bone_age_label, bone_age_sds = datum.bone_age_sds, bone_age_centile = datum.bone_age_centile, bone_age_type = datum.bone_age_type; - // midparental height labels - if (midParentalHeightData) { - var mid_parental_height = midParentalHeightData.mid_parental_height, mid_parental_height_sds = midParentalHeightData.mid_parental_height_sds, mid_parental_height_lower_value = midParentalHeightData.mid_parental_height_lower_value, mid_parental_height_upper_value = midParentalHeightData.mid_parental_height_upper_value; - if (['centileMPH', 'lowerCentileMPH', 'upperCentileMPH', 'areaMPH'].includes(childName)) { - if (childName === "lowerCentileMPH") { - return "Midparental Height -2SD: " + Math.round(mid_parental_height_lower_value * 10) / 10 + " cm"; - } - if (childName === "centileMPH") { - return "Midparental Height: " + Math.round(mid_parental_height * 10) / 10 + " cm (" + addOrdinalSuffix(Math.round(parseFloat(l))) + " centile, SDS: " + Math.round(mid_parental_height_sds * 100) / 100 + ")\nRange(+/-2SD): " + Math.round(mid_parental_height_lower_value * 10) / 10 + " cm - " + Math.round(mid_parental_height_upper_value * 10) / 10 + " cm"; - } - if (childName === "upperCentileMPH") { - return "Midparental Height +2SD: " + Math.round(mid_parental_height_upper_value * 10) / 10 + " cm"; - } - return; - } - } - // l represent labels that represent reference transitions, puberty area or sds labels for the BMI SDS lines - if (l) { - // reference transit point or puberty shaded area labels - if (x === 0.0383 && reference === 'uk-who') { - return 'Transit point from\nUK90 to WHO data'; - } - if (x === 4 && reference == 'uk-who') { - return 'Transit point from\nUK-WHO to UK90 data.'; - } - if (x === 2 && measurementMethod === 'height' && reference == 'uk-who') { - // step down at 2 y where children measured standing (height), not lying (length) - return "Measure length until x 2;\nMeasure height after age 2.\nA child’s height is usually\nslightly less than their length."; - } - if (x === 2 && measurementMethod === 'height' && reference == 'uk-who') { - // step down at 2 y where children measured standing (height), not lying (length) - return "Measure length until x 2;\nMeasure height after age 2.\nA child’s height is usually\nslightly less than their length."; - } - if (l === 'For all Children plotted in this shaded area see instructions.' && reference == 'uk-who') { - // delayed puberty if plotted in this area - if (sex === 'male') { - return 'If a plot falls here, pubertal assessment will be required\nand mid-parental centile should be assessed.\nIf they are in puberty or completing puberty,\nthey are below the 0.4th centile and should be referred.\nIn most instances a prepubertal boy plotted in this area\nis growing normally, but comparison with the mid-parental\ncentile and growth trajectory will assist the assessment\nof whether further investigation is needed.'; - } - else { - return 'If a plot falls here, pubertal assessment will be required\nand mid-parental centile should be assessed.\nIf they are in puberty or completing puberty,\nthey are below the 0.4th centile and should be referred.\nIn most instances a prepubertal girl plotted in this area\nis growing normally, but comparison with the mid-parental\ncentile and growth trajectory will assist the assessment\nof whether further investigation is needed.'; - } - } - // BMI SDS labels - if (childName.includes("sdsLine")) { - return l + " SDS"; - } - if (childName.includes("centileLine")) { - // these are the centile labels - return addOrdinalSuffix(l) + " centile"; - } - } - if (centile_band) { - // flag passed in from user - if clinician, show clinician age advice strings, else show child/family advice - var comment = clinicianFocus ? clinician_comment : lay_comment; - // bone age text - if ((childName === "chronologicalboneage" || childName === "correctedboneage") && b) { - var concatenatedText = "Bone Age: "; - concatenatedText += b.toString() + " yrs"; - if (bone_age_sds && !isNaN(bone_age_sds)) { - concatenatedText += "\nSDS: " + bone_age_sds.toString(); - } - if (bone_age_centile && !isNaN(bone_age_centile)) { - concatenatedText += "\nCentile: " + bone_age_centile.toString(); - } - if (bone_age_type && bone_age_type.length > 0) { - if (bone_age_type === "greulich-pyle") { - concatenatedText += "\nGreulich & Pyle"; - } - if (bone_age_type === 'tanner-whitehouse-ii') { - concatenatedText += "\nTanner-Whitehouse II"; - } - if (bone_age_type === 'tanner-whitehouse-iii') { - concatenatedText += "\nTanner-Whitehouse III"; - } - if (bone_age_type === 'fels') { - concatenatedText += "\nFels"; - } - if (bone_age_type === 'bonexpert') { - concatenatedText += "\nBoneXpert"; - } - if (bone_age_label.length > 0) { - concatenatedText += "\n" + bone_age_label; - } - } - return concatenatedText; - } - /* - plots - this returns a long string with Corrected or Chronological calendar age concatenated with - age explanation advice (personalised for clinicians or patients based on clinicianFocused flag), - the measurement, units and SDS in square brackets. - If not clinicianFocused (ie for patients), a further string is added describing which centiles the - measurement falls on/near or between. - */ - var finalCentile = centile_band; - var splitCentile = centile_band.split(' '); - if (splitCentile.length >= 11) { - var wantedIndex = splitCentile.findIndex(function (element) { return element === 'is'; }); - splitCentile[wantedIndex] = 'is\n'; - finalCentile = splitCentile.join(' ').replace('is\n ', 'is\n'); - } - if (observation_value_error === null && age_error === null) { - // sds in square brackets - var sds_string = "[SDS: " + (sds > 0 ? '+' + Math.round(sds * 1000) / 1000 : Math.round(sds * 1000) / 1000) + "]"; - if (age_type === 'corrected_age' && x > 0.0383) { - var finalCorrectedString = comment.replaceAll(', ', ',\n').replaceAll('. ', '.\n'); - return "Corrected age: " + calendar_age + " on " + observation_date + "\n" + finalCorrectedString + "\n" + y + " " + measurementSuffix(measurementMethod) + " " + (clinicianFocus ? sds_string : '\n' + finalCentile); - } - if (age_type === 'chronological_age') { - var finalChronologicalString = comment - .replaceAll(', ', ',\n') - .replaceAll('. ', '.\n') - .replaceAll('account ', 'account\n'); - return "Actual age: " + calendar_age + " on " + observation_date + "\n" + finalChronologicalString + "\n" + y + " " + measurementSuffix(measurementMethod) + " " + (clinicianFocus ? sds_string : '\n' + finalCentile); - } - } - // measurement data points - if (x <= 0.0383) { - // <= 42 weeks - /// plots - if (observation_value_error === null && age_error === null) { - // sds in square brackets - var sds_string = "[SDS: " + (sds > 0 ? '+' + Math.round(sds * 1000) / 1000 : Math.round(sds * 1000) / 1000) + "]"; - if (age_type === 'corrected_age') { - var finalCorrectedString = comment.replaceAll(', ', ',\n').replaceAll('. ', '.\n'); - return "Corrected age: " + corrected_gestational_age + " on " + observation_date + "\n" + finalCorrectedString + "\n" + y + " " + measurementSuffix(measurementMethod) + " " + (clinicianFocus ? sds_string : '\n' + finalCentile); - } - if (age_type === 'chronological_age') { - var finalChronologicalString = comment.replaceAll(', ', ',\n').replaceAll('. ', '.\n'); - return "Actual age: " + calendar_age + "\n" + corrected_gestational_age + " on " + observation_date + "\n" + finalChronologicalString + "\n" + y + " " + measurementSuffix(measurementMethod) + " " + (clinicianFocus ? sds_string : '\n' + finalCentile); - } - } - } - } -} - -// these are the thresholds on the UK90 child chart displaying delayed puberty lines with labels. -var pubertyThresholds = { - male: [ - { - x: 9, - label: 'Puberty starting before 9 years is precocious.', - }, - { - x: 14, - label: 'Puberty is delayed if no signs are present by 14y.', - }, - { - x: 17, - label: 'Puberty completing after 17y is delayed.', - }, - ], - female: [ - { - x: 8, - label: 'Puberty starting before 8 years is precocious.', - }, - { - x: 13, - label: 'Puberty is delayed if no signs are present by 13y.', - }, - { - x: 16, - label: 'Puberty completing after 16y is delayed.', - }, - ], -}; -function makePubertyThresholds(domains, sex) { - if (!domains) { - return []; - } - var newPubertyThresholds = []; - for (var _i = 0, _a = pubertyThresholds[sex]; _i < _a.length; _i++) { - var element = _a[_i]; - var dataSubArray = []; - dataSubArray.push({ x: element.x, y: domains.y[0], label: element.label }); - dataSubArray.push({ x: element.x, y: domains.y[1], label: element.label }); - newPubertyThresholds.push(dataSubArray); - } - return newPubertyThresholds; -} -var delayedPubertyThreshold = function (sex) { - // generates the data for the shaded area (VictoryArea) where puberty is delayed, and adds information for the tool tip - var data = delayedPubertyData[sex]; - return data.map(function (dataItem) { - if (sex === 'male') { - if (dataItem.x >= 9 && dataItem.x <= 14) { - return __assign(__assign({}, dataItem), { y0: 117 + 3 * (dataItem.x - 9), l: 'For all Children plotted in this shaded area see instructions.' }); - } - return dataItem; - } - else { - if (dataItem.x >= 8.6 && dataItem.x <= 13) { - return __assign(__assign({}, dataItem), { y0: 116 + 3 * (dataItem.x - 8.6), l: 'For all Children plotted in this shaded area see instructions.' }); - } - return dataItem; - } - }); -}; -var lowerPubertyBorder = function (d, sex) { - if ((sex === 'male' && d.x >= 9 && d.x <= 14) || (sex === 'female' && d.x >= 9 && d.x <= 13)) { - return d.y0; - } - else { - return null; - } -}; - -var getFilteredMidParentalHeightData = function (reference, childMeasurements, midParentalHeightData, sex) { - if (reference !== "uk-who") { - console.log("Not UK-WHO"); - return; - } - if (midParentalHeightData.mid_parental_height_centile && midParentalHeightData.mid_parental_height_centile_data.length > 0) { - var upperLimit_1 = 20; - var lowerLimit_1 = 19.75; - if (childMeasurements.length > 0) { - var latestAge = childMeasurements[childMeasurements.length - 1].plottable_data.centile_data.corrected_decimal_age_data.x; - if (latestAge < 3 / 12) { - upperLimit_1 = latestAge + 1 / 52; - lowerLimit_1 = latestAge - 1 / 52; - } - else if (latestAge >= 3 / 12 && latestAge < 3) { - upperLimit_1 = latestAge + 2 / 52; - lowerLimit_1 = latestAge - 2 / 52; - } - else if (latestAge >= 3 && latestAge < 12) { - upperLimit_1 = latestAge + 2 / 12; - lowerLimit_1 = latestAge - 2 / 12; - } - else { - upperLimit_1 = latestAge + 6 / 12; - lowerLimit_1 = latestAge - 6 / 12; - } - } - var newReferenceObject_1 = []; - midParentalHeightData.mid_parental_height_centile_data.map(function (referenceData, index) { - // get the midparental centile data - var centiles = referenceData.uk90_preterm || referenceData.uk_who_infant || referenceData.uk_who_child || referenceData.uk90_child; - var lowercentiles = midParentalHeightData.mid_parental_height_lower_centile_data[index].uk90_preterm || midParentalHeightData.mid_parental_height_lower_centile_data[index].uk_who_infant || midParentalHeightData.mid_parental_height_lower_centile_data[index].uk_who_child || midParentalHeightData.mid_parental_height_lower_centile_data[index].uk90_child; - var uppercentiles = midParentalHeightData.mid_parental_height_upper_centile_data[index].uk90_preterm || midParentalHeightData.mid_parental_height_upper_centile_data[index].uk_who_infant || midParentalHeightData.mid_parental_height_upper_centile_data[index].uk_who_child || midParentalHeightData.mid_parental_height_upper_centile_data[index].uk90_child; - var mpcData = sex === "male" ? centiles.male.height : centiles.female.height; - var lowerMPCData = sex === "male" ? lowercentiles.male.height : lowercentiles.female.height; - var upperMPCData = sex === "male" ? uppercentiles.male.height : uppercentiles.female.height; - // filter the midparental centile data to render only 0.y either side of a given measurement. - // if no measurement provided, render it from 19.5 to 20 y - lowerMPCData.forEach(function (centile) { - var newData = centile.data.filter(function (measurementItem) { - if (measurementItem["x"] >= lowerLimit_1 && measurementItem["x"] <= upperLimit_1) { - return measurementItem; - } - }); - centile.data = newData; - return centile; - }); - mpcData.forEach(function (centile) { - var newData = centile.data.filter(function (measurementItem) { - if (measurementItem["x"] >= lowerLimit_1 && measurementItem["x"] <= upperLimit_1) { - return measurementItem; - } - }); - centile.data = newData; - return centile; - }); - upperMPCData.forEach(function (centile) { - var newData = centile.data.filter(function (measurementItem) { - if (measurementItem["x"] >= lowerLimit_1 && measurementItem["x"] <= upperLimit_1) { - return measurementItem; - } - }); - centile.data = newData; - return centile; - }); - newReferenceObject_1.push({ - lowerParentalCentile: lowerMPCData, - midParentalCentile: mpcData, - upperParentalCentile: upperMPCData - }); - }); - return newReferenceObject_1; - } - else { - return null; - } -}; - -var XPoint = function (props) { - var _a; - var transform = "rotate(45, " + props.x + ", " + props.y + ")"; - var crossColour = (_a = props === null || props === void 0 ? void 0 : props.colour) !== null && _a !== void 0 ? _a : 'black'; - var crossSize = props.size; - if (props.isBoneAge) { - crossColour = "grey"; - crossSize += 2; - } - return React__default.createElement(Point, { x: props.x, y: props.y, size: crossSize, symbol: "plus", transform: transform, style: { - fill: crossColour - } }); -}; - -/* -This is a wrapper for the gridline component, enabling filtering out of month gridlines which look messy -if rendered with week gridlines -*/ -function CustomGridComponent(_a) { - var datum = _a.datum, chartScaleType = _a.chartScaleType, otherProps = __rest(_a, ["datum", "chartScaleType"]); - if ((!datum && datum !== 0) || datum === -0.33) { - return null; - } - else { - if (((Number.isInteger(Number((datum * 12).toFixed(2))) && datum < 1) || - (datum > 1 && Number.isInteger(Number((datum * 52.18).toFixed(2))))) && - (chartScaleType === 'prem' || chartScaleType === 'infant')) { - return null; - } - else { - return React__default.createElement(LineSegment, __assign({}, otherProps)); - } - } -} - -function RenderTickLabel(props) { - var x = props.x; - var y = props.y; - var text = props.text; - var style = props.specificStyle; - var chartScaleType = props.chartScaleType; - var lowerX = props.domains.x[0]; - var tickColour = style.fill === '000000' ? 'black' : style.fill; - var Dash = function () { - return (React__default.createElement("svg", null, - React__default.createElement("line", { x1: x, x2: x, y1: y - 6, y2: y - 3, stroke: tickColour }))); - }; - var LolliPop = function (_a) { - var textLabel = _a.textLabel; - if (text !== lowerX) { - return (React__default.createElement("svg", null, - React__default.createElement("g", null, - React__default.createElement("text", { x: x, y: y - 18, textAnchor: "middle", fill: tickColour, fontSize: style.fontSize, fontFamily: style.fontFamily }, textLabel), - React__default.createElement("circle", { cx: x, cy: y - 21, r: 7, stroke: tickColour, fill: "transparent" }), - React__default.createElement("line", { x1: x, x2: x, y1: y - 3, y2: y - 14, stroke: tickColour })))); - } - else { - return null; - } - }; - var PlainAxisLabel = function (_a) { - var textLabel = _a.textLabel; - return (React__default.createElement("svg", null, - React__default.createElement("g", null, - React__default.createElement("line", { x1: x, x2: x, y1: y - 6, y2: y - 3, stroke: tickColour }), - React__default.createElement("text", { x: x, y: y + 8, textAnchor: "middle", fill: tickColour, fontSize: style.fontSize, fontFamily: style.fontFamily }, textLabel)))); - }; - var gestWeeks = 40 + Math.round(text * 52.18); - var weeks = Math.round(text * 52.18); - var months = Math.round(text * 12); - var isAllGestWeeks = function (arrayNumber) { return arrayNumber < 0.0384 && arrayNumber !== -0.33; }; - var isEvenGestWeeks = function (arrayNumber) { - var rounded = Number((text * 52.18).toFixed(2)); - return arrayNumber < 0 && Number.isInteger(rounded) && rounded % 2 === 0; - }; - var isEvenWeeks = function (arrayNumber) { return Number.isInteger(Number((arrayNumber * 52.18).toFixed(2))); }; - var isMonths = function (arrayNumber) { return Number.isInteger(Number((arrayNumber * 12).toFixed(2))); }; - var isYears = function (arrayNumber) { return Number.isInteger(arrayNumber); }; - switch (chartScaleType) { - case 'prem': - if (isAllGestWeeks(text)) { - return React__default.createElement(PlainAxisLabel, { textLabel: gestWeeks }); - } - else if (isEvenWeeks(text)) { - return React__default.createElement(PlainAxisLabel, { textLabel: weeks }); - } - else if (isMonths(text)) { - return React__default.createElement(LolliPop, { textLabel: months }); - } - else { - return null; - } - case 'infant': - if (isMonths(text) && text !== 0 && text !== 1) { - return React__default.createElement(LolliPop, { textLabel: months }); - } - else if (isEvenGestWeeks(text)) { - return React__default.createElement(PlainAxisLabel, { textLabel: gestWeeks }); - } - else if (text === 1) { - return (React__default.createElement(React__default.Fragment, null, - React__default.createElement(LolliPop, { textLabel: months }), - React__default.createElement(PlainAxisLabel, { textLabel: 52 }))); - } - else if (isEvenWeeks(text)) { - return React__default.createElement(PlainAxisLabel, { textLabel: weeks }); - } - else { - return null; - } - case 'smallChild': - if (text <= 4 && isMonths(text) && isYears(text)) { - return (React__default.createElement(React__default.Fragment, null, - React__default.createElement(LolliPop, { textLabel: months }), - React__default.createElement(PlainAxisLabel, { textLabel: text }))); - } - else if (text <= 4 && isMonths(text)) { - return React__default.createElement(LolliPop, { textLabel: months }); - } - else if (isYears(text)) { - return React__default.createElement(PlainAxisLabel, { textLabel: text }); - } - else if (Number.isInteger(text * 2)) { - return React__default.createElement(Dash, null); - } - else { - return null; - } - case 'biggerChild': - if (isYears(text)) { - return React__default.createElement(PlainAxisLabel, { textLabel: text }); - } - else if (Number.isInteger(text * 2)) { - return React__default.createElement(Dash, null); - } - else { - return null; - } - default: - console.error('No valid chartScaleType picked up by RenderTickLabel '); - return null; - } -} - -var TitleContainer = styled__default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: block;\n text-align: center;\n margin: 0px;\n"], ["\n display: block;\n text-align: center;\n margin: 0px;\n"]))); -var templateObject_1; - -var AgeRadioButtonGroup = function (props) { - return (React__default.createElement("div", { onChange: props.handleClick, className: props.className }, - React__default.createElement("input", { type: "radio", id: "adjusted", value: "adjusted", name: "adjustments", defaultChecked: props.correctedAge && props.chronologicalAge === false }), - React__default.createElement("label", { htmlFor: "adjusted" }, "Adjusted Age"), - React__default.createElement("input", { type: "radio", id: "unadjusted", value: "unadjusted", name: "adjustments", defaultChecked: props.chronologicalAge && props.correctedAge === false }), - React__default.createElement("label", { htmlFor: "unadjusted" }, "Unadjusted Age"), - React__default.createElement("input", { type: "radio", id: "both", value: "both", name: "adjustments", defaultChecked: props.correctedAge === props.chronologicalAge }), - React__default.createElement("label", { htmlFor: "both" }, "Both Ages"))); -}; - -var StyledRadioButtonGroup = styled__default(AgeRadioButtonGroup)(templateObject_1$1 || (templateObject_1$1 = __makeTemplateObject(["\n align-self: center;\n label {\n display: inline-block;\n padding: 5px 11px;\n font-family: ", ";\n font-size: ", "px;\n font-weight: ", ";\n font-style: ", ";\n color: ", ";\n cursor: pointer;\n background-color: ", ";\n min-height: 30px;\n }\n input[type='radio']:checked + label {\n color: ", ";\n background-color: ", ";\n }\n input[type='radio'] {\n display: none;\n }\n"], ["\n align-self: center;\n label {\n display: inline-block;\n padding: 5px 11px;\n font-family: ", ";\n font-size: ", "px;\n font-weight: ", ";\n font-style: ", ";\n color: ", ";\n cursor: pointer;\n background-color: ", ";\n min-height: 30px;\n }\n input[type='radio']:checked + label {\n color: ", ";\n background-color: ", ";\n }\n input[type='radio'] {\n display: none;\n }\n"])), function (_a) { - var fontFamily = _a.fontFamily; - return fontFamily; -}, function (_a) { - var fontSize = _a.fontSize; - return fontSize; -}, function (_a) { - var fontWeight = _a.fontWeight; - return fontWeight; -}, function (_a) { - var fontStyle = _a.fontStyle; - return fontStyle; -}, function (_a) { - var color = _a.color; - return color; -}, function (props) { return props.inactiveColour; }, function (_a) { - var color = _a.color; - return color; -}, function (props) { return props.activeColour; }); -var templateObject_1$1; - -var StyledResetZoomButton = styled__default.button(templateObject_1$2 || (templateObject_1$2 = __makeTemplateObject(["\n align-self: flex-end;\n background-color: ", ";\n border: 2px solid ", ";\n font-family: Arial;\n font-size: 14px;\n min-height: 30px;\n min-width: max-content;\n font-family: ", ";\n font-size: ", "px;\n font-weight: ", ";\n font-style: ", ";\n color: ", ";\n &:hover {\n background-color: ", ";\n color: ", ";\n border: 2px solid ", ";\n outline: ", " solid 2px;\n }\n &:focus {\n outline: ", " solid 2px;\n }\n"], ["\n align-self: flex-end;\n background-color: ", ";\n border: 2px solid ", ";\n font-family: Arial;\n font-size: 14px;\n min-height: 30px;\n min-width: max-content;\n font-family: ", ";\n font-size: ", "px;\n font-weight: ", ";\n font-style: ", ";\n color: ", ";\n &:hover {\n background-color: ", ";\n color: ", ";\n border: 2px solid ", ";\n outline: ", " solid 2px;\n }\n &:focus {\n outline: ", " solid 2px;\n }\n"])), function (props) { return (props.enabled ? props.activeColour : props.inactiveColour); }, function (props) { return (props.enabled ? props.activeColour : props.inactiveColour); }, function (_a) { - var fontFamily = _a.fontFamily; - return fontFamily; -}, function (_a) { - var fontSize = _a.fontSize; - return fontSize; -}, function (_a) { - var fontWeight = _a.fontWeight; - return fontWeight; -}, function (_a) { - var fontStyle = _a.fontStyle; - return fontStyle; -}, function (_a) { - var color = _a.color; - return color; -}, function (props) { return (props.enabled ? props.activeColour : props.inactiveColour); }, function (_a) { - var color = _a.color; - return color; -}, function (props) { return (props.enabled ? props.activeColour : props.inactiveColour); }, function (props) { return (props.enabled ? props.activeColour : 'transparent'); }, function (props) { return (props.enabled ? props.activeColour : 'transparent'); }); -var templateObject_1$2; - -var ButtonContainer = styled__default.div(templateObject_1$3 || (templateObject_1$3 = __makeTemplateObject(["\ndisplay: flex;\nflex-direction: row;\njustify-content: space-between;\nalign-items: center;\n"], ["\ndisplay: flex;\nflex-direction: row;\njustify-content: space-between;\nalign-items: center;\n"]))); -var templateObject_1$3; - -var TwoButtonContainer = styled__default.div(templateObject_1$4 || (templateObject_1$4 = __makeTemplateObject(["\n display: flex;\n justify-content: center;\n align-items: center;\n"], ["\n display: flex;\n justify-content: center;\n align-items: center;\n"]))); -var templateObject_1$4; - -var ChartTitle = styled__default.h2(templateObject_1$5 || (templateObject_1$5 = __makeTemplateObject(["\n font-family: ", ";\n font-size: ", "px;\n font-weight: ", ";\n font-style: ", ";\n line-height: 1.3em;\n padding: 0px;\n margin: 5px;\n color: ", ";\n visibility: ", ";\n"], ["\n font-family: ", ";\n font-size: ", "px;\n font-weight: ", ";\n font-style: ", ";\n line-height: 1.3em;\n padding: 0px;\n margin: 5px;\n color: ", ";\n visibility: ", ";\n"])), function (_a) { - var fontFamily = _a.fontFamily; - return fontFamily; -}, function (_a) { - var fontSize = _a.fontSize; - return fontSize; -}, function (_a) { - var fontWeight = _a.fontWeight; - return fontWeight; -}, function (_a) { - var fontStyle = _a.fontStyle; - return fontStyle; -}, function (_a) { - var color = _a.color; - return color; -}, function (_a) { - var show = _a.show; - return (show === false ? 'hidden' : 'visible'); -}); -var templateObject_1$5; - -var LogoContainer = styled__default.div(templateObject_1$6 || (templateObject_1$6 = __makeTemplateObject(["\n display: flex;\n justify-content: space-between;\n flex-direction: row;\n align-items: 'baseline';\n padding-left: 5px;\n padding-right: 5px;\n"], ["\n display: flex;\n justify-content: space-between;\n flex-direction: row;\n align-items: 'baseline';\n padding-left: 5px;\n padding-right: 5px;\n"]))); -var templateObject_1$6; - -var VersionLabel = styled__default.p(templateObject_1$7 || (templateObject_1$7 = __makeTemplateObject(["\n font-family: ", ";\n font-size: 8px;\n font-weight: 200;\n font-style: italic;\n padding: 0px;\n color: #A9A9A();\n"], ["\n font-family: ", ";\n font-size: 8px;\n font-weight: 200;\n font-style: italic;\n padding: 0px;\n color: #A9A9A();\n"])), function (_a) { - var fontFamily = _a.fontFamily; - return fontFamily; -}); -var templateObject_1$7; - -var MainContainer = styled__default.div(templateObject_1$8 || (templateObject_1$8 = __makeTemplateObject(["\n display: block;\n margin: auto;\n"], ["\n display: block;\n margin: auto;\n"]))); -var templateObject_1$8; - -var img = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATsAAAE7CAYAAACi3CbHAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAUGVYSWZNTQAqAAAACAACARIAAwAAAAEAAQAAh2kABAAAAAEAAAAmAAAAAAADoAEAAwAAAAEAAQAAoAIABAAAAAEAAAE7oAMABAAAAAEAAAE7AAAAAC++Al0AAAFZaVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJYTVAgQ29yZSA2LjAuMCI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIj4KICAgICAgICAgPHRpZmY6T3JpZW50YXRpb24+MTwvdGlmZjpPcmllbnRhdGlvbj4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+Chle4QcAAEAASURBVHgB7L0JgG1HXedf3bdv78vbs0FWQghhCYLsyqaioywOow6o4zKug4jOMLhv6Iz6ZxxxHMWZ/4wryCagQAKyS8BAIISEEELI8rK+fe29+/bt+Xx+der27fv6JW/pLM93673T59w6dWr51a++9atf/aqqZxmXuq5LgS4FuhT4F06B3n/h5esWr0uBLgW6FAgKdMGuywhdCnQpcFpQoAt2p0U1dwvZpUCXAl2w6/JAlwJdCpwWFOiC3WlRzd1CdinQpUAX7Lo80KVAlwKnBQW6YHdaVHO3kF0KdCnQBbsuD3Qp0KXAaUGBLtidFtXcLWSXAl0KdMGuywNdCnQpcFpQoAt2p0U1dwvZpUCXAl2w6/JAlwJdCpwWFOiC3WlRzd1CdinQpUAX7Lo80KVAlwKnBQW6YHdaVHO3kF0KdCnQBbsuD3Qp0KXAaUGBLtidFtXcLWSXAl0KdMGuywNdCnQpcFpQoAt2p0U1dwvZpUCXAl2w6/JAlwJdCpwWFOiC3WlRzd1CdinQpUAX7Lo80KVAlwKnBQW6YHdaVHO3kF0KdCnQBbsuD3Qp0KXAaUGBLtidFtXcLWSXAl0KdMGuywNdCnQpcFpQoAt2p0U1dwvZpUCXAl2w6/JAlwJdCpwWFOh76EvZXJXkcvzqTcW35u/suSpc/OgpoTpfFX+x+3TC71Ludno8Esrfni/z4+/7u7fnv/3b4v9IKFPJyyP/bvPp4eq8H3vOH6i+jva+M4VHVl0+5GC3DONbEcVJjiUu7/r38i/eL1eEagc+wc6XPcUzhzHO7Py2HrFUHqfgrZS7o4G3Ey1KZbgmDN1Oi/JNuT+0xc9ZzPlanXKpn6Pd20MbpjTTdv/y/PCUraT+0N8LzY4l5d6gnF9Ipc579jlaPFW7i69Kmsd774y7fK9/4dOHr/4eErBbSo2gQmcxLb7gpiv3+BGtBv8jeN6whYA2dOXAHIvf9WSY9PHUdcudVKqKUnillKzHcIUe0sTnIxCxhH6I7uaj1M+xJHmUsq76tD1M+/OqQN0fHRQotbByz0+rKbj6V0QR/Ff8j/deZeKIEVgn83Zk9iH62bOMezDSMtIQwILGFcmlHY3Ud/rET394Kd7RVpfBr0Xu8Q6vdmcwXRVbPAt3vbxoNfPWQ7w+9f4UejxQzo9WzmC0dgo9UETr/b40kBKvv0ttd95LmJO5d5a1M/2TifuR8G1n+e4/T6WNrIRq/77QpoyeVkK1no6MoPXqmB46+fKo/GheSn6OKeaTDvSgSHbKca2Ig3hVoQohIYg+QRfrQv+2dz6KfcWLx5bzG6/yfQBd+/flReuLU/AhCFPlu5MI7e/WLJoEaGfwNQM9SJ6m7dXpil/nvTMcvzvLa5CjlvnhKuca+X6EeEmqoiqSlD38ynefVCGVOujI8Fp07whyQj+VFCNT3q2vo6R/QpEf30frL9l1Eq39dzvT6l+ukmff1xYZ9PovA14BPYe5Na5+KNcnwZpe5cPqLh2Noz2djiCP7J8WyBK3u7UK6ftSyIp5jjb8bY/qwX6ustRe5cebZEsdu9aHpcitd4U25S4tKnq0wpxqD6UsR8v3/ZWv/dv25/a4+L6dV6Rpe4UFjW19pmMcx3M3rvvLH+/XckfU61qBTt6vJYCdfFSUc6mt56jK3Fn2YOZCXAvZflW6PTO14q1uDgyE8AJeAJ0j75jAMJEqoULjh4hwJPwgunZGLc/lXgpa7lU2Srk7Cf4g5vKIqK2oko8jXq63R6FHua93/KdifPBEaVu2i1W6s0In7p11FL/lJ8N4GUnpdI/nbkQdfInPA7pWngnZmbcH/PjYA6ybZHf48OE0PjYOrSqi9qKbI+OSqvIJMqhjy703vrxXtF7ib+5LelL/ElDnRxbaK2hnWGORKtwLcXwfleo9fnBfV/w24ofUlaKVRHuCeqXsxdd7Vd7lqrzlw0KG9qAP5XOkb35L4+m8319msj73/kJkehwtxAk0tKNF9bD5S7u13DGWTT7w6uSDVbqzwiztaZU6e5CtGUrSaxURv6XmUqrVRIn1d+sCds5x9PT0pKXFBhmtKsWJCAje5F8pn/TXoi7XQ9YlLPFbbPNew2xkwMarhx+Vq1RcL5AoUpoElVfiLdXki56YoT1GxiCaR5orZSr5KkVf6TLKm+r+cEpyHVmJn6ukibUCtDewI98vR+W2118Jn++ZHu3vjaPz95Hxnjo+pbydOT7GMna2mfZo7hfwTNeOs0a7yhMYRiW9T/TOp2u4o5WvBO1NS0sCADlZZ9DrIeLlXqSw9XASJWczDzuDMYu9nCQLj2ZarADQYgt+Dk99NQdoNnoG4/cQv/sWCLFIjL0gfUy76tkMKXCBx5zeMnq8WlTT8lIj1Wv9vDl1nWWyYA1wvc9OFre4uJzqdToTe70wOelkmPb6CyLnDx/iv/Sc0QnR8620kKadGp2hherFH1VHig6R3xG+yq8jAkcDhMyl43046htiyKN9vX1paVka9BGqlLm6E7ydZg9x0dcxufurW3lhMfX1UX5pXLm2wVSmu3RtvaN9CRorwcsrayRcrp8coEl7NQc14o97VR9SOXLG+yXi972WFcW//S4GxMRhlSYQQ1AglPDGahlqfdRgVQbT9F3OJDyglOSvtjKGx0n+WRfJruTBQi5WP/oolFeC2bN+jReWh4KBroBiXjWRYQ4SLPBl/2CaJYhEHeAS8HqMNKjMXQcACHRzeDaIZQAPSVPjOTeBHKNBT0VXGLDk3U5uSYDA9fdLwE7XThzfrRWm85sH53ewqAXoLIQvaJHLXMHANTxWtVDeW1Da5CKAHo2zymIuTXsZs48SfNM4sVUyTnE0XLlXP0+9W3tZzf3a9bmoEIDr67P88Vj9adDkoGFPJR0g+S82lmgjSGySnc/ASvuVaFZWg9jYLkQZzgFU+93A/jY3nf5gWYQ3ybnZpTQ0TJ4I1x63383PL0ZdDfQrQTbT9MxkGhkehl2W09zcXBoatMVX+eapOOt5PQSydQe7+SqHAl2dK3p7AE5ihRPBrR16Z4m2gARTs+y4hgTl9YLE49m2bdEFPIllBdEpROXUQcMm3xvt4jLwR+00qcmR3kEIbehT080vLkTPnXs6aCFzQgQZx6vFlHJTOIgVTkrovBe/8HjI/sR8OeBDWwvsKo1IwXwt5/vo0HlpI0Rwi5FB6HGJZKmJFMPHSrNKhgvQZsCKx2V1hU90mhQ5alyatOjiu1PRlXoseV/Ny9LMy7YQjmf7iSZCRU8vUm+fIgDtgcbRtCNo1hkhICEQLmLmXr6bnUvpwIGU7tx+X7rlllvTvffuSPfduysdnppJB/fvT/t4OTczQ7ukLcN4vaDk/Oxs3CfGxtKmLVvSGVu3ps1cWzZtSsPj9fTsZ12Wtpy5MW3ZOJBBmPowr4Knco/PZt0y6BkSfwsc/H0k2JnfYg58MtLeuoMddI+mZpadQWXwhQdktnChX7LlIqpS4gWuGcBumbrghrSW0hRgNskDHUQYGDvisbFvHkyJ6Y/ELaS+fgnHZSOp8f0SMuV8Yz4N9w2TpuQ8NZ0NPbNDzr+/5hB3B3Mbjw6ilEywfyQ5qU57O4L6MrYNMhicMLY9nSzRLpVE50c4JYQiqVlEh+99RG7DiH9EJLBmxq/q2sh0jzCa5Ewdz9+ApLYPjuTlQsegHeX2dzxT9sbyXNBF+ji2iqG9jZEwe/am9IXPfzndfMsd6YvXXp9uv+2uNDu7iCTdRweL+kcpcHF1+tI4JOcKXR1COwxVr5Yla2qEDBgmgHb5UJpfPJw2jE+kJz7xsvSMZzwjXf6kJ6SLLnp0mtiQizU74yiFy86N5JbBhz4rGGf1GW88V2nHj3X4s65g156fzHtmukxI8Mjkw+z0UuofqSVuaYHCTuF9y6GUPnz1vWnnbCNtP7SYDiAXzyDOLfZBSES8fmrqrJGRdN7oYHr2o89Kz74opUdDLMFvgISa1Ojs/ME0OjqiD9eRDILnKeGkmwxqEaz4az9/Z3rtz76eoUhvaqC766kNtAFepm9M1lTjjp6m3cHD1OKps2c9/cnkfy4ahLq2Osi2cdNEOvPMM9OmTRvjt89nnXVW2rp1Q5qYyNKqjbVI+GZffrchFP9So96byxAIMcGhTQE8zZ4kWozeeDp1neVod6XkK36CG+rpLCVVr4Ne+CsdTwNgA9Bdeu7cMZc++vGr0ic+/pl0y9fuSAjHgIt6bcBQKZzk1JEVyanQtNz1F9isS0FocHCwBUYljDnLYGedTcGrsyGNC4xT04dTY2EhnXveo9Jll12anvq0y9O3vuibqHs+Ir9FsleLNUgnaH3rTLeAaK7j7C/QylMn4tYX7GypXrrS3qrZOfti8C0kOIA9TXNdtyulv7ziunTn1Hzq23Z22jnVSAsD42m+tz8t9lMZKDEXGM4sL86lMSp1a205TcwcStsWptMrnn15+rbH0TtQ6UIc+Jka87Opb4Bxf0kb/1PNFfI5pJePb/jSvvS93/tDacvmR8FI/Qn1CySGi3XV7FozFJvhwUsZGdmWXrrJ+4fynnowCG8chhmZTIDRZdbG0kI0DgUDZ9fmqSPvNiDfj0+MpjPOOCOde+656Zxzzk7nn3dOuuzSS9LFF4/EvFSpSxuB0mFdKSVKiKJcD1yZtQudoK39lHb3D3bq6uoSoTBKW1n1cqh4eFIJ7ub0zne/J3326mthhz50YxNpdkagAKwAuSYChZq8GGIhRqsuEFSsEzuTIrkZvXXpJZ1nGcYaRifY6YqEF4BHxhpLlW5uYAAeVv0wB6g6sUKHvTRHPIk6vjh937/91+nbX/yUAGXwMPUjpyjRtzdf4y7pRGL8WSBwP6KhAGy+jtU9OGBXKqLcpSkFFOQOct3L9XefuSd99Ibb0sLGc9LM0Ma0e3o5DQyNpR5kXCcaemDaJhXQ4NuGPQugV0NEH+pZSBt6F1J9/33p8jM2pH//bU9Ml42mNAroDUsl6d9OLX6eOq6Jjm4GZqjDIgP0iCl95Ss700//5OsQ+Tek/QdmqeRx3uUKzsNYJ3xyo4ftqqKqK4XNALuH8i74rvTCOS+lIZTWWacTs9E0KJxMq7Px2BBGhoaQPNAJUcKJsaH02EsuSs9+zjempz/jSem88zakOji+MLeEdJEV4MvwhA2zVjU6PqPuRcPcCI371HOlDkvOV5dFnAnph7vSnM9eUwgMe/ZMp7e89SPp05+5Lt126+1pBLvX4aHRmBhwkqsPfac0byDOCSB1AEPQQDsKXedikqAPa4Ze2p515BXgR0ICiwCoZHc0sPM7MC2+lxcDqLhrjlbrhTe4aozWFqjj5tI8EuAMOr+N6Tu/69vTy1/+Uuq4Tjpwfv9KAy5prfBVpsvk5GQaQ294PO6hATvqa4YLXWi6CWK8/VPb02dv35XmR7ekmfpI2ofybqE+xIREXxpDP1Nn1qKBaGNl9kp8IH+xxpR104qaQS+3lMaXZtPg5P70uKHB9LKnPzE9/+KUJmAAix9QUEk9BRgy+QojkRkbhs47LwWG/DZPp7fIXcIZ1nDeW44K9FlPP/ZHTMCUaPEsH8S3K4wb31Wf+nH+LWipYLa5DuDbS898e3rNa36VofowTDNC43bqx3hyXErMWcID7UPCI03LrlL0ob6Tq56eeksqiJ6eBmPDCmCKRkNHxTBEJtYcwcYlYNmYNGewVIvzczB8bxocqqfZuUkk2rl08UXnpsuf8vj0qld+b9q6bSyNDpuY0h5mEEj8YdLQQHLpc0avOCtF5z3Ta+UeLzr+tIfreLVuP0uejLDkqS3ywi96FSaJ/OthN5AdRaWD4BmPO++eTG9/+zvTu951JZLRFmiZAUsdaIMZLr9RAhJ8elSAE5/vlpDAQsKmHuoAUh+2Tg10du3DWuvQyzr0XsDPXPhbVwBJsEssClgxHYE7Sdz6tf7lzyXG0dZr6mnwPWnRpp2VPeOMrelZz7w8ve51P5XURiEU5rj5WyUTdaznirTn5JSmLFhlDBDnA7j1Bzs7a+nJ1YBJtY2aR4y+D697uH7+/96Y9vdvSLO1IYZZ9NAQYwmazVV5rS/RC8APNSYxeqgRh2F4RZiGgEePMDyE7IdeoI4UOE4j2UZFvuApF6R/88SUziWNQWY96kP0+kxYNOvCH8Phuek0HFp+q57MubbWx4q/G7X5GGKr85MF67wzby3uIo/ih0CU2VUjaC8CgTOBzMaLosSfChjIL8y3QxAavNeCYQED4w9A5ueSgESsNZUnOsDSZLWx0edzV9+dfvZnf51ecAgGlUlgkHhPDNCnJ4athGQIKQO13MMEdq30j+WhHYzXDA+sW1hn7aQPZVQyOPOsjekVr/jO9F0veWHaWCm9/XyOmZwRzBcM2osUIV3nkSIG+mWu3jSH6cPgAMOATEA/yS7arOG9rB2v9XU5STs10yiOdKwnXcmTVUjVNtHP9irhQCPBIgMLHEV4LRIskhMOf/onf5OuuOJjaWGejgOBIWb7qvyX0rSnGGl1/IkRQPEr+Sm/j/tueYKg3EuhSiS5m850rnIVjcz30oaOnnb9gz/wvelV3/+ydMaZVUySiRC2pwXa9ICTKbhlhjY9YIvOUVBfBZDhscaf2m/i1vA/Ma9SNso6D2JrFetQa/dibzpEe/8fV+5MX58fSofrm5iJFezQBRBA8iyD+s60xbALH6BOHvdvKy9NPGpIBXOULMTd4bHUi2i+d3KWCY/hNLGxL11ErzBKL9VDfALOgqAGgPShDMgzfBKZOK1UH80zPxu9bkCgnFTs9sK79d4w9jB+UmRA82beo5sMJoHweMSoygYakfNeRVv4K5VlX7IWCQhd+gTERdaM0fwrDTHkv2cqXfmhT4KlVLB+DlkDIP3eDsHK5nt7Shp33uOPjIZ7qO9Vssd8a8+fz1AiuvH8nLsEJAVafy4ndT/fSIcOTyPxXpM++KGPpn37JtO551+cRkYdeqGUJ5ZFpBntz2bp4Aajx2+iAjiYxkad0grKr85hZMNuTFfSzr/W92/hiYrp1kqL5KcOz6SBYesbuIZ3QuqlJatjC/LAIv/3zz+YfvmXfjd9/dYdlHuMstbS6Nhm9GO5HZmCrtzzr7X/5ja2XuU2xaNd5U3heLleccFL5ZW8XE9f+tKN6R8//E80m5F04YXnpQHm3Cz3zNx8GnIaF2dumwyr1T32ou7iP8IN/mtUb3zAn/UFO2OtyllDiaqQp/Ew9ZDe+8VD6eM33JFmBgU65lfJrb11Ni1GWUpPrN8yDdiSKdVZwGB+7oLmMgCy6CoJCwyiLPHcixjrbOzczGya2jObLr9oNE1AM79Vs7OAWNhHWIdIiu29iAoZEITTKr/GHZKAoIOugjcZGHkf0lIBGPJbgViuoKrSiD/s4sQpxXXLYr5gvBDtrQGG55pQaDArc0mmDJwCJpXlj8gRYclPgB0+994zSaP+BGCnVCdtIiBvTGwF7AR3Y7QEp7SL8kkda0dwiFrKvMHvDdgvOGxq2KjRxt/ytdvS37/3/enA/vn07Gc8AWBA6mEIHDO51guXcfUjCs2jr6q7LEXmaHfxs9DVHx3v28M+4LPxlPyvPOZYq8YR8fus66gv+Kt/uA9JbQEplhUjlDH4neDOx3zt5j3p53/+t9N73/MhRjgTaXpqAdOkRcB+DJu5A3nyIkd8yv21rkeHkVbg80Ostf/4Jz6Wbr/jrvTocx+bNm4cAfSyhO6w1XZUY9TYi2CjEbXtpVWtR6m+DkqvA31IaN6hW7iexMRQuhMGvOLTn0/1DVtojhl6HbYJdIKYQFcaryzgsLYMXQt7RHRITwA5tFCCAshYizsP4/dhhb1Aoe/cuz9d/dX5SJMBNECrlCa4yL4CXshPATKmUb2Iu+/95+DR4WlAkUDnOMpxdTTCzMiWQLJ714dQoZOch5qNMHC2MpAyWBGidLK8REh0U+pEXOnhUEZo8rJ82VEmZ3FOZ1eAvEXrTmL0ph07dkG/fkBrJM0wqbVAT3r4QDO97a1XpJe+7OfSzV/dE5Uyx2xYnTpoUNFT08zSQ/9sod8Rp3ywbq7im+CKtkhblWxza29yMrPf4Cp+VD8pZ/QzCTM1zWQdEqozrLB6evOf/n364R95LUbAe5nAOTPNzGDsq64bvfUiw7vxcYbop7CTEvftoP4YrfSjy3/UORelz/7z9elHf+TV6a//5oPRWKRFHzNVChtKetql5v6MsT1r51ukXoMO7ZRf4/VxelUVNjDSj/6EoSafk/X07n+6LR2sj6eD6JeWGLrSeeWLrMXEAN+FRKLynWdNJpTiHLb63GII4nI2aH5+Ps3Pob9Bvq31D6VZpMAFpKcGw9pP3vT1AFeKDssAXixNQn8dhOoJqvgoiXhf5ZdHQnp6hZKSYX2rlOT0vGAGSIZUBbl8DxIrSIVu0eARhiEz9x7MLmbRHWkcPUf8k2DYFOtaQT8C5u8F04iG8LrQS+WnzPTx3P2Tu5JcF4UaW7ecgfTG7CDbWff1MmHTHKJHH0dwHk17ds6mn/ixn09ve8en0hACwizLedQZj45ssEnwOzeOqP22us/plBQepLsVvqaDkexUg8/hNHSSjWX4G0X+ELMwCDHpvvsa6XX/6X+kd77zQ/DeeJqZwk4V260G0n4PIF5HlePM6SJmPqe2602PPv/8NDO7gEDTnyYnMUnrG0euGU9/+qd/lV71ql9M22+fYjY3t7k6ZmaLSvkIGNKMLgFeEHXWdusLdqSxyFDRXsoZGUmPvXC65vbdaXH8DCQuzCls9Lg8fM3AJsBlqaYaFvJbFndY2+madHGO0a1gY5l3uEhFL4H2h/jglv3T6bp7kS55axwh2gayCFsrzncBdhUFlOw6l6qoX8tymLKY+Rawcv4DrfDxc7NZsgoEp+XBDcwuZ6DfyTt4EyNpFejkIZh+hfPLdxHButcGiZ9KLvSeZLjcV+XdGqPzwORAndwQaDY4OMrMLURrDgBqo7xTv9Wf3vj7/zP95q//HwxrMXU6zHeSm3obHHAKVyIbV/vFz3C+W69KyPmtIm67tcdfwpjBqnPlsaeHpVZM4Ol74433ph/4wZ9Mn/nnLzFMnaeh98H742l8w1bKM4Z0uwA4COLEwETGqe727t2bBkeG0+FD0zQJVr73j1DfvWloYEu644496Wdf+yvp85+7I+pUabeXSTstAGw/1D7FlxLej6RFO+VPmk6RDIY23ocZXx9imdNN98GgAxvT/iUmJIY2kCFEHZwj114kqCLZZSY7enaUfny7xNR4P1JcPzMyS9jkzLszitMwDBkPM8adHBpPV920PYyWhbeW1FQN6GWvcpnPABkRhwamdLmEBNdA+sRcEU+U3lysLkQ6JHUvJTwlRDGPQjiDhAl0wpqJezPthcaa2Ozm+jSg+4GvpXTl7c30NQwMe4apFMESdPfzuMhESJNEGURpoR+/T0sXhKDk1b1I9t6h78ioklwP0vMcde/QxWEeqgrWRE+Mb+M+TPWMpk9+8rPpt97w59hiZdWHHafS3YorXFDu7e9WQh3vk6MB/63pjvCW57KU76voUHuG09QMnIia5n3vvzr95E/9R0BuFn1dnQX2Gyn/RDrEhNz+fYdDL+mQrhj8FlOQNdM+JTwRXPhnNW0984w0x7TzJGA+PLwJO0L18jV02IfSj/34a9P/+t8fcP4zRl4HmLDKK6e0GWzCF4o6R7qMPEf6n7BPnaHlgpMIAMQ4M+Gf/uSdzMYi7bBU6OBsMw0DFH1IY7KWFSwTFglOM5O8ljazeoBAW04cNo4Q/xRW3Or8BzHGaSC2LmCX10SZOwAjNJcH0pe2fz0dTuenM/hWhTUjSyLkjz1fG5is4j1+FAWn7F/y1xY856R8FC9oSPjKsDLqHF81MI69BZH2PR+9L113B2jHUKQ+ty/dffZouvAl35AGBEtAXqDTxRCbu9GqyXN65PR2Ur44a6LNAXgzM1P09nRu8Io2VjVMfTRBcNcMKVivux60Lx2gp/3gFR/nfW/6hV/8YfwzjaOzIlz1i/sRNdyW4IP1aBmzJCen2WV6t7N12DrITOzv/u5fYiD8d+jmttGo0T/ThpZoKNNIcUMYX6uzdqLG4esSlg8zmNXU1WUX/nywsv4gxzswgDqK5Yb7p6aZVEKyQ5BRN1ejE+tjRVUPiwr6x/vT//k/f4v+dkf6hV/6cXSVG1hPP5vGMC2z9QAFa7qjeK8Z9hg9UfOjJ1Oiot9N9+6fTD2jZ6VD8GLfEMhLb6wBhrWSwWx17Qho1n2eqZUFKj1afMNXANugJi0EU8qLiQcZnmgcJaq/m9h4RtqJePWYjaQpX0USSpE8E1+7068FqkQqsdyByCFug0jVGTqtUOOuWQzKFCKl5RgXgecBr3nitC/Zx/X+LzN7es1tae8i+oTxc9Jh9AkTrGm75eBk2kv8E36nDSHP1F3OG9EqgguZwn2OnNtp5yBErqRc8ugYeJRYVf330nO56UORsGPoQsPP+/xJOyjYW0fyx7iZFTd/9+4rQkr49z/6HZpARizO4mqKJPEXwxCZ+lw3Z7z371zF0Be2f84/OoEyg14xTy6Yrd95w9vTFe//JLOt25BSGDs4I8tERQM9Xszuy8LQCayHDrQjemmMuKINPHDq95+3h/Ut9ezMqq4O6CkhuxY2yky9uvtKn5YclFuD9He/+0Np+513pzf+wRswu2HkyHfRfqn/tZxkW1dngsVJ+BkqahElqgaxjrEdtubJhxwqA03+ymczFJOf3FsglIO2/pZw3iOMIMTlDM0SC+XneD54uBpMCHQVBwiI2QmRLe+2BzzNigpQ2pPmKpIcU2b+knltBxUReKdhJ6ON2MhAkPsk49ZffstV6X3X3ZW2s9qhccaF6QDK1aXRTWkeXdEiEykCb+gJTd102oilVGdKXScFrJ21nBVYLhpFKPaV1gU/LmioqcYQyw5nZ1Byo/saHJhIf/WXf8uGCnfHp/KAYDg56dCHSSk7LlzDCn0wXAf65HWdbkNms2TSBP3jCECnKabt4w1veGf61CevZwICGGQ43suqmayXyrZky6GAt8yWX2D4l8YzlCfq1XL53F4+zNiYmOxlg98e9j8aHt6cvnLjbeln/sPr6dwITdBphrvS1ZU1uqbGd5U7GleV9yd0D+mEoaxio7NKiuc29KgbChCmJtGDmzyVmvMVaanLkz9aujaeDSpAeln4EPyBd+8Rg94RB79g5AbDminsdGSnGJr6zjiMF9+QFrMXfytnotJV/uFDReFepLLFRRsFw2YRzjEnSSxh5rfASOIAz9dj4vBfr7wn/c57PpfuGDg/3dEYT1MDW9NueuSFGpuRsvSpDwnl/PPPj/SN/ghX5e0I/9PQw2qIaq7ua5LABhCNwBqVomhqALsmpgcDw4PpnnvvS5u3nAm9a+ngwTkWry+n//6mN6PnIqif4MbGVHlY4dnFgvKYKSs+J3431iqZIyJR4tS5keU8Q5G8ugOgoxi/93t/na78wD8xPJtECh1DglEvjWKHCJdoyapuWiBXgD6YdqUcEfkp+4dyRL0WCrbfcxmXIULN9bzsAnRg/wwdxRbWj9+Rvv9Vv5EOUL8j2ChK/OWmxNKJENmtPBWfdbs7j0klhZUzdkM8e2WzkjykDJNRMmYm8jIawIvfIdlV3CL/rbqMg0uXAa69OPpWRaKrDLYyE55doYulJRnuJEUr3SBw5SFC+0IwBWVH2CWin1mhJtdBBLvDvNtDmFsJ8rc3NNMb3np9umYns2HbLku3H8Q+aNuj0zSSrFPiSwtTaZyeZXR+Or3oGZuDHnxWVWg8WfBoGHk2uMp79er0u1U1W+qjEEDJvaqt8Kok+fI6GkjVSBz2jE6Mp0k2nawh5Q+PjCO9jWKMezu2Wu+JOpieJh34a4HVGEuxY6xMwkRHjAtbsR73g516zme+BwtXfNyKjN5XHfMgw9j+wTz0PHQ4pT/+H+9I733vP5KtfoB4IyA4grSprA9noIszb6vz1xlxK4VT+AG6teqaYhTgK3eoMTioScqkNvrprDMflXbvOpA2TpyNhHd7+uVffiOz04gmCCCxBBgSZaPyTBJrZV2dvVA4xt5G3o8CbBnlsVsxud7UnknJzllPGUNwU5oL7utgciU6wzaqK77jgyzh8WGgnR9z8a2AqWlKHx9OMH0d2G6aAJf9v8wYoIKf7wr28xjSo4bMC3jOKyW40tqZ00WU4Zg2KKcuoDC9nbDv2pHSL37g5vRnX7wh7Rw/Mx0e3Jr2HOxN4+gm904yOzs8BL5Op3MGl9OWqT3pFd9wabqQ7zD9CprkWdecZ+vWEjgxUedfHmDjcdq6LKkpra10a7nuXFKktBYXoOHqmrigqnUrv8yxFnbDxo0YnC+izGeHHAzZDzNZMTqyKb3tb9/NTrx0vOj9xLW+Puw0K232MjNZ7dvBnzj5M18f+b21nOvc5V+6ECzhxT/9n29lRcQHAV4nVxpIecw0sy3SEhNqZaY1VFn0+j3OPLeuFQ2vvJ8Fhoj6lP0TZWtqi2tZpaXOti7t2DACW0InoTSzcbupcTqGycNz3Lekq9nt5Sd//JfC5IgBJZIzFJeNcAcP7s9tL/9cn78yUWQRpZf95aYN4+STSqMHrfmSDGssLGOK4hZIVs2MrayXne+LRBerKQQF/Iq/X3h1umXSqtMIztoCIxtAcZ+G45Q0qWeHf9AuItA3v/MnmyzFBEUvPW/01OCdO7ZoSnIjsxB/8bm96a+uuiFdj05weuLMdB/GrYeonAFmXeco4yyNzf0GBtnQqn5oZ3ra5uH0yifV0yBE18oryidIi/D8KE1b05ao3FYFE/h0dFEx0qZVW1BBjiqXordDlXLpL1WDsqGsn5w6zPBmJOpv7/5D7Jm3GV0PNcti+f/9//8Fkh59GI2hj5naLEnwdWVwviZTEftJuShL5jPjGWaordWMOf7glTektwLCfQxbmxjd2y032NGHtSHkiew5Qgj9E6og1CKryr2KV9rpdVK5ffg+tjxRr4zJ4m7d6ixbbikjI4NIdocAvLxzjnzh8rFFTNDG0I/fuX1H+qmf/I1QrftlqdYNGzYEB+m3bq41w0glmdVz2LplhJ60z3WhSktUY9jW+URtGyYEtA7mbgEdYVTqty5AollduUEIUStXP6UbRIY9a1PF/mqkASxSjVAEbg+en8MzS3oDzpTR5Zp7zHrSTjKIqVx6183L6b/9wy3pii/fm3bMj7Fig0XXbD4wODLBqollhriI1v30NBsH09zU7nQmYtzI7K70Q8+7OExgziGeAWaP3bkhKs9CU2ar0NzHn9YPPU5D1wIFCQGDt/OEzKKk3Xl1AF9DaWigLx06dCj2O4sti2CmPkwYRkc3pCs+8KF0zz3shKLAThJKV5quBLI8BCSfQxrROc/1hWu3p1/7jTegZ9oY+qdh1oUOoXOq92MBgM6nt+bWV9Xmp0zwLcdOPQIBeue4HBl5qbuGYy1MO80egvKsbxKiAXXcuvxdOcvFdfjg3nTOWVvDPMVh/QzqipGRMcxU0I9jlrMwv5S+etMt6S//4gpUAZCKxiUYyk92k+HsQbzax7jl3fHcMfvJDr2V7lwku819e9Jsc5YdSBiACCRUUOj6rSTEtjKszY0extPJ1ABCSHP+pqAUN9UpoEPfuj90PDfpAm0LNRh9qLaUxlg64qpUh9SRHb7x8B7PIwt4jS7Tj3WSQBDCmQH0O9Arlnm50SiCXPr7T9+avrrjUGqgDF0eZ30vvU4N5mugF1ycnWbT0UG2lOqH2NOphr3POJMZjV33pe95/nPD/GVMWus4BtIFaGbd9ARUSxtVWspTFR/vE3BtzFG+LszfkgJKGBLkXW4gFrxkgPcS80Rd9FxH+biK1/qyDm2i2VV38xiSuHkp73IIBqz8a/f3fclzDuNft3haRGxyU8oZbLU2btzMzr37Ux/SkWYmPT39bBxwZfoPP/2KoL3zBU16UgYDuf5PpuhVFCXnEVWJr7oPsvLDid9duxfS61/3W0htQ+ihxtjNZz5sBTWV86ChXvKpDWEvemZ1dsvkfx57s6NuSQ5tbSvr5grftCLspHUpZRWgxV+tD07socTTnn7bcx92trv2HMB8dTiGqH0CDt+oxxtCn9dcnEzDo/3pe7/vO2N2207D9cXt3Bbi/8kCnRE6azmPfVODg2+U4775EjbknNwNCM2wF9Wh1IdnjaHfAEA3DNPXAbVlloO4GqIHa3j1MgFAIcZaEPzkRAoUs6/oNIYYLg46AaFOBj2aDXaJq1ZbTJvm96Z/9fSLohlghxnf+aOHrdw1+2UkTxqMYUpd2c5jnEzuwULXs+4lC1/gm9//7KH0X6/4croGm73ZiQtYlcFM6zx6FYazNZhvlBhHbMAw4cLCXGwZPsDs7QQbTj6ORdkvfgJlJy5e5/QAAtgYuPMyc3nSJuwOHdZ6rdGAI+Ax/7FguXBBLzsUr4hXf+y26AX6oJvT8o3GFH3KFHuETTJrfJhw0zQwzKNP8GITJjSPzEAvs/ieq4fNVr1QBnC5JTvI32TNo7pclhYOMgGk2F5jCNfDxo8u/9KA1Nk0zTPcpmmARfF19nZroq/JC/ic/PKy8oqzkulMGJ+q2VOVATuFEbKbAMThDHRQNfjyfVd8NICBn/AH2ZHs4drjK37Hd1dvNnnwkP10xL0iWWDeAhoxJxKzqq//hTemHTvRE/ZsZLkX0xKAcw80UWfVxyoKxkKxgY5na7jhZRMAtOEWMxu34neyL1/Urh04X2lzp67PmVuvlu5PPSX+sVMxbUgdsbSvY72wTNtrarNK/tjgMhrCsqMw0uzhGwaK3Gkz1JuXz9mPwrhiKsKSJt+6A1E/9DY3S6C6Ow4NIUZrFxdb9Bsf+bLZLPBdgxFfDb2CdochbEG/zLeKAhKLCz9/iQ1uYLu05MTT1rz2GZOusvPyMjy75Yx6etMf/yaAh0AU9CKdWFEhRdfVmSk3GqyYBr6+gBRe8Pjz01s+f2PafP6laT9723ki7CKoshgGwuyPP8KYAqCaRiqqM4PWE3vQCZwwrUAGM1qpOtfB1qik2X0MU7BP0l6qzjj+8OxUOnOsmbY0d6VnPPqSmPl185XBoCzxExdcECJVj5abVRapmxgiO3XrsHU/IT/wJaS5r96c7mI2bHZoC1IpVCPfNSpRi/UegLZB3q1crdbdemaKI+wWOFzkHBrlMDqFH/7uZ8WBQAhz9NykQUNdwvqb3QtI2pJlqS7yYV5aW6ubN64TcNGzE5efh74SJikxVcWl0bjKADhi0kjA8ZCi3/svv0rvJ5MqIcN0IeacQAb4xMZZOk3T2M+RfPfuuC/tuG9X2s+04+ev+WLsVuN2V0NIxFOTe2FKbBBheGcpg+GRZhbonJx528rJLPv37wWMWZMD62TpzrzJRzr5IvNGYTvvqkoc6uU3hhOG2HaMRu1+eNd84R4OB3oUkMmbMDAmFkcNraGJ35yYK7uPwLqRzbxIn7ah2QQ89vu//7Z08013Qvtt1AVqDyYj5ihvJrtN0rKt5DxyUfF/PK/1p5KIeiHSLHxoRzHBaUaa2FgPbpxRp/UPMwIR3d1MY3LK466wM4DOnkGxxMSIZ0TU3SUav7GxkbRp84a0bdtWri2hFjBppajdu/dy7cGc52C0QTdOzfsIcjYEdesWZzXysozufmbG3l6zkLFI11lw17ZPcP6Iw3Tjc/u14cHWFB6V0lF+I4CxxdVR9iW88657Ik+T8M/w8ECcZbJ3z470H3/nP6dLHne+1X2EW1ewE5OVXNw9xEa+EU7CEDp9y+UT6SNfq6Udi1Nptnczs50DoL3vGPrBfEtUTnOIGdsRABAgkVn7JRaXzw16B3c7dhMB98I7zP5d2zihaveBGfRzIPvUbDpz06a0tOfL6WXPeXS6mDQlm8AeYLJIMdmLX73fvD0UCOdkAagZgbSku4vra5gAvO8jt2JCMs3EA73m2Ab0cSIVEE7P5M6xc8z2ej4tsBc9oxMiU4huswPNtAFGqh26J73giY9Jl0zkCQmHz9ihkJQVRY9qmnxLFrMThaJXLpXrB3o+OE4gEjDskOzlZ5l5fvazz46GJn8EYK7BKMeamwyylIAiCCTLy+eS3uURvyWkSlEiT6UvMpP9hWu/xKlXV9EwPPJ8OtKusWWRy5+2bt2cDhzcR4M6hH7NM0gxAAak56HlyTjjsfF/4hOfYP+7H7StBwBJct+dtLPggKere3QuV3OvNe3CnA/5zGe+nt7x9veS7jjLwgAmVB9KJgMsAZubx1zG6jdTna4M7zr9238DEA7Vt2zZDJ2ZQONcimV29nY47BpvhCpMciY5vAkAnIXZkba3btvEMJ/OhAb5vOc9J132+Mekxzzm/HQpAgojxahHtoqkM6S9KjPgwEmbEMApzZSeE3qy7enWW29PN950a/rUVf+cppkhHWX55gEmiDQCHkNfuv/AYeJk4ggBQbCdIeJ+QDU6B/Ou2KtAUrngxfLDu2CAMGUZzzv3bDqtfeCIdJ1jE9fd6bd/51fTt3zrUyJPmrxZn/J7nLPB73UFOwea9ijBMrMYRrIrg6Di7sEvec5T0p996oY0sGkcSYmVB7QERrOgOeAIMRZYi7DIsNRdV52VzMBeMQy3uuIKQ9tZjCzrWMgfYnZtdAPDnSnG6Ii6fdO702XbRtNLH38BEhULuNj9YgDJxRaHkXrMsHLjDgSCN0BeDLPdleUO4v/gTXPpg5//SjrMzGpiU8Qelp/MQ3h7oTDPBp2msZtTmd0f21+TZ/OJ9ODahzogPcSw7VxO/fme52zFKi+DraDWwAylj81MPeC5VGXQqPwgjJKeLvzjaT3+GGemYY7NZyZeYLKNG8ew0ldZjh+J0jayDiQYWgWEOTGDx3MnvQDu/FVhrpKDKCEEueji0XTOo5+dXv7dz4ZJf5IF71ekd779XWnp8AJrnydY/D2bdu85HOcKOKuq+cUUUmHuKMjSEa6znCVAReA2KcG1lsvoj7947XUE+kEaQw4rRsWM7ElWgJKpjcwzF/KSMOofxnOAsXt3M/3JH/85ZK2zvIkdS+D3RTpOzU0m0C0KwifrjMv6dWJGeo1zfqt5mrOuAdUhbPv27LkXaY7jSB+9OX3j056Q/s33vCw98UnbImnBqyJJzgq/x5Ucgo9yTQ4DMMmrcgiA6enfeH56GtdyeiHp/ET68g0701vf9u50/XU3p717Jpkw2hOAJwi7VG9giPOd0aW5Ae80y+WMv049HzmoWUnH5FS9DLBcYveeu9HbMVx2RDV/OL3sZd+WXvbSpxCfHQzCBSK0tBDsrA+vwo9Vtk/uJp/0A0iRPbmolzMgFtBtMVPy7ZcMpJvvPiN9fPsuFogOcaLYAL20QARooU8YRNrrn2UmaoHBNswwX1/E5o2cA2SeR9HfACyIewDdTn2oJ+1iQy91XZtGgK3996Xz2FHkR150GXo08wBBa/g7HEYf1z8Mp1FPC6BeHf2PTdx+7T6uj3w9pY9+6evp7gPTaW6Qbbs3bUnT4FvT4TYFkviee6mlcz9TzYuUZ4BpHlR0GC/OpWFOyxpH6dzb4NzayQPpe77tKekc4pU/IvtMlvS5ESN2PqNMf2eSE7d8U7CEx2yVqLYyMxReD4oTOKwa9TceUtLHdvT2zGAKNMv+WU9CoMjL8dw5pYqhqIymRJMhb6Xx5G3v6bCYkRxxwznc2WfV0k/8xEvTNz/3cnrm/56+dN197EZ8FpI8wz6AYIwdeB3m9NM4ZjCcEqxWYiSFCs9yIzHNXGfxsMafGKoiWdxzz31IHRy+zqy9zoZRjwac48i+x/83n4kA0MSwwrokPvPI9c63XxES0PDIZmigHk66D4eU40yidn8C0v27+8kfafSzNdQgSMaOeNTrTDrcwL7MTwBfj7hcwqzlaU+9OH3P9700Pe/5T87SGe8FucV5dOEMRVxy57CyhrBgXRZmXdBeB9cfyrCczyWGS0pRsSU+4WfnqH9UEpc+/sz0+7/76vj0fe+/Lr31b/4u3XEnbR81iYDk0rhljFo9nHuA0ZOA7NXuigCgX6lndbXqBQc5MLoHHV0TQeIZz3xCesNv/TC8h8qokj5LPHl5ngcQrbfOjryGjl3UQzxVdnL45sDtLK4ff9G5afaKu9JXDu9Jd80Npt5hjgUEQKbZycJZyo0chtJcRGdEk49ih+QEwQUshgFKUXXim2RXgS0TWFLvu5P5i5l00XATE4/L0uUgHezCEJq0XSvpAlfH0Q7ZAMtlQGcP7909+Xr+/P1n70yfu31fWmKNXT+bQs6w4ejBSb6hRxzqBXzRE6kk7UHCQ7WMzEo+7I1QBi6wZkzj4T7SmT+4Jz16oJGec8G56XmPZtUefIDAyjt1UK7RVAdizuQ6nEOSwtPSqnLFq/xe33tO28Y+zPhkenqKhsZaQ4DHBfIC+wJDxH4XGbacjK471jvkjnF7/spCZoOfXEhjXoIeo+oweDcP03p4iisFHv/4c9lt+E3p1T/zpvSRj/xzuujCi9m0cmfau28PjUuFNHlGXdGiYSRxNIpVZY1kS5jckLRZcz9El2vdcuudnFh/XtSKDXs9HbJElN5YnSi4+avT6T2skOhnu7NZlonZkJU2PBBoBL3pwYOcO8E4cfkBwe7+csnYirIJpDptXDXin505GJuCjo0PpJ977WvjrFbmp2hHACD8bB7dbFc9nXxZQ/KqoS7SNRYRWJCmHApaD+EApQVmvANA6Hxqiq06vlVylLauEJHiyAPppUhcL3rhU9LHPn4dWzP9FeqJaaQxcMFM0KY1/qZfi91cnMTAEyGjaivG23IkQF5GxtyZmXY3f4hh93npv7zhlwKsUQFHWQpmCtSxDJDvBeS1YmxFfUIPlpBLZewsGV7kEjA0qr0Uqv4cgPfis3rS2TO3pInZO9PWgYW0CQVjD8POg9NL6dDQcjo8xBFvKOz7kfqG3bgPKUt7IiOe98QypLba7IH0+K2j6bHYuP3E878hvfDMlLYQQkhxKNV05QOzWtbAMr3ZTH0h0a+kO7n+6NqD6dfffm363H1U8ObzQKWxtHeKxrc8hFSxjca4Ef0GlcDBJ55TOkyPO8TwtnlgKg2hr+ijB7Si1af2MelQn92fnjTSl37wmZuTgsIQs1A1esZeytCDkrZBxfQBdpqqhElNRaPgBp8fQqeuJPeiWW9nr190MTZ4e1APtzmhi07KU55k3AyQrghhljHAUomB4iNt28f6V5WCtTpAB2aDs2f+nd/+uXThBY9K9957B7000jzSp7q6mWmkutLYCJs3lOBBhxS4YpCdWZqkKmfD8eKnnSd8qXRtY77h+ptagtR6TEyYoIr57KqK5Ua/glT3D2nPbh5Q7Hh4kp2fetM59o+3A4qzb0srbRt2V5Fxs1y5bCt+7U+mi44KPl2cda6fZ+I5dGgHKpTZ9G9f+WJ2gPkztq5/CkcZEhNRbdiYgc76GlBaMwqzHVJXfu5jQs0t0h1tNZg19vJZVY7voq2LT3wT3xJHWe87OztHOe1cWIsM7pr2e977pvTKV3079bqQDh/eiS6Tc4Ipd68jwgpgs5RufFRaufipkx+mZw7Bw3PsX9if/uAP/gs6SMsq37HyqaK/ywbtTHTyu/7t3Xi8WK8/0wxn+ugNmH4IVh9hOLfMsqsnQujBZ51Dr9OXPnzTHemOuw6m4bGz0gS6msMQfZIjDR1BDiNgNdVQRnmhYDAskgBD42GGuLWpXek8JIRX/9vL0yV0LOzmlAb43sYaPIE4iTCYphdZNEzFMGJJ77ttf3rb525J+5ZZTjR6DophJjtQHvYgyfWDXG4TNHloKkTrISpf0XyJqfZFZpP6IdzEMEdAst/6yIax1GCYNnPoIGfVHk6P3TaUnnvhtnQJ2DpMHjxsyKGgC83jIBD1RGQq7H3apbo2YlstTrk/2E7pwQkA90RbQAfpAUQOKyh6mM6clGAB7fsApnDWg+3CKiRyy5dnU2W+HAQNAFIIpkQcjWlYjUAl3Rvf+Nvph3/ox/mQjMGiAnR9YCTupafOMfB3TWAob+noLFjlohEhhThEE/Ruv/2OKHueFKD3B6lrcUzfyjfl22O955UYcL0NmDS0Z92+/UD6u/dciUS9jQ4PPmAlxPw8pjlIVWNjozHcdLfdbNx8rCm1hyt8k807Nm4YxSzjYNq1a1d60uUXpZ99zY+kb37+pVEHDgOXGPFYI9JA+gpG4ap6scFKNnnBeov2xK3PA28MoyfvrEcfiwkPj+pjcj/H+2FPSAuPbOPoML2PofTP/Mwr0rOf+fT0x//zL1nidQOzsmei1hhHD7eP0VIFSVFZRmjmcvlsHwFoSH/jG4fT//pff8gh24y+IpPqKF13zH53qM3sIFVNyC+Cnr/XH+zMG4kPorSw3NGDk0nP+3RYWwfALkXU3fqUM9JlWEJ/+IY70w137gXosO+a2IQ+jR1JQWFnXftskJoPIOr3guTDAF3fzO508ehgevlzn5CefzbT18Q6wnRDncu660VrZyU4+eEs605az2fZDeHKG3ala7fTk7COdR5mW1oeZPaPyqOFaejcZxo0HI9hdLq8D91cTJRUtSm5mRNJA3RRBwC52jhHN2LpPkIv89gtE+k7nlxDoqOeg/AE1hCU3JQOzyGwV4BxCUOw4h4KoDOtmKUik84o29upFpCxQzXD+8AGq+pEXce3UdQ2vyBniRv/YXghGhB+so59weMvG0EP8w3p6quvg3HHAQfNYWyYqAVW0S43ghJdxFDSaoFgCWPsln+ZNNH/Mb664/a7aQj563kmBwYE3ZN1EZ88BI15doT3e//fHzIzCW8zCtdIOMzKBUK3DEM/5q7EveqXcSW3K9nI/uW3UoqNd5HhpZM3NmhVBXYImg55itrM7B5AZTl903O/gbR/hZntDEoL81NIyzT6YEIJZdymyL3QTS/LwO+gjf4tWlbvuAUglu+q8HqHK1G3fqAPRV2llal2d3OM1p761EenP/hvv5be/CdvS1dc+UlmhO/Nw2g6X0F4EaWevKq5iodoD9qJkm87qpFRhuM//+p0oTOfggxOEPSkMYfbxXV2jOtQuyVq7lHR+e6jl7QT8FSQ2lV49OEwmd4C0Dz3zN70pDMvSF9Ff/aFryym6+65h2HigbRAj9eLFLiE1DU7gzU8hXjUORvTxWdvSc9+3AXpKUhQSnKDANRGdEQe2jjF7O8Qw0+1Os7tOK+1k+vdLGj94PV3pJ2L6AgnLkJHgsRFfjygW8E28ldVdNkw1IoWmx06C5qyQwPjS++ar/SyHGkQ5ehwk5PMGSK85LlPzBMjRhZxad5hPWSw4zFoIT0CDH3pD111z7eK8fKb9fsrgpT0IlYzWnHJEamQh1VhjwhwdI+STtDg6MEe6I00+tYXPS9d87lroWfVkNE8y7w27Fwj0qrdWaYHclnCnJl2JcJg2IrBWgAGnZgKH3W8J1r2Kmk7WhX8jgrM4eev2c5xgPegY8LkIniuPY+d9dBZpvawK899iMhNjK7V9/l86ODBdNZZnDY2dZCyKK0vMDP5kvT61/9AGNaC73nTWyYulOyya6OXZZas3rmyaVL7Pb8qQVbueeQSv4NuxBn3nEKOU4+clk+GHUKkn2M4vHFjT/rVX30lRyWekf7szX/OrPUidEKSpxqGMRVzGdhU7FiM9MZkgBLcHKY6P/6an04vfMGTc6z2gTh1lSHltKefX7X+ri/YWb2WxnuICFleifwgoUVXZ5dAo/Cwc0a0QZunjqX0Dc9UoXkBVXFB2odIdmg/w1+YAymfXpEZIHKqetQMay/k2bBu2xzpsRX7aD+zdujTVNXtI+73b2+md1z1RdaxMkTdeA7LxQbS1D56FsxWzFujj0rXyDcs0dEXmS+uBsbNNae3UTAkETNbAABAAElEQVTR3/KPXobeaIaG5rC4j8TVQwwCdGOzu9N3PeuSdAmdidW51MMkBrPKOllK1g1ytN15zIVurxR7zgjYwSwR+Hj/mGpmriO/LP4lV0eGyD7GcQIuyvRAZTha3BmI6NhDenvRt3xjeuN/c+aOoah+lUSTwa7KW9Atl8nvdM2WOJJ/51oo5bZRUI8MV71PYfyNQATwxZfUl91gcGv5+Pjv0EDpUSW/WfrAFR9j1tfDutmFB/FZaVp9YwGFrK00f4ZuZ4q1k9akReN2h4Pa6PXC19rK7dm7AylI2h9O3/WvXpB+5dd+IGG2FwAhSHj8aOyfF9OVbXUQSfLbLPBsLjIdVihHjuO1Xxls9d3Q2Z9bNTIwlD+40MVFq410+AltBN/BwcqDt//uh16YOA4Y9cWfYFu/keGvBwmhZ19kDTN62v37d6Vzzj4D6W+Sw4e+h6Vgz2MNcc6rZVNPmtUHRFw6XOLtdOZknZ1F10kiXQV4ZsLLktJ1i4XymGSx2AqfGqT6fB6KrwbSHf9bDvzJTE/0sf9haLsNTV9FJPOEnea6AZuSt3366+lzu+jlxs9KDWZgD2NLMsqBLGPsbbaInZ6Jmlbkj58ON5p28TiX3fTAjE0mF2pZ005JAEeoqmGx5hAbsJju378nPe3cifRyrIepJ0KgB4qWGtHEn0IJc2lRcgo84JGHYzmE74M2Ziims/U4GWe8JfUqnmACU4pE2iJv5ary6/zdFvSYHkvaR4unI1+tOPWH9nQsdPAonxP6mM1p5052j0F/6uROE6I55AsmaX3Hg2VbwwWohH+OW6I3Ac1BhrHzcxgro4O6j+MXL7jAbpfUo4OOx5P64+SVKW6/Yzp9hvOS3VNvXrMnFvbnei/Rd+Y7OLK8XPOuzvXQYdaGssvOMCuPSArTnAOABWu65/am7/s3L06/8kv/ARDHpo7Z9snJOQSGmLaDjnBhJNGWrsBrbmNoa5LySNt7vaI0+lV0bN3jZccf46rCtddLVTQ7gQZ5CwUuX86wo7S6vZe+5Pkku5x+6zffzPeqWJgYRLJbxg7vbEZ0hyf3pSc84aL02p99RUywaPpFNUZ5tE8c0gL6Adz6gp0FKvUFzcrSnugXir9jFGhueRchsIp/pzFqanIpWBMd0jK2EGFOxTfqvBZYu9eLf+4j8BHdvHhsUI9sJZe+xlD4qu1LTEB8NS1t2JqmsfWZnUQRP74p9dCLzGHHpJKyxpjFeu3he08RWyAtowrbsqhwpDmYfknTFfyj34rKIwjB+hjq9DATfN7wcvre5z42ZoCRFdG/sEaQoW5UdFXJRqvzHipLaWAkxFckP9+1dHlBI318ux4OIrcznFH6O/JhRkwL5++St1Ye4s3x/SHKXOdGIsPn4sbDEX8ioQ5fpWlcBTqXXHIx60evo0GzgsYlRiielWxCF7bW5/nriLMdVAxv+SytxraDSAsIA/j1MkO6D7B7FDoil1P5qd3SyTkByPQ+9I//lHbS6U5MnAHYsVwQHZ36NjvPTHn+lnJUPJaB4ujpq8cStAQDQWGO1TtDgMW+fbvSq3/6B9NrXv3dYS7iYVS6cYBOydgtpdrUWUetGFuZeSvcke90QtJPQWDVfXW4SLCq93iOyuSplDEHIP85HhMZHmK4T++mTu/lL3sRlhBnpV/45d9h0nIIXd1BLE2YQERQOQc11p+8+dcD6JSXYIVwS7TnMOvCz3LeX3+VaV5l4uRvRrdyWaUOBcN5o3ANlnrZljXHGqLimTOBvQQWkAs0ix0e4M45Fu/OufDY1RF1AAotXIMVCrHNO1IY5njpMGC+g3iu3J7Sm/7xa+ntX/hamhw+O93LQa2zvewPNjCedjG7OgcVRpCTp1i/p8QmkwSMwWBltq5GGCcqai5Ad5odjnXT0AhPbfWhhxlkA4JRmKx2aF/6jqc+kYkWKouoBhnaKjnGEMiKJd7MJJka0Xz0j8tWJtgJo96zFJDfVWG4nZjLAFOAZiWOqg4C+NqeRYROMFz56CSeLH1xprfWJVUM1375jbZf3CjKRY9BrUHjDiU89WNnFcBlsGN0ZU21wf02lN8g3RDjIA/bDn9uAup6uBhmE5UbR37i458Js41ZgLpmA4f3mvBzdKwWMFymjfpie+8yHK9edtzYt4eZSBu3dycp5GWH5c/9pmemn/rp70aHZxnzrKQfz2ETKgAIdAseO6prr57sU3lmoI/XAofvvMu3uDXvbeFyqFyeXOfZpz09O5mgEZGrmtD0ptg4LrLd0Iu+5fHpN379F8j3JBuvsks4KqPRsToTLb/BHboCFQ7CrC53h3E0FUNYEPD+gM6cyFbr5yxANRwsRW5FXnn0kXHBoA/Edu+xsNBGubiMxLeM9r8XBaUmCj0oMTMkOU0O4BHRsjNZMPwu+GUaj1vxe8vHd6bP3nYvurqNHOzDVjnsmrGJYcNhli9w2maqIQpPU+Gzhw+xUsMTxDPTq39za6meHtbnwWgDML62ZaYkBixhAqPEFzuGkM9hlIHuczfCWsOnXnhh+uaLB2Oh/4jja2qgh9PJA7AchsKAGcKEewE/apj3vsuc41/6rOCDk5clWlS+n4dg3TXeWzErrl0iWvE9nifjW4kzl/bI73NuVsLlENAHqmjEaqfnbhmh4wqgcygLrXUCtKCxlot3xrO2c5LDGb0BWv8izCD/2XDUDx/ZSawdx/35WqOW+QtfuJ3Z3nsAu/HY1LXX2UiLK78Ywh8tYvNbyU7e8OMIyH2Vy2VyGDvNWnJ3genHksDZdGnx5je/nllWKE+wZUyqVPU4J5hPUWMfOCYvxjV2i1ZlMtaAGSpXTqwAWvwyL8X57CflXvy9l3Dci/DQ/lq6qhrS9cbiaVRPjrCg+ZDGqnw3Xxk1T6FnfMl3PTndcvPL0zve8S7O0J1Of/GXf5qecNlGpGMEixBYjUvDbHdQURynE2D0l7dyMpW13bqCXSmzSa0iGkQSuOK9ClaY1xOe+py0kIBkNuybGVJKegOqkmswgdAbwMGwEhlQ2DvE653k+h++spDec82X0w7MiOvbLkB6o9dnKnacWp5kV4sZdHUJY2UPKllGTxDW6cTpbGqQCq5YJm4304z8EK+9qiyvWq8JsFoImgPvsY3C8n+kwcLp2X3pR5//pNaSsMg/ALyMXUqPyyYqZ7H81QI6/fX0ilsGuhwmPDKBqvcR6ET+VEyVPzV2ZoaNE5rboGTynER+VzLkrxUnhU7ErY6lPYbIAh4PXLwmvTq2lEjlLivTuaSoxoYPk6yhdGPOzE2+kaPMq+ka80r6gRt46VNKY/0KpEpRWvnHjKkqEsPAJyEl8HyiztzoHGG6GN403E2mTie7wL5gNdAoG8dHKLKcZ+0jr+aCfJUhd0RU/bH+wmiakkgTbSTrgMbk1H4Of2qmP3zT78e2YxoLuwzLyTxXpSgx9SE0zCM9jbMWN2ZZg2aWuJ127anxLA/5WpKWe6GtfuEI0/4+Cm+8nU7qe0UA8oc0Slz1yp6xESsx3Dkom4ywUCZCv+51r8Kw/Lb03a/41+mSx26mTS+xs4mtU/qCC3RS7jhkCzUbLskMWSIHiXCdf+ScdXNBB8uls2ysu5RwAp1gFsChFIcHOJPlUcK53Q+IggcrJwKpnbyASXIkzJRyUC5vXc/60dtT+thXd6fP3nsgTQ4+CtNsdlOAYA53hu31EIV7MEz0MOoma/nEfamhlXZpJNrTqUPL+qUsgwlwIh0WTNFDTLMlzsTGTexNxmG9+A8N0YvsuTP9++c8Lj2J7J5hdBzmy2LbKF+MgoyjTZZuDeHxLrwSNcNPCV+IHyzinyAg95NyVoCRcQHSZjP+yMBeJNIks3m4pO7EC18DttKPHPnl8btIsO2ziNN0I2X+tgfwZXtagLFStFNtZhdaeoyglvrzDME8hGaJZXtHdZTF2CK1YLAcMtewvvAefNDLME+JbhZ9V9H3OLxym6PV+cnfH9tf47dThsso1pUf+nCYsyw34WIACBmGu/onJykIG/kjNB2+0lDZkyOGs7zPVMq0iZiDjvl3nbzPz7FRArZ03/niF6TnPfO8ADklu2B47n2aO4TrBUiy8r746N3+nMNVf+NFe520vfVd4RNofYTj/ZHxrg5XZz/BFYcQsWp5Id8Tv3NQRvRHf/RrraCDNsLKORtdXE6PNHgI4by8WONe2tsar07SyzJG6jb5QqHMSnqHD3owZe+ytm6WufI+FvjKsoLjDLXcBL3t329iAuI9V21nG6Zauoep16nBbak5yFpap7ZDEQDguUSEhhwEA+YV6VuNKxjM3+EZjT0/6Ud6VZ002VusjhQxWB9OC2RgiUodpqtsHrgtPefiben5l46ms6U7w1m7EgclMri9ivaxubZXV/AKB6z4r1Qd3+iqCo78SZwTdnxsWd29pZUwsG4D0r81dCIv7QwbXCNFVvJ4wlkoHxpnVLQexu0P7zrTKb+rvJA/AU7nGw1zB1APTDK2qfdPxGaPYa1vOcJ5h5JRrujWwtcYfFOSD8/qj/qsmNGl1urODFZD43zItjV5cs50b755b8wcF/rKnnmmF9ilYGjUcl0QNmyJo7ByhFpfY1hx5ReUwRODaGYd59gc1uHrILPUP/ojrwK4oUKQ08ijIlciiKdM0w7P+/9Zojne+5qxHkf6pFeSXDOq8DyO+NoisUWsmwtJiXzIMjEspfIcmHo0olcwZY1JAveUQ5LrYdiqHQ6jQ3QMrD+tY1DHsjLRah8NcQbguo/PPvLVlD78xTvSLhYP70XZ2+sC/NjZdC4tM3U9BLPLwG6mqb4ik0sOOtLlHV1X++eBjH5KoQ6YYTvicT/7QWa6mlikP7Z/KX3XE8/F7ESbPJuYw8G86tPKOflmQiT/ktwRHCuDygQF5iuGbQdcO66QeAAFgjpUcf2oAOUVdmoPROkAQtNpc21p5Ljg1Epf7PIiXbbTshb99kQa08o3n/70P+f+F340PYfICo0+Z2dY+bMjn6t+r8SXvxHI4E9GMA7F55kB+bEf+aF04YXaAuCI2iGixtJdtzYF1hXsTEKwUPFeACQgxz9xUYEMLXvDoND5SLRwDlPcBYN6Z/MTTEUGYrg6Q+Vdx7j1Lz5xT7qanUkarJ+rjW8OuxvHf27pvYwFuU2nn6GvjLTo9tIkEWmamQ63aiaPBtASctrCqeMQ8lReK5O6O1Tf9L70nd94QXoGy25kQQbnIXHWi46RmSDBz/+nvVuLBi2w6WzAHdSKbx0HAHY8q59ym6KhIbZEcjkUagp1Uiv1WMXXir8jvs6fAKemK9ai+6ip2xJA5BcV6Nk4tYBx58fH/vtzn70WQIIXyWjevNP41yKMzLqW/9ppOVkmPTawRRqRp+//gRczFGdEAb6pRulcHrV2LKev77qDneK21VcilpGW4B/N6zJX0RPROy0j6iGjxcoF37FFHccRsvqBYDczZP27T9+Zrrptd5rZeH4afMyT0x4WjLuZpvrpXoaQ/ejLtJGsO35nMmGeXUoWYYYAnTa4W9UwKhQM/oL5jgBF8lDDktnt4h0XeLhPz/6d6Vnnbk3/ivWaYF1IddwY9jrLSjAiiebhgxHredq6IqmUu2BUAdIx0kSjXw2IleK2b98ew0wXyjiD2nRCi64o9I33S+e2ml0DCJ2IUH+mAt9jDdfNkSzbLKbbbr0LJTqMatpcApF8GJMggp7+IYFWIgG/i5auMy8r1IOmfOMsq8D8zc9/buxFVxk/UB5MTDBvkT7HS/PONP+l/i6YtC7lk//ypIJtPhNdnZasl5da+YMK4eqh53Pvf9/ROaUpvMG49P4bGulTN92dbjs4l2bGHpX2LdXZaWQOExJsbhymIhnaO4srKnYXAMCGvajK7GgVxra2y52oucx5OjIUUoWNivgG2chxgFmsrRyR+H1PvzRdQIMbpDCoELNkx8dKeHjjqsaFtOBeeF3Akx6ZzkGeY/lTBff0r+Acfn/t1ttQIzCTqR4V/ZQGpkdGuwIHGUD8utMZJocTa2JoDOAJdlu2YHRe0haVTtLdwSjEQ5vrnFLnRp4OO2vYYLr1+pGOhG0PlVt5Kj7l7rd0vPC/ivrZ2YOxu7AWC+rrzL9WBxqnd93RKbCuYKeWPk4hMj3XiAJA8lHRhDjjOY9ydcL1qayw70NXp5ruIGE+wh5M77r6VnYzpgZHzkgNJm3YNjANwOwu0J5juYi2SgOKcypAUMDPYQ0v/8vInuzunmDUOb9kjuIyA7QOkYG5MuiV9+Vu3kmKcXCdmY2lZezy0C9+95Mfk56zGSsW2y976bEGg/Jo+ZdZy22cYvbINCvleomxe38ACsgcLZdlG6gZ0sv226fT3r17acwbsj0cCvkljYCtpFX1myMI42Hq1kFwBj38BZJVaZTEqGt1gbzevKWzCRTeOTHguPHLXwN4sBXln9tFzWOS5MFGTZBJcDX34SJvJa0CxeVlua/kIYQH7Ok8EOcCNom97Albg05TbGowxi4gjkhcyph1j+X77r2dAp013f7uxJ6dBVREb2OyUmVW9BBAN4M+TGPHeYDuZgzn3nbNfekjO3amPfXNaXHTmYDJAICDFAe4zM2xiwPY5tbti/Rsc+xq2tfP/vXY6TWwH/GdJgM9SHvz85w05vx7xVExhOW5Hdzan0sBsxSaf8mkA2wSMDW5g41Fl9IPPOtMFvxTHGctVJiTO7V6gp7l0pTBYTkKk1VlLnGfnncrH+rYoNdyLd6wsXtZYd49N4AOElLeeNMtSHTof9nc0aMV1bG1RDBCZteKqPpZ4ivvy928EBaAU7mf2SPr78oSqqyvK+FP7G7q29nhRD10dMBI+U2NP3Fh8gKfhplV+OjZTh+/xtl2Agjb3+VXduKLLI5/3vOeldVCFGkUoHMFRV/YneRw3b9rU+CkwM4KLJcKWPfq0m6IGkVkk7msOGQgutC8NhSxnsnWRRR0d5Cf9908k674yl3pzml6vNqj4OUxhrQuCcK4kqVi/SwHUZCTpd0tgWUVrJEdCD1f05kIwrEvK+mx5IRZ3Dp6wCbGxVnB3c4sxAADye/mV0XuApsnmudYgoTE4HIh4auBInwA+8CxnkPpx77j6aGnc0kYCeFynNk8QBPnrICOsa2vT3vXRvPSkK28DifgxHmh0DR/EVNCUJOT4qC1df43f/12rOs9KpOuj4mJBvU9xdF/sXW49dgRZ/6pbwUaVcwZdNsyIU/iFgHRJ1/+lHjW+sT1msux/IjEw5V4qp+t+PJv+ziHj7mvy2F7UKB95Ss3p02btrHTCSfmqVtm66h5l3WRY3V22cE5axcgd8wluzBseQw68ZFnoL7whd/cwv0GnUCdJUddqa4i7f3cTgjsBAydYHHELBOieigSIoRDPDnCKvMYRBS4jEo/dVdK77jha+kL+6Y4kHoce7kJDtrhCD0kPrcbVtLS0g5NX6uy81YxMGIoqYmIKFVUO6DsYdG+YGcqwl+7K8PXyAIvVHyr84udS2PYCwOGVT1gR95HOLhncdddLPJ/THraRkbUFrVEGXaDWalsurmpyoZelTMTp7MrIHdUGtixAC6K5AAAG/7QN1KH+ElZd17/1D/dke65l8kpdqvp87B17CcdwWpjJlCukoha6WWezMkS2HrQlKVUfJUf619t6xAWAJ6HqtMCSncsQ0Dt8mJfPZKTtb3cU05nf3z3PfcxKtB+j2MFYrrX4TIvaDMxMYI++Pgd8QN0AuSjzjmD3WA2xo5AppoPNnJYfroz3gNTtTTjBw5ZhSiSnD87CaxAp8AVozre98GIWuhrUX6A6+vMVP3153ak6/bOpjtY3Lo0eB5rBzk8A2ZuAlhuSdNsOE0hfFCzfCP0ua++A0dRJxZa2HurH+Sty8mEOHkadvDP/TqBVIbVbCQc50NotV6DIftgyDoTII/ZxE7Il21K5xIgQNdNCpyKiLjNi6Ym5MGLbwPsqqS5dd1RKcAyLegrYCmtKbdE/aLA1y3RkbGoIb3vfR9GonOHkD7MQzyQh52rmSEfYycM77pOOlv/eTG99dHpMhjJTXZ0LqLvZ5nVxRdfFKYsLDFFCoOXilAXdVu+WR1X4fkjsAXeYPk10ucMqYwyTwW/gOrZ1MU4lOzk1eI642/PN7xdgXheXiaVcOiSz+S85A1seqmHMof5yHrjzvhKOt17ocBxg50flh0i2iU8n63KAByYRpbUXNNJid28+MStzLRef1v6MofqHMAavsGSIFcqCDB2jE0O0ZmrDt8I8OBbEYy3gGWuSO2MBJi4x3BE9MGP94tMiNiBygXF3CTLYPqtdsuiMT18E6Bz9nUIA2VTqnMmw8ji4fR93/74dDHY6rJpN/ikeQBuGewiCX5FuvlHRF7lJN6ER/dPBwVyY/YYvnm2vF8G2JxNX2aXmYY8wBDQiZ6/fcsn2N33y7FbiAvFm/SUHvKsNFhWO2SC41ENSUtCIcRZEavGiJl3Shjvgs4CG6I94YmPj465/d0DPWfJkCQqsDG8G4xqk3nvvRxugylUjXOQs78GwLyDMT2PIngm3hyZp/C2PF4taTV8W38E83MfdU4M88FspF0WUrJFjDO+veqMA/2OEncrltP34bjBTlArvZtkC+twOFE/1XSaYwhyailcy3rVTg6gvv5gum4Xs2vNkTTA/nIDVHwNPcYiuzfMULmK+7FXFhUo02SwUh1rxREp/3upXYeraPSiB3cA5K60zowyZwsgZv2Gc6XtEw5EQMgVZz5l2H5alvvc12gYAyh3F9gAsG9xJj3j3E2cbcGQybYJGKI4zPpHI+HSO8A4htNVzNHoukwWpFnzT6aarxYZ3g30DwUdpzzsiO5heKQHY1nWPX/si+mtb30vu+5yihudocAxzxrlQba66EektzPLPFHFByisbNBp7PivAjr9dNZN/obqR4JjqRXD2Esu2RKgFSFieAsDtlzJ89Hr1bjkCa0AfD5w4EAAjxtMROevDlB+q97rF4fqtNKoImj9rh4C8Do9c36URqM98GnpzHOcdPjwa2zQ2flp93dQ4ITArp12VqaXTqAT4LR0u4sf77tmMn34lh1pf/+GNMcKiCkMgydZ3jVALz7CNYRZSZyITk/bxPI4tt9hiNlLFy3glcq0t3PSotcV1TJMXvRKKvaWMGMAjzsg6ITZlW8rOAo/QbDJKgtnbt3Sx7Qdvi4xtGrQ058x1p9ezuzrJkJH36z0h47FtbsMpOihXYpGikaqPigaV2kUuUn5vuvaKbBCHykUynTo56TAKMtTon4I8vfv/kz6wz/6MzZshDeG2c6HiaI6FrQa0IZEZ71zZbcCXu0p5eeSnryhK2DlPYOQSwsvvfRS+C3YKUL5Jw9lj71JmB05v2L/MJXRJwQCmMTDZUr7cDgbEpiGmlGMkr9W8vf7EC0MWpx37rkRLpPCsqprznG5i0vXHZ0Cx16zVRwF2EqU7UPag4xZD0Pv93y5kT5+/VdZDTHIGbDj6RDbEi+g0BgeHmUniCF669k0y1Iv9WaeBVpnH/1FhjazM+w6yhbFGdhgTXEsgM7U+AHzKMd5WLa/Q6/Bs+CTWZrKD+4ruWu/50aQe1fXGNLrwnUODdxAYHxkKH3TU7elJ7C91igdfKz6INZeraH5v0g+kCXTANIEj9k5vLYXF/QiP9yCK6v3p/utRahMn0IO+pawEbPRX/Wpu9Nf/Plb0o1fvgUD4s2Agzth0Amip5OYDmEFCSc07Hiqii5Rtd0Jb3oBJG3eHY+hbCHci170gtYbJ0npe9vAtPXqfh8C7KjvSisSYBcdNjwZkxJymPzFjGkG6iOZw449Ms3NEj+QO/vssyO9iKmKzuG+5VYN0HVHp8AqsJNPJLh36Ub957ZbPPwtUxiKmlbv4uSDstR+Qm6Hid/897ek7XO1tJfTvKaRhNgwKdVHRhmGuC3NIpLdNMppNh1kSr4ByAh8dc6T7EH34LCl6ZSWOotWQyHyyinpxTCGNEO6EmB4Zz5jogCjy6WYTPBzMwoTECD4yYkMGM91tIsw3xLK7yZ7jcnkdaS6SzgL9qUXZj2du+OAvYRjCIXNVHOBMRb7QCP/MVRHJ1Pl55F2kyYO7e0ElIwzjVZyqT+1VvlTh9BYmlq9kt2uZF1dlY+qhqA//7l2711gF9+r04c++LF06207QqrvrY2g3IeBoPcCO0PEkYOgSJaMID96Vc8ayHFVsNDBI2uNYFf8LK/1DQdxPeuZ3xi8Qf/ZQpnQex2VBqaZ6VNUN0E46VyRbVG7QPLciNll1T20FEYP+vUhpXrMn2Gyk+o6IigOeq38yumVjt/Qvjvz7Ak6ANL0h/xNnpQa5fEiYeLZdWtQYBXYSV6HooJXDNiopCGnqGRSX/Lo8n0lIsnsAhVNJm/hg/d+ZSp9iCMLJ3sn0nwP51myrEVA0fRjidUSjkBl5Dr+HmYIFxAfB9hyeA2rXnk5D9PY8Ghy1TC2VLyba4aDGdpdZmQYSqa34QJoDXYYtlEPNBAxY3t1AQAG0zyFlBZYOT2+YUvaywnzvYDrcJ3fSJn/+dvG0/lE7vDVWWVHG2626I/e2hBlBqB9xyVAxoOFiizlfBWG5O3D6MhL0Mmhf85XZEY/aFRn7OZsqA02GqGSNoVyW7GQVE4y50EDyCYu7dzZ4KDmPWnPnj3pnrvvSzt27Eif/ORVQd8lRgGewrWsETpOFUMvqwDszKz3EFaC6SAxeZtjyRh74/PGa8UZtt1FnBREHvVkejf+dCXGpk0TsdX/ANt8X/K4C/PKCT72IJx+Cm++PdAnb/XUHmN7evm5jG4KyJnNEPLp2H1XRjvm1edezybBBdC1eDjHleuoLY2WeqQ6nIffS9Sb7c368xQugc5yu45YgHMYS20agH9tde43XdeiwCqw09eDTQZYbS8xe9javMkWOLmx0xjwm4U5Z3npZAS2wOnqOxm2XvP19Ol982lmeCtGv8OEs2qUwnQwEuHaXZ5Ol0PwjdZhSB6oTM3nZfjiVnrm4rPW3UiIge8FPs1TIg0ZK5jL94I0jE2Dmp9hw3bS0Qh0ilOmLmBHYw/bdrMcT1c0efpjwmM4rHTB0DqzK+9w0YsCnJHn8DGdeHj4/7Qak1mRriu0lBbqvzyCb8uWzZhg9KVde3amb33xa2KHEc800DSsc4LnWAtlR7UEcfJBxSjMkdxN36FdA4nGXUzGxiYAVVIga5pMtMQR0c2W64vIcyGov3HyRsu1P7eVj+80aZnlAOw6BTH9Sc4g2UZZ7eyW2DzCSYRXvvLn0QvmyAbsfD0Ix94t0uVm0i2eNX7TK2m2p4f3KtfxblVdrArY9qPEm71KR59/5Y7clmQoNZwhIwTyZSAtec3TcyWujny0pXY6P64CO0FiAmnLdryYpmBSjD3r9BiI4qmJQSf6qwYWGE5CfAW6vufqPemfb74vHWblw/LmSzAfgcHcnC6GjLI+DoYOvqHiY1gVjERFVbyceyKzoWRm+DwE89PjdX4uyGUwzV87mSEIlgYcuh+64R7HbeTQTQSmmCG8cTsGm+eznA1Gsud0UVF8hV2MkpxtLXY3Dkbj05Z4Z7uQyR7pDGb+MLkGeASE2MeNQm3atCXt2rmbOwviKUNPsdsh9PE66e+W2XOzmlxg1oPkodGrs5Ge8dvPMr8FOlPRRCnS5lukJGdlo+FmbjEmA6w4gaMFeG201r843s+j6+tnJreJwrfB8G5gqB+Jbg7g41R5TrIaHd2WXvC8y6K2Fgg7yMqJfoDOZVy1SgIr0R3/vSPPxx/BA35hf0D/i8onB42+Ab92If4BIzlNA6wCu6ABhJQT3Po5UE/TdZi1AVO4YP8errdcPZ/ed8NNaYp1rn1nXEjDcdjC+jy+awaKAWYwXlPgIbxM7LDCZxuEv1tgF0zvmywBqgM8GVdDVxcTF8Rnu5X9Qn9lvKTlcpvR8fHUO8WwmfwNDI+nvfsPpY9fe0t63vmPTRNkpeQtclu0vp5VIBrz3pv5bJXnZDL8kH4LTQB5J4oOHNgH8GECxFB9bIylIpRmge3t0bDGcy6d1LOUx34XSN0YMyvkoRXEX2RL9QU2bM3AZnxQlla7AnBWjRX0AK4Am6BXnts/wc8ZVTsiJzME9kHOB9l/YDdlRupEsvv+V/67zIQkJxC73EobP/N7DDmoUpMepdfj8dg/bM/tsT9bVgUIEhLscnKlXvj9YKd/7Dl9RIdcBXY24imYZczFiWythAKMLqQ/HYauX6cYV4F0b/mnO9NUjROTxi5AKoKJD7JQG13KCGLPIsDYU/NMhsIIWaqzLjymUFekrgxIAgdvK8bNwrqhAgF9OC5XQK4nREQ/zdJiuy2WC77dy0zNUBh6MjmyiMTx9QOH0i2IrJuwJFY1tMC6Ru2xIhzx9CjdKvXyDjtYJL/MbP3RTPEMhjyu7D4sgd38EW1WzIKPj4+GhGejn+S0dW3b2FeGfFV1UkDlOO4L7KBr7TmLKthIJnWDkk/9lc8BegaqxJEWMMIjWd+VeWU1gaR35YI92n4Xf+5u8GkZ1U1GuaYOpJFRTttilLJ58yZOk38xfEodkzX6b/KVB4B9DyjVrZ1eW9IP0qPprqYHZMwOngvws7oMBf2O1DlWYbs3OvI2J0n7sX2yD6lNI64BApxMmG5g+6X33Tmb/uHGu9L0wFlpykNbCeT5nv197C/Hon2gjh6S5T4BNHnI6vBOnZtAV+qn6pZy5cDswbdUViuEDeskXA1JYgVI1XkYmXFGSnHAyhw6u7q6RTjlEBLetqGJ0EN+8Jqd6UnfciZ2gJRrWdB29s9SqAekBEbBpeSXJVBLRdw5ap4f+W6MU6YEnBE2rZyamg7giaEQHVQvM82xHCs6H7lAdxx36q6YQcTKCIaJ6uecNBDgBDWPSFztooJakmCuq9UhjvzV4qaOVzmtfmbOPXjZuHpQY7jF0iwHLv/YL/5UnD0aAGGdkbTroQXH4aFRVtPgZT+ds9QRd/vPKn3Dlbr3OXi3eLSHP97nzvLxO+qEowrQEo1hHqXLdoFkmCSXaWhZcs7vun+PpEAH5wkKeV6nNgrQUYF78PnrT1ybPrO/kQ7UNjNjxj50gFRfbK8ExNHqPbi2l3nMPmzmXPhfqkopTqjwt/ZsWeASOgA5PAUMWUNAKiyiXuzYJiX4sMMJQgJdkR4D6GBAGaEkUKOxuaOxBp9zMHfD/GOhf4DlZtewPc/2uTPZbYNZWbi+j8mY4DHy2ySOMqItyZpnKUZ7eQQ7c6jLtTI7m2e9eyGW+jMnE+pIQzU2QNC0w7M9cqnio+P8Q70ye61xq/ZyZS2omy44Y2hjzJMWOdos0UlF6i1o6B8r0Q6kxUXxfuXP0Yid43HG092H5+cwL6ITHhnBhnPxUHr2c56aXvbyp1HfuZN2mOu6ahf/20nrch5WUlp5Mi/tdMxprbwvT0fzL++P905Zgw6mbbl7084dh9LYRUyn8dNOqqznjZl1JPSuOzoFVlHHH+4hJ8MJdLsh5nZ+3XJwHpOSkTS86WwI7LIwQsIomgMsAgL9IxMovTfB6EOsVXYNKVsxARQa//ZqC0SFucbVygqgs6K4HF4u0eicWvfA6nbQI/DxO9LJQCc4CXIySZYuS2Rz6OzyYT0oyZE4RpF0FsjjfsxjpgZG0hfunkm71aHjagzj3fZJt8zQPsCafPM/fL2vckd4rHr7iPghuKlXc1Z2w4ZNIXUJgEpfSkRhs4WUfkJ3NlmNtaAVaghm/vYyPdejZqfEp8RY1Y8dCWSO4VnU2fGSagVkBgHrecyLxK9lJkvm5zFmH6mn//ifXhOdqKMRLG9C2othNfnqx4i55Vaiank9/A/yYL727t0PLflJPqVrcYJd190/BXJLrsIohQ3SVSzDDUjLaZG3n78L6Y6zL9PgZjZTRH3NRor23m4zvczW5cuDGOnCpQuARcMxr7Z1QIRHEIadHYbFy/T0/nYizsXf2hYVnlLo8lce6gJMrTf3n/Gjv11VpAgmBmU9Hu9USpt3Lo0+tdRf1ACZlR4HWcnx4RtvTmzIwns/pSwo14W3GZTuFD8jHe989GqldkKNlAgeMpeBRQASeJSyXJLlLKn6Ncu70nj4EeU5zjvfOCzMdnzq5vJsrHeBLa8qIB+E87lc/nZlQ6xuqAAwp99OnKjFkAwFbIFKKVFcVWosUuIcx3GOcG5wDePyJtt+TWwYTj/6o69KFz9mNKQ6Y1RfV1z7GaTRi5UXR9yt6Vzb0q6Ay7yHPAusFNEt3ku+fB97JQJI5jP0l0fEefwehw4dauU/VAZEIc4NUI9hynP8UZ42X7Taai4xQOTQhkYvP8iiDul62VNsmWHeNMu5Ztgp2G3nFP9V9muzNc+lbmRkHMBjeCDrih+uPZ1Dd7KAn+uDBkdGeFcxDHE77NTcxQmBPmfPuKJd5Myc0N8YugqZIWWpayNF0giJD09kiCiXjS8aXTQuABCOneMw5tunF9Nn7sYWze8dnmNj55xyk6lmtUA5XvLLswO+SEb/Vrz8eNhcR3UeTz7ojHJpqnv5fTx3wwZImrDgqst0bvmvem+Yzis+OuqfiYmJ2MTTIff/Y+9NADQ7qoLt6r17lp4tk8lMEpLJDmQlkIQEMAlLAEk+IWyyKbJ8yO8G0V/WT1SEH9lE8RNQEBUFUQRFdiSsAYGwxBAISSBkmcy+9L73/zynbr3v7Xd69s4MGqr7vnVv3bq1nDp16tSpU6f6RE6c+oEdyD+62PqyhOn4ONZrnKFMTw+lxz720vTs5zwqTuFyht6EUClfS1alQVuCWx/zQgp4UFFOJzsrVriqnYlvcI1QIQljIcaZILemtJfnBuwplPdc99yzCQ4ZqFF87ehJZKtZONPyZu32kup99lVtjBMGdGumcmPjrNcxG+2CE7sf/kp6+BDQ7eIM1UnlWMBetWPEwCHMV5N7cmYgDU4gr+vCooUtYWosd7XDSfk8RgtNoZ6yqAcEpdEkchFHDosbiZzpTgXnl98d6K+ETsI2XTgJEvBZVxYtwlwU8ZQcNsLtgJRpAtM8m1mF/tL3b09XHX8KXC4w4FXs15SFwClnDKCRboTk4Co1IViFR+wj9WMpcv0aJShEpoJHLmnjLYWu4ldbkDJVJ3JQ9/30oxEFWEverWWpZUsGc572Bb3Nmzcz/V4O18QZJByINI0+n5xVbMvCas0irJmMjm5jkG5Pv/xLT08vevFTIguPMplgGbbXeWyU5+AIg7gsIdPPckjLn5FgzTGrozwdbH3TFe5Pgmj88k28PMifO++8M76kCOEm2NfYDZF3G2CFigeZ8v/8z1qInRVGYAsg2TyRPIvkbGShjzhhVbr2zh3pxyzjL1p+NEhDg3t0GwoYHa7fw7W1g0Qq4nawBUF52RRqKFoYcTuQh4H0IDRuZwo8zogcU0pwRB5Ljkv7dE6hRZtiu+5gQZ85u+bXQeyiw4od5EjZ7Ipli1nI5KIsTrsRomOh5WZMDH0PpcKHsjVHneq88mxtczcxuejPFthka9Nynn5KnAWriE6d+HgPzJsd3krUuwnvDNIdsN9K5ExkvjDDSxnqeRuuswy+392tWsUZsqMjEDpnExYwL4hI8CbYZ71r587U39+brrry0emal0LoSEZLXRKHbnE1ylNL2+xLPXfPbreQOnfmvZxbCVuzZk0QNEduCWEhdsYpooPdEtxnQCmrhWxLt97yI4hb8yMtuBT3M4JXIDG/vxuxm2CJspstNDpP1HJ76HMvWpNOPbo3fXfjQPrard/j5K9lHFuI1Vi4gBEI2gBC/ymmusrD0gQEkZGsjRU495iOYeJiAqsnU0wHXa0tToJhN5AZkEDJ6e2pW5Rv9uWbZtGpk5PjSIpMWOND5CwUT2Iqd+YCS+b6nDqjrhKFgWB3LE3bMVjwHzcNpNMv7g/OTtxqV5BNvSraB3fnB1zO1+1JVX0y5CLDI/RDWfboLDPO+uvsP+HKN6rtlLCD8Eu6cz4tac8JzMRs3vgt8VoeVQp398fSfgy/MirvGtgOnrG6Dr6Njg6lY9ctT1f+/KPSS17yNKazyLKYSPQwfQ0OMAhDLk+9mplpr2ATRLgl09qjRExX/DrWrljRxdS6Lw1hoFburxBCiaFcXZny1pLby+38cLvllluwiDzDThAGbkU/7Nt0KmtezYbdS7L34Ve7ETu5FDvD5PggK1awyCw2rEfWtuasZelSruc8+vh0Nz3+JxtS+tFdO9Ldm3amzci5trG6NgnR6OlWAI4cb4QGRgbWx7R4GrPbwxDFEUbkzl628sgJQV0kMg7gKqso1tPVkTCHHNhvEDI+UYVFl6fL8pAgPD+u+oYqSnA40KmQ6YGYvHMiMDndk8Y58/M/77wrPXbqAWm1gjk4g86Yv0K0KauGDDqr781DdxD9Nn94r/xamgoAjfRLZzbAewGP38rlhaa+cUoaB+r7bc1FA5d8auHmH3nXw4hnmfboJBqz7PhYnAYGdkJQZtnQvxyF6F1pcGg0nXb6SelZT78qPfnJl5h6yJvjNC/iOQ7zdeBaa/JCKrefefvlgbnC4TnmHXvssenmH25uTFldnCicX5n+7n/qpSz6DrPq2Y2lm2++OZ1//v3Rs6PkEDtXZ9H9p34/m8ruDbZziJ2N3tGD1V7B2is/o0he/BtLvbMcUMJKm/unj2JwO+94bo5XILsi7eTDH6J4fMeO6XTrXdvTxl1j6Z5t29MuDHVOwd7N9LAShsWTKUbWWHdTzSSQKv+SSCCbnBavDtrJ2ZVpbBBT8mhyKhlxDJduidwahnRxRIIoJ6jJqklXkyFwd4xsTl+9bTSde3ofdbdIVDqwKqNd1TvEsEw7jjxLZyH3w0VliFcBOvfyXA+/DmJTOv2B+lX2c4gYcI8sS8et4jQAWJ71q7jzErxcbqeDS5b2piWzDJqousQCGSotD3/4JenVr3hxOn4tqdi+XDBTiGTQJ+T4wQ7ELAho6pnNuS9QKeCY87LlQQLmSqvO8hQuzudTTz01/ejHO4L77O3FdFlmGxu+cQ7O5ZK5Ev3FL345XcDB7WW3RCGmco/tzud/5uaFwLytHyc4MUxNwx93IvDogEPTfLmDy9KK4Im6gt8EVnJzDIYlRlZh8umU1WH2aSwdn+5ErQpZf/rhnZvThm0sYMATjbCiO8qUdmcX58fiu3FLFzsU4k6UB0vpME3C5QtzyyjZJGDVB+E5BWNFzmklrhBNVV2CkOHLxbl3FlMmpOYiSV4cMb5E0CeX86egdgPIF79y653pKaeflpaQdXCIpG/ZMomm5hZJl7MsXg47Yr+FQJWCZVjmsvquFLq8xw/iZCV8LyyIBWyavlP9ymbaXvycdgWMSMmfnGbjseRvnhK14jcj1O5My/La7sQlfm/PLJZMNrOpn4FpfCitWLU8vfLlL0tXXnUWe3CRomAtjJlkuBmsmcjZee6FfNGenWUs5dRvrcOev5SYSex0Etfjjj+a2Y3yw0IEVab2An4x3yRSA94lXcIKgeedg37Bfe9L2dRVnZ7pTl+67vr00pkXZCV33ktPZSNUlJ/fWae9uT19t7dvDv2dVSutq1/qGbeBF3G3h5/56rT3eswhdmZo9J7Y0mMDYMctD2DRQE4FdOWjkrTPrj+JYyKVgnz9E5CXPPQMqnDG0Q30+f6PBtOPpzrT+348kr67C2VlprfdTHV7ZKfA1pge0nByXy5eTDNMC5Ri9ytPSDORCkQIxMklF18kRjElNcjv9eMej2cXHGLRwUCn7FVeyvPsVG59m6b+M91r0i07t6TP3T6brjyxLc6P7YBL9QyMDpVO8gdh0bhMjxxTzerIOdvMWuhy62SrzjwGnCBgqAIpOxpnEHM6OI6MdgoViW7kqTHlYiAQug4MolN0PFIMSJGwJrIm2DzfQQ8zDY2htqOn5xkech18xkdiQM1F3j6TSnXvYBMFjU5OwhjWbLiIY45WBp84MQBi83CaM4J7ejyXoj09/3lPSU99yhORX6HoTmxoWiYAVSNkGZkzFNvM9OZzFtgrQ22+GK1hhaszvG4K3YW9iy46K73jL97FFBq9VNS0NHaQd5MQl2mEuBIuVr1VvOc5ysssSljEPQlFvYmpWEFxD7fuOe/oWJZuu31XugGZ8skn9aNqY72RR89in9GBnTj1mkgEc/0iV37K2wpIjeAKPi3B5fX++1X9Gh/kdEuujWBujJmZh8CMCInsGRRm4J49I1o3gcHFbvZwTrBVqxu93vxlyaekXApe1SO+nPtT6FYjtHySs699WL2Yj0k2rBFuGYg7jf0wpHdUyOkDRhQNp1xrT1ya7iLZL+2YTbfTWcY4l8KkpzCi2Em7MggGRxFgoEMFL9UsFDFJSOQvdfVd1YFiGkse7VC7IIfEk7MrjZ2TKR9KNr3P3agAsJuV5TEk2x3o3gxN9qTrbrsTayj3S12kuwrhtGlEXYUxD7mLYiYoP/J75FzhBvZWAs3gq+QrR+Lmf61HL126PKZjduJJ5EDwt7zPdXWqH/d0SjkILaN0EK8XwjbJ0ZhhuYQ27utdWin5CpjiKiDZiSO4hk8lSrywHUq7+MJ4ZNYgetU70nnAA09Nz3jGVenyy86DaKPrLgYTdWxkPA7RaXBIJtNw8+Xry5JvvcyNjw78hnKctP5oOEt0NrHd18VAMKvxTQ1kADynmVG1SLmUSV/EL2Wp6krExqBd8Fk2Q9qHMOmD//zR9Jrfe2bUwAOyDS1T5gMreCnHgX21f7H3nXaeJVUDK4nOMJC6fzpbjfaZAdYFU8DS7UpTuAKjervtO699x6iSP1CvmTAYoKs8fYnFth3b0/DwaFggiffUJjTOIU6x8yIHxq/cRUxBnUZy7yqrTmTwyk4rxdMYKphOgz3YNYN981nsYNwDESC+XIaNQ1XHeD/OKoaGXUS0rNjsFCIXtAvknEAe84M7N6UfM+hKSJxGROkr4tqoUy6AEX7qncq4qkT0IpP1VLdFi3u5VxF3BNkW3AGtw65g4IDKEE/KuTq4d8CSo13cu5xRl33FrDi2YfxTMj8ygHVodtmwa5r60/LCJ2Ak0Mp9wQgbr7qig88DsgifB5ik9cu//FwUhc+jDnA04P7AgHt9IHro1zVd6QzNkP27y22/f3Hnj4XOczrhhOPBN0QqbDHU3JX4FfcSu/11e4CNBE1u8jOfuTbOqXXF2QGnk0VAd3MIf2tRrkxdhX25RHiv8lx8ghbElfT0m6701TqE6zHrsV1xl0WfYIdPzMz5aJgtjVGpwJ2Srqm11qe8292v57H720MMsShmEBUUd7lRHUVuaGBwJEY6pxpxOjyIoEzDIxG9PEshy4z8TD5NuRHpVX2gSeRMl5GBtNWdc9o6BdvnFfttmVLNMkXymuHeMypCPhff+J1TC/pkFBLOhVG4x/kQwu82OLnhzsXpU1+/JxZtBjyYonRovpO9rD6rfMKq8hHxCDigHURmz1n3QRTsiArWJxEbyLkNDe9gKjoVe0jlxpnrAmt96mcH1SfMYXYCRd4pOlUbq6K9cL9LMAvlwUm28ygmORQV5Fa3LBK/uiOtBtY7EAkswsL5XYsTxr6vpfnmN70tbcU6RVga5vOly1wyg7ODk5qaokM00ovgffyUstqKpSX38cl+vL7oogvQZCBFkHWa/bnCWzwPzi6+N9+qbqW8jTrWMij1rwfBccvtjHCswIc+dC3iB+oOwYO0kmdtj2/tm0Z77EbgajBfWBDMyb31oZ5Vhnoh0Pj0Oc10DQ8NhR+HLJHA4iV5P3drWo26iUr76Hu12u6ezKGEWAn5glyYZkqe2uW5FWOc7C672snqkatKCnlnuQ/pDM8hoxMBaHD7h9ychK70lZJiTF3JrBArFxLk0oxnmIeDTfFxVjlBdkPH7eTqohO7O8I0S7xJypZJH6nLToOgo2jDf/3WjWkHQVOVTlMAlbMu8mkd5BWFqZA3EDQCjuBPngIJg4wBcRPlcV+wsjYPCO9isamX8xem4Oo6OwwbRkWDKTyK4e36XA0/DqvR0OVMWrpEa8dOHXelocHtmPpigEBu1I+KktBQTpgvy1FdQDYGrSCcFaxKR49iFlyxrOV9FDn/iAuku23rrvR7v/dGtoxVwUT1i15M63dqh7HhTGN/XMm37u/Pd/PHAW3ShRc9GI4OIwRsW4v9vyBIQ88uiNr83+4tVDy1hLaph3L3YZLqfX/3fogeHC5jyvAQclQ4vnACZD5neHXVbkvQfF8ceNh8CRtmJ8kdpZFmPPIu+xn+Sl8HB0chbv2hyaFQZSL2p9OvFYoGbpRMqqR83A/n14fNSVQkEXdAOYZRS5lGTuc1A5ch0QuCR5yG7KkidEHk+C6AEk3uljWIo0SRZ+V6pu2CRjcLB16u7mYuQ/Dk91ZUoqls0EWKTgieyGN+Gj3w6vDEetjnEAnDsWxjZrCLhZov/hA9QuLJjwR2xF1eS44utp8A9/N7ywmnfbk8DVLQ7SoixlqHd6WVq7A4jVByZGQr3PUg1RvI/uwu7rka/iDJD6HusQUERHkcrfPePiEylDZvvp1pMZB2xbHRoW2xFhRzMHAxInzv5yNK81Ukp7WLMyW+/4Nb0qc+8/VQGg4r7+RS1C+4bXHzpd8SJcpoOVvK2hptP56VI568/vi0Ao5zAqMEDgIaOJgc14aiU/26K/W3jLxpwK0ex/uqDiC5jLZyV83ODw6Npbf92fujHXsxfiDowwVMq2+qoIyz5WF+v3w+/9uDDLXCcyudEzKzkmHdj3ut7xiNfkzn6sLgyLh25A6xfVrnGeZwaK5WMVfcYtXNFAmXqIDmaQt9pqtnEYjQF9aOp9mzCI/HFBIjoHTC7GysLKOLEKmZIdXrGVZvvXdKqpMj6yCgG1ZOGUY2G0V4tRyflYfl7ABZpZ7i91od1kkwLaTEwI6jPwnyjWHQcgzTR5/9r9vSI047La3gG4Hm4obd3OKEWgr+T4vLHF0uTYFPCctKrhBp6s1YkfqX9qXXv/41MZ3tiVO2JERwtcDJ9prjAyMXJoY80IYEehYtTiODw+nGm25K7333e9Pg8D0gJ4cuwYFpkj8TMiHEvcjb6IQ+5HYLuBslnG0Xw0mO2+j8ZRGpM6079gQ2w9+W/u+f/2U69+wz0imn9IM3eZV4kiljV1EZiPYs6ZqX7Xt43MpV7emCCx+U/v1j14aBAtVf5Ow0US9Bs0+EYrvFERQNp/hmX+Xka3RBPYu2f+nK9IH3fyg94fFXpLPOXpkUa7ErE5dhm5Odm17pP40sq5uFglBJP/Ct0a4lt1q5fFfatwYDrUhrkuuNb3p3esKVj08nnbCWY1fz4sQUcGw0b9RRWJKmMKulUXJr9Ree2LXmUHsWjYOz2zKA4QAaTW4utk4g2lamoWXFqqGKjK72OQhScXLijMhbETor7PS0nD8hR+fZoDEMCgTi2QGD8PJc4KKfde+Mk3OaRVblCKzsyh0hvYtXpEF2k3xv01C6FSJ9AkeQoXeNurVL/Bo4Jx8brfo+p/LT8ltDrqpIefO6+5+xWYie2sjIULrooatDR0098gayEt97kVY4WT19tkQzUOXw2I7VtSw95MJ16Qc3fSNdd913YwRWfrRneJiKrvJtw7gVFS1vyck4xTXrsXPHYOpftjJt274z/f4fviH97d/8Uciw2ILNFDurmZSvDrcfsAKFPaHtkoddkP7js1+gbNjWw4rQDCyKM5hQN2gUrKpX4PFcotSIUm4icfuMpq0mGHR60j0bt6bVq1ent/7JO9Ib//gVmJgisrCcDxfnA2tJu+Fbnn2UoxF3HzeNMphms/2aX1X5FHSoXjgI/+u/Xp8+8pHPpg/9y8cg5n+X7nc/VKSAq4s8OS3phK6W7j4HiQWrWc56999GjeOV9ZLYbdzFyh/8kWoOrv3ZgE4dZcIkcqzH4jv5zHIeP7bjGdKNVWHNTLmA0YVS8tgQZypwOPplTgAAQABJREFU7sEyNeTVqIcMjbLKOgPUVJlA7o5wiZxh4TrZvztB+BjS4zE2/Y7DRZqmRLKPeH3o/LkHVs4OCQijMgdjI9sahZh1rD4hfeCzd4Wh9gHUZSYhcxK8UCwj/+ys7wIhS5XigXvz5Q9XQdHikrsQsnAawn0R5kAYJ+g8uejuPvCSwRb+4Zdn/C5gixdxlNspLLfdXv2ql7KzQZhh9mtsANPhwI5FA1ekuhEHhMK3mKyzc5crh1S/lt3LHLKTM22UnfCePnUDIacsHN30vVvSn739n8NOnbgl6o+HfCenMwjXmdPzMCGo9L3thJNVxP+5n9Mq8igcNOe0YI3FRYrmAoUFsbQVHHx0wKxfhoUzHklSwZgQV2ajxO2+3iXI6sbS9266Jb3pze8OOiesNMRqvcvUPrhKQia1WjrHVWUA290E2SjTnDgH9mDL2atyWqYpYbI8+crqXrQTWgE6p+XxCk9557XX3p7+8LVvZYoObehYnn7pOf9Puv0nWNBmAHFx0/464mptOBYi4eanUR53zhibIao383lixcI6a6sT6pWzmiK31bZY2yEWM8GKxxs6FDxSRLcjZQInx5UBhlc547iKuwoZ0xLOth0d2JFOXreK816xsbdtQ1oCKeruUhmRVde2cczFYwKIv05V2iGOu+BiplgU0djoJH62sMKkl2JkGR4+fDJRoxE8P0Ekm4Er3IEi9F2jM+mmrSS1mCk3xFodwmioauoddKQU9oj7wE+CEog3X2GoJ3XL5J731NkmyGTC7+wAxRdp83MHwDKOp3JF3GqwXb6iBysjv8kbhcudqIRsZzqiVWT08ZibeEyhai85F7xGuTIOGBLODm/K4VsH3zfrIQHrW9xPh3Yw60n/9MGPpO/ffHcQbPRQQ53G82mV+Xjehk5VGxWeD4sDiNZgEYvEVz/5SgbmXSj9Qnjo1Q7Ouf5CutVV9Y6vW9816x9ybermICN+dnLAlTtHvvXtG9O7/vKTEBHyZ6FCof4EhieFg7YnnUp7ilqGZW7POlwzIrfmezDPpaz69bbL4Zngc6ofe+SHh5uqJbbdj9hw8Mdv/DOs1PTSXssT3RXZfsIe4YuwmUm9ANvwMGa6upeQtjMrOF3wr8MX9HP3Suc64c3jrP2COrOLXhOp0si11CV2jrUb0Y0K68XVKGWU3Ih0JD5wEUFXRohQFQEJ7GYSFGw1pgH23i6mA45u+Ek659iV6cyjelP/+LbUM7MLYG1Do3xX6kGzvpNrooOVMfTrOpb0hWqK6biY4SKGeQWMqvxmq4dY8gaZuoGmZRuGM9yEvb7P37Qxzs3N4xLTNbFJKMqBRANY8iPnLH6pz+6lqDpUEJK5b0WXggxO99WZy5f3cy/HISAXdEg6P0XHkiY95ooLkLM8GuIyzEhM24wMZhkLooopRBS9IHjkEvmX3GrlcDSzFLz3Nh4ldEHwcrywqgwSqGYxPILgH0XJP/iDP2ZayzSWsUcioOURUyrOqXvhcuZ28BJj4XzRgf/ohFc/+Sp88A4gaYopOnod9sG1ijfFwbs16p3D8uBf3otuJbZpMpth6u4M5I47N6YP/OOH0/XfuoXBWVggBc8nngN7OHTwOIwixMBhGvkKcRH3DOtzYNbMcSHvaNsQRSEPh94u4nwQbINEF/rxj3emX3nBr6UN92B2Hv3N7m6O+cO+5MQEzAkHfD3jmb8Lo+Mgkhdixl3cpKJlv/Mo5r0UK+3NzYNxe4t+cO8y7cpa0h6wvQ2KPsvUZiZjMyO0qOko1Cxs4HcNMSIqyLGUIbOdZf0lUKnj+rvSySu607Me2ZNe9cTj0vOvODOt7xpN69qG0rKZHakbotcxtYu+MkReo8hMsKVHY8vJBZGLgmWC7O4v1VREPfNykSNkf9x1glSWd5yV2q/ftTnOzvXTaqGfyNZtX6A+ONgd8leUreEyEHmkotwLdTno8KtI3odrNIUoUi65pPwij6Y5arfqKyCvRPZ5L3hWesCZ6+EqsJoDgKYQ8klsnK50YKI/c2yNXHICc359J7tonsXxcUXwlixZknbuHADp+5nGLYPQdqYf3XZ3eutb/lIUinLom5+7c7zXiVu7TyPzuwX9pZyis8U9af2adN45D4zzapUDS/DDBV7bLhaOK9qIjwyPNtJvrb/xwTLay8FXYiaOSsja2dPZ1dmHLb+R9NrXviXdcMOGSFmOz68mQy4ORPku8uM3v4kbfoS578pVwhfCL2nazyDQLPiJeVE2qu7xH1+57o70ol+9hvN9PSZgSVq24qg0wPTcGZXy366OJen2H9+TXvqS16Utm3OZupBZTqkeAQxUpg6jC1GPPZfZkiyYs+lKEwbgaDCfs8uz9W1wZdgCgHh4jgBIXTWqHJunEOTnGoAaixK5sUeHsMGP0LefaeoYq3KPf9DadBIZ3I/rCetSesOT75+efs790iltg2nZ0F1p0eTW1DczxL5dTppC3tTD3tAupmDq2ZVVVAmdaifjFGfSvYj0WhHD923I8VSgVcVnCg3On8DdXfuDjLRB7IJAu5+0XteqykfCs+OUqwb9KJ/9KabeFTGJjlUVkneijk0QV+u9zzi5lDIoWXUt5dq5g6viee2a9vTCFz6LU726sBrMdJ9dGQ5m3V29YZ6o0aHmdOacdvyqiOy7Rtlyu6v87QlvQ8PDcARLWBGmY3SxGsxOjiWLVqePf/zz6eOfuJGwZlq97CWT6Km2YHvOJXbGy2k3/ea3B3snD6yTrkjsr776fwFYuBBmMRKoXP+Iwk/JvwI7uF6c1bcpmo64wMBV8E7gqb6kfUYl+AmEWR2sGnVyPOg92Jz89d94VfrKV34SbWIbOdgYR2KTnQNcKal9sMC8mX8z3wO8i3Y1HS/zy5ezHiACl5anpmGwnLL927/9V/qta17NjirOq166Bh3Q6bRj1w4WoZZnXVyI4yj7t9tQ//radd9OL//dPwhuUOB0k8gQ5uW6OfLVWUjOa8912PMbPj1YZxNGHWsJSOokEZvQsZtGpiAL2sZCgR1HIheNC1xceBDZZVANs0EL3suVLUOTupdtXz1Mlc47cU26/EQsTZHuMuQTa/F5TM+5/+L05mdclJ58zhlp7diutJwzQ1ezeNGD8mw3QlpXbkU0p8cqG2fFY8oFNLyce6E/jHEUIAqx84Ah9rUxaW5LOxh5vvLDO4V16OvFsndU1glBRl+8n1JXb+7mvXcV4zS33YBBaztasTgZjHf2Tc0slTiOXfQ9ViJP4zDqJzLNVEcvsCEIXl4tNdHKRceoPUcHsTTNskVMibeEQYIH9XI67A6CEfb1rli5BsXmCbi85aijvBsuDxPTNESIcaps7Oy64ufgKs38UP3mss4JOuAH8CoWAiAoVO2ySy9M69evR5Y2Evk3RAxRp3ripc74gfDluR7HqmU1lrzgwiKde50hJGFsAOSdmelFBr4k/b+/+5r0T//8jYBFVL9BhIR3SZv7CJ+bxyE/mWYjP/PKl9BlgoRuZkJxOKU/ev3701ve+k5wpA/dTThxjPx2YJjPozC3bd9K266C8+PdiAcrdXJ40pr07e/+IL3g+S+LerF2yE4ad420IyNWsCTB27Mrtd5zjAN8Y4dvdfWwjVth7dBbi5VYhNYib+EUbLAMpIycciNNomcqjJAoag7t2JJW9Lalxz/suITldCzqpbR8diD1jG9P6+DaVgxMpmNh4V/04KPTm57z8PSk089Iq9nK1MvJTHJ2jrSTzGODkyOrsIxSFXoaRPNMDSXeeYrHCiNY2441FHbWpkGI3R3sBWUmTs/2I8pML7chfzonstSl3rEKElZ+ndQ0SLWBhcBEzayoF7ssOLHLM4P1DeuhHTwgfVIdSdrHBQzds59zNQYmz+U5c4Lq93lUYzbDL9rNzTk+avz4vroaZc+EaDG7NDxha/HipTElGhudTMuZ9gwOjKa779qU/uqv/jpt327ZsjA7OKzQvCdHqU+4OlHzvv5cRTkET1iYptm5UPHUpz6Z8nLYlGxm1KuWeKN+hJW2qb3Otxmm3hf7eaXPOD0uHOMUnME0Z6js3OkRkh3pT972f9Ob3vKPsXjTTLLAXlhwb9JeBQzNrJqfHOxdoz7mmZ3ijh/evCO94lVvYbvbx9CZ3IGMdQUD2HJ2LPWxoIV5teEBLNm4gDFMW26nfl3pqFXHMIVFNNVF//vJRji8tyO3Jc2q/P1LWbTYR9mbpSilOQRf8Jl/TjRzZt5n0pW7y5YhOgzstnKE2DtICUPZkngZGZ0O+hWpgQie/OBVhSBrm0hrWe37+Qedmh4MpXOD0iynm2mjLmrL6sWKvq50NB/0Q+zPgNi/4GFL0kuvun+64vRj0lGTW1L/9FYMcu5kOsB2Hjqq3J0ELwgrxK4dpGnnIJcO8tdac8hHWEmbRZF5CpZ/HFnCTtJumI+SGJJ7TiFujtBP7rTNrstURS4BpAuoymWhMFwUjeOVJW8gScH4kkJ5znWLXwcCnKpCM+6hrf46UOWR7Dk5mmTBYhUj0Et+64WsREIE24aBHQPEMMM5ZWH8xi/TDhKLDl/yqvu8iw6TccrBZ5glOuV2ElFPFXN6OjTISWOLlpLX4vTxT34xff6L15NXJcym+mOhfW+6Emx9nS1WvyJwQX4sE9lG6iNwLFc/8fx0zNplECKWFxG/ONjm3T3CHjhUdcxwoIzBZpdyWqSSWi6e8im5VBWLHUQkgIWQdqOO0oZe3yR7H6emutP73veh9Kxnvyzds2E0VDty3zJP4U/+Jl1c/b6EhV/KUvw5L5sPDTwiqNzjizKKDfX/7u8+kZ7+i89Ln/vcdXB4/ZjXX5W27xyG0GHNHGX1gQHk7Zgec+W+g0Fq5cqVqQt1s9t/cmdaffRaxCa2JwuFX/haet3r/jb2BVsqp8ckvweXy93xGtweYhxEMMSJ6Z5ES0tekp+svqWC7kwagBV933d2pU3wY2PwoBoHbVeBl/izEBfZ92kawX2O4yzToB0FsWGSS6N2IJ+ZYdqirO74jpF0zWWrY9raBuu7BGCE3TZUEZKboatG0zKMCuV9PB8LVTx/fW9af/zq1DYxkHZt3UA8iCiKisN0hjHg0YkOVwdz2g7kK30SOjqHspEpyj3eAYFmlaiLch3DPtJLTluRjiLNdkZxCSJSKa5M9PaIM/sF0dxkcrne3X3XYPrEJ68FmREAyfkGYTCh3FHbAmnJX1kjHTkfJMStBE5Fai6dG/4LUXGQCQ1+2srVwuc970l51TQKbrrelFqU+5xfO/pd5t3FdENdrxLX8jqdcpqmTEmasmbNoiBK/3XDtxE4jyCT4VDuKWCEhQ65QPceOyXWyoULHp3McfIU2UHOlPX9854/6tQBIYmTxBRH0BmURJmpnUn8aUf/7ktf/kb6ucuuSEetJj0+biee2DjjSWTC0BQDLjnleLbMhh+imwSXupBPRhYUqkd5CGU755zz0oc//MEwU6Q1j05EOQrjXVVsc08r0fI5GQ4gDvC57jkh4Zzh3qbqlOwRTqIagKZt1ePLU1nr4EosAnxQQn3EO+7YmD75yS8wdZxNZz3wdNqEKEQzpuOfMHSgyiAgVFgWJ95oBEJHHlNQFVeWNVsVclBemU7M3P3Ub/FdFVfTiOLSp1EU/sj16WUve0v6j899HTReDAOBSTCm3TIQbcyMnBU5gNmmio0Cz/jOXROehxsLEsomIy4VoB2/9e1vM/2dThdfchZlIT9JCAUwnWlmcPkwInEjDwZCa4GdwIn/CmY8S/YkGNxtHZxMw4z8gaQA0qaVu6dbInwFKYH4GFZeO+FRe7U+gjNMGcxScGLZxC5WXx+QlhGuts1yD+o2C7XnNcRf4XL4BPuyh4uF7LSK6+Fomf/GI05IL3rUhekBPVNp8Y4NnLHRlk5cjrrCEPIeBOoqwU7SMUY9QQ0WWuVht+K4pe0YpiOTA9s4cjJqhVDYERInkPFs+CPllG8KeTk3p4u5NMBuDudQEUTe5lF+byjguwO5yJ2R1y/sUF7P+MUr08mnwlGvWoLsZVfuIDS48hbbXa5ZHbjg6u1YlKp5cauz/KUOEVCP4312Dk9Dw3Di6Gi9/vVvFevgboQCCuSeLUtHubddV4WzCpuDYFF04XD8ccvTk570WKzG7CQcIEEIVW/yHAkX6iYZ0LvRHc0DkhSjcnPqXccu4zTr3ojuDZ3FYyPHGME7OE+lf9natGPHZProv30+Pf7xv5re/VefTVhYiwFCnAmioA6encwsbEBcSNOhYvbWUq5OT2iD6HXQbsa171kSiY2fymG5fc9nB6APf/gb6WlPfxnGG96UNm1i3zXyuYRcEfLFh3kwMr0ZBmsXoILjbdS5WT/zkCTbxqPUqx3mo6dnefrov382vee9n4kyqE7bxeCyY8cO8uFge0RXOgc4m36BObvSAO5NteoSCMOcQHSlDfgf/PomNtazegI3FADjtew4xBhkdGQXgNNUBFDjT3MAziwrMlNsbVqCTO5xJ/Snp561NDg2yYwiohlHAm/My6HcrG0wpqezXAJR5/gOPCgTm7Whfpfef01at3JduucHP0q77vxJWoHWf1tPXxpAZ0cLEh29yIccLZA1YWQitTF0LEM22D+6OT314vsl6CarvHQpWtzzK+ywuda8OGiXy3ownF2ZnlIQCJwdu1maeCccgtWxnMrStGIyhcXfJwJ7o5t385uDqYKMk3p37R5Lx7/E5twHXZA++tFP0560AXLaQG7aVkXbbF3Xkbgg9qHlrxLzCKeMbd1yD9Oi2fSwSx4Qo/8iz4NoVCiXbU5dmy8bsQ72Jg7CAQ5tEo8qV2Wbx6w9MX3+89cFx6XAfdcgOL20n4HUKZvbJYFHfJF/5xL4+QqYcaXebnJBHTRmOzgwHRygBI850hhWwVFUW4RJrs9/4YvpEx//LKoeE0wTj0Vm1gv8QQ2Sk0i668Oix5KiBIh7Ob/4g8ubjLajf/JBJn68J44cnJzcN795V3rnOz/Aro53pk9+4lrkblrTwd5eLEDQ/rAFCjzCBc45QPMxV7YnaV3rdfNdFCIGBw9K37ZlE7Dz4KVd6bvf/U5au+5U9kkfE6m6K0iu04FndBQbjdw7oNw7xA7KHCeIUWTNKdneSFfSzSjZfeoHO7ERh3DZgYFCqGsXrKfVF2A0UBcdRUH3MA3URtweGq9zdGs6tW88/dZjT07H0Y8lWF526RiZAmg8ABT7s12nap64Mx6TrDD/5PqN32KQIp2E3O8R50L0lh6ftm24K+2ko/RzsjuoElOMLojfGGzdGNY2ju7DtM7Ou9JD169Ijzl1JTs3SCcWPORI7cTxT+ihuNzI/12JnYCX0IVF42q+tPKoPmRqq5leXhc9SsTTIrTm4O1gTlnijFXa0HofihOXFHK7N/qm7/1XOuXUszgEZ3XVNg53wjfDOLgV2myBGq5RbDk2D4fP+ZCXHRW3cmUfg/rS9PVvfgvcYlaBIYUpVZv4s0Mqe3PAz6icv4kP46eU2/CM3c13hnHxoYTOKVwnbeDihXB1B0sP3PNiZJ2TnPmsCMLp8w03fD/9y4c/mj776a+kLVvQVOhZliQkmYCZHr0Goqy6ktfYOGIEZ08wLrahbeVU+Ybv/iR98lNfTh/4wMfTK1/xlvSxj38u/fDWO+CsIJrs8FAlRtGFOzsyAc8imii/Rac+Ejst5sRj/JY2ilj85Ddd4M0Idq2W9i9DLjuEvzSm1Ndd91UszaxJD7j/8ciM826REQhdJnwdmARD0b0ktWC+LKjzE4FRJaoEAsY9bdzOMM/0VBiKlI7sQYJoaNlO5TWIVTPRA4iyujMoTs2ODaWTmXI++UHr03pg3cbekT6IUMx6IhPShZAJHvPRF9UygeNGJ0+tPJE37pzwEB2U/NMiIi4j4roz29KlZ56V/vTzG9M3IXqTaOcv8lAgpj9Hg5RL2CI2veXH6ew1PenxF5wSp6w5RkW6gRSUy4xLpX13H3STnPTVhf6TK2h5msqqKEL6pz31oekLX/pi+sqXvkUzjGMTj4NpZtjbjMRZBHaF1xY/VDfMro01a1ZzKA/GH+HIVUc58/5vSEevcQZBmzv9QjDBE5dYQp7RZt4vjHMQL048l9a5dcszXp/xzJ9LH/vUZ9gatTkI0QT4tWgxHReZpiu2ysQy5ppCC0xEeIP25MDrTqZIE1hoUP0lVqwpi4tJ9i/FQ3I6S7F8qlxrjBmM9d+4cSz9wz98nO1m/4i8ldMDV69MxxyD6OGolRgaWIV/FIMVU08adGDXYLr77nviuuMnd/G96U+EHqVnkyxeehwLRhh4hUtVPCFRlLDrtHTkgkp2pa2FvxwtFRNQ1EG5bxbJGNN4TXiOoKMShjogtB3sdXcvdCeHYw1h4PBP/vSdaTEmx57whIdHWy+CY/WMlZ7ejljUWnhiR9FsYIvHoBUV8Mkq3r1tJ0XPnJzstvQHaPBvBa2h01eWBRDoTLDY0Il69Qza0R2jO9KDju9Njzt9URCZRco2cLHn0sMhXOpHsRCRZKCw7wJ/vTGPcnnDsXpkQiCLDUQKc+xVZDYCpN+89Jj0g9lj0ueuH0jfvfWuNEjjTGGgchEHmpy0sjs96aGnp3MR/mVmXOKdR6tgYJttYs73Qcfw1NdNm8HHaxoF515NT/tyQfSaa16U7rzj5ejCbSLc0R5xhrItBovgZAXiITr3wyqz8fwH07zttnvQ5Xo3MrznRZ8RFeSksrMTLmwXEI0LrYsBHYzMnJvZO19I6Z1/8dr06Mc8ByIvF4dMbJrzM5h+qztHF85Fi5HcW5EqE4R4UcJlKhqu3CMLhTvshkFwt8Y4TIF27xSvqOPonuEVy4+CyI1BfFVyZoWN9NRXbGd3y/IVx7EfdZTpv6ufHIx1O/115taIkzlE+iLcuiam1O+bnmZuAxGdRLY9pVVejGNs3jTC6qk7Otifi2iik22WDn4SuQGm0W7lyx2SMmvXsOY0FlFqEsGlrkHwDMHEGOIIV2z7+1nkZMY1wtbTNRxtOAFBtd1f8wevS8cd95Z07rn3jyRCt5I2iel5hCzkD4DNy+C5mUzaBpbj2oy1EwY4iKGyNJEcpJMd8pmKenUhX5hkBJlCGtYBwLpQCj6dsxofd/91icE5DCLGUgCfeU4EJk/IiPMmoJwENZygD7QRKZzX6oQk5j2mAOIk1nhnYe06wlwxyASh7SOBY4lyAdGf/+D+9OLLH5AeeWxnuvy4zvRrjzozvfIpZ6WHH4NKC3G6Y4XKBOksdCr+f+YCAnRu2QMcAz2dg/HFxR38k09aBmfzxLTuuBV0DrmK3OazzoXoGBK+Q3WLUGwT/2bQC5rF7tP0ZCemlq5Ln/rEzXlRJHLNs4CMLxLYQyeypdwSO53b6sRvcdr0Yx2L6jGjhPtJ6c//4i3I7DaltcesDBWnkdEBprD7qn8pK36DEER2/Phttu4i52MnFw4SKQmgCvw9wEYL4cqQZiFYE3Aj08Cou2cps61e7BGytQ9dt2nawWmuXFNctN80mggdLApMsRfZbVwTTIfth3Ks7s316mYGtBTzW+7XdXNAJzIzlcwH4VoVVx21ek300dIdLbmllgTErCieDN3diRpRe/xlK1ekrVu3Bue+THNfWK/uQY2lv5+8ESf9n1e/RtQC9hn/AANx89EBu6d8iCE2sJUoTmIHvNIOWEonqjaE0wlZadGuEDpZbU0qTYEos4z23RR25fROTvdamS48nqV6RpClsMKjbFEKHLIHwaI7ZZ4ONjKP00oVcv5QIKmQQ62IRAOw5hNvLSG2USC+mIuSFEP4utpG01IMCBxNaU8g1qVHs3J7+UnpJVecnh55Yk86kbAVxG6fGETeF2ttIZQlOIALRmQ/Au6bP6p3KJifshPQPICJaQQDUzTVRPrFpz86nXHGiciQGNgYaJx2NQbHwhIdLOggAJ6Y1olcadEiDmanX3cjiuAXY5BvT9u25Q7gpAmEqK6DzWz+7wIv533lnIaxFoZX/7xzjkqvePlvp4333AGsRtPyfpWOKfBuRAx8jTDxtsVFuPVoOrlkZYaZw+MwceR0GgxwKutV9PLa6TuaS2tDxjcGJz4JVeqUG6ed3NFkPwmGhIErjGMQ3oEuVzecu4PZKOIKe7OqTp3MtCZRuh9F4X8cbQb78zQUJqas4ILcmG7nTpaA624OdypUqrrUYeB97dkBxCmrU34Judzw0qXL4PJQpIZDlXN8xzveBZfnNkU+5RKtnM7OhVS9IAdzH4VHboA8TWfiMcriO47fumEbREw9qTziBJJLGCFqFIt/5/d0jj6MNmGeqWtse7roqM509XksMxPDVSXn8z0APYwNCx+IX0JXR8rthATL4DE1dXHWZFHrYkrMiMdIpj1kPpDcMg1lpPOOcNarYgFFoux0upuGk6it5BnRdlrHdSxfL6UWnRgU6EMWYYdRAuj2sqxcDKJqPK/WMHx2n3PKaHTKp2xStwdl5wHXTuRSet1rX4Ww3D2PAxBGYOZWPkQLdsZDdYpEdCK/hge0mOyGcTeUv/S3Xx1IIV4oD86yJLiTSqZUjBxEAgf548KbnIsDuW6uuktFsHgFfYHwPzQ95WlXQWiG4EI1UpEPQFKzQA0FS1m4w5gFRYp7/1FtagauS4KvoD6Ucx11cDIZHaiOuICkfFwjDVPKsXmmG4DH2IYDx2fbkT1gKWi2HVkfV1snJ/PhT84ME1+zaaOxgX8G5qC9GyIzjbGNLkQX6J8mtnLOtBOfFV0vVUrIiXaWmFKO3NmblahoRlAL7+O5+brc2e9t2U76ssrlKpQLH6sWtAKYKVF65StfmZYvX5ZWrNBiSvmabKF6GTOaYQt2FwnTqFJ5mxgNNpqSk9nltPbgJDo9aIBPsNpyLBvJewc2pF+85MR0HPGtoAQmZjpiKy7YYRWJYV1FrWhSM/Oq4pTbjOCE46y2+jwq5MJj8uxiSqzV8p2tTkpQPrRfkNXhywcjV8nzIAL4tqRX0meCQrgd15D7stu9fXO3t/Xkp1n4YXx61SuvYT9rW1rW35d27trGvYdtHyLcbFOQOtoz8MyyIBahWXbuGEp33rklvfMvPx6ExpzccTEGQXAhQ5eVUON2gX5y/q2JKQFBdg6upPSKlz0znXnmKXA/oNgUps/As8mp0RCqq3fn1jPpt9xR0wBpBeMgDAXfxEhdlWe8K8/xgh/ilDlj+BREZfS4JK5eh+AY6GfcyWR6kRbpKZcL2ZzlLGUtedTKar+Lslfv6kxDoy7VDhpUTmxej0ftVs8WwyCaFHvZ7740XXTB2YFfptJUZyJlcKuCWpXBgnjNJAN3KbRV3wRr53kOLSJI3gAAK1ZVaJwTVJYjV+vbeUd60vnr0/kos7klTL0hv40mpfeUXKbABK94IbGpAclO5kKCYPSyPHJ8AfMCewrXAXvWDavo2adpFoU6NLwDmgV/zC0agxRUMSFV0cJ6mUzuzD5xtY5chN73HBDJQGlU3dbTSYpcEL38UaenJ1z1SORWG9GRWpm2btsI0VEAcWgO0Ws4B0V5Cjk9ZVhyeG4re+973p9uuXV7iEFkJHvYaWDJtmPm3SnPQjnTzDUWU8tFGFPVYLQEEcHm+bfvfS1qE710UmZF3S4cyHmpFAwnBbGLaSFTtkyUxcXqahS2ILP4CEPQyM98i8tx2hiMFeBkYmRMtB/iqqZ54vksDETjYpamIvBuV4lDm82Wy16mywObvTWXppSv7ueY+ddyZuAX2VzjbYPQ5RAZ5k6mxjPIfCVywwObgc8gSsu/nZ74C2ehipKTcvGzB0JY3MJzdrm8VL4UPWcl/mGTj833KC/SwjOwtJlMgAbE9SpCyy4aoxvrrif3TKZnXrg4pq8zE6MoEdtNmk6JmU5O1aaL9KyhkYLK5iBpjwSuXMYMVxLjXSRV0aryzqmpU2Bf5zAJnZ3R7W1VGF4TnM2w+/adwK+gIpwasLL9BGge7pyl/cpzn5ZOOc0lIWyXuZWLzxYCnsqobDllOk7XJHYSig72N3uO9Jve+OdxwLRE1wYe4aS7lSuXV1Mjwg7JNXG7mYy1yjVTGhbSYgSKipFVxwMk6e///m3pdGSZGliYmMSi9jTHWzKu9rF10intCPtGPaCqMAUlvWYe3uU+UQN69bqE81gxA9F/uHcFVCA0x2gLZDsdxEVKKgXbn5uueqgxIc133pFPXCW0VtYSVPmWsQsR1vjoINDMGw+WLetKf/SHL0uPu+KUSMa1LpWXdeKTLsgCH1ePOXChf62GcjirK7GbBtnChNOcjJqVY5khLWfe3ztwT3r6xWewUAB19mL0taLBIUeD0lOq6WKDRlUwtUZBjCJzPi4RzKaK0xgYrX2J53svnsPkE74ED/N18Rxa0Gr/VxD0U/uKvlfwkMH18cF91hVoZIgEGIR5XEKLaRkqDzqnFWvWtmN77fnseNiBNrzqCVkOExEO8kcBfagy0U5yRxNMCyc4p0Ct/2kaFHF5uuE7t6T3/NVHot1UNVuE0F3C2DzQ5SAzDwQqiFSl0ag/zyKePQ+ATCMX1sX0CliwsQEDpK9JJ5x4TFq1GkMHgGt4ZCDQTUVfOROtgDQxTjyrwVliMi9BsTyV431hLvSjT9FZNBYhkfJZQqyoQU5875dxWi+Jp+IhxEJVutk3jItiRB6CoAGrDI/4JQKfcbnSK5Sazu+sX4+LkrRrB1PjtpnR9MqX/2a68srzAk7u13XVu0u5pKAhrUmonws/gRPN5BbuLgaLKrlgwbnfsHUQ0KiJXWugliw7KdT0trvT5WefnC46MRM6u0g0KpVtA2ldSmAnYVTEZpSPaMSp5iHRvAFZXooA5YKjFJi+9/I+imORalf5tADc7imXJ/ErDeBk1nz1jR/T2yB2e66f0e47TggzKBXYW3GA51RVZXLWmuL5YZecnH7puU+H4A1CBzIhNOrBOXcP0MbiCr3DnQBebYySWXbMwhQGJcZZzf+H9/9r+up1d2ttLJydQd3Pe9u5LczT7ntYUNPizqSbhMnXPryCFbF3vusNKEUfxR7f7cFtTrDqqZqF5ctm7Qt21koqjBtYbXjB0tY4tWcQPu+ZnusHVzYnvXra9XvSKm1bfJMPToKeEdPh4tPYEb6XvhHUzAT23AaWTdhJkI85ejmr2S9Nj3j4eRA++ia0oQcRgJ3RAUQIuADqQlE5XHsvuZvxIbgK3mWBYuuOnWkiVhf2nGY3o+/92NrwpIevQssuExIrOK55bYSRrhCx1MQblUWUNDAicrmQkJ3AVS0zN4ojxDQrQlNc0yC8f2rwZRlFjiMBcz1iCqo1y0E9WAPg+wGWUrBMQWxRy+Tthvqy/2HZBUTtYIQpbSQRl5hnqol3H3XCqNEcGeWakKhexio87RBLVwD4V1/8pPTgBz8oELMZ+eDv5NK8Qk5Dk2j1JCM9umXoji1ftjpWaF/x8t8L8+BEjY6hXPjQnbVqQqCRXhUkoV+MrTZx2JOxJjUoG+f1emA5hi0wjfW2P/399Mu//EsYsNxER+1Ma9euDXUL67NnolEBl3RNu3nlEjTtCNrlK05LbguiVK4sl87EL8ciJnF2uyKF8k6/XMaFs0Y7onn57NUkqsTOheI3uLg5xJXAeC5RSknys9u/1h27Nr3m91+drvpf52PkgL4JTZhBbgelAPJYU6JBtYwjdxccXrTIQqueVOWrN/U4wJQ87YBgeSShiwl5U7pUWD2dTKAkdIunhrFTd3o6AeIjOkQ1aV/NawfVUchhKOkUF8JWiE64Fly1ySVSxbdc5csi8/NtJoGupxrD2KYHq8wbk6xfPBJAvKhkiZ+/8lUEe3OIbm46GXmDE426FzjoW9b8PkZlSmvxwtRTlEaLEr7HxbcF6YRF/i6/vDd+LV/N+UjZ7MCadUIOH7CVy/uda/434QxmsZJX+yZjAQGl5ap31qn1oj6qBUkTPKNV1QrPIvYQdvXOVF528HVVsxv1qBG2T13z22+MhQJVZqZdoIp8ClyKXy/Pvu5jrX+PkTTR5HTLfDRp5f7Ygovan1TVTluAv3PNL6Rrfut/g4PjaTsn561CnWIUapihwO8cPDCUSeceiXVeJmgQSr5VIdhLU1fFz61h0Uu98VthXHCpEafE15/fFR6n+Dl9sm5Bj/y1dZNpyKXJ02rkuZh2a0PV5eST16a3/9kfpYc8ZKX7AIib5Z6a/fcL/1SxyUTOVJzKoruLOk6GXQ475F87qNO9SiwRBZkBk29DbWfrGMiEWsko79vZqzY5zlkS6lhx3PcQZpfZJJHOWtWXrj6rM2R1rsBa/ChgAIWGCTUTQpkuMnY0p6/WzDgRDz++olPzZ7x8qV2niomyA1PNfjOOnCR5BK+oImo2d12frmZg+WtZqivSKjnWikCsA3cVklUIFVNu7h0c1F0SSZjwAF/1/CwrLtQG8jupnCNolCa+obO3qy8lF2W4A4vfwekwdRKR3MgXY0jAriA5UQ7SNZuhKkfky315YTDOYwWjHchS9av1Jy5Ov/Hrvwi3Mwznw1m2xLeESo7GWKFfvIQN3yCY4TFY8tahTH46Luojx66Cbgcw6WZe2MlAqiwK1M/35sg7pzyqLKhMq+27T332+5gdq9ImVc/NKNaG5b7cdqULfTyRvPWKtxl2Bb9Kdcky1916e09ZXCgR2/KV4RSLFYR0oMfWq04acV/4vMekP3zNNenYozk6kkULZr40MfigFJ62ZKs/8OKWerpP1FO5hFEHOxe8vJ90Wm+9Iayz9BPxJl+ZAIoXee1UAlM1TsC24EIe+AsD0PTLe/yY3pTnPLhmk00yM24QyGGBx7RXIBwVVlnZgdhLfT85Mg/iaQe/J1lk6CJOD4qzUxPbET8Mpsc/7oL07ve8HM6OolI31p1iYAs4zkoxnOdVhNL+GfWh/wNvt7eV2vFiYVy0ZySlHay8Wqp5+AA4QO9kBNV4oeZZ3Dg8ipXhY4/qT4tHNqerL1odW7Hk6lz3tLjN9CyqrW1lbOj8vlSoEbH5QQQ1ka9J5BrfVOmXtIzbRMLc+M13rWUxLleVn151y92huUyYSMNOFU5IFicBKA1ZhYEsgXBSAsqUCV5+F6ZzuBWh86Qc2LFf0XiBo357r7kKRvOkn1dMIVdwX5NwWouxKfiEJ1zOdPaBadfA1pjeKWtRViUnOMSWIztubruWBKl3wD8IfXmX887GTZ2qOaPI73pQctu5cycEtJ9N+Ms5lPnNcE9Oh9S0B/fgEmJvJz1P7kuF5327OhzNe2+uwKX4JS7WSVDGHsfmnSRpGFPzj3/cOaimvC2dzEllPd0aoRxBRQUFegYwOdcuVzJwo6zWhnwcgmGfkkDLA1h2lfHlbMfVsg1caZY1c/2Z4DRDS7n2068G0FAbCXyCoFX6dbOVjl2BvW1pm+pUX3WL4KwH2KPpoFm1XhYjPUd6xTJkq+OD0IoBjBL0p9f83jXp9//whbFCTRKZc2vtcLHTIJJu+cn55d+WVwf7aN4xbqBtLZlzegh4E4cFpUWYnelnJO3h4BEMmDAKOW1oT0t74S223JquPP/YdAHLrxK5+66rIVeD0O3eRHbcBgdnN7eTV4QuODeRryEgru4jHlgSUwTjV3lFPCAe+WUCf2/D307ppavr1i1b3pF++3d+PfUv6WLDOiaB6CiTqB0t7V8Uo/6i2C0jllX1QDbk7hn1vGa9CPeS+3VAkINx58QMcfKz56z2pJ0QkSVLV8HZzbIwMpW2bh9Kb/jjd8FByhVZKmFjHhlGRQboLp09O+MeqoMg0yd6e/urze5wuCSp7tg//tPrOKbyaRhY4FhQVPTHJ3ewtZIDjdogcqrtABZt9vUv7WNq3BsLIO0QDWWC41gNUua9CEX9Wfy43OUw53K3hD0WuKFjdzBXtAXELtLVbxBW5dwUgWuGbZ0TiA/GOTtkliP9Ojkbtg+Lzd3su3VfkztJJjDQO8buKZXPTzppXXrzm16brnjsg2JAswnUUwyd8Tq4MzrVQ3a7X4gWqiXq2OBJQEyrAqg+pbSF8yA7QO5OJtldKPC6a8EVMan4osmBdHzvWLr63J6wPhy4Vkvxvncrx2WHbjqJW3EhDPahEKvyIjpo7pyZoJmGz3bQKjx8P/C5eg9htNUCV/YDYfz6UJxETkG7fl6oaBI8Zo/ptNP6OEP0WRia3MKovovO24Np+tshfv10gGx5ll5EEcB4r+AqqnueM4FTCqZcqpqiqdtZEUA1X9ylM4I5bwnhNN+v5DCXT3/mC+mDH7wuiIbAmAQ/1c1zC5lcUdn+FWCrA2BOUxU41yMcyD0TcvWeGID6oXCDg3BnpO/Z4uolPu/5l3OmxNvTA888ls4+mI5evQgOVIsjo5g2oi6cizwwMBBwUt3CFemyGilEYmpeCFDFeRUOLO9ycMpanHXRHZi/LxSyzeU2VadZgrxyFk50CAOcyiNnUKBWLsd2Xt7Npmc/60npnz74xnT2WUdnsM+BtVgbrGGUMiLMeZ+D67+lJvWwQ7yvkgTQVlzO7u4dAygUQ+AIaOvBrDlsazsqAN0gfM/wlvTCx58T50msgDQqjbrPuwpjHAnzokP2bcu4Qt7maEmXNo7hwtbvChEMn9gSBq68GlbFKQAucX3mWz+/t52EQ+dUpmxKL3lqMMBO/YxnXJIeevHZdNRxZHBDaQ321XZs2wy3wuIDkYP4W/ZS/uo+CBwRwnBsELgawasIXxemwDyFqw2dSQmdRiV3QVTk9N75jr9O3/3OxgwL52QBkPbGNDbrAVqA2lUKv0B+J4KoYQ6I1i1lK53Wup16InLiTNXJdPIpyzlB7f+k/+8NL0c3b5Kp3g44OW3K7QpisYQpeh/Kx04Pp9kKZ7uHQjUs6ySyz1ZXkYzodVFlZJpzOb5WDnAvz8qPxcbgtuWMFZlkEULJ18WoSU8IHNjB1JtNpBji6O1pYwO/FwCfHkgXX3wmJ4+9O734xVfC5ZEi8PYaZRupRDsWJXOJc7JBwLm1Xfbi7CcL6EQueDMXEionZ7cBg39jbEweRSV8BCSfpUEBQZrZtT1dctLa9FD0i3o16ocwGD62fPozv4JAUd4swngXJRrqM9xL9OwQjnSBCIza8jIAk2cQKKggiF6N5h5kpI5XHs0PL7zD8CKDnM4prDIcXSGCHnKNtCP9yVtfgckejT+yN5RZQm+PiqrUy28b3Emuc65XdR/1ttM161vq7XdyPFryXbSYY9ORHcthah1YSyHaSfvzt78Lk+4anoxi5RU/oUnenqAW3ER+1fK7QF2J6vUV5T/utXU3E0YCxgmHK0I9anRsIj3qkeelv/3bv0i/9mvPQ76l7uIoytEs/AE8uSdl465KOgWfwrqGg6IWQeYMFDFYCP9yWSXgGHhCXzxQ32/ltBviBTnuCi7AXpzV8IOWXzSG24te3MwM5ss56mDZ8vZ04vqVLED8aXrzH/8m78mer9lAEjdypYvjwbalMnHhhds/2O9frJLmPnyLISfneRMot1FYRhye72HkHGDKuhP2dQdTmCk1nDlT4vTli9JTLzomzn5drLCksfS/j4zuS68rAtWGRYqwigFEC7FqczleBEI66hW6iCFCAOpxZJ8IW31HuPHbmSbEO+WqEcfh6PC6MP1DlqE3VmUdcjG4Pok0R4Egw0np/2AsYIxDeqawgNOBlVWtpFifWEGGWOvnOuS6ZPUE66j1EH2nRcKLulfxhzDEumb1chYkNiHjwpYbuKjuZjudcTlT5a9+9T/T+//hgxzCTcHoU6WMEpB8MlkhqvPBbAG6E8m7UWcWVQm30HVB/bVzp/R7CgOy03BCi/pcYUxMY9vT837lCo4n/LP00pe+gKlhFwYGVG0hLrtRulnmXuSJ1LjYuRIcsJwWHzcIkpnVLgeSBjEpRGV/feCF7LQNC9RtM/jcN3XsHIjFUweYYabU2+DaNrNINA4nd1p61atelP7h71+Tzj17DQQaIsfUPVRLLDuK1aNYoI6BW4J6kE6SvmBOkBRGuZNlcLcoSgBHsCg67RQFgWiP6s6wr8uQ1T3mwaemM2kLjoHI8I29pz78zAkBu07ppAoFsh6VEHVl2XGvcjHXFZl0cjT6SKyqKE5P8kEmhBLXoxSDA2yH8OU9ePmbKr5f35uurMbJzXlp0SOveKLzyLnAmmZyoHzU5eekn//5R6fPfOZLmGwCZ/r7Y0uZM3OZVVeas0/d6ciGN8hNqYu6Z3by6rl/aUfatf0eCAYyZExyTWFhRBUHiazTpFVo9f7N3/xdOu9BZ6dLHvYAOE8+l/uDS0LKGOUK7qeZ08KCygrQn9uY7wXHHoSH0hHWBVymKItRnN5qRNO9tVhNT8985mXp2c++LH34Qzema7/w1fSNr30dgo05Mri52H9rAvyLOfJY1lgsEHV8Ns1GvWI6KsDs0Qfi51RMSS5aS0X6ebaRBxzl+eMYKl2FBsallz6SFfjHpXPOPQn4EpXsYEjDeWiRBhFGORNGk/Dd3cuobxlwIgN+zC/nWSaEuy1cRGr5h33AzgsWxknotjHYspiWFrOOP8rK0rd4fsl7vpo2LF+bBhHKdMt5bLwrPf1BD0wvvrg/jGT2MjA7mrn0X62kL0yB/pumEk0SPTqlr331xvQ7v/tqOjvNFArYrja6Glv1XusoloRThaC6xYtQkE2/LHJIaGYhKDPYkJvBpNBSFgA++x//rgHn6FB2jCPnQIAYHik7J9s7wnv26M8/4dlwdRhqRBlX5d8gckDB1b7QO6PODRBUyJ/rUFUmpmt7qBVpFBdmxJgGOoXtX9aXPvXpDzAwZMLiljPppkQiuwXlE0oRqkarHmtlaxCieJXLUFo9N3SOETvuKCeHb1H+L6dPfOJT6ZbbfgSXhOwOebnb6SSSWnKWz4rFLIh9B3ppcrEeiQCKcDm1d8pvLiz7MPNysUOaqXGFcmaMxMaFkOxLPI0jTB1sEbdggUMxhAYOtCp+9jmnp8suvTg96jEPT+uOUcmM1PncAVgSXOoSL8hXYrm7s/5VO1RAKN2BFPboFpzYuV4mce4b18RfR7qROr72A9elOzH3nJYtSbMj29KFJx6XnnLOcek8ltSPklHRPDRCSomlopK9FZjX/8NdbtwZBoqAAz87d2D2ahm7DoBV7IMGAr6znQPPagCz0TMnl/35gMWsAG4qpzE0PMnql2rXplch3HwfHZYwVgwxa9RF4WbdwweRksBwdEHi/PIgPBYj6lfz60VrEr0qtOoM9Th7uw8TYERw6xZ6zDEAsx4bHJ7cVDbGWetse0vsoN7Z/l6lM1d+afB6moS1Vs+pn+d96EcbE2crOoRf+Px/pi9++SvsB74+Up9FZORuDs2Ym1fmst1Ibw9kQKx4IAlgudf3eU+X5Z6cpP3UEqdkE+j6edjNWQ88Iz3mikvThRc+OK1axXnQkAIXKmRudMHV8W22CGO75/D4td67uQKb5ov4hLjzRq+iLSixk25hgSuaaQlCT+V3GDtJ7/vcT9J37r4jjSNoveTcM9KlZx2f1lPeXholrIkxak7A0vm9oBZU91nn0AxCKcPyjNVG49GamidyWlW6Qvi2chWpcHUSPDt9Ge3qsJR4qKUu91KhDMYzd0JM+8Exid2RhD41cpFKrgLOQ2VTOwSbAaLMnoNuH4xZaVW/BnyopFOy3YhdvfL1e+I2nIlUz6YvY6J5Ja1mt5NoByefeTRjnkbJ0RXINVKobqJFWgMP4NnvvSyMhaq4x1LW4tcrHfeyCbaezoBSPolYflSkEfhApE0swHzn2zdxlOKN6bZbb093b9iIyfodKG4PM73v5xsID4BwFuACUub4ssjB6XzdycWVa5bZgtu5jr/fOg68OTudf955cZariw06d3soi7WIllJYi4/h8MX5hopPKzde4lXRwyvwqIfNF696v6DETpmGm+11Myw5T9L7EN1hrSwvXBjuOOJmLC0AT2PBoEOTrQynsY2MtzbvXHAScJ9yII/zN7CgucsARAEBizHC+dq4ASIa2+5SXEH78lz8caZrjsAdzNNKej8VxA7hyyRz1y504cJVhVM/Lgh9DZnrdWsEl8qUirY+l/C9+BII84oeGQmzPOB+2liiredaT6RAfU/v63H3dG8auf/kzClEKX/xy6eWqypbbnG/08wFU0YIkJvkOhWaR49StK8Ooscs8kubK66QbpVkUXWD2E2mezZs4fyGXWnTpk1xWpccX7YHmFfOJYISJfNQzrpy5UpO8zqOa01YbQkQUa4KhcHhXGAHIonbOPpnWoR2gcV3DizGFd6KDLIjMEY0nixg1LN6VbxS8PKsP1+82vsFJXYBdFaL3Dfqiix6meEcVURWAYw6TR59WWmK+NTQEXOSIVkVABWO91HmWvH/B96WRqyGvTGOv+tFyOzmcbf9KLhVsDyfi61hIeOw02TMKbK6HJ/TolC36PWENZC4uXuhPY7Zy8fczZfyYQxT0mwPCO4Ojw45NoY+Jibc87QHAFV1VNQenYLiNevZ6DFVoYXF3lw9vvp3pAV4PWNVVRPVVIRXdlXc0kYGNpqi5FNPr/psvz2ncqZjBiYsscpuXo418jZ++UY/c3n5+1yWqQAcBC62hxhWK2NVF9FNoiOnYbINjov74myWaBo+L0SsvHOAUPbWBePS4M6ql3HSGvcSuQKuCr3L500ujwil9sVvRDrEm4UldgVRAe5EkHibS1UB2GmOtFPeFO0i8DnEQz2esHrihm3A4GhRuJlDrNd/288n2LPkSKqLw5YLVuAHmx9DIPArI9+cmorsXgVNKsT2sbgGMQS5IaCxTZ4hfhwZaw+6bA1sLPEPs6/ahIcgea5pd0+Gg0VwCjbB/Ls7ziS03KVS9o5aPUtvKuWeV8BdXtb8atqksccsc/KdsGSgRgc0DrCxTJF/BDd/Is8C+6oszbcHcFeInZ+Yji77rdXK78pvyTvDRJ1Ayyxxc29vcZ74FSvhFbxCFgeFErYhviAriVzBHk8cK7OMTnDEU+NkXHzvoDsDTlqudrgYw7NzRR0zS8jhnf6WaXB5K+ELzrN6V8JFc3Ud29XWmMfNH1oilvr73KxveVv8hSV25unAgj/F7NQHtnBn6KBg4sDhJWA64QCnOKlr1oOSnb76rS8t695rRoT/wS7jayCTDS+yxVSC+zYJXRA/gZU7QRU9AyQ6NkgWgQKROCJ2Ed7xYhZOJYgoQ/MkyqmdKLCWUVyhtqviR9RVFfIA5F60Ty26Vc6cRBZiE9KsY9SvqqNVNv4cNkhY1Vwr8auIXIlhB43OyLyr8CFaO8nnPxBrDsCrr8w3EF/fdvE6OCdnVy+xKjF1F1nNSb/KqypX4bz8xqBZiEscJJQ/rCeV7wO4xKzgoFEGj1dUKblB2fzWxPRl3wrFq8Kda2hKS+IpgW1OR3MW4rDJNRCtqtMUuJjldMzngig7hFnj3eHXGhJcfQM2Fq70CTNqjZ3LMQ+xqwN3no9KpfP3c3/91Nkpn6E5wJmsY6lXJdbobMvTMCuzGstkqg9Ns1E1tpdN/bSNovWNEcMop0A8gm5vVZy/WAXQ8789kNBYnwAMk3SwrrLxvELIQBqxJjqsbVPyrfslN963dOTyxu8jH5A6ztOEknS5O6DAvU4Q9pSGiVXxhdeBupJV63eeWq/enURnnGXFHrdU6MzEmYPVbtTbMOuJXxLUr8pfL1d5zdscXz8CI8FIwnRzPHCTvFQiztykIzf7VyAc8x5kHR/ZBqUdcppmcaCuXuacnmla1PKm1KTkUfnVa6eiZQ1BtCkDmWnIjQnXHFZekr5JyuHx1xZWhYyNqyfAfXCCBJtGuOLnp/xrOcjHY5wlskHkGu+zrK9wbxL2MqBYCO3Odaq1MY8rtc6vMkwyfFoj7zdnZyKyVzqTB5AF2UsHsDIlZ995b1hx1Xvpm6kpvdNlaxRxGz+5iSR4+S6W/FnuVhkAAEAASURBVKt068k1vziQuwIMi5fTj6/rCdfvS9LkX8pd+6q8Db8qIvfNPPJ9+aL4cz5buIeAr3mbT6tfZRNxSpbNchosvOe8JsyUmiOlb3ExQHnjWy6Dq1eNBIQXr8wh81xuY8t/BM1xfirXMUunis3pFSCDCfPeCPhiX3Wb4lwmHkLHlfDANX2dmfpdcAwG4Hx2xwmpZA7BtNzJYw0QlEQheNAvju+tqmO0Dhspc7LJocJg/5wd+GBd4Gr9cwuuK30vHuYrix95+W6+9/Hh/D8F2MWfP9YBhFKOQjPqXxWYlzqVdz6Xd4bV39fDG/HrADKQ+tbj1b8v31T+nslgS8RcgZJRBdhohLnArdfTNxK54ubGNFQUzK7Rt6rng/csW1W+SKR23wrYvWTiV7pSvvxU//XNvmPVv1iQ+2jMUqq5fmnzoofWbPdcTjtTvdSWx+c5hE7uKaT0ptZMwbjhpEYFjkQxlvm5u4PJD6RFcirpY3SvwKNump/EVLQp3InkGlnAOSgDmuF9Y7SncHOIYamgX4pWpXjEkwmZlRuLGvEq3pVJoLWELpb4PphWDo5WLEmbgnVouipSM2Cvd0LBtMzqQP1Gwq0flheFuSjPu/ml3AdQ5gKT4u+W5oEEVPlLF+qEoDWJQryNUwBf4uztOYBK2o2y1upZYFbSmcdvmcYWYBFzT4UtBQ2EMLMqw1LIRkHmye0wBKkA2kSzGlxKOUsZ5qsfZS/VKNGOcHVKMfbLt+x1vjw6rYHlqsOgtWLGkSuSatikUAv5tDmcFk+KH4LIB/yIyMq7dgn5j886XGVv4EgkRHy+gKNTQK6eljKxupA6T4sy7kkkdfo5JBdU8lnCmyHGKtyk9I9VUw8T8UM5Ni7Ln+mzxp+8cDkp7yir792irpNcV3HiOYc1bvfnpp72/sTfW5yAY4ZCjiY8vfbkjLu393v6bqHCa2Wdr3+ZTXDedSDZmvV6mUatHqbTwCfD9/BtCc7IQbzdXZPtindmSoKloCWB8p0JNTIvQK0KtpdMyueH369XwHLWXAOAtTBuWT8KcB5wdczqgD+am/fCPCkayLO7SM9y2Wbh13IoZZ3jgw7ChbASvelncqMmZSdsePAvFQw7mG/maSKx/UAhdp6zgsfkHbIbDWcGqYkFElMQ1/xSP5YDECRqpVZnsXxTmTiI9+VNJoOxfk8cV/Jbpp5VnUxKDi/nKlRyCs3OQ1CVS+Y985OhR9QFXGvljcJUlSoFq6oyF+eE2JF2lhtncQsdiQDDqne0l22enWW2MuW5VKx6blS7vPercp9xx5DdVkUicO5PC7HjZb2AUeC5H/ikPKSZYfN9o1ylvM1Xh+cuClDKlv1SlKaA16IUYNWLZZjf2E74dTjkwHjX+CkJNwK4MawBhPqLw3VvHSQftpAFoR56rWUtZdSvLsUIfl1kXRkSTS5H45fZIdUirkkaRysWSry0yBJEzrMAgs2Dw5LSSOyIrPa8IJWDylPMnFfhqCRI3Z4boEE7iWUkjmJMzH0z92Wek2jpezas54VIoPwupuEIxc1HJXbjWS3lwCEL5j47Q3Ety4WZGPpVEwci3sH82KEVBUQFDtAPYmA5DsDVo1fVO4Cv792olqeUL8pmoxYe3ayFj67AyXaLhidsT+KAvGIbn/GT+7Xfl7QKnpYYTX+eaWz5yEy5SmF5KnK1XDRH5Tyi5+SMn5EsbvyuVPYw+rXiRjHKT5ZL+WTpS6xS1xJuHUT9XBdDG0QvGitC8k9JohYUt63xWt/fq88ikpM2QW9BbD8vbuvlrcroqwKN4udvMwRKVWrQCDmcCuKeBxEqCtC0nDTbiSCICvpNq6RnabyXqBnv1k0sHqAc7SJFlJRMVMnkhLw4f4Tt0qzPZ1eKXdUkWsXWEZ291MrvgMhlMSCpUdBxIpsuxoUyefahJGRFvKo43PFYcYXG0bUQwvxBfrV/v6X2+xd7vlilKL7LPHQeuubErUcqLwTUEXX1ulfArpWzST+kG6zM8ldkrLnYVmDPxGr3qtl25qkzI78vjWzYXNdC7ERJN3fpu+TvlE7fBDLS6juNMBMlJg1hMuH1gpttyf7w+ZSTzEr1o+4WGJdrkO+bv3VgNUPn3tW/rN/nWNat7o4svlnzICH4zYYvZWzAhbeGFTog0vkcp3CFX4Mhz9a6MQMxIklrPVyjD1iY40SEfHn/A9QqN3DmyIZ7xtImdqBvZ+vRrpEhVI5Qb0GnT23+GQidagyTKPZNhToEWIYidTfX7ORsWsau/zXs1T12+dJ0v+Wd6YSVKZ3I8YJroHTayZAgqqAgUQwZ4jQlkfKxbCv22oX6uMK8/RSdpzpgKLhM0rDspe6FcDbAxhnDc93ubT73/cI9CdrdcicwFpx8qWtBsMaj7xsPEfMI/NTxL4+CpdgWJupGGUtRi38oBc2tU+/HhszfZvMQO6clFsNDSjKhi0ISZKiurPblp+ZvJW5pBhyJu6qcjVW8ehkAtH1iDlJUCDI3fivK1ROZC8gCkxLjyOIb5VaBLhy9GgLjU+nYBufyWb/mdMI6SCCUfnXnh4gYU1s+KEH6DoNMWBP0LN0OYbthw3S6/s7N6eaNW9OGkek0wp7W4UAQppoQL9Mdl8DxcSc6c1Oc4ZrleJCZsjIb8j1KaYZOZVm99RzhTg6l6ObAmMUYkFiBsYiVELPTjl6Wzli3Kp178sq0ngOS3UFbhmO5NM9ZZckktDeDq3Vea3nkGGw6iR2P1kNnkN83iLlRGw/cRwz9fTvhI7D2hj37SqVwP6WzzelTlC2wzzJWrnZbgo6gb80L/kk/cMIjbjIeGbS/9CPQgW8bMKnSa9S5Bo9GmHH24FqIHQmTuB/qq1H/nr/+VHrHO98LXvYwhWG0ROBi2RuJN0piM+RmnqvBvoec74Vguc2Vq/rT0UevSsuWLo09jccdtw5DgSvS6aefRp2m00MefHz0NStgHXUhWsJ3F5v7d3ebyfBOTqRs19LUj9tuhMQ0LWm6ZVtOljmY6pFwVEDCoUM51KapTyttIQ1paYZSWPk8yRYsz9S0G4UFWw8KkQj5EsIwya2npsrFeeb6N+5J6dt3bE/funVDumNgPI1xhsMUZx5MkJlEcLqb6SnfZrmuGIHsBYCaY3YmPL+zY5dpiTikvbo4ik+7aGyB6gTO2N5MbYMDqYc9vsfTxueceEJ68Kmr0ulrUpxjgoctRYpPvOJc+RUWtpNnTzgjmaLdxOWOIkCsIvtZKUMOmlte04otVyVx/FA2hlu9/fbN6ZOf/k86d4Zn7g9+b5vsp1+UCqNfMVeKzub3VIqVzFWrFqcnXf0oznGotveBl5YpjIty31D45YvD76pyAsHRsRnMr3enj/zrF9PmLQMMchnj3GERVQqYlBJmGEddDa8Gmww16ifqVPDw+/GR0bBK09vbhbWWuzmI6NlpeX9lIUdWfQ9u91eWpHJm5g6HmVkmDVyz5or9q0aUKABBlTA/EIqCNnmGktLh8VUg2HD3AGeCMpkBmcewp+U+Rzdzr1i5LE5dmkUAvnbtmrR+/QnpjDPOSOc/+Lx01lmr46BmNzNz0l7Qi7yxGfaYztDFWZ6Stg62a3lOQX9/tsjhdD5r1MNBoXIhQezSDlEg9uGp85xcinzOQJoqt1+OITqJbgomJjiPU5lWG6byuyFWSdtxltmGVRkNfwzKP4lszanpj4HLZ2+4O33pJswBjXemnTO9aYgj8KYXLUf+xvkHfkLd86HHkry5GNDAF97kUhWcAb7VS5KIjt0BQdJxyl6sc4S5awaWGYiUhiW2udIB/BdRuaGxyXTbTVvStbfsSsdgYfhk5rjPvXhFWo9ZHcmNaWt4wkUO0890jUPDhUNYBMlQQXGf8mfZoXnvzbUSOuNad6E7ODCS3vWu95N6Nkq5t3Tmf0c6ELRsoVjz6ZZP55ABXDGlf9llF6YrrngUMs5MzTWcWa3hNIhe/ubI/I5x8G5vTx99pjtx1C8GRK9N3/jmjTBOXRhz6GfHDv2ExijtLtzyvXWNoRHiVvHdFdETurlPMfugf8WWNgYFD+rpwPr5wx728PSgc09mL3VE3ONPC7EDgzgQI1h+kd/eEucUcDYl04usIJwpdG6GZmOYg5XwJHD9I+HsJr3Y44rRjWGiE8sDmrOZwiLv4ACdnNGlA2J92482p7vu3pG++rUb09v//K/DusVFD7kgXXb5w9L5DzkjHbtuSWxpC/NHQFpgy4qPMFotoaONYliul61cyis9CGQai6695ZCUI1Hxep7Rq3O7WO7SFHaN4FogFn1dDF62rcIrL3uLEQmDlqVx5nW7aP9vIoz7+A13pq/ctjFtmoazX3JCGpDYMKK2saog9zTt6immzeP7OJCGdHRmXpxI2+i4OVAF4KAwpYDEd5hUF07k7+LqoGxuL5yttjDJHc56tgkZT3JNYKZ8sHM8bUPud/uOoXTTwGT6wvtuTg9Zvy5deeH90jnI+Zjphtl/+8HIiAdMa0GR82KDX6UqSPd63XMs2kunY06LvxcXhB0CVwhfB9MBGephjDi4Y2OGsxcO3mFIVdipJKgTbvQpISNMt2zdCV4Dm+q1s43MxYLbDlRH2EnoJEyWz3MktIQsoZud7Q2r0wlfkpa5uKqw1ld6wxv/Ml5MUV3ucUFPPDeDOBMTpM3AN4Pdw2HOtunEoEhnh2bbI2rAqIH0VVDxTKHmTNxWN3fQQ9hBZbPpoJx1jI68jmKAxB7V5vsC5kzwciH5+rA6yzJJ75hgY57AbOvsARGQ//RQTQqoSSMPIZnAssYMnIvcW2/vyuDKvn79Ten6b/8XByfvSKecekJ65CMfmR7zmMs5iX1RQMMa9XGgt9+4X9O+OobJ3z46vlb47ECOaot6Kjtsh7XmtcyqhrAdvBWFdNHQNqsyMU9yk0sHPlUfChn+EAizlShfuns4fe47t6TvbR5MG7E+uLNrVRrpVqWECCuoH4g2C4Gb1uSx06sOL9KTaCoQC8TkVcndfFtHQMNwZYQvvgsZFjw/g9jGi3lMrkknU2aPFJwMS6YsqXAuRRuD2gR12jo5mrb1rU47No2m697/9fTAo5amp118//TQ4yg2yfQsWpIGIc4e7tQDRDJhpSEZrJz2N5DYgh2As0/kC2I8Z8p+AIlUUds0mR5wQ4IaMFO84DCOQ+1m8aJlwcGIj54k1u2AHi/9Ka3dCDjsN/aDiTi1jSUiUG2GtutkcJ1lZjg4PEHfcZbYFBTYT23i3N5ScFIIjk4hUUYSGY2MqAwqfOtZHBI4x+mOoJr0e1BaMZTmMffkWojd3GjmEfpVNoCcXVA6kbEJ1KDExGuGcN8yis9N9d596uacC83bzDLUqo/luQWWTssVyjXkROwccnya83GUVg6go40YKZZzKPNAevdffSD9/d//S7rk4gvTU5/6JA4FWR3VFgRFtteDfekpOr62+nsQxseJ9ZHSEfppYH2uc2mTQCQb00vzu/L7sAd2oQG+ccrodPVGhHLvvn5b+v6uAVZSQVoIXSec8mxnbxCdMMw6QszgysjDhDXBLUViOhF6KTOeWZrhWbDCbBtTsmpqkqdq+VOxzKSmg2Mrpc7JG56r5Vo/piPgpFWvkTZ5sv0Mp2gF+2e61Kmjf13agSXKIWRbOycG0zf+9dp0/vGr0jMednYc2bkS6xoivRbGcsJuTqcNO5XnuR6dp7y8ndeJL84cvMp9iag5I8UkygYP1s2IYPYf8vGsiOhL1M3pahsy80kXeCrXTn6aXRK+Ye+QASdmNSXCEfCd7fTA3VF87QEESkTf4xS3DkQeyrhLi9ruYiqVDebEu1hBr/BYJspxLmi+n8UN5r/o0y5CmY7ctRfdLyFtaibNbatrIXYimsJkKWzlyMDRKhBXljTus/ZPiRICRQuDE6ktk0h6JHwtysraR3lBEu+1oiGQu+nk4tIYlnCdRvms04SSAFuEwHuK1b8BzFN3tsvZtqV//9i16XOf+3K6lENCHs9JV5f93CkB0JDz8G2PNsPpQNoQazfxI+pEHa+qwwaCVAUKrKIdHVnpIEOAaAwE2cXrzVyfvnEqvf+676SblTchi0sQDcUAY8g7Z2Rn6cAOCiJwB5xtOyfBTYsPGmu1/1l1MLPNA9BVKsYFbtpx62CJ57xgII7MVMRPrIv5gXHFsQp/YrprkM/GdwinU7d7BCJt5sEvgX/K4JjeTG2FN+1fDgHHphtBXXD1X9myPd310a+mh649Ov3SI05OpzL6r+Bdj2giQaE+7gyZ4I8JEYG5/Nzs5urERGJn5dwK5xQyLxQAVOAiw2FHPVA/w4wPKRcVjf4kh9emHIsBZZIGcMrsNDGfh6H9OAdt2vyI418G1yQEX5uEujiYR3ykTV2dF3+Ebz55jHAHTolWwVvxA5cJHeHiA27G4x6NB1wcUKaocxu4M8H92MRoKK1rSn9vLpdoTgyBTLCFioJ5bzTDLYjEz8x9oqCBrPoE8MIYFv+I+AAqptx2BjsCfxNMd7pZSZ6g03awTDgwMBCmpAX84OBgcIFhoRdE2b5jIC3u4/QMRkxNHnlYSGfHojQ4tC2O8/vmN7+ZPnLm6eklL/3VtB4p+CizuGxfsp1DcXK6ueYA4Ig5G620QFUIHw0WcYDLMJ10FMRwyvoZlHz/8UvXpxu3DaWJRWuQs6xhIQBbNVDzKaZJYXokZHGssjrdQwQwjUyKsRgiaJuDF3B+CULoCVHwibSBGQY6BK7EQyAt4Q2/mqQEssuc5W+C0Ik9xjO5/EHcindtfcjcKL/cdCQuYZSqeBrR1HDqw0z46E6Ejci5PI15Ek6zffHatJkFpE/8eHu6dctQuuohZ6XHnNaeVoHWHo/QS36s8VEIbbnto8dYpBbXIDJkOQObPBuDQC6e/aT0l336qNdMQ6QlvDGFpZ6ukLvfO1SwGXAUxdCE4UxbAiuMNK4ZQAr4thTwMD/a96BBITGxn+UZFXVjSjQNEKIdqWW7s6/AVXHBekD8qlmBq/Az0BTj6owpxxsDCm0eRkHJR78b03BWf19OKlZzQFEAm24tNN/6jhf+E6fhpMSEgSm+IE6W4xlSprPRB+LZUJyNVPwKycVXXfHz04H/2hE8bk8gzAT1z9ZSI21+tJmvzbQhzr8QcZYsWRIA9LtFSFSn4AQNn6JTb98xyCytnWXtNYBlPG3fvjN97T9vSFc/+Tnpxb/6XJa8r4oRxWntipVHMcJgcDK4xahdS+ErDG0JbT7mxi7PNQhn8NYDSqSAWTMvoziNEGnmuPLIq2GuAeL8iAgf+tY96ePfuy1thEsbW3MsshYijo6wACr3x31pW+V8ti+wiYUJshReGgHtYHWsA9mfs6sZOOY2OS5atyBpYzC0QFFeShm+z1XZ47kqZNSz1KkKi2/zvcYoA0HjjGHKpJiC79shUu2o0IwyBQ9ODS4P6syLbnZVsLIM0ehdelT6NtPwO7/8zfTtu9elX7iIE+6o6jLg1Ys8cnGx6hsEuNk1KrSnFKQn7tNBIEesEDvpJQvLb7mDw4Pow4VUY/8B+qSGSMClwBhEGEjytE4mQu5OMQyK2BRD6YFOlacAH59MTDBb6anBLEc5jL+ZGFkeup8YQz2Qc6MoLgpJ+BCWE0gFqGVwrFF6h06/ouwBTOtgfY1HErzqCIRCcQoC2c6MQ+KYDwbKWhDSjTZmV4WjjA9bfpotWr0I2Yr5+jGX7KYNZ5DFzGqqFsICcTmyxxvCjFiF52LmQhMYlQ7f2waSG1+XY+d7fwEav749IB+KD1jNAI4tA9Wp6igsWC8ETESVW5GAeZnDtEdtVS5kQR6cjBKrHIZnDwiPUQ8Jgdvt6mQxAyLYjUziHe94Pwsa30uv/6OXp2VIv82tI/TVLDGXQ1sMN3QMpoHKKwIZW816C9iopd/hyC/qHeE5SJF1uMqLe99X31Y8ErHsFM0mVT7ZifqIiiATYMM4dVIZ+MvMWz94/Yb0jbu3p62dq9PMkkUxMACM6EUzypzMSxD5E3MPMoOARNkCdD5b72xtNnBR46tEcNU+T0/EHRIKvMD3Y1zE5WOhGkgW4flbyUgQiqhcieNHVe+OOkcqhNFF+CwKC6GZttxdrPYZp+J42uAAo8xw+yMuui07ijWU6fThm+9GEXpbet4jz0mXHc0g+P+z9yZglmVVne++U8yRc2ZlVmYNUHMBQlEglIDMIININ6LY7VDqp2jzOQ/fp69bn922/dltt9rfa/V1a/O6W+xG8bUiwkNURFAQkCqGoqqoecjKynmKOeLeeL/f2mffuBE5VA6RmWFxd8S555x99tnj2v+z9tprr03ZWrwe+xrHu8Qh88grVsUiCNPUnDaZk8Zmybv+1jabjyVEflmdhw4HHFmybhUa7szuCRmZpwCCKjH5UTGm3GccupF6tw54VBzh5HAutQtRjtk3I1YXR4ORFULRAKdarepvfBBCXCYxEMhhuC+ozeHbMkqFy8ugl581QXktHMst1mPbRzhfPwpE00v7Jr/SnbJ2uvVZgImosl9Vgm5MRFEIseu34iIKYlIQb0QCoXAmpnz2Og59dCWNcziX9yN2b6z2qHrOJX79l7uoCMoawwWIrMt1RDAyp8yAY45hSgc9s3p9LH32s3elN7zpW9ODDx1PbL6e+60FJDnlgAvKl7hRPy9vcLMERMtT967kkXh6Hp60gbr1uRSwlGyK4ZzXxiHQqRoD1KYpuBCHrf/rSxPp9z7zWPrUnol0YGBjao8CdqiVoMfBTm/MtEY2jIHD6+5hjPmws0cxubUTZsVfxy0ACxZQzF60J+cSjpdP4ozAElIvISoppbUdTJg8FPoTAT26GeLS7BQXz6qbCIoQGwDMQ6XK3+lBmnYKueLAVdejP9hMv/J7f5b+551HY8nbBI+nqQdnP6amncjhnnYV9JrVx7EkJ/Tm2ihx55wFVpHvLIs823MVV9RJdR3ltz1y/JVv95SrID8PT6vokjvbT3owIxKB7QqnFnkzrx76G6A8FxMMpzfPu+/4Xvb3vaU4DNn7vvendyWW04c6q6dVYbqNJHB45M6QCdhBgN91wy45M+MY3iM4yrM++0UFYJilK4dp5HSWpxWVzJPu2QqNQzLmiArOOfI6x8KQdv0mdPYmAC+4RJJpM//9Hd/+fenJJ9CgpDFD8ZrOW2do13TyIpxqKa5BIA+ZOiv/3tPyB+ai1Ec3lENLCcIHHNagXJRzU0BVeDbZmHPKaWU5Kg62JA71Mdev/tdP7gHo7k6f2n847Uc+tNBwCDCbFMm10IWqTQJjQYDdFM/uwjbXvLCHa0zNowef3Q5gUY7Q2fRTbFlKsT3z/qIyK7jrTgP1FvIXs7zO9KJQm+QK4oCW7EzWZxykUUUkJynANQG6FucWQVoMZ4NhcGmHw9+h8XR4/9F0kFUIsxu3pv/1yc+kX/zQXUzOMGmDnHaSfC2MD6T9pKGuWAM9zYQQ3PYlAv6aaZB4R8nCoH7kXTWIKUdppTwG7bs1VQM00Wo6KCCgtyJCiT8OCRPAC47Jc/U8kvZaR1boGbKvWcZ39ueIJtKrANZ0BNlueiWtCLniRyrN4JG5DLkN/OytPe4oMqHBwVG+9MzbtUYZDo+xdKeR3vn9P5o+f8c+SxGdohNrpuDokLHYH5QHlo4Z/dLkuh3Dt5an40tRlb4ceaieV1mqajNKVkmOiCEz8sNu8kG4BTiU4yAZG8KnX/3wfelDX9mTHkap87izreMc7nHBULcBGKg90qHz5y8nL5yzs+792FQ5NMKVkXbvaY8on+eqnRjuRP3L6VluZ3YjjBmqLhyuVvSUOcclQbZ1nD+YBIEW8ocTzkxSiOYn3mnSov1a6zanafTWnmQS6q9270//9gOfT59hve9hkpzk9QW5VCcuWAI3P41PJG++eGhcnsMpACFHhO+DXVUla/BU9aDVy5k04CxKpoQloiyc1jIOD4rJ4CawmZVM6DVm+xyvn+25Tgdx8kSuMI5MnZnKM6WfpKAZdTKRiiRydR76l+rxHD0lZAUtBfIIg5mvZXZ3Ac18PvyzA+knfvLn2WUdgRhOYXJobDBkkhdw85YF5XhdjiSC9fyYBkeAddQi95x7wNYsqbMLlETnyjnKUQSm4NGgIys/ksdVPnc/xy98+Evpz/YehXNBi33D5cgkkcoTSYMOP4hgf45ldbMMuQeR3UWxc5Rn/xvyJWUyckEqHHOomhIHZQfQanBbHnUE1Q0+BFo2bpWDIAPzg6k1N4YBgJHUmh/J9/PI0zgarJ5ooDTux9BDICPSqs4APDzNf4ezs7vx1Gbk2mGx9YKSVoBda5i1Fc3xdGCikybHt6Zjm3eljzxxMP38Bz+V/o4XBTtykWbJW7vNssP1rEFjA6AKY4NUOy7zIG75fvlqAdV89d3arIHSmy9c7krnLecCQMtSJBtQqTpadEGuPet3tmeLI3XrStGq+x7QyM/Lr9TZS6G+V44Sxm6Ds9Mw/FJVRaHozHQ7rV+3Ba32Tenwoel05NBs+o3fejcLwpnRJOuKeVoo/4QuGK+HekCkVcUXkS7/yTmpnnsq2aMY5dNRvEsuu98WH6jfRNhDXD7O8csfvCN98KG96eCGbWkKDmY+dODIHB+TNsvfOsyUOXlSRx9tPrgrXjpXZ/3woYmmJt9Z1mIuyVO0Z3Xu1m/+yBkuwJp32iznY/BJWQc4q3ZR0cAJearqyMSKs6k5BDyX+857wG255CwcYZ3VGximHo5OprkJJqs2b6fcg+kw66nru65Ld2HW/Wff/ZH0IJio4YM2stkEB9+ZJ50BuXMcRcptIecnkIbqPcCdy5ED9X/XWg1IiavojK6iuDifGHUh6ggVRO6si1PspSNIrBDRORw5NQnO+KqDYVHNo0rrRCDzLTtMQRXve6rFzhQyR8mbQQ1Lwo6gxzXOMiVtsc3Mklc6y9DQBkBjNH3sY59J/+N334eAm+AU0lg1dKniZ06npOW5cgQqqZen+Qn58EHlep9Zf8JAF+gMoyfVyDLgtJvLf/H7n00fP4CNtytvSgexPJFYLM80NWFYbqPSNGA379I69NESKgsL7QnqvSdB4zwb5wfFdaHUh2shrZeYzowz3CSc5aJHrI9E0RtjAgta04FD9jyHGksbIVsbbd/2ILOaLRSDB5jv9czRhjVrszSt43DRpCxvpFnd6KFck5lXvzSSlBaeBD2HpE4auLxIjjI+PFToPEuY0iBc27pt6F120vHWxnRo+LL0s+/5y3QHz+WOjzGBU0MZ20lpzeM5h2EtmXwohZgHwjY8992arYEL0DpGWQ7IoUuM+HWJQTIprvcamgFYYvr5nM5QXKRnh4MqA0CFhN6jNz3CS6UBaHzKA/Qqv8ie15J1CbeQxsYZ+rEe9tChQwDccGg4yLkpo1tgpnY9HNR73/vHWHp4OPSh1IlqMlRU2z0DXkRcxVmu89lUnLrxWAa4ZMFc6OQinOlirUCcYyIiPwpu5hjF3kdx//NfPJq+dKSdDjY2pqMTlHnrFfRsUlDXicmShQV04lCtcenYHEvI2tiOq7HS5PycdZvznic6vCZD3fqv7oP75JrgMXnBZYgRAKTkpEQDOVnvERMU+NedoCjt1JvTkq5pGW+OO4AvwI/4mTARyNtwrx3WmMozOsPKpxEEo3atfD8AAPHh2lh6GBOh//q9f5s+yzdiivrkmxErMkzdtlAdSJWTTG/SV9+t9RqAKlbZBdhUQLMMbCRIuiqzZIKDlgu0A6aMo4XOTJuVDnVn8CDmRYi7g5D7ZGcX9dQUvviFZ2bO+zrcQC0k0Hz9fQR3UVcTGxmPgLcI5+gsqeZhgjgl8OIEui6Ymb4U7JmI4oC87WBVJ5tDy36BDjMwDBdCOOVEbWRVDm9dW+nS01QfSb/4r38lrDywei04ELmCuoquAQacel1PdnLqVbN4o6ueKxti/pAIZ/EifyGoN68UlVeccX2Y45c/vif9xUP7WBGxg/kH1gjMUG7ZG1cZsA40K5SRdxeICjBMYjjDWMOGUk9WiOkkzllUnfK5cmSfuA/9J2IRRLQao6Knqy6U19WdEOnWK+kGuHm20TgEs0UHj8wSOIhsgzRtzjVlf5QbgI6JDNrIjZbzhs7kJz5slI8oguUrbJ+0aFWaZc7O8joTswjYKUOu0/bq4YWia5RF3a11RLE+HW1uTvfO0I7v+5t0J0U9SvTkJigFI0OUi3ybnm3kQRrtUjfc9t3aqwFJYfVcjCsKdVUUFoSIX5xZqB1fT7otQmo7hud5FnO7rk1TOS6i9qArnvJs+Dn1PgxFMuXea8HTeAUf43aiwLWxTYZuMzN0pl4XQFc8pFgI2KMAXrnvUrRhdIapwmaP6pfOTfkGBsbSk3sPpV/7j++BC6QT2I/hZmYUcEfPq+om4l+KoMS+5NN7ZXpa4KUu0Z2jcNHJplCDUSalQF09uv/y5Yn0l0xGPM7Q6zjDd2wPxzGgECtAwLybIYGuOiyv8tE4zNtpnKBQnJ27HPpxvRBcIkJ92sclXer6KQ8UZDtH9nM27wI2wBVnrisADyDmo1eDHR6kvgZR0m6xFC3W2gawSEeWg3+Uxhc1N2V9RB48c+Rq4uw1+fOsq4rVQbWlDbh2ODQk4EcsdMIEL4rWwYz8Ih/Khc4I9vq2whmPp195zyfiQ0KO4ehKeOshxx1kbxp9t6ZroKKEVc5jcHdGLYV5QKBx1NMgM5nOmM6jC9bi69xC67vOV73JzNbs3CShmYWlg57qaDVHus+ajWG4NWRBamPbsdGhcpmYlkhcp+lw01nZqeMTaR5bY4NPtVIYao9hokJ2aLnqH+S9cgFwPZ09vA2Y5UH2Mxdq11xJQV7+6I8/lB57FH0xH+CKReDSSbLvmf3mKPzVworDLS5BueENG4LjkKv7092z6Q++9FB6cK6ZZkewVgLoD1HXIy6bQ7bIq7jS+QUZBYtyS35amBBAbpaNPhjuFC44IMtM7ZTDoF671Ad0r2FQoTY6Sly088w0GIbdMfT/hjAPpbHFenUkdOmCmwOAMmdXZ7LnstRcGEuzh1mlwDE/7SqWcTiujdTrJtKBU1UGSHuXssjxIkSgreG4iWoAcUJdVlf1H7l7w1pfZE/SbDOCmHeljPp8gp6cpQFs382o5BBwbHBD6vAFOTQ5nw5icPIPP3YHlOmgnHA2KPFEtMQZcePlwKTv1m4N0GQXwAUoEG8BPc/hamFxxPV9LntpqNzF13WBqf0wEuqXPr60nHzEOyvPbRdh0uH07xDPojpiyGVarBGs49lmqdf8Akq/xNlh6ON9jc7UQMCSh8lSJC/LAnTzFZl76p+V4aOcVXxcx6QKoD6Dvtrw6HrSbqTfeff/IO1IjXzKPVEXK+OJlAHYKgdRW2axODtpsCyAqeNie9oUXAnrOYUrge4zdMw/+OTnMLJJlxzdlMFGmRQ9sIP6hGt9XaCd0+eF4AwdxlV1UbijAoYEOaXrBbkCfsYnJwVXtshykkWXHgi26BeOMHxtAnjtY4dQK5lCrWQin5nsaXLfmOfgeYOyTR1h5S71M4YO3OiGLRAA4gImETqo1KhA7ZI1zK6AOp75mFFrWsFQX7BFXhoAkYdSDQ0/RHl7OTwLxfA5r/TI51xO29EyUK/QygRc6AjNtX1kKG1lZPCOl98So9YIG+1Bkr7hNYfOU3UZ9/2ftVUDfh5Xz4lAfvXsML2Ap090cGROEOQgpkKUOWlBeB7BeJ0vaxMCc8gz61AzwkqoVVw9Z+V9g6yPc83gHMYjw5hf3C9wP502sCOV62K1UZYXCrvAfwzAazDblhf/W2BjXu4qMu0FIq+Lt4FXlCnej+cln8ipMBc0NYVMbQprcGOj6c8/8tH0Q+/63rSFfutwljXM2ZV0SpyRIzqqsjNDFLDzhiPnl/W6qj84NKPDu4LtAA8OcPvbH70z3ec4y+dwfG1mXWeoI42VMqCMjtmE69JEknbRmjFbjdgA4Fpg+JdnYYks6toMnKEjDT8+2XGGcw+rAOQZHo9vGCA3NZmGGDqPY7GkzdpkuW2ds6p8ggIs9HHN6sIQHH5nOk3yXg3RQw2gXNQKtIgSMkoCmh75Dsx1BoiKleNShcYZ17LsyDQcAserUY+2p2X0SXH4heOsP5Zw6mMoHI/zQZ7EkCs7EP3M229LO3mk4omDWEHXZnSSglSjfZbHycO+W3M1sLpgZ/EU5CufCw4BCgviKgRFBwjbctqfEuQW0/NuuTnd8vxnM5ylg0K0Q1jEDWCUQgM8l5/tJw1AcRID93v3PZmOwgnMIcPz/sjxo+nRxx9Jk5OTWDNZB/BtxIhHO01MHoQRwPw2kwpaKM6uylMPoC3zr0Jl4OVmRTnK46Vz7mQLAO3I6HiamToAF5uF4X/yJx9K3337G2R0coey4y1z5sluL6gJeEv1JdDZBz3yaxgiBUwHBsfSHB5THO//wnT6e0wXHR7WHi+JuFxMo6LU0xyGB0LJG/kZdiKIQ4VegEIVka6zw5Z66Xqe+kKU0RWg8wzX2KC9RpDFLcKp1eAkh4lzCIXiEUBsM+bQt47X0vVX35jzQD50WiZ2EGpzLxDHPQ8/kg5NHE97j0ykSdqqxr4FiY8VzcgyON5xdUiAKx88xCB+9IJxI44Ow2hKHXFJOtJg71lwDbqssm+IaF/CqqoUt8NanibPTJQMz+xNP37769O1kLPzJsNoqJhXcksZ+Kui8+TrjJ6jnSKi/s+aq4FVBrtCTKcGPDemmacjLHIeGm6ml339i9N33f7y6MlBg0TRS4sra8zRkuZjdK5Q0HXv6RCakrnn3kPpy1++Jz34wKPpc3//xfTQg48DiJnTq2PyJ/cGXizcVTlDxtmdJAdVZ6h6TxXO8uqqM68pmG+wa0+ssmA/U5du/ekHPpTe8a1vwFZeDt2DXJXHUhxMreQe0wPCxl6gUPWVBnJLg03z4CvMSvzR396RprZuDyAfVD7HMasyM2DQia8DEcA9d9qT0VXtmUi38JRLMW4qzlnTk2cM/xOdE0DZIgfPACmt5o4jNhg/9Hja0lxIOzetS896xq50642b03WU26LDiDLBIhwvwXkuG/WGv7XeuPHquJZJvReA+cIjh9KXnjiU7jt4PO12xp5JgyMoQk9KYsamaABOy9wvODulPgjguhgTMjwmgazc7LWgKhiSkonpqGfDNBDAyRU22chmdt9DaTuS0B952+vTVdCaeV4H0BFtKA7He4F0vAjAOgsLv4yNQGpSErIwfbfmamCVwa6nfBKDPSkAhE7HvbTYRqdpAAG7M68zM8dYhXA8hiMyXDAiQbsFcnpiW7rMH+C4Z8S4zAl6rga69rpN7Bz2dTz7OnTI3oFhzZT+6qOfSu/9X3+IyfV9ELvDEDgD9b3o+Fn/vVD/sihPvCkc54lPonyDmJKaxFZeg/JqF2+G2cnHdrOn6hPT6RlXuusSL540KaVPPc6b6rA+lE7plE8uogCsOfWHEC+9+y/vYRg7mqZk82A92hMsbaLzO1EzL9CpRMxQNhRtY7kakQhURJ4B1Fi5Cm5J7tQKJq3ozD4yZHbRnCVP3LQwtTPIR2SYrj7GcHITc8Lf8tpb0i1XDaUdVK1waq6ZUmBIm+8lOFMocUojVik5zZQCRyp4ztE2mwCY5z97U5rgeJTn9+xJ6QN/8/m0hxHAPpbrTWN9Zm6IsgN4MbFipEYeGfXCy3zOsZuKjlwZRqDjLPen0czYc/bo0fSsTc306quuS6/akfNd8sysGq8KfdYPJ9HPU/ziG+lWN/3TmqsB23EVncRj0zOkCGJQplE5QQU/ZWfK0jrMWjYRNjf5MtohoO8APa8L8ZRXz/Tsu6pymWaJY5QeN7YtpW//1henb/+WF6c/fv/fpHf/1/ek3U8eJhxa/KhoNBGCTzNE0ux4XV2spVx3ky7xhUclc+o+jBJ4B2CpOwhnNUzCswrjB9aFXPK97/tg+pmfflt07GKfK8dFhlWZwDkJ4d4Z1gULQfnhAm7Ezphn+nK4w9zvATR/7/6F9DcTcMobtxMcOSF29zp1NqThvbAiLAejuXInIVhUi0Qx0jelWuiamWp2GdKQpVIHi6r1CH4m7Axn7NnBxAucVQwjJxmqksZGOLldM4fSbTvH05tecF167o6B4N4KmPWey7UlWFaX3HifS8aFszk4vwlgXcjJGMgmmjB9DeDzlm9+bnoMzPrjTz6SPvSFezEpP5oWMGzg1thUOl878kg9NKiHQdb+agFm0c0JBO8AcOuCa4w5qBSpufAadd1eOJpGRxfT6J7Pp3e88BXpjTfvik16TDsYcrjJ/KUyHjzJcLbBlgFTed4QTWY79Rk7KmMNui6NrV7ejLI3WlpfR8eBXKCQLKPpDVOI3Sden4/LcbgMXulKFV+JlPOb3/SS9Ed/9BvpXT/wXUyGHAF0Z+Ng6jSNozKRnXk+3XHqHNaIpyWn4WY+oPsC45pFwPTLX34gxxh5MW6BpIqHc8miw6IAvRwiBzG4PagK71aHn+f2A/fcm2YwOXWELeUGHZ6bpjKwQEt7Y/UO+cjx53aJoZzqFsGZlHIqieJg/42B9ahfKBuDKxxGxqq+4gwbU2s4MU1NpG0bR9N2wOH65kz6sbe8KP3MN96cXgHQXcZHYBNpssSe9QeZoxME5IWEsAJ4XJ7gzJ9H5KGiH41XsWsx8rOFtI48bCFu8C5dCYP1gy+5Kv3qD74uvfb6q9LGyQNpiNn3GitDBkcAMQC+jcFW9yNpMtngrlytUc4aagXEGxg88Nqd51poBCxMHU9jmzcyfN2dvvnFz00vZYMewVWQkzt1ZrfrHPNy2BwaZfBR1C15C732bsD+xVqrgfwZXWu5Ou/8rATcpQhlHNTe+Pbv+Ia0/fKr0k//9L9ko52NdLJOOnbkAJOcvUC99N7ZXDmEXKSDFsVmN2S+6667WVOLGtdmYzKNk3//8/DSLl85elKMnG2pqnPJ833gU4+kx1AonmGioTW8gWEsahyM62M06qsCXfRCb/JtXBQ/n+vKfb6DDR5Nc4cP8QK23GL3NNamOhRmSI7kIY0x+TD44CPp9le8ML3jueMBaspRFc472SA4CGrn6sxOyVquBT5YwfmSCA9UQblsZACrwyldxfHjL9mVXnDVrvT+j9+ZHj7CxMZh8orZptq64TTDkNRdz5vrRtP8gf2o42DVBUFvzeEoEyctZnlnmNQaRTug/uSR9LU7rk7f+OJnpmspgMNuqxzxY3bdis35K3n0odeRb356/fOL/d+1UgPdPrVWMnSh8zE7o5oLRAxBv+a1N6Vf+je/gKrIIUAC7oh9YfO3+jxyAWcWK0MgfPXaQreN6Nzz4oEH9p+2N8glCLrZmRe5QrqP6MGhnuwEx5dZt/SJux9AeRdLwwgpN47DRyGPywbIfZs4YshW4tLvTBzhq+HtEGocCwwJ5xiyNllDO8qwfODY3vSirSPp//pnr0rfK9CB1/LC4+QJiIlJgjNJ5bRhKK5F1pl7+fO4FU0ok7uFtSdQ68FTLm8refimXSn9u297XnrrlTvTNQxbt6OiMnNgd6ptg8fknYUjh6grgA51JGej2yw7a9I289MTtHkDueNkug6B2/e9LAMdvGFwdUPErRw5nCIBXXXysuQtRDbcV9n2Ud+twRooTbkGs3auWbJIJylWdBaGVMy2OYHnSiMZhte+7vr0j/7xG9LmLWNMJsAJBEica9r5PYd9zlTK2blMzF2VxsbG0+c+d2cVsfnr6TUnJKecjgN/pEkoQvgbi6rCEOfv/8296RAWQyaQgw6Ns47z6OHUdPgWCscZIjJUlIjphlX5c92Qvp03OrB5KQeXgOYQnM4ckwALTFYMjo+lhWNH0vqJ/eltN1+Zfukbr0kvYBi9naA7qcc6m2Wr4yYnVInuuTpHJ1pURwE8b7vGEaIMrCAZpm7guEbg0HcSYCdFvonzT752R/rnb741rdv/CLZJsa4ySXu6uTdtkBfPIGtkne0ogDkIu9xh+D+KOtIGFNt/+JXXp9dthPMmPYfew8RpeQJxzYQZqmij1HDv49ycZrDv1moNSOVPG7eS1OJ+heeMmv34Oeno+nQ5vB/70W8FjNzXMner860Q95sQ7EIHDOAT/EZHxtMdn/t8T9Q9ANPj2720g3E4xSPHJti5WuILrJH/64d2YwKJnunyLsbls24i5DRvKPJ1Y6gu7KQr/U59PyQ4s7LBPMfa2amD6fLWXPqmm65IP/SiLaFcuwk2bpDnTnKMwibXWfnSYtjbYHb2LJI6eSaqcpeHAotlL0dMeWoM1FU3+vLf5HKIce1WAr/0KoyVfvfL0675ibTBxt3/ZKoD2PPumsbXrUm7qHDd4TyGTt3ggb3pO1/63PTaKzOXuI443E9W0VwB3ox4eFSFM4u6cs53/d+1XgNPK7ArlW2hlnW6csOXeZAvuU7uLkRBBPb83bd/C8CngEYqPx+39L76XFp2cZbXVR0PP/pITwcijZKvKrkyoRJqIPZuepOxoTkXQ0Rtgbz/C0+kA1jZnVsM/iOArokCn0YOmiyaDwak20uJoDcNr8vBZbhyX3Ets9MoLLMKYnCU6QEUo3fUJtM7v/756cdvRV+OFy4jyiEF9Cgpz8fEB9wfMsnGPMu9QqG8CLmq+M/2JIJURyFObx0yGrN2brTSEqwkNu5ife0QtSRriXMI+kJGr//hbbek6xi+bryMNa7T6B7xGiYaMDCAzRLqaqY+k3ZtG0/ftPPy9L3XZI4uwNrEeh0gHi8HUeWPjm1iMKsuvDmHh+e+W7M1UOhpzWZwtTPmmlwNDnQgYvfDmUUzlzXr6ZWvfCHyG8l3CazOJe1QtqVWPcc1HITLmI6zZMrlarrQzrGbMFQtnaTI6mwQ31tySpmyAjGDsvTRe+5Pc+Ob4UwBu+MI2tG1UZa3iKEDVSrK8G/p/eqqN8oTHi55DGLF1yVdswceS9esa6Z3vuoF6R9fVUuXE2QclQ6HuXZ+t7Grw1WGBd+iJHmedRe56BEjWJaoj272vNOKMfI2uMg5ADaUiDEkMY/MlTE1Q+q5mDS5FfD7P/7Rc9PlMwdZhwuXh4HSvMcGxgbg+MZmjqZrW7Ppp96wPW0jnQFBjftofyvc+jIvoUnMNTI9uWxBLrucM4OFfh0PTln35ZX++ZLWgC321eGqzu6KAhV/WVyAqzYV5loZ/+tf+6ogcCcYylDUmdXl4HP66uquKiBYyO3g6oxrkDWrc+jy3fn5xxGUAxdwfC4ts1O5n2x2WdstMAOZmc+y+i+gQkt9+M596RgmwqdYjreINY9atZICpTpmkTH+pD5d9Dg7aXWszK5Iq+6d6ikuKyOxhiolzFDK4c4wPB0ebKRNc0fTm67Zlt6+A26O5QwjYpwgzLuLlMkcE7xSi/MKCRfD6swuc3suruRZKyiVI2cxP2MKamS6i5qztDVmWetYDzYkg1qWxmnO1KfI56hgJxduY6T/C69+VnoZ9g9rhw6kAQCvyXC/zaz767eMpn/1OtRWeLfumlvNPdkwjl+dhvVs4taNqyRIPSsz5e8TNUFq+Ygqt+q59+i7tVkDttdXlVNuk53AAicEUUusgt8NN14TwCa4CXg6gSrkV1yXmdV4cNIfIYDI/F1G9aVb1Jn5xQoLzxp0oNBbI2xNnQ5cB2Vk9f0iCuVNhFNN16g0HPkplr9Na9IqVG7zBAY3ES5SKFgXnqf4EUSVx+kAfUGv7cQGHGgd0KwtTqT65L70j17wNem7btmeLiPYVju/u2s5TCUzxBDOfAV3Gt3eQIES8eycf2STPCoOz7ZxBRjr8aPULjRz9YsK0kKNK4nhnTmcJmHmlnIMUMFjaPeOkdFXYoDhx1//vHQjkxqNg7tT4/CT6QU7NqR3veaGtI3isD04bTFDmeDbXB1hoUjb9iPJKKuAaplL62Y1+CoogQLseN53a7sGSs9f27k8i9wFrfaGl2JXOHf5KgOSgAwJljC3Pv95MEnMfAIIvQZAy+u9XFvxW3nOaggVmJSH0XOoaoatu3fv6WKNjISuzCsEBxkmlwgKbtjBtIJlEe6B8bjjyUPMkDIRQTz6qRycL+iIXJt2BtmcVgaiqkYiDwYwQg6AVaVa91h1pqYOuDYWp9JY52C6dn0nfeeLt6WrSWNMnRLNuSvrVKYJ4PmRiE+BmfDjAWCW6PFZBUd6FdhF+bi1MgJrPcPmut+Di/5iaRwgJyF7NJh5Ego1azXECyo4v4gp1ne+/Nnp1tZUev7AVPr+r78hPYtvxhbqmEWLoTYzz2cFaWVwh9Z772HyAaSELkAXUGv5++4fTA34KX76u+iUFtPuIOnSYfjLjsGJsxWEufpqlFHhCuaYrXNdq9eFyxMA5fCemrurovWkTK6bjh41diE7CrdITsAscaZi6nwYs4XBYtLRNcskp+TyoyMcn2BV/CTKsm35myiP3AcXVdk8ZfCjXKdjNQCmGiC36DIqIwdcKSZLqwAQZiy3ssXM97zmdWkX8Y2ZBceI4UghhFMYOggODk+ATlCoshC1m8Oe26/xmKTttKzmonDxYCmxANlcu5nH413KEVnkHHYOW0xqYIp+DMOhr7sCzvDFNweovxRuz/kMV0Wz5oQru4GyQCHNv5yLkpdSPnOQ85XzF6/qqTNNTh59tzZr4GkIdplEM1merNLp1LH+UmmYQ9lMpcrdVSDdtGlT2rs/q14UTk4uT7Ar9yeL9WR+weUF9dtFSI2klAFqwECAiWzwxJFlk7VGCsDrDG91bgrjHgvuZHWc55+499E0z8TEorMRhlSmFNwPCfhPL6cIXFgejhyND/RdugcIBXBnihcxhNoC5CJN1tYOYV/w1c/cml6BpjALxkK/GGYnx0G4RZdkVWyoQ0eZPmvbpAYtp4c3JW0uz9bZItlV+V4ZQYnfs+lVTnxXFFExxtSn213iiekwY1In723P3hKvYHg4lrkeYunbRm0d8lyg05JgcKzxRqagUj7jMFw596aNdzzMNgHjrv+zBmvgFBS1BnN6RlkqQHeSwFXHkJsq8p44V2CgYQLdjh07gquzo8jJFZDzXqA6EyfW9Lru8JK0plHtiPsqP73h7Oh6yy3Zcd30apbzYTwePTydJlhnmy20WAihxpDZZdNFWdZU/E51dqjeCpkgkAUFaExznhnYXevXp297yS1wd5nzcfRq72+LIOQ923zLfJQpl9qO4ppxj/NyeZiY4amHNE3Aw6TjIGXB3iAe5bm33BexrMNtlUWstfV8YAZ5RS2VcT4MtuQGFbGZwVYOqKFR97wuSZRoc2mzf/iVcpYz8UR7k4f4uHHfd2uzBmy/rwoXDE9PSWO9J/eFW2uALjICo+6dwIVHr9xO4CuTFj3RPOWlA6PgrioE3L17dwxfBV2dZzuozv7jqNEhrCadBDzXgH7hMfpknT1WXYBq2FjELx/nQQR29vDnHK7c9J6rR7KUDNMtSxbzA+qwtU2G8rc99+Z0PZzcBpBMyzTYO01HWCTfGOSdYBvZMHrRGVC2XyQ6jYFqSU5JV8xkmpfzcLkYeSDpdbjsGSNNv0sLyOE00JkPr/UDkHkWbcy1RZydVlEH+SIrPOZnJuPZFMtmJqY1AID9Obg6zbg3mZRRJimTLH5GEaxSGqMAn2fvPaKRypnb4tz0qKRf/PrntVUD9oavKucQTlfALm4g3lAy5pGcnNYyCidXAE7/M3XRKarAOTU6SnV/+PDh6FjVaDDL7aqHbAEd4TQAqtPbHcM++/AT2LBDyoTV4RyRPVtOK58Nm4e09lZ7ojPMXutsYsN5TfyyPXB2dsw2GV1kyVkLCyCXN2fTq6/LSrmqlg2ruAtYjI0Bbu5mJiJXVWDMxlrmQavI8VllV9WLZc6lcqifr72PIoVP9ZxwykN1g+x9YeU2UUkZxqDB4WPH4dgbYXrLphxGn3BOvUdlCVYJBgaibnPf6ZLgAABAAElEQVSkS4kQV8lGlWDEv+RJ0G6A/Gh1fi00GfOI2l7Khz66LFu0RjhE6xBrxKM18GPeyYbEVB0hU46ylBJc3Gye2bjs4ubpoqSmifZMJLQJjVKjM4sxLrsaxLyRnJxqJ6Ejx30BvafKnALy2ANBIi2dQCIkEYdV7rMh0AV2EnZpZIw/46AGYOwKBsPP8L4qJ3c8sQ8Dlaig8G6sQgWgaoQ1Lf6Jld8gdEAOYsrDQNM0vAJCrt2uEPDS7JT7RKgfXMOm29wEC+cp69uu35KeQ4hYiMAryq/UK5Msa4KsCQWLoyjfNDPBliJ22dOuB4HOwZ3weuXhKfN80WrdmHMOu7ddOWhktnxReLxRU8OVc6mgdTOwDuVKy0XMzZGqA/Zm4FTXVTxxIkxwfeUc8fUGOLvreN10A+R69yMh0/i7cqX6XnPN1gbIIZQ7T2PSathhue1ynnk4uxyvCA2tzbDccGiQHebI7yTK26mBoiay6NkpxgT2LT64UdtWXPejvCKeC3D7VQd2mbOTRZEiAKCYic2E7mLxo5gFkusT3AoXaL17LQA+tQtKlS4DjORFymZDpjfN2txYcGCHq5xgq6DJoWSwCQrrGGpBImk3l0ch/BgmdQnD/GaiFpJUec0rMIxIrs74hEDzazgO9Qm591EgLMNUo2vR89dBiC/YtSExSVkRYfQrsM10KmeBei5z9k/+vIRb7XPOAh+FM4q4J2+E78l+fjs8CHPCg1NFTmWVd6ogUc3VddT5qV49S3+/R37Iwtl20EaJvylnXuW5paFVVn64Kmh4WP3LS+80Pqsz+9L1MLuzqTPkwGDd+jGM5NL3Asgj2EX9+aoBuwwA1i0cmzIqwCzPxlb1XRHX/v37g5srkxGCXDnODOxK+1VAE7eZALyUKAPcSjDO3nf7XFzoYf5SeuJJhtwuAxuEE408dkNWMUBFolYQUE4zhlUGi/AGW0rfsDVQfVGbbgQYpHybsf12w/bhMwQR4+u7C1IDcuAcMTwV1MIJbo7Ncxuq+uQIxO+iP21o2Q2oGszch/w5Jq7ym5fiVzHJECMGaVqj0Q1W3MyyOfxCWzECRFlUEC5B5kqNXoKkL0SSpylOD0YEUZB8p+gp0DIOKyWiI1jY9LkAV8KV+7POscS7wl2BzTWHrqanuotE4VdP4I2PIqAlucfEBu8+undWMTvY53D0RJ5mubyI9yin1op9f/mzKiMmGFsSMsAl4SbGOK/duT0W0Gc9sxUZ7t9e5BrwC+Uh7ZSjxw+AC9GHXrRxCxUbN5T3Y9eG/fdPV8j9Yp5z2uzkwayROVf64QZXI8Nj7Co4Qr6xkBP5jixe9J+vGs4u12wv8ZS6Bmn4d+Zz/75slbfZVPYB/QgMODm6wt0Vv3hwNj8V8G3c6GpM0gO3ZMjA1HBBKKKejocOtP2e7963nx3s+Wr7KdcjODjDWRac98EFVO8GUOJvvJF9E6nC8o7L1GJZGudB/Juzx9NznzkatttcI6puX99dyhqo2iq4OfNhI5b2c5Mq56EhWemneuJeyt64iZUfuXhePSuUcjHOJBkuSJr8eJ7AZmD5sGtetqkBiQhVypTfuRi/T1PKLh2/qsKo/aXqFLiWOakG98ADD/LLmlW+QAXUHDacOWe3It2ItWp1rwGXNtY6xFDxyUNuToyLLRIFIp5JuzCZoVax+9AhwG4QKx94rGDVKhrP3gF6FQGV4nm2bB5c2xGUC85puZS7Gnbh1mEx5GYWwDrpMALQnawEPOq7i1kDfpyYhMogl1vEtnb2fWR4HXshM2uOiK5q1thaQzpiu5CgJ8PawrqLeVZUJC07UpXGVV1tYrhi0L2gBWKEkQtlNJWzd8LvChI/4fn5eDztwK4M/+zn4boXxQOiCbDjAcQjwRT3uTu+SGvBY/FcVRPPTlTI2Z054JXYVp4FIiyKDDPT2uMK2JlGAyByaN2pJieUqh08hjkqNt12UiOslQhHZNp8d4sm0HVhquuLny6nW55bLrnYBdKrsyb2ik3DsdjfuWmXT5Vwvtl3l6gGaM8yIdHNASiwiBjjkUf3pHe/+8OAHpZnNKEPYWRZMoNZljjarie+3I3lgl+0Mbulde56jV3uyN4Tu/dm4xfoiQYHSv9acuY133WChpeeXIirpx3YnUklxVpYwEFlEJ1dnAnYdO89D+DjFxUaAhTk8HrBLh6c048pCE+ddNn2bXnUqY8A5xIGXFFtWYQYDOmIVbCbYGXD4jrWberpJ9Oo/OHrr5dHdpYlx1UIKD6v+YWKqBRus9crncKNnd2960p2ClPdJNRJ2LO10RD2qnhyxP3fi1oDpe45dwFAP49m7Hv8nt99H+bCJmkrOCXUo1TncMZ/hv1IapdwAkC6bKDwXkMw12GT8k6nlQYGx6BzJlCYRFFRPcv1JOIg5Itas189YCcqgAd5uIhMLFACjwotDh1cSJ8Ns+kY/QGEymxsUT4+Yeh7imbK4aoJDho027ZlKZJ21Nh79PLLL0fuwr6ybPQSYTPeRpqy+gpwHcLKfT2Mgd0Gm0ATPC9FUiehcl2l4ZDXVZ6OAULu10tIRLj0Wthzs4Mo9KmxAc0zL9sZey4I8a1L2lFKyb66z3lJHnUQQFeAz/vSVYf4MLMErg6IIPRV9rvAeuk8hOSzxfC3jG4udk2GClRnOj7iWVOTvUxQ6FROJ8MZRjSq/nbS4apldgh/gVypwQsU/RqKtqrEzLll+YEctVWrfOFzn7srHTs6HV+i88m1QGKbNUGr8udyrGksCTdQC9gOZzcE0JmyCqKZk6KNq3GLWCWJm685KKStoUyl0SHk4yzVnNRVb0lMgpvnirCWgiO85v16NTwfZH3sJpRp5ewkBDlNlav77hLVQABcSbu0Q/lS0ZgCXsjztN0nHcgpVc3Mu87CL3GD5cnFO2cAizFCzmuMkqo8QXM5p+R7JaBFuS3vqWibR6vgnpZgZ5VZdVZvuAIA3Ph1mZhghyk3SpZ+ONj/Of3Ou38vjYyuj69k9dY5nwoXmOV8cHmkOYepoU2b17NvrMRwaheYR8bN8iRz+PNksKPKSbcwvivBqKyCC8KRoLyx1OWa4YRehLWMoGm5g3v06y/s19KmIXba4sly6WUE7f9ckhqwDXXLGhwaKPd+KHWe4eFo21BC5i6gIoKVHnBxz+Y8m1jgIvIPvASQlbzrn91KnwyUpewl1Oqen1ZgF/29p36ij/d6+vWDexljs2QpQ2VuaegTf3t3+spXHmaIx9BgBZH1RHdGlzGTS5vVAKGOswpQY5N1pk3kFtdee00eZRJTTBQ4BqlcAGN1LSEos5tk2o2Rr3DFj4Qg8UpGnAW5oBh/eoikKq++MdRlqBNffF8kXAwleNFhvFzoOFym8KvCQk1z7b1x+UrfXeQaiEat0qwas5uD6lkASPbUaKsuSzgMX9GGlz67iOcA3e749NRAV+jYfGd6g359rxrdZP/V/31agd1pq6dLIACeBFAdx+Dqfus3fyetX4fZyiOTbMLcAxynjfDkD+Xq5LkEr+wkRiyMAGw33XRTjEK7H2kvqmCFG/ReeZ1u2uksuTrzHufCrfk0E3lWNK6IWu8VTvqJZCIOuTxBzTiz0vSmsQGGsEKriZ5f2Vck3b89hxqQU9N1ouNXbZy9ql9pwfbObVUFx88rw3NUAHjRz6beHUqbz4qQ8Y9yka8CzniFi/wbrFuQ6sEFOH31gJ2VR4VG/VO51q0m3f7dv/0vaQ/mzqem5PjYotB+fx5Ojk1CVdYfOnok6JIeubEbb7w+lEEl0zIrpTBZ5eIyG2vSBXYWNJ0eQjyW9ktEyuvcp4L4w4KEASXyilC6lxCV6eV4YnWu0eJMi3USZgAuzjQ3M4YNFeaQB0Wg/s8lrYGqMXtBy+twNFw85lwATX8bPsKUcBH40vxk4jJTOf3qI9sl0m6uzHMVpvgFV7iibOXZKpwl+6eZs8FP3egLLLJHmyPcL/7Sb6e/+OjHWLa1mDZu2JKOT1YPzqNG5NCcBOjVy/Na9YBnPevGE2JWr67nA8j4NgeRDARO5vK5ys20xC2uiKaH8APkoCPpv3AJMZwVLIsLzg5ZIPlU0STvSnsiOZbg/fPFr4FYNOhXMAhCYPDgQ0Vb58NrP3wSDJtCseKiyzUVwLnY55Ujg0if7HVd6ZuWZaXroc+Vj1bp/gKksJJVrZIAtQPHaay8oIWCRyfNwJR/zy87+Tuh+ZiTxFPVr/IzDI+kf/F//mb6wJ9+NE2xb2yD9YUC3dgYJn9O9u5ZVHadBYEBeBBnAB4EW3enq5HBdOUVkGy3nb0Q6DjIrmaZOlo7YYWFzrIsdio1Al4KABVE0WMKrk5CCnWEXGoBXlDLHcGY1aKTcbcuPGBZ7RjoO4V8B3ndPPtQWO9zTFi0e8EQv767FDVg2/C5iiat2ukpshFMHWFKK+fgRSn54p5LXjKzAS3bv6OPl0KoWmVOLWChW59JhYat3tHrArhVHsYCdJQl65ZlWVMYmKwKJqdRo8M1sXw7NTmZBliq1MSah3J8V5G4LJO3cBb+FE606GWFCnqEXx4Sln7riM/DhdMRI6/+7z/6bPr9P3h/+vLd92c1E/RPMAWWhrBGMsuMaVbwtkFW5GFZo50kbzSiQDM1M5WGMBy5iOncmdmJGCqPsQ/ri1+EtTjSz/GX9wHC4LLyvbt9CUhkOddYh4ybecpWY6aC1wE7QQtgWxiENlwz67uY0Il1reQ51ra6FkJCh7gAzNQQQOFaBTsmYTqM1d0rdh32z/ZQ9stdZ4Sbg+UdZv/ZXjKMB/2fi1cDtikNoBVo2zvo0PaOm9ymGdpyloDETKk5cPbkOij4Yp+rPmI/KIZlgzyhQ2lqUWLlQsDrcqGW0PfiXanWglwYCqQnrZ7LXyRBIorYc84FtOFm4SYamBhy1lKuRvMv8QY5sZiBZd33T543AUwnvnVxz5dxpqz1kgr7YoXVvfdNpve//0/TR/784+nI0SkmIiYApPXMvmJgECu9deRXHm1WENTDQm9EdU4/g1rAdR9WdOg2rFufJicOpGPHDqW3fNMbonxFUJsjN7e99cVt6Oc5J6xqSLWOtSURUF+8vNDdQFpdKz8oFNx6IB7jjqqRViAoN9VRYJw7Ck9cXM4SMdajRfLz1D1WytMMWKc1NOPvu0tbAyG2Igu5JSr6ECRWuHoEzG2fuaUSYClsubpYZ3MQo47IigCmB6kLZJzjtuc+/APkCJeJtBQ8Yljtn1UFu8hcCLopVjSQ1Zyv7a66ocERZGSzgEuLGdB1LF0aC3DS1NUUzMfI6dXQlsCNuIKpo71hEtOBAzNheFMw1QDn/fc/mO78/BfTfV95ELCZQPTFrOPASJplOYITEQ02WDDsAlzO4KDcE2tGu7UhAK1wUZ4VfifcamZHMsXsJcYyj08cSeswa15n89fn37o9i9+679j0ukKK+c5fgU7f0WG2gQm5DaGcqBDBg1g4+XruEdkP//hChp+EJoFlUCsdKN6N953wAAgZFmtgQIA0uiE/QCvBF/++u5g1UM2QReeHQ4qkpcdeOlFU1HvP4xxwiSYuZpZLWiv7SLkvZ8MVcCvvlPMSkRafVT93u/eqxByFotZDlkRjWIDegkYidjLWygF2T+zen37tP/xm+r9/67cZys6xsoClMHMrG3Z5zly+peBeeZjcoYufnVXUT70xd8rS+VyzSE3WejZb62OJzXFUS9at38g1Js9d0cDqhLFxwVcLwpNgCfldSUTLkz/tXY3ytln/F7p2iwA6Q5HJyePp9tvfHqRa6DFDWRXVCfVD3vnzO7hlw2jeBSyWeiCP01pJabESWQV46tJF/4hdY+T4jN+fXB/RGwS/KB9hBTueT8HZlajKucpZ/3TRa4C26tKf7Vba7nQZEfQIt4yOVgDh6V5f9WdV2hVdZjosifSUpwI9aXa5aKeEXf1z6TqrF3MAXeYolr5GVYOQip1sHtlYh045OrKRNaPo8St0R16E6XrqRsH6qRtrRHAC2ArozQBcNbaXMl5ttanH0VLOhXOza9eh6lqtoTTOPgSTE+x9KqgBhIJk5GeBfWKJc3RkPOKNF075c+q8+UqjPgjQIvwn7S2bxxk2H05v/5a3BA2X9o+olxFnlVj3q5fhkDX6yNwYk2PdQmPk83BiQdSiUkGmKtL4rhS/Lsg5lK3ijnaR2Mg/H4K2glLcgaOU/TIsUnjjh6Lb2fTou4tdA2VmfHm6WZIVftGeK2mw577b4MtjuGh3FV3n5WzAcDU8Vba45LLIpUzEVEEyDXb7wFLo1bpaZbCzJaz4nsqPnFYFpSCTkyzVYgXDAAvjZ2fZCxXjfrK27gLlsirZ89MtZD5w8FhwTi6sr4cNfjsu4EnnnZPbo1MrMtO5UfLgUAZCub5pNvwYGhrDn+Vb6L6FbI1wAp4c4ilZ7IjtDH5o6DYbTw+6yB/Z35HD+9M3f8ub07atA4FNqhs7RD2pi0aW16qegz6jyNI61JGTC7XGUAxlwxROINPyOs7v6VcNg5TnBYGRqlFKhAKZysnMDtepM+vvsf0H0/z1OwnQd5e8BioaWMpH1cbRdsW38iu3veAmahTkKM8v5rmbl5JH+30QX5WLXsADJchuBjweU0ZXHQVpX6A8rzLYmUsLZ2GXAI6S+CDc2BiG/AC14xMTMdQcGd0Q4CUnNEXHbrLd3ZKQs7y1dB5j0w6HqALcHBMKyp0Eq9Yg5mQYsi7I6UkclZsH1GLVAB290RpME1MzcHRwTuRBu1sNQKkMgyedIRb0dD1xZI+lOPP9yl/KSz5kvmoM0weZgXVm9Pbv/qdhaaUOt9cKrkkQIq5SJRW25frSM8MhYr60DoXfFgY2Gb+S1/KC6fJ+ec/y4xNLwpxtDWfde8jZlfdINy4J7awv9efszYNP7gNKd1YTG09Vxhx7//ci1kBw5KdOrwsWVZB6zS99oYNTv3dBnvgh7eSV1qePP9OmYbqTK/Q3fc+b4TCOU7gLAHamFNmuzvaw6h7knmP2swXoCDatFiaa6XBHjx5nBFVLI+NjaXYBY5WEK6i/8jyHnog239xlSZBqMRxlEBzyrFkmPrSdVaPSY6hqyoCB4OjQVlnaCFY+5PIEPN+Xu3NfVGV7boYjiJ69K+VdRJ9uAA7yGPuuzqdXvOq2tOvyEcAIlRQ3ZR5hk+nguHpSsHoKcFXe3sJ8pvWcR1AqbgJYzlxbjgDhFe+IZ/mjmiOKe+MKTqHCuALegL8zJTE5wXuPHjya3E56E0eWFPYBz6q79I52CKCjTUvb2Y9s3HCZ5tQpLdMYlz7P5CCIzxwt9Ync/8t9OZ+YWylPFbQug3hikPPyuQBgZ2NQoGgUC1aOKp+A/7xyKDrcPOoZyu+acFMifBvuzlnCULQlOJeBA8vOgJSVkRe5E4jkFNUZRsF+DZZIzaNCEu7+biz6zaF2YbYEQjkw92IIYDQVMG4xlP2qfHZPyzu/4Lh+vRMes+n48eNpfHw8TUxOhJ9APDu7kDZuHAawZ9M//9l3RT5M3aFzJgAS7hJvZM3sLTkKF6JHfCzDVVs3pb1H2jGBkpA7Ls2dVq8IaKWwlVc+6Wnd5+gjiOlaHLlalJ+ZjE5H+TjsxUuwY9445j96s4N3313EGsjaPwKYDUVLBOBBO92JN8UU0jf6mHD8w9g71CimNu5cpdOeV53hKVQaLmB5HDTMzk2x9zEz+9zMzk0jthqFiWCHMZmM7sc+96veUdhJyXgV87qqYKe0LVQcY7hmRytHbzHsSvh7Cm9qZ4UrFVA+Ymd8jiiN23QrF2nkis09vTzoPVfPCwj1vt8bjOsNGzakJ554PG3atClmchcxtTnC3phyhzbyBlZh7Nv7cPrVX/+XCUY1imi9yFkGGK+Ib/mtxC0Xl6tHkt3M8BzNvbTAcHumDE+61emQnVciv6UpHbryYgnj0FYABdRCXUGWEaA2TB01oMk0lT79lfl00/WtMBpqTZzYIstz2b+7kDXQQ6tBj9x7tk3pN8HhI5dttZAzM4KZn59EdMOkHKMkJzdiX9kc+EJm8uRxB63RH4YdNbk5EPYhoduJCccO2YBtfrGU8eTRXCjf0kNWL346XgGnE+rcThkNGC1XpUmvxL/Ak7bWlnE+Z5Gzoontd7Hrqo4fKRYAiIfLKzzbC1sWoBtF74UqKuvQD5wH3AYGmjTkcTYCZlhOAuMI2SYn96V3vOPN6bWvvSkItMMX1823m+j5KTs89Wxnzk/UHdlwFkvp3a7N69LQ47vT7NB4mukpVsycRsZ6PEvnCP+q4HYQ7v2AhEjAOwBVheM5vryT7KT2qa88nN5+/XXJxXISRB/sogIvyU9XBhdfLNusolNJk36i/qbK37PsCtdoomTOhJjimUFk3VOTU9AZ3H9552KXALBDqYuhKBOGrP7x4z7K/ilpEk4UYG42BwOYe5mObi8UG3r77QXI++qD3ekyubIRAvx8gSJHYbkMvLF7nr2TMAS84KAgFuklA68VWaWxMg/dZJ4a6AzqMHZoeIAhwxDWUh5PO3Zcxl6zhzD8Ocw62yPpthc9O/3Ij31XJOf2rA7LyQVHliUaR7gTikj+gqDLY805NdN1Ozan9Kl72SR7A+Whucp7FMlhcXcCovsuUFXq0qgCYAEwnrOtKD+KEJwXRokbvb1FlKsfRmZ6kHtXUThQ7rtLWQMVrZ6QBRvcD+diet7znsWk1xS0BYHhBLsGO9BNHJ9Kg5hAD+KLJxf7B6YF/VIhT1m8E3QPPvA4DMEE/XAw+k69Vk0ABiFLhbiKXgX6wPjsu+q/qw92vWDiddU5o1ilE/aGiee5gTMwVS+cY1EL9xLARxxZBrIUmSllt3RVfOJc8rjMc+lmhHWvU9PHkKF10q5dlyO3O5paAwwd0YXbtHk0/cRP/SAyO4pNMVzW5kYjgp4NGibPe8tutD31U6qio95fmG5P6ZodKQ0w7NSEO2PhnBEqs5GnfVM7lIj1pjzKd4ykoqFYC2u6PMr1kE3By77FBuGonszQUQ4y3PjMoyldcWWWCOZE+r+XpgZsPGmznL2WO1dWN59uu+3W9PM//71JmxX0rnCIwuIV5WUhQapoqnp88U5kuZs012Bc+qmf+TU0L6bg6FivzV4ZdgxLlnMPOOZOj38uZy53N5ZVzfvqg123IFU+S+e2MOX6pEWQS8nNbEUEaHF/Nucc7RLrvxLoTpqsnlHRp3za88DZ5PlQT2kiM9m7d0+s/Ni5c0c6euxg+o+//pvp+uvXx8RHE7Y9lp9R7JoUyKFVE9f9n9ZBCTnfUnArbef3MtbY7mWFSfBd0gHD0AYcmxxsO/JO/JmCeGhanKLDLJ3zyhKemX5wewRiYqgNQB7hk/rJL96d3nzlTUvR+GrfXfwa6PaTIJyqrQQCOHLUSvbufYTljrQyzWczMteEXIzWjg9rbnrlyIpAYoRzMc/QeHueDOEQ2bH1AaOHyWMsFmB43VxHPwjC5GkOEwH9CRq2jBfWrUh1tRKzUCuOkMXZ00yyHCU9C8rBQnWteizW0Z/jONtzx0XypFNjC7elw3vSrYC2m7IVXI4AhioPZumkoOxzGpHPp8Y4F5jZHRsfZcKC9b1wYe973++lm5+F8U9lKORjdo4Fu7h5hMfhBDHrpIBSN22eFj/PHlCvUz1+iTyuv+oKRp7kPIgi16zDUo9w+PuBLB/J5fWrQgmHz7sAyFtSo8gHAS60RtIDjz2ZvrwHm2g5xv7vJamBigY12BBtbaP50QPJGLKy9iht2TQeH0wZ+8VOXpJYJwwMevQ4+1HW1JTa7IMX8+yQ2j6CartZJvkRrBqpiSAod1Wnuv0/T6ZJxjI6XZHMBap7Kf7COAGj5ygzrEuJ9XYrs1GFjwAWX3e25/JOibucI7Kcn+qyCH4zF5U5yaU8VPmJRqle4BQTH6jNLLZnE5Ok0NVMuu7aXekPf//XEsydDFcaatUZ5iI7wVSSLvaFjdb0JrxO/JEmizMswCbsKN1Qjnbd9k1ZljYvReSAbZbYzTuEFQQDEiHq6ll8OLqwJcSxZpeCxmMzGeMdMqPuCb2mhRB5N3H/2Z33IF7OazCqLpYT80XUHOQu5BpYhRzzwo7Ow/ncqo5w2at7rV88NEDvUYU74VTCnPCg65GTkbPNB+Jw8pOP4tfNSlwQZyy7y2aTzHdkyxirC9/33bjvPuwm2XNhuDzcVwYaclCf8mqjO7vQE/ysLk9Odxn4SAAAnJmfYXKMbMLWtTC1Lf82h5jDVutUthCDjiNd49NdrLNpAcokF4BHPmUOpibnMJiLoQ2utceYKYzynOB6O8IJD8/bo9TCeUf0lBHIfdAw6gspf8hd0AKTheD6QA+EmDVmcVxQLxid7Tm4FyuzIXeI6Si+eOUIgiEPfucWWVrW4dNTYyPfJmtZB5jBYs0DS1DJFQTrV8llWVpKaTAWral/h8ys7te2PQPjhY7T7JH07cy6vue/oWLC/j3z0+g5URRyztS76sC5apXTBsgJdLZlOeL5UvVHM/sDwi3wGWwCc85sOUP6kptQMdh3OI2xV2id3uXa2zmUltsDEg5xkO8a8pAhhNNZ/9B65aAeF4mwg1B4lkmJOZaJRQbybjuZImkPt3k8uvGK9OePHk937mPvC0LZfWZLNFo7Bdh9Qmhab54/La7huj2faz289+g682FE5pUjrquI8SnBl86CiWENg1t60L117j6DG4DPldCb84MJsSpvDPoilnhJoVY7l4HxQpRNay/duIlvanE63sTmF/4WJINftyhLWeYJem0cKPB0i8xtGsCGYUMW5XxcGQFVCsUFP10hI4+uXqjbCTThzGPpIMQ1gJK+ba0loTwqka4u1WHh6WfQmmIcN8seGlxP3tRGoG5c4VGXunKF5hGJfT0fuYMYx+o7u+IFcJCIwCBnpxNk5Cg4h3pIFNQH1XPPIVy3AqprH5f3z/Ds2zWEFxKIwJfPEsgSAc6HVZIWQAb3xGqJ2Zm85MwZLXWVYnhH+DYdZHoG01C0xgATEM6qzs9hB29wMV151eXpJ37iXekFL7wizYEB2MBMG9e7AzpALr/eLZeFWOGWsrLiAcXlmX3QrkaKwJ1gRdz4P4fJkC/MoLQMonZirMATBYALELgdgfqd1ZICtu+CkHxRR+fxslRh9otffmwjwyNbaY6kA8z4vu/v709XveHahMJA2mhReFyDWwVlwXuAoInZKaBYUBe/u015mnIZLAoXlB133R9fK1nVU4OkQTvEH/4EyDlcqlWzle/8cPp+5ucM77Njxw+njeNbUSckvwBAjdUxbQAfexGAFDPqgP1GwH8eky8tzHstqA82RJioD2PMzk+jLsoZFWh9EWWVJ9vK0Oqtx4e2tyC+eLbONIxwWWPl8psTwc56tD68N3+RN65z/XqxFlzVYjHqMM/mkiOGHtYazmsJvnJFk2KFd3m8KufVB7suyFEYrytXvlD51qbKLspPs5X1sGqX2XnLspGzPmd6JHLjyWDRS4NNiNuVEx3AzGVnErlL1wSLNkOd9hya3nzZB5n53LC+FbK5GWZfhxi3bts+nt76ljek7/v+N4ZswuEEk7MoTzqEmEWnyEHneToyix4muWehPn8CH1iaXnbzFenev/1SWmjA6zGLSiYhFgvLZIVE1YLbdMY2COzc8jAJ2H9oz5Np5/0703dem8syP3mEYS6AQFsuNpEXwSkGQ2nGdDYldKys1dYOI6O9FV4I3rARIi746aGB4mUEES/P5Ao4ybfJx9ktsBKIN4n5wLCAgt0IjWkOOpEfUyBhy/gGDChgMRr7hUd5dJzg//WzezG7P5LefuN42gQ6aVJskA+XPKwreBgU5rhMCGc2TIJXSac6vMPTIuU2CmrNfRY/Z8ZjdrG3/L7fd2uiBlYf7KJYhUxO0urx9fJ5cSWs5BWkBXFlkJLIIoazOiuWze87DPZ9gUwaVs4xA7emxRQVgnUuIWuzZK0BMKqw2YIzqjFU1QjnsWMzvNdJV129K73lLW9Ob37ja9L2HbxUdQjjnmMCYoiNpuV01MEbGDh3TbXo0FXcmQfRvHrWffvaZ6b0Bx8/kvbWhlIbTiW1yT9jsQagrXoLczKgAS8ruT5HNwuIHhzelH73b/8+vfzalwbIbnW98vH9qTm+ibwwFDHuqNSeRKg3datKytGKZqUnSL7M7etvt5gRYRWwXFcPDVe4J73C2zBG7OG1noKftGM+aLs647z5Odqc0d0x0PC/3zmd3nvXk8iNNPRwS3rrM4fTFoZVaXGKd4kIbnJhch7lcCuRW+Is0ceZe8hjyZNrJuNJPk8BxEuks8A2A6UI4df/WVM1cAHADvKQME7X6r2AF5xg9UrFwy7nAs+yvpBllKQ95zs6IoDnl3807OEhc0IG5fC2yRCtpaUVni8yy9pBWVPZ1MBAK9108zPTG7/hNekbODZvqfJINDMsZRgdRkZGf8kALUfRJp7w0POcnVWX+Yrczb0XPm+GvbtxcyM9Cvc5GTOpcKTM0KFjCiIgw1MeFygSvRDPs3fO/04tjqQjmMX6N3/w6fQf3v61+DQZElJ4q48oHQrOQTWObL0PxzM5ncx/gQnVA7N2MieARFYjgHccXtv+MQz3LYXvGGflCDavRBZgzodR9kqRQbxneBx01WI4fpy1ymNjY2k/Xn/4SEr/+ZN3penRjWmBBvu1j385TTefl26/EtUghLMtdRdnWOLE0rlA1shYxNalI1vC8kWBq+x6K+BZVrMgQIbOY0XPePXdGquBCwB2VQmj0aWcp3JQj2FxEpCrBM7krXjhJD9FPid46RbV6CV+OTfJssOXP3dLhrKAxCzDQfuN1lMaTGzsuGxDevWr3pS+4Q2vS894xuYQslY4mRkIohkG6Fwu1nIdGB1VQwBjKBW1GR43Q2aH9zk764K8Ryd2IJuYOmEpGsdt2J372Bf2pMkaHbPGMBPWpcXw0WF3vGAZc7G5Pwfn+6yoOIQc8y7kXb/1qcfSj7wYtReGeOM8UmFfMaGdf46MOYRcIiDWQ5Lbkryl4JW4z63LDW5Z25YA8YQ3pQMnCHpdCOrxKBEag+956KoITbcAT5222Mv9B+5P6d2fuCcdxFL1HJzc4PBYehRF13d//PNp44ufkd56zcaYAGowaLUsJbNWg0xyb1m66ZluJJax1rCZqz1RZGKUfbd2amCJVlcpTwpqdfF1r0AsPOTmwnl2wsIbibuinLjmHnAqguEIfpY/MYQNoLNLEj15EH+ayOdcRD2BkqML97WQPI/A3SHtDTfckF7zqleyA9it6ZpnOBvse75cHZwW4SiaUR6m+hn6DjDzOQ9wthhSCnQzs+c3hCWJpd7ltUvDcheMXyVot918Zbrinj3pOCoG823kTKw1XGxSZ8HtkFkLqpDzXB2vDpDu3FwjTY/vSh+4+0Dasm57+rabWzKPCPUFNyw9072dTwfaSUlZF5NAFepk8bk5z8AnRpWWP5NsuYlQTBRABVZ/tuMHl7fsI9ITI4FU/7DUAcKcD3B8cE9K/+kvPpeODWLPhTZGgT/NYyJ//aat6f7dD6X/9OmH08j2jenlcMyXK8eFW3cyswCZqhO6TEWUhTSYCC0e8SxIFv9Q8MUnT77lR/3ftVcDqw52S0WUzIvrIc7wKveGkagdlvhF556zHeV8nKoLmbMjblDVmdcw2AmxvuoVL0yXoxR38803pptuuiHt3DnGWldonN4S8n3OEq89TdN2NeRA9jNNx3fgoARBJ0NVvGgh45rFnLxYo6md83aCqVUSrkW/05BpwcC5dDUKml+zdX2aOjaQ7pumZ9L7MDwfpn4Q5IEwNqfd/txdzLgyHJ9mODiBeZ7/56NfTJs3PD+96fIc5zraBiiMNsqzoMgLq/YKfIi1cRYiz4Jn0DPMqVzV1pad8jhRkMMaa5EDusVljpOG6EZU4rTEtscc4HuI679+MqV//8efSkfGLkvTyDZnbFzlnMhpjx7cn4Y3X5bug3v91Q8+kNa9/po0wJzPuGIJOWTRzYj54oW0gEs3t3SI7kRQTU+fm2h1+IGVLpZyxrO+W3M1cMHAbhmHB3XYaaMDQCCxcBliOo7FkGuvuSI94+qd6dDhvWw9OBLDQzmrc3XP/prnRPxu3rNhw3pMom+Oxfrbtg0hgF6K9QTCNH/ih0Gq9OPrHh65BwQI8hhNJ36NoYby8CqAHDF1XaQnbBA/19HvuMMIfcjubn/Fjemu//b3yBp3IRBXF24+ja4bTgv7WaPLME1u85wdFd9u+uHBPA/qUAOAxT4Mkf7qh76cHn3Blen252LSnkH1uLPAKLKq0d9Q3hlX1gniAi0rh7N+LANPAcBGTbapW7UWLTsvQobrrbuzRfKAh9yiztlYZ8hJE0RxSE0qEbZSkyacIeuJEWr63TueTP/7S0+kg3V2jxvIewHLsg2yUH526kgaWD+cpg8dTgNwrvexZvPn/vDu9HP/5Kb0YmQFG52Fd7JD5IqZbvMt4KLWA020EBs4vA1FcRvGA//IJz+hK4ZX363NGrgAYCeR9zqRI8ghPP3IToeS6gLbDI6mN73x9ek7vvPrAA3INQgmv+sb5c2zOi8l1U221ytiP8Ejp9n9Lc+Dm5Ciiytl82ygcl+en+c5hvqml+NdStnuBvhwXEeL3bptQ3pw71Q6ol4gw9hJtmxsjSOAn2ZNJGxoUeM5l9wsorKRkG858zrHMLk+tj7tnqulD923Lx08cjj99MvRLVwcTpuR7aHfAdsj90xo6moWPcCGmtUBTFXuo/Hww4T+AkNszfz0kEPOYtS371FGwwN4oXIUmKbcEjluLJtibXJ7Co6aTZfwxRRrKAib0t7ZenrvJ76Y/uyJ6XTPNDLV4XVYCDctIyRqALdOpHPHZ9P49p3p+CFAlLw8CXr9wv/8TPr121+YbkK5fD15cVtPNzlaRC6rjqGt4QSFsJcnYXr02yJyw3tYBkP33VqsgVVvGWkrLw1bijpzdbn4AxCglkOUmc2x9GUBTiSAjuBs4RpDxjxszNeOWs7qHqL0w9x7SIgONRdiwV7VDDFsIkGH0MuO6rmnIFzLIfVX3Facvdc/cx+5zJYbr/NxRlsdJaqcumCXO5hrM958yzVpa20mDXNQa2Qt5yMWSJxP+r6r4EoDn8TdWTyGzjLqOnDJdx9fTH9y7+H0cx9+In2SZB8nn0dYfdLmiJkbsjGoLTWnaxVuKXO08Qqy0YhuqkTgChhMLDvLGuUVtVSuZ7ED+Bk1bYhcF8x4I6scdjiKguPR4zOxtM1h64f2pfTPP3hvevfdR1C8bqXJISxJj8DtxsoJKxRaYyLH6dPhBhuX751kVh4l4/pM2jN9PO1lyP7L7/9iuhOQPUoWrdUOIooaa4az2pK8qznvWW7WUzQe9d0/gBq4QJydlKCC5coaqMcG1qMQohMDDXqnEwilTwzRbyrKXvniGd93YpNquhhoJ+CFIzvmKJtoF9x0FZxEGDsgIcq1oavHS/75rRxTuV79c2jJV9GGKCC4S3mKDHasVEsv3JXSK2/Ykf7frzyaOutH06yyO3YYH0Z9YgbBY+/H5axyaJljxYHcIegVHwcqhY6/MLwxTQ9tSH98z8PpIezffdvLmNRB53Ab+VrH0C+0C3llkckfGEGqkjqFk9I6i9Vq/UsT8eXyXOo46jyeZBmZeBj54BzL+uDfwM46w9DUYFjKe+BZmuN4nCC/85f70l/d+1iaGNmUJrdch+iSGlRJWKBDQTzSC/1D6hAA7jD5MjKIKf2jR1JzFFkiE00zcG+f3ncw/cafP5x+7LVXp+vpFUo8VLsZWET5hTZQmvhUWnTnXO+k1XcXvgZWF+yitQUKqV3ylqizC+CDiLVH7zBHi7+tFkMJZDwOWZT7qroRqwHKS+dwrodCVH4x1E4YN8fXOZBPYM3dbhkiFLS1k0HYcYpOWIWtuuops1N12FM+P8MHpguWBTjIR2aXJVRq8gkQWjqxI779tg3pcw/ck+6fwc4/a4rDCizyu/OxHBFK2CyIdX3t4gDpDVowEpwGxUCXGfbAaF59c/r0sd3pzvf/VXoVqjA/+JLr0vNhtjaBK4OMbGeosvw5QeeNaydZukQWkxeWqtBFqV/9SILkFojLssfiBvLRCos1QA3rTg/z/BCvPEglfeTuTvrYVx5Le2Yb6fiGK9NxdpWDzSTBittVoKmccJDcaB7LyKmnedjv4WGAcxIAx/TQ6DrifXJv2rz9pvSxR3anxv93X3rXG69LzyAPGN5J28OgA6tv56cx8uDwfskFmXNru0nfYTjWj5MefbfmaqBLhxcmZxJzL3lAf4BOGI7kSYvh0hACboHOkOqjVGsnvDtHl8XW0F6kJXvndXaRSr4snr2EiZ88lHkuHFYE6w1TxdQTaYQv3lVJlm7P8srUI5em6UEGxOK8loIzdSbg3UBffusLn5X+7V/cmYa2XsUHg60lUaWpwTHHS/yei2vB2XWH+72awwwh2yjZzU+BNGxu3tkwkv56z4F0/3//RPqG669J33TLjnQVyoDWl1wemBXALXA50T4AyAzGcLuqzChbt7SEypQiVAn41kETTkydX15Pxzke5/jwXbPpQ1+4L33lyHyaRU45JSfvmNfZJ8Qi2QwJ92ZEvMMQ6iIWN1J7PDXYM7jWmGc/3yNpZPMY1mnm0iSbJjU3b0sHkeUNjm9OH3/8gbThk6Ppn9x2ebqOQpjD9jwcHvv26ixPZJ0fz6bj2Ty78fuJoxkD9d1aqIHVB7sudwcJxBBseTFnMSs0AAW7E1ITyx0dhl2OOJrOAjr1r6wnd/flL57hXd6QRK2vJWAT/rR0YtaaasWudEG1xTPzUOUuYrHjVK4rl/Od8Lc7eHQ9uF5Km5szdiUWzxEnnE3uUXQyPgShUkNa6sI5B/zmm8fTRx58ZvoC05DHWJsbKv3x7nn8sNTKumsre2MY6y5kddRuBgZZbYDS9RT6hJ0O8i4mBBbqm9ND69el33n4QPrAQ3vSzRuG03e/7KZ0JZnbCvMk4CmZYBRMjFUlOkOlCw4o11Mw3XpxCNUCxwQ3xzg/zHHXEyn93d2PpC89uidNLLC0q8WOWnBnxjTE1pWzhF1cBA6HW6k1j8VI9xOuuz0n9OUa4jZz2bS7YoGwL4gdwqljh9PgxvE0OwG9sebXyRYtw8xs2JI++MV70zrA7Xu+dlPaQBqCdcwmB31SkqooPAqaCqCjXbrmnnzQd2uuBlYf7ECDzB3lsgb2xWUmbNVOXHi/wGzEIkuz3KdVvbU67IvmazJHdW5gkVPMw1CvzYlO3s5t3XTZB79yEb69P6ZdNMd6/Vdc9xD8iifnfRtaaeVD0RUHZCG5i/1b1N8o4L0NvbrbX7sz/eR//nQap+POYNljXjlXqHnkOoxiGlccPYW2YeJ2qa71mseMSwudQfcQcLtINwwSZBcADhV8B2ksrdq1sX5inG2Ad3qslR5nounIwcPp4d/9SNqBKGHHto3phquuTDdcvTVduZVd2agVgWzAdg44pZarLJgNAV7Q+OLuuXSICYh7DzDZ8MTedN/hKXTnSJONgeYHWdHC/h/TyOLcEN02nZnBSKpFGCJ2huAdh71oQEuDNcCrztCzNjjK6g/iwKCDux/VKUOHPYJnD6KKsmFbmkMFJZaGkINjgGltZGv6E2z7pblr0z976ba0DaaxPdVB1kdCpV0iUdKtnGW6gCRRkumfz6MGVhfsCtCFsD/zJ2UqPjgtepNi9gWGWzEcA9yWlndlQjLE+bnM00l4vQPYE+I8BWWavjk4ZT5OeG9lflfen5DyKT0EOSE5hPsxdq3i4lpAUPm6IedL1Q5i92+EvLwI1umH3/C16bf//KOpwfDyGAgytm4z60OZTZ1mSdsmVDBYQNue3M9LuVYiA3A70TZlOVZ0YiJ2tQGcUbg8Q8IlbUZbxdwPUcRHRLWTEh1pttkJfmpoU3qcmc39hLhrejF95K7dqf7Fx4LhHGD23WHsjsu2Ex/lhD1Sluq+wRMYO506PpEmsKvnhME8OkgLlHMBowdzzbGcdtQBZbciyGPkkOsackS9sqCQVkPu6+hgvgZ76RctlCM9w56xxZ+a44uYwoJ3BSDZ7YrZWBWFa3Jtxrc4CpfcTG3Uov773Q+mmeFG+oFbN6fL2Vy9xgbvw052+C40brqOoO1Equc5eWSVVZSPb9+tpRpYXbCLktHU0lT3C6jniQAQnJV0s+zZieEMcbYuoj3bl3rCnxLoesIsv1y9fBfZXPlImI6dyg4kDNfQ/Qr1EDr/CA/Y2ye99KqUHrrxqvShLz+S1m/dlg4c2p8GR9alBjO1UxNwM3Ikzh4E70RMRljFKoAGN92ttPLcMNmFJNXn3TD6V+EiLiWtqncAThhQsEn9iLnEzhlVx33um6ul2nv2ahoUL2al8oy5kQ5CLwBMCPu0rLIsoQj/lD/kQ5pqq2ISjkz40Q2LKHqYj3zUAFlniaMK8I+/SJI8omNYYzZ3oolaFDqGH/7Cl9L2wZvS26/bljaoI4X+Xbxn1MTqa47MlaM2SO8ccm7m+u4i1ABN1ndrqQbsLAG2dJ7cGXOn8tY1owuxGp87Oq7zB0LYM8GXN9/6zPSs7ZvTwUP7UmsL3FDnGHLKQ4RhmMfwbUB9uClemGdMtoCyMFxIg45bd61rTQBSXsppVRxcT8gvSE8OlexqNHWOIXEHf81nLXDoN8+5jV+D4WZLJeDzcIuwVZ0W3CGHK3cbmN9qwAI2FOo5Ows3LBKbNYExAA8f7xcRDbiX7jxLR1xeiD0oxCs1DLhOpc/fcWfaQtaimlBdiW8G7/uek7zuMeN1MMLnkf/+qxe2Bmimvls7NWBznLxJ5CI8lDflTVjg8PBxEoClnekWZOzf8tKvSTtHGS52sLCcJgGV40wGMeMNR9KZcOCHWShkUnVUNIKzjhiJtWzqEr2YYOfs6PHmvzsJwT0AEgd+WnIOi9BwTk3y1AxdSwfuAAay2wXAL1AjfM7lp9RSVp9RLKDFKLkubJtm+55c69RSmQfU2oBx3trIfFC3THLMYveOOek0Njudrlk/nr7nba8LeaNaA8Etimy8pXTY6Dysz1Cml5vsuzVZA/2WWYvNYocpvchz5bzMHUyZEeBVm01DyKAG5zqJOYD06m0pff/rn5MGDz+E/1TY5JtSd5E1swvYbFsH9zRI+AFAx6Fim0mINpMcDmPryKzqPHOId/5OsqqO0AgWoAETjnkmH+aZ5XXpGJAUckBlgV53HFqeh1N+NsAo00PwcZvSWZbTLcByyek1LWPo+jGxIoOm0VMRjHzVVPBjyFsfl4Wboj7n0ubDh9OPvv6l6fkww3UX3lZYrq6US/LcfEiO2Lh1/bWxUQ1r9keK7Ls1XgNyJjaUw1uXxQckuOsKnazGsHaUXj5OmM34vBHU+/bbnp02LCCrQ/iunGxyaioNY7TUIZl6FLEJUUToj0M71goQqQL2zPHhdT5OwCygWTg7h4ZcO4Na94hhI8Fk/ACP4PiYMAim6ZzTZvoLtRiPXGPGT30xllWW5yZMwmo+LLsH9egkTeyTwJOJvcgXWT977ED68be+Kr2ISt1EcdY5wi5gR96FuhyPq3SJk9v6+WWe+PruQtaAlN53a6gG7EIuoSuyruhT+LkwRP7BPSCQftFFDYmTG1IuxkzhOJzaLriVd968Oc0ceUb6y4cOpb3olx1DFaMzzizrjGtdNR2Fs58LRMFFAj6obMjVLQQ4GeAcnXnRFbDz2jir/OZdsvTEGQYOzz+nSZa9k0Oc1a+TJPC58Y6cqryj4O7+GA5bs508gY1hvKwdlYBpAs5MpphtlkzUWRO8tX00/dA3fn167S6WwxHFgCLNHrDLmObMuWlQb1amlRp1aVn7bi3WQB/s1lCr2Dkrvi0Lyelo9tfoSJxcSiencoxdsdaxBtVu1WFYWAfgBDy0x9JlAYcp/cDXXQ12DKY/ufuJVFu/LR09ti8l5E+LZW/RwoXY8Rm+gTmVczbTRM/BmaEA0CqyXsAzOu+14QRn57K9mvpuztiuDHcOSUf0lH1eDWaSCW4LrjfPNsuyGkIuTmByE3VmXiOb1Hhwf2yFiYxzY/tw+pE3vSS9ZlPWDQwrLE7CBhgSDe8YVYbKZc1DPAbqu7VaA32wW2MtUxab21m16dZ1Ff7UkLGtH1lfSYlQfna37ui0dmJCo7c2jk7bVfTIH3jJjtA6+eB9j7NvhTO0yqUI45Zo0yytmoUPGlZPDXNJzFzWiMtNic4Z7MysmsK93KF5ivz5EAfQ6bLmhw+EDo/iqoKW27M5W12BRsj/mOyQQx5kuN8GyWPlhBCFcnJNE1ahmAzXhjGK+dmj1MB02skqnp9640vS85nxQfwZzNw8Q2ANSCD5JGrW+5plWWyLCWDX1QfkMyMYhpK0RektL7d9tzZqoA92a6MdluUi9yfNwOMt4Nn/eztQCMj1DtVYOD4wxI5ehWkyd6EO3jPRW3vnbTtY6lVPv/eF+9MedcRQPNZEkntNNBHcz04yRnPFBZvfBtCdB9aU9JcV5mLeOPxnkiVWU8DtLrL2dQYuuIHi8SDmiDsoKc/PMGimrvxodBaYrV6cTM3JJ9MzMe76I2/72nQrdXkVeValR2t5xACYaSqelRdMZLRCvkc6RgJ3XKOR/BPowg6BbdbbVhez/P20TlsDfbA7bfVc/IcM7gCxkDYFA9EFsdKBPHvQqQouxSPuy2KBMPaBp4ZLrqBPvvP5l2GteVv6bx//+/QYG30fYVPoBJe3CIc4NMwyMycuZg4DeAimHFaejxNwep2d/2xcFOZsXugJK7vIQn+tKAeHp5oOFbWo3T327Fhg1jqxl6wM3uLcMVRf2GHu8KPp63auTz/wxlvTc8mrs9osAyYA8WDmSs4vz7daLgCUyaCYxHFZmmN/zvKqIRM827LyXt9dvBqQH+i7NVQDCrsFPF0GMTqZrVQ6kp49gGAX9Nb+6bU9z+V43tkpB7D44ZDsG3fU0g+/5gXpOmZpr2Od2Sb079rHjqaZ4ygco1tWGwMYZtGvUGn5H6pD9uf2krCrVgKryoZYljiMXBPJnTp81E0NYwZp+gBmso6l9Zy/8XnXpp98K0DHCD+GrurBCJauVFGuySwtmon8ZXkqc9nEY4NwOINLcgF++CyirxibZP9Drb+neb77YLeGGligc8mRRiPtTMKOqsByE7EIswf0xD6P4iV3kRtznh3ueaLcDE9NaA3x+maONyB0/5V/+qJ0S20ibTq6J127cSiNIqeamzychl1mVZk+J6pzdyLv+RznnjL5B5BY+aC6DYP01GDHsM4UmbEimwDhMDzzzJ40PLc37Zzck9718uemH3vJlekmHu/gGHB9rEtLBqhJjYW68zirTWTbXBDnn58RYDDq1lN8YYzfy65qS77v/66tGugPY9dSewgSdhz6WliGoSdldQn6n2gWnYqH4JjAJth5eO1jpf4dhl811E3aCM9dlqruVyyN5fEkffk5tPi/evst6T2fO5ze96nPp/XDG1ITO29HsQBSZ2PpRWZmzcY/ROcEwiIKy4PYtltgDdfcDNMKbB1XZ5JCtZvO0cMs6O+kq8cW0ve84uvSyy7Lw1ZXoDTKdHRUKj/I9KIi9KdOVfhRNkcVLrlSUTSAfN+iQNl3a7YG+mC3lprGzgNA2cnyvITcnRI850thThp0ppjGlNPQfowuW0oJWZvDOGYrJiaOMuk4DmBixohhmQvu3Z+Cfp5GidsJje95/sZ00zWvSL/1kb9Ld+6fwIDAdWlKAX6HWdrIRER+1j9yQKdzp3/qm6LNeTjMXLU55pQ9sucEm/oieptM6zBBdQ2mqF64pZW+93XXpmeQxABD2zEmMqzHBScbmHzIhhjqaYqeIbC1qKwB/tSp00QBC+4yCIprZtUjwI6WgjNWNUivvlt7V2a1cQAAFjFJREFUNXBKsOsSpbNO4ex0PQqU3bJAVCeR87goWv0lGz7HVeJB/qEsxGEWVKIpcMOGVzfOr+KLqqdYWx7CnFMWpRajZiJMtrmXg/O8NBh6bGNj44Cky8BYG+rMrc/onKHJQtB19G69bmP3nl3f/KL0+3ccTn/66a8wa7kuTWH7bdZNd3C2yRm7KuypVeYMQKrR7lVmq9PyNAqdZN8sD8vyx+XhiK1LOD0R8YKUmpDNCfLD0wfT4r7d6TmbhtN3fv2zQ1HYlSYsJYb2mKhxdpVZ1o4zrX4FtJJSykIYa15cQ+2aSQ13G6sqzzAeBC+0a3ZieqmH7g1i7s7m7HCcwvEWzrOVQCJRddm3+5vjNqxXOBO65K4aHUSWKIvlIX+ZnvInOt+Yb2uXM2G9C80lrj3XISbfCQtKnOOTH0RclTXKXOLn5adwzaX9GXLI/GXKDSrhqihpgjmj3NPsOVv+VglVhTGGQpwW0CJbzOis5o+GC1EvBOYrLn6qe82zeI+h19poLEtyCRz1HNXLyUshR+G41xJCOG+qjuBl13UDLJkP7z7zoqIxI5ufZ5cuVlL4vmn81C0b0ztueFH67Y/ckf5yspn2MHupiXfJC/aQdzkkBg+3gGMhvwrObVZmhJ9L1wwn1+kmPerShRCfKEoPlYBUaEafz82qI7zcF0foq0Ep7dDf8B0BiChIw31b3XdWc1FatTZ80/SIf4H0tZhi0k5Ft/3oUvx2YzoNTh1Pw8ePppvGBtPrbrsuve5ZG9J16JMIcnkxBJK3wHTygBsQqawkOxNpG8ZFZzp8cbSD+1EE+HCyONRPE4C0iPKEdU2g4OycZsmYz+pMWSMb0TK8TFpy8NGnzRf381iOKVVKiHBzc3MsccM0VfG4ZGdKTBmCTBAjqN89yaRXawjLNjyadzYcHceoYMoTZXWSJ/ADb67rHHmSB3pQVo2TLKxJwW4B+hlmWeH05LE0SrzzC1M0mTy4zvDW+MldM+yOmTucJs1NWA7uREdEVjhVqimc7oLxyGjOVEbEkljlxxsShpu4SDY54yfGHj4RV3n/FGGezt42ag/FLrXCijrpCZOrg+cr/XKT8rhqh2i7HL8tLMkZawNDAZqq34pGxs990y3peQdS+sAXD6UvP/B46rCF4iIm0A+zH+0cjTi8fnOahrA039QWqIxBfRcPF9jDVbbYUEnr07G7F6AajR9hKA3L2WJTVtFJ6hdQkYktCozkoSFgBWhCvDxvA5wGUwY5CDgPREfJ5WkLgHQMP6ch14zyMjnDPhQN9re9CgXpV996Q3rzc7akr8GOp3b/Wsz2aG6PbkekVf6jFkg/iPT/b+9ceuw6ijje8/J4bOMXNknICJJATEBCCVEWsIgQG8SGrGDBgo/ClyAfBLHjA2QRAUKKhISEJSCyEkVJHDvOeB72PPj/qrrO6XN873iux/bgS7V9p/v0o7q6qrq6uvucbtLc9bSPGHw6HJ1ZCli4oujCYfmd1unJS/o6AyvRupKSZ/LVlrBWF02p+kyKmRDXg9P/2HzhTSGRgzHH3IoClfwcxHyijgFoSUfaQ2c2trmsfmtrQ2yWnK2cUwv9Q0coFz+0d09JlhU0sFXChVUHf1D8Z3QzIVdqrmhNldsJFyUTKHs+zFnQJzE9nAfJIOkTn6uyU0glVIoidXS1lQt26SxeQqE0m3pSEEFByKjBhM21Lymk2aKt0kysDAskV51FHcY+adeC7j7fLpKmn0/XvCx/0x2DAkZvlTe+DOEwwIWuImVTJ/eurZ62gwR+c6WUd352ufz9jcvlD+/9tfz5xocS2CtlY/Vi+fyzz8uiTkE+oCMC2BbxJS9SWosappf0fP+O7oKQwuKI/UXueJWiYoBb0J8DFJsqXpSQ2iCroR9lhRgfqGfs6+h3aSv1ZBVYlWjaEeuqSWtr25yezPesXFiC8sS8AQ2d5LKovJyYsnr3i/Kt+7fLL16/Vn7+1jfKK8qCkmMDgpeshZKAIYNKMLMO+a0yDJ2I5neIA++x435aNxqkrHXUyoFmK7avoayz+eCm9gsJlDk+RgUvey8Qr93iNR0nzwcwoMGXITv3dMgDmzAaMETqE3bCAb0hJ/1jyg58UXibvNopy3zPjB6xTvTek0JDp+FCBdkNd9BN+oZZJoOS2cmW4aDcleI8pfcnl2XJ7u3pLEb9W9W7k0wmdrQhtXZ6OhFsGsvOn1VoG+sInxnoFgc2drWeVYySgtme3zPorwl/+OpI1gIUn5B2VWcCr4ymtQ+sITTGFZ91BsU9bHG7qy8DR6cA7MJVobI7P9QreCRpVeGVVcZS6S6tSV3V+3eX1HmvXlorP/rlW+VDxf/pg1vlvesflY+kdD69fUP3Qahz6Z6KhWVdTaghdUvl9iWMHL65qikGipRvXhlED6QIGW+ZDXCvBXH7MJwpClOZkE0QoAcj1EyF6exm3chEQKnaOX4SbF2WsyPLbVkydll13bv7ebn7yc3yyjefLz994zvlVz+4Vl4WGF27Yye5nFanO4sFRIMZ/lGkqtfWfxSFU4yndw8EpjtXbJqaCR59h2eLU7tOyeTiiHo6szVzJt9pYoO/rFZ2l93CA76e9fvyltYgBRNS0W1RdPQyHHSPvmwRJ/JH9Kj4Yd1tbm5oLNRgqIGPL3m4ErN36Bqc1FnVIWwS4aDBPo2UrkF27J1G0WSNpQQp+ft6OX5BMnRPAzWERpxWNPAd5hxyzWHmudduMV6VW3W2LyiE7EQONSZch6QieiPSS9IIdxL8CtcUIWsvXMKs0QozlTQf4Wl8SH/UkP7xKCDhaviFEuKCcqJ2Ncpy0RHix28ZQdJJvct6x4wjn1gKuSj5efX1S+XXP7xU/vHxbvnbv26Uf356u1y/+XG5+aXurNXx77oqjvOOdeilCnAaML1c62qLK+r0ElSUgqTcpWFN6fasCiS0JiH0WikhTnRZ3RFmit9V+X1ZfnvcpQi2WHT3tsrOnc1yRfdCfE3fs5775Hb5yUsvlnfeebu8ps0W1tnkuZITCjbmUpxKtBuruY9pCQ5lEkbmmInagQAQhB+EOMR5H3HlBi2ZVvLDMZfZNcW/RRO8w87kix62/iSE1enpW5gAGB8LOruwLG5p82nNFN3m5v1y7gzTXFm96vCnNJVlMDlpZ8pWbYalIq3ezZY8CS2O4b8v/kG/1tm6ndqw3yk7DcQUFDPMsiNNMurKjsFSiVrbuKcXx194QVdp6qBB4lgxsQ9mWuCj8IA6BxJSvhlUMc8GXraBAMERRhcgZMdkokPQsLMchijl6rTXG4O8WQkf8ZTsTuUqDEmiojrIkSH9GSkQouQcqYV5qAkoOpxEyTkikt/XOgvCuMxQzNQTp/g1sYwvD1b1esZZhdfXl8vb6y8XfVhW/q1pyQc3NstfpPyuf3qrfIXSPH2hbMuS28F600LygS6sRrg5fh3+L6G4tNuJksUSCqvI1vi08M7nbRcOOE2ZI9x1xabOQWcNa0HLHXT7U7w+8tz58v2rF8uPv/taeVMvST8vXJimrjF+yvd2qrH60N8agTbj/HoUHe1RLIrORFT+wA2INkjpHkLZERFKjrC1U19erOjD5L0DjoXv64i6juJ7BweieGJ9A0goO2Eu82VTR+wTc1Zfvexqas9u+6Km9Qxa/wv9h6tSl7gCIGjJLM5upkN/SOaEb1i8TFHp/7585RahCKl2yGmkClr4kKh4/d+TXJ27oDt/daHUDrfFaWrPYQ/secHfw1zVap5lgY8qVX/nqFfHBJUDHSckIWTdZUFzcmBaW1wFV6YomwjOaLpojaAJ5HQm8GUADiFf0uiPhcgbTIsy+dGLBgqGBZEsd/6ZnQJOZ1iH68jZBbS2IYHEcXcvGU7LIuiSpRNs74AMkg5UIsqBQ0MRVy0XmQV1RbOnN6+dKb+99j37yuM/X5Ry/bOdcv3OdvloY6vcvHmz3N64rWnMtinAFa0JntJ7fFuqe1dWHgMrB3ZiyMdorwm1bkTTdY2arq1JOV3WJ2zrl8+WV9evlmvrZ8u6FuD0HrDhwJ4zllwct24NUKN3NW1a1kGl5XQVbdb6pFz3pRC2pdSZTqF6EXS3xxTEDAmCmbwqboprp4kR3t7eNlqev7Cmvqs1S3VA+gEyPavv/UUFrb84L1EKsl0Ut1MuXjhTvtrY1WldLNDr7T8t1p+q07c9TqU+YesOnGArOuuOvj48q3cb7+/qsAWdDIv1ubt7T20JJYNPG92HXj7PgPhqc+UJyhHLDlmkPJtfK1rbvXv3y/L1y+fk35LMPmfvj5ocUHyCszU74n2kdSQtnyoCDU5+WNQIiwJDeZEP538VqAqP3B4HY4iue7qm+CrTlEL5A01fl1ij02iFec56M8JWQesh3ZOkANZddFQW183CUodnzYf1Y/oLiiCmerBHJUweWGBew4ojXXnZcWMW96KsrDcvr+qO11XdfsFk8nkTYdTqLfVTBB9bC4Prq7u6PnFjw9b7UHhrOoDgvI5D10au7Uucl3EpcLxFYooNWxQlyw+7EyvUkEVgUAqGDAnSz+f1FYgUHK/XrGhNj5vClNtwYQPFrTrfE6RdTD19d1aeAaK2kFfiHnTARo5NWSvZ6Kfnb7+0Xt5//49W36xKLvKDjQGo1cbMyDqVEGYDm9UGHLMtd1wMtKX1OxHwhN0yp81I023rDt/z55bKu7//nS3BsuHOW0c2rghtU2SBPjiLSVDd4kdtMBUDE+Vgua42ZuXE8jN9DXr4mqXnm/RXmz1uN+JpwiHFg0gCmXUdZ3wwoNbnZugEaANEa0OizCBNZUOcQB67oe9aDxc2SqSbTIGg9zi1lStLm5gRTlcVZwXYMtLOomI7fkU5fOXZ46cgj/zI2/qESY/4SFOU5cMnDWfCLh9Fyw/bjF+Eu7U1xXVOhYCJizrccnOM+Rvwyed5Gbb58eo1qfpZgnLbBePU+mgOMECMemf1Hb++7kG/Ea2B17reSiJ2nNrmfBrhSkvDg0mrnP4Qix92kU1jiWud0hE5U+4EGmfleTaAw1Za1ja/wgzgMRA1YEyW7JnR6hQfQBtElI+PGyg8G8cFJCpFUCAy6rEfXYSEVQpGpNfGKoRj+vugox7y4wO9FQ09ppuZAlC7ysTMZa2As0tBAm6to2wMKIADeM3HPi5cY/sB1Wj7ul0eUhxOTIcVYZyOLDwTdnDA4HpHlx/kzuVLcLDgohCZ9eMRqQll608hpQHTrVBl6xyyiev/qgwzEIvxWMvwiH8CwqP4PfZeOX0qMJuMTtQyOfVkYh1jFDU8MgxpB3yrzwRJq1EWQNGZ8aNI0sJ1LXygUOSgPqcc1t0kRUfOzrLzYn2hjvFNrZ1mVmYE0ie2gQo+QgqMaAZxNb2Bo0h347hoefiRL/1jUyBIPSCtsUn8ikTxCh5X2844ScW8E8mKiZVlnmuKh6fK3wCKzzlwDF4WV3lvi+eoQn9GQlpnaKg20iPNFR1PhNxvy0Q+yiKHAcP3L73UREXZAmnxbuNPLEw7aFnHEJERukHOSkvDrQ2fGLITKgb3kB6GSOHZN6W37NRGWuBcHbbF9UdwlyqG6cT0LvI1ldg8YHKZgbnFztuy7cb24FpkQzbcgnOB8pwO3BkCAuSsFQYe4TegB8FIj0oGiflwZAoEHSnwMFpOSId7IUIP1qkUs4Dk2/tQPFc+d7AUqO9K+TAtKHWx3bLoDyW67FYJNToc0Kcr+FOFXZ/I1bphUynllmUPW+VNOatUaxkGkAoeBR+wierLR8an57tqC2y8XseH1hIKmjw9nI5VU0PMUGQx5/OWBO+jXTy3nB0/BzYtjaKsV8YGnG2+RdbqD5Sdm38CYsI5qrMp6Eg3EYMgFbeI1MSm0YPs7QN5jpKvLZPhngLISCsnpIzoGckDHpKnJrAuFqITZbUU7+nkQXmg8IJX2mRiEYIfKkpXX/fsJ/+ofuoZR3U1KoENsSVTqNQ5tA4CL5sOWV7Bl/N4LE9mFtVR99iROCl+nO9xPEfbZ/KjhdGKFtmIexzIPUkYDZ4t+lRpSc4nxyDaO8angWHcDX0SAOOZcsDoZw17vCrF7sUEN1B2nq7CCBsKr60zCpsg8kCFVMRPLvDQSE/QizYwunTKjZEFQJOXx3THp0BH86OCcp7aojgMjPIUJ8zPLLnKc8lCO+2yMOk1mWKdDLWwLGH0p0uXgjPZEwIx6NasIY4G3nDpwXtIKVamyUmQX8APP6pXWtfeiHscfqAwq2/4VwJaXxv3lZa4Y0Sdf+PYp/fc4DbinePQtmUaVqikcTuASxw/GNjUY8zt1diBfWanLBPcaM0ucrDuApcEdIB0RdaYEBWSJ8opqGJjVEl1ngfCPq+nWGxk9F9OBNweZoaOSAEI2vDCSkF4/cbRcMl50sC2KR+8F594R8D2rxg1e2EyxdACM/guF310z0NP6euIlL7uKhNWWPX0QEJo5JMHmWmhCRLChnxamQrZ8PGkKBW1k4Nk3wCJ2PBj3a9va6TM5rc4zlbS+hvFaU8QKPwAxXPQaJCGbY2jlZUW9vyU/wRuE6ulcfqZEEWGofVusW0bI1v4gwEAw6q2tdJsQJIoU/0pnOX1D1zDOKtEUdaYqED+YdANhv8JGnh2kHTYEe/P8a5eUzCDj4UCh8nPsIIQRviDAmB/lbDznPVa42HPOMmEy4HVITnhiprYVhjCdomq0mPwu55rQGs9wLbn8FF0dGbSIxEoXq+tEQY+KhcDbkSF79CjNWNlH28W9G1VBY/oAsasfq3OCKlwT6ghHpHexVLPM+A6vAkc4oJhE7O0RGnDEzMPIqdYdn0ePuXhrehu0Q9EjoDr9CyHMWY25HssM9RRYCwo0xnRFekD4g3WHc7KOT+60TOiLYP+TKmLgSss9sja+j1KY1mo/H9Axsg3zgvEyN/ITQXeohYlm1zCL2JbzBqY4+iZnoFNbbP6tZJAvifUEWqP9rStPEKxp54l8IyKZ8e3fY+O94N5wZtz/jjn0N/bDdhD/6HKrs0eiq+Ny3BSICmQFHhaFAgdxHvBHMQQmxGE46ugabjMpFbbD5+nAcz4pEBSICnwpCgQOqhVdHyb/DBFBz4zWXZPqgEJNymQFEgKHJUCR7HiJsGaybKbBCDjkgJJgaTAs0CBtOyeBS4ljkmBpMCxKZCW3bFJmACSAkmBZ4ECqeyeBS4ljkmBpMCxKfDYlF2cfntsjBJAUiAp8H9LAd6he1Lu2MqOl/o2NzftfRd2SdIlBZICSYFHpcC0s+geFV5bLjcoWmpkOCmQFJhbChzbsptbymTDkgJJgbmiQCq7uWJnNiYpkBSYRoFUdtMok/FJgaTAXFEgld1csTMbkxRICkyjQCq7aZTJ+KRAUmCuKJDKbq7YmY1JCiQFplEgld00ymR8UiApMFcUSGU3V+zMxiQFkgLTKJDKbhplMj4pkBSYKwqkspsrdmZjkgJJgWkUSGU3jTIZnxRICswVBVLZzRU7szFJgaTANAqksptGmYxPCiQF5ooCqezmip3ZmKRAUmAaBVLZTaNMxicFkgJzRYFUdnPFzmxMUiApMI0CqeymUSbjkwJJgbmiQCq7uWJnNiYpkBSYRoH/Aup4+RnyQQjnAAAAAElFTkSuQmCC"; - -var img$1 = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAACEQAAAhCCAYAAABnZt+NAAAACXBIWXMAAC4jAAAuIwF4pT92AAAgAElEQVR4nOzd622bWbYt0Lkuzn8xAysDMQMzAzMEVgZyBNeOwHIEoiKwHIHlCCxmYGcgRrAuvm523+469fBD2uJjDMC/P2BuAi6UJ9asJIvdH+Dpfe3utZwBgO9VVedJVgKDYdbd/VXcHKKqeuPhYJi77r4TNwD8mKqaJ1mKDRjk/n92ZYj/K3EY4vP0P1hFDQD8gHP/vQ5DTf+4pRDBofL3BYylEAEAP6CqLpO8kxkwyPTvslf/R9oAAAAAAADAU6iqWVWtlSGAgd5296K7H/5H6gAAAAAAAMBj202B3ia5EC4wwHaaH+7u2399yoUIAAAAAAAA4FFV1XLa71eGAAbZJFn8ZxkiChEAAAAAAADAY6qqN0k+JDkTLDDAza4Mcf/7T5nMAAAAAAAAAH5ZVc2SrJO8kiYwyOvuvvqzTylEAAAAAAAAAL+kquZJplP1LyQJDLBNsuzuu7/6lMkMAAAAAAAA4KdV1SrJnTIEMMgmyfnflSGiEAEAAAAAAAD8rKqaTtVfJzkTIjDATXfPu/vhez5lMgMAAAAAAAD4IVU1212FuJAcMMhv3b3+kU8pRAAAAAAAAADfrarmuzKEqxDACN+SLLv7/ke/ZTIDAAAAAAAA+C5VtUryRRkCGORzkvnPlCGiEAEAAAAAAAD8nWkio6qmU/XXwgIGed/di+5++NnPmcwAAAAAAAAA/lRVnSe5TXIhJWCAbZJVd9/+6qdciAAAAAAAAAD+UFUtktwrQwCDbJIsHqMMEYUIAAAAAAAA4I9U1Zskn5KcCQgY4OOuDHH/WJ8ymQEAAAAAAAD8W1XNkqyTvJIKMMjr7r567E8pRAAAAAAAAAD/UFXzXRnCRAYwwjbJsrvvnuJbJjMAAAAAAACAqQyxSnKnDAEMskkyf6oyRBQiAAAAAAAAgKqaTtVfJzk7+TCAEW6SLLr761N+y2QGAAAAAAAAnKiqmiW5TfLSbwAY5LfuXo/4lEIEAAAAAAAAnKCqmu8mMlyFAEbY7q5C3I9K22QGAAAAAAAAnJiqWiX5ogwBDPI5yfnIMkQUIgAAAAAAAOC0VNV0qv7aswODvO/u6TLEw+jATWYAAAAAAADACaiq8yS3SS68NzDANJFx2d3r5wpbIQIAAAAAAACOXFUtdmUIExnACJskq9ETGb9nMgMAAAAAAACOWFVdJvmkDAEM8jHJ4rnLEFGIAAAAAAAAgONUVbOqmq5CvPPEwCBvu3vZ3Q/7ELjJDAAAAAAAADgyVTVPMu32X3hbYIBtkqkIcbdPYbsQAQAAAAAAAEekqpZJ7pQhgEE2Seb7VoaIQgQAAAAAAAAcj6q6SvIhyZlnBQa4SbLo7q/7GLbJDAAAAAAAADhwVTVLcpvkpbcEBnnd3Vf7HLZCBAAAAAAAABywqprvyhAvvCMwwHZ3FeJ+38M2mQEAAAAAAAAHqqpWSb4oQwCDbJKcH0IZIgoRAAAAAAAAcJiqap3k2vMBg7zv7nl3PxxK4CYzAAAAAAAA4IBU1SzJXZIL7wYMME1kXHb3+tDCVogAAAAAAACAA1FViyS3Sc68GTDAtyTLQ5nI+D2TGQAAAAAAAHAAquoyySdlCGCQj0nmh1qGiEIEAAAAAAAA7LdpIqOqplP17zwVMMjb7p4uQzwccuAmMwAAAAAAAGBPVdU8yVSGuPBGwADbJKvuvj2GsBUiAAAAAAAAYA9V1XJXhjCRAYywSTJdhfh6LGmbzAAAAAAAAIA9U1VvknxQhgAGuUmyOKYyRFyIAAAAAAAAgP1RVbMk06n6l54FGOR1d18dY9gKEQAAAAAAALAHqmq+K0O88B7AANvdRMbdsYZtMgMAAAAAAACeWVWtktwpQwCDbJKcH3MZIgoRAAAAAAAA8LyqajpVf53kzFMAA9x097y7H449bJMZAAAAAAAA8Ayqara7CnEhf2CAaSLjsrvXpxK2QgQAAAAAAAAMVlXzXRnCVQhghG9Jlt19f0ppm8wAAAAAAACAgarqMskXZQhgkM9J5qdWhohCBAAAAAAAAIwxTWRU1XSq/p3IgUHedveiux9OMXCTGQAAAAAAAPDEquo8yW2SC1kDA2yTrLr79pTDdiECAAAAAAAAnlBVLZPcK0MAg2ySTFchTroMEYUIAAAAAAAAeDpV9SbJhyRnYgYG+LgrQ0wlrJNnMgMAAAAAAAAeWVXNkqyTvJItMMjr7r4S9v+nEAEAAAAAAACPqKrmSaZT9S/kCgywTbLs7jth/zeTGQAAAAAAAPBIqmqV5E4ZAhhkk2SuDPHHFCIAAAAAAADgEVTVdKr+OsmZPIEBbrp7KkN8FfYfM5kBAAAAAAAAv6CqZruJjJdyBAb5rbvXwv5rChEAAAAAAADwk6pqvpvIcBUCGOFbkmV330v775nMAAAAAAAAgJ9QVaskX5QhgEE+J5krQ3w/hQgAAAAAAAD4AdNERlVNp+qv5QYM8r67F939IPDvZzIDAAAAAAAAvlNVnSe5TXIhM2CAbZJVd98K+8e5EAEAAAAAAADfoaoWSe6VIYBBNkkWyhA/TyECAAAAAAAA/kZVvUnyKcmZrIABPu7KEPfC/nkmMwAAAAAAAOBPVNUsyTrJKxkBg7zt7jfC/nUKEQAAAAAAAPAHqmq+K0OYyABG2CZZdvedtB+HyQwAAAAAAAD4napaJblThgAG2SSZK0M8LoUIAAAAAAAA+A9VdZXkOsmZXIABbpIsuvursB+XyQwAAAAAAAD4ZxFiluQ2yUt5AIP81t1rYT8NhQgAAAAAAABOXlXNd2WIF6eeBTDEdncV4l7cT8dkBgAAAAAAACetqlZJvihDAIN8TnKuDPH0FCIAAAAAAAA4WVU1naq/9gsABnnf3dNliAeBPz2TGQAAAAAAAJycqjrfTWRceH1ggGki47K718IeRyECAAAAAACAk1JVi10Z4szLAwNskqxMZIxnMgMAAAAAAICTUVWXST4pQwCDfEyyUIZ4HgoRAAAAAAAAHL2qmlXVdBXindcGBnnb3cvufhD48zCZAQAAAAAAwFGrqnmSabf/wksDA2x3Exm3wn5eChEAAAAAAAAcrapa7soQJjKAETZJpqsQX6X9/ExmAAAAAAAAcJSq6k2SD8oQwCA3SRbKEPvDhQgAAAAAAACOSlXNkkyn6l96WWCQ1919Jez9ohABAAAAAADA0aiq+a4M8cKrAgNsd1ch7oW9f0xmAAAAAAAAcBSqapXkThkCGGST5FwZYn8pRAAAAAAAAHDwqmqd5DrJmdcEBnjf3fPufhD2/jKZAQAAAAAAwMGqqtnuKsSFVwQGmCYyLrt7Lez9pxABAAAAAADAQaqqRZJbVyGAQb4lWZrIOBwmMwAAAAAAADg4VXWZ5JMyBDDI5yRzZYjDohABAAAAAADAwZgmMqpqOlX/zqsBg7zt7kV3Pwj8sJjMAAAAAAAA4CBU1TzJVIa48GLAANskq+6+FfZhciECAAAAAACAvVdVyyR3yhDAIJskC2WIw6YQAQAAAAAAwF6rqjdJPiQ581LAADe7MsS9sA+byQwAAAAAAAD2UlXNdhMZr7wQMMjr7r4S9nFQiAAAAAAAAGDvVNU8yXSq/oXXAQbYJll2952wj4fJDAAAAAAAAPZKVa2S3ClDAINskpwrQxwfhQgAAAAAAAD2RlVNp+qvk5x5FWCAm+6ed/eDsI+PyQwAAAAAAACeXVXNdlchLrwGMMA0kXHZ3WthHy+FCAAAAAAAAJ5VVc13ZQhXIYARviVZdve9tI+byQwAAAAAAACeTVVdJvmiDAEM8jnJXBniNChEAAAAAAAAMNw0kVFV06n6d9IHBnnf3YvufhD4aTCZAQAAAAAAwFBVdZ7kNsmF5IEBtklW3X0r7NPiQgQAAAAAAADDVNUyyb0yBDDIJslCGeI0KUQAAAAAAAAwRFW9SfIhyZnEgQE+7soQ98I+TSYzAAAAAAAAeFJVNUuyTvJK0sAgr7v7StinTSECAAAAAACAJ1NV810ZwkQGMMI2ybK776SNyQwAAAAAAACeRFWtktwpQwCDbJLMlSH4F4UIAAAAAAAAHl1VTafqr5OcSRcY4Ka7pzLEV2HzLyYzAAAAAAAAeDRVNUtym+SlVIFBfuvutbD5PYUIAAAAAAAAHkVVzXcTGa5CACN8S7Ls7ntp80dMZgAAAAAAAPDLqmqV5IsyBDDI5yRzZQj+ikIEAAAAAAAAP22ayKiq6VT9tRSBQd5396K7HwTOXzGZAQAAAAAAwE+pqvMkt0kuJAgMsE1y2d1rYfM9FCIAAAAAAAD4YVW12JUhTGQAI2ySrExk8CNMZgAAAAAAAPBDquoyySdlCGCQj0kWyhD8KIUIAAAAAAAAvktVzapqugrxTmLAIG+7e9ndDwLnR5nMAAAAAAAA4G9V1TzJtNt/IS1ggG2SqQhxJ2x+lgsRAAAAAAAA/KWqWia5U4YABtkkmStD8KsUIgAAAAAAAPhTVXWV5EOSMykBA9wkWXT3V2Hzq0xmAAAAAAAA8L9U1SzJbZKX0gEG+a2718LmsShEAAAAAAAA8F+qar4rQ7yQDDDAdncV4l7YPCaTGQAAAAAAAPxbVa2SfFGGAAbZJDlXhuApKEQAAAAAAADwD1U1naq/lgYwyPvunnf3g8B5CiYzAAAAAAAATlxVne8mMi5OPQtgiGki47K71+LmKSlEAAAAAAAAnLCqWuzKEGd+B8AA35IsTWQwgskMAAAAAACAE1VVl0k+KUMAg3xMMleGYBSFCAAAAAAAgBNTVbOqmk7Vv/P2wCBvu3u6DPEgcEYxmQEAAAAAAHBCqmqeZCpDXHh3YIBtklV33wqb0RQiAAAAAAAATkRVLXdlCBMZwAibJNNViK/S5jmYzAAAAAAAADgBVfUmyQdlCGCQmyQLZQiekwsRAAAAAAAAR6yqZkmmU/UvvTMwyOvuvhI2z00hAgAAAAAA4EhV1XxXhnjhjYEBtrurEPfCZh+YzAAAAAAAADhCVbVKcqcMAQyySXKuDME+UYgAAAAAAAA4MlW1TnKd5MzbAgPcdPe8ux+EzT4xmQEAAAAAAHAkqmq2uwpx4U2BAaaJjMvuXgubfaQQAQAAAAAAcASqapHk1lUIYJBvSZYmMthnJjMAAAAAAAAOXFVdJvmkDAEM8jnJXBmCfacQAQAAAAAAcKCmiYyqmk7Vv/OGwCBvu3vR3Q8CZ9+ZzAAAAAAAADhAVXW+m8i48H7AANskq+6+FTaHwoUIAAAAAACAA1NVyyT3yhDAIJskC2UIDo1CBAAAAAAAwAGpqjdJPiQ5827AADe7MsS9sDk0JjMAAAAAAAAOQFXNkqyTvPJewCCvu/tK2BwqhQgAAAAAAIA9V1XzJNOp+hfeChhgm2TZ3XfC5pCZzAAAAAAAANhjVbVKcqcMAQyySXKuDMExUIgAAAAAAADYU1U1naq/TnLmjYABbrp73t0PwuYYmMwAAAAAAADYM1U1212FuPA2wCC/dfda2BwThQgAAAAAAIA9UlXzXRnCVQhghG9Jlt19L22OjckMAAAAAACAPVFVl0m+KEMAg3xOMleG4FgpRAAAAAAAADyzaSKjqqZT9e+8BTDI++5edPeDwDlWJjMAAAAAAACeUVWdJ7lNcuEdgAG2SVbdfStsjp0LEQAAAAAAAM+kqhZJ7pUhgEE2SRbKEJwKhQgAAAAAAIBnUFVvknxKciZ/YICPuzLEvbA5FSYzAAAAAAAABqqqWZJ1kldyBwZ53d1XwubUKEQAAAAAAAAMUlXzXRnCRAYwwjbJsrvvpM0pMpkBAAAAAAAwQFWtktwpQwCDbJLMlSE4ZQoRAAAAAAAAT6yqplP110nOZA0McJNk0d1fhc0pM5kBAAAAAADwRKpqluQ2yUsZA4P81t1rYYNCBAAAAAAAwJOoqvluIsNVCGCE7e4qxL204Z9MZgAAAAAAADyyqlol+aIMAQzyOcm5MgT8N4UIAAAAAACAR1RV06n6a5kCg7zv7ukyxIPA4b+ZzAAAAAAAAHgEVXWe5DbJhTyBAaaJjMvuXgsb/phCBAAAAAAAwC+qqsWuDGEiAxhhk2RlIgP+mskMAAAAAACAX1BVl0k+KUMAg3xMslCGgL+nEAEAAAAAAPATqmpWVdNViHfyAwZ5293L7n4QOPw9kxkAAAAAAAA/qKrmSabd/gvZAQNsk0xFiDthw/dzIQIAAAAAAOAHVNUyyZ0yBDDIJslcGQJ+nEIEAAAAAADAd6qqqyQfkpzJDBjgJsmiu78KG36cyQwAAAAAAIC/UVWzJLdJXsoKGOR1d18JG36eQgQAAAAAAMBfqKr5rgzxQk7AANvdVYh7YcOvMZkBAAAAAADwJ6pqleSLMgQwyCbJuTIEPA6FCAAAAAAAgD9QVesk17IBBnnf3fPufhA4PA6TGQAAAAAAAP+hqmZJ7pJcyAUYYJrIuOzutbDhcSlEAAAAAAAA7FTVIsltkjOZAAN8S7I0kQFPw2QGAAAAAADAP8sQl0k+KUMAg3xMMleGgKejEAEAAAAAAJy0aSKjqqZT9e9OPQtgmLfdPV2GeBA5PB2TGQAAAAAAwMmqqnmSqQxx4VcADLBNsuruW2HD01OIAAAAAAAATlJVLXdlCBMZwAibJNNViK/ShjFMZgAAAAAAACenqt4k+aAMAQxyk2ShDAFjuRABAAAAAACcjKqaJZlO1b/06sAgr7v7StgwnkIEAAAAAABwEqpqvitDvPDiwADb3UTGnbDheZjMAAAAAAAAjl5VrZLcKUMAg2ySnCtDwPNSiAAAAAAAAI5aVa2TXCc589LAADfdPe/uB2HD8zKZAQAAAAAAHKWqmu2uQlx4YWCAaSLjsrvXwob9oBABAAAAAAAcnaqa78oQrkIAI3xLsuzue2nD/jCZAQAAAAAAHJWqukzyRRkCGORzkrkyBOwfhQgAAAAAAOAoTBMZVTWdqn/nRYFB3nb3orsfBA77x2QGAAAAAABw8KrqPMltkguvCQywTbLq7lthw/5yIQIAAAAAADhoVbVMcq8MAQyySbJQhoD9pxABAAAAAAAcrKp6k+RDkjOvCAzwcVeGuBc27D+TGQAAAAAAwMGpqlmSdZJXXg8Y5HV3XwkbDodCBAAAAAAAcFCqap5kOlX/wssBA2yTLLv7TthwWExmAAAAAAAAB6OqVknulCGAQTZJ5soQcJgUIgAAAAAAgINQVdOp+uskZ14MGOCmu6cyxFdhw2EymQEAAAAAAOy1qprtJjJeeilgkN+6ey1sOGwKEQAAAAAAwN6qqvluIsNVCGCEb0mW3X0vbTh8JjMAAAAAAIC9VFWrJF+UIYBBPieZK0PA8VCIAAAAAAAA9so0kVFV06n6ay8DDPK+uxfd/SBwOB4mMwAAAAAAgL1RVedJbpNceBVggG2SVXffChuOjwsRAAAAAADAXqiqRZJ7ZQhgkE2ShTIEHC+FCAAAAAAA4NlV1Zskn5KceQ1ggI+7MsS9sOF4mcwAAAAAAACeTVXNkqyTvPIKwCBvu/uNsOH4KUQAAAAAAADPoqrmuzKEiQxghG2SZXffSRtOg8kMAAAAAABguKpaJblThgAG2SSZK0PAaVGIAAAAAAAAhqqqqyTXSc4kDwxwk2TR3V+FDafFZAYAAAAAADBEVc2S3CZ5KXFgkN+6ey1sOE0KEQAAAAAAwJOrqvmuDPFC2sAA291ViHthw+kymQEAAAAAADypqlol+aIMAQzyOcm5MgSgEAEAAAAAADyZqppO1V9LGBjkfXdPlyEeBA6YzAAAAAAAAB5dVZ3vJjIupAsMME1kXHb3WtjAvyhEAAAAAAAAj6qqFrsyxJlkgQE2SVYmMoDfM5kBAAAAAAA8mqq6TPJJGQIY5GOShTIE8EcUIgAAAAAAgF9WVbOqmq5CvJMmMMjb7l5294PAgT9iMgMAAAAAAPglVTVPMu32X0gSGGC7m8i4FTbwVxQiAAAAAACAn1ZVy10ZwkQGMMImyXQV4qu0gb9jMgMAAAAAAPgpVXWV5IMyBDDITZKFMgTwvVyIAAAAAAAAfkhVzZJMp+pfSg4Y5HV3Xwkb+BEKEQAAAAAAwHerqvmuDPFCasAA291ViHthAz/KZAYAAAAAAPBdqmqV5E4ZAhhkk+RcGQL4WQoRAAAAAADA36qqdZLrJGfSAgZ4393z7n4QNvCzTGYAAAAAAAB/qqpmu6sQF1ICBpgmMi67ey1s4FcpRAAAAAAAAH+oqhZJbl2FAAb5lmRpIgN4LCYzAAAAAACA/6WqLpN8UoYABvmcZK4MATwmhQgAAAAAAODfpomMqppO1b+TCjDI2+5edPeDwIHHZDIDAAAAAAD4h6qaJ5nKEBcSAQbYJll1962wgafgQgQAAAAAADCVIZZJ7pQhgEE2SRbKEMBTUogAAAAAAIATV1VvknxIcnbqWQBD3OzKEPfiBp6SyQwAAAAAADhRVTXbTWS88hsABnnd3VfCBkZQiAAAAAAAgBNUVfMk06n6F94fGGCbZNndd8IGRjGZAQAAAAAAJ6aqVknulCGAQTZJzpUhgNEUIgAAAAAA4IRU1XSq/jrJmXcHBrjp7nl3PwgbGM1kBgAAAAAAnICqmu2uQlx4b2CAaSLjsrvXwgaei0IEAAAAAAAcuaqa78oQrkIAI3xLsuzue2kDz8lkBgAAAAAAHLGqukzyRRkCGORzkrkyBLAPFCIAAAAAAOAITRMZVTWdqn/nfYFB3nf3orsfBA7sA5MZAAAAAABwZKrqPMltkgtvCwywTbLq7lthA/vEhQgAAAAAADgiVbVMcq8MAQyySbJQhgD2kUIEAAAAAAAciap6k+RDkjNvCgzwcVeGuBc2sI9MZgAAAAAAwIGrqlmSdZJX3hIY5HV3Xwkb2GcKEQAAAAAAcMCqar4rQ5jIAEbYJll29520gX1nMgMAAAAAAA5UVa2S3ClDAINsksyVIYBDoRABAAAAAAAHqKqmU/XXSc68HzDATXdPZYivwgYOhckMAAAAAAA4IFU1S3Kb5KV3Awb5rbvXwgYOjUIEAAAAAAAciKqa7yYyXIUARviWZNnd99IGDpHJDAAAAAAAOABVtUryRRkCGORzkrkyBHDIFCIAAAAAAGCPTRMZVTWdqr/2TsAg77t70d0PAgcOmckMAAAAAADYU1V1nuQ2yYU3AgbYJrns7rWwgWOgEAEAAAAAAHuoqha7MoSJDGCETZKViQzgmJjMAAAAAACAPVNVb5J8UoYABvmYZKEMARwbFyIAAAAAAGBPVNUsyXSq/pU3AQZ5291vhA0cI4UIAAAAAADYA1U135UhLrwHMMA2ybK774QNHCuTGQAAAAAA8MyqapnkThkCGGSTZK4MARw7hQgAAAAAAHhGVXWV5EOSM+8ADHCTZNHdX4UNHDuTGQAAAAAA8AyqapbkNslL+QOD/Nbda2EDp0IhAgAAAAAABquq+a4M8UL2wADb3VWIe2EDp8RkBgAAAAAADFRVqyRflCGAQTZJzpUhgFOkEAEAAAAAAINU1XSq/lrewCDvu3ve3Q8CB06RyQwAAAAAAHhiVXW+m8i4kDUwwDSRcdnda2EDp0whAgAAAAAAnlBVLXZliDM5AwN8S7I0kQFgMgMAAAAAAJ5MVV0m+aQMAQzyMclcGQLgnxQiAAAAAADgkVXVrKqmU/XvZAsM8ra7p8sQDwIH+CeTGQAAAAAA8Iiqap5kKkNcyBUYYJtk1d23wgb4bwoRAAAAAADwSKpquStDmMgARtgkma5CfJU2wP9mMgMAAAAAAB5BVb1J8kEZAhjkJslCGQLgz7kQAQAAAAAAv6CqZkmmU/Uv5QgM8rq7r4QN8NcUIgAAAAAA4CdV1XxXhnghQ2CA7e4qxL2wAf6eyQwAAAAAAPgJVbVKcqcMAQyySXKuDAHw/RQiAAAAAADgB1XVOsl1kjPZAQPcdPe8ux+EDfD9TGYAAAAAAMB3qqrZ7irEhcyAAaaJjMvuXgsb4McpRAAAAAAAwHeoqkWSW1chgEG+JVmayAD4eSYzAAAAAADgb1TVZZJPyhDAIJ+TzJUhAH6NQgQAAAAAAPyJaSKjqqZT9e9kBAzytrsX3f0gcIBfYzIDAAAAAAD+QFWd7yYyLuQDDLBNsuruW2EDPA4XIgAAAAAA4HeqapnkXhkCGGSTZKEMAfC4FCIAAAAAAOA/VNWbJB+SnMkFGOBmV4a4FzbA4zKZAQAAAAAA/yxCzJKsk7ySBzDI6+6+EjbA01CIAAAAAADg5FXVPMl0qv7FqWcBDLFNsuzuO3EDPB2TGQAAAAAAnLSqWiW5U4YABtkkOVeGAHh6ChEAAAAAAJysqppO1V8nOfMrAAa46e55dz8IG+DpmcwAAAAAAODkVNVsdxXiwusDg/zW3WthA4yjEAEAAAAAwEmpqvmuDOEqBDDCtyTL7r6XNsBYJjMAAAAAADgZVXWZ5IsyBDDI5yRzZQiA56EQAQAAAADA0ZsmMqpqOlX/zmsDg7zv7kV3Pwgc4HmYzAAAAAAA4KhV1XmS2yQXXhoYYJtk1d23wgZ4Xi5EAAAAAABwtKpqkeReGQIYZJNkoQwBsB8UIgAAAAAAOEpV9SbJpyRnXhgY4OOuDHEvbID9YDIDAAAAAICjUlWzJOskr7wsMMjr7r4SNsB+UYgAAAAAAOBoVNV8V4YwkQGMsE2y7O47aQPsH5MZAAAAAAAchapaJblThgAG2SSZK0MA7C+FCAAAAAAADl5VTafqr5OceU1ggJski+7+KmyA/WUyAwAAAACAg1VVsyS3SV56RWCQ37p7LWyA/acQAQAAAADAQaqq+W4iw1UIYITt7irEvbQBDoPJDAAAAAAADk5VrZJ8UYYABvmc5FwZAuCwKEQAAAAAAHAwpomMqppO1V97NWCQ9909XYZ4EDjAYTGZAQAAAADAQaiq8yS3SS68GDDANJFx2d1rYQMcJoUIAAAAAAD2XlUtdmUIExnACObODjMAACAASURBVJskKxMZAIfNZAYAAAAAAHutqi6TfFKGAAb5mGShDAFw+BQiAAAAAADYS1U1q6rpKsQ7LwQM8ra7l939IHCAw2cyAwAAAACAvVNV8yTTbv+F1wEG2CaZihB3wgY4Hi5EAAAAAACwV6pqmeROGQIYZJNkrgwBcHwUIgAAAAAA2BtVdZXkQ5IzrwIMcJNk0d1fhQ1wfExmAAAAAADw7KpqluQ2yUuvAQzyuruvhA1wvBQiAAAAAAB4VlU135UhXngJYIDt7irEvbABjpvJDAAAAAAAnk1VrZJ8UYYABtkkOVeGADgNChEAAAAAADyLqlonuZY+MMj77p5394PAAU6DyQwAAAAAAIaqqlmSuyQXkgcGmCYyLrt7LWyA06IQAQAAAADAMFW1SHKb5EzqwADfkixNZACcJpMZAAAAAAAMUVWXST4pQwCDfEwyV4YAOF0KEQAAAAAAPKlpIqOqplP17yQNDPK2u6fLEA8CBzhdJjMAAAAAAHgyVTVPMpUhLqQMDLBNsuruW2EDoBABAAAAAMCTqKrlrgxhIgMYYZNkugrxVdoAxGQGAAAAAABPoareJPmgDAEMcpNkoQwBwH9yIQIAAAAAgEdTVbMk06n6l1IFBnnd3VfCBuD3FCIAAAAAAHgUVTXflSFeSBQYYLubyLgTNgB/xGQGAAAAAAC/rKpWSe6UIYBBNknOlSEA+CsKEQAAAAAA/JKqWie5TnImSWCAm+6ed/eDsAH4KyYzAAAAAAD4KVU1212FuJAgMMA0kXHZ3WthA/A9FCIAAAAAAPhhVTXflSFchQBG+JZk2d330gbge5nMAAAAAADgh1TVZZIvyhDAIJ+TzJUhAPhRChEAAAAAAHyXaSKjqqZT9e8kBgzytrsX3f0gcAB+lMkMAAAAAAD+VlWdJ7lNciEtYIBtklV33wobgJ/lQgQAAAAAAH+pqpZJ7pUhgEE2SRbKEAD8KoUIAAAAAAD+VFW9SfIhyZmUgAE+7soQ98IG4FeZzAAAAAAA4H+pqlmSdZJX0gEGed3dV8IG4LEoRAAAAAAA8F+qap5kOlX/QjLAANsky+6+EzYAj8lkBgAAAAAA/1ZVqyR3yhDAIJskc2UIAJ6CQgQAAAAAAP9QVdOp+uskZxIBBrjp7qkM8VXYADwFkxkAAAAAACeuqma7qxAXp54FMMxv3b0WNwBPSSECAAAAAOCEVdV8V4ZwFQIY4VuSZXffSxuAp2YyAwAAAADgRFXVKskXZQhgkM9J5soQAIyiEAEAAAAAcGKmiYyqmk7VX3t7YJD33b3o7geBAzCKyQwAAAAAgBNSVedJbpNceHdggG2SVXffChuA0VyIAAAAAAA4EVW1SHKvDAEMskmyUIYA4LkoRAAAAAAAnICqepPkU5Iz7w0M8HFXhrgXNgDPxWQGAAAAAMARq6pZknWSV94ZGORtd78RNgDPTSECAAAAAOBIVdV8V4YwkQGMsE2y7O47aQOwD0xmAAAAAAAcoapaJblThgAG2SSZK0MAsE8UIgAAAAAAjkxVXSW5TnLmbfl/7N3/dRQHsgXgW3v2fykDlIFmI0COADkCiQgQEQARABFIigARASICRhmIDKQI6p1+Hr9ne8Hmh7qnZ+b7Ithzi7PWdN+ugglcJjnq7lthAzAnTmYAAAAAAGyJqtpPcpXksZkCE3na3RfCBmCOFCIAAAAAALZAVS1WZYhH5glM4H61FWIpbADmyskMAAAAAIANV1WnST4pQwAT+ZjkQBkCgLlTiAAAAAAA2GBVNayqPzdDYCJvu3vYDHEncADmzskMAAAAAIANVFUHqxMZh+YHTGA4kXHW3RfCBmBTKEQAAAAAAGyYqjpalSH2zA6YwE2SUycyANg0TmYAAAAAAGyQqjpL8kEZApjI+yRHyhAAbCKFCAAAAACADVBV+1U1bIV4bV7ARF5193F33wkcgE3kZAYAAAAAwMxV1SLJcLf/0KyACdyvTmRcCRuATaYQAQAAAAAwY1V1vCpDOJEBTOEmybAV4lbaAGw6JzMAAAAAAGaqqt4keacMAUzkMsmRMgQA28KGCAAAAACAmamq/STDqvrHZgNM5Hl3vxE2ANtEIQIAAAAAYEaqarEqQzwyF2AC96utEEthA7BtnMwAAAAAAJiJqjpNcq0MAUzkJsmBMgQA20ohAgAAAABgBqrqIsl5kj3zACbwtrsX3X0nbAC2lZMZAAAAAABrVFX7q60Qh+YATGA4kXHW3RfCBmDbKUQAAAAAAKxJVR0lubIVApjI5yTHTmQAsCuczAAAAAAAWIOqOkvyQRkCmMjHJAtlCAB2iUIEAAAAAMCEhhMZVTWsqn8td2Air7r7qLvvBA7ALnEyAwAAAABgIlW1SDKUIQ5lDkzgPslpd18JG4BdZEMEAAAAAMAEquo4ybUyBDCRmyRHyhAA7DKFCAAAAACAkVXVyyTvkuzJGpjA5aoMsRQ2ALvMyQwAAAAAgJFU1X6S4evsxzIGJvK8u98IGwAUIgAAAAAARlFVi1UZ4pGEgQncJznu7mthA8BvnMwAAAAAAHhgVXWa5FoZApjITZIDZQgA+DOFCAAAAACAB1RVw6r68yR7cgUmcNndi+6+EzYA/JmTGQAAAAAAD6Cq9ldbIQ7lCUxgOJFx1t0XwgaAL1OIAAAAAAD4SVW1WJUhbIUApvA5yXF3L6UNAF/nZAYAAAAAwE+oqrMkn5QhgIl8TLJQhgCAf6YQAQAAAADwA4YTGVU1rKp/LT9gIm+7+6i77wQOAP/MyQwAAAAAgO9UVQdJrpIcyg6YwH2S0+6+EjYAfDsbIgAAAAAAvs9RkqUyBDCRm+H/d5QhAOD72RABAAAAAPB9HssLmMj71WYIJzIA4AfYEAEAAAAAADA/z7v7WBkCAH6cDREAAAAAAADzcZ9kKEJcmwkA/BwbIgAAAAAAAObhJslCGQIAHoZCBAAAAAAAwPpddvdQhrg1CwB4GAoRAAAAAAAA6/W0u0/NAAAe1r/lCQAAAAAAsBafkxx391L8APDwbIgAAAAAAACY3sckC2UIABiPQgQAAAAAAMC03nb3UXffyR0AxuNkBgAAAAAAwDTuk5x194W8AWB8ChEAAAAAAADju0ly6kQGAEzHyQwAAAAAAIBxvU9ypAwBANNSiAAAAAAAABjPq+4+7u47GQPAtJzMAAAAAAAAeHj3SYYixLVsAWA9bIgAAAAAAAB4WDdJFsoQALBeChEAAAAAAAAP5zLJUXffyhQA1svJDAAAAAAAgIfxtLsvZAkA86AQAQAAAAAA8HPuV1shlnIEgPlwMgMAAAAAAODH3SQ5UIYAgPlRiAAAAAAAAPgxb7t70d138gOA+XEyAwAAAAAA4PsMJzLOuvtCbgAwXwoRAAAAAAAA3+5zkmMnMgBg/pzMAAAAAAAA+DbvkyyUIQBgMyhEAAAAAAAA/LNX3T1shriTFQBsBiczAAAAAAAAvu4+yWl3X8kIADaLQgQAAAAAAMCX3SQZtkLcygcANo+TGQAAAAAAAP/tMsmRMgQAbC4bIgAAAAAAAP7seXe/kQkAbDaFCAAAAAAAgN/cr7ZCLOUBAJvPyQwAAAAAAIDkJsmBMgQAbA+FCAAAAAAAYNdddveiu+92PQgA2CYKEQAAAAAAwK4aTmQ87e5T/wIAYPv820wBAAAAAIAd9DnJsRMZALC9bIgAAAAAAAB2zcckC2UIANhuChEAAAAAAMAuedXdR919Z+oAsN2czAAAAAAAAHbBfZLT7r4ybQDYDTZEAAAAAAAA2+4myZEyBADsFoUIAAAAAABgm12uyhBLUwaA3eJkBgAAAAAAsK2ed/cb0wWA3aQQAQAAAAAAbJv7JMfdfW2yALC7FCIAAAAAAIBtcrM6kXFnqgCw2/616wEAAAAAAABb47K7F8oQAEAUIgAAAAAAgC3xtLtPDRMA+J2TGQAAAAAAwCb7nOS4u5emCAD8kQ0RAAAAAADApvqYZKEMAQB8iUIEAAAAAACwid5291F335keAPAlTmYAAAAAAACb5D7JaXdfmRoA8HdsiAAAAAAAADbFTZIjZQgA4FsoRAAAAAAAAJvg/aoMsTQtAOBbKEQAAAAAAABz97y7j7v7zqQAgG/1b0kBAAAAAAAzdZ9kKEJcGxAA8L1siAAAAAAAAOboJslCGQIA+FEKEQAAAAAAwNxcJjnq7luTAQB+lJMZAAAAAADAnDzt7gsTAQB+lkIEAAAAAAAwB/errRBL0wAAHoKTGQAAAAAAwLp9THKgDAEAPCSFCAAAAAAAYJ3edvewGeLOFACAh+RkBgAAAAAAsA7DiYyz7r6QPgAwBoUIAAAAAABgajdJTp3IAADG5GQGAAAAAAAwpfdJjpQhAICxKUQAAAAAAABTedXdx919J3EAYGxOZgAAAAAAAGO7TzIUIa4lDQBMxYYIAAAAAABgTDdJFsoQAMDUFCIAAAAAAICxXCY56u5bCQMAU3MyAwAAAAAAGMPz7n4jWQBgXRQiAAAAAACAh3S/2gqxlCoAsE5OZgAAAAAAAA/lJsmBMgQAMAcKEQAAAAAAwEN4292L7r6TJgAwB05mAAAAAAAAP2M4kXHW3RdSBADmRCECAAAAAAD4UZ+THDuRAQDMkZMZAAAAAADAj3ifZKEMAQDMlUIEAAAAAADwvV5197AZ4k5yAMBcOZkBAAAAAAB8q/skp919JTEAYO4UIgAAAAAAgG9xk2TYCnErLQBgEziZAQAAAAAA/JPLJEfKEADAJrEhAgAAAAAA+DvPu/uNhACATaMQAQAAAAAAfMn96kTGtXQAgE2kEAEAAAAAAPzVzepExp1kAIBN9S+TAwAAAAAA/uCyuxfKEADAplOIAAAAAAAAsjqR8bS7T6UBAGwDJzMAAAAAAIDPSY67e7nzSQAAW8OGCAAAAAAA2G0fkyyUIQCAbaMQAQAAAAAAu+tVdx91951/AwDAtnEyAwAAAAAAds99ktPuvjJ7AGBb2RABAAAAAAC75SbJkTIEALDtFCIAAAAAAGB3vF+VIZZmDgBsO4UIAAAAAADYDc+7+7i778wbANgF/zZlAAAAAADYavdJhiLEtTEDALvEhggAAAAAANheN0kWyhAAwC5SiAAAAAAAgO102d1DGeLWfAGAXaQQAQAAAAAA2+dpd5+aKwCwy/5t+gAAAAAAsDU+Jznu7qWRAgC7zoYIAAAAAADYDh+TLJQhAAB+oxABAAAAAACb7213H3X3nVkCAPzGyQwAAAAAANhc90lOu/vKDAEA/syGCAAAAAAA2Ew3SY6UIQAAvkwhAgAAAAAANs/7VRliaXYAAF+mEAEAAAAAAJvlVXcfd/eduQEAfN2/ZQMAAAAAABvhPslQhLg2LgCAf2ZDBAAAAAAAzN9NkoUyBADAt1OIAAAAAACAebtMctTdt+YEAPDtnMwAAAAAAID5etrdF+YDAPD9FCIAAAAAAGB+7ldbIZZmAwDwY5zMAAAAAACAefmY5EAZAgDg5yhEAAAAAADAfLzt7mEzxJ2ZAAD8HCczAAAAAABg/YYTGWfdfWEWAAAPQyECAAAAAADW6ybJqRMZAAAPy8kMAAAAAABYn/dJjpQhAAAenkIEAAAAAACsx6vuPu7uO/kDADw8JzMAAAAAAGBa96sTGVdyBwAYj0IEAAAAAABM5ybJsBXiVuYAAONyMgMAAAAAAKZxmeRIGQIAYBo2RAAAAAAAwPied/cbOQMATEchAgAAAAAAxnO/2gqxlDEAwLSczAAAAAAAgHHcJDlQhgAAWA+FCAAAAAAAeHhvu3vR3XeyBQBYD4UIAAAAAAB4WM+7+0ymAADrpRABAAAAAAAP67SqFjIFAFgvhQgAAAAAAHhYh0muq+pUrgAA66MQAQAAAAAAD28vyXlVvZEtAMB6KEQAAAAAAMB4nlXVsC1iX8YAANNSiAAAAAAAgHE9TrKsqoWcAQCmoxABAAAAAADje5Rk2BRxKmsAgGkoRAAAAAAAwDT2kpxX1YW8AQDGpxABAAAAAADTOqmq4YTGvtwBAMajEAEAAAAAANM7THJbVQvZAwCMQyECAAAAAADWYzih8amqTuUPAPDwFCIAAAAAAGC9zqvqwgwAAB6WQgQAAAAAAKzfSVUtq+rALAAAHoZCBAAAAAAAzMNhkqEUcWQeAAA/TyECAAAAAADmYy/Jh6o6MxMAgJ+jEAEAAAAAAPPzuqouqmrfbAAAfoxCBAAAAAAAzNNJkuuqOjAfAIDvpxABAAAAAADzdZhkWVXHZgQA8H0UIgAAAAAAYN72kryrqpfmBADw7RQiAAAAAABgM7yoqquq2jcvAIB/phABAAAAAACb40mS66pamBkAwN9TiAAAAAAAgM1yuCpFHJsbAMDXKUQAAAAAAMDm2UvyrqremB0AwJcpRAAAAAAAwOZ6VlXDtoh9MwQA+DOFCAAAAAAA2GyPkyyramGOAAD/TyECAAAAAAA236Mkw6aIU7MEAPiNQgQAAAAAAGyHvSTnVfXGPAEAFCIAAAAAAGDbPKuqYVvEvskCALtMIQIAAAAAALbP4yS3VbUwWwBgVylEAAAAAADAdhpOaHyqqlPzBQB2kUIEAAAAAABst/OqujBjAGDXKEQAAAAAAMD2O6mqZVXtmzUAsCsUIgAAAAAAYDccJrmtqiPzBgB2gUIEAAAAAADsjr0kH6rqzMwBgG2nEAEAAAAAALvndVVdOKEBAGwzhQgAAAAAANhNJ0muq+rA/AGAbaQQAQAAAAAAu+swybKqjvwbAAC2jUIEAAAAAADstr0kH6rq5a4HAQBsF4UIAAAAAABg8KKqrqpqXxoAwDZQiAAAAAAAAH73JMl1VS0kAgBsOoUIAAAAAADgjw5XpYhjqQAAm0whAgAAAAAA+Ku9JO+q6qVkAIBNpRABAAAAAAB8zYuquqqqfQkBAJtGIQIAAAAAAPg7T5Isq2ohJQBgkyhEAAAAAAAA/+RRkuuqOpUUALApFCIAAAAAAIBvsZfkvKreSAsA2AQKEQAAAAAAwPd4VlXDtoh9qQEAc6YQAQAAAAAAfK/HSZZVtZAcADBXChEAAAAAAMCPeJTkU1WdSg8AmCOFCAAAAAAA4GecV9WFBAGAuVGIAAAAAAAAftZJVQ0nNPYlCQDMhUIEAAAAAADwEA6T3FbVQpoAwBwoRAAAAAAAAA9lL8mnqjqTKACwbgoRAAAAAADAQ3tdVRdOaAAA66QQAQAAAAAAjOEkyXVVHUgXAFgHhQgAAAAAAGAsh0mWVXUkYQBgagoRAAAAAADAmPaSfKiqMykDAFNSiAAAAAAAAKbwuqouqmpf2gDAFBQiAAAAAACAqZwkua6qhcQBgLEpRAAAAAAAAFM6XJUijqUOAIxJIQIAAAAAAJjaXpJ3VfVS8gDAWBQiAAAAAACAdXlRVVdVtW8CAMBDU4gAAAAAAADW6cnqhMbCFACAh6QQAQAAAAAArNvhqhRxahIAwENRiAAAAAAAAOZgL8l5Vb0xDQDgIShEAAAAAAAAc/KsqoZtEfumAgD8DIUIAAAAAABgbh4nWVbVwmQAgB+lEAEAAAAAAMzRoyTDpohT0wEAfoRCBAAAAAAAMFd7Sc6r6sKEAIDvpRABAAAAAADM3UlVDSc09k0KAPhWChEAAAAAAMAmOExyW1UL0wIAvoVCBAAAAAAAsCmGExqfqurUxACAf6IQAQAAAAAAbJrzqrowNQDg7yhEAAAAAAAAm+ikqpZVdWB6AMCXKEQAAAAAAACb6jDJUIo4MkEA4K8UIgAAAAAAgE22l+RDVZ2ZIgDwRwoRAAAAAADANnhdVRdVtW+aAEAUIgAAAAAAgC1ykuS6qg4MFQBQiAAAAAAAALbJYZJlVR2bKgDsNoUIAAAAAABg2+wleVdVL00WAHaXQgQAAAAAALCtXlTVVVXtmzAA7B6FCAAAAAAAYJs9SXJdVQtTBoDdohABAAAAAABsu8NVKeLYpAFgdyhEAAAAAAAAu2AvybuqemPaALAbFCIAAAAAAIBd8qyqhm0R+6YOANtNIQIAAAAAANg1j5Msq2ph8gCwvRQiAAAAAACAXfQoybAp4tT0AWA7KUQAAAAAAAC7ai/JeVW98S8AALaPQgQAAAAAALDrnlXVsC1if9eDAIBtohABAAAAAACQPE5yW1ULWQDAdlCIAAAAAAAA+M1wQuNTVZ3KAwA2n0IEAAAAAADAn51X1YVMAGCzKUQAAAAAAAD8t5OqWlbVvmwAYDMpRAAAAAAAAHzZYZLbqjqSDwBsHoUIAAAAAACAr9tL8qGqzmQEAJtFIQIAAAAAAOCfva6qCyc0AGBzKEQAAAAAAAB8m5Mk11V1IC8AmD+FCAAAAAAAgG93mGRZVUcyA4B5U4gAAAAAAAD4PntJPlTVS7kBwHwpRAAAAAAAAPyYF1V1VVX78gOA+VGIAAAAAAAA+HFPklxX1UKGADAvChEAAAAAAAA/53BVijiWIwDMh0IEAAAAAADAz9tL8q6qXsoSAOZBIQIAAAAAAODhvKiqq6ralykArJdCBAAAAAAAwMN6kmRZVQu5AsD6KEQAAAAAAAA8vEdJrqvqVLYAsB4KEQAAAAAAAOPYS3JeVW/kCwDTU4gAAAAAAAAY17OqGrZF7MsZAKajEAEAAAAAADC+x0mWVbWQNQBMQyECAAAAAABgGo+SfKqqU3kDwPgUIgAAAAAAAKZ1XlUXMgeAcSlEAAAAAAAATO+kqoYTGvuyB4BxKEQAAAAAAACsx2GS26payB8AHp5CBAAAAAAAwPrsJflUVadmAAAPSyECAAAAAABg/c6r6sIJDQB4OAoRAAAAAAAA83CS5LqqDswDAH6eQgQAAAAAAMB8HCZZVtWRmQDAz1GIAAAAAAD4Pp/lBYxsL8mHqjoTNAD8OIUIAAAAAIDvc5HkaZJ7uQEje11VF1W1L2gA+H4KEQAAAAAA36m7h1LEkW0RwAROklxX1ULYAPB9FCIAAAAAAH5Ady+TDC8o38sPGNnhqhRxLGgA+HYKEQAAAAAAP6i777p7eEH5SobAyPaSvKuql4IGgG+jEAEAAAAA8JO6e3hB+WuSe1kCI3tRVVdVtS9oAPh7ChEAAAAAAA+gu6+SHCW5kScwsierExoLQQPA1ylEAAAAAAA8kO5erkoR72UKjOxwVYo4FTQAfJlCBAAAAADAA+ruu+4+TvJKrsDI9pKcV9UbQQPAf1OIAAAAAAAYQXe/TPJLknv5AiN7VlXDtoh9QQPA/1OIAAAAAAAYSXdfJxlu/N/IGBjZ4yTLqloIGgB+oxABAAAAADCi7r5NcpTkUs7AyB4lGTZFnAoaABQiAAAAAABG19133T28oHwubWBke0nOq+qNoAHYdQoRAAAAAAAT6e7hBeUvSe5lDozsWVUNJzT2BQ3ArlKIAAAAAACYUHdfJzlIciN3YGSHSW6raiFoAHaRQgQAAAAAwMRWJzSGF5SXsgdGNpzQ+FRVp4IGYNcoRAAAAAAArEl3Dy8on8ofmMB5VV0IGoBdohABAAAAALBG3T28oPxPkntzAEZ2UlXLqjoQNAC7QCECAAAAAGDNunuZZHhBeWMWwMgOkwyliCNBA7DtFCIAAAAAAGagu++6e5HkrXkAI9tL8qGqzgQNwDZTiAAAAAAAmJHuHl5QPnVCA5jA66q6qKp9YQOwjRQiAAAAAABmprsvkgzr7D+bDTCykyTXVXUgaAC2jUIEAAAAAMAMdfcyyXBC46P5ACM7TLKsqmNBA7BNFCIAAAAAAGaqu++6e9gU8daMgJHtJXlXVS8FDcC2UIgAAAAAAJi57j5L8muSe7MCRvaiqq6qal/QAGw6hQgAAAAAgA3Q3VdJhm0RN+YFjOxJkuuqWggagE2mEAEAAAAAsCG6e7kqRbw3M2Bkh6tSxLGgAdhUChEAAAAAABuku++6e3hB+crcgJHtJXlXVS8FDcAmUogAAAAAANhA3T28oPw1yb35ASN7UVXDtoh9QQOwSRQiAAAAAAA2VHdfJRlu/N+YITCyx0mWVbUQNACbQiECAAAAAGCDdfdtkqMkl+YIjOxRkmFTxKmgAdgEChEAAAAAABuuu++6e3hB+dwsgZHtJTmvqjeCBmDuFCIAAAAAALZEdw8vKH9Jcm+mwMieVdWwLWJf0ADMlUIEAAAAAMAW6e7rJMON/xtzBUb2OMltVS0EDcAcKUQAAAAAAGyZ7r5NcpTk0myBkQ0nND5V1amgAZgbhQiY1oG8AQAAAJhCd9919/CC8qnAgQmcV9WFoAGYE4UImNYjeQMAAAAwpe4eXlD+J8m94IGRnVTVsqr2BQ3AHChEAADAvHmIBADAT+vu5Wp76Y00gZEdJrmtqiNBA7BuChEAADBvC/MBAOAhrE5oDH9fXgoUGNlekg9VdSZoANZJIQImZlUYAAAAAOvU3adJnjqhAUzgdVVdeC4OwLooRMD0fOUJAADztTQbAHZBd18kGdbZfzZwYGQnSa6r6kDQAExNIQIAAObNzVWY0LBKXN4A7IruXq4+3vlo6MDIDofycVX5jQvApBQiYHpWgwEAAAAwC0MZsLuHF5RvTQQY2V6SD1V1JmgApqIQAdNzMgMA+B7KlAAAjK67hxeUT5PcSxsY2euquqoqv3cBGJ1CBAAAzNuh+QAAMIXuvlidbLsRODCyJ0muq8oHhACMSiECpudGGgDwTXwtAwDA1Lp7uXp+9V74wMgOV6WIY0EDMJahEHEtXZiUFxsAwLfypQwAAJPr7rvuHl5QvpI+MLK9JO+q6qWgARiDDREwPWuvAYBvdSApAADWpbuHF5S/Jrk3BGBkL6rqyqZEAB6aQgSsQVV5uQEAfAt/M8C0PssbAP6su69WJzRuRAOM7EmSZVXZlgjAg1GIgPXwcgMA+BYeAsG0buUNAP+tu5erUsR78QAjezSceq+qU0ED8BAUImA9juQOAHwDJUoAAGahu++6+zjJ6NU9BgAAIABJREFUcxMBRraX5Lyq3ggagJ81FCLupAiT83IDAPgWh1ICAGBOunt4QflLknuDAUb2rKqGbRH7ggbgR/1rte4MmJb11wDA36oqG6UAAJil7r5ePd+6MSFgZI+TLKvKM3UAfoiTGbAevvYEAP6Jhz0wvVuZA8C36e7b1VnYS5EBI3uU5FNVnQoagO+lEAFr4qtPAOAfKETA9BQiAOA7dPdddw8vKJ/LDZjAeVVdCBqA76EQAevjJQcA8Hf8rQAAwEbo7jdJ/pPk3sSAkZ1U1XBCY1/QAHyL3wsRH6UFk7MhAgD4otWDHSe2AADYGN29THKQ5MbUgJENv5dvq8qHBAD8IxsiYH38sQYAfI3iJKyHkxkA8BNWJzSGZ16XcgRGtpfkU1WdChqAv6MQAevzqKoO5A8AfIHiJKyHQgQAPIDuHl5QPpUlMIHzqrpwQgOAr/m9EOGhD6yHrz8BgC85lgoAAJusuy+S/CfJZ4MERnaS5NoHiAB8iUIErJdCBADwJ6uvWg6lAmtxJ3YAeDjdvVxtP/soVmBkw+/oZVV55g7AnziZAevl608A4K88vIE1Wb20AQAeUHffdffwN+5buQIj20vyoarOBA3A734vRPgKBtZjr6rcCAcA/khhEgCArdPdwwvKp0nuTRcY2euqulhtYARgx/1eiPAVDKyPlx4AwB/ZEAHr4eUMAIysuy9Wf+9+ljUwspMk1z5IBMDJDFg/hQgA4H+tHtQ8kgashQ8FAGACqxNVw9+9H+UNjOxwVYrwDB5gh/1eiLj1jwDW5rCqDsQPACQ5FQIAANuuu++6e9gU8cqwgZHtJXlXVS8FDbCb/rcQ0d0KEbBeGqoAQJzLgLXyuxgAJtbdwwvKX52uAibwoqquqmpf2AC7xckMmAdfgwLAjlttjDrc9RxgjRQiAGANuvtqVQy+kT8wsierExoLQQPsjj8WItxsg/VxNgMAONv5BAAA2EndvVyVIt77FwCM7HBVivCRIsCOsCEC5sPZDADYbf4WgPW6lj8ArE9333X38DfxK2MARraX5Lyq3ggaYPv9sRCxNG9YK1+FAsCOWq3rfGT+AADsuu5+meSXJPe7ngUwumdVNWyL2Bc1wPb6YyHizpxhrR65XQYAO0sxEtbPRwIAMBPdPWxuGp6T3ZgJMLLHw28Bz+YBttcfCxG35gxr52UIAOyY1ZcozmXAmg1rus0AAOaju4fn1UdJLo0FGNmwsXHYFHEqaIDtoxAB83JsPRcA7Jzj1f1SYH0+yx4A5mcoLHb38ILyufEAIxt+l59X1RtBA2wXJzNgXvZ8IQoAO8eGKFg/HwgAwIx19/CC8pck9+YEjOxZVS19uAiwPf6vENHd7qXCPHgpAgA7YnWj9NC8Ye0UIgBg5rr7OslBkhuzAkY2/E6/Xf1mB2DD/esv//M1bGH9DqvqyBwAYCcoQsI8KEQAwAZYndAYXlBemhcwsmGb86eqOhU0wGb7ayHClgiYBy9HAGDLVdXwdduJOcMsKEQAwAbp7uEF5VMzAyZwXlUXggbYXH8tRHgIBPPwZPWSBADYXr4ygfnwWxgANkx3Dy8o/2PrMTCBk6paemYPsJkUImC+XpoNAGynqtq3EQpmxbZEANhA3T38N3x4QXljfsDIDoffDc5dA2wehQiYrxONUwDYWmere6TADAz3yM0BADbT8N/x7l4keWuEwMiG3/EfqsoHDgAbRCEC5s2WCADYMrZDwOx8NBIA2HzdPfyN/dQJDWACr6vqYvX7HoCZ+2shwppQmBdbIgBg+9gOAfNiOwQAbInuvkgyrLP/bKbAyE6SXHt+DzB/fypErNaEatDCvNgSAQBbwnYImCUfBgDAFunu4b/tC1uggAkcDr8nqupY2ADz9dcNEfEwCGbHlggA2B62Q8D8OB0JAFtm+PCvu4dNEW/NFhjZ8Bv/XVX5sBFgpr5UiPAwCObHH1MAsOFsh4DZ8hsYALZUdw9/f/9qKzIwgRdVdbX67Q/AjChEwGYYtkQszAoANtob2yFgfrr72lgAYHt191WSYVvEjTEDI3uS5NqzfIB5+VIhwsMgmKc35gIAm2l1/urE+GB2fC0KADugu5erUsR78wZGdrgqRRwLGmAebIiAzfHYH1EAsLEujA5maWksALAbuvuuu4dna6+MHBjZsB3yXVU5hQ0wA/9ViOhuhQiYrzdukAHAZlkVGh8bG8ySQgQA7JjuHl5Q/mpTFDCBF1V17Zk+wHp9aUPE4KO5wCw9SnJmNACwGVYPPZy9gvnyQQAA7KDuvkoy3Pi/MX9gZMMHEsuqWggaYD2+VojwUAjm68XqDjkAMH9nq0IjME82RADAjlptSj5KcunfADCy4bnAsCniVNAA01OIgM3kDjkAzNzq648X5gTz1d3XxgMAu6u777p7eEH53D8DYGR7Sc6ryhZJgIl9rRDhoRDM2+OqcjoDAOZNgRHm7bP5AAD5rRgxvKD8Jcm9QICRPauq69WJTQAm8LVChLWhMH8vnc4AgHmqqpdJDo0HZs3vXgDg/6w2Rw1b3m6kAozs8bCpfbVZEoCRfbEQMawK04aF2dvz5SkAzI9TGbAxFCIAgD/p7uGU9FGSS8kAIxue73+qqlNBA4zraxsi4uEQbASnMwBgfhQWYTP4zQsA/JfhY8HuHl5QPpUOMIHzqvIcAWBEf1eIuBY8bISXVmsBwDw4lQEbRSECAPiq7h5eUP7HJmVgAidVtayqfWEDPDwbImDz/e/pDH8sAcB6VdWRUxmwMe5XK7EBAL6qu4dn5AdJbqQEjGz4uOJ29WwBgAekEAHbYfhj6aVZAsB6rIqJV+KHjeH3LgDwTVYnNIbtrJcSA0Y2fPz4wZlsgIf11ULE6msZ68BgczyrqlPzAoC1uFo9uAA2gxORAMB36e7hudtTz8yBCbyuKluhAR7I322IiK9mYOO8qaqFsQHAdKpq2NL0WOSwUfzWBQC+W3dfJBnW2X+WHjCyk6HIXVUHggb4Of9UiPDVDGyW4ctUzVEAmEhVHSd5IW/YOAoRAMAP6e7h74jhg6SPEgRGNpzKXlbVkaABfpxCBGyf4Y+kC3MFgHGttjL5by5sns+rE5EAAD+ku++6e3hB+VaCwMiGjyA/VNWZoAF+jJMZ/8Pe/V5XkSR5A47Ys9+l1wI0FuhiAcIChAUICxAWABYAFiBZgLCgJQuQLFhhwYIF8Z6cTu1oeoDWn1ululXPcw6H3vmwukQKVJX5ywiYp2e9fTcAMIDejemob0wAm8V7LgCwFlXVDihfRsQPFQUG9j4zT3SHBri93wYiWtLVPDTYWG8y88DyAcAgTnpXJmDzCEQAAGtTVS0o3bpFXKgqMLBnrbN771gJwA39XYeIMDYDNtonD0cAsF6Z2TY8nygrbCzvuADAWlXVeQ9FfFFZYGC7PRSxr9AAN3OTQITbM7DZJEYBYE36SKoX6gmbq6oEIgCAtWvdlquqHVC+U11gYG1852djswFuRocImL+tHoowWwwA7qGPonqjhrDRziwfADCkqmoHlM8j4odCAwNrY7NP7P0D/N7fBiJ6uy8Pb7DZhCIA4B56GOKTGsLG0wERABhcVZ30ERoXqg0M7Fl7z9ElGuDXbtIhImwawSzsCkUAwO1l5p4wBMyGDogAwCj6RcP2LvFFxYGBPep7/wcKDfCfbhqIsGkE8yAUAQC30G9YnKgZzIZ3WwBgNFX1var2I+K1qgMDa12iP2XmB4UG+HcCEbA8QhEAcAM9DHHaNxWAzXfRDiWsIwAwtqpqB5RPjaYGRvAqM+3/A1xzo0BEVQlEwLwIRQDAbwhDwCwZBQkAPJi+x97eMy6sAjCwJ+39p+9tACzeTTtENGdLLxbMjFAEAPyEMATMlqA/APCgquoyIvYi4thKAAN7FBFfM/NAoYGlu00gwuYRzI9QBABc0zcKvgpDwCydWFYA4KG1EV5V1d47XlsMYASfMvNIoYElE4gArkIRO4uvBACL1sMQn5ZeB5ipi3b4YHEBgKmoqg8R8TgiflgUYGAvMvPcxUhgqW4ciOgzzoB52jVTDIAly8xDYQiYNe+zAMDkVNV5RLRLShdWBxhYOwO4dAYALNFtOkQ0X3yXwGxt9U4Re5YYgCXprSPfW3SYNYEIAGCS+giNdkB5bIWAgbUzgK+9QybAYtw2EGETCeatPRD94YEIgCVorSIzsz3fvrDgMHveZQGASauqth/30ioBI/jULocYoQEshUAE8DPtgeiDygAwV5m5059tn1hkmL2LdvPSMgMAU1dVrXvd44j4ZrGAgb3oHaN3FBqYu1sFIvpMsx++K2ARXrVbs1KiAMxNHw913udnAvN3Yo0BgE3R9+DbCI0ziwYMrO2LnBujDczdbTtEhM0kWJQn/YFoZdkBmIPMPGzjofqYKGAZdDoEADZK625VVe2A8qOVAwZ2NUb7UKGBubpLIMJmEizLo94668C6A7CpWsejzGzB3vcWERblR1V5hwUANlJVtQPKl7o2AyN4n5lHOkYDc6RDBHATLSX6yQMRAJuodzpqbWefWUBYHGEIAGCjVdVRRLRuEd+sJDCwF/1ypI7RwKzcOhDR2nVFxIVvA1ikF0ZoALBJMvNtRHztHY+A5RHoBwA2XlW1gHfbjzuzmsDAdnsoYl+hgbm4S4eIsKkEi9YOlL72AyYAmKTM3MnMdjP8jRWCRdMhAgCYhXZRsapap4h3VhQYWOsY/dkZADAXAhHAXb1pB03twEkFAZiSzDzoIzKeWBhYtIuqulx6EQCAeamqdkD5PCJ+WFpgYO0M4MQYbWDT3SkQ0Vt0eeACnvQRGoeLrwQAD+5aV4hP/TYDsGy6QwAAs1RV7cLintHWwAie9REaxmgDG+uuHSJClwigawdO7zPz3EMRAA+lh/N0hQCuO1INAGCu+qXFFor4YpGBge32UMSBQgObSCACWJf2UPS1zRXTQguAsbQwXu8K8V5XCOCaH/2QAABgtqrqe1XtR8Q7qwwMrO25fMrMDwoNbJo7ByJ6Wy6Av3rTx2jsqwwAQ2nhu/4S/lVXCOAnvK8CAItRVW8j4qkx18AIXrWLKS5FApvkPh0iQjsu4BceRcTn/mBkjAYAa9XHY1y2l3CVBX5BIAIAWJSqap3z2j7chZUHBvakX4q09w9shPsGImwyAb/zpI/ROMrMHZUC4D4ycy8zL43HAP7GDx0NAYAlqqr2vrQXEce+AYCBtUuR7ULkgUIDUycQAYzhRUT8T2a+1UoLgNvqQYh22+mP/sIN8DunqgMALFVVfa+qdkD52jcBMLB2WeVTH2kKMFn3CkS0hytjM4BbeNNanAtGAHATfwlCPFE04IYE9wGAxauqdkD5tHXPWnotgMG9ysxze/7AVN23Q0S4fQPc0pZgBAC/IwgB3JNABADAn6GI9l7VxtheqAcwsN2+579SaGBq1hGIsNkE3MVVMOJ/M/MoM3dUEWDZMnNfEAK4py+9kyEAAP8aodEOKI/VAxhY2/P/mpkHCg1Myb0DEVV1KWEK3NOLiPifzDxpt4IVE2A5WqegzDzMzPZM+VkQArgngX0AgJ+oqnZA+VJtgBF8apcgFRqYinV0iGj8wwasw7N2K7gdirUUqXEaAPPVWij2l+MWhHgfEY8sN7AGAhEAAL9QVe0d7HFE/FAjYGAvMvNcZ2hgCtYViLDpBKxTOxT71GeOHekaATAPvRtEC7ydtxaKvUPQluUF1sS4DACAv1FV7X1sR9dnYAS7EXFufx94aGsJRPSxGWdWE1izrX5YdtU14q1EKcDmycz93g3if3vgbdcyAgMQ1AcAuIEWIq2qVUR8VC9gYFt9f/9QoYGHsq4OEWFsBjCw1jXiTUT8T2+1dSgcATBdVyGIzGy3tT/3gBvAkAQiAABuoaraAeVLIzSAEbzv+0TGZAOjy6pay9fs/4j9ryUERtba+522UFZv+QfAA+jPgvsRsdd/NwoDGNNxVR2oOEuXmevZ5AFu4l1VvVUp5iAzVz1c+siCAgNr+/n7vfM8wCjWFoiIPx+c2kPTM0sHPJAf/eWtBSROPVQBDKvPgLz69US5gQf0vKp0iGDxBCJgVAIRzEoPuZ94twNG0PbxD7zDAWNZdyDioM+FBpiCb1fhiIg410EC4H7+EoBY6QIBTMSPqtJ2FQQiYGwCEcxSZn6IiFdWFxiBn6XAKNYaiIg/H5i+2xwHJqolT8+vAhIRcSkkAfBzPfywuvZrV6mAiTIuAzqBCBiVQxxmKzPbGMQj+/zACL70bhHfFRsYyhCBiPag9MKKARvkLCK+95DE+dV/ewgD5i4zdyJip4cetnvnhx1zY4EN81jIFf4kEAGjEohg1jJz1UMRwvHA0C56KMJ7HTCIIQIRbSP9D8sFzMRFD0hE7yxx5fza/w4wVVdBh+i/r/p/G3cBzMW3qtqxmvAngQgYlUAEs5eZ2z0U8cxqAwP70UMRJwoNrNt/r/v/YVWdZuY3NwuBmbiegn9iUQEAJuXIcgAADKN3T93PzBb+eaPMwIDaxZ3PmSlwCKzdfw1UUptSAAAADM27JwDAwPrh5PN+gxtgSG8y87R3qAFYC4EIAAAANtFZVV1aOQCA4fU29qs+XhZgSK1T83lmrlQZWIdBAhF9U+rMCgEAADAQQXwAgBH1ff+9iDhWd2BgbSx/6xRxoNDAfQ3VISJsTgEAADCQH1XlnRMAYGRV9b2q2gHla7UHBrYVEZ8y84NCA/cxWCCib06ZKQYAAMC6nagoAMDDqap2QPnUGQAwgleZ2bpFbCs2cBdDdogIm1QAAAAMwA0hAIAHVlWnEdFm/F9YC2BgTyLiMjNXCg3c1tCBCJtUAAAArNNFVZ2rKADAw6uqy4jYi4hjywEMrI3Q+JqZBwoN3MaggYi+SSUdCgAAwLoI3gMATEhVfa+qdkD50roAI/iUmUcKDdzU0B0iwmYVAAAAa/LDaEYAgGmqqnZA+bg/swEM6UVmnmfmtioDf2eMQMSJByAAAADW4KTdQFRIAIBp6l2jd3SOBkawGxGXmblSbOB3Bg9E9M0qrWsAAAC4r7cqCAAwbX2ERjugPLZUwMC2IuJrZh4qNPArY3SICGMzAAAAuKezqrpURACAzVBVBxHxUgdpYATvM/PICA3gZ0YJRPRNqzMrAAAAwB3pPAgAsGGqqj3D7UXEN2sHDOxFRJxm5o5CA9eN1SEidIkAAADgjr71zXQAADZMVZ1HxMqlSWAEuxFxnpl7ig1cGS0QUVUnUqAAAADcgTAEAMAGq6rvVdUOKD9aR2BgWxHxR2YeKjQQI3eICF0iAAAAuAPvkgAAM1BV7YDyZUT8sJ7AwN5n5klmbis0LNvYgYgjDzoAAADcwnG7UahgAADz0EehtW4RF5YUGNiziDjNzJVCw3KNGojom1gnvt8AAAC4obcKBQAwL1V13kMRXywtMLDdHorYV2hYprE7RITNLAAAAG7orKouFQsAYH7aBcqqageU7ywvMLCtiPicmc4oYYFGD0T0zSypTwAAAP6OzSoAgJmrqvbM99y4bWAEbzLzJDO3FRuW4yE6RDQffI8BAADwG9+q6lSBAADmr6pO+giNC8sNDOxZRJxn5kqhYRkeJBDRN7XOfI8BAADwC7pDAAAsSFWd91CEDtPA0B5FxGlmHqg0zN9DdYhojnx/AQAA8BOtO4R3RgCAhamq71W1HxGvrT0wsK2I+JSZutrDzD1YIKJvbn3zDQYAAMBfCEMAACxYVbUDyqcR8cP3ATCwV5nZukVsKzTM00N2iAgtUAEAAPiLtunthg4AwML10dttxv/F0msBDO5JRJxn5kqpYX4eNBChSwQAAAB/8aG1SlYUAACq6jIi9iLiePHFAIb2KCJap4gDlYZ5eegOEeHmDwAAAJ3uEAAA/JsWlq2qdkD5WmWAgW1FxKfMNMYRZmQKgYgjc8AAAACIiBPdIQAA+JmqasHZx84TgBG8yMw2QmNbsWHzPXggom92uQEEAADA28VXAACAX6qq84jYiYgLVQIGthsRl5m5UmjYbFPoEBE9ECHVCQAAsFzHfUY0AAD8Uh+h0Q4oj1UJGFgbofE1Mw8UGjbXJAIRukQAAAAsnu4QAADcWFW1A8qXKgaM4FNmHhmhAZtpKh0iQpcIAACAxdIdAgCAW6uqo4h47GwBGMGLiDjNzB3Fhs0ymUCELhEAAACLpTsEAAB3UlXnEdEOKM9UEBjYbkScZ+aeQsPmmFKHiNAlAgAAYHF0hwAA4F7ahcuqageUH1USGNhWRPyRmYcKDZthUoEIXSIAAAAWR3cIAADWoqraAeVLFy+BEbzPzKPM3FZsmLapdYgIXSIAAAAWQ3cIAADWqqqOIqJ1i/imssDAXkTEaWauFBqma3KBCF0iAAAAFuGH7hAAAAyhqs4joh1QnikwMLDdHorYV2iYpil2iIgeiJDeBAAAmK8PukMAADCUdvmyqlqniHeKDAxsKyI+Z6bQP0zQJAMRvUuEfzQAAADm6YfOgAAAjKGq2lnDc6O6gRG8ycyTzNxWbJiOqXaIuJrzpUsEAADA/HzoQXgAABhcVZ1EROsWcaHawMCe9REaK4WGaZhsIKLTJQIAAGBedIcAAGB0VXXeQxFfVB8Y2G4PRewrNDy8SQciepcIiU0AAID5ONQdAgCAh9CeQ6uqHVC+swDAwLYi4nNmuhAAD2zqHSKawwl8BgAAAO7vWw++AwDAg6mq1p36ae9eBjCkV5nZukVsqzI8jMkHIqrqNCLOJvBRAAAAuB+BdwAAJqGfPax0qQZG8CQizjNzpdgwvk3oEBE2zQAAADbeWVWdWEYAAKaiqi4jYi8iji0KMLBHEdE6RRwoNIxrIwIRVXXugQQAAGCjvbV8AABMTVV9r6p2QPna4gAD24qIT5n5QaFhPJvSISJ6lwjzvAAAADbPcW9JDAAAk1RV7YDyqXMIYASvMrON0NhWbBjexgQiWkozIiSmAAAANssP3SEAANgEPcTbZvxfWDBgYLsRcZmZK4WGYW1Sh4jogYhvE/gcAAAA3MyHPpsZAAAmrz27VtXKGG9gBG2ExtfMPFBsGM5GBSJ6l4jDCXwUAAAA/t43nf4AANhEVdUOKF9aPGAEnzLzSKFhGJvWIaI9hJxExNkEPgoAAAC/97YH2wEAYONUVTugfNzHwAEM6UVmnmfmjirDem1cIKLTJQIAAGDazvoGMgAAbKyqOo+IdkB5YRWBge1GRAtF7Ck0rM9GBiL6A8jHCXwUAAAAfk6QHQCAWWhdz6pq5VwCGMFWRPyRmd6pYU02tUNE81abKgAAgEn62IPsAAAwG1XVDihfOpsARvA+M48yc1ux4X42NhDR59BKRwEAAEzLjx5gBwCA2elj4Vo7+29WFxjYi4g4zcwdhYa72+QOEVcPHmcT+CgAAAD86bAH2AEAYJZ6N7SV8wlgBLsRcZ6Ze4oNd7PRgYhOlwgAAIBpOOvBdQAAmLUWAq6qdkD50UoDA9uKiD8yUzdGuIOND0T0JKYHDgAAgIcnsA4AwKJUVXsGft5HxwEM6U1mnmTmtirDzc2hQ0T0+bQeNgAAAB7Oxx5YBwCARamqk4ho3SIurDwwsGcRcZqZK4WGm5lFIKLPpz2YwEcBAABYom89qA4AAIvUw8EtFPHFdwAwsN0eithXaPh7c+kQcZXAPJvARwEAAFiawx5UBwCAxWrPxFXVDijf+S4ABrYVEZ8z0+UE+BuzCUR0B0ZnAAAAjOpLD6gDAAB/BiPaAeVz5xXACN5kZusWsa3Y8HOzCkRU1aU2rQAAAKP5YXwhAAD8px4abiM0LpQHGNiTiDjPzJVCw3+aW4eI9pDxwQMGAADAKN4alQEAAD9XVec9FHGsRMDAHkVE6xTh0gL8xewCEZ2/7AAAAMM664F0AADgF1qAuKramcVrNQIGthURnzLTuzpcM8tARE9dvpvARwEAAJgjozIAAOAWepj4aX+WBhjSq8xs3SK2VRnm2yGiPVy8NToDAABgEG1UxqXSAgDAzVXVaUSsnF0AI3gSEZeZuVJslm62gYjOjSUAAID1MioDAADuqAeL9yLiWA2BgbURGl8z03kpizbrQITRGQAAAGtlVAYAANxTVX2vqvZc/VItgRF8yswjhWap5t4hwugMAACA9TEqAwAA1qSq2gHl4x48BhjSi8w8z8xtVWZpZh+I6NxgAgAAuB+jMgAAYM16p+sdFzuBEexGxGVmrhSbJVlEIMLoDAAAgHsxKgMAAAbSR2i0A8pjNQYGthURXzPzUKFZiqV0iDA6AwAA4O6MygAAgIFVVQshvzRCAxjB+8w8MkKDJVhMIKLb9yABAABwK1+MygAAgHFU1VFE7EXENyUHBvYiIk4zc0ehmbNFBSL6jaa3E/goAAAAm8CoDAAAGFkfA95GaJypPTCw3Yg4z8w9hWaultYhIvrNpi8T+CgAAABTd9DmGVslAAAYV3sOr6p2QPlR6YGBbUXEH5l5qNDM0eICEd2B0RkAAAC/9bGqTpQIAAAeTlW1A8qXzjSAEbzPzJPM3FZs5mSRgYh+w2l/Ah8FAABgii6MGwQAgGmoqqOIaN0ivlkSYGDPIuI0M1cKzVwstUNEe4A41WoKAADgp4zKAACACamq84hYGQkOjGC3hyJcLmcWFhuIiH+1mrqYwEcBAACYitd9sxUAAJiQFlquqnZA+c66AAPbiojPmal7JBtv0YGIbt/sLQAAgH/6UlUflAIAAKarqtoB5XNnG8AI3mTmSWZuKzabavGBiKq6jIjDCXwUAACAh9TmER9YAQAAmL6qOomIPV2wgRE8i4jzzFwpNpto8YGI+PPB4SgijifwUQAAAB7KfmvBq/oAALAZ+qi7For4YsmAgT2KiNPMdJGCjSMQ8S+HkpQAAMBCve6bqQAAwAZpoeaqaqPBX1s3YGBbEfEpM43aZKMIRHT9JtSBmVsAAMDCfKkqmxkAALDB+jP9U2ccwAheZWbbYjxgAAAgAElEQVTrFrGt2GwCgYhr+o2ow8l8IAAAgGF968FwAABgw1XVaUSsdMMGRvAkIs4zc6XYTJ1AxF9U1VFEfJzUhwIAABjGfu+WBwAAzEBVXUbEXkQcW09gYI8ionWKcNGCSROI+ImqOpSgBAAAZu5l75IHAADMSAs9V1U7oHxtXYGBbUXEp8w8UmimSiDi1/bM2gIAAGbquHfHAwAAZqqqPkTEY2cdwAheZGYbobGt2EyNQMQv9Lax+5P8cAAAAHfXuuEdqh8AAMxf7wq3oys2MILdiLjMzJViMyUCEb9RVadaSgEAADPSbobt9wA4AACwAH2ERjugPLbewMDaCI2vmXmg0EyFQMTf6C2lPCQAAABz0MIQl1YSAACWp6raAeVLSw+M4FNmHhmhwRQIRNzMoXZSAADAhnvdu+ABAAALVVVHEfG4d48DGNKLiDjNzB1V5iEJRNxAbye77wEBAADYUMe9+x0AALBwVXUeEe2A8mzptQAGtxsR55m5p9Q8FIGIG+ptZf1lBQAANs1F73oHAADwT+0iaFW1M4+PKgIMbCsi/shMexM8CIGIW+ipSfO1AACATdG63O31rncAAAD/pqoO+7mHDtnA0N5n5lFmbqs0YxKIuKU+X+t4oz40AACwRMIQAADA3+rnHq1bxDfVAgb2IiJOM3Ol0IxFIOIOqurAbC0AAGDiDnuXOwAAgN/q7w4rZx/ACHZ7KGJfsRmDQMTd7fdZvAAAAFPzrt/yAgAAuJHWXa6qWqeIdyoGDGwrIj5n5luFZmgCEXfU287um6sFAABMzHFV2VAAAADupL9PPHf+AYzgTWaeZOa2YjMUgYh7qKrLPlfLQwEAADAFF33EHwAAwJ1V1Uk//9ApGxjasz5CY6XSDEEg4p76XK3Djf5DAAAAc3DRNywBAADurZ9/tHeML6oJDGy3hyL2FZp1E4hYgz6b9/XG/0EAAIBN1brWHfTRfgAAAGvR3jGqqh1QvlNRYGBbEfE5Mz8oNOskELEmVdX+ch7P4g8DAABskhaG2Ou3twAAANauqt5GxFMjxIERvMrM1i1iW7FZB4GINeqzeoUiAACAMR0KQwAAAEOrqtOIWPVxfQBDehIR55m5UmXuSyBi/Q49DAAAACN52Uf4AQAADK6qLluHOpdDgRE8iojWKeJAsbkPgYg16zN794QiAACAgb0ThgAAAMbWzkF6x+zXig8MbCsiPmXmB4XmrgQiBnAtFGGWFgAAMITjPsMXAADgQVRVO6B86iwEGMGrzGwjNLYVm9sSiBiIUAQAADCQ434bCwAA4EFV1WlErHTNBkawGxGXmblSbG5DIGJAVXUuFAEAAKzRhTAEAAAwJVV1WVXtgPLYwgADayM0vmamvRFuTCBiYD0UsT/rPyQAADCGix64BgAAmJwe3n5pZYARfMrMI4XmJgQiRtBbRnkIAAAA7uqfYYg+mg8AAGCSqqodUD7WORsYwYvMPM/MHcXmdwQiRtIfAoQiAACA2xKGAAAANkbvnL3T32UAhrQbES0UoaMmvyQQMSKhCAAA4JbaraoDYQgAAGCTtHeYqlpFxEcLBwxsKyL+yMxDheZnBCJGJhQBAADc0I/eGeJcwQAAgE1UVYf9TMQIDWBo7zPzKDO3VZrrBCIeQA9FSEUCAAC/IgwBAADMQj8Tae3sv1lRYGAvIuI0M3cUmisCEQ+kpyKPF/mHBwAAfkcYAgAAmJX+ftNGaJxZWWBguxFxnpl7Ck0IRDysqjoQigAAAK4RhgAAAGapqr5X1Z4O2sAItiLij8x8q9gIRDwwoQgAAKAThgAAAGavd9B+3t+BAIb0JjNPMnNblZdLIGIChCIAAGDxhCEAAIDFqKqT9g4UERdWHRjYs4g4zcyVQi+TQMRECEUAAMBiCUMAAACL09+BWijii9UHBrbbQxH7Cr08AhETIhQBAACLIwwBAAAsVlV9r6p2QPnOdwEwsK2I+JyZbxV6WQQiJkYoAgAAFkMYAgAA4M+zkXZA+by/JwEM6U1mtm4R26q8DAIRE9RDEdKQAAAwX8IQAAAA11TVSR+hcaEuwMCeRMR5Zq4Uev4EIiaqpyFfLr0OAAAwQ8IQAAAAP9Hfk/Z00gZG8CgiWqeIA8WeN4GICauqI6EIAACYlW/CEAAAAL9WVd97J+3XygQMbCsiPmXmB4WeL4GIiROKAACA2WhtX1fCEAAAAH+vqtoB5dPeZQ9gSK8ys3WL2Fbl+RGI2ABCEQAAsPEuemeI75YSAADgZqrqtAXL+zsVwJCeRMRlZq5UeV4EIjZED0U8loQEAICNIwwBAABwR1V12d6pIuJYDYGBtREaXzPzQKHnQyBig/TWuntCEQAAsDGOhSEAAADup71TVdWBbtrASD5l5pFiz4NAxIa5For4tvRaAADAxB23DTthCAAAgPXQTRsY0YvMPM/MbUXfbAIRG6iHIszMAgCA6frYby8BAACwRv2MZMcZCTCC3Yi4zMyVYm8ugYgN1W+Z7fmBDwAAk/Oyqg4tCwAAwDD6CI1VH1MIMKStiPiamfZ6NpRAxAbzAx8AACblRw9DmDEJAAAwgt6Z76URGsAI3mfmkREam0cgYgb6D3yhCAAAeDht821PGAIAAGBc/T2sddT+pvTAwF5ExGlm7ij05hCImIlrKUgAAGBcFz0Mca7uAAAA4+vvY62j9pnyAwPbjYjzzNxT6M0gEDEjPQX5XGsoAAAYjTAEAADABPQx4+2A8qP1AAa2FRF/ZOahQk+fQMTMVNVJbw0lFAEAAMM67mGI7+oMAAAwDVV12DtqOycBhvY+M08yc1ulp0sgYob67bSdflsNAABYv3dtbJ0wBAAAwPT0jtrt8ug3ywMM7FlEnGbmSqGnSSBipvrGbPth/2XptQAAgDV7WVVvFRUAAGC6+uXRlXMSYAS7PRSxr9jTIxAxY31e1r55WQAAsBat3erjftMIAACAibt2TvLOWgED24qIz5npEs3ECEQsgHlZAABwb20c3arfMAIAAGCD9C5/z52TACN4k5knmbmt2NMgELEQ1+Zl+WEPAAC3c9yepavqUt0AAAA2U1Wd9HOSC0sIDOxZRJxn5kqhH55AxIL022w7ftgDAMCNvauqg9ZmVckAAAA2Wz8naaGIL5YSGNijiDjNzAOFflgCEQvT52Wt+i03AADg51pntee9rSoAAAAz0c9J9iPitTUFBrYVEZ8y84NCPxyBiIVqt9wi4uXS6wAAAD9x0UdknCgOAADAPFVVO6B8atQ4MIJXmdm6RWwr9vgEIhasqo4i4rEf9gAA8H+OexjiXEkAAADmrapOI2Jl1DgwgicRcZ6ZK8Uel0DEwvWN3p2IOFt6LQAAWLzXrZNaa5+69EIAAAAsRVVdtmC8UePACB5FROsUcaDY4xGI4GpeVvth/041AABYoNYx7XFvlwoAAMDC9HOSdkD52toDA9uKiE+ZeaTQ4xCI4P9U1duIeG6EBgAAC9I6pe0YkQEAAEAPyhs1DozhRWa2ERrbqj0sgQj+TVWdmJcFAMBCvGud0ozIAAAA4Mq1UePOSYCh7UbEZWauVHo4AhH8hzYvq6raX7yPqgMAwAy1mz5Pe4c0AAAA+Dd9hEY7JzlWGWBgbYTG18w8UOhhCETwS1V1aIQGAAAzczUi49TCAgAA8DtV1Q4oXyoSMIJPmXlkhMb6CUTwW9dGaJypFAAAG86IDAAAAG6lqo4i4rHLo8AIXkTEaWbuKPb6CETwt/oIjb22gaxaAABsoG9t88qIDAAAAO6iqs5bt0GXR4ER7EbEeWbuKfZ6CERwY30D+WnfUAYAgE3wpXU865tXAAAAcCet22C/PPpRBYGBbUXEH5l5qND3JxDBrfRZy6u+sQwAAFPVWpm+rKp9IzIAAABYl6pqB5QvjdAARvA+M48yc1ux704gglvrKcj9iHjuBz4AABN01rtCHFkcAAAA1q2/b+7pqA2M4EVEnGbmjmLfjUAEd1ZVJ71bhJlZAABMxbvWwrSqLq0IAAAAQ+mjGZ2RAGPYjYjzzNxX7dsTiOBe2kZzn5n1WrcIAAAe0EVEPK6qtxYBAACAMfSO2u2M5J2CAwPbiojPmWnv65YEIliLqvrQk5AXKgoAwMhaV4hVv50DAAAAo+rhfGPGgTG8ycyTzNxW7ZsRiGBtereIlSQkAAAj0RUCAACASehjxvdcHAVG8CwiTjNzpdh/TyCCtesb0o/90AcAYEC6QgAAADAp/R21hSK+WBlgYLs9FLGv0L8nEMEg2g/93i3itRZRAACska4QAAAATFZVfa+qfd20gRFsRcTnzPyg2L8mEMGgqqr9BWzBiDOVBgDgnnSFAAAAYCP0IP9Tl0aBEbzKzNYtYlux/5NABIOrqsuq2tMtAgCAOzrTFQIAAIBNU1Wn/dKoEePA0J5ExHlmrlT63wlEMJreLWLH7CwAAG6ohWlft3CtrhAAAABsonZpNCLapdFjCwgM7FFEtE4RBwr9LwIRjOra7KznEfFN9QEA+IUWol31UC0AAABsrH42ctA7aQMMaSsiPmWmPbVOIIIHUVUnvU3UOysAAMA1LTT7vIVo+y0aAAAAmIUe+n9qvDgwgleZ2UZobC+92AIRPJieiGxzoB/3udAAACzbu94V4mTphQAAAGCequq0Xxi9sMTAwHYj4jIzV0sutEAED67Ng25zoSPipVQkAMAitXDsP1pYtoVmfQsAAAAwZ60jYlW1A8pjCw0MrI3Q+JqZB0sttEAEk1FVRxGxExEfrQoAwCJcjcfYMx4DAACApamqg35ZFGBonzLzaIlVFohgUvoYjUNjNAAAZs94DAAAABavXxZ9rIM2MIIXmXmemdtLKrZABJN0bYzG835zEACAefhiPAYAAAD8SzsT6R20L5QFGNhuRFxm5t5SCi0QwaS1G4NVtdNvEEpHAgBsrrap87Sq9o3HAAAAgH/XO2ivjBUHRrAVEX9k5uESii0QwUZoNwh7OvLYigEAbJQWan3ZNnWq6tTSAQAAwK/1seIvXRIFRvA+M4/mPkJDIIKN0dORB32W1pmVAwCYtB+9y9dOn4cKAAAA3EB/j94zUhwYwYuIOM3MnbkWWyCCjdNmaVVVexB4ap4WAMAkHfcgxNsWarVEAAAAcDvtLCQiVi6IAiPYjYjzzNybY7EFIthYreVyn6f1UkoSAGASvkTEP1pXL0EIAAAAuJ/eObsdUH5USmBgWxHxR2a+nVuhBSLYeK11VFW1Ni6vzdQCAHgQ7bbK06rar6pLSwAAAADrU1WH/XKoMxBgaG8y8yQzt+dSaYEIZqOqPrTWzH1WtYcCAIDhXQUh9lr3LvUGAACAYbTLoRGxZ5Q4MIJnEXGamas5FFsgglnp7aPeCkYAAAyqjSt7LggBAAAA46mq8x6K+KLswMB2eyhif9MLLRDBLAlGAAAMogUhXrZxZVV1osQAAAAwrn7+sd/PPgCGtBURnzPz7SZXWSCCWROMAABYi+tBiCMlBQAAgIfVzz6eO/cARvAmM1u3iO1NLLZABIsgGAEAcCeCEAAAADBRvXtjG6FxYY2AgT2JiPPMXG1aoQUiWBTBCACAGzlrt0wEIQAAAGDaquq8hyKOLRUwsEcR0TpFHGxSoQUiWKSfBCO++U4AAPhnEOJpVe31WyYAAADAxPUzj3ZA+dpaAQPbiohPmflhUwotEMGiXQUj2u3H1g5aMAIAWKjja0GIU98EAAAAsHmqqh1QPtUdGxjBq8xs3SK2p15sgQjoWjvoa8GIM3UBABagBSH+0W6RCEIAAADA5uvv923G/4XlBAb2JCLOM3M15UILRMBf9GDEXk9RmrkFAMzNjz4y7P/1IMSlFQYAAID56O/6e844gBE8ioivmXkw1WILRMAvtBRln7n1j4j4qMUUALDh2miwl1W13UeGfbegAAAAME99ZPhB74oNMLRPmXk0xSoLRMDfaEnKqjqMiDZO43U/TAAA2BRfWuerNhqsdcKyagAAALAcfS/gsUufwAheZGYbobE9pWILRMAN9TTlh3aYEBHP++ECAMAU/egdrv5RVft9figAAACwQFV13i99Xlh/YGC7EXGZmaupFFogAu6gqk7a4YJxGgDAxFxcG4tx2GeGAgAAAAvXL322A8rjpdcCGNxWRHzNzMMplFogAu7hapxGO3Toc7jO1BMAGNmPvpnxuG1sGIsBAAAA/EpVHfTzDIChvc/Mo4ceoSEQAWvSDh+qak/XCABgJBd9A2OnbWb09pcAAAAAv9UvUzyOiG8qBQzsRUScZubOQxVaIALW7CddI76oMQCwJj968PL/ukG0lpeKCwAAANxGv1ix0vkaGMFuRJxn5t5DFFsgAgbUDyn2e9eI19KWAMAdtYDl8xa47MFL3SAAAACAe2mXLHrn648qCQxsKyL+yMzDsQstEAEj6F0jPlTVTm9DdWykBgDwNy56oPL/tYBlVZ0oGAAAALBu7fJF73jt3AIY2vvMPMnM7bEqLRABI2s3Ovuc7/YX/XkPRwAARO8m1W5l/KOPxPhgJAYAAAAwtNbxOiL2dLoGRvAsIk4zczXGFxOIgAfUbnq2cES7+dnTl1+sBwAszlUI4nHrJtVHYlz6NgAAAADG1Ed0rpxVACPY7aGI/aG/lEAETECf03XU2mELRwDAIvzoXaKeXwtBnFt6AAAA4CH184p2VvHOQgAD24qIz5n5dsgvk1VlIWGi+vyc/f7rmXUCgI3WOkGctORz6xJlKQFYt8y0yQPjeVdVg27cAsBD6ze3j/qhJcCQ2kXxgyHGBwtEwIa4Fo7Y6797AAGA6bsKQRzpAAHA0AQiYFQCEQAsQp/xf9Tb2wMM6aKHIta6jyoQARuqJzOvwhGPrCMATMZF3yg4qapLywLAWAQiYFQCEQAsRr+weaSTNTCCNmq4jRc+WteXEoiAGegJzRaOOJDSBIDR/bgahdFDEGtv6wYANyEQAaMSiABgcTLzMCLeW3lgBB+r6nAdX0YgAmbmL6M19nSPAIBBXPQQxIlRGABMhUAEjEogAoBFysy9vidirDcwtLN25nnfC2gCETBz17pH7GlnBQB39u2qA0T7XRcIAKZIIAJGJRABwGJl5k7fI9GxGhjatx6KuPOlNIEIWJie3rz69cT6A8BPXQUgTnsA4lKZAJg6gQgYlUAEAIvWu1V/iIgXS68FMLg2sviwqo7u8oUEImDhBCQA4J8EIADYeAIRMCqBCAD48xm0zfh/rxbACI6r6uC2X0YgAvg3PSBxNWaj/f5IhQCYoYsefjgXgABgLgQiYFQCEQDQ9XOFNkJjS02AgbV93b3bjDQWiAB+q88Cux6Q0EUCgE3z4y/hh1MrCMAcCUTAqAQiAOCaPkKj7bnsqgswsB89FHF+ky8jEAHcWmauejhiJSQBwMT8uAo+9N/PdX8AYCkEImBUAhEA8BOZ2Wb8v1AbYAQvq+ro777Mf1sJ4LZ64urfUlc/CUmstMcCYGCtPdrltQDEpfADAAAAwMNp8/0zs+3TfLIMwMA+9ZE9h78boaFDBDCY3iLrekBiR1ACgDv41oMPp/33S2MvAOA/6RABo9IhAgB+o1+iPHUeAIygXZzb/9VlOYEIYHR/CUq0/97rv5stBrBcV6MuLq91fbi86Rw4AEAgAkYmEAEAf6OfBZwYuw2M4EcPRfzHRTqBCGBSMnOnd5L42a9HVgtgo531D396/XfdHgBgPQQiYFQCEQBwQ5n5ISJeqRcwgtdV9eH6l/lvVQempLez+eX892vdJaJ3lohrwYkwkgPgQbSWZFcz2q7CDVf/nn/X5QEAAABguarqMDPb/tAH+/fAwN73kT2HVfXPPWsdIoDZ6v/gbfc/3/XQxM/+7xCmABbueqjhyvlf/rfrnRzOrx4oAYBp0CECRqVDBADcUt+zP9ENGhjBRR+hcSkQAXAD10Z5AGwsoykAYN4yc88Sw2gue5dLAOAW/tIFGmBIlwIRAAAAAAAAAMAs/ZdlBQAAAAAAAADmRiACAAAAAAAAAJgdgQgAAAAAAAAAYHYEIgAAAAAAAACA2RGIAAAAAAAAAABmRyACAAAAAAAAAJgdgQgAAAAAAAAAYHYEIgAAAAAAAACA2RGIAAAAAAAAAABmRyACAAAAAAAAAJgdgQgAAAAAAAAAYHYEIgAAAAAAAACA2RGIAAAAAAAAAABmRyACAAAAAAAAAJgdgQgAAAAAAAAAYHYEIgAAAAAAAACA2RGIAAAAAAAAAABmRyACAAAAAAAAAJgdgQgAAAAAAAAAYHYEIgAAAAAAAACA2RGIAAAAAAAAAABmRyACAAAAAAAAAJgdgQgAAAAAAAAAYHYEIgAAAAAAAACA2RGIAAAAAAAAAABmRyACAAAAAAAAAJgdgQgAAAAAAAAAYHYEIgAAAAAAAACA2RGIAAAAAAAAAABmRyACAAAAAAAAAJgdgQgAAAAAAAAAYHYEIgAAAAAAAACA2RGIAAAAAAAAAABmRyACAAAAAAAAAJgdgQgAAAAAAAAAYHYEIgAAAAAAAACA2RGIAAAAAAAAAABmRyACAAAAAAAAAJgdgQgAAAAAAAAAYHYEIgAAAAAAAACA2RGIAAAAAAAAAABmRyACAAAAAAAAAJgdgQgAAAAAAAAAYHYEIgAAAAAAAACA2RGIAAAAAAAAAABmRyACAAAAAAAAAJgdgQgAAAAAAAAAYHYEIgAAAAAAAACA2RGIAAAAAAAAAABmRyACAAAAAAAAAJgdgQgAAAAAAAAAYHYEIgAAAAAAAACA2RGIAAAAAAAAAABmRyACAAAAAAAAAJgdgQgAAAAAAAAAYHYEIgAAAAAAAACA2RGIAAAAAAAAAABmRyACAAAAAAAAAJgdgQgAAAAAAAAAYHYEIgAAAAAAAACA2RGIAAAAAAAAAABmRyACAAAAAAAAAJgdgQgAAAAAAAAAYHYEIgAAAAAAAACA2RGIAAAAAAAAAABmRyACAAAAAAAAAJgdgQgAgP/P3t0f1ZVjewPWujX/4wzgRgATATgCcyMwE4F5IzCOwHQExhEYR2AcQeMIGkcwdgR6S26dmdM0H+fA+ZC0n6eK6p6eGbORaGxp/9ZaAAAAAADAcAQiAAAAAAAAAIDhCEQAAAAAAAAAAMMRiAAAAAAAAAAAhiMQAQAAAAAAAAAMRyACAAAAAAAAABiOQAQAAAAAAAAAMByBCAAAAAAAAABgOAIRAAAAAAAAAMBwBCIAAAAAAAAAgOEIRAAAAAAAAAAAwxGIAAAAAAAAAACGIxABAAAAAAAAAAxHIAIAAAAAAAAAGI5ABAAAAAAAAAAwHIEIAAAAAAAAAGA4AhEAAAAAAAAAwHAEIgAAAAAAAACA4QhEAAAAAAAAAADDEYgAAAAAAAAAAIYjEAEAAAAAAAAADEcgAgAAAAAAAAAYjkAEAAAAAAAAADAcgQgAAAAAAAAAYDgCEQAAAAAAAADAcAQiAAAAAAAAAIDhCEQAAAAAAAAAAMMRiAAAAAAAAAAAhiMQAQAAAAAAAAAMRyACAAAAAAAAABiOQAQAAAAAAAAAMByBCAAAAAAAAABgOAIRAAAAAAAAAMBwBCIAAAAAAAAAgOEIRAAAAAAAAAAAwxGIAAAAAAAAAACGIxABAAAAAAAAAAxHIAIAAAAAAAAAGI5ABAAAAAAAAAAwHIEIAAAAAAAAAGA4AhEAAAAAAAAAwHAEIgAAAAAAAACA4QhEAAAAAAAAAADDEYgAAAAAAAAAAIYjEAEAAAAAAAAADEcgAgAAAAAAAAAYjkAEAAAAAAAAADAcgQgAAAAAAAAAYDgCEQAAAAAAAADAcAQiAAAAAAAAAIDhCEQAAAAAAAAAAMMRiAAAAAAAAAAAhiMQAQAAAAAAAAAMRyACAAAAAAAAABiOQAQAAAAAAAAAMByBCAAAAAAAAABgOAIRAAAAAAAAAMBwBCIAAAAAAAAAgOEIRAAAAAAAAAAAwxGIAAAAAAAAAACGIxABAAAAAAAAAAxHIAIAAAAAAAAAGI5ABAAAAAAAAAAwHIEIAAAAAAAAAGA4AhEAAAAAAAAAwHAEIgAAAAAAAACA4QhEAAAAAAAAAADDEYgAAAAAAAAAAIYjEAEAAAAAAAAADEcgAgAAAAAAAAAYjkAEAAAAAAAAADAcgQgAAAAAAAAAYDgCEQAAAAAAAADAcAQiAAAAAAAAAIDhCEQAAAAAAAAAAMMRiAAAAAAAAAAAhiMQAQAAAAAAAAAMRyACAAAAAAAAABiOQAQAAAAAAAAAMByBCAAAAAAAAABgOAIRAAAAAAAAAMBwBCIAAAAAAAAAgOEIRAAAAAAAAAAAwxGIAAAAAAAAAACGIxABAAAAAAAAAAxHIAIAAAAAAAAAGI5ABAAAAAAAAAAwHIEIAAAAAAAAAGA4AhEAAAAAAAAAwHAEIgAAAAAAAACA4QhEAAAAAAAAAADDEYgAAAAAAAAAAIYjEAEAAAAAAAAADEcgAgAAAAAAAAAYjkAEAAAAAAAAADAcgQgAAAAAAAAAYDgCEQAAAAAAAADAcAQiAAAAAAAAAIDhCEQAAAAAAAAAAMMRiAAAAAAAAAAAhiMQAQAAAAAAAAAMRyACAAAAAAAAABiOQAQAAAAAAAAAMByBCAAAAAAAAABgOAIRAAAAAAAAAMBwBCIAAAAAAAAAgOEIRAAAAAAAAAAAwxGIAAAAAAAAAACG8w9bCowqIg5SSi/mvrzb/7k4euTLP/QNAgAwKS9zzle2HADaFBF7KaW9uYe7/Z/v+2e3//tdWwx06HtK6eaBx75OKf145J9d55xv/28AhiUQAXQlImYBhvmD7XyoQYABAAAAoCP33PfMF7aUv9+xpwC/wlwPBboWuh+PiNnfzgcsbub+fhai+JFzvrbsQM8EIoBmzCX8b3+Uw+++nQIAAADoy1wHz9lf5+99dGkA2K75gMWdYYq58MS3GpK4uf2Rc36oawXAVglEABs1F3qYHYKPBKxtvPIAACAASURBVB4AAAAA+lVDD7P7HoEHgDHN7vD/FpyooYlZt4lZd4krHSaAFkTO2UYAKzcXfDiaOwQbZwEAQOte5pyv7BIA/F0dbXH7zkfoAYDHfJsLS8y6Sjh3ARshEAE8Wz0Mz1cCCD4AANArgQgAJq92fDgQfABgzeaDEr8+jN8AVk0gAljKXPhh9mHUBQAAIxGIAGBSFLoA0Jif8wGJGpIwdgN4MoEI4F5z1QAHtRpA+AEAgNEJRAAwrFt3PcIPAPTka0rpSicJYFn/sGLATK0IOJoLQOxYHAAAAIA+zd31zO573PUA0KvD+SBfRHyv4YirGpAQbAfupEMETNitQ7GKAAAA0CECgE5FxIu5ex6dPgGYolkXiSvnOmBGIAImRAACAAAeJRABQBcEIADgUQISgEAEjCwi9lJKx3MHY20RAQDgYQIRADQrIo4FIADgyWYBicuc87VlhGkQiICBzFUGzA7Hu/YXAACWIhABQDMi4mDurke3TwBYnZ+zcETtIHFjbWFMAhHQuVtdIF7ZTwAAeBaBCAC2RrELAGzNt7nuEc6EMBCBCOhQrQ440R4RAABWTiACgI1S7AIAzZnvHlECEj9sEfRLIAI6MTcj8lh1AAAArI1ABABrp9gFALrydS4cYbQGdEYgAhpWQxCzjx17BQAAaycQAcBazIUgFLsAQL/KaI2L0kEi53xtH6F9AhHQGCEIAADYKoEIAFZGCAIAhva9do64EI6AdglEQAMcjgEAoBkCEQA8i3seAJik77VzxIWxGtAWgQjYkojYq4fjE4djAABohkAEAEsTggAA5szGalwKR8D2CUTABkXEi3owLgfkQ2sPAADNEYgAYCG12GV2z7Nv1QCAO3yuYzVKOOKHBYLNE4iADYiIo7kqgR1rDgAAzRKIAOBBETG743llpQCABf2cC0ZcWjTYHIEIWJO5KoFTrRIBAKAbAhEA/E0diXGq2AUAWIHvdaTGhZEasH4CEbBiETFrlahKAAAA+iMQAcAvdfTpiZEYAMAafa3BiAuLDOshEAErMHdA1g0CAAD6JhABMHFzo09fT30tAICN+Vm7RpzrGgGrJRABzzDXLtEBGQAAxiAQATBBil0AgIboGgErJBABTxARswOydokAADAWgQiACZkrdikjUHfsPQDQkNI14ryGI3SNgCcSiIAF1UqB01otoFIAAADGJBABMAG12KV8HNpvAKADH2swwnkVliQQAY+IiL2U0pmxGAAAMAkCEQCDUuwCAAzgW+kaYZwGLE4gAu4REUf1kPzKGgEAwGQIRAAMZq7YxVgMAGAU30vHiBqO+GFX4X4CEXCLlokAADBpAhEAg1DsAgBMwM+U0mUJf+acb2w4/N3/WBP4UwlCRET5zeKDMAQAAABAnyLiOCJKuO2LMAQAMLidOvL9j4i4qIFQYI5ABJN3KwhhfiQAAABAh+bueD4pdgEAJqgEI76UYKhgBPyXQASTFBEvIuIsIn4IQgAAAAD0S7ELAMBfHM4FI04sDVMXOeeprwETUoIQdXbkaW0jBAAAMO9lzvnKigC0zR0PAMDCvqeUznLOF5aMKRKIYBIckgEAgAUJRAA0zB0PAMCTCUYwSUZmMLzaDug6pfTWQRkAAACgP7PxpymlG3c8AABPUkaLfSijxozSYEoEIhiW+ZEAAAAAfROEAABYOcEIJkUgguFExLEgBAAAAEDfdP0EAFir+WDEkaVmVAIRDKP8sI6IMuv3kyAEAAAAQJ90/QQA2Kjy560v5R2bYAQjEoigexGxV4MQX1JKh3YUAAAAoD+12EUQAgBgOw7nghEH9oBRCETQrTpD8iKl9IcgBAAAAECf5rp+fhGEAADYuvLO7ffyDq4UJdsOeicQQZci4iylVCoGXttBAAAAgP7Urp+Xun4CADSpvIP7o7yTK0XKtoheCUTQlYg4rq0T36aUduweAAAAQF9q18/z2vXzle0DAGhaeSd3ExGntokeCUTQhTKrqLZO/KR1IgAAAECf6kV6KXZ5YwsBALpRipTfl6LlUrxs2+iJQARNm6sY+F3rRAAAAIA+RcRR7fr5XtdPAIBulaLlT6WIuRQz20Z6IBBBsyLiRMUAAAAAQL8iYq92/fyi6ycAwDBKEfPvpai5FDfbVlomEEFz5sZjfFAxAAAAANCf2vXzLKX0h66fAADDKkXNN3UsGjRJIIJmGI8BAAAA0L86V/o6pfTWdgIADK8UN7+PiOsyJs120xqBCJpQD8rGYwAAAAB0am48xifjMQAAJme/jEmLiAtjNGiJQARbdeugbDwGAAAAQGeMxwAAYM7rOkbjxKLQAoEItqYelK8dlAEAAAD6VNsiG48BAMC8UgT9oRRFR8SBlWGbBCLYuPKDr8wRqgdlXSEAAAAAOlO7QlyWtsjGYwAAcI9SFP17LZKGrRCIYKPqD7zf6xwhAAAAADpT2x/fpJRe2TsAABbwNiJuancx2CiBCDai/ICb6woBAAAAQGciYq+0PS7tj3X9BABgSaWr2JeIOC/dxiwemyIQwVrV9onntX2irhAAAAAAHYqI05TSdW17DAAAT/WmdBuLiGMryCYIRLA2EXGQUrqqP9gAAAAA6Ey536ldId7rCgEAwIqUP1d+iohL3SJYN4EI1iIizlJKv+sKAQAAANCnufsdXSEAAFiHV7pFsG4CEaxUrRoo7RPfWlkAAACA/kTEXu0K4X4HAIB10y2CtRKIYGXqLEldIQAAAAA6Ve93rnWFAABgw2bdIo4sPKskEMGzzVUNvLeaAAAAAP25db+zYwsBANiC8ufQLxFxrlsEqyIQwbPUmT6qBgAAAAA65X4HAIDGvCl/Pi2j+m0MzyUQwZOUVFZEXJSZPqoGAAAAAPpT73cu3e8AANCg3TKqPyLObA7PIRDB0moaq7RQfG31AAAAAPpTZzNf11nNAADQqrcRUbpF7NkhnkIggqVExGlJY6WU9q0cAAAAQH9qld2XWnUHAACt268jNE7sFMsSiGAhcy0U31sxAAAAgP6UqrpSXVeq7GwfAACdKSPePpSR/uW9pc1jUQIRPKqOyNBCEQAAAKBTEXFc73d0/QQAoGeva7eIA7vIIgQieNDciAwtFAEAAAA6FBHnKaVPtaoOAAB6V95b/l7fY8KDBCK4Ux2RcWFEBgAAAECf5kZkvLGFAAAM6H0Z+W+EBg8RiOBvaouZq9pyBgAAAIDOGJEBAMBEvDJCg4cIRPAXEXFSwxAOywAAAAAdMiIDAICJmY3QOLHx3CYQwX/Uw/IHh2UAAACA/tQRqEZkAAAwVR8i4sIIDeYJRDA7LF85LAMAAAD0KSKOUko3un4CADBxr0s3/IjYm/pC8CeBiImr83RK5cDh1NcCAAAAoEcRcZpS+qLrJwAA/FJCwtcRcWw5EIiYsDpH56rO1QEAAACgI7Xr50VK6b19AwCAvyhh4U8RcWZZpk0gYqLqv/wfVA4AAAAA9Ke2AL6qLYEBAIC7vY2IyxImtj7TJBAxMbVy4LL8yz/1tQAAAADoUUQc1RGo+zYQAAAe9aqEiWuomIkRiJiQucqBV1NfCwAAAIAe1RGoX3T9BACApZQw8XUNFzMhAhETEREHKgcAAAAA+hURF3UEKgAAsLwSKv5SQ8ZMhEDEBNR/qa9UDgAAAAD0p45ALXc7r20fAAA824caNmYCBCIGFxGntXJAGAIAAACgM7XrZwlDHNo7AABYmdcldFzCx5Z0bAIRA6vJpvdTXwcAAACAHs2FIYxABQCA1Suh4xKK2LO24xKIGJA2igAAAAB9qyNQf9f1EwAA1qqEj69rGJkBCUQMprZ10UYRAAAAoFMRcVZHoAIAAOu3UztFnFjr8fxj6gswkppcukwp7U59LQAAAAB6VEeg6voJAACbVUIRHyIi5ZwvrP04dIgYxNxMSWEIAAAAgM4YgQoAAE34UEPKDEIgYgARcVzDEGZKAgAAAHTGCFQAAGjKa6GIcQhEdK7OsvkkDAEAAADQn9r18zqltG/7AACgGSUUcV3Dy3RMIKJjNQzxYerrAAAAANAjI1ABAKBpJbR8JRTRN4GITkXEuTAEAAAAQJ8i4sgIVAAAaF4JRVzXMDMdEojoUJ1Z82bq6wAAAADQo9r184swBAAAdGG3dooQiuiQQERnahji9dTXAQAAAKBHRqACAECXdoQi+iQQ0RFhCAAAAIB+CUMAAEDXZqGIY9vYD4GIDkTEC2EIAAAAgH7Vux1hCAAA6FsJRXyqYWc68A+b1LYShihJo5TS/tTXAgAAAKBHCl0AAGA4HyIi5ZwvbG3bdIhomDAEAAAAQN+EIQAAYFgfdIpon0BEo4QhAAAAAPomDAEAAMMTimicQESDhCEAAAAA+iYMAQAAkyEU0TCBiMYIQwAAAAD0TRgCAAAmRyiiUQIRDRGGAAAAAOibMAQAAEyWUESDBCIaIQwBAAAA0DdhCAAAmDyhiMYIRDRAGAIAAACgb8IQAABAJRTREIGINlwKQwAAAAD0SRgCAAC4RSiiEQIRW1YPzIeTXgQAAACATglDAAAA9xCKaIBAxBY5MAMAAAD0y90OAADwCKGILROI2BIHZgAAAIB+udsBAAAWJBSxRQIRW+DADAAAANCviDh3twMAACxBKGJLBCI2rH6jOzADAAAAdKje7byxdwAAwJJKKOLIom2WQMQG1QPzh8l8wQAAAAADcbcDAAA802VEHFjEzRGI2BAHZgAAAIB+udsBAABWYCeldCUUsTkCERtQv6EdmAEAAAA6VNvautsBAABWQShigwQi1qx+I18N/UUCAAAADKre7VzaXwAAYIVKKOIiIl5Y1PUSiFij+g18Vb+hAQAAAOjIXKGLux0AAGDV9munCKGINRKIWBNhCAAAAIB+1budS3c7AADAGu3rSLdeAhHrc1W/gQEAAADoyFyhy659AwAA1uwwIi4s8noIRKxB/YYVhgAAAADo06W7HQAAYINeR8S5BV89gYgVi4iz8g071BcFAAAAMBG10OXQfgMAABv2JiJOLPpqCUSsUP0GfTvMFwQAAAAwIQpdAACALfsQEcc2YXUEIlYkIg7KN+gQXwwAAADAxCh0AQAAGnFR3z2zAgIRK1C/Ia+6/0IAAAAAJkihCwAA0JCd8u45Il7YlOcTiHim+o14Ub8xAQAAAOiIQhcAAKBBQhErIhDxfJcppf3evwgAAACAqVHoAgAANGy/nld4BoGIZ4iI8g142O0XAAAAADBtCl0AAICWvYqIczv0dAIRTxQRJyml110+PAAAAMDEKXQBAAA68aa+m+YJBCKeoM6W/NDdgwMAAACg0AUAAOjNh/qOmiUJRCypzpa86uqhAQAAAPhFoQsAANCpq/qumiUIRCyvhCF2entoAAAAgKmLiD2FLgAAQKd2nGeWJxCxhDpbcr+bBwYAAADgl1pJdanQBQAA6Nh+fWfNggQiFmS2JAAAAEDXzhW6AAAAA3hd312zAIGIBZgtCQAAANCviDhV6AIAAAzkQ32HzSMEIh5R2ymaxQIAAADQoXpJ+N7eAQAAg7mq77J5gEDE48yWBAAAAOiQQhcAAGBgO/VdNg8QiHhARJyllA6bfUAAAAAAHqLQBQAAGNlhRJzb4fsJRNwjIo5SSm+bfDgAAAAAHlQvBRW6AAAAo3sTEcd2+W4CEXeIiD3tRQAAAAD6VC8D39g+AABgIi7qO25uEYi4m3aKAAAAAB2ql4AX9g4AAJiQHQX/dxOIuCUizlJK+009FAAAAACLUugCAABM0X4dHcgcgYg5EXGUUnrbzAMBAAAAsLB6+afQBQAAmKo3dYQglUBEFREvtBEBAAAA6FO99Htj+wAAgIm7qKMEJy8JRPyFdooAAAAAHaqFLhf2DgAA4Nc7b40AKoGIPw/NpymlwwYeBQAAAIDlKXQBAAD4r/06UnDyJh+IiIiDlNL7Bh4FAAAAgCVFxJlCFwAAgL95ExFHU1+WSQcitFMEAAAA6FctdHlrCwEAAO50Wd+JT9bUO0SUCoL9Bp4DAAAAgCXUSz1zcQEAAO63M/UGAZMNRNT2IG8aeBQAAAAAllcKXXatGwAAwINeRcTpVJdokoEIFQQAAAAA/YqIY4UuAAAACzuLiL0pLtdUO0Rc1PYgAAAAAHSkFrpMuuUrAADAknam2jBgcoGIWkHwqoFHAQAAAGB5Cl0AAACWtx8RZ1Nbt0kFIlQQAAAAAPQrIk4UugAAADzZ24g4mNLyTa1DxKUKAgAAAID+1Hm357YOAADgWSbVQGAygYiIOE0pHTbwKAAAAAAsz6gMAACA55vU6IxJBCJqBcHk5qEAAAAAjEChCwAAwEpNZnTGVDpEqCAAAAAA6JBCFwAAgLWYxOiM4QMREXGsggAAAACgWwpdAAAAVm8SozOGDkRExIupJFsAAAAARhMRJwpdAAAA1mb40Rmjd4hQQQAAAADQoVrocm7vAAAA1mroBgPDBiLqqIxXDTwKAAAAAMtT6AIAALB+ZXTG6ajrPGQgQgUBAAAAQL8UugAAAGzUWUTsjbjko3aIOEsp7TbwHAAAAAAsQaELAADAxu2MOjpjuEBERByklN408CgAAAAALE+hCwAAwOYd1m59QxmxQ8SQyRUAAACA0Sl0AQAA2KqL2rVvGEMFIiLiNKW038CjAAAAALA8hS4AAADbs1O79g1jmEBETaoMtTkAAAAAU6HQBQAAoAlvIuJolK0YqUPERU2sAAAAANARhS4AAABNOR9lO4YIRNSEyqsGHgUAAACA5Z0rdAEAAGjGfu3i173IOff/RUTcpJR2G3gUAAAA+vYy53xlD2FzaqHLF0sOAADQlJ8ppb2c84+et6X7DhE1mSIMAQAAANCnYVqxAgAADGRnhPNa14EI8yUBAAAA+lULXfZtIQAAQJNe165+3eq9Q4T5kgAAAAAdUugCAADQha7Pbd0GImoS5XUDjwIAAADA8s4UugAAADTvMCJOet2mnjtEqCAAAAAA6FBEHKSU3tg7AACALpzXLn/d6TIQURMohw08CgAAAADLO7dmAAAA3Sjd/U573K7IOTfwGIuryZPrlNJuL88MAABAN17mnK9sF6xPHYP6xRIDAAB0539zzjc9PXSPHSJOhSEAAAAAunVh6wAAALp01ttDdxWIqN0humzFAQAAADB1EaHQBQAAoF+va9e/bvTWIeK8zicBAAAAoCO10KW7aiIAAAD+oqtzXTeBiIjYK4mTBh4FAAAAgOWdKnQBAADo3mFEHPfyRfTUIeK8gWcAAAAAYEm10MUYVAAAgDF08+6+i0BEnUPyqoFHAQAAAGB5Z7pDAAAADGM3Ik56+GJ66RBhviQAAABAh4xBBQAAGNJZRLxo/QtrPhBRu0McNvAoAAAAACxPoQsAAMB4dnsYjdhDh4iLBp4BAAAAgCXVQhfdIQAAAMZ02nqXiKYDEXXuyG4DjwIAAADA8nSHAAAAGNdO610iWu8Q4dAMAAAA0CFjUAEAACah6S4RzQYidIcAAAAA6JpCFwAAgPE13SWi5Q4RDs0AAAAAHdIdAgAAYFKa7RLRZCBCdwgAAACAril0AQAAmI5mu0S02iHCoRkAAACgQ7pDAAAATFKTXSKaC0ToDgEAAADQNYUuAAAA09Nkl4gWO0Q4NAMAAAB0SHcIAACASWuuS0RTgQjdIQAAAAC6ptAFAABguprrEtFahwiHZgAAAIAO6Q4BAABAa10imglE6A4BAAAA0DWFLgAAADTVJSJyzg08xq9AxI1ABAAAAFv2Mud8ZRNgORFxkFL63bIBAACQUvqZUtrLOf/Y9mI00SFCdwgAAACArjU1IxYAAICtaqZLRCsjM04aeAYAAAAAlhQReyml19YNAACAOU1kALYeiIiIo5TS4bafAwAAAIAnObNsAAAA3LJbJ0VsVeSct/sAEVcCEQAAADTiZc75ymbAYiLiRUrp35YLAACAO3zPOe9tc2G22iEiIg6EIQAAAAC61cRMWAAAAJpUukQcb/PBtj0yw6EZAAAAoEO1O4S7HQAAAB6y1XPj1gIREVFaY7ze1ucHAAAA4FlKlc+OJQQAAOABh3VyxFZss0OECgIAAACAfp3ZOwAAABawtWzAVgIRtaXiyTY+NwAAAADPU2fA7lpGAAAAFvC6TpDYuG11iDjRUhEAAACgWzp/AgAAsIytNEyInPPmP2nEjSoCAAAAGvQy53xlY+B+tarnD0sEAADAEn7mnF9sesE23iFCS0UAAACArp3ZPgAAAJa0ExEb7xKxjZEZWioCAAAAdCgiSjXPsb0DAADgCTaeFdhoIKK2VDzc5OcEAAAAYGVKNc+O5QQAAOAJ9iPiaJMLt+kOEVoqAgAAAPRL508AAACeY6NjMzYWiNBSEQAAAKBftYpn1xYCAADwDK9rdmAjNtkh4lhLRQAAAIBu6Q4BAADAKmysS0TknDfziSJuVBEAAADQuJc55yubBH8VEXsppT8sCwAAACvwPee8t4mF3EiHCC0VAQAAALq20RmvAAAADG23ZgjWblMjMxyaAQAAAPrlbgcAAIBV2sg5c+2BiIh4kVJ6ve7PAwAAAMDqRcSxzp8AAACs2OuaJVirTXSIUEEAAAAA0K9jewcAAMAarD1LEDnn9X6CiBtVBAAAAHTiZc75ymbBn2q1zr8tBwAAAGvwPee8t86FXWuHiIg4EIYAAAAA6JbOnwAAAKzLbs0UrM26R2ac+tYAAAAA6JZABAAAAOu01kzB2gIRtaWiGZMAAAAAHapVOvv2DgAAgDVaa6bgH2t+8J01/voA6/Y9pXRTP8ePlNK1FQcAGN6NLYb/0B0CGNHPW3c81/XeB6BVe/Vj5tBOAYPZiYiTnPPFOr6syDmvZbki4soPZaBxs8DD1XzgIed8ZeMAAICpi4gfil2ADs3ue2ZBh9k9z3XOWfABGEZEzIISpWP7wdxfD/wZDujQ55zzWjpFrCUQUX8I/7HyXxjg6b7Wg3D5uBF6AAAAuF9ElIuoT5YIaNis08PVLACRc9bdE6CKiKMamJiFJBQxA63735zzyjt3rmtkhpaKwDb9rIfhq3oYFn4AAABYzlpnuAI8wbfZXU/56zouywFGcte9eETMwhFH9WPXpgMNKefQ81U/zro6RNz4IQpsWOkAcVkPxKoBAAAAnigiSrvlf1s/YMu+zRW8XBl3AbB6teP7kYAE0IhvOeeDVT/KygMRNV32+0p/UYC/+1kDEJcOxQAAAKsTEaXz5wdLCmzYrOPnpQ4QANtRAxLH9cOIDWAbVj42Yx2BiNLG4s1Kf1GAP/0nBJFzvrQmAAAAqxcR5bz1ytICG+CuB6BRtWvYLBzhz4bAprzLOZ+t8nOtIxBRqrR3VvqLAlP3uR6ML6a+EAAAAOtkXAawAUIQAJ0RjgA26HvOeW+Vn26lgYiIKD8IP63sFwSm7HtKqQQgLrRIBAAA2AzjMoA1+lrvei6NPgXoVw1HnNSPfVsJrME/c87Xq/pl/2fFz3e84l8PmJ5yOP6/kv4qLXGEIQAAADbK3Q6wSqUbxG91FvRR6f4pDAHQt/JzPOd8nnM+KC8tU0of6897gFU5WeVKrrpDhHEZwFOVPzQJQAAAAGyJcRnACn1LKZ0bfwowDXNdI05TSru2HXimlY7NWFmHiDouQxgCWEZJjb6rVQInwhAAAABbpTsE8FyfU0ovS9WwMATAdMx1jSgvMP9VO0EDPNVuRBysavVWOTLDoRlY1CwIYSwGAABAO9ztAE/1sRa8HOecr6wiwHTV8UhHJSAnGAE8w8rGZqxsZIZxGcCC3tWWieZFAgAANMK4DOCJjEAF4EERUcIRZymlQysFLGFlYzNW0iHCuAxgAbNKgTNhCAAAgOboDgEs46MRqAAsonQO0jECeIKVjc1Y1cgMh2bgPuUPOP90QAYAAGiaux1gEZ8FIQB4CsEI4AmOVrFoKxmZYVwGcIfvtWXihcUBAABol3EZwAK+pZROy8ssiwXAKkTESR2lsWtBgXt8yzk/u0vEsztEGJcB3OG3lNKBMAQAAEAXVlJ1AwzpZ0rpX+UiWhgCgFWq7w/Ki8539fcbgNv2I2LvuauyipEZWioCM9/qeIxSMfDDqgAAAHTB3Q5wl1LwsqfgBYB1Ke8Rcs5nNRhhjAZwl2efVwUigFV5V6sFrq0oAABAV9ztAPMUvACwUTnnm5xz6Vr2f3UcN8DMszsaPisQEREHxmXA5M0OyWdTXwgAAIDeuNsB5vxU8ALANuWcL2u3iN9sBFC9iogXz1mM53aIOLETMGkOyQAAAH1ztwOk2qb8QMELANtWx2icppRe6hYBVM/qEvHcQISWijBNpWLgpUMyAABA957dfhToXil4OSrtym0lAK3IOV/VbhEfbQpM3rMyCZFzftr/MWIvpfTH1FcfJuhzqSAyQxIAAKBv7nZg8r7VOx6dPwFoWkSUl6EXRr3BZH3POe899Yt/TocI3SFgekrFwLEwBAAAwBB0h4DpKtW2R8IQAPQg53xZu0V8tWEwSbsRcfDUL/w5gQiHZpgOIzIAAADGo9gFpqfc8fwr56z7JwBdKaOdyoinUrhp52CSnpxNeNLIjIh4kVL6t+81mITSPvHYHEkAAICxRMQPbYdhUozIAGAIRmjAJH2toailPbVDhO4QMA2fa/tEYQgAAICBRMSRC2SYlM9GZAAwirkRGt9sKkzGYW3asLSnBiK0VITxfcw5H2ufCAAAMCTFLjAd79zxADCaWshZ/kz70ebCZOgQAazMr1mSlhMAAGBYil1gfD/rHc+ZvQZgRCXsV99lvLPBMAlPyihEznm5/0PEXkrpD99TMKxyUL6wvQAAAGOqbUb/bXthaD+NyABgSiKiBCM+2HQY2rec88GyX+BTOkSoIIAxlYPyP4UhAAAAhqfzJ4ytzFM/EIYAYErqu41/1ncdwJj2a/OGpTwlEOHQDONRNQAAADAd7nZgXN/qHc+NPQZgauo7jiOhCBja7Z9wRwAAIABJREFU0udZgQhAGAIAAGBa3O3AmL7WO54f9heAqarvOg5qSBAYz3oDERFRPsGObxwYhjAEAADAhETEi9Jm1J7DcD7mnIUhAODPUMRNfWkqFAHjWXuHCBUEMA5hCAAAgOlxtwPjKWGIE/sKAP9VQ4JCETCe3YjYW+arEoiAaRKGAAAAmCZ3OzAWYQgAuIdQBAxrqXPtsoGIwyX/90B7hCEAAACmSyACxiEMAQCPEIqAIa0nEBERDswwhmNhCAAAgOmJiBcppX1bD0MQhgCABQlFwHAOlvmClukQIRAB/ftXzvnKPgIAAEySux0YwzdhCABYjlAEDGW/Bv4XIhAB0/H/cs4X9hsAAGCylqqiAZr0zT0tADxNDUWc1NHiQN8W/jPxMoGIQ98U0K3SRvHc9gEAAEyal6jQt19hiPoyBwB4gjpS/EgoArq32kBERDgwQ7++aqMIAACAYhfoWnlpcyIMAQDPV0MRx5YSurZwB8RFO0QIRECfvvlNHQAAgIgwLgP69bN2hri2hwCwGjnnq5TSvywndGvhwP+igQiHZuiPygEAAABmFLtAv06FIQBg9XLOFyml3ywt9GnRKRc6RMC4ThyWAQAAqBS7QJ/e1Zc1AMAa5JxPy+hxawtdWuic+2ggorZU3PE9AF0ph+VLWwYAAECl2AX68znnfGbfAGDtjusIcqAvqwlEqCCA7nx1WAYAAGAmIl6klHYtCHTle+n+acsAYP3q6PGTOooc6MfKAhEqCKAfP2uSEQAAAGYUu0Bfft3v1JczAMAG1BHkp9YaurJfCwAepEMEjOXEYRkAAIBbFLtAX07rSxkAYINyzhcppY/WHLryaJZhkUDEvj2HLvyWc760VQAAANyi2AX68bm+jAEAtqN0ifhm7aEbjxYAPBiIiAgVBNCH8pvzmb0CAADgDgIR0IfvdX45ALAltQv3SR1hBbTv2R0iHJihD0ZlAAAA8Dd1nuqulYEuuN8BgAbU0VWKUKEPe4895WOBCB0ioH3vzJUEAADgHopdoA/lfufKXgFAG3LO5ymlr7YDmrf/2APqEAF9+5ZzllIEAADgPu52oH3udwCgTUZnQAci4sEmD/cGIrRUhC6c2iYAAAAeIBAB7TuxRwDQnpzzjdEZ0IUHz70PdYhwYIa2/aaVIgAAAI94dJ4qsFVGoQJAw4zOgC48eO4ViIA+/ZRKBAAAYAGHFgma9T2ldG57AKB5ujlB23SIgAGd5px/2FgAAADuExHudqBtJ+53AKB9dXTGO1sFzXqwEEAgAvrzNed8Yd8AAAB4hHEZ0K7PRqECQD9yzme1uxPQoIi49/z7UCBi32ZCk4zKAAAAYBGKXaBNZRTqqb0BgO4YnQHtWi4QoaUiNOuj6gEAAAAW5H4H2nReW28DAB2p72e+2jNo0tF9D3VfhwgHZmiT7hAAAAAsysgMaE9ptX1uXwCgW7pEQJuWHpnhwAztead6AAAAgCUYhwrtOcs5/7AvANCn+p7mo+2D5tybb4ic89//YURp+XJoH6EZZbbkngMzAAAAi4iIchn0h8WCpnzPOStEA4DORcSLlFIJRuzYS2jGz5zzi7seRocI6MO5MAQAAABLcLcD7Tm1JwDQv/q+xggsaMtODSv9zX2BiF0bCM346TdWAAAAlnRkwaApX3POl7YEAIZxXt/fAO04uOtJ/haIiAgHZmiL7hAAAAAs687KGGBrziw9AIxDlwho0p2dEu/qEKGlIrRDdwgAAACe4s7KGGArvuWcryw9AAxHlwhoi0AEdEh3CAAAAJ7C/Q60Q7ELAAxIlwhozmIjM1QQQFMubAcAAABPsGvRoAnfc87udwBgXH6fh3bcOTpShwho18ec8439AQAAYBkR4W4H2nFmLwBgXPU9zkdbDE24s/FD/H/27vcozitN4/B5VPMdNgKRAWwEYiOQMxAZ2BlYE8EqA7MRjBSBIYJBERgiMERwptputAgJ0UC//+6+ripVeeaDUT0HF033731O7/3r/6Oqz+VvDDvuv3vvF7s+BAAAAJ6mqo5ba78bG0zupvf+3afUAIAc6yD5D0cK0+u91/2/xFcbIjxBALNxLoYAAADgmVyHCvPgTnEA2AHrLRHnzhqmt35A4Cv3r8wQRMA8uHMKAACA5/JEOsyD93cAYHcIIWGmBBEwP1e9d78wAwAA8Fze34HpfVo/LQoA7IDe+8fV5zvOGiZnQwQswEeHBAAAwAt4fwem52EXANg9fv7DDN0PItwxCdOzVgkAAICXEETAtK7WT4kCALtFEAHT+6Z3uB9EuGMSpnVunSIAAAAv9NoAYVJiCADYQevPd86dPUzqm97BhgiYF/UgAAAAz1ZVHnaB6dn+CQC7y+c8MK1vNiZW7/3//0dVd0Awqf/qvV87AgAAAJ6jqo5ba78bHkzmc+/dQ2cAsKPWgfKfzh+m03uvu1/8y4aIqvJCHab1SQwBAAAAsGieCgWAHbb+nOf/fA/AdO5vTrx7ZYaVijAt90sCAADwUh54gWl5fwcA8HoApvXV78V3g4hv7tMARuUHJAAAAC/lgReYzuq6jEvzB4Cdd7brA4A5EUTAPLguAwAAAGDZXJcBANxem/HJJGAyX3UPrsyAebAdAgAAgG04NkWYjKdBAYBbPveB6TwYRLhjEqbjByMAAADAcl313i+cHwCw5nMfmIlXDgIm99l1GQAAAGyJDaAwDdshAIAv1p/7fDYRmMRXiyDuBhFvnAdMQiUIAADAthyaJEzC+zsAwH2CSZjGVw8K2BAB0/MLMwAAAMCy+cADALjP5z8wA9V7b1W1qiT+dCAwupveu3WmAAAAbEVVdZOE0a2uQz0ydgDgPq/PYRJXvfeD2y98uyHCC3aYhqcHAAAA2IqqOjZJmIT3dwCAh5ybDIzu9d0v6MoMmJZfmAEAAACWzfs7AMBDvE6Aid0GEQcOAibhByEAAADAsnl/BwB4yIXJwLQEETCdm967H4QAAABsy75JwuhW9xNfGzsA8ADhJEygqo5uv6orM2A6YggAAAC26cg0YXTe3wEAHrQOJ69MCEb35YGB2yDCEwQwPlUgAAAAwLIJIgCAx3i9ABO6DSI8QQDj8wMQAAAAYNk88AIAPMbnQTAhV2bAdPwABAAAAFg27+8AAI8RUML4vrkyAxjXTe/90swBAADYogPDhFHdrO8FBwD4EZ8Hwfi+3JDhygyYhqcHAAAA2DZBBIzL+zsAwKM8IAvTug0i9pwDjMovzAAAAADL5v0dAGBT5yYF03BlBkxDDQgAAACwbK7LAAA25XUDTEQQAdPwBAEAAADAsnl/BwDYlNcNMJFXVbVv+DA6P/gAAAAAls2TngDAprxugImsNkQcGT6Mq/fuBx8AAADAsnngBQDYlNcNMK7j26/mygwY37mZAwAAMIADQ4XxeOAFAADmTxABAAAAkOG1c4TRXBk1APAENkTARAQRML4zMwcAAABYtEvHBwBsymYpmI4gAgAAAAAAAACI88r9kjA6TxAAAAAALJunPAGAp/psYjA+QQSMTxABAAAAsGzuAQcAnkpQCRNwZQYAAAAAAAAAEEcQAeOzIQIAAAAAAABgYIIIGFnvXRABAAAAAAAAMDBBBAAAAAAAAMCwPDALExBEAAAAAAAAAAxLEAETEEQAAAAAAAAAAHEEETCuc/MGAAAAAAAAGJ4gAgAAAAAAAACII4gAAAAAAAAAAOIIIgAAAAAAAACAOIIIAAAAAAAAACCOIAIAAAAAAAAAiCOIAAAAAAAAAADiCCIAAAAAAAAAgDiCCAAAAAAAAAAgjiACAAAAAAAAAIgjiAAAAAAAAAAA4ggiAAAAAAAAAIA4gggAAAAAAAAAII4gAgAAAAAAAACII4gAAAAAAAAAAOIIIgAAAAAAAACAOIIIAAAAAAAAACCOIAIAAAAAAAAAiCOIAAAAAAAAAADiCCIAAAAAAAAAgDiCCAAAAAAAAAAgjiACAAAAAAAAAIgjiAAAAAAAAAAA4ggiAAAAAAAAAIA4gggAAAAAAAAAII4gAgAAAAAAAACII4gAAAAAAAAAAOIIIgAAAAAAAACAOIIIAAAAAAAAACCOIAIAAAAAAAAAiCOIAAAAAAAAAADiCCIAAAAAAAAAgDiCCAAAAAAAAAAgjiACAAAAAAAAAIgjiAAAAAAAAAAA4ggiAAAAAAAAAIA4gggAAAAAAAAAII4gAgAAAAAAAACII4gAAAAAAAAAAOIIIgAAAAAAAACAOIIIAAAAAAAAACCOIAIAAAAAAAAAiCOIAAAAAAAAAADiCCIAAAAAAAAAgDiCCAAAAAAAAAAgjiACAAAAAAAAAIgjiAAAAAAAAAAA4ggiAAAAAAAAAIA4gggAAAAAAAAAII4gAgAAAAAAAACII4gAAAAAAAAAAOIIIgAAAAAAAACAOIIIAAAAAAAAACCOIAIAAAAAAAAAiCOIAAAAAAAAAADiCCIAAAAAAAAAgDiCCAAAAAAAAAAgjiACAAAAAAAAAIgjiAAAAAAAAAAA4ggiAAAAAAAAAIA4gggAAAAAAAAAII4gAgAAAAAAAACII4gAAAAAAAAAAOIIIgAAAAAAAACAOIIIAAAAAAAAACCOIAIAAAAAAAAAiCOIAAAAAAAAAADiCCIAAAAAAAAAgDiCCAAAAAAAAAAgjiACAAAAAAAAAIgjiAAAAAAAAAAA4ggiAAAAAAAAAIA4gggAAAAAAAAAII4gAgAAAAAAAACII4gAAAAAAAAAAOIIIgAAAAAAAACAOIIIAAAAAAAAACCOIAIAAAAAAAAAiCOIAAAAAAAAAADiCCIAAAAAAAAAgDiCCAAAAAAAAAAgjiACAAAAAAAAAIgjiAAAAAAAAAAA4ggiAAAAAAAAAIA4gggAAAAAAAAAII4gAgAAAAAAAACII4gAAAAAAAAAAOIIIgAAAAAAAACAOIIIAAAAAAAAACCOIAIAAAAAAAAAiCOIAAAAAAAAAADiCCIAAAAAAAAAgDiCCAAAAAAAAAAgjiACAAAAAAAAAIgjiAAAAAAAAAAA4ggiAAAAAAAAAIA4gggAAAAAAAAAII4gAgAAAAAAAACII4gAAAAAAAAAAOIIIgAAAAAAAACAOIIIAAAAAAAAACCOIAIAAAAAAAAAiCOIAAAAAAAAAADiCCIAAAAAAAAAgDiCCAAAAAAAAAAgjiACAAAAAAAAAIgjiAAAAAAAAAAA4ggiAAAAAAAAAIA4gggAAAAAAAAAII4gAgAAAAAAAACII4gAAAAAAAAAAOIIIgAAAAAAAACAOIIIAAAAAAAAACCOIAIAAAAAAAAAiCOIAAAAAAAAAADiCCIAAAAAAAAAgDiCCAAAAAAAAAAgjiACAAAAAAAAAIgjiAAAAAAAAAAA4ggiAAAAAAAAAIA4gggAAAAAAAAAII4gAgAAAAAAAACII4gAAAAAAAAAAOIIIgAAAAAAAACAOIIIAAAAAAAAACCOIAIAAAAAAAAAiCOIAAAAAAAAAADiCCIAAAAAAAAAgDiCCAAAAAAAAAAgjiACAAAAAAAAAIgjiAAAAAAAAAAA4ggiAAAAAAAAAIA4gggAAAAAAAAAII4gAgAAAAAAAACII4gAAAAAAAAAAOIIIgAAAAAAAACAOIIIAAAAAAAAACCOIAIAAAAAAAAAiCOIAAAAAAAAAADiCCIAAAAAAAAAgDiCCAAAAAAAAAAgjiACAAAAAAAAAIgjiAAAAAAAAAAA4ggiAAAAAAAAAIA4gggAAAAAAAAAII4gAgAAAAAAAACII4gAAAAAAAAAAOIIIgAAAAAAAACAOIIIAAAAAAAAACCOIAIAAAAAAAAAiCOIAAAAAAAAAADiCCIAAAAAAAAAgDiCCAAAAAAAAAAgjiACAAAAAAAAAIgjiAAAAAAAAAAA4ggiAAAAAAAAAIA4gggAAAAAAAAAII4gAgAAAAAAAACII4gAAAAAAAAAAOIIIgAAAAAAAACAOIIIAAAAAAAAACCOIAIAAAAAAAAAiCOIAAAAAAAAAADiCCIAAAAAAAAAgDiCCAAAAAAAAAAgjiACAAAAAAAAAIgjiAAAAAAAAAAA4ggiAAAAAAAAAIA4gggAAAAAAAAAII4gAgAAAAAAAACII4gAAAAAAAAAAOIIIgAAAAAAAACAOIIIAAAAAAAAACCOIAIAAAAAAAAAiCOIAAAAAAAAAADiCCIAAAAAAAAAgDiCCAAAAAAAAAAgjiACAAAAAAAAAIgjiAAAAAAAAAAA4ggiAAAAAAAAAIA4gggAAAAAAAAAII4gAgAAAAAAAACII4gAAAAAAAAAAOIIIgAAAAAAAACAOIIIAAAAAAAAACCOIAIAAAAAAAAAiCOIAAAAAAAAAADiCCIAAAAAAAAAgDiCCAAAAAAAAAAgjiACAAAAAAAAAIjzD0cKAAAAAPAkJ1V1bGQAwBMcGBaMTxABAAAAAPA0r9d/AACAGXNlBgAAAAAAAAAQRxABAAAAAAAAAMQRRAAAAAAAAAAAcQQRAAAAAAAAAEAcQQQAAAAAAAAAEEcQAQAAAAAAAADEEUQAAAAAAAAAAHEEEQAAAAAAAABAHEEEAAAAAAAAABBHEAEAAAAAAAAAxBFEAAAAAAAAAABxBBEAAAAAAAAAQBxBBAAAAAAAAAAQRxABAAAAAAAAAMQRRAAAAAAAAAAAcQQRAAAAAAAAAEAcQQQAAAAAAAAAEEcQAQAAAAAAAADEEUQAAAAAAAAAAHEEEQAAAAAAAABAHEEEAAAAAAAAABBHEAEAAAAAAAAAxBFEAAAAAAAAAABxBBEAAAAAAAAAQBxBBAAAAAAAAAAQRxABAAAAAAAAAMQRRAAAAAAAAAAAcQQRAAAAAAAAAEAcQQQAAAAAAAAAEEcQAQAAAAAAAADEEUQAAAAAAAAAAHEEEQAAAAAAAABAHEEEAAAAAAAAABBHEAEAAAAAAAAAxBFEAAAAAAAAAABxBBEAAAAAAAAAQBxBBAAAAAAAAAAQRxABAAAAAAAAAMQRRAAAAAAAAAAAcQQRAAAAAAAAAEAcQQQAAAAAAAAAEEcQAQAAAAAAAADEEUQAAAAAAAAAAHEEEQAAAAAAAABAHEEEAAAAAAAAABBHEAEAAAAAAAAAxBFEAAAAAAAAAABxBBEAAAAAAAAAQBxBBAAAAAAAAAAQRxABAAAAAAAAAMQRRAAAAAAAAAAAcQQRAAAAAAAAAEAcQQQAAAAAAAAAEEcQAQAAAAAAAADEEUQAAAAAAAAAAHEEEQAAAAAAAABAHEEEAAAAAAAAABBHEAEAAAAAAAAAxBFEAAAAAAAAAABxBBEAAAAAAAAAQBxBBAAAAAAAAAAQRxABAAAAAAAAAMQRRAAAAAAAAAAAcQQRAAAAAAAAAEAcQQQAAAAAAAAAEEcQAQAAAAAAAADEEUQAAAAAAAAAAHEEEQAAAAAAAABAHEEEAAAAAAAAABBHEAEAAAAAAAAAxBFEAAAAAAAAAABxBBEAAAAAAAAAQBxBBAAAAAAAAAAQRxABAAAAAAAAAMQRRAAAAAAAAAAAcQQRAAAAAAAAAEAcQQQAAAAAAAAAEEcQAQAAAAAAAADEEUQAAAAAAAAAAHEEEQAAAAAAAABAHEEEAAAAAAAAABBHEAEAAAAAAAAAxBFEAAAAAAAAAABxBBEAAAAAAAAAQBxBBAAAAAAAAAAQRxABAAAAAAAAAMQRRAAAAAAAAAAAcQQRAAAAAAAAAEAcQQQAAAAAAAAAEEcQAQAAAAAAAADEEUQAAAAAAAAAAHEEEQAAAAAAAABAHEEEAAAAAAAAABBHEAEAAAAAAAAAxBFEAAAAAAAAAABxBBEAAAAAAAAAQBxBBAAAAAAAAAAQRxABAAAAAAAAAMQRRAAAAAAAAAAAcQQRAAAAAAAAAEAcQQSMa9+8AQAAAAAAAIYniIBxHZo3AAAAAAAAwPAEEQAAAAAAAABAHEEEAAAAAAAAABBHEAEAAAAAAAAAxBFEwMiq6sDMAQAAAAAAAIYliIDxCSIAAAAAAAAABiaIAAAAAAAAAADirIKIC8cKo7IhAgAAAAAAAGBgqyDi2pBhVIIIAAAAAAAAgIG5MgPGt2/mAAAAAAAAAMMSRMD4jswcAAAAAAAAYFiCCBifDREAAAAAAAAAAxNEwPgOzRwAAAAAAABgWKsg4sKMYVxVdWDkAAAAAAAAAMN51Xu/Nl8YnSACAAAAAAAAYECuzIBpHJk7AAAAAAAAwHAEETANGyIAAAAAAAAABnQbRFwZMozKhggAAAAAAACAAd0GEZeGDKMSRAAAAAAAAAAMyJUZMI29qnJtBgAAAAAAAMBABBEwHVsiAAAAAAAAAAZyG0RcGDCMThABAAAAAAAAMJDbIOLagGF0x0YOAAAAAAAAMAxXZsB03pg9AAAAAAAAwDBcmQETqipbIgAAAAAAAAAG4MoMmNaR+QMAAAAAAABsnyszYFo2RAAAAAAAAAAMwJUZMC1BBAAAAAAAAMAA/goieu+uzIBp7FWVKAIAAAAAAABgy+5emXFjuDAJQQQAAAAAAADAlt0NIlybAdP4ydwBAAAAAAAAtuuVecLkDqvqwDEAAAAAAAAAbI8NETAPrs0AAAAAAAAA2KK7QcS1wcJkXJsBAAAAAAAAsEV3g4hLg4XJvK2qfeMHAAAAAAAA2A5BBMyHLREAAAAAAAAAW+LKDJgPQQQAAAAAAADAlnwJInrvF4YKk3JtBgAAAAAAAMCWvLr3r7kxWJjUifEDAAAAAAAAvNz9IMKWCJiWIAIAAAAAAABgC+4HEdeGCpM6rKojRwAAAAAAAADwMjZEwPzYEgEAAAAAAADwQveDiEsDhcmdVNW+YwAAAAAAAAB4PkEEzM9ea+0n5wIAAAAAAADwfK7MgHn6xbkAAAAAAAAAPN9XQUTv/dosYRYOq+rYUQAAAAAAAAA8z/0NESvnZgmzcOIYAAAAAAAAAJ7ne0GELREwD++q6sBZAAAAAAAAADzd94KIC3OE2XjvKAAAAAAAAACeThAB82ZLBAAAAAAAAMAzfC+IuDRImJUTxwEAAAAAAADwNN8EEb13GyJgXn6pqn1nAgAAAAAAALC5722IWLkyQ5iNvVUU4TgAAAAAAAAANvdQEGFLBMzLr1V14EwAAAAAAAAANiOIgOV476wAAAAAAAAANiOIgOV4Z0sEAAAAAAAAwGYeCiIuzQ9m6dSxAAAAAAAAADzuu0FE792GCJinN1V17GwAAAAAAAAAfuyhDREr52YHs2RLBAAAAAAAAMAjfhREuDYD5ul1Vf3ibAAAAAAAAAAe9qMgwrUZMF/vq2rf+QAAAAAAAAB8nyAClmnP1RkAAAAAAAAAD3swiOi9n5kbzNrbqjp2RAAAAAAAAADf+tGGiJXPZgazdurqDAAAAAAAAIBvPRZEuDYD5u11a+29MwIAAAAAAAD4miAClu9nV2cAAAAAAAAAfE0QARlcnQEAAAAAAABwxw+DiN77mWHBIqyuzjh1VAAAAAAAAAB/e2xDxMq5WcEivK2qE0cFAAAAAAAAsFkQ4doMWI4PVXXkvAAAAAAAAIBdJ4iALHurqzOqat+5AgAAAAAAALtskyDizHcILMrhalOEIwMAAAAAAAB22aNBRO/9srV25bsEFuVdVZ04MgAAAAAAAGBXbbIhork2Axbpt6o6cnQAAAAAAADALto0iHBtBizTWVXtOzsAAAAAAABg1wgiINueKAIAAAAAAADYRRsFEb331ZUZN75DYJEOW2sfHB0AAAAAAACwSzbdELFy4TsDFutdVZ06PgAAAAAAAGBXPCWIcG0GLNsqijhxhgAAAAAAAMAuEETAbvlNFAEAAAAAAADsgo2DiN67IAIyiCIAAAAAAACAeE/ZELHyybcERPhQVUeOEgAAAAAAAEj11CDClgjIsLf671kUAQAAAAAAAKQSRMDuEkUAAAAAAAAAsZ4URPTeL1prN74dIIYoAgAAAAAAAIj01A0RzZYIiHMbRZw4WgAAAAAAACDFc4KIj04f4qyiiN9EEQAAAAAAAEAKGyKAu0QRAAAAAAAAQIQnBxG998vW2mfHD7FWUcQHxwsAAAAAAAAs2XM2RDRbIiDez1V1WlX7jhoAAAAAAABYIkEE8JB3q//WRREAAAAAAADAEj0riOi9f3TasBMOW2uXVXXkuAEAAAAAAIAlee6GiJVPThp2wt56U8SJ4wYAAAAAAACW4iVBhC0RsDtWUcRvVXXqzAEAAAAAAIAleEkQceaEYee8q6qLqjpw9AAAAAAAAMCcPTuI6L1fttY+O13YOYettQtXaAAAAAAAAABz9pINEc21GbCzbq/Q+FhV+74NAAAAAAAAgLkRRAAv8Xa9LeLYFAEAAAAAAIA5eVEQ0Xu/aK1dOVHYaa9ba79X1QfbIgAAAAAAAIC5eOmGiGZLBLD283pbxE8GAgAAAAAAAExNEAFs02pbxL+q6mNVHZgsAAAAAAAAMJUXBxG997PW2o0TBO54u94W8d5QAAAAAAAAgClsY0NEsyUC+I691tqvVXXpGg0AAAAAAABgbIIIYGi312icVdWxaQMAAAAAAABj2EoQ0Xv/6NoM4BFvWmu/V9VpVR0YFgAAAAAAADCkbW2IaLZEABt611r7QxgBAAAAAAAADEkQAUzlbhhx5BQAAAAAAACAbdpaEOHaDOCZVmHEv6vqrKqODREAAAAAAADYhm1uiGi2RAAv8Ka19ntVXVbVSVXtGyYAAAAAAADwXNsOIj44CeCFXrfWfmutXbpOAwAAAAAAAHiurQYRvfeL1tqV0wC2YO/OdRqrOOKXqjowWAAAAAAAAGAT294Q0VybAQxgtTXif1trf1TVmSs1AAAAAAAAgMcMEUScmjowoDfrKzX+rKoLmyMAAAAAAACA76ne+9YHs/qQsrV2aOLAiK7WG2rOVn9679eGDwAA7JKq2v6bPAAAALA857334zbQhohmSwQwgdW1Gj+31v7+mnrAAAARo0lEQVR1Z3vEh6r6yQYJAAAAAAAA2D1DbYhY3e3/p+8nYEZWGyQu7v7pvV86IAAAIIUNEQAAAPCXLxsiBgki2t+/hK9W1781b2DmPrfWrtdXbVyvg4nWez9zcAAAwJIIIgAAAOAvX4KIfww4j1NBBLAAh+u/4pu7f9Wquv3Hm9tI4o6LdTwBAECeU5vEANjAahOlnxcAwFMcrK//BkY02IaI9vcHiqsPDPccKAAAAAvxP7aFsVQ2RMCo/tl7f2/kAMCmqmr12uFXA4NRfNkQ8Wrgr3bqPAEAAAAAAACAsQkiAAAAAAAAAIA4gwYRvffVPfuffdsAAAAAAAAAAGMaekPEygcnCgAAAAAAAACMaYwg4mNr7capAgAAAAAAAAD/ae/ujvK4tjWMvlSd++MdwZYjODiCgzOQM0AZ4AxQBlIGkIGUAWQAGUAGEMG76yu3bLYsyUJ8P6u7x6iiXOUfefZauvDF47n2ZedBRNuHKYoAAAAAAAAAANiLfWyIiGczAAAAAAAAAIB92ksQ0fYmya2bBQAAAAAAAAD2YV8bImJLBAAAAAAAAACwL3sLItpeJHl0swAAAAAAAADAru1zQ8TGhRsFAAAAAAAAAHZt30GEZzMAAAAAAAAAgJ3baxDR9i7JR9cKAAAAAAAAAOzSvjdExJYIAAAAAAAAAGDX9h5EtL1KcutmAQAAAAAAAIBdOcSGiNgSAQAAAAAAAADs0kGCiLYXSR7dLAAAAAAAAACwC4faEBFbIgAAAAAAAACAXRFEAAAAAAAAAACLc7Agou1Dkku/pQAAAAAAAACAbTvkhoiN8wP/+wEAAAAAAACABTpoENH2zpYIAAAAAAAAAGDbDr0hYuNigBkAAAAAAAAAgAU5eBDR9irJ9ZIOFQAAAAAAAAA4rBE2RGycDzADAAAAAAAAALAQQwQRtkQAAAAAAAAAANs0yoaIjXcDzAAAAAAAAAAALMAwQUTbD0nuBxgFAAAAAAAAAJi5kTZEbJwPMAMAAAAAAAAAMHNDBRFtL2yJAAAAAAAAAABearQNEbElAgAAAAAAAAB4qeGCCFsiAAAAAAAAAICXGnFDRGyJAAAAAAAAAABeYsggwpYIAAAAAAAAAOAlRt0QEVsiAAAAAAAAAIAfNWwQMW2JuB5gFAAAAAAAAABgZkbeEBFbIgAAAAAAAACAHzF0ENH2ypYIAAAAAAAAAOC5Rt8QEVsiAAAAAAAAAIDnGj6IsCUCAAAAAAAAAHiuOWyI2DgdYAYAAAAAAAAAYCZmEUS0vUtyOcAoAAAAAAAAAMAMzGVDxMZ5kscB5gAAAAAAAAAABjebIGLaEvFugFEAAAAAAAAAgMHNaUNEpiDClggAAAAAAAAA4JtmFUS0fUhyNsAoAAAAAAAAAMDA5rYhYhNFXCS5H2AUAAAAAAAAAGBQswsiJqdDTAEAAAAAAAAADGmWQUTbqyTXA4wCAAAAAAAAAAxorhsiYksEAAAAAAAAAPA1sw0i2t4leT/AKAAAAAAAAADAYOa8IWLjPMnjAHMAAAAAAAAAAAOZdRDR9iHJ2QCjAAAAAAAAAAADmfuGiE0UcZHkeoBRAAAAAAAAAIBBzD6ImNgSAQAAAAAAAAD8aRFBRNubJO8HGAUAAAAAAAAAGMBSNkRsnCd5HGAOAAAAAAAAAODAFhNEtH3wdAYAAAAAAAAAkIVtiNhEERdJrgcYBQAAAAAAAAA4oEUFEZPTIaYAAAAAAAAAAA5mcUFE27skbwcYBQAAAAAAAAA4kCVuiNhEEedJbgcYBQAAAAAAAAA4gEUGEZOzIaYAAAAAAAAAAPZusUFE26sk7wcYBQAAAAAAAADYsyVviNjYPJ1xP8AcAAAAAAAAAMAeLTqIaPuQ5HSAUQAAAAAAAACAPVr6hohPT2d8HGAUAAAAAAAAAGBPFh9ETDZbIh6HmAQAAAAAAAAA2LlVBBGezgAAAAAAAACAdVnLhohNFPHB0xkAAAAAAAAAsA6rCSImmy0R90NMAgAAAAAAAADszKqCCE9nAAAAAAAAAMA6rG1DxCaKuEryfoBRAAAAAAAAAIAdWV0QMTn3dAYAAAAAAAAALNcqg4jp6YzXA4wCAAAAAAAAAOzAWjdEbKKImyRvBxgFAAAAAAAAANiy1QYR+SOK2DydcTvAKAAAAAAAAADAFq06iJhsns54HGISAAAAAAAAAGArVh9EtL1LcjbAKAAAAAAAAADAlqw+iMgfUcRFkssBRgEAAAAAAAAAtkAQ8ZfNloj7UYYBAAAAAAAAAH6cIGLS9iHJ6yGGAQAAAAAAAABeRBDxRNubJL8PMxAAAAAAAAAA8EMEEZ9p+y7Jx6GGAgAAAAAAAACeRRDxZadJ7kccDAAAAAAAAAD4Z4KIL2j7kOT1cIMBAAAAAAAAAN9FEPEVbW+S/D7kcAAAAAAAAADANwkivqHtuySXww4IAAAAAAAAAHyRIOKfnSW5HX1IAAAAAAAAAOAvgoh/0PYhyWmSx6EHBQAAAAAAAAD+JIj4Dm1vpigCAAAAAAAAAJgBQcR3avshyftZDAsAAAAAAAAAKyeIeIa2Z0muZzMwAAAAAAAAAKyUIOL5Xie5n9vQAAAAAAAAALAmgohnavswRRGPsxocAAAAAAAAAFZEEPED2t4kOZ3d4AAAAAAAAACwEoKIH9T2Q5K3sxweAAAAAAAAABZOEPECbc+TXM72AwAAAAAAAABgoQQRL3eW5HbuHwEAAAAAAAAASyKIeKG2D0lOktzP+kMAAAAAAAAAYEEEEVswRRGvkzzO/mMAAAAAAAAAYAEEEVvS9ibJ6SI+BgAAAAAAAABmThCxRW0/JHmzmA8CAAAAAAAAgJkSRGxZ24sk7xf1UQAAAAAAAAAwM4KIHWh7luRycR8GAAAAAAAAADMhiNidTRRxu9SPAwAAAAAAAICRCSJ2pO1DkhNRBAAAAAAAAADsnyBih55EEY+L/UgAAAAAAAAAGJAgYsdEEQAAAAAAAACwf4KIPWh7I4oAAAAAAAAAgP0RROzJFEWcreJjAQAAAAAAAODABBF71PYiyZvVfDAAAAAAAAAAHIggYs9EEQAAAAAAAACwe4KIA5iiiLer+3AAAAAAAAAA2BNBxIG0PU9yucqPBwAAAAAAAIAdE0QcUNtTUQQAAAAAAAAAbJ8g4sBEEQAAAAAAAACwfYKIAYgiAAAAAAAAAGC7BBGDEEUAAAAAAAAAwPYIIgYiigAAAAAAAACA7RBEDEYUAQAAAAAAAAAvJ4gYkCgCAAAAAAAAAF5GEDEoUQQAAAAAAAAA/DhBxMBEEQAAAAAAAADwYwQRgxNFAAAAAAAAAMDzCSJmQBQBAAAAAAAAAM8jiJgJUQQAAAAAAAAAfD9BxIyIIgAAAAAAAADg+wgiZmaKIt6s/RwAAAAAAAAA4FsEETPU9kIUAQAAAAAAAABfJ4iYKVEEAAAAAAAAAHydIGLGpiji1ySPaz8LAAAAAAAAAHhKEDFzba+SnIgiAAAAAAAAAOAvgogFaHszRRH3az8LAAAAAAAAAIggYjmmKOI4ye3azwIAAAAAAAAABBEL0vZh2hRxvfazAAAAAAAAAGDdBBELs4ki2m6iiMu1nwUAAAAAAAAA6yWIWKi2p0nerv0cAAAAAAAAAFgnQcSCtT1P8mbt5wAAAAAAAADA+ggiFq7tRZJfkjyu/SwAAAAAAAAAWA9BxAq0vUlykuR27WcBAAAAAAAAwDoIIlbiSRRxvfazAAAAAAAAAGD5BBEr0vah7SaKuFz7WQAAAAAAAACwbIKIFWp7muTN2s8BAAAAAAAAgOUSRKxU24skvyR5XPtZAAAAAAAAALA8gogVa3uT5DjJ7drPAgAAAAAAAIBlEUSsXNu7JCdJLtd+FgAAAAAAAAAshyCCTRTx0PY0ye9OAwAAAAAAAIAlEETwp7bvkvyS5NGpAAAAAAAAADBnggj+S9ubJK+SXDsZAAAAAAAAAOZKEMHfTE9onCR573QAAAAAAAAAmCNBBF/V9izJb57QAAAAAAAAAGBuBBF8U9sPSY6T3DopAAAAAAAAAOZCEME/anvX9tgTGgAAAAAAAADMhSCC7+YJDQAAAAAAAADmQhDBszx5QuPayQEAAAAAAAAwKkEEzzY9oXGS5K3TAwAAAAAAAGBEggh+WNvzJL8kuXeKAAAAAAAAAIxEEMGLtL2ZntC4dJIAAAAAAAAAjEIQwYu1fWh7muS3JI9OFAAAAAAAAIBDE0SwNW0/JHmV5NqpAgAAAAAAAHBIggi2atoWcZLkd9siAAAAAAAAADgUQQQ70fZdkmPbIgAAAAAAAAA4BEEEO9P2zrYIAAAAAAAAAA5BEMHO2RYBAAAAAAAAwL4JItgL2yIAAAAAAAAA2CdBBHv1ZFvERycPAAAAAAAAwK4IIti7aVvE6yS/2RYBAAAAAAAAwC4IIjiYth+SvEry3i0AAAAAAAAAsE2CCA6q7UPbsyS/Jrl1GwAAAAAAAABsgyCCIbS9anuc5K1nNAAAAAAAAAB4KUEEQ2l7nmQTRnx0MwAAAAAAAAD8KEEEw2l71/b19IzGvRsCAAAAAAAA4LkEEQxrekbjlWc0AAAAAAAAAHguQQTDe/KMxqXbAgAAAAAAAOB7CCKYhekZjdPpGY1rtwYAAAAAAADAtwgimJXpGY2TJG+S3Ls9AAAAAAAAAL5EEMEstb2YntF4m+TRLQIAAAAAAADwlCCC2Wr70PY8yask790kAAAAAAAAAJ8IIpi9KYw4S/Jzkks3CgAAAAAAAIAggsVoe9f2NMmvSa7dLAAAAAAAAMB6CSJYnLZXbU+EEQAAAAAAAADrJYhgsT4LI+7dNAAAAAAAAMB6CCJYvCmMeJXkjTACAAAAAAAAYB0EEaxG2wthBAAAAAAAAMA6CCJYHWEEAAAAAAAAwPIJIlitJ2HEr0mu/U4AAAAAAAAAWA5BBKvX9qrtiTACAAAAAAAAYDkEETD5LIy4dC4AAAAAAAAA8yWIgM9MYcRpkp+nMOLRGQEAAAAAAADMiyACvqLt3RRGvEryVhgBAAAAAAAAMB+CCPgHbR/anrf9KcmbJLfODAAAAAAAAGBsggh4hrYXbY+T/Do9pwEAAAAAAADAgAQR8APaXk3PafzsOQ0AAAAAAACA8Qgi4AXa3n32nMa18wQAAAAAAAA4PEEEbMn0nMbJtDXiva0RAAAAAAAAAIcjiIAtm7ZGnNkaAQAAAAAAAHA4ggjYoS9sjbh33gAAAAAAAAC7J4iAPXiyNeJVkt+SXDp3AAAAAAAAgN0RRMCetf3Q9jTJv6YnNT66AwAAAAAAAIDtEkTAgbR9mJ7UeD09qfF7klv3AQAAAAAAAPBygggYwPSkxru2x+IIAAAAAAAAgJcTRMBgxBEAAAAAAAAALyeIgIGJIwAAAAAAAAB+jCACZuILccSbJB/dHwAAAAAAAMDfCSJghqY44qLt6yT/SvJbkssk9+4TAAAAAAAAIPkfZwDz1vYhyYfpJ0dHR5sNEidJNrHE/7teAAAAAAAAYI0EEbAwbW+SbH7eHR0d/TTFEZ8CiX+7bwAAAAAAAGANPJkBC7bZHtH2Q9uztq+S/Jzkjec1AAAAAAAAgKWzIQJWpO1dkovpZ/O8xqsnGyRObJAAAAAAAAAAlkIQASv2jUDiePrj//n9AQAAAAAAAMyRIAL405NA4k9HR0cnn0US/+vEAAAAAAAAgNEJIoBvanuV5OrT3zNtkTh+EkgciyQAAAAAAACA0QgigGeZtkhsfj58+uemSOLpcxuvPLcBAAAAAAAAHJIgAnixJ5HE1dNf6+jo6PhJICGUAAAAAAAAAPZGEAHsTNubJDef//pTKPHTtFHipyexxL/dBgAAAAAAALANgghg76ZQIp9vlMh/P7/x+c9PtksAAAAAAAAA30sQAQzlyfMbX3V0dHQy/bVP0USmLRM/Pfnztk0AAAAAAADAigkigNlp+7fNEt/yJKD45Gk88dTnfx8AAOvz4M6ZsWuXB3vzzf+ZAwDgC+78NzvszR/b6pP8BwrBrXevD3AgAAAAAElFTkSuQmCC"; - -// are the points close enough together that whey would appear crowded (triggers size change in points) -function isCrowded(domains, childMeasurements) { - var _a; - if (childMeasurements.length < 2) { - return false; - } - childMeasurements.sort(function (a, b) { return (a.measurement_dates.corrected_decimal_age > b.measurement_dates.corrected_decimal_age) ? 1 : (a.measurement_dates.corrected_decimal_age < b.measurement_dates.corrected_decimal_age) ? -1 : 0; }); - var smallestInterval = null; - for (var i = 0; i < childMeasurements.length; i++) { - var lowerValue = childMeasurements[i].plottable_data.centile_data.chronological_decimal_age_data.x; - var higherValue = (_a = childMeasurements[i + 1]) === null || _a === void 0 ? void 0 : _a.plottable_data.centile_data.chronological_decimal_age_data.x; - if (higherValue) { - var currentInterval = higherValue - lowerValue; - if (smallestInterval === null || smallestInterval > currentInterval) { - smallestInterval = currentInterval; - } - } - } - var currentDomainInterval = domains.x[1] - domains.x[0]; - var ratio = smallestInterval / currentDomainInterval; - return ratio < 0.01 ? true : false; -} - -var EventCaret = function (props) { - var x = props.x, y = props.y, eventsText = props.eventsText; - var textHeight = 15 * eventsText.length; - var inverted = false; - var peakY = y + 85; - var cornerY = y + 100; - if (cornerY + textHeight > 450) { - peakY = y - 250; - cornerY = y - 265; - inverted = true; - } - var coords = x - 15 + " " + cornerY + " " + x + " " + peakY + " " + (x + 15) + " " + cornerY; - return (React__default.createElement("svg", null, - React__default.createElement("polyline", { points: coords, stroke: "#A9A9A9", strokeWidth: 4, fill: "none", pointerEvents: "visible" }), - React__default.createElement("text", { x: x, y: inverted ? (peakY - textHeight - 25) : (peakY + 25), textAnchor: "middle", color: "#A9A9A9" }, eventsText.map(function (eventText) { - return React__default.createElement("tspan", { x: x, dy: 15 }, eventText); - })))); -}; - -var StyledShareButton = styled__default.button(templateObject_1$9 || (templateObject_1$9 = __makeTemplateObject(["\nflex-grow:0;\nbackground-color: ", ";\nheight: 48px;\nwidth: 48px;\ncolor: white;\npadding: 1rem;\nborder: none;\ncursor: pointer;\nborder: 5px solid white;\nborder-radius: 50%;\npadding: 3px;\ndisplay: flex;\njustify-content: center;\nalign-items: center;\n&:hover {\n filter: brightness(85%);\n}\n&:active {\n background-color: brightness(115%);\n}\n"], ["\nflex-grow:0;\nbackground-color: ", ";\nheight: 48px;\nwidth: 48px;\ncolor: white;\npadding: 1rem;\nborder: none;\ncursor: pointer;\nborder: 5px solid white;\nborder-radius: 50%;\npadding: 3px;\ndisplay: flex;\njustify-content: center;\nalign-items: center;\n&:hover {\n filter: brightness(85%);\n}\n&:active {\n background-color: brightness(115%);\n}\n"])), function (props) { return (props.color ? props.color : 'black'); }); -var templateObject_1$9; - -var StyledFullScreenButton = styled__default.button(templateObject_1$a || (templateObject_1$a = __makeTemplateObject(["\nbackground-color: ", ";\nheight: 48px;\nwidth: 48px;\ncolor: white;\npadding: 1rem;\nborder: none;\ncursor: pointer;\nborder: 5px solid white;\nborder-radius: 50%;\npadding: 3px;\nflex: 1;\ndisplay: flex;\njustify-content: center;\nalign-items: center;\n&:hover {\n filter: brightness(85%);\n}\n&:active {\n background-color: brightness(115%);\n}\n"], ["\nbackground-color: ", ";\nheight: 48px;\nwidth: 48px;\ncolor: white;\npadding: 1rem;\nborder: none;\ncursor: pointer;\nborder: 5px solid white;\nborder-radius: 50%;\npadding: 3px;\nflex: 1;\ndisplay: flex;\njustify-content: center;\nalign-items: center;\n&:hover {\n filter: brightness(85%);\n}\n&:active {\n background-color: brightness(115%);\n}\n"])), function (props) { return (props.color ? props.color : 'black'); }); -var templateObject_1$a; - -var ShareButtonWrapper = styled__default.div(templateObject_1$b || (templateObject_1$b = __makeTemplateObject(["\nflex-grow: 0;\ntext-align: center;\nalign-items: center;\ndisplay: flex;\n\n"], ["\nflex-grow: 0;\ntext-align: center;\nalign-items: center;\ndisplay: flex;\n\n"]))); -var templateObject_1$b; - -var FullScreenButtonWrapper = styled__default.div(templateObject_1$c || (templateObject_1$c = __makeTemplateObject(["\nflex-grow: 0;\ntext-align: center;\nalign-items: center;\n"], ["\nflex-grow: 0;\ntext-align: center;\nalign-items: center;\n"]))); -var templateObject_1$c; - -var Icon = styled__default.svg.attrs({ - version: '1.1', - xmlns: 'http://www.w3.org/2000/svg', - xmlnsXlink: 'http://www.w3.org/1999/xlink', -})(templateObject_1$d || (templateObject_1$d = __makeTemplateObject([""], [""]))); -var templateObject_1$d; - -var Svg = styled__default(Icon)(templateObject_1$e || (templateObject_1$e = __makeTemplateObject([" \n width: 16px; \n height: 16px;\n"], [" \n width: 16px; \n height: 16px;\n"]))); -var ShareIcon = function () { return ( -// -// -// -React__default.createElement(Svg, { xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", fill: "white", viewBox: "0 0 16 16" }, - React__default.createElement("path", { d: "M4 11a1 1 0 1 1 2 0v1a1 1 0 1 1-2 0v-1zm6-4a1 1 0 1 1 2 0v5a1 1 0 1 1-2 0V7zM7 9a1 1 0 0 1 2 0v3a1 1 0 1 1-2 0V9z" }), - React__default.createElement("path", { d: "M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1v-1z" }), - React__default.createElement("path", { d: "M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5h3zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0h-3z" }))); }; -var templateObject_1$e; - -var CopiedLabel = styled__default.h6(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\nflex-grow:0;\ntext-align: center;\nmargin-left: 5px;\nopacity: 0;\nvisibility: ", ";\nanimation: ", ";\n\n"], ["\nflex-grow:0;\ntext-align: center;\nmargin-left: 5px;\nopacity: 0;\nvisibility: ", ";\nanimation: ", - ";\n\n"])), function (props) { return props.active ? "visible" : "hidden"; }, function (props) { return (props.active ? styled.css(templateObject_1$f || (templateObject_1$f = __makeTemplateObject(["\n ", "\n fadeIn 5s;\n -webkit-animation: fadeIn 3s;\n -moz-animation: fadeIn 3s;\n -o-animation: fadeIn 3s;\n -ms-animation: fadeIn 3s;\n ", "\n fadeOut 5s;\n -webkit-animation: fadeOut 5s;\n -moz-animation: fadeOut 5s;\n -o-animation: fadeOut 5s;\n -ms-animation: fadeOut 5s;\n "], ["\n ", "\n fadeIn 5s;\n -webkit-animation: fadeIn 3s;\n -moz-animation: fadeIn 3s;\n -o-animation: fadeIn 3s;\n -ms-animation: fadeIn 3s;\n ", "\n fadeOut 5s;\n -webkit-animation: fadeOut 5s;\n -moz-animation: fadeOut 5s;\n -o-animation: fadeOut 5s;\n -ms-animation: fadeOut 5s;\n "])), fadeInAnimation, fadeOutAnimation) : - "none"); }); -var fadeOutAnimation = styled.keyframes(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n @keyframes fadeOut {\n 100% {opacity:1;}\n 0% {opacity:0;}\n }\n \n @-moz-keyframes fadeOut {\n 100% {opacity:1;}\n 0% {opacity:0;}\n }\n \n @-webkit-keyframes fadeOut {\n 100% {opacity:1;}\n 0% {opacity:0;}\n }\n \n @-o-keyframes fadeIn fadeOut {\n 100% {opacity:1;}\n 0% {opacity:0;}\n }\n \n @-ms-keyframes fadeIn fadeOut {\n 100% {opacity:1;}\n 0% {opacity:0;}\n }\n"], ["\n @keyframes fadeOut {\n 100% {opacity:1;}\n 0% {opacity:0;}\n }\n \n @-moz-keyframes fadeOut {\n 100% {opacity:1;}\n 0% {opacity:0;}\n }\n \n @-webkit-keyframes fadeOut {\n 100% {opacity:1;}\n 0% {opacity:0;}\n }\n \n @-o-keyframes fadeIn fadeOut {\n 100% {opacity:1;}\n 0% {opacity:0;}\n }\n \n @-ms-keyframes fadeIn fadeOut {\n 100% {opacity:1;}\n 0% {opacity:0;}\n }\n"]))); -var fadeInAnimation = styled.keyframes(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n @keyframes fadeIn {\n 0% {opacity:0;}\n 100% {opacity:1;}\n }\n \n @-moz-keyframes fadeIn {\n 0% {opacity:0;}\n 100% {opacity:1;}\n }\n \n @-webkit-keyframes fadeIn {\n 0% {opacity:0;}\n 100% {opacity:1;}\n }\n \n @-o-keyframes fadeIn {\n 0% {opacity:0;}\n 100% {opacity:1;}\n }\n \n @-ms-keyframes fadeIn {\n 0% {opacity:0;}\n 100% {opacity:1;}\n }\n"], ["\n @keyframes fadeIn {\n 0% {opacity:0;}\n 100% {opacity:1;}\n }\n \n @-moz-keyframes fadeIn {\n 0% {opacity:0;}\n 100% {opacity:1;}\n }\n \n @-webkit-keyframes fadeIn {\n 0% {opacity:0;}\n 100% {opacity:1;}\n }\n \n @-o-keyframes fadeIn {\n 0% {opacity:0;}\n 100% {opacity:1;}\n }\n \n @-ms-keyframes fadeIn {\n 0% {opacity:0;}\n 100% {opacity:1;}\n }\n"]))); -var templateObject_1$f, templateObject_2, templateObject_3, templateObject_4; - -var ChartContainer = styled__default.div(templateObject_1$g || (templateObject_1$g = __makeTemplateObject(["\n display: inline-block;\n text-align: center;\n margin: 0px;\n"], ["\n display: inline-block;\n text-align: center;\n margin: 0px;\n"]))); -var templateObject_1$g; - -var Svg$1 = styled__default(Icon)(templateObject_1$h || (templateObject_1$h = __makeTemplateObject([" \n width: 25px; \n height: 25px;\n flex-grow: 0;\n"], [" \n width: 25px; \n height: 25px;\n flex-grow: 0;\n"]))); -var FullScreenIcon = function () { return (React__default.createElement(Svg$1, { xmlns: "http://www.w3.org/2000/svg", fill: "white", width: 25, height: 25 }, - React__default.createElement("path", { d: "M5 5h5v2H7v3H5V5m9 0h5v5h-2V7h-3V5m3 9h2v5h-5v-2h3v-3m-7 3v2H5v-5h2v3h3Z" }))); }; -var templateObject_1$h; - -var Svg$2 = styled__default(Icon)(templateObject_1$i || (templateObject_1$i = __makeTemplateObject([" \n width: 25px; \n height: 25px;\n flex-grow: 0;\n"], [" \n width: 25px; \n height: 25px;\n flex-grow: 0;\n"]))); -var CloseFullScreenIcon = function () { return (React__default.createElement(Svg$2, { xmlns: "http://www.w3.org/2000/svg", width: 25, height: 25, fill: "white" }, - React__default.createElement("path", { d: "M14 14h5v2h-3v3h-2v-5m-9 0h5v5H8v-3H5v-2m3-9h2v5H5V8h3V5m11 3v2h-5V5h2v3h3Z" }))); }; -var templateObject_1$i; - -var ResetZoomContainer = styled__default.div(templateObject_1$j || (templateObject_1$j = __makeTemplateObject(["\nvisibility: ", "\n"], ["\nvisibility: ", "\n"])), function (props) { return (props.isHidden ? 'hidden' : 'visible'); }); -var templateObject_1$j; - -// allows two top level containers: zoom and voronoi -var VictoryZoomVoronoiContainer = createContainer('zoom', 'voronoi'); -var shadedTermAreaText = 'Babies born in this shaded area\nare term. It is normal for\nbabies to lose weight over\nthe first two weeks of life.\nMedical review should be sought\nif weight has dropped by more\nthan 10% of birth weight or\nweight is still below birth weight\nthree weeks after birth.'; -function CentileChart(_a) { - var _b; - var chartsVersion = _a.chartsVersion, reference = _a.reference, title = _a.title, subtitle = _a.subtitle, measurementMethod = _a.measurementMethod, sex = _a.sex, childMeasurements = _a.childMeasurements, midParentalHeightData = _a.midParentalHeightData, enableZoom = _a.enableZoom, styles = _a.styles, enableExport = _a.enableExport, exportChartCallback = _a.exportChartCallback, clinicianFocus = _a.clinicianFocus; - var _c = React.useState(null), userDomains = _c[0], setUserDomains = _c[1]; - var _d = React.useState(childMeasurements), storedChildMeasurements = _d[0], setStoredChildMeasurements = _d[1]; - var _e = defaultToggles(childMeasurements), defaultShowCorrected = _e.defaultShowCorrected, defaultShowChronological = _e.defaultShowChronological, showToggle = _e.showToggle; - var _f = React.useState(defaultShowChronological), showChronologicalAge = _f[0], setShowChronologicalAge = _f[1]; - var _g = React.useState(defaultShowCorrected), showCorrectedAge = _g[0], setShowCorrectedAge = _g[1]; - var chartRef = React.useRef(); - var _h = React.useState(false), active = _h[0], setActive = _h[1]; - var _j = React.useState(true), fullScreen = _j[0], setFullScreen = _j[1]; - var _k = React.useMemo(function () { - return getDomainsAndData(storedChildMeasurements, sex, measurementMethod, reference, showCorrectedAge, showChronologicalAge); - }, [storedChildMeasurements, sex, measurementMethod, reference, showCorrectedAge, showChronologicalAge]), bmiSDSData = _k.bmiSDSData, centileData = _k.centileData, computedDomains = _k.computedDomains, chartScaleType = _k.chartScaleType; - var updatedData = React.useMemo(function () { return getVisibleData(sex, measurementMethod, reference, userDomains); }, [ - sex, - measurementMethod, - reference, - userDomains, - ]); - var allowZooming = storedChildMeasurements.length > 0 && enableZoom ? true : false; - var domains = userDomains || computedDomains; - var isChartCrowded = isCrowded(domains, childMeasurements); - var pubertyThresholds = null; - if (reference === 'uk-who' && measurementMethod === 'height') { - pubertyThresholds = makePubertyThresholds(domains, sex); - } - var filteredMidParentalHeightData = React.useMemo(function () { return getFilteredMidParentalHeightData(reference, childMeasurements, midParentalHeightData, sex); }, [ - reference, - childMeasurements, - midParentalHeightData, - sex - ]); - // Create the shaded area at term - var termAreaData = null; - if (((_b = childMeasurements[0]) === null || _b === void 0 ? void 0 : _b.birth_data.gestation_weeks) >= 37 && - measurementMethod === 'weight' && - reference === 'uk-who' && - (domains === null || domains === void 0 ? void 0 : domains.x[0]) < 0.038329911019849415 && // 2 weeks postnatal - (domains === null || domains === void 0 ? void 0 : domains.x[1]) >= -0.057494866529774126 // 37 weeks gest - ) { - termAreaData = [ - { - x: -0.057494866529774126, - y: domains.y[1], - y0: domains.y[0], - l: shadedTermAreaText, - }, - { - x: 0.038329911019849415, - y: domains.y[1], - y0: domains.y[0], - l: shadedTermAreaText, - }, - ]; - } - // cut and paste action - var exportPressed = function () { - if (enableExport) { - setActive(true); - exportChartCallback(chartRef.current.firstChild); // this passes the raw SVG back to the client for converting - } - }; - // label fade on cut - var labelFadeEnd = function () { - setActive(false); - }; - // full screen button action - var fullScreenPressed = function () { - setFullScreen(!fullScreen); - fullScreen ? setStoredChildMeasurements([]) : setStoredChildMeasurements(childMeasurements); - }; - // toggle between corrected/uncorrected/both - var onSelectRadioButton = function (event) { - switch (event.target.value) { - case 'unadjusted': - setShowChronologicalAge(true); - setShowCorrectedAge(false); - break; - case 'adjusted': - setShowChronologicalAge(false); - setShowCorrectedAge(true); - break; - case 'both': - setShowChronologicalAge(true); - setShowCorrectedAge(true); - break; - default: - console.warn('Fall through case on toggle adjusted age function'); - } - setUserDomains(null); - }; - var handleZoomChange = function (domain) { - setUserDomains(domain); - }; - // always reset zoom to default when measurements array changes - React.useLayoutEffect(function () { - setUserDomains(null); - }, [storedChildMeasurements]); - return (React__default.createElement(MainContainer, null, - React__default.createElement(LogoContainer, null, - React__default.createElement("div", null, - React__default.createElement("img", { src: img, width: 24, height: 24 }), - React__default.createElement(VersionLabel, { fontFamily: styles.chartTitle.fontFamily }, chartsVersion)), - React__default.createElement("img", { src: img$1, width: 18, height: 18 })), - React__default.createElement(TitleContainer, null, - React__default.createElement(ChartTitle, __assign({}, styles.chartTitle), title), - React__default.createElement(ChartTitle, __assign({}, styles.chartSubTitle), subtitle)), - React__default.createElement(ChartContainer, null, - React__default.createElement(VictoryChart, { width: styles.chartWidth, height: styles.chartHeight, padding: styles.chartPadding, style: styles.chartMisc, domain: computedDomains, containerComponent: React__default.createElement(VictoryZoomVoronoiContainer, { containerRef: function (ref) { chartRef.current = ref; }, allowZoom: allowZooming, allowPan: allowZooming, onZoomDomainChange: handleZoomChange, zoomDomain: domains, labelComponent: React__default.createElement(VictoryTooltip, { constrainToVisibleArea: true, pointerLength: 5, cornerRadius: 0, flyoutStyle: styles.toolTipFlyout, style: styles.toolTipMain }), labels: function (_a) { - var datum = _a.datum; - // This the tool tip text, and accepts a large number of arguments - // tool tips return contextual information for each datapoint, as well as the centile - // and SDS lines, as well as bone ages, events and midparental heights - return tooltipText(reference, measurementMethod, datum, midParentalHeightData, clinicianFocus, sex); - }, voronoiBlacklist: ['linkLine', 'chronologicalboneagelinkline', 'correctedboneagelinkline'] }) }, - /* Term child shaded area: */ - termAreaData !== null && React__default.createElement(VictoryArea$1, { style: styles.termArea, data: termAreaData }), - React__default.createElement(VictoryAxis$1, { label: xAxislabel(chartScaleType, domains), style: styles.xAxis, tickValues: tailoredXTickValues[chartScaleType], tickLabelComponent: React__default.createElement(RenderTickLabel, { specificStyle: styles.xTicklabel, chartScaleType: chartScaleType, domains: domains }), gridComponent: React__default.createElement(CustomGridComponent, { chartScaleType: chartScaleType }) }), - /* render the y axis */ - React__default.createElement(VictoryAxis$1, { minDomain: 0, label: yAxisLabel(measurementMethod, false), style: styles.yAxis, dependentAxis: true }), - // delayed puberty area: - pubertyThresholds !== null && (React__default.createElement(VictoryArea$1, { data: delayedPubertyThreshold(sex), y0: function (d) { return lowerPubertyBorder(d, sex); }, style: styles.delayedPubertyArea, name: "delayed" })), - reference === "uk-who" && measurementMethod === "height" && filteredMidParentalHeightData && - filteredMidParentalHeightData.map(function (reference, index) { - // this function filters the midparental height centile data to only those values - // one month either side of the most recent measurement, or 20 y if no measurements - // supplied. - var lowerData = reference.lowerParentalCentile; - var midData = reference.midParentalCentile; - var upperData = reference.upperParentalCentile; - return (React__default.createElement(VictoryGroup, { key: 'midparentalCentileDataBlock' + index }, - upperData.map(function (centile, centileIndex) { - // area lower and and upper boundaries - var newData = centile.data.map(function (data, index) { - var o = Object.assign({}, data); - o.y0 = lowerData[centileIndex].data[index].y; - return o; - }); - return (React__default.createElement(VictoryArea$1, { name: "areaMPH", key: centile.centile + '-area-' + centileIndex, data: newData, style: __assign({}, styles.midParentalArea) })); - }), - lowerData.map(function (lowercentile, centileIndex) { - return (React__default.createElement(VictoryLine$1, { name: "lowerCentileMPH", key: lowercentile.centile + '-' + centileIndex, padding: { top: 20, bottom: 20 }, data: lowercentile.data, style: styles.midParentalCentile })); - }), - midData.map(function (centile, centileIndex) { - return (React__default.createElement(VictoryLine$1, { name: "centileMPH", key: centile.centile + '-' + centileIndex, padding: { top: 20, bottom: 20 }, data: centile.data, style: styles.midParentalCentile })); - }), - upperData.map(function (uppercentile, centileIndex) { - return (React__default.createElement(VictoryLine$1, { name: "upperCentileMPH", key: uppercentile.centile + '-' + centileIndex, padding: { top: 20, bottom: 20 }, data: uppercentile.data, style: styles.midParentalCentile })); - }))); - }), - centileData && - centileData.map(function (referenceData, index) { - return (React__default.createElement(VictoryGroup, { key: 'centileDataBlock' + index, name: 'centileLineGroup' }, referenceData.map(function (centile, centileIndex) { - // BMI charts also have SDS lines at -5, -4, -3, -2, 2, 3, 4, 5 - if (centileIndex % 2 === 0) { - // even index - centile is dashed - return (React__default.createElement(VictoryLine$1, { name: 'centileLine-' + centileIndex, key: centile.centile + '-' + centileIndex, padding: { top: 20, bottom: 20 }, data: centile.data, style: styles.dashedCentile })); - } - else { - // uneven index - centile is continuous - return (React__default.createElement(VictoryLine$1, { name: 'centileLine-' + centileIndex, key: centile.centile + '-' + centileIndex, padding: { top: 20, bottom: 20 }, data: centile.data, style: styles.continuousCentile })); - } - }))); - }), - /* BMI SDS lines */ - measurementMethod === "bmi" && bmiSDSData && - bmiSDSData.map(function (sdsReferenceData, index) { - return (React__default.createElement(VictoryGroup, { key: 'sdsDataBlock' + index, name: 'sdsLineGroup' }, sdsReferenceData.map(function (sdsLine, sdsIndex) { - // BMI charts have SDS lines at -5, -4, -3, 3, 3.33, 3.67, 4 - // sds line is dashed - return (React__default.createElement(VictoryLine$1, { name: 'sdsLine-' + sdsIndex, key: sdsLine.sds + '-' + sdsIndex, padding: { top: 20, bottom: 20 }, data: sdsLine.data, style: styles.sdsLine })); - }))); - }), - // puberty threshold lines uk90: - pubertyThresholds !== null && - pubertyThresholds.map(function (dataArray) { - if (dataArray[0].x > domains.x[0] && dataArray[1].x < domains.x[1]) { - return (React__default.createElement(VictoryLine$1, { key: dataArray[0].x, name: "puberty-" + dataArray[0].x, style: styles.delayedPubertyThresholdLine, data: dataArray, labels: function (_a) { - var datum = _a.datum; - return datum.label; - }, labelComponent: React__default.createElement(VictoryLabel, { textAnchor: "start", angle: -90, dx: 5, dy: 10, style: styles.delayedPubertyThresholdLabel }) })); - } - else { - return null; - } - }), - childMeasurements.map(function (childMeasurement, index) { - if (childMeasurement.measurement_calculated_values.corrected_measurement_error || - childMeasurement.measurement_calculated_values.chronological_measurement_error) { - return null; - } - var chronData = { - age_type: 'chronological_age', - age_error: childMeasurement.measurement_dates.chronological_decimal_age_error, - b: childMeasurement.bone_age.bone_age, - bone_age_label: childMeasurement.bone_age.bone_age_text, - bone_age_sds: childMeasurement.bone_age.bone_age_sds, - bone_age_centile: childMeasurement.bone_age.bone_age_centile, - bone_age_type: childMeasurement.bone_age.bone_age_type, - calendar_age: childMeasurement.measurement_dates.chronological_calendar_age, - centile: childMeasurement.measurement_calculated_values.chronological_centile, - centile_band: childMeasurement.measurement_calculated_values.chronological_centile_band, - clinician_comment: childMeasurement.measurement_dates.comments.clinician_chronological_decimal_age_comment, - lay_comment: childMeasurement.measurement_dates.comments.lay_chronological_decimal_age_comment, - observation_date: new Date(childMeasurement.measurement_dates.observation_date).toLocaleDateString('en-UK'), - observation_value_error: childMeasurement.child_observation_value.observation_value_error, - x: childMeasurement.measurement_dates.chronological_decimal_age, - y: childMeasurement.child_observation_value.observation_value, - sds: childMeasurement.measurement_calculated_values.chronological_sds - }; - var correctData = { - age_type: 'corrected_age', - age_error: childMeasurement.measurement_dates.corrected_decimal_age_error, - b: childMeasurement.bone_age.bone_age, - bone_age_label: childMeasurement.bone_age.bone_age_text, - bone_age_sds: childMeasurement.bone_age.bone_age_sds, - bone_age_centile: childMeasurement.bone_age.bone_age_centile, - bone_age_type: childMeasurement.bone_age.bone_age_type, - calendar_age: childMeasurement.measurement_dates.corrected_calendar_age, - centile: childMeasurement.measurement_calculated_values.corrected_centile, - centile_band: childMeasurement.measurement_calculated_values.corrected_centile_band, - clinician_comment: childMeasurement.measurement_dates.comments.clinician_corrected_decimal_age_comment, - lay_comment: childMeasurement.measurement_dates.comments.lay_corrected_decimal_age_comment, - observation_date: new Date(childMeasurement.measurement_dates.observation_date).toLocaleDateString('en-UK'), - observation_value_error: childMeasurement.child_observation_value.observation_value_error, - x: childMeasurement.measurement_dates.corrected_decimal_age, - y: childMeasurement.child_observation_value.observation_value, - sds: childMeasurement.measurement_calculated_values.corrected_sds - }; - // const chronData: any = { - // ...childMeasurement.plottable_data.centile_data.chronological_decimal_age_data, observationDate: new Date(childMeasurement.measurement_dates.observation_date).toLocaleDateString('en-UK'), sds: childMeasurement.measurement_calculated_values.chronological_sds - // }; - // const correctData: any = { - // ...childMeasurement.plottable_data.centile_data.corrected_decimal_age_data, observationDate: new Date(childMeasurement.measurement_dates.observation_date).toLocaleDateString('en-UK'), sds: childMeasurement.measurement_calculated_values.corrected_sds - // }; - if (isChartCrowded) { - chronData.size = 1.5; - correctData.size = 1.5; - } - else { - chronData.size = 3; - correctData.size = 3; - } - return (React__default.createElement(VictoryGroup, { key: 'measurement' + index }, - childMeasurement.events_data.events_text && childMeasurement.events_data.events_text.length > 0 && (showChronologicalAge && !showCorrectedAge ? - // Events against chronological age only if corrected age not showing - React__default.createElement(VictoryScatter$1, { name: "eventcaret", data: [{ x: childMeasurement.measurement_dates.chronological_decimal_age, y: childMeasurement.child_observation_value.observation_value }], dataComponent: React__default.createElement(EventCaret, { eventsText: childMeasurement.events_data.events_text }) }) - : - // Events against corrected age - React__default.createElement(VictoryScatter$1, { name: "eventcaret", data: [{ x: childMeasurement.measurement_dates.corrected_decimal_age, y: childMeasurement.child_observation_value.observation_value }], dataComponent: React__default.createElement(EventCaret, { eventsText: childMeasurement.events_data.events_text }) })), - showChronologicalAge && childMeasurement.bone_age.bone_age && (showChronologicalAge || showCorrectedAge) && !(showCorrectedAge && showChronologicalAge) && // bone age linked to chronological age - React__default.createElement(VictoryScatter$1 // bone age - , { name: "chronologicalboneage", data: [chronData], x: "b", y: "y", size: 15, dataComponent: React__default.createElement(XPoint, { isBoneAge: true, colour: styles.measurementPoint.data.fill }) }), - showCorrectedAge && childMeasurement.bone_age.bone_age && // bone age linked to corrected age - React__default.createElement(VictoryScatter$1 // bone age - , { name: "correctedboneage", data: [correctData], x: "b", y: "y", size: 15, dataComponent: React__default.createElement(XPoint, { isBoneAge: true, colour: styles.measurementPoint.data.fill }) }), - showChronologicalAge && !showCorrectedAge && childMeasurement.bone_age.bone_age && // bone age line linked to chronological age - React__default.createElement(VictoryLine$1 // bone age link line - , { name: "chronologicalboneagelinkline", data: [{ x: chronData.x, y: chronData.y }, { x: chronData.b, y: chronData.y }], style: { - data: { - strokeWidth: 2, - stroke: '#A9A9A9', - strokeDasharray: '3, 3', - } - } }), - showCorrectedAge && childMeasurement.bone_age.bone_age && // bone age line linked to corrected age - React__default.createElement(VictoryLine$1 // bone age link line - , { name: "correctedboneagelinkline", data: [{ x: correctData.x, y: correctData.y }, { x: correctData.b, y: correctData.y }], style: { - data: { - strokeWidth: 2, - stroke: '#A9A9A9', - strokeDasharray: '3, 3', - } - } }), - showChronologicalAge && (React__default.createElement(VictoryScatter$1 // chronological age - , { data: [chronData], symbol: "circle", style: styles.measurementPoint, name: "chronological_age" })), - showCorrectedAge && (React__default.createElement(VictoryScatter$1 // corrected age - a custom component that renders a cross - , { data: [correctData], dataComponent: React__default.createElement(XPoint, { isBoneAge: false, colour: "black" }), style: styles.measurementPoint, name: "corrected_age" })), - showChronologicalAge && - showCorrectedAge && ( // only show the line if both cross and dot are rendered - React__default.createElement(VictoryLine$1, { name: "linkLine", style: styles.measurementLinkLine, data: [chronData, correctData] })))); - }))), - (showToggle || allowZooming || enableExport) && (React__default.createElement(ButtonContainer, null, - React__default.createElement(TwoButtonContainer, null, - childMeasurements.length > 0 && - React__default.createElement(FullScreenButtonWrapper, null, - React__default.createElement(StyledFullScreenButton, { onClick: function () { return fullScreenPressed(); }, color: styles.toggleStyle.activeColour, size: 5 }, fullScreen ? - React__default.createElement(FullScreenIcon, null) - : - React__default.createElement(CloseFullScreenIcon, null))), - enableExport && (React__default.createElement(ShareButtonWrapper, null, - React__default.createElement(StyledShareButton, { color: styles.toggleStyle.activeColour, size: 5, onClick: exportPressed }, - React__default.createElement(ShareIcon, null)), - React__default.createElement(CopiedLabel, { active: active, onAnimationEnd: labelFadeEnd }, "Copied!")))), - showToggle && (React__default.createElement(StyledRadioButtonGroup, __assign({}, styles.toggleStyle, { handleClick: onSelectRadioButton, correctedAge: showCorrectedAge, chronologicalAge: showChronologicalAge, className: "toggleButtons" }))), - React__default.createElement(ResetZoomContainer, { isHidden: !allowZooming }, - React__default.createElement(StyledResetZoomButton, __assign({}, styles.toggleStyle, { onClick: function () { return setUserDomains(null); }, enabled: userDomains !== null }), "Reset Zoom")))))); -} - -function sdsTooltipText(datum) { - var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6; - /* - Returns tool tip labels for SDS charts. - */ - if (datum.datum.childName === 'mid-parental-sds') { - return "Midparental Height SDS: " + (datum.datum.y > 0 ? '+' : '') + Math.round(datum.datum.y * 1000) / 1000; - } - // use childName to identify if this is a corrected or chronological age - var array = datum.datum.childName.split('-'); - // set the measurement methods - var measurementMethod = array[1]; - var finalString = ""; - if (measurementMethod == "height") { - finalString = "Height"; - } - if (measurementMethod == "weight") { - finalString = "Weight"; - } - if (measurementMethod == "bmi") { - finalString = "Body Mass Index"; - } - if (measurementMethod == "ofc") { - finalString = "Head Circumference"; - } - // concatenate to form final string - var finalLabel = ""; - // set the ages - var correctedChronologicalText = "Unadjusted Age: "; - if (array[0] === "corrected") { - correctedChronologicalText = "Adjusted Age: "; - if ((_d = (_c = (_b = (_a = datum === null || datum === void 0 ? void 0 : datum.datum) === null || _a === void 0 ? void 0 : _a.plottable_data) === null || _b === void 0 ? void 0 : _b.sds_data) === null || _c === void 0 ? void 0 : _c.corrected_decimal_age_data) === null || _d === void 0 ? void 0 : _d.corrected_gestational_age) { - correctedChronologicalText = "Corrected Gestational Age: "; - } - finalLabel = finalString + " SDS: " + Math.round(datum.datum.measurement_calculated_values.corrected_sds * 1000) / 1000 + "\n" + correctedChronologicalText + ((_e = datum.datum.measurement_dates.corrected_calendar_age) !== null && _e !== void 0 ? _e : datum.datum.plottable_data.sds_data.corrected_decimal_age_data.corrected_gestational_age); - } - else { - finalLabel = finalString + " SDS: " + Math.round(datum.datum.measurement_calculated_values.chronological_sds * 1000) / 1000 + "\n" + correctedChronologicalText + datum.datum.measurement_dates.chronological_calendar_age; - } - // set the errors to tooltips if present - if (((_h = (_g = (_f = datum.datum.plottable_data) === null || _f === void 0 ? void 0 : _f.sds_data) === null || _g === void 0 ? void 0 : _g.corrected_decimal_age_data) === null || _h === void 0 ? void 0 : _h.age_error) || ((_l = (_k = (_j = datum.datum.plottable_data) === null || _j === void 0 ? void 0 : _j.sds_data) === null || _k === void 0 ? void 0 : _k.chronological_decimal_age_data) === null || _l === void 0 ? void 0 : _l.age_error)) { - finalLabel += (_q = (_p = (_o = (_m = datum.datum.plottable_data) === null || _m === void 0 ? void 0 : _m.sds_data) === null || _o === void 0 ? void 0 : _o.corrected_decimal_age_data) === null || _p === void 0 ? void 0 : _p.age_error) !== null && _q !== void 0 ? _q : (_t = (_s = (_r = datum.datum.plottable_data) === null || _r === void 0 ? void 0 : _r.sds_data) === null || _s === void 0 ? void 0 : _s.chronological_decimal_age_data) === null || _t === void 0 ? void 0 : _t.age_error; - } - if (((_w = (_v = (_u = datum.datum.plottable_data) === null || _u === void 0 ? void 0 : _u.sds_data) === null || _v === void 0 ? void 0 : _v.corrected_decimal_age_data) === null || _w === void 0 ? void 0 : _w.observation_value_error) || ((_z = (_y = (_x = datum.datum.plottable_data) === null || _x === void 0 ? void 0 : _x.sds_data) === null || _y === void 0 ? void 0 : _y.chronological_decimal_age_data) === null || _z === void 0 ? void 0 : _z.observation_value_error)) { - finalLabel += (_3 = (_2 = (_1 = (_0 = datum.datum.plottable_data) === null || _0 === void 0 ? void 0 : _0.sds_data) === null || _1 === void 0 ? void 0 : _1.corrected_decimal_age_data) === null || _2 === void 0 ? void 0 : _2.observation_value_error) !== null && _3 !== void 0 ? _3 : (_6 = (_5 = (_4 = datum.datum.plottable_data) === null || _4 === void 0 ? void 0 : _4.sds_data) === null || _5 === void 0 ? void 0 : _5.chronological_decimal_age_data) === null || _6 === void 0 ? void 0 : _6.observation_value_error; - } - return finalLabel; -} - -function createSDSPointMouseOverObject(styles) { - /* - Takes styles object from SDS chart - This function creates an array of Victory Events, which trigger onMouseOver of SDS chart measurement - data points and highlight the series in a different colour specified by the styles object (passed in from the client) - */ - var returnArray = []; - var _loop_1 = function (item) { - var redObject = { - childName: [ - "chronological-" + item + "-line", - "corrected-" + item + "-line", - "corrected-" + item + "-scatter", - "chronological-" + item + "-scatter", - "linkLine-" + item - ], - target: "data", - eventHandlers: { - onMouseOver: function () { - return [ - { - childName: [ - "chronological-" + item + "-line", - "corrected-" + item + "-line", - "linkLine-" + item - ], - mutation: function () { - return { - style: { - stroke: styles.toolTipFlyout.stroke, - } - }; - } - }, - { - childName: [ - "corrected-" + item + "-scatter", - "chronological-" + item + "-scatter", - ], - mutation: function () { - return { - style: { - fill: styles.toolTipFlyout.stroke - } - }; - } - } - ]; - }, - onMouseOut: function () { - return [ - { - childName: [ - "chronological-" + item + "-line", - "corrected-" + item + "-line", - "corrected-" + item + "-scatter", - "chronological-" + item + "-scatter", - "linkLine-" + item - ], - mutation: function () { - return null; - } - } - ]; - } - } - }; - returnArray.push(redObject); - }; - for (var _i = 0, _a = ["height", "weight", "ofc", "bmi"]; _i < _a.length; _i++) { - var item = _a[_i]; - _loop_1(item); - } - return returnArray; -} - -var css_248z$1 = ""; -styleInject(css_248z$1); - -var generateMidParentalHeightSDSData = function (domains, midParentalHeightData) { - /* - Generates data for a midparental line using the margins of the chart - */ - if (midParentalHeightData === null || midParentalHeightData === void 0 ? void 0 : midParentalHeightData.mid_parental_height_sds) { - var array = []; - var x = domains.x[0]; - while (x <= domains.x[1]) { - array.push({ - x: x, - y: midParentalHeightData.mid_parental_height_sds - }); - x += 0.25; - } - return array; - } - else { - return null; - } -}; - -var symbolForMeasurementType = function (measurementType) { - switch (measurementType) { - case ('height'): { - return 'circle'; - } - case ('weight'): { - return 'triangleUp'; - } - case ('ofc'): { - return 'square'; - } - case ('bmi'): { - return 'diamond'; - } - default: { - return 'circle'; - } - } -}; - -var nameForMeasurementMethod = function (measurementMethod) { - var name = "Height"; - if (measurementMethod === "weight") { - name = "Weight"; - } - if (measurementMethod === "bmi") { - name = "Body Mass Index"; - } - if (measurementMethod === "ofc") { - name = "Head Circumference"; - } - return name; -}; - -var selectedMeasurementMethods = function (childMeasurements, styles) { - var finalList = []; - if (childMeasurements.height.length > 0) { - var symbol = symbolForMeasurementType("height"); - var name_1 = nameForMeasurementMethod("height"); - finalList.push({ - name: name_1, - symbol: { - fill: styles.heightSDS.data.stroke, - type: symbol - }, - labels: { - size: 8 - } - }); - } - if (childMeasurements.weight.length > 0) { - var symbol = symbolForMeasurementType("weight"); - var name_2 = nameForMeasurementMethod("weight"); - finalList.push({ - name: name_2, - symbol: { - fill: styles.weightSDS.data.stroke, - type: symbol - }, - labels: { - size: 8 - } - }); - } - if (childMeasurements.bmi.length > 0) { - var symbol = symbolForMeasurementType("bmi"); - var name_3 = nameForMeasurementMethod("bmi"); - finalList.push({ - name: name_3, - symbol: { - fill: styles.bmiSDS.data.stroke, - type: symbol - }, - labels: { - size: 8 - } - }); - } - if (childMeasurements.ofc.length > 0) { - var symbol = symbolForMeasurementType("ofc"); - var name_4 = nameForMeasurementMethod("ofc"); - finalList.push({ - name: name_4, - symbol: { - fill: styles.ofcSDS.data.stroke, - type: symbol - }, - labels: { - size: 8 - } - }); - } - return finalList; -}; - -var measurementMethodForName = function (name) { - var measurementMethod = "height"; - if (name === "Weight") { - measurementMethod = "weight"; - } - if (name === "Body Mass Index") { - measurementMethod = "bmi"; - } - if (name === "Head Circumference") { - measurementMethod = "ofc"; - } - return measurementMethod; -}; - -var SDSChart = function (_a) { - var _b, _c, _d, _e; - var chartsVersion = _a.chartsVersion, reference = _a.reference, title = _a.title, subtitle = _a.subtitle, measurementMethod = _a.measurementMethod, childMeasurements = _a.childMeasurements, midParentalHeightData = _a.midParentalHeightData, sex = _a.sex, enableZoom = _a.enableZoom, styles = _a.styles, enableExport = _a.enableExport, exportChartCallback = _a.exportChartCallback; - var _f = React.useState(null), userDomains = _f[0], setUserDomains = _f[1]; - var measurements = []; - if (measurementMethod === "height") { - measurements = childMeasurements.height; - } - if (measurementMethod === "weight") { - measurements = childMeasurements.weight; - } - if (measurementMethod === "bmi") { - measurements = childMeasurements.bmi; - } - if (measurementMethod === "ofc") { - measurements = childMeasurements.ofc; - } - var _g = defaultToggles(measurements), defaultShowCorrected = _g.defaultShowCorrected, defaultShowChronological = _g.defaultShowChronological, showToggle = _g.showToggle; - var _h = React.useState(defaultShowChronological), showChronologicalAge = _h[0], setShowChronologicalAge = _h[1]; - var _j = React.useState(defaultShowCorrected), showCorrectedAge = _j[0], setShowCorrectedAge = _j[1]; - var chartRef = React.useRef(); - var _k = React.useState(false), active = _k[0], setActive = _k[1]; - var _l = React.useState(true), showHeight = _l[0], setShowHeight = _l[1]; - var _m = React.useState(true), showWeight = _m[0], setShowWeight = _m[1]; - var _o = React.useState(true), showBMI = _o[0], setShowBMI = _o[1]; - var _p = React.useState(true), showOFC = _p[0], setShowOFC = _p[1]; - var childMeasurementsByType = [ - { - measurementType: "height", - measurementTypeData: childMeasurements.height - }, - { - measurementType: "weight", - measurementTypeData: childMeasurements.weight - }, - { - measurementType: "bmi", - measurementTypeData: childMeasurements.bmi - }, - { - measurementType: "ofc", - measurementTypeData: childMeasurements.ofc - } - ]; - var legendMeasurements = React.useMemo( - // returns array of measurement methods and symbols for which there is data to display, for the legend - function () { return selectedMeasurementMethods(childMeasurements, styles); }, [childMeasurements, styles]); - var _q = React.useState(legendMeasurements), legendSelections = _q[0], setLegendSelections = _q[1]; - var termAreaData = null; - var shadedTermAreaText = 'Babies born in this shaded area\nare term. It is normal for\nbabies to lose weight over\nthe first two weeks of life.\nMedical review should be sought\nif weight has dropped by more\nthan 10% of birth weight or\nweight is still below birth weight\nthree weeks after birth.'; - var _r = React.useMemo(function () { - return getDomainsAndData(measurements, sex, measurementMethod, reference, showCorrectedAge, showChronologicalAge); - }, [childMeasurements, sex, measurementMethod, reference, showCorrectedAge, showChronologicalAge]), computedDomains = _r.computedDomains, chartScaleType = _r.chartScaleType; - var domains = userDomains || computedDomains; - var midParentalHeightSDSData = React.useMemo(function () { return generateMidParentalHeightSDSData(domains, midParentalHeightData); }, [ - domains, - midParentalHeightData - ]); - // set Y domains as the getDomainsAndData function returns only domains on measurement values, not SDS - var newLowerY = -2; - var newUpperY = 2; - // retrieve lower and upper values from measurements if supplied - // if lower than -2 of greater than 2, set these with padding to be the limits - if (childMeasurements[measurementMethod].length > 0) { - var lowestYMeasurement = childMeasurements[measurementMethod].reduce(function (a, b) { return a.plottable_data.sds_data.corrected_decimal_age_data.y < b.plottable_data.sds_data.corrected_decimal_age_data.y ? a : b; }); - var highestYMeasurement = childMeasurements[measurementMethod].reduce(function (a, b) { return a.plottable_data.sds_data.corrected_decimal_age_data.y > b.plottable_data.sds_data.corrected_decimal_age_data.y ? a : b; }); - var lowestYVal = lowestYMeasurement.plottable_data.sds_data.corrected_decimal_age_data.y - 0.25; // add 0.25 SDS padding - var highestYVal = highestYMeasurement.plottable_data.sds_data.corrected_decimal_age_data.y + 0.25; // add 0.25 SDS padding - newLowerY = lowestYVal < newLowerY ? lowestYVal : newLowerY; - newUpperY = highestYVal > newUpperY ? highestYVal : newUpperY; - } - if ((((_b = childMeasurements.height[0]) === null || _b === void 0 ? void 0 : _b.birth_data.gestation_weeks) >= 37 || - ((_c = childMeasurements.weight[0]) === null || _c === void 0 ? void 0 : _c.birth_data.gestation_weeks) >= 37 || - ((_d = childMeasurements.bmi[0]) === null || _d === void 0 ? void 0 : _d.birth_data.gestation_weeks) >= 37 || - ((_e = childMeasurements.ofc[0]) === null || _e === void 0 ? void 0 : _e.birth_data.gestation_weeks) >= 37) && - measurementMethod === 'weight' && - reference === 'uk-who' && - (domains === null || domains === void 0 ? void 0 : domains.x[0]) < 0.038329911019849415 && // 2 weeks postnatal - (domains === null || domains === void 0 ? void 0 : domains.x[1]) >= -0.057494866529774126 // 37 weeks gest - ) { - termAreaData = [ - { - x: -0.057494866529774126, - y: newUpperY, - y0: newLowerY, - l: shadedTermAreaText, - }, - { - x: 0.038329911019849415, - y: newUpperY, - y0: newLowerY, - l: shadedTermAreaText, - }, - ]; - } - var onSelectRadioButton = function (event) { - switch (event.target.value) { - case 'unadjusted': - setShowChronologicalAge(true); - setShowCorrectedAge(false); - break; - case 'adjusted': - setShowChronologicalAge(false); - setShowCorrectedAge(true); - break; - case 'both': - setShowChronologicalAge(true); - setShowCorrectedAge(true); - break; - default: - console.warn('Fall through case on toggle adjusted age function'); - } - setUserDomains(null); - }; - var exportPressed = function () { - if (enableExport) { - setActive(true); - exportChartCallback(chartRef.current.firstChild); // this passes the raw SVG back to the client for converting - } - }; - var labelFadeEnd = function () { - setActive(false); - }; - var chartEvents = createSDSPointMouseOverObject(styles); // highlight a given series on mouseover - return (React__default.createElement(MainContainer, null, - React__default.createElement(LogoContainer, null, - React__default.createElement("div", null, - React__default.createElement("img", { src: img, width: 24, height: 24 }), - React__default.createElement(VersionLabel, { fontFamily: styles.chartTitle.fontFamily }, chartsVersion)), - React__default.createElement("img", { src: img$1, width: 18, height: 18 })), - React__default.createElement(TitleContainer, null, - React__default.createElement(ChartTitle, __assign({}, styles.chartTitle), title), - React__default.createElement(ChartTitle, __assign({}, styles.chartSubTitle), subtitle)), - React__default.createElement(VictoryChart, { width: styles.chartWidth, height: styles.chartHeight, padding: styles.chartPadding, style: styles.chartMisc, containerComponent: React__default.createElement(VictoryVoronoiContainer, { containerRef: function (ref) { chartRef.current = ref; }, labelComponent: React__default.createElement(VictoryTooltip, { constrainToVisibleArea: true, pointerLength: 5, cornerRadius: 0, flyoutStyle: styles.toolTipFlyout, style: styles.toolTipMain }), labels: function (datum) { - return sdsTooltipText(datum); - }, voronoiBlacklist: [ - 'linkLine-height', - 'linkLine-weight', - 'linkLine-ofc', - 'linkLine-bmi', - 'chronological-height-line', - 'corrected-height-line', - 'chronological-weight-line', - 'corrected-weight-line', - 'chronological-bmi-line', - 'corrected-bmi-line', - 'chronological-ofc-line', - 'corrected-ofc-line' - ] }), events: chartEvents }, - /* Term child shaded area: */ - termAreaData !== null && React__default.createElement(VictoryArea$1, { style: styles.termArea, data: termAreaData }), - React__default.createElement(VictoryAxis$1, { domain: { x: [domains.x[0], domains.x[1]] }, label: xAxislabel(chartScaleType, domains), style: styles.xAxis, tickValues: tailoredXTickValues[chartScaleType], tickLabelComponent: React__default.createElement(RenderTickLabel, { domains: { x: [domains.x[0], domains.x[1]] }, specificStyle: styles.xTicklabel, chartScaleType: chartScaleType }), gridComponent: React__default.createElement(CustomGridComponent, { chartScaleType: chartScaleType }) }), - /* render the y axis */ - React__default.createElement(VictoryAxis$1, { domain: { y: [newLowerY, newUpperY] }, label: yAxisLabel(measurementMethod, true), tickValues: [-5.33, -4.67, -4.0, -3.33, -2.67, -2.0, -1.33, -0.67, 0, 0.67, 1.33, 2.0, 2.67, 3.33, 4.0, 4.67, 5.33], style: styles.yAxis, dependentAxis: true }), - childMeasurementsByType.map(function (measurementTypeItem, itemIndex) { - /* - Set the SDS line style and line colour. Note if not supplied from the client, the centile line colour is used, - with an opacity level set based on the itemIndex to differentiate the lines. This happens in the - makeAllStyles function. - Each line is associated with a scatter also, whose symbol varies - */ - var measurementStyles; - var linkLineStyles; - var showData; - if (measurementTypeItem.measurementType === "height") { - measurementStyles = styles === null || styles === void 0 ? void 0 : styles.heightSDS; - linkLineStyles = styles === null || styles === void 0 ? void 0 : styles.heightSDS; - showData = showHeight; - } - if (measurementTypeItem.measurementType === "weight") { - measurementStyles = styles === null || styles === void 0 ? void 0 : styles.weightSDS; - linkLineStyles = styles === null || styles === void 0 ? void 0 : styles.weightSDS; - showData = showWeight; - } - if (measurementTypeItem.measurementType === "bmi") { - measurementStyles = styles === null || styles === void 0 ? void 0 : styles.bmiSDS; - linkLineStyles = styles === null || styles === void 0 ? void 0 : styles.bmiSDS; - showData = showBMI; - } - if (measurementTypeItem.measurementType === "ofc") { - measurementStyles = styles === null || styles === void 0 ? void 0 : styles.ofcSDS; - linkLineStyles = styles === null || styles === void 0 ? void 0 : styles.ofcSDS; - showData = showOFC; - } - return (React__default.createElement(VictoryGroup, { key: measurementTypeItem.measurementType + "-" + itemIndex }, - showChronologicalAge && showData && - React__default.createElement(VictoryGroup, { key: "chronological-" + itemIndex, name: "chronological-" + measurementTypeItem.measurementType + "-group" }, - React__default.createElement(VictoryLine$1, { name: "chronological-" + measurementTypeItem.measurementType + "-line", data: measurementTypeItem.measurementTypeData, x: function (datum) { return datum.plottable_data.sds_data.chronological_decimal_age_data.x; }, y: function (datum) { return datum.plottable_data.sds_data.chronological_decimal_age_data.y; }, labelComponent: React__default.createElement(VictoryLabel, { renderInPortal: true, dx: 20, title: "height" }), style: measurementStyles }), - React__default.createElement(VictoryScatter$1, { data: measurementTypeItem.measurementTypeData, x: function (datum) { return datum.plottable_data.sds_data.chronological_decimal_age_data.x; }, y: function (datum) { return datum.plottable_data.sds_data.chronological_decimal_age_data.y; }, symbol: symbolForMeasurementType(measurementTypeItem.measurementType), style: { - data: { - fill: measurementStyles.data.stroke - } - }, name: "chronological-" + measurementTypeItem.measurementType + "-scatter" })), - showCorrectedAge && showData && - React__default.createElement(VictoryGroup, { key: "corrected-" + itemIndex, name: "corrected-" + measurementTypeItem.measurementType + "-group" }, - React__default.createElement(VictoryLine$1, { name: "corrected-" + measurementTypeItem.measurementType + "-line", data: measurementTypeItem.measurementTypeData, x: function (datum) { return datum.plottable_data.sds_data.corrected_decimal_age_data.x; }, y: function (datum) { return datum.plottable_data.sds_data.corrected_decimal_age_data.y; }, style: styles.dashedCentile }), - React__default.createElement(VictoryScatter$1, { data: measurementTypeItem.measurementTypeData, x: function (datum) { return datum.plottable_data.sds_data.corrected_decimal_age_data.x; }, y: function (datum) { return datum.plottable_data.sds_data.corrected_decimal_age_data.y; }, dataComponent: React__default.createElement(XPoint, { isBoneAge: false, isSDS: true, colour: measurementStyles.data.stroke }), style: { - data: { - fill: measurementStyles.data.stroke - } - }, name: "corrected-" + measurementTypeItem.measurementType + "-scatter" })), - showCorrectedAge && showChronologicalAge && showData && - measurementTypeItem.measurementTypeData.map(function (measurement, index) { - var chron = __assign({}, measurement.plottable_data.sds_data.chronological_decimal_age_data); - var correct = __assign({}, measurement.plottable_data.sds_data.corrected_decimal_age_data); - return React__default.createElement(VictoryLine$1, { key: "linkLine-" + measurementTypeItem.measurementType + "-" + index, name: "linkLine-" + measurementTypeItem.measurementType, data: [chron, correct], style: linkLineStyles }); - }))); - }), - (midParentalHeightData === null || midParentalHeightData === void 0 ? void 0 : midParentalHeightData.mid_parental_height_sds) && reference === "uk-who" && measurementMethod === "height" && - // only show midparental line if data present and height is selected - React__default.createElement(VictoryLine$1, { name: "mid-parental-sds", data: midParentalHeightSDSData, style: styles.midParentalSDS }), - React__default.createElement(VictoryLegend$1, { orientation: "vertical", x: styles.chartWidth - 200, y: 0, style: { - border: { - stroke: "black", - fill: "#FFFFFF" - }, - title: { - fontSize: 12 - } - }, borderPadding: { top: 10, bottom: 10, left: 15, right: 15 }, data: legendSelections, dataComponent: React__default.createElement(Point, null), name: "legend", title: ["(Show/Hide on select)"], events: [{ - target: "data", - eventHandlers: { - onClick: function () { - return [ - { - target: "data", - mutation: function (props) { - var fill = props.style && props.style.fill; - var name = measurementMethodForName(props.datum.name); - if (name === "height") { - setShowHeight(!showHeight); - } - if (name === "weight") { - setShowWeight(!showWeight); - } - if (name === "bmi") { - setShowBMI(!showBMI); - } - if (name === "ofc") { - setShowOFC(!showOFC); - } - return fill === "grey" ? null : { style: { fill: "grey" } }; - } - }, - { - target: "labels", - mutation: function (props) { - var fill = props.style && props.style.fill; - var name = measurementMethodForName(props.datum.name); - if (name === "height") { - setShowHeight(!showHeight); - } - if (name === "weight") { - setShowWeight(!showWeight); - } - if (name === "bmi") { - setShowBMI(!showBMI); - } - if (name === "ofc") { - setShowOFC(!showOFC); - } - return fill === "grey" ? null : { style: { fill: "grey" } }; - } - } - ]; - } - } - }] })), - (showToggle || enableExport) && (React__default.createElement(ButtonContainer, null, - enableExport && (React__default.createElement(ShareButtonWrapper, null, - React__default.createElement(StyledShareButton, { color: styles.toggleStyle.activeColour, size: 5, onClick: exportPressed }, - React__default.createElement(ShareIcon, null)), - React__default.createElement(CopiedLabel, { active: active, onAnimationEnd: labelFadeEnd }, "Copied!"))), - showToggle && (React__default.createElement(StyledRadioButtonGroup, __assign({}, styles.toggleStyle, { handleClick: onSelectRadioButton, correctedAge: showCorrectedAge, chronologicalAge: showChronologicalAge, className: "toggleButtons" }))))))); -}; - -var setOpacity = function (hex, alpha) { return "" + hex + Math.floor(alpha * 255).toString(16).padStart(2, "0"); }; - -var black = '#000000'; -var white = '#FFFFFF'; -var midGrey = '#b3b3b3'; -var lightGrey = '#d9d9d9'; -var lightLightGrey = "#f3f3f3"; -var lightPink = '#E497C1'; -var darkPink = '#cb3083'; -function makeAllStyles(chartStyle, axisStyle, gridlineStyle, centileStyle, sdsStyle, measurementStyle) { - var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38, _39, _40, _41, _42, _43, _44, _45, _46, _47, _48, _49, _50, _51, _52, _53, _54, _55, _56, _57, _58, _59, _60, _61, _62, _63, _64, _65, _66, _67, _68, _69, _70, _71, _72, _73, _74, _75, _76, _77, _78, _79, _80, _81, _82, _83, _84, _85, _86, _87, _88, _89, _90, _91, _92, _93, _94, _95, _96, _97, _98, _99, _100, _101, _102, _103, _104, _105, _106; - var newGridlineStyle = { - stroke: lightGrey, - strokeWidth: 0.25, - strokeDasharray: '', - }; - if ((gridlineStyle === null || gridlineStyle === void 0 ? void 0 : gridlineStyle.gridlines) === true) { - newGridlineStyle = { - stroke: (_a = gridlineStyle.stroke) !== null && _a !== void 0 ? _a : lightGrey, - strokeWidth: (_b = gridlineStyle.strokeWidth) !== null && _b !== void 0 ? _b : 0.25, - strokeDasharray: gridlineStyle.dashed ? '5 5' : '', - }; - } - else if ((gridlineStyle === null || gridlineStyle === void 0 ? void 0 : gridlineStyle.gridlines) === false) { - newGridlineStyle = { - stroke: undefined, - strokeWidth: 0, - strokeDasharray: '', - }; - } - return { - chartHeight: (_c = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.height) !== null && _c !== void 0 ? _c : 475, - chartWidth: (_d = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.width) !== null && _d !== void 0 ? _d : 700, - chartPadding: { - left: (_f = (_e = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.padding) === null || _e === void 0 ? void 0 : _e.left) !== null && _f !== void 0 ? _f : 50, - right: (_h = (_g = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.padding) === null || _g === void 0 ? void 0 : _g.right) !== null && _h !== void 0 ? _h : 50, - top: (_k = (_j = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.padding) === null || _j === void 0 ? void 0 : _j.top) !== null && _k !== void 0 ? _k : 25, - bottom: (_m = (_l = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.padding) === null || _l === void 0 ? void 0 : _l.bottom) !== null && _m !== void 0 ? _m : 40, - }, - chartMisc: { - background: { - fill: (_o = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.backgroundColour) !== null && _o !== void 0 ? _o : white, - }, - }, - toolTipFlyout: { - stroke: (_p = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.tooltipStroke) !== null && _p !== void 0 ? _p : midGrey, - fill: (_q = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.tooltipBackgroundColour) !== null && _q !== void 0 ? _q : midGrey, - }, - toolTipMain: { - textAnchor: 'start', - stroke: (_s = (_r = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.tooltipTextStyle) === null || _r === void 0 ? void 0 : _r.colour) !== null && _s !== void 0 ? _s : black, - strokeWidth: (_u = (_t = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.tooltipTextStyle) === null || _t === void 0 ? void 0 : _t.size) !== null && _u !== void 0 ? _u : 0.25, - fill: (_w = (_v = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.tooltipTextStyle) === null || _v === void 0 ? void 0 : _v.colour) !== null && _w !== void 0 ? _w : black, - fontFamily: (_y = (_x = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.tooltipTextStyle) === null || _x === void 0 ? void 0 : _x.name) !== null && _y !== void 0 ? _y : 'Montserrat', - fontWeight: (_0 = (_z = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.tooltipTextStyle) === null || _z === void 0 ? void 0 : _z.weight) !== null && _0 !== void 0 ? _0 : 'normal', - }, - chartTitle: { - fontFamily: (_2 = (_1 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.titleStyle) === null || _1 === void 0 ? void 0 : _1.name) !== null && _2 !== void 0 ? _2 : 'Arial', - color: (_4 = (_3 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.titleStyle) === null || _3 === void 0 ? void 0 : _3.colour) !== null && _4 !== void 0 ? _4 : black, - fontSize: (_6 = (_5 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.titleStyle) === null || _5 === void 0 ? void 0 : _5.size) !== null && _6 !== void 0 ? _6 : 14, - fontWeight: ((_7 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.titleStyle) === null || _7 === void 0 ? void 0 : _7.weight) === 'italic' ? 'normal' : (_9 = (_8 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.titleStyle) === null || _8 === void 0 ? void 0 : _8.weight) !== null && _9 !== void 0 ? _9 : 'bold', - fontStyle: ((_10 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.titleStyle) === null || _10 === void 0 ? void 0 : _10.weight) === 'italic' ? 'italic' : 'normal', - }, - chartSubTitle: { - fontFamily: (_12 = (_11 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.subTitleStyle) === null || _11 === void 0 ? void 0 : _11.name) !== null && _12 !== void 0 ? _12 : 'Arial', - color: (_14 = (_13 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.subTitleStyle) === null || _13 === void 0 ? void 0 : _13.colour) !== null && _14 !== void 0 ? _14 : black, - fontSize: (_16 = (_15 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.subTitleStyle) === null || _15 === void 0 ? void 0 : _15.size) !== null && _16 !== void 0 ? _16 : 14, - fontWeight: ((_17 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.subTitleStyle) === null || _17 === void 0 ? void 0 : _17.weight) === 'italic' ? 'normal' : (_19 = (_18 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.titleStyle) === null || _18 === void 0 ? void 0 : _18.weight) !== null && _19 !== void 0 ? _19 : 'normal', - fontStyle: ((_20 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.subTitleStyle) === null || _20 === void 0 ? void 0 : _20.weight) === 'italic' ? 'italic' : 'normal', - }, - termArea: { data: { fill: (_21 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.termFill) !== null && _21 !== void 0 ? _21 : midGrey, stroke: (_22 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.termStroke) !== null && _22 !== void 0 ? _22 : midGrey } }, - xAxis: { - axis: { - stroke: (_23 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.axisStroke) !== null && _23 !== void 0 ? _23 : black, - strokeWidth: 1.0, - }, - axisLabel: { - fontSize: (_25 = (_24 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.axisLabelTextStyle) === null || _24 === void 0 ? void 0 : _24.size) !== null && _25 !== void 0 ? _25 : 10, - padding: 20, - fill: (_27 = (_26 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.axisLabelTextStyle) === null || _26 === void 0 ? void 0 : _26.colour) !== null && _27 !== void 0 ? _27 : black, - fontFamily: (_29 = (_28 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.axisLabelTextStyle) === null || _28 === void 0 ? void 0 : _28.name) !== null && _29 !== void 0 ? _29 : 'Arial', - }, - ticks: { - stroke: (_31 = (_30 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.tickLabelTextStyle) === null || _30 === void 0 ? void 0 : _30.colour) !== null && _31 !== void 0 ? _31 : black, - }, - tickLabels: { - fontSize: (_33 = (_32 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.tickLabelTextStyle) === null || _32 === void 0 ? void 0 : _32.size) !== null && _33 !== void 0 ? _33 : 8, - padding: 5, - fill: (_35 = (_34 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.tickLabelTextStyle) === null || _34 === void 0 ? void 0 : _34.colour) !== null && _35 !== void 0 ? _35 : black, - color: (_37 = (_36 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.tickLabelTextStyle) === null || _36 === void 0 ? void 0 : _36.colour) !== null && _37 !== void 0 ? _37 : black, - fontFamily: (_39 = (_38 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.axisLabelTextStyle) === null || _38 === void 0 ? void 0 : _38.name) !== null && _39 !== void 0 ? _39 : 'Arial', - }, - grid: __assign({}, newGridlineStyle), - }, - xTicklabel: { - fill: (_41 = (_40 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.tickLabelTextStyle) === null || _40 === void 0 ? void 0 : _40.colour) !== null && _41 !== void 0 ? _41 : black, - fontSize: (_43 = (_42 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.tickLabelTextStyle) === null || _42 === void 0 ? void 0 : _42.size) !== null && _43 !== void 0 ? _43 : 8, - fontFamily: (_45 = (_44 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.tickLabelTextStyle) === null || _44 === void 0 ? void 0 : _44.name) !== null && _45 !== void 0 ? _45 : 'Arial', - }, - yAxis: { - axis: { - stroke: (_46 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.axisStroke) !== null && _46 !== void 0 ? _46 : black, - strokeWidth: 1.0, - }, - axisLabel: { - fontSize: (_48 = (_47 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.axisLabelTextStyle) === null || _47 === void 0 ? void 0 : _47.size) !== null && _48 !== void 0 ? _48 : 10, - padding: 25, - fill: (_50 = (_49 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.axisLabelTextStyle) === null || _49 === void 0 ? void 0 : _49.colour) !== null && _50 !== void 0 ? _50 : black, - fontFamily: (_52 = (_51 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.axisLabelTextStyle) === null || _51 === void 0 ? void 0 : _51.name) !== null && _52 !== void 0 ? _52 : 'Arial', - }, - ticks: { - stroke: (_54 = (_53 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.tickLabelTextStyle) === null || _53 === void 0 ? void 0 : _53.colour) !== null && _54 !== void 0 ? _54 : black, - }, - tickLabels: { - fontSize: (_56 = (_55 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.tickLabelTextStyle) === null || _55 === void 0 ? void 0 : _55.size) !== null && _56 !== void 0 ? _56 : 8, - padding: 5, - fill: (_58 = (_57 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.tickLabelTextStyle) === null || _57 === void 0 ? void 0 : _57.colour) !== null && _58 !== void 0 ? _58 : black, - fontFamily: (_60 = (_59 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.axisLabelTextStyle) === null || _59 === void 0 ? void 0 : _59.name) !== null && _60 !== void 0 ? _60 : 'Arial', - }, - grid: __assign({}, newGridlineStyle), - }, - delayedPubertyArea: { - data: { - stroke: (_61 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.delayedPubertyAreaFill) !== null && _61 !== void 0 ? _61 : midGrey, - fill: (_62 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.delayedPubertyAreaFill) !== null && _62 !== void 0 ? _62 : midGrey, - strokeWidth: (_63 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.centileStrokeWidth) !== null && _63 !== void 0 ? _63 : 0.5, - }, - }, - delayedPubertyThresholdLine: { - data: { - stroke: (_64 = measurementStyle === null || measurementStyle === void 0 ? void 0 : measurementStyle.measurementFill) !== null && _64 !== void 0 ? _64 : black, - strokeWidth: 1, - }, - }, - delayedPubertyThresholdLabel: { - fontSize: 9, - fill: (_66 = (_65 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.axisLabelTextStyle) === null || _65 === void 0 ? void 0 : _65.colour) !== null && _66 !== void 0 ? _66 : black, - fontFamily: (_68 = (_67 = axisStyle === null || axisStyle === void 0 ? void 0 : axisStyle.axisLabelTextStyle) === null || _67 === void 0 ? void 0 : _67.name) !== null && _68 !== void 0 ? _68 : 'Arial', - textAlign: 'start', - }, - sdsLine: { - data: { - stroke: (_69 = centileStyle.sdsStroke) !== null && _69 !== void 0 ? _69 : '#A9A9A9', - strokeWidth: (_70 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.sdsStrokeWidth) !== null && _70 !== void 0 ? _70 : 1.0, - strokeLinecap: 'round', - strokeDasharray: '5 5', - } - }, - dashedCentile: { - data: { - stroke: (_71 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.centileStroke) !== null && _71 !== void 0 ? _71 : black, - strokeWidth: (_72 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.centileStrokeWidth) !== null && _72 !== void 0 ? _72 : 1.5, - strokeLinecap: 'round', - strokeDasharray: '5 5', - }, - }, - continuousCentile: { - data: { - stroke: (_73 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.centileStroke) !== null && _73 !== void 0 ? _73 : black, - strokeWidth: (_74 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.centileStrokeWidth) !== null && _74 !== void 0 ? _74 : 1.5, - strokeLinecap: 'round', - }, - }, - heightSDS: { - data: { - stroke: (_75 = sdsStyle === null || sdsStyle === void 0 ? void 0 : sdsStyle.heightStroke) !== null && _75 !== void 0 ? _75 : setOpacity((_76 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.centileStroke) !== null && _76 !== void 0 ? _76 : black, 1.0), - strokeWidth: (_77 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.centileStrokeWidth) !== null && _77 !== void 0 ? _77 : 1.5, - strokeLinecap: 'round', - } - }, - weightSDS: { - data: { - stroke: (_78 = sdsStyle === null || sdsStyle === void 0 ? void 0 : sdsStyle.weightStroke) !== null && _78 !== void 0 ? _78 : setOpacity((_79 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.centileStroke) !== null && _79 !== void 0 ? _79 : black, 0.5), - strokeWidth: (_80 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.centileStrokeWidth) !== null && _80 !== void 0 ? _80 : 1.5, - strokeLinecap: 'round', - } - }, - ofcSDS: { - data: { - stroke: (_81 = sdsStyle === null || sdsStyle === void 0 ? void 0 : sdsStyle.ofcStroke) !== null && _81 !== void 0 ? _81 : setOpacity((_82 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.centileStroke) !== null && _82 !== void 0 ? _82 : black, 0.25), - strokeWidth: (_83 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.centileStrokeWidth) !== null && _83 !== void 0 ? _83 : 1.5, - strokeLinecap: 'round', - } - }, - bmiSDS: { - data: { - stroke: (_84 = sdsStyle === null || sdsStyle === void 0 ? void 0 : sdsStyle.bmiStroke) !== null && _84 !== void 0 ? _84 : setOpacity((_85 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.centileStroke) !== null && _85 !== void 0 ? _85 : black, 0.125), - strokeWidth: (_86 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.centileStrokeWidth) !== null && _86 !== void 0 ? _86 : 1.5, - strokeLinecap: 'round', - } - }, - midParentalCentile: { - data: { - stroke: (_87 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.midParentalCentileStroke) !== null && _87 !== void 0 ? _87 : black, - strokeWidth: (_88 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.midParentalCentileStrokeWidth) !== null && _88 !== void 0 ? _88 : 1.5, - strokeLinecap: 'round', - strokeOpacity: 1.0, - } - }, - midParentalSDS: { - data: { - stroke: (_89 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.midParentalCentileStroke) !== null && _89 !== void 0 ? _89 : black, - strokeWidth: (_90 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.midParentalCentileStrokeWidth) !== null && _90 !== void 0 ? _90 : 1.5, - strokeLinecap: 'round', - strokeOpacity: 1.0, - strokeDasharray: '2 5' - } - }, - midParentalArea: { - data: { - fill: (_91 = centileStyle === null || centileStyle === void 0 ? void 0 : centileStyle.midParentalAreaFill) !== null && _91 !== void 0 ? _91 : lightLightGrey, - opacity: 0.5 - } - }, - measurementPoint: { - data: { - fill: (_92 = measurementStyle === null || measurementStyle === void 0 ? void 0 : measurementStyle.measurementFill) !== null && _92 !== void 0 ? _92 : black, - }, - }, - measurementLinkLine: { - data: { - stroke: (_93 = measurementStyle === null || measurementStyle === void 0 ? void 0 : measurementStyle.measurementFill) !== null && _93 !== void 0 ? _93 : black, - strokeWidth: 1.25, - }, - }, - highlightedMeasurementFill: { - data: { - fill: (_94 = measurementStyle === null || measurementStyle === void 0 ? void 0 : measurementStyle.highlightedMeasurementFill) !== null && _94 !== void 0 ? _94 : black - } - }, - toggleStyle: { - activeColour: (_95 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.toggleButtonActiveColour) !== null && _95 !== void 0 ? _95 : darkPink, - inactiveColour: (_96 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.toggleButtonInactiveColour) !== null && _96 !== void 0 ? _96 : lightPink, - fontFamily: (_98 = (_97 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.toggleButtonTextStyle) === null || _97 === void 0 ? void 0 : _97.name) !== null && _98 !== void 0 ? _98 : 'Arial', - color: (_100 = (_99 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.toggleButtonTextStyle) === null || _99 === void 0 ? void 0 : _99.colour) !== null && _100 !== void 0 ? _100 : white, - fontSize: (_102 = (_101 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.toggleButtonTextStyle) === null || _101 === void 0 ? void 0 : _101.size) !== null && _102 !== void 0 ? _102 : 14, - fontWeight: ((_103 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.toggleButtonTextStyle) === null || _103 === void 0 ? void 0 : _103.weight) === 'italic' - ? 'normal' - : (_105 = (_104 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.toggleButtonTextStyle) === null || _104 === void 0 ? void 0 : _104.weight) !== null && _105 !== void 0 ? _105 : 'normal', - fontStyle: ((_106 = chartStyle === null || chartStyle === void 0 ? void 0 : chartStyle.toggleButtonTextStyle) === null || _106 === void 0 ? void 0 : _106.weight) === 'italic' ? 'italic' : 'normal', - }, - }; -} - -var StyledErrorButton = styled__default.button(templateObject_1$k || (templateObject_1$k = __makeTemplateObject(["\n align-self: flex-end;\n background-color: ", ";\n border: 2px solid ", ";\n font-family: Arial;\n font-size: 14px;\n min-height: 30px;\n font-family: ", ";\n font-size: ", "px;\n font-weight: ", ";\n font-style: ", ";\n color: ", ";\n &:hover {\n background-color: ", ";\n color: ", ";\n border: 2px solid ", ";\n outline: ", " solid 2px;\n }\n &:focus {\n outline: ", " solid 2px;\n }\n"], ["\n align-self: flex-end;\n background-color: ", ";\n border: 2px solid ", ";\n font-family: Arial;\n font-size: 14px;\n min-height: 30px;\n font-family: ", ";\n font-size: ", "px;\n font-weight: ", ";\n font-style: ", ";\n color: ", ";\n &:hover {\n background-color: ", ";\n color: ", ";\n border: 2px solid ", ";\n outline: ", " solid 2px;\n }\n &:focus {\n outline: ", " solid 2px;\n }\n"])), function (props) { return (props.enabled ? props.activeColour : props.inactiveColour); }, function (props) { return (props.enabled ? props.activeColour : props.inactiveColour); }, function (_a) { - var fontFamily = _a.fontFamily; - return fontFamily; -}, function (_a) { - var fontSize = _a.fontSize; - return fontSize; -}, function (_a) { - var fontWeight = _a.fontWeight; - return fontWeight; -}, function (_a) { - var fontStyle = _a.fontStyle; - return fontStyle; -}, function (_a) { - var color = _a.color; - return color; -}, function (props) { return (props.enabled ? props.activeColour : props.inactiveColour); }, function (_a) { - var color = _a.color; - return color; -}, function (props) { return (props.enabled ? props.activeColour : props.inactiveColour); }, function (props) { return (props.enabled ? props.activeColour : 'transparent'); }, function (props) { return (props.enabled ? props.activeColour : 'transparent'); }); -var templateObject_1$k; - -var ErrorBoundary = /** @class */ (function (_super) { - __extends(ErrorBoundary, _super); - function ErrorBoundary(props) { - var _this = _super.call(this, props) || this; - _this.state = { hasError: false, errorMessage: '', showError: false }; - _this.handleClick = _this.handleClick.bind(_this); - return _this; - } - ErrorBoundary.getDerivedStateFromError = function () { - return { hasError: true }; - }; - ErrorBoundary.prototype.componentDidCatch = function (error, errorInfo) { - console.error({ error: error.message, errorInfo: errorInfo }); - this.setState({ errorMessage: error.message }); - }; - ErrorBoundary.prototype.handleClick = function () { - this.setState({ showError: !this.state.showError }); - }; - ErrorBoundary.prototype.render = function () { - if (this.state.hasError) { - return (React__default.createElement(ErrorContainer, { height: this.props.styles.chartHeight, width: this.props.styles.chartWidth }, - React__default.createElement(TextContainer, null, - React__default.createElement(ChartTitle, __assign({}, this.props.styles.chartTitle), "The chart could not be displayed"), - React__default.createElement(StyledErrorButton, __assign({}, this.props.styles.toggleStyle, { onClick: this.handleClick, margin: "20px 20px", enabled: true }), !this.state.showError ? 'Show Details' : 'Hide Details'), - React__default.createElement(ChartTitle, __assign({ show: this.state.showError }, this.props.styles.chartSubTitle), this.state.errorMessage)))); - } - else { - return this.props.children; - } - }; - return ErrorBoundary; -}(React__default.Component)); -var ErrorContainer = styled__default.div(templateObject_1$l || (templateObject_1$l = __makeTemplateObject(["\n display: block;\n margin: auto;\n height: ", "px;\n width: ", "px;\n"], ["\n display: block;\n margin: auto;\n height: ", "px;\n width: ", "px;\n"])), function (_a) { - var height = _a.height; - return height; -}, function (_a) { - var width = _a.width; - return width; -}); -var TextContainer = styled__default.div(templateObject_2$1 || (templateObject_2$1 = __makeTemplateObject(["\n position: relative;\n top: 50%;\n transform: translateY(-50%);\n"], ["\n position: relative;\n top: 50%;\n transform: translateY(-50%);\n"]))); -var templateObject_1$l, templateObject_2$1; - -function defineNonStylePropDefaults(propName, propValue) { - // accepts the props that are not mandatory but which are not to do with styling and - // sets default values if not already specified by the user - if (propName === 'clinicianFocus' || propName === 'enableExport') { - return propValue === undefined ? false : propValue; - } - if (propName === 'chartType') { - return propValue === undefined ? 'centile' : propValue; - } -} - -// packages/libraries -var RCPCHChart = function (_a) { - var title = _a.title, subtitle = _a.subtitle, measurementMethod = _a.measurementMethod, reference = _a.reference, sex = _a.sex, measurementsArray = _a.measurementsArray, midParentalHeightData = _a.midParentalHeightData, _b = _a.enableZoom, enableZoom = _b === void 0 ? true : _b, chartStyle = _a.chartStyle, axisStyle = _a.axisStyle, gridlineStyle = _a.gridlineStyle, centileStyle = _a.centileStyle, sdsStyle = _a.sdsStyle, measurementStyle = _a.measurementStyle, chartType = _a.chartType, enableExport = _a.enableExport, exportChartCallback = _a.exportChartCallback, clinicianFocus = _a.clinicianFocus; - var styles = makeAllStyles(chartStyle, axisStyle, gridlineStyle, centileStyle, sdsStyle, measurementStyle); - clinicianFocus = defineNonStylePropDefaults('clinicianFocus', clinicianFocus); - enableExport = defineNonStylePropDefaults('enableExport', enableExport); - chartType = defineNonStylePropDefaults('chartType', chartType); - // uncomment in development - // console.log("loading from locally..."); - var isCentile = (chartType === "centile" || chartType === undefined); - var version = "v6.1.4"; - if (isCentile) { - return (React__default.createElement(ErrorBoundary, { styles: styles }, - React__default.createElement(CentileChart, { chartsVersion: version, reference: reference, title: title, subtitle: subtitle, childMeasurements: measurementsArray || [], midParentalHeightData: midParentalHeightData, measurementMethod: measurementMethod, sex: sex, enableZoom: enableZoom, styles: styles, enableExport: enableExport, exportChartCallback: exportChartCallback, clinicianFocus: clinicianFocus }))); - } - else { - var castArray = measurementsArray; - return (React__default.createElement(ErrorBoundary, { styles: styles }, - React__default.createElement(SDSChart, { chartsVersion: version, reference: reference, title: title, subtitle: subtitle, measurementMethod: measurementMethod, childMeasurements: castArray, midParentalHeightData: midParentalHeightData, sex: sex, enableZoom: enableZoom, styles: styles, enableExport: enableExport, exportChartCallback: exportChartCallback }))); - } -}; -/* - return object structure from API - [ - { - "birth_data": { - "birth_date": "1759-04-11T00:00:00", - "gestation_weeks": 40, - "gestation_days": 0, - "estimated_date_delivery": "1759-04-11T00:00:00", - "estimated_date_delivery_string": "Wed 11 April, 1759", - "sex": "female" - }, - "measurement_dates": { - "observation_date": "1759-04-11T00:00:00", - "chronological_decimal_age": 0.0, - "corrected_decimal_age": 0.0, - "chronological_calendar_age": "Happy Birthday", - "corrected_calendar_age": "Happy Birthday", - "corrected_gestational_age": { - "corrected_gestation_weeks": 40, - "corrected_gestation_days": 0 - }, - "comments": { - "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", - "lay_corrected_decimal_age_comment": "Your baby was born on their due date.", - "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", - "lay_chronological_decimal_age_comment": "Your baby was born on their due date." - }, - "corrected_decimal_age_error": null, - "chronological_decimal_age_error": null - }, - "child_observation_value": { - "measurement_method": "height", - "observation_value": 50.0, - "observation_value_error": null - }, - "measurement_calculated_values": { - "corrected_sds": -0.00929688975104273, - "corrected_centile": 49, - "corrected_centile_band": "This height measurement is on or near the 50th centile.", - "chronological_sds": -0.00929688975104273, - "chronological_centile": 49, - "chronological_centile_band": "This height measurement is on or near the 50th centile.", - "corrected_measurement_error": null, - "chronological_measurement_error": null, - "corrected_percentage_median_bmi": null, - "chronological_percentage_median_bmi": null - }, - "plottable_data": { - "centile_data": { - "chronological_decimal_age_data": { - "x": 0.0, - "y": 50.0, - "b": null, - "events_text": null, - "bone_age_label": null, - "observation_error": null, - "age_type": "chronological_age", - "calendar_age": "Happy Birthday", - "lay_comment": "Your baby was born on their due date.", - "clinician_comment": "Born Term. No correction has been made for gestation.", - "age_error": null, - "centile_band": "This height measurement is on or near the 50th centile.", - "observation_value_error": null - }, - "corrected_decimal_age_data": { - "x": 0.0, - "y": 50.0, - "b": null, - "events_text": null, - "bone_age_label": "SDS: None, Centile: None", - "observation_error": null, - "age_type": "corrected_age", - "corrected_gestational_age": "40 + 0 weeks", - "calendar_age": "Happy Birthday", - "lay_comment": "Your baby was born on their due date.", - "clinician_comment": "Born at term. No correction has been made for gestation.", - "age_error": null, - "centile_band": "This height measurement is on or near the 50th centile.", - "observation_value_error": null - } - }, - "sds_data": { - "chronological_decimal_age_data": { - "x": 0.0, - "y": -0.00929688975104273, - "b": null, - "bone_age_label": "SDS: None, Centile: None", - "age_type": "chronological_age", - "calendar_age": "Happy Birthday", - "lay_comment": "Your baby was born on their due date.", - "clinician_comment": "Born Term. No correction has been made for gestation.", - "age_error": null, - "centile_band": "This height measurement is on or near the 50th centile.", - "observation_value_error": null - }, - "corrected_decimal_age_data": { - "x": 0.0, - "y": -0.00929688975104273, - "b": null, - "bone_age_label": "SDS: None, Centile: None", - "age_type": "corrected_age", - "corrected_gestational_age": "40 + 0 weeks", - "calendar_age": "Happy Birthday", - "lay_comment": "Your baby was born on their due date.", - "clinician_comment": "Born at term. No correction has been made for gestation.", - "age_error": null, - "centile_band": "This height measurement is on or near the 50th centile.", - "observation_value_error": null - } - } - }, - "bone_age": { - "bone_age": null, - "bone_age_type": null, - "bone_age_sds": null, - "bone_age_centile": null, - "bone_age_text": null - }, - "events_data": { - "events_text": null - } - }, - { - "birth_data": { - "birth_date": "1759-04-11T00:00:00", - "gestation_weeks": 40, - "gestation_days": 0, - "estimated_date_delivery": "1759-04-11T00:00:00", - "estimated_date_delivery_string": "Wed 11 April, 1759", - "sex": "female" - }, - "measurement_dates": { - "observation_date": "1759-07-11T07:30:00", - "chronological_decimal_age": 0.24914442162902123, - "corrected_decimal_age": 0.24914442162902123, - "chronological_calendar_age": "3 months", - "corrected_calendar_age": "3 months", - "corrected_gestational_age": { - "corrected_gestation_weeks": null, - "corrected_gestation_days": null - }, - "comments": { - "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", - "lay_corrected_decimal_age_comment": "Your baby was born on their due date.", - "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", - "lay_chronological_decimal_age_comment": "Your baby was born on their due date." - }, - "corrected_decimal_age_error": null, - "chronological_decimal_age_error": null - }, - "child_observation_value": { - "measurement_method": "height", - "observation_value": 59.8, - "observation_value_error": null - }, - "measurement_calculated_values": { - "corrected_sds": 0.010788148070195205, - "corrected_centile": 50, - "corrected_centile_band": "This height measurement is on or near the 50th centile.", - "chronological_sds": 0.010788148070195205, - "chronological_centile": 50, - "chronological_centile_band": "This height measurement is on or near the 50th centile.", - "corrected_measurement_error": null, - "chronological_measurement_error": null, - "corrected_percentage_median_bmi": null, - "chronological_percentage_median_bmi": null - }, - "plottable_data": { - "centile_data": { - "chronological_decimal_age_data": { - "x": 0.24914442162902123, - "y": 59.8, - "b": null, - "events_text": null, - "bone_age_label": null, - "observation_error": null, - "age_type": "chronological_age", - "calendar_age": "3 months", - "lay_comment": "Your baby was born on their due date.", - "clinician_comment": "Born Term. No correction has been made for gestation.", - "age_error": null, - "centile_band": "This height measurement is on or near the 50th centile.", - "observation_value_error": null - }, - "corrected_decimal_age_data": { - "x": 0.24914442162902123, - "y": 59.8, - "b": null, - "events_text": null, - "bone_age_label": "SDS: None, Centile: None", - "observation_error": null, - "age_type": "corrected_age", - "corrected_gestational_age": "", - "calendar_age": "3 months", - "lay_comment": "Your baby was born on their due date.", - "clinician_comment": "Born at term. No correction has been made for gestation.", - "age_error": null, - "centile_band": "This height measurement is on or near the 50th centile.", - "observation_value_error": null - } - }, - "sds_data": { - "chronological_decimal_age_data": { - "x": 0.24914442162902123, - "y": 0.010788148070195205, - "b": null, - "bone_age_label": "SDS: None, Centile: None", - "age_type": "chronological_age", - "calendar_age": "3 months", - "lay_comment": "Your baby was born on their due date.", - "clinician_comment": "Born Term. No correction has been made for gestation.", - "age_error": null, - "centile_band": "This height measurement is on or near the 50th centile.", - "observation_value_error": null - }, - "corrected_decimal_age_data": { - "x": 0.24914442162902123, - "y": 0.010788148070195205, - "b": null, - "bone_age_label": "SDS: None, Centile: None", - "age_type": "corrected_age", - "corrected_gestational_age": "", - "calendar_age": "3 months", - "lay_comment": "Your baby was born on their due date.", - "clinician_comment": "Born at term. No correction has been made for gestation.", - "age_error": null, - "centile_band": "This height measurement is on or near the 50th centile.", - "observation_value_error": null - } - } - }, - "bone_age": { - "bone_age": null, - "bone_age_type": null, - "bone_age_sds": null, - "bone_age_centile": null, - "bone_age_text": null - }, - "events_data": { - "events_text": null - } - }, - { - "birth_data": { - "birth_date": "1759-04-11T00:00:00", - "gestation_weeks": 40, - "gestation_days": 0, - "estimated_date_delivery": "1759-04-11T00:00:00", - "estimated_date_delivery_string": "Wed 11 April, 1759", - "sex": "female" - }, - "measurement_dates": { - "observation_date": "1759-10-10T15:00:00", - "chronological_decimal_age": 0.49828884325804246, - "corrected_decimal_age": 0.49828884325804246, - "chronological_calendar_age": "5 months, 4 weeks and 1 day", - "corrected_calendar_age": "5 months, 4 weeks and 1 day", - "corrected_gestational_age": { - "corrected_gestation_weeks": null, - "corrected_gestation_days": null - }, - "comments": { - "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", - "lay_corrected_decimal_age_comment": "Your baby was born on their due date.", - "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", - "lay_chronological_decimal_age_comment": "Your baby was born on their due date." - }, - "corrected_decimal_age_error": null, - "chronological_decimal_age_error": null - }, - "child_observation_value": { - "measurement_method": "height", - "observation_value": 65.7, - "observation_value_error": null - }, - "measurement_calculated_values": { - "corrected_sds": 0.0009045032170827941, - "corrected_centile": 50, - "corrected_centile_band": "This height measurement is on or near the 50th centile.", - "chronological_sds": 0.0009045032170827941, - "chronological_centile": 50, - "chronological_centile_band": "This height measurement is on or near the 50th centile.", - "corrected_measurement_error": null, - "chronological_measurement_error": null, - "corrected_percentage_median_bmi": null, - "chronological_percentage_median_bmi": null - }, - "plottable_data": { - "centile_data": { - "chronological_decimal_age_data": { - "x": 0.49828884325804246, - "y": 65.7, - "b": null, - "events_text": null, - "bone_age_label": null, - "observation_error": null, - "age_type": "chronological_age", - "calendar_age": "5 months, 4 weeks and 1 day", - "lay_comment": "Your baby was born on their due date.", - "clinician_comment": "Born Term. No correction has been made for gestation.", - "age_error": null, - "centile_band": "This height measurement is on or near the 50th centile.", - "observation_value_error": null - }, - "corrected_decimal_age_data": { - "x": 0.49828884325804246, - "y": 65.7, - "b": null, - "events_text": null, - "bone_age_label": "SDS: None, Centile: None", - "observation_error": null, - "age_type": "corrected_age", - "corrected_gestational_age": "", - "calendar_age": "5 months, 4 weeks and 1 day", - "lay_comment": "Your baby was born on their due date.", - "clinician_comment": "Born at term. No correction has been made for gestation.", - "age_error": null, - "centile_band": "This height measurement is on or near the 50th centile.", - "observation_value_error": null - } - }, - "sds_data": { - "chronological_decimal_age_data": { - "x": 0.49828884325804246, - "y": 0.0009045032170827941, - "b": null, - "bone_age_label": "SDS: None, Centile: None", - "age_type": "chronological_age", - "calendar_age": "5 months, 4 weeks and 1 day", - "lay_comment": "Your baby was born on their due date.", - "clinician_comment": "Born Term. No correction has been made for gestation.", - "age_error": null, - "centile_band": "This height measurement is on or near the 50th centile.", - "observation_value_error": null - }, - "corrected_decimal_age_data": { - "x": 0.49828884325804246, - "y": 0.0009045032170827941, - "b": null, - "bone_age_label": "SDS: None, Centile: None", - "age_type": "corrected_age", - "corrected_gestational_age": "", - "calendar_age": "5 months, 4 weeks and 1 day", - "lay_comment": "Your baby was born on their due date.", - "clinician_comment": "Born at term. No correction has been made for gestation.", - "age_error": null, - "centile_band": "This height measurement is on or near the 50th centile.", - "observation_value_error": null - } - } - }, - "bone_age": { - "bone_age": null, - "bone_age_type": null, - "bone_age_sds": null, - "bone_age_centile": null, - "bone_age_text": null - }, - "events_data": { - "events_text": null - } - }, - { - "birth_data": { - "birth_date": "1759-04-11T00:00:00", - "gestation_weeks": 40, - "gestation_days": 0, - "estimated_date_delivery": "1759-04-11T00:00:00", - "estimated_date_delivery_string": "Wed 11 April, 1759", - "sex": "female" - }, - "measurement_dates": { - "observation_date": "1760-01-09T22:30:00", - "chronological_decimal_age": 0.7474332648870636, - "corrected_decimal_age": 0.7474332648870636, - "chronological_calendar_age": "8 months, 4 weeks and 1 day", - "corrected_calendar_age": "8 months, 4 weeks and 1 day", - "corrected_gestational_age": { - "corrected_gestation_weeks": null, - "corrected_gestation_days": null - }, - "comments": { - "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", - "lay_corrected_decimal_age_comment": "Your baby was born on their due date.", - "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", - "lay_chronological_decimal_age_comment": "Your baby was born on their due date." - }, - "corrected_decimal_age_error": null, - "chronological_decimal_age_error": null - }, - "child_observation_value": { - "measurement_method": "height", - "observation_value": 70.1, - "observation_value_error": null - }, - "measurement_calculated_values": { - "corrected_sds": -0.0006082947536528116, - "corrected_centile": 49, - "corrected_centile_band": "This height measurement is on or near the 50th centile.", - "chronological_sds": -0.0006082947536528116, - "chronological_centile": 49, - "chronological_centile_band": "This height measurement is on or near the 50th centile.", - "corrected_measurement_error": null, - "chronological_measurement_error": null, - "corrected_percentage_median_bmi": null, - "chronological_percentage_median_bmi": null - }, - "plottable_data": { - "centile_data": { - "chronological_decimal_age_data": { - "x": 0.7474332648870636, - "y": 70.1, - "b": null, - "events_text": null, - "bone_age_label": null, - "observation_error": null, - "age_type": "chronological_age", - "calendar_age": "8 months, 4 weeks and 1 day", - "lay_comment": "Your baby was born on their due date.", - "clinician_comment": "Born Term. No correction has been made for gestation.", - "age_error": null, - "centile_band": "This height measurement is on or near the 50th centile.", - "observation_value_error": null - }, - "corrected_decimal_age_data": { - "x": 0.7474332648870636, - "y": 70.1, - "b": null, - "events_text": null, - "bone_age_label": "SDS: None, Centile: None", - "observation_error": null, - "age_type": "corrected_age", - "corrected_gestational_age": "", - "calendar_age": "8 months, 4 weeks and 1 day", - "lay_comment": "Your baby was born on their due date.", - "clinician_comment": "Born at term. No correction has been made for gestation.", - "age_error": null, - "centile_band": "This height measurement is on or near the 50th centile.", - "observation_value_error": null - } - }, - "sds_data": { - "chronological_decimal_age_data": { - "x": 0.7474332648870636, - "y": -0.0006082947536528116, - "b": null, - "bone_age_label": "SDS: None, Centile: None", - "age_type": "chronological_age", - "calendar_age": "8 months, 4 weeks and 1 day", - "lay_comment": "Your baby was born on their due date.", - "clinician_comment": "Born Term. No correction has been made for gestation.", - "age_error": null, - "centile_band": "This height measurement is on or near the 50th centile.", - "observation_value_error": null - }, - "corrected_decimal_age_data": { - "x": 0.7474332648870636, - "y": -0.0006082947536528116, - "b": null, - "bone_age_label": "SDS: None, Centile: None", - "age_type": "corrected_age", - "corrected_gestational_age": "", - "calendar_age": "8 months, 4 weeks and 1 day", - "lay_comment": "Your baby was born on their due date.", - "clinician_comment": "Born at term. No correction has been made for gestation.", - "age_error": null, - "centile_band": "This height measurement is on or near the 50th centile.", - "observation_value_error": null - } - } - }, - "bone_age": { - "bone_age": null, - "bone_age_type": null, - "bone_age_sds": null, - "bone_age_centile": null, - "bone_age_text": null - }, - "events_data": { - "events_text": null - } - } -] - -*/ - -var name = "@rcpch/digital-growth-charts-react-component-library"; -var version = "6.1.4"; -var main = "build/index.js"; -var module$1 = "build/index.esm.js"; -var files = [ - "build" -]; -var types = "build/index.d.ts"; -var description = "A React component library for the RCPCH digital growth charts using Rollup, TypeScript and Styled-Components"; -var scripts = { - build: "rollup -c", - test: "jest", - "test:watch": "jest --watch", - generate: "node ./util/create-component", - prepublishOnly: "npm run build", - prepare: "npm run build" -}; -var repository = { - type: "git", - url: "https://github.com/RCPCH/digital-growth-charts-react-component-library.git" -}; -var publishConfig = { - registry: "https://registry.npmjs.org/" -}; -var keywords = [ - "Growth", - "Charts", - "React", - "Component", - "Library", - "Rollup", - "Typescript", - "Sass" -]; -var author = "Simon Chapman"; -var license = "AGPL-3.0-or-later"; -var bugs = { - url: "https://github.com/RCPCH/digital-growth-charts-react-component-library/issues" -}; -var homepage = "https://github.com/RCPCH/digital-growth-charts-react-component-library#readme"; -var peerDependencies = { - react: ">=17", - "react-dom": ">=17", - "styled-components": ">=5" -}; -var devDependencies = { - "@babel/core": "^7.10.3", - "@rollup/plugin-commonjs": "^11.1.0", - "@rollup/plugin-image": "^2.0.6", - "@rollup/plugin-json": "^4.1.0", - "@rollup/plugin-node-resolve": "^7.1.3", - "@testing-library/jest-dom": "^5.5.0", - "@testing-library/react": "^10.0.2", - "@types/jest": "^24.0.24", - "@types/react": "^16.9.12", - "@types/react-dom": "^16.9.8", - "babel-loader": "^8.1.0", - "babel-preset-react-app": "^9.1.2", - "identity-obj-proxy": "^3.0.0", - jest: "^24.9.0", - "node-sass": "^7.0.1", - rollup: "^1.27.4", - "rollup-plugin-copy": "^3.3.0", - "rollup-plugin-peer-deps-external": "^2.2.0", - "rollup-plugin-postcss": "^3.1.2", - "rollup-plugin-typescript2": "^0.27.0", - "sass-loader": "^12.4.0", - "ts-jest": "^24.2.0", - typescript: "^3.7.2" -}; -var dependencies = { - "@types/styled-components": "^5.1.9", - "@types/victory": "^33.1.4", - "@typescript-eslint/eslint-plugin": "^4.20.0", - "@typescript-eslint/parser": "^4.20.0", - eslint: "^7.23.0", - "eslint-config-prettier": "^8.1.0", - "eslint-plugin-prettier": "^3.3.1", - "eslint-plugin-react": "^7.23.1", - prettier: "^2.2.1", - tslib: "^2.1.0", - victory: "^35.4.8" -}; -var resolutions = { - "styled-components": "^5" -}; -var pkg = { - name: name, - version: version, - main: main, - module: module$1, - files: files, - types: types, - description: description, - scripts: scripts, - repository: repository, - publishConfig: publishConfig, - keywords: keywords, - author: author, - license: license, - bugs: bugs, - homepage: homepage, - peerDependencies: peerDependencies, - devDependencies: devDependencies, - dependencies: dependencies, - resolutions: resolutions -}; - -console.log("" + pkg); - -exports.RCPCHChart = RCPCHChart; -exports.icon = img; diff --git a/package-lock.json b/package-lock.json index a4e002c..31cf2c5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,23589 +1,19960 @@ { - "name": "@rcpch/digital-growth-charts-react-component-library", - "version": "6.1.13", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "@rcpch/digital-growth-charts-react-component-library", - "version": "6.1.13", - "license": "AGPL-3.0-or-later", - "dependencies": { - "sass": "^1.57.1", - "tslib": "^2.1.0", - "victory": "^35.4.8" - }, - "devDependencies": { - "@babel/core": "^7.10.3", - "@rollup/plugin-commonjs": "^11.1.0", - "@rollup/plugin-image": "^2.0.6", - "@rollup/plugin-json": "^4.1.0", - "@rollup/plugin-node-resolve": "^7.1.3", - "@testing-library/jest-dom": "^5.5.0", - "@testing-library/react": "^10.0.2", - "@types/jest": "^24.0.24", - "@types/react": "^16.9.12", - "@types/react-dom": "^16.9.8", - "@types/styled-components": "^5.1.9", - "@types/victory": "^33.1.4", - "@typescript-eslint/eslint-plugin": "^4.20.0", - "@typescript-eslint/parser": "^4.20.0", - "babel-loader": "^8.1.0", - "babel-preset-react-app": "^9.1.2", - "eslint": "^7.23.0", - "eslint-config-prettier": "^8.1.0", - "eslint-plugin-prettier": "^3.3.1", - "eslint-plugin-react": "^7.23.1", - "identity-obj-proxy": "^3.0.0", - "jest": "^24.9.0", - "node-sass": "^7.0.1", - "prettier": "^2.2.1", - "rollup": "^1.27.4", - "rollup-plugin-copy": "^3.3.0", - "rollup-plugin-peer-deps-external": "^2.2.0", - "rollup-plugin-postcss": "^4.0.2", - "rollup-plugin-typescript2": "^0.27.0", - "rollup-plugin-version-injector": "^1.3.3", - "ts-jest": "^24.2.0", - "typescript": "^3.7.2" - }, - "peerDependencies": { - "react": ">=17", - "react-dom": ">=17", - "styled-components": ">=5" - } - }, - "../digital-growth-charts-react-client/node_modules/react": { - "version": "17.0.2", - "license": "MIT", - "peer": true, - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "../digital-growth-charts-react-client/node_modules/react-dom": { - "version": "17.0.2", - "license": "MIT", - "peer": true, - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "scheduler": "^0.20.2" - }, - "peerDependencies": { - "react": "17.0.2" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.12.11", - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.10.4" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "browserslist": "^4.12.0", - "invariant": "^2.2.4", - "semver": "^5.5.0" - } - }, - "node_modules/@babel/core": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.10.3", - "@babel/generator": "^7.10.3", - "@babel/helper-module-transforms": "^7.10.1", - "@babel/helpers": "^7.10.1", - "@babel/parser": "^7.10.3", - "@babel/template": "^7.10.3", - "@babel/traverse": "^7.10.3", - "@babel/types": "^7.10.3", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.1", - "json5": "^2.1.2", - "lodash": "^4.17.13", - "resolve": "^1.3.2", - "semver": "^5.4.1", - "source-map": "^0.5.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/generator": { - "version": "7.10.3", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.10.3", - "jsesc": "^2.5.1", - "lodash": "^4.17.13", - "source-map": "^0.5.0" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.10.1", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.10.1" - } - }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-explode-assignable-expression": "^7.10.3", - "@babel/types": "^7.10.3" - } - }, - "node_modules/@babel/helper-builder-react-jsx": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.10.1", - "@babel/types": "^7.10.3" - } - }, - "node_modules/@babel/helper-builder-react-jsx-experimental": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.10.1", - "@babel/helper-module-imports": "^7.10.1", - "@babel/types": "^7.10.1" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.10.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.10.1", - "browserslist": "^4.12.0", - "invariant": "^2.2.4", - "levenary": "^1.1.1", - "semver": "^5.5.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-function-name": "^7.10.3", - "@babel/helper-member-expression-to-functions": "^7.10.3", - "@babel/helper-optimise-call-expression": "^7.10.3", - "@babel/helper-plugin-utils": "^7.10.3", - "@babel/helper-replace-supers": "^7.10.1", - "@babel/helper-split-export-declaration": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.10.1", - "@babel/helper-regex": "^7.10.1", - "regexpu-core": "^4.7.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-define-map": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-function-name": "^7.10.3", - "@babel/types": "^7.10.3", - "lodash": "^4.17.13" - } - }, - "node_modules/@babel/helper-explode-assignable-expression": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.10.3", - "@babel/types": "^7.10.3" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.10.3", - "license": "MIT", - "dependencies": { - "@babel/helper-get-function-arity": "^7.10.3", - "@babel/template": "^7.10.3", - "@babel/types": "^7.10.3" - } - }, - "node_modules/@babel/helper-get-function-arity": { - "version": "7.10.3", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.10.3" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.10.3" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.10.3" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.10.3", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.10.3" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-imports": "^7.10.1", - "@babel/helper-replace-supers": "^7.10.1", - "@babel/helper-simple-access": "^7.10.1", - "@babel/helper-split-export-declaration": "^7.10.1", - "@babel/template": "^7.10.1", - "@babel/types": "^7.10.1", - "lodash": "^4.17.13" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.10.3" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.10.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@babel/helper-regex": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "lodash": "^4.17.13" - } - }, - "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.10.1", - "@babel/helper-wrap-function": "^7.10.1", - "@babel/template": "^7.10.3", - "@babel/traverse": "^7.10.3", - "@babel/types": "^7.10.3" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.10.1", - "@babel/helper-optimise-call-expression": "^7.10.1", - "@babel/traverse": "^7.10.1", - "@babel/types": "^7.10.1" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/template": "^7.10.1", - "@babel/types": "^7.10.1" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.10.1", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.10.1" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.12.11", - "license": "MIT" - }, - "node_modules/@babel/helper-wrap-function": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-function-name": "^7.10.1", - "@babel/template": "^7.10.1", - "@babel/traverse": "^7.10.1", - "@babel/types": "^7.10.1" - } - }, - "node_modules/@babel/helpers": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/template": "^7.10.1", - "@babel/traverse": "^7.10.1", - "@babel/types": "^7.10.1" - } - }, - "node_modules/@babel/highlight": { - "version": "7.13.10", - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.12.11", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.10.3", - "license": "MIT", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-proposal-async-generator-functions": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.3", - "@babel/helper-remap-async-to-generator": "^7.10.3", - "@babel/plugin-syntax-async-generators": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-decorators": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-decorators": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-dynamic-import": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/plugin-syntax-dynamic-import": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-json-strings": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/plugin-syntax-json-strings": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.0", - "@babel/plugin-transform-parameters": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-optional-catch-binding": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-unicode-property-regex": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-decorators": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-flow": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-imports": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/helper-remap-async-to-generator": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1", - "lodash": "^4.17.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-classes": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.10.1", - "@babel/helper-define-map": "^7.10.3", - "@babel/helper-function-name": "^7.10.3", - "@babel/helper-optimise-call-expression": "^7.10.3", - "@babel/helper-plugin-utils": "^7.10.3", - "@babel/helper-replace-supers": "^7.10.1", - "@babel/helper-split-export-declaration": "^7.10.1", - "globals": "^11.1.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-for-of": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-function-name": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-function-name": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-literals": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-transforms": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1", - "babel-plugin-dynamic-import-node": "^2.3.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-transforms": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/helper-simple-access": "^7.10.1", - "babel-plugin-dynamic-import-node": "^2.3.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-hoist-variables": "^7.10.3", - "@babel/helper-module-transforms": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.3", - "babel-plugin-dynamic-import-node": "^2.3.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-transforms": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-new-target": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-super": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/helper-replace-supers": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-parameters": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-get-function-arity": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-builder-react-jsx": "^7.10.3", - "@babel/helper-builder-react-jsx-experimental": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.3", - "@babel/plugin-syntax-jsx": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-development": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-builder-react-jsx-experimental": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/plugin-syntax-jsx": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-self": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/plugin-syntax-jsx": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-source": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/plugin-syntax-jsx": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "regenerator-transform": "^0.14.2" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-runtime": { - "version": "7.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-imports": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "resolve": "^1.8.1", - "semver": "^5.5.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-spread": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/helper-regex": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typescript": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.10.3", - "@babel/helper-plugin-utils": "^7.10.3", - "@babel/plugin-syntax-typescript": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-modules": { - "version": "0.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-typescript": { - "version": "7.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-transform-typescript": "^7.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/runtime": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.13.4" - } - }, - "node_modules/@babel/runtime-corejs3": { - "version": "7.10.3", - "dev": true, - "license": "MIT", - "dependencies": { - "core-js-pure": "^3.0.0", - "regenerator-runtime": "^0.13.4" - } - }, - "node_modules/@babel/template": { - "version": "7.10.3", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.10.3", - "@babel/parser": "^7.10.3", - "@babel/types": "^7.10.3" - } - }, - "node_modules/@babel/traverse": { - "version": "7.10.3", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.10.3", - "@babel/generator": "^7.10.3", - "@babel/helper-function-name": "^7.10.3", - "@babel/helper-split-export-declaration": "^7.10.1", - "@babel/parser": "^7.10.3", - "@babel/types": "^7.10.3", - "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.13" - } - }, - "node_modules/@babel/types": { - "version": "7.10.3", - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.10.3", - "lodash": "^4.17.13", - "to-fast-properties": "^2.0.0" - } - }, - "node_modules/@cnakazawa/watch": { - "version": "1.0.4", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "exec-sh": "^0.3.2", - "minimist": "^1.2.0" - }, - "bin": { - "watch": "cli.js" - }, - "engines": { - "node": ">=0.1.95" - } - }, - "node_modules/@emotion/is-prop-valid": { - "version": "0.8.8", - "license": "MIT", - "peer": true, - "dependencies": { - "@emotion/memoize": "0.7.4" - } - }, - "node_modules/@emotion/memoize": { - "version": "0.7.4", - "license": "MIT", - "peer": true - }, - "node_modules/@emotion/stylis": { - "version": "0.8.5", - "license": "MIT", - "peer": true - }, - "node_modules/@emotion/unitless": { - "version": "0.7.5", - "license": "MIT", - "peer": true - }, - "node_modules/@eslint/eslintrc": { - "version": "0.4.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.1.1", - "espree": "^7.3.0", - "globals": "^12.1.0", - "ignore": "^4.0.6", - "import-fresh": "^3.2.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "12.4.0", - "dev": true, - "license": "MIT", - "dependencies": { - "type-fest": "^0.8.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@gar/promisify": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", - "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", - "dev": true - }, - "node_modules/@jest/console": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/source-map": "^24.9.0", - "chalk": "^2.0.1", - "slash": "^2.0.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@jest/console/node_modules/slash": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/@jest/core": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/console": "^24.7.1", - "@jest/reporters": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "graceful-fs": "^4.1.15", - "jest-changed-files": "^24.9.0", - "jest-config": "^24.9.0", - "jest-haste-map": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-regex-util": "^24.3.0", - "jest-resolve": "^24.9.0", - "jest-resolve-dependencies": "^24.9.0", - "jest-runner": "^24.9.0", - "jest-runtime": "^24.9.0", - "jest-snapshot": "^24.9.0", - "jest-util": "^24.9.0", - "jest-validate": "^24.9.0", - "jest-watcher": "^24.9.0", - "micromatch": "^3.1.10", - "p-each-series": "^1.0.0", - "realpath-native": "^1.1.0", - "rimraf": "^2.5.4", - "slash": "^2.0.0", - "strip-ansi": "^5.0.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@jest/core/node_modules/ansi-escapes": { - "version": "3.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/@jest/core/node_modules/ansi-regex": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/@jest/core/node_modules/micromatch": { - "version": "3.1.10", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@jest/core/node_modules/slash": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/@jest/core/node_modules/strip-ansi": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@jest/environment": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/fake-timers": "^24.9.0", - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "jest-mock": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@jest/fake-timers": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-mock": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@jest/reporters": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "glob": "^7.1.2", - "istanbul-lib-coverage": "^2.0.2", - "istanbul-lib-instrument": "^3.0.1", - "istanbul-lib-report": "^2.0.4", - "istanbul-lib-source-maps": "^3.0.1", - "istanbul-reports": "^2.2.6", - "jest-haste-map": "^24.9.0", - "jest-resolve": "^24.9.0", - "jest-runtime": "^24.9.0", - "jest-util": "^24.9.0", - "jest-worker": "^24.6.0", - "node-notifier": "^5.4.2", - "slash": "^2.0.0", - "source-map": "^0.6.0", - "string-length": "^2.0.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@jest/reporters/node_modules/jest-worker": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "merge-stream": "^2.0.0", - "supports-color": "^6.1.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@jest/reporters/node_modules/slash": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/@jest/reporters/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@jest/reporters/node_modules/supports-color": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@jest/source-map": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "callsites": "^3.0.0", - "graceful-fs": "^4.1.15", - "source-map": "^0.6.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@jest/source-map/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@jest/test-result": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/console": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/istanbul-lib-coverage": "^2.0.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@jest/test-sequencer": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/test-result": "^24.9.0", - "jest-haste-map": "^24.9.0", - "jest-runner": "^24.9.0", - "jest-runtime": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@jest/transform": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.1.0", - "@jest/types": "^24.9.0", - "babel-plugin-istanbul": "^5.1.0", - "chalk": "^2.0.1", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.1.15", - "jest-haste-map": "^24.9.0", - "jest-regex-util": "^24.9.0", - "jest-util": "^24.9.0", - "micromatch": "^3.1.10", - "pirates": "^4.0.1", - "realpath-native": "^1.1.0", - "slash": "^2.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "2.4.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@jest/transform/node_modules/micromatch": { - "version": "3.1.10", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@jest/transform/node_modules/slash": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/@jest/transform/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@jest/types": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^13.0.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "2.0.3", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.scandir/node_modules/@nodelib/fs.stat": { - "version": "2.0.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.scandir": "2.1.3", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@npmcli/fs": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", - "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", - "dev": true, - "dependencies": { - "@gar/promisify": "^1.0.1", - "semver": "^7.3.5" - } - }, - "node_modules/@npmcli/fs/node_modules/semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@npmcli/move-file": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", - "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", - "dev": true, - "dependencies": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@npmcli/move-file/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@npmcli/move-file/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@rollup/plugin-commonjs": { - "version": "11.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@rollup/pluginutils": "^3.0.8", - "commondir": "^1.0.1", - "estree-walker": "^1.0.1", - "glob": "^7.1.2", - "is-reference": "^1.1.2", - "magic-string": "^0.25.2", - "resolve": "^1.11.0" - }, - "engines": { - "node": ">= 8.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0" - } - }, - "node_modules/@rollup/plugin-image": { - "version": "2.0.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@rollup/pluginutils": "^3.1.0", - "mini-svg-data-uri": "^1.2.3" - }, - "engines": { - "node": ">= 8.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0 || ^2.0.0" - } - }, - "node_modules/@rollup/plugin-json": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-4.1.0.tgz", - "integrity": "sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==", - "dev": true, - "dependencies": { - "@rollup/pluginutils": "^3.0.8" - }, - "peerDependencies": { - "rollup": "^1.20.0 || ^2.0.0" - } - }, - "node_modules/@rollup/plugin-node-resolve": { - "version": "7.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@rollup/pluginutils": "^3.0.8", - "@types/resolve": "0.0.8", - "builtin-modules": "^3.1.0", - "is-module": "^1.0.0", - "resolve": "^1.14.2" - }, - "engines": { - "node": ">= 8.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0" - } - }, - "node_modules/@rollup/pluginutils": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/estree": "0.0.39", - "estree-walker": "^1.0.1", - "picomatch": "^2.2.2" - }, - "engines": { - "node": ">= 8.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0" - } - }, - "node_modules/@testing-library/dom": { - "version": "7.16.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.10.2", - "aria-query": "^4.0.2", - "dom-accessibility-api": "^0.4.5", - "pretty-format": "^25.5.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@testing-library/dom/node_modules/@jest/types": { - "version": "25.5.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "engines": { - "node": ">= 8.3" - } - }, - "node_modules/@testing-library/dom/node_modules/@types/yargs": { - "version": "15.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@testing-library/dom/node_modules/ansi-regex": { - "version": "5.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/dom/node_modules/ansi-styles": { - "version": "4.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@testing-library/dom/node_modules/chalk": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/dom/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@testing-library/dom/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@testing-library/dom/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/dom/node_modules/pretty-format": { - "version": "25.5.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^25.5.0", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^16.12.0" - }, - "engines": { - "node": ">= 8.3" - } - }, - "node_modules/@testing-library/dom/node_modules/supports-color": { - "version": "7.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/jest-dom": { - "version": "5.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.9.2", - "@types/testing-library__jest-dom": "^5.9.1", - "chalk": "^3.0.0", - "css": "^2.2.4", - "css.escape": "^1.5.1", - "jest-diff": "^25.1.0", - "jest-matcher-utils": "^25.1.0", - "lodash": "^4.17.15", - "redent": "^3.0.0" - }, - "engines": { - "node": ">=8", - "npm": ">=6", - "yarn": ">=1" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/ansi-styles": { - "version": "4.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/chalk": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@testing-library/jest-dom/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/supports-color": { - "version": "7.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/react": { - "version": "10.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.10.2", - "@testing-library/dom": "^7.14.2" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "react": "*", - "react-dom": "*" - } - }, - "node_modules/@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", - "dev": true, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/@types/babel__core": { - "version": "7.1.9", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "node_modules/@types/babel__generator": { - "version": "7.6.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__template": { - "version": "7.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__traverse": { - "version": "7.0.12", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.3.0" - } - }, - "node_modules/@types/color-name": { - "version": "1.1.1", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/eslint": { - "version": "8.2.1", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "node_modules/@types/eslint-scope": { - "version": "3.7.2", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "node_modules/@types/estree": { - "version": "0.0.39", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/fs-extra": { - "version": "8.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/glob": { - "version": "7.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "node_modules/@types/hoist-non-react-statics": { - "version": "3.3.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0" - } - }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-coverage": "*" - } - }, - "node_modules/@types/istanbul-reports": { - "version": "1.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-coverage": "*", - "@types/istanbul-lib-report": "*" - } - }, - "node_modules/@types/jest": { - "version": "24.9.1", - "dev": true, - "license": "MIT", - "dependencies": { - "jest-diff": "^24.3.0" - } - }, - "node_modules/@types/jest/node_modules/jest-diff": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^2.0.1", - "diff-sequences": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@types/json-schema": { - "version": "7.0.9", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/minimatch": { - "version": "3.0.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/minimist": { - "version": "1.2.2", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/node": { - "version": "14.0.13", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.1", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/parse-json": { - "version": "4.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/prop-types": { - "version": "15.7.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/react": { - "version": "16.9.38", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/prop-types": "*", - "csstype": "^2.2.0" - } - }, - "node_modules/@types/react-dom": { - "version": "16.9.8", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/resolve": { - "version": "0.0.8", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/stack-utils": { - "version": "1.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/styled-components": { - "version": "5.1.9", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/hoist-non-react-statics": "*", - "@types/react": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/styled-components/node_modules/csstype": { - "version": "3.0.7", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/testing-library__jest-dom": { - "version": "5.9.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/jest": "*" - } - }, - "node_modules/@types/victory": { - "version": "33.1.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/yargs": { - "version": "13.0.9", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@types/yargs-parser": { - "version": "15.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "4.20.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/experimental-utils": "4.20.0", - "@typescript-eslint/scope-manager": "4.20.0", - "debug": "^4.1.1", - "functional-red-black-tree": "^1.0.1", - "lodash": "^4.17.15", - "regexpp": "^3.0.0", - "semver": "^7.3.2", - "tsutils": "^3.17.1" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^4.0.0", - "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { - "version": "7.3.5", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@typescript-eslint/experimental-utils": { - "version": "4.20.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.3", - "@typescript-eslint/scope-manager": "4.20.0", - "@typescript-eslint/types": "4.20.0", - "@typescript-eslint/typescript-estree": "4.20.0", - "eslint-scope": "^5.0.0", - "eslint-utils": "^2.0.0" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "*" - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "4.20.0", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "@typescript-eslint/scope-manager": "4.20.0", - "@typescript-eslint/types": "4.20.0", - "@typescript-eslint/typescript-estree": "4.20.0", - "debug": "^4.1.1" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "4.20.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "4.20.0", - "@typescript-eslint/visitor-keys": "4.20.0" - }, - "engines": { - "node": "^8.10.0 || ^10.13.0 || >=11.10.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/types": { - "version": "4.20.0", - "dev": true, - "license": "MIT", - "engines": { - "node": "^8.10.0 || ^10.13.0 || >=11.10.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "4.20.0", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "@typescript-eslint/types": "4.20.0", - "@typescript-eslint/visitor-keys": "4.20.0", - "debug": "^4.1.1", - "globby": "^11.0.1", - "is-glob": "^4.0.1", - "semver": "^7.3.2", - "tsutils": "^3.17.1" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { - "version": "7.3.5", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "4.20.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "4.20.0", - "eslint-visitor-keys": "^2.0.0" - }, - "engines": { - "node": "^8.10.0 || ^10.13.0 || >=11.10.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" - } - }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" - } - }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "dev": true, - "license": "Apache-2.0", - "peer": true, - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "dev": true, - "license": "BSD-3-Clause", - "peer": true - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "dev": true, - "license": "Apache-2.0", - "peer": true - }, - "node_modules/abab": { - "version": "2.0.3", - "dev": true, - "license": "BSD-3-Clause" - }, - "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "node_modules/acorn": { - "version": "6.4.1", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-globals": { - "version": "4.3.4", - "dev": true, - "license": "MIT", - "dependencies": { - "acorn": "^6.0.1", - "acorn-walk": "^6.0.1" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.1", - "dev": true, - "license": "MIT", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/acorn-walk": { - "version": "6.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/agentkeepalive": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.0.tgz", - "integrity": "sha512-0PhAp58jZNw13UJv7NVdTGb0ZcghHUb3DrZ046JiiJY/BOaTTpbwdHq2VObPCBV8M2GPh7sgrJ3AQ8Ey468LJw==", - "dev": true, - "dependencies": { - "debug": "^4.1.0", - "depd": "^1.1.2", - "humanize-ms": "^1.2.1" - }, - "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "dev": true, - "license": "MIT", - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/ansi-colors": { - "version": "4.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, - "node_modules/are-we-there-yet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", - "dev": true, - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/are-we-there-yet/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/argparse": { - "version": "1.0.10", - "dev": true, - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/aria-query": { - "version": "4.2.2", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@babel/runtime": "^7.10.2", - "@babel/runtime-corejs3": "^7.10.2" - }, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/arr-diff": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-flatten": { - "version": "1.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-union": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-equal": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/array-includes": { - "version": "3.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2", - "get-intrinsic": "^1.1.1", - "is-string": "^1.0.5" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/array-unique": { - "version": "0.3.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array.prototype.flatmap": { - "version": "1.2.4", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1", - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/arrify": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/asn1": { - "version": "0.2.4", - "dev": true, - "license": "MIT", - "dependencies": { - "safer-buffer": "~2.1.0" - } - }, - "node_modules/assert-plus": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/assign-symbols": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/astral-regex": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/async-foreach": { - "version": "0.1.3", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/async-limiter": { - "version": "1.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/asynckit": { - "version": "0.4.0", - "dev": true, - "license": "MIT" - }, - "node_modules/atob": { - "version": "2.1.2", - "dev": true, - "license": "(MIT OR Apache-2.0)", - "bin": { - "atob": "bin/atob.js" - }, - "engines": { - "node": ">= 4.5.0" - } - }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "*" - } - }, - "node_modules/aws4": { - "version": "1.10.0", - "dev": true, - "license": "MIT" - }, - "node_modules/babel-jest": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/babel__core": "^7.1.0", - "babel-plugin-istanbul": "^5.1.0", - "babel-preset-jest": "^24.9.0", - "chalk": "^2.4.2", - "slash": "^2.0.0" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/babel-jest/node_modules/slash": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/babel-loader": { - "version": "8.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "find-cache-dir": "^2.1.0", - "loader-utils": "^1.4.0", - "mkdirp": "^0.5.3", - "pify": "^4.0.1", - "schema-utils": "^2.6.5" - }, - "engines": { - "node": ">= 6.9" - }, - "peerDependencies": { - "@babel/core": "^7.0.0", - "webpack": ">=2" - } - }, - "node_modules/babel-loader/node_modules/find-cache-dir": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/babel-loader/node_modules/schema-utils": { - "version": "2.7.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.4", - "ajv": "^6.12.2", - "ajv-keywords": "^3.4.1" - }, - "engines": { - "node": ">= 8.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/babel-plugin-dynamic-import-node": { - "version": "2.3.3", - "dev": true, - "license": "MIT", - "dependencies": { - "object.assign": "^4.1.0" - } - }, - "node_modules/babel-plugin-istanbul": { - "version": "5.2.0", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "find-up": "^3.0.0", - "istanbul-lib-instrument": "^3.3.0", - "test-exclude": "^5.2.3" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/babel-plugin-istanbul/node_modules/find-up": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/babel-plugin-istanbul/node_modules/locate-path": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/babel-plugin-istanbul/node_modules/p-limit": { - "version": "2.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/babel-plugin-istanbul/node_modules/p-locate": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/babel-plugin-istanbul/node_modules/p-try": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/babel-plugin-jest-hoist": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/babel__traverse": "^7.0.6" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/babel-plugin-macros": { - "version": "2.8.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.7.2", - "cosmiconfig": "^6.0.0", - "resolve": "^1.12.0" - } - }, - "node_modules/babel-plugin-styled-components": { - "version": "1.12.0", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.0.0", - "@babel/helper-module-imports": "^7.0.0", - "babel-plugin-syntax-jsx": "^6.18.0", - "lodash": "^4.17.11" - }, - "peerDependencies": { - "styled-components": ">= 2" - } - }, - "node_modules/babel-plugin-syntax-jsx": { - "version": "6.18.0", - "license": "MIT", - "peer": true - }, - "node_modules/babel-plugin-transform-react-remove-prop-types": { - "version": "0.4.24", - "dev": true, - "license": "MIT" - }, - "node_modules/babel-preset-jest": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/plugin-syntax-object-rest-spread": "^7.0.0", - "babel-plugin-jest-hoist": "^24.9.0" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/babel-preset-react-app": { - "version": "9.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "7.9.0", - "@babel/plugin-proposal-class-properties": "7.8.3", - "@babel/plugin-proposal-decorators": "7.8.3", - "@babel/plugin-proposal-nullish-coalescing-operator": "7.8.3", - "@babel/plugin-proposal-numeric-separator": "7.8.3", - "@babel/plugin-proposal-optional-chaining": "7.9.0", - "@babel/plugin-transform-flow-strip-types": "7.9.0", - "@babel/plugin-transform-react-display-name": "7.8.3", - "@babel/plugin-transform-runtime": "7.9.0", - "@babel/preset-env": "7.9.0", - "@babel/preset-react": "7.9.1", - "@babel/preset-typescript": "7.9.0", - "@babel/runtime": "7.9.0", - "babel-plugin-macros": "2.8.0", - "babel-plugin-transform-react-remove-prop-types": "0.4.24" - } - }, - "node_modules/babel-preset-react-app/node_modules/@babel/core": { - "version": "7.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.8.3", - "@babel/generator": "^7.9.0", - "@babel/helper-module-transforms": "^7.9.0", - "@babel/helpers": "^7.9.0", - "@babel/parser": "^7.9.0", - "@babel/template": "^7.8.6", - "@babel/traverse": "^7.9.0", - "@babel/types": "^7.9.0", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.1", - "json5": "^2.1.2", - "lodash": "^4.17.13", - "resolve": "^1.3.2", - "semver": "^5.4.1", - "source-map": "^0.5.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-numeric-separator": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-optional-chaining": { - "version": "7.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-preset-react-app/node_modules/@babel/plugin-transform-flow-strip-types": { - "version": "7.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-flow": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-preset-react-app/node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-preset-react-app/node_modules/@babel/preset-env": { - "version": "7.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.9.0", - "@babel/helper-compilation-targets": "^7.8.7", - "@babel/helper-module-imports": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-proposal-async-generator-functions": "^7.8.3", - "@babel/plugin-proposal-dynamic-import": "^7.8.3", - "@babel/plugin-proposal-json-strings": "^7.8.3", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-proposal-numeric-separator": "^7.8.3", - "@babel/plugin-proposal-object-rest-spread": "^7.9.0", - "@babel/plugin-proposal-optional-catch-binding": "^7.8.3", - "@babel/plugin-proposal-optional-chaining": "^7.9.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.8.3", - "@babel/plugin-syntax-async-generators": "^7.8.0", - "@babel/plugin-syntax-dynamic-import": "^7.8.0", - "@babel/plugin-syntax-json-strings": "^7.8.0", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", - "@babel/plugin-syntax-numeric-separator": "^7.8.0", - "@babel/plugin-syntax-object-rest-spread": "^7.8.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.0", - "@babel/plugin-syntax-top-level-await": "^7.8.3", - "@babel/plugin-transform-arrow-functions": "^7.8.3", - "@babel/plugin-transform-async-to-generator": "^7.8.3", - "@babel/plugin-transform-block-scoped-functions": "^7.8.3", - "@babel/plugin-transform-block-scoping": "^7.8.3", - "@babel/plugin-transform-classes": "^7.9.0", - "@babel/plugin-transform-computed-properties": "^7.8.3", - "@babel/plugin-transform-destructuring": "^7.8.3", - "@babel/plugin-transform-dotall-regex": "^7.8.3", - "@babel/plugin-transform-duplicate-keys": "^7.8.3", - "@babel/plugin-transform-exponentiation-operator": "^7.8.3", - "@babel/plugin-transform-for-of": "^7.9.0", - "@babel/plugin-transform-function-name": "^7.8.3", - "@babel/plugin-transform-literals": "^7.8.3", - "@babel/plugin-transform-member-expression-literals": "^7.8.3", - "@babel/plugin-transform-modules-amd": "^7.9.0", - "@babel/plugin-transform-modules-commonjs": "^7.9.0", - "@babel/plugin-transform-modules-systemjs": "^7.9.0", - "@babel/plugin-transform-modules-umd": "^7.9.0", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.8.3", - "@babel/plugin-transform-new-target": "^7.8.3", - "@babel/plugin-transform-object-super": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.8.7", - "@babel/plugin-transform-property-literals": "^7.8.3", - "@babel/plugin-transform-regenerator": "^7.8.7", - "@babel/plugin-transform-reserved-words": "^7.8.3", - "@babel/plugin-transform-shorthand-properties": "^7.8.3", - "@babel/plugin-transform-spread": "^7.8.3", - "@babel/plugin-transform-sticky-regex": "^7.8.3", - "@babel/plugin-transform-template-literals": "^7.8.3", - "@babel/plugin-transform-typeof-symbol": "^7.8.4", - "@babel/plugin-transform-unicode-regex": "^7.8.3", - "@babel/preset-modules": "^0.1.3", - "@babel/types": "^7.9.0", - "browserslist": "^4.9.1", - "core-js-compat": "^3.6.2", - "invariant": "^2.2.2", - "levenary": "^1.1.1", - "semver": "^5.5.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-preset-react-app/node_modules/@babel/preset-react": { - "version": "7.9.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-transform-react-display-name": "^7.8.3", - "@babel/plugin-transform-react-jsx": "^7.9.1", - "@babel/plugin-transform-react-jsx-development": "^7.9.0", - "@babel/plugin-transform-react-jsx-self": "^7.9.0", - "@babel/plugin-transform-react-jsx-source": "^7.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-preset-react-app/node_modules/@babel/runtime": { - "version": "7.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.13.4" - } - }, - "node_modules/balanced-match": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/base": { - "version": "0.11.2", - "dev": true, - "license": "MIT", - "dependencies": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base/node_modules/define-property": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base/node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base/node_modules/is-data-descriptor": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base/node_modules/is-descriptor": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base/node_modules/isobject": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "tweetnacl": "^0.14.3" - } - }, - "node_modules/big.js": { - "version": "5.2.2", - "dev": true, - "license": "MIT", - "engines": { - "node": "*" - } - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "engines": { - "node": ">=8" - } - }, - "node_modules/bindings": { - "version": "1.5.0", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "file-uri-to-path": "1.0.0" - } - }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "dev": true - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "2.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/braces/node_modules/extend-shallow": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/braces/node_modules/isobject": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/browser-process-hrtime": { - "version": "1.0.0", - "dev": true, - "license": "BSD-2-Clause" - }, - "node_modules/browser-resolve": { - "version": "1.11.3", - "dev": true, - "license": "MIT", - "dependencies": { - "resolve": "1.1.7" - } - }, - "node_modules/browser-resolve/node_modules/resolve": { - "version": "1.1.7", - "dev": true, - "license": "MIT" - }, - "node_modules/browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/bs-logger": { - "version": "0.2.6", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-json-stable-stringify": "2.x" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/bser": { - "version": "2.1.1", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "node-int64": "^0.4.0" - } - }, - "node_modules/buffer-from": { - "version": "1.1.1", - "dev": true, - "license": "MIT" - }, - "node_modules/builtin-modules": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/cacache": { - "version": "15.3.0", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", - "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", - "dev": true, - "dependencies": { - "@npmcli/fs": "^1.0.0", - "@npmcli/move-file": "^1.0.1", - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "infer-owner": "^1.0.4", - "lru-cache": "^6.0.0", - "minipass": "^3.1.1", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^1.0.3", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.0.2", - "unique-filename": "^1.1.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/cacache/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cacache/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/cache-base": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cache-base/node_modules/isobject": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/call-bind": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase": { - "version": "5.3.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase-keys": { - "version": "6.2.2", - "dev": true, - "license": "MIT", - "dependencies": { - "camelcase": "^5.3.1", - "map-obj": "^4.0.0", - "quick-lru": "^4.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/camelize": { - "version": "1.0.0", - "license": "MIT", - "peer": true - }, - "node_modules/caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", - "dev": true, - "dependencies": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001443", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001443.tgz", - "integrity": "sha512-jUo8svymO8+Mkj3qbUbVjR8zv8LUGpGkUM/jKvc9SO2BvjCI980dp9fQbf/dyLs6RascPzgR4nhAKFA4OHeSaA==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - } - ] - }, - "node_modules/capture-exit": { - "version": "2.0.0", - "dev": true, - "license": "ISC", - "dependencies": { - "rsvp": "^4.8.4" - }, - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/caseless": { - "version": "0.12.0", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/chalk": { - "version": "2.4.2", - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chokidar/node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/chokidar/node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/chokidar/node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/chokidar/node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/ci-info": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/class-utils": { - "version": "0.3.6", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/define-property": { - "version": "0.2.5", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/isobject": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/cliui": { - "version": "5.0.0", - "dev": true, - "license": "ISC", - "dependencies": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" - } - }, - "node_modules/cliui/node_modules/ansi-regex": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/cliui/node_modules/is-fullwidth-code-point": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/cliui/node_modules/string-width": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/cliui/node_modules/strip-ansi": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/co": { - "version": "4.6.0", - "dev": true, - "license": "MIT", - "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" - } - }, - "node_modules/collection-visit": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/color-convert": { - "version": "1.9.3", - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "license": "MIT" - }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true, - "bin": { - "color-support": "bin.js" - } - }, - "node_modules/colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "dev": true - }, - "node_modules/colorette": { - "version": "1.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "dev": true, - "license": "MIT", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/commander": { - "version": "2.20.3", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/commondir": { - "version": "1.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/component-emitter": { - "version": "1.3.0", - "dev": true, - "license": "MIT" - }, - "node_modules/concat-map": { - "version": "0.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/concat-with-sourcemaps": { - "version": "1.1.0", - "dev": true, - "license": "ISC", - "dependencies": { - "source-map": "^0.6.1" - } - }, - "node_modules/concat-with-sourcemaps/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "dev": true - }, - "node_modules/convert-source-map": { - "version": "1.7.0", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.1" - } - }, - "node_modules/copy-descriptor": { - "version": "0.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/core-js-compat": { - "version": "3.6.5", - "dev": true, - "license": "MIT", - "dependencies": { - "browserslist": "^4.8.5", - "semver": "7.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-js-compat/node_modules/semver": { - "version": "7.0.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/core-js-pure": { - "version": "3.6.5", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-util-is": { - "version": "1.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/cosmiconfig": { - "version": "6.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cross-spawn": { - "version": "6.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/css": { - "version": "2.2.4", - "dev": true, - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "source-map": "^0.6.1", - "source-map-resolve": "^0.5.2", - "urix": "^0.1.0" - } - }, - "node_modules/css-color-keywords": { - "version": "1.0.0", - "license": "ISC", - "peer": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/css-declaration-sorter": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz", - "integrity": "sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.0.9" - } - }, - "node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "dev": true, - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/css-to-react-native": { - "version": "3.0.0", - "license": "MIT", - "peer": true, - "dependencies": { - "camelize": "^1.0.0", - "css-color-keywords": "^1.0.0", - "postcss-value-parser": "^4.0.2" - } - }, - "node_modules/css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", - "dev": true, - "dependencies": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/css-tree/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "dev": true, - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/css.escape": { - "version": "1.5.1", - "dev": true, - "license": "MIT" - }, - "node_modules/css/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true, - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/cssnano": { - "version": "5.1.14", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.14.tgz", - "integrity": "sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==", - "dev": true, - "dependencies": { - "cssnano-preset-default": "^5.2.13", - "lilconfig": "^2.0.3", - "yaml": "^1.10.2" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/cssnano" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/cssnano-preset-default": { - "version": "5.2.13", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.13.tgz", - "integrity": "sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==", - "dev": true, - "dependencies": { - "css-declaration-sorter": "^6.3.1", - "cssnano-utils": "^3.1.0", - "postcss-calc": "^8.2.3", - "postcss-colormin": "^5.3.0", - "postcss-convert-values": "^5.1.3", - "postcss-discard-comments": "^5.1.2", - "postcss-discard-duplicates": "^5.1.0", - "postcss-discard-empty": "^5.1.1", - "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.7", - "postcss-merge-rules": "^5.1.3", - "postcss-minify-font-values": "^5.1.0", - "postcss-minify-gradients": "^5.1.1", - "postcss-minify-params": "^5.1.4", - "postcss-minify-selectors": "^5.2.1", - "postcss-normalize-charset": "^5.1.0", - "postcss-normalize-display-values": "^5.1.0", - "postcss-normalize-positions": "^5.1.1", - "postcss-normalize-repeat-style": "^5.1.1", - "postcss-normalize-string": "^5.1.0", - "postcss-normalize-timing-functions": "^5.1.0", - "postcss-normalize-unicode": "^5.1.1", - "postcss-normalize-url": "^5.1.0", - "postcss-normalize-whitespace": "^5.1.1", - "postcss-ordered-values": "^5.1.3", - "postcss-reduce-initial": "^5.1.1", - "postcss-reduce-transforms": "^5.1.0", - "postcss-svgo": "^5.1.0", - "postcss-unique-selectors": "^5.1.1" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/cssnano-utils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", - "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/csso": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", - "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", - "dev": true, - "dependencies": { - "css-tree": "^1.1.2" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/cssom": { - "version": "0.3.8", - "dev": true, - "license": "MIT" - }, - "node_modules/cssstyle": { - "version": "1.4.0", - "dev": true, - "license": "MIT", - "dependencies": { - "cssom": "0.3.x" - } - }, - "node_modules/csstype": { - "version": "2.6.10", - "dev": true, - "license": "MIT" - }, - "node_modules/d3-array": { - "version": "1.2.4", - "license": "BSD-3-Clause" - }, - "node_modules/d3-collection": { - "version": "1.0.7", - "license": "BSD-3-Clause" - }, - "node_modules/d3-color": { - "version": "1.4.1", - "license": "BSD-3-Clause" - }, - "node_modules/d3-ease": { - "version": "1.0.7", - "license": "BSD-3-Clause" - }, - "node_modules/d3-format": { - "version": "1.4.5", - "license": "BSD-3-Clause" - }, - "node_modules/d3-interpolate": { - "version": "1.4.0", - "license": "BSD-3-Clause", - "dependencies": { - "d3-color": "1" - } - }, - "node_modules/d3-path": { - "version": "1.0.9", - "license": "BSD-3-Clause" - }, - "node_modules/d3-scale": { - "version": "1.0.7", - "license": "BSD-3-Clause", - "dependencies": { - "d3-array": "^1.2.0", - "d3-collection": "1", - "d3-color": "1", - "d3-format": "1", - "d3-interpolate": "1", - "d3-time": "1", - "d3-time-format": "2" - } - }, - "node_modules/d3-shape": { - "version": "1.3.7", - "license": "BSD-3-Clause", - "dependencies": { - "d3-path": "1" - } - }, - "node_modules/d3-time": { - "version": "1.1.0", - "license": "BSD-3-Clause" - }, - "node_modules/d3-time-format": { - "version": "2.3.0", - "license": "BSD-3-Clause", - "dependencies": { - "d3-time": "1" - } - }, - "node_modules/d3-timer": { - "version": "1.0.10", - "license": "BSD-3-Clause" - }, - "node_modules/d3-voronoi": { - "version": "1.1.4", - "license": "BSD-3-Clause" - }, - "node_modules/dashdash": { - "version": "1.14.1", - "dev": true, - "license": "MIT", - "dependencies": { - "assert-plus": "^1.0.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/data-urls": { - "version": "1.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "abab": "^2.0.0", - "whatwg-mimetype": "^2.2.0", - "whatwg-url": "^7.0.0" - } - }, - "node_modules/data-urls/node_modules/whatwg-url": { - "version": "7.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, - "node_modules/dateformat": { - "version": "4.6.3", - "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-4.6.3.tgz", - "integrity": "sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/debug": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", - "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decamelize": { - "version": "1.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decamelize-keys": { - "version": "1.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "decamelize": "^1.1.0", - "map-obj": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decamelize-keys/node_modules/map-obj": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decode-uri-component": { - "version": "0.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/deep-is": { - "version": "0.1.3", - "dev": true, - "license": "MIT" - }, - "node_modules/define-properties": { - "version": "1.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "object-keys": "^1.0.12" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/define-property": { - "version": "2.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/define-property/node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/define-property/node_modules/is-data-descriptor": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/define-property/node_modules/is-descriptor": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/define-property/node_modules/isobject": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/delaunator": { - "version": "4.0.1", - "license": "ISC" - }, - "node_modules/delaunay-find": { - "version": "0.0.5", - "license": "ISC", - "dependencies": { - "delaunator": "^4.0.0" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "dev": true - }, - "node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/detect-newline": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/diff-sequences": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/doctrine": { - "version": "3.0.0", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/dom-accessibility-api": { - "version": "0.4.5", - "dev": true, - "license": "MIT" - }, - "node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "dev": true, - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] - }, - "node_modules/domexception": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "webidl-conversions": "^4.0.2" - } - }, - "node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "dev": true, - "dependencies": { - "domelementtype": "^2.2.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "dev": true, - "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "node_modules/electron-to-chromium": { - "version": "1.4.284", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", - "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", - "dev": true - }, - "node_modules/emoji-regex": { - "version": "7.0.3", - "dev": true, - "license": "MIT" - }, - "node_modules/emojis-list": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "dev": true, - "optional": true, - "dependencies": { - "iconv-lite": "^0.6.2" - } - }, - "node_modules/encoding/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "dev": true, - "license": "MIT", - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/enhanced-resolve": { - "version": "5.8.3", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/enquirer": { - "version": "2.3.6", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-colors": "^4.1.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "dev": true, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true - }, - "node_modules/error-ex": { - "version": "1.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/es-abstract": { - "version": "1.18.0", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.2", - "is-string": "^1.0.5", - "object-inspect": "^1.9.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-module-lexer": { - "version": "0.9.3", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/escodegen": { - "version": "1.14.2", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=4.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/escodegen/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint": { - "version": "7.23.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "7.12.11", - "@eslint/eslintrc": "^0.4.0", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.0.1", - "doctrine": "^3.0.0", - "enquirer": "^2.3.5", - "eslint-scope": "^5.1.1", - "eslint-utils": "^2.1.0", - "eslint-visitor-keys": "^2.0.0", - "espree": "^7.3.1", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.0.0", - "globals": "^13.6.0", - "ignore": "^4.0.6", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash": "^4.17.21", - "minimatch": "^3.0.4", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "progress": "^2.0.0", - "regexpp": "^3.1.0", - "semver": "^7.2.1", - "strip-ansi": "^6.0.0", - "strip-json-comments": "^3.1.0", - "table": "^6.0.4", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-prettier": { - "version": "8.1.0", - "dev": true, - "license": "MIT", - "bin": { - "eslint-config-prettier": "bin/cli.js" - }, - "peerDependencies": { - "eslint": ">=7.0.0" - } - }, - "node_modules/eslint-plugin-prettier": { - "version": "3.3.1", - "dev": true, - "license": "MIT", - "dependencies": { - "prettier-linter-helpers": "^1.0.0" - }, - "engines": { - "node": ">=6.0.0" - }, - "peerDependencies": { - "eslint": ">=5.0.0", - "prettier": ">=1.13.0" - }, - "peerDependenciesMeta": { - "eslint-config-prettier": { - "optional": true - } - } - }, - "node_modules/eslint-plugin-react": { - "version": "7.23.1", - "dev": true, - "license": "MIT", - "dependencies": { - "array-includes": "^3.1.3", - "array.prototype.flatmap": "^1.2.4", - "doctrine": "^2.1.0", - "has": "^1.0.3", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.0.4", - "object.entries": "^1.1.3", - "object.fromentries": "^2.0.4", - "object.values": "^1.1.3", - "prop-types": "^15.7.2", - "resolve": "^2.0.0-next.3", - "string.prototype.matchall": "^4.0.4" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7" - } - }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.3", - "dev": true, - "license": "MIT", - "dependencies": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/eslint-utils": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "eslint-visitor-keys": "^1.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "2.0.0", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10" - } - }, - "node_modules/eslint/node_modules/ansi-regex": { - "version": "5.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/eslint/node_modules/cross-spawn": { - "version": "7.0.3", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/eslint/node_modules/globals": { - "version": "13.7.0", - "dev": true, - "license": "MIT", - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/levn": { - "version": "0.4.1", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/eslint/node_modules/optionator": { - "version": "0.9.1", - "dev": true, - "license": "MIT", - "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/eslint/node_modules/path-key": { - "version": "3.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/prelude-ls": { - "version": "1.2.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/eslint/node_modules/semver": { - "version": "7.3.5", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/eslint/node_modules/shebang-command": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/shebang-regex": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/strip-ansi": { - "version": "6.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/type-check": { - "version": "0.4.0", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/which": { - "version": "2.0.2", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/espree": { - "version": "7.3.1", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "acorn": "^7.4.0", - "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^1.3.0" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/espree/node_modules/acorn": { - "version": "7.4.1", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=4" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "dev": true, - "license": "BSD-2-Clause", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/esquery": { - "version": "1.4.0", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esquery/node_modules/estraverse": { - "version": "5.2.0", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.2.0", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "4.3.0", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estree-walker": { - "version": "1.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/esutils": { - "version": "2.0.3", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true - }, - "node_modules/events": { - "version": "3.3.0", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/exec-sh": { - "version": "0.3.4", - "dev": true, - "license": "MIT" - }, - "node_modules/execa": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/exit": { - "version": "0.1.2", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/expand-brackets": { - "version": "2.1.4", - "dev": true, - "license": "MIT", - "dependencies": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/debug": { - "version": "2.6.9", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/expand-brackets/node_modules/define-property": { - "version": "0.2.5", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/extend-shallow": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/ms": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/expect": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^24.9.0", - "ansi-styles": "^3.2.0", - "jest-get-type": "^24.9.0", - "jest-matcher-utils": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-regex-util": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/expect/node_modules/jest-diff": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^2.0.1", - "diff-sequences": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/expect/node_modules/jest-matcher-utils": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^2.0.1", - "jest-diff": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/extend": { - "version": "3.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/extend-shallow": { - "version": "3.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extend-shallow/node_modules/is-extendable": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extend-shallow/node_modules/is-plain-object": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extend-shallow/node_modules/isobject": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/define-property": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/extend-shallow": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/is-data-descriptor": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/is-descriptor": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extsprintf": { - "version": "1.3.0", - "dev": true, - "engines": [ - "node >=0.6.0" - ], - "license": "MIT" - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-diff": { - "version": "1.2.0", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/fast-glob": { - "version": "3.2.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.0", - "merge2": "^1.3.0", - "micromatch": "^4.0.2", - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "dev": true, - "license": "MIT" - }, - "node_modules/fastq": { - "version": "1.8.0", - "dev": true, - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fb-watchman": { - "version": "2.0.1", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "bser": "2.1.1" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/file-uri-to-path": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "optional": true - }, - "node_modules/fill-range": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fill-range/node_modules/extend-shallow": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/find-cache-dir": { - "version": "3.3.1", - "dev": true, - "license": "MIT", - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" - } - }, - "node_modules/find-cache-dir/node_modules/make-dir": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/find-cache-dir/node_modules/pkg-dir": { - "version": "4.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-cache-dir/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/find-up": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-up/node_modules/locate-path": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-up/node_modules/p-limit": { - "version": "2.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/find-up/node_modules/p-locate": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-up/node_modules/p-try": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/find-up/node_modules/path-exists": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/flat-cache": { - "version": "3.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flat-cache/node_modules/rimraf": { - "version": "3.0.2", - "dev": true, - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/flatted": { - "version": "3.1.1", - "dev": true, - "license": "ISC" - }, - "node_modules/for-in": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/forever-agent": { - "version": "0.6.1", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "*" - } - }, - "node_modules/form-data": { - "version": "2.3.3", - "dev": true, - "license": "MIT", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, - "node_modules/fragment-cache": { - "version": "0.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "map-cache": "^0.2.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fs-extra": { - "version": "8.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/fs-extra/node_modules/jsonfile": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "dev": true, - "license": "ISC" - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.1", - "dev": true, - "license": "MIT" - }, - "node_modules/functional-red-black-tree": { - "version": "1.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/gauge": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", - "dev": true, - "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/gauge/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/gauge/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/gaze": { - "version": "1.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "globule": "^1.0.0" - }, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/generic-names": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-4.0.0.tgz", - "integrity": "sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==", - "dev": true, - "dependencies": { - "loader-utils": "^3.2.0" - } - }, - "node_modules/generic-names/node_modules/loader-utils": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", - "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", - "dev": true, - "engines": { - "node": ">= 12.13.0" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "dev": true, - "license": "ISC", - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-intrinsic": { - "version": "1.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-stdin": { - "version": "4.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/get-stream": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/get-value": { - "version": "2.0.6", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/getpass": { - "version": "0.1.7", - "dev": true, - "license": "MIT", - "dependencies": { - "assert-plus": "^1.0.0" - } - }, - "node_modules/glob": { - "version": "7.1.6", - "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "dev": true, - "license": "BSD-2-Clause", - "peer": true - }, - "node_modules/globals": { - "version": "11.12.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/globby": { - "version": "11.0.3", - "dev": true, - "license": "MIT", - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globby/node_modules/ignore": { - "version": "5.1.8", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/globule": { - "version": "1.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "glob": "~7.1.1", - "lodash": "~4.17.10", - "minimatch": "~3.0.2" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.9", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", - "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==", - "dev": true - }, - "node_modules/growly": { - "version": "1.3.0", - "dev": true, - "license": "MIT" - }, - "node_modules/har-schema": { - "version": "2.0.0", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=4" - } - }, - "node_modules/har-validator": { - "version": "5.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "ajv": "^6.5.5", - "har-schema": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/hard-rejection": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/harmony-reflect": { - "version": "1.6.1", - "dev": true, - "license": "(Apache-2.0 OR MPL-1.1)" - }, - "node_modules/has": { - "version": "1.0.3", - "dev": true, - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-bigints": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-symbols": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "dev": true - }, - "node_modules/has-value": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-value/node_modules/isobject": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values/node_modules/kind-of": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "license": "BSD-3-Clause", - "dependencies": { - "react-is": "^16.7.0" - } - }, - "node_modules/hosted-git-info": { - "version": "2.8.9", - "dev": true, - "license": "ISC" - }, - "node_modules/html-encoding-sniffer": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "whatwg-encoding": "^1.0.1" - } - }, - "node_modules/html-escaper": { - "version": "2.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/http-cache-semantics": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", - "dev": true - }, - "node_modules/http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "dev": true, - "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/http-signature": { - "version": "1.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - }, - "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" - } - }, - "node_modules/https-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", - "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", - "dev": true, - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", - "dev": true, - "dependencies": { - "ms": "^2.0.0" - } - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "dev": true, - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/icss-replace-symbols": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", - "integrity": "sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==", - "dev": true - }, - "node_modules/icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/identity-obj-proxy": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "harmony-reflect": "^1.4.6" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/ignore": { - "version": "4.0.6", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/immutable": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.2.2.tgz", - "integrity": "sha512-fTMKDwtbvO5tldky9QZ2fMX7slR0mYpY5nbnFWYp0fOzDhHqhgIw9KoYgxLWsoNTS9ZHGauHj18DTyEw6BK3Og==" - }, - "node_modules/import-fresh": { - "version": "3.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/import-fresh/node_modules/resolve-from": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/import-local": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "pkg-dir": "^3.0.0", - "resolve-cwd": "^2.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true - }, - "node_modules/inflight": { - "version": "1.0.6", - "dev": true, - "license": "ISC", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "dev": true, - "license": "ISC" - }, - "node_modules/internal-slot": { - "version": "1.0.3", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/internmap": { - "version": "1.0.0", - "license": "ISC" - }, - "node_modules/invariant": { - "version": "2.2.4", - "dev": true, - "license": "MIT", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", - "dev": true - }, - "node_modules/is-accessor-descriptor": { - "version": "0.1.6", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-accessor-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "dev": true, - "license": "MIT" - }, - "node_modules/is-bigint": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-buffer": { - "version": "1.1.6", - "dev": true, - "license": "MIT" - }, - "node_modules/is-callable": { - "version": "1.2.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-ci": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ci-info": "^2.0.0" - }, - "bin": { - "is-ci": "bin.js" - } - }, - "node_modules/is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", - "dev": true, - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-data-descriptor": { - "version": "0.1.4", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-data-descriptor/node_modules/kind-of": { - "version": "3.2.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-date-object": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-descriptor": { - "version": "0.1.6", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-descriptor/node_modules/kind-of": { - "version": "5.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extendable": { - "version": "0.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-generator-fn": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/is-glob": { - "version": "4.0.1", - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", - "dev": true - }, - "node_modules/is-module": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/is-negative-zero": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.4", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-plain-obj": { - "version": "1.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-plain-object": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-reference": { - "version": "1.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/estree": "0.0.44" - } - }, - "node_modules/is-reference/node_modules/@types/estree": { - "version": "0.0.44", - "dev": true, - "license": "MIT" - }, - "node_modules/is-regex": { - "version": "1.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-stream": { - "version": "1.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-string": { - "version": "1.0.5", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-symbol": { - "version": "1.0.3", - "dev": true, - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/is-windows": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-wsl": { - "version": "1.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/isexe": { - "version": "2.0.0", - "dev": true, - "license": "ISC" - }, - "node_modules/isobject": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isstream": { - "version": "0.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/istanbul-lib-coverage": { - "version": "2.0.5", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=6" - } - }, - "node_modules/istanbul-lib-instrument": { - "version": "3.3.0", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@babel/generator": "^7.4.0", - "@babel/parser": "^7.4.3", - "@babel/template": "^7.4.0", - "@babel/traverse": "^7.4.3", - "@babel/types": "^7.4.0", - "istanbul-lib-coverage": "^2.0.5", - "semver": "^6.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/istanbul-lib-report": { - "version": "2.0.8", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "istanbul-lib-coverage": "^2.0.5", - "make-dir": "^2.1.0", - "supports-color": "^6.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/istanbul-lib-source-maps": { - "version": "3.0.6", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^2.0.5", - "make-dir": "^2.1.0", - "rimraf": "^2.6.3", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/istanbul-lib-source-maps/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/istanbul-reports": { - "version": "2.2.7", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "html-escaper": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jest": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "import-local": "^2.0.0", - "jest-cli": "^24.9.0" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-changed-files": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^24.9.0", - "execa": "^1.0.0", - "throat": "^4.0.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-cli": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/core": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "import-local": "^2.0.0", - "is-ci": "^2.0.0", - "jest-config": "^24.9.0", - "jest-util": "^24.9.0", - "jest-validate": "^24.9.0", - "prompts": "^2.0.1", - "realpath-native": "^1.1.0", - "yargs": "^13.3.0" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-config": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^24.9.0", - "@jest/types": "^24.9.0", - "babel-jest": "^24.9.0", - "chalk": "^2.0.1", - "glob": "^7.1.1", - "jest-environment-jsdom": "^24.9.0", - "jest-environment-node": "^24.9.0", - "jest-get-type": "^24.9.0", - "jest-jasmine2": "^24.9.0", - "jest-regex-util": "^24.3.0", - "jest-resolve": "^24.9.0", - "jest-util": "^24.9.0", - "jest-validate": "^24.9.0", - "micromatch": "^3.1.10", - "pretty-format": "^24.9.0", - "realpath-native": "^1.1.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-config/node_modules/micromatch": { - "version": "3.1.10", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jest-diff": { - "version": "25.5.0", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^3.0.0", - "diff-sequences": "^25.2.6", - "jest-get-type": "^25.2.6", - "pretty-format": "^25.5.0" - }, - "engines": { - "node": ">= 8.3" - } - }, - "node_modules/jest-diff/node_modules/@jest/types": { - "version": "25.5.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "engines": { - "node": ">= 8.3" - } - }, - "node_modules/jest-diff/node_modules/@types/yargs": { - "version": "15.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/jest-diff/node_modules/ansi-regex": { - "version": "5.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-diff/node_modules/ansi-styles": { - "version": "4.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/chalk": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-diff/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-diff/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-diff/node_modules/diff-sequences": { - "version": "25.2.6", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8.3" - } - }, - "node_modules/jest-diff/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-diff/node_modules/jest-get-type": { - "version": "25.2.6", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8.3" - } - }, - "node_modules/jest-diff/node_modules/pretty-format": { - "version": "25.5.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^25.5.0", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^16.12.0" - }, - "engines": { - "node": ">= 8.3" - } - }, - "node_modules/jest-diff/node_modules/supports-color": { - "version": "7.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-docblock": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "detect-newline": "^2.1.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-each": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "jest-get-type": "^24.9.0", - "jest-util": "^24.9.0", - "pretty-format": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-environment-jsdom": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "^24.9.0", - "@jest/fake-timers": "^24.9.0", - "@jest/types": "^24.9.0", - "jest-mock": "^24.9.0", - "jest-util": "^24.9.0", - "jsdom": "^11.5.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-environment-node": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "^24.9.0", - "@jest/fake-timers": "^24.9.0", - "@jest/types": "^24.9.0", - "jest-mock": "^24.9.0", - "jest-util": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-get-type": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-haste-map": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^24.9.0", - "anymatch": "^2.0.0", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.1.15", - "invariant": "^2.2.4", - "jest-serializer": "^24.9.0", - "jest-util": "^24.9.0", - "jest-worker": "^24.9.0", - "micromatch": "^3.1.10", - "sane": "^4.0.3", - "walker": "^1.0.7" - }, - "engines": { - "node": ">= 6" - }, - "optionalDependencies": { - "fsevents": "^1.2.7" - } - }, - "node_modules/jest-haste-map/node_modules/anymatch": { - "version": "2.0.0", - "dev": true, - "license": "ISC", - "dependencies": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "node_modules/jest-haste-map/node_modules/fsevents": { - "version": "1.2.13", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "dependencies": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - }, - "engines": { - "node": ">= 4.0" - } - }, - "node_modules/jest-haste-map/node_modules/jest-worker": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "merge-stream": "^2.0.0", - "supports-color": "^6.1.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-haste-map/node_modules/micromatch": { - "version": "3.1.10", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jest-haste-map/node_modules/normalize-path": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "remove-trailing-separator": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jest-haste-map/node_modules/supports-color": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jest-jasmine2": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.1.0", - "@jest/environment": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "co": "^4.6.0", - "expect": "^24.9.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^24.9.0", - "jest-matcher-utils": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-runtime": "^24.9.0", - "jest-snapshot": "^24.9.0", - "jest-util": "^24.9.0", - "pretty-format": "^24.9.0", - "throat": "^4.0.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-jasmine2/node_modules/jest-diff": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^2.0.1", - "diff-sequences": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-jasmine2/node_modules/jest-matcher-utils": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^2.0.1", - "jest-diff": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-leak-detector": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-matcher-utils": { - "version": "25.5.0", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^3.0.0", - "jest-diff": "^25.5.0", - "jest-get-type": "^25.2.6", - "pretty-format": "^25.5.0" - }, - "engines": { - "node": ">= 8.3" - } - }, - "node_modules/jest-matcher-utils/node_modules/@jest/types": { - "version": "25.5.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - }, - "engines": { - "node": ">= 8.3" - } - }, - "node_modules/jest-matcher-utils/node_modules/@types/yargs": { - "version": "15.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/jest-matcher-utils/node_modules/ansi-regex": { - "version": "5.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-matcher-utils/node_modules/ansi-styles": { - "version": "4.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-matcher-utils/node_modules/chalk": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-matcher-utils/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-matcher-utils/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-matcher-utils/node_modules/jest-get-type": { - "version": "25.2.6", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8.3" - } - }, - "node_modules/jest-matcher-utils/node_modules/pretty-format": { - "version": "25.5.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^25.5.0", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^16.12.0" - }, - "engines": { - "node": ">= 8.3" - } - }, - "node_modules/jest-matcher-utils/node_modules/supports-color": { - "version": "7.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-message-util": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/stack-utils": "^1.0.1", - "chalk": "^2.0.1", - "micromatch": "^3.1.10", - "slash": "^2.0.0", - "stack-utils": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-message-util/node_modules/micromatch": { - "version": "3.1.10", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jest-message-util/node_modules/slash": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/jest-mock": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - }, - "peerDependencies": { - "jest-resolve": "*" - }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } - } - }, - "node_modules/jest-regex-util": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-resolve": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^24.9.0", - "browser-resolve": "^1.11.3", - "chalk": "^2.0.1", - "jest-pnp-resolver": "^1.2.1", - "realpath-native": "^1.1.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-resolve-dependencies": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^24.9.0", - "jest-regex-util": "^24.3.0", - "jest-snapshot": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-runner": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/console": "^24.7.1", - "@jest/environment": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "chalk": "^2.4.2", - "exit": "^0.1.2", - "graceful-fs": "^4.1.15", - "jest-config": "^24.9.0", - "jest-docblock": "^24.3.0", - "jest-haste-map": "^24.9.0", - "jest-jasmine2": "^24.9.0", - "jest-leak-detector": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-resolve": "^24.9.0", - "jest-runtime": "^24.9.0", - "jest-util": "^24.9.0", - "jest-worker": "^24.6.0", - "source-map-support": "^0.5.6", - "throat": "^4.0.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-runner/node_modules/jest-worker": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "merge-stream": "^2.0.0", - "supports-color": "^6.1.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-runner/node_modules/supports-color": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jest-runtime": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/console": "^24.7.1", - "@jest/environment": "^24.9.0", - "@jest/source-map": "^24.3.0", - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/yargs": "^13.0.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.1.15", - "jest-config": "^24.9.0", - "jest-haste-map": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-mock": "^24.9.0", - "jest-regex-util": "^24.3.0", - "jest-resolve": "^24.9.0", - "jest-snapshot": "^24.9.0", - "jest-util": "^24.9.0", - "jest-validate": "^24.9.0", - "realpath-native": "^1.1.0", - "slash": "^2.0.0", - "strip-bom": "^3.0.0", - "yargs": "^13.3.0" - }, - "bin": { - "jest-runtime": "bin/jest-runtime.js" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-runtime/node_modules/slash": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/jest-serializer": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-snapshot": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.0.0", - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "expect": "^24.9.0", - "jest-diff": "^24.9.0", - "jest-get-type": "^24.9.0", - "jest-matcher-utils": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-resolve": "^24.9.0", - "mkdirp": "^0.5.1", - "natural-compare": "^1.4.0", - "pretty-format": "^24.9.0", - "semver": "^6.2.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-snapshot/node_modules/jest-diff": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^2.0.1", - "diff-sequences": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-snapshot/node_modules/jest-matcher-utils": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^2.0.1", - "jest-diff": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-snapshot/node_modules/semver": { - "version": "6.3.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/jest-util": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/console": "^24.9.0", - "@jest/fake-timers": "^24.9.0", - "@jest/source-map": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "callsites": "^3.0.0", - "chalk": "^2.0.1", - "graceful-fs": "^4.1.15", - "is-ci": "^2.0.0", - "mkdirp": "^0.5.1", - "slash": "^2.0.0", - "source-map": "^0.6.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-util/node_modules/slash": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/jest-util/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jest-validate": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^24.9.0", - "camelcase": "^5.3.1", - "chalk": "^2.0.1", - "jest-get-type": "^24.9.0", - "leven": "^3.1.0", - "pretty-format": "^24.9.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-watcher": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/yargs": "^13.0.0", - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.1", - "jest-util": "^24.9.0", - "string-length": "^2.0.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-watcher/node_modules/ansi-escapes": { - "version": "3.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/jest-worker": { - "version": "27.4.5", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/js-base64": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", - "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==", - "dev": true - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "license": "MIT" - }, - "node_modules/js-yaml": { - "version": "3.14.0", - "dev": true, - "license": "MIT", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsbn": { - "version": "0.1.1", - "dev": true, - "license": "MIT" - }, - "node_modules/jsdom": { - "version": "11.12.0", - "dev": true, - "license": "MIT", - "dependencies": { - "abab": "^2.0.0", - "acorn": "^5.5.3", - "acorn-globals": "^4.1.0", - "array-equal": "^1.0.0", - "cssom": ">= 0.3.2 < 0.4.0", - "cssstyle": "^1.0.0", - "data-urls": "^1.0.0", - "domexception": "^1.0.1", - "escodegen": "^1.9.1", - "html-encoding-sniffer": "^1.0.2", - "left-pad": "^1.3.0", - "nwsapi": "^2.0.7", - "parse5": "4.0.0", - "pn": "^1.1.0", - "request": "^2.87.0", - "request-promise-native": "^1.0.5", - "sax": "^1.2.4", - "symbol-tree": "^3.2.2", - "tough-cookie": "^2.3.4", - "w3c-hr-time": "^1.0.1", - "webidl-conversions": "^4.0.2", - "whatwg-encoding": "^1.0.3", - "whatwg-mimetype": "^2.1.0", - "whatwg-url": "^6.4.1", - "ws": "^5.2.0", - "xml-name-validator": "^3.0.0" - } - }, - "node_modules/jsdom/node_modules/acorn": { - "version": "5.7.4", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/jsesc": { - "version": "2.5.2", - "license": "MIT", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-parse-better-errors": { - "version": "1.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/json-schema": { - "version": "0.4.0", - "dev": true, - "license": "(AFL-2.1 OR BSD-3-Clause)" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "dev": true, - "license": "MIT" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "license": "ISC" - }, - "node_modules/json5": { - "version": "2.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.2.5" - }, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsprim": { - "version": "1.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/jsx-ast-utils": { - "version": "3.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "array-includes": "^3.1.2", - "object.assign": "^4.1.2" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/kind-of": { - "version": "6.0.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/left-pad": { - "version": "1.3.0", - "dev": true, - "license": "WTFPL" - }, - "node_modules/leven": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/levenary": { - "version": "1.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "leven": "^3.1.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/levn": { - "version": "0.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lilconfig": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", - "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/lines-and-columns": { - "version": "1.1.6", - "dev": true, - "license": "MIT" - }, - "node_modules/load-json-file": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/load-json-file/node_modules/parse-json": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/load-json-file/node_modules/pify": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/loader-runner": { - "version": "4.2.0", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=6.11.5" - } - }, - "node_modules/loader-utils": { - "version": "1.4.0", - "dev": true, - "license": "MIT", - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/loader-utils/node_modules/json5": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "license": "MIT" - }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "dev": true - }, - "node_modules/lodash.clonedeep": { - "version": "4.5.0", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.flatten": { - "version": "4.4.0", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.sortby": { - "version": "4.7.0", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.truncate": { - "version": "4.4.2", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", - "dev": true - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "license": "MIT", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/magic-string": { - "version": "0.25.7", - "dev": true, - "license": "MIT", - "dependencies": { - "sourcemap-codec": "^1.4.4" - } - }, - "node_modules/make-dir": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/make-error": { - "version": "1.3.6", - "dev": true, - "license": "ISC" - }, - "node_modules/make-fetch-happen": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", - "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", - "dev": true, - "dependencies": { - "agentkeepalive": "^4.1.3", - "cacache": "^15.2.0", - "http-cache-semantics": "^4.1.0", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^6.0.0", - "minipass": "^3.1.3", - "minipass-collect": "^1.0.2", - "minipass-fetch": "^1.3.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.2", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^6.0.0", - "ssri": "^8.0.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/makeerror": { - "version": "1.0.11", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "tmpl": "1.0.x" - } - }, - "node_modules/map-cache": { - "version": "0.2.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/map-obj": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/map-visit": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", - "dev": true - }, - "node_modules/meow": { - "version": "9.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/minimist": "^1.2.0", - "camelcase-keys": "^6.2.2", - "decamelize": "^1.2.0", - "decamelize-keys": "^1.1.0", - "hard-rejection": "^2.1.0", - "minimist-options": "4.1.0", - "normalize-package-data": "^3.0.0", - "read-pkg-up": "^7.0.1", - "redent": "^3.0.0", - "trim-newlines": "^3.0.0", - "type-fest": "^0.18.0", - "yargs-parser": "^20.2.3" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/meow/node_modules/hosted-git-info": { - "version": "4.0.2", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/meow/node_modules/normalize-package-data": { - "version": "3.0.3", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/meow/node_modules/read-pkg": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/meow/node_modules/read-pkg-up": { - "version": "7.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "find-up": "^4.1.0", - "read-pkg": "^5.2.0", - "type-fest": "^0.8.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/meow/node_modules/read-pkg-up/node_modules/type-fest": { - "version": "0.8.1", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=8" - } - }, - "node_modules/meow/node_modules/read-pkg/node_modules/hosted-git-info": { - "version": "2.8.9", - "dev": true, - "license": "ISC" - }, - "node_modules/meow/node_modules/read-pkg/node_modules/normalize-package-data": { - "version": "2.5.0", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/meow/node_modules/read-pkg/node_modules/semver": { - "version": "5.7.1", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/meow/node_modules/read-pkg/node_modules/type-fest": { - "version": "0.6.0", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=8" - } - }, - "node_modules/meow/node_modules/semver": { - "version": "7.3.5", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/meow/node_modules/type-fest": { - "version": "0.18.1", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/meow/node_modules/yargs-parser": { - "version": "20.2.9", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/merge2": { - "version": "1.4.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "braces": "^3.0.1", - "picomatch": "^2.0.5" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/micromatch/node_modules/braces": { - "version": "3.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/micromatch/node_modules/fill-range": { - "version": "7.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/micromatch/node_modules/is-number": { - "version": "7.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/micromatch/node_modules/to-regex-range": { - "version": "5.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/mime-db": { - "version": "1.44.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.27", - "dev": true, - "license": "MIT", - "dependencies": { - "mime-db": "1.44.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/min-indent": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/mini-svg-data-uri": { - "version": "1.2.3", - "dev": true, - "license": "MIT" - }, - "node_modules/minimatch": { - "version": "3.0.4", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.5", - "dev": true, - "license": "MIT" - }, - "node_modules/minimist-options": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "arrify": "^1.0.1", - "is-plain-obj": "^1.1.0", - "kind-of": "^6.0.3" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/minipass": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", - "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minipass-fetch": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", - "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", - "dev": true, - "dependencies": { - "minipass": "^3.1.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.0.0" - }, - "engines": { - "node": ">=8" - }, - "optionalDependencies": { - "encoding": "^0.1.12" - } - }, - "node_modules/minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/mixin-deep": { - "version": "1.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mixin-deep/node_modules/is-extendable": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mixin-deep/node_modules/is-plain-object": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mixin-deep/node_modules/isobject": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mkdirp": { - "version": "0.5.5", - "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.2.5" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "license": "MIT" - }, - "node_modules/nan": { - "version": "2.14.1", - "dev": true, - "license": "MIT" - }, - "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", - "dev": true, - "peer": true, - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/nanomatch": { - "version": "1.2.13", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "dev": true, - "license": "MIT" - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/neo-async": { - "version": "2.6.2", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/nice-try": { - "version": "1.0.5", - "dev": true, - "license": "MIT" - }, - "node_modules/node-gyp": { - "version": "8.4.1", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", - "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", - "dev": true, - "dependencies": { - "env-paths": "^2.2.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^9.1.0", - "nopt": "^5.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" - }, - "bin": { - "node-gyp": "bin/node-gyp.js" - }, - "engines": { - "node": ">= 10.12.0" - } - }, - "node_modules/node-gyp/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/node-gyp/node_modules/are-we-there-yet": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.0.tgz", - "integrity": "sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==", - "dev": true, - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" - } - }, - "node_modules/node-gyp/node_modules/gauge": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.1.tgz", - "integrity": "sha512-zJ4jePUHR8cceduZ53b6temRalyGpkC2Kc2r3ecNphmL+uWNoJ3YcOcUjpbG6WwoE/Ef6/+aEZz63neI2WIa1Q==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1", - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" - } - }, - "node_modules/node-gyp/node_modules/npmlog": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.1.tgz", - "integrity": "sha512-BTHDvY6nrRHuRfyjt1MAufLxYdVXZfd099H4+i1f0lPywNQyI4foeNXJRObB/uy+TYqUW0vAD9gbdSOXPst7Eg==", - "dev": true, - "dependencies": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.0", - "set-blocking": "^2.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" - } - }, - "node_modules/node-gyp/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/node-gyp/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/node-gyp/node_modules/semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/node-gyp/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/node-gyp/node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/node-int64": { - "version": "0.4.0", - "dev": true, - "license": "MIT" - }, - "node_modules/node-modules-regexp": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/node-notifier": { - "version": "5.4.5", - "dev": true, - "license": "MIT", - "dependencies": { - "growly": "^1.3.0", - "is-wsl": "^1.1.0", - "semver": "^5.5.0", - "shellwords": "^0.1.1", - "which": "^1.3.0" - } - }, - "node_modules/node-releases": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.8.tgz", - "integrity": "sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==", - "dev": true - }, - "node_modules/node-sass": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-7.0.1.tgz", - "integrity": "sha512-uMy+Xt29NlqKCFdFRZyXKOTqGt+QaKHexv9STj2WeLottnlqZEEWx6Bj0MXNthmFRRdM/YwyNo/8Tr46TOM0jQ==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "async-foreach": "^0.1.3", - "chalk": "^4.1.2", - "cross-spawn": "^7.0.3", - "gaze": "^1.0.0", - "get-stdin": "^4.0.1", - "glob": "^7.0.3", - "lodash": "^4.17.15", - "meow": "^9.0.0", - "nan": "^2.13.2", - "node-gyp": "^8.4.1", - "npmlog": "^5.0.0", - "request": "^2.88.0", - "sass-graph": "4.0.0", - "stdout-stream": "^1.4.0", - "true-case-path": "^1.0.2" - }, - "bin": { - "node-sass": "bin/node-sass" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/node-sass/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/node-sass/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/node-sass/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/node-sass/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/node-sass/node_modules/cross-spawn": { - "version": "7.0.3", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/node-sass/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/node-sass/node_modules/path-key": { - "version": "3.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/node-sass/node_modules/shebang-command": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/node-sass/node_modules/shebang-regex": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/node-sass/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/node-sass/node_modules/which": { - "version": "2.0.2", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/nopt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", - "dev": true, - "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/normalize-package-data": { - "version": "2.5.0", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm-run-path": { - "version": "2.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/npmlog": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", - "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", - "dev": true, - "dependencies": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^3.0.0", - "set-blocking": "^2.0.0" - } - }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "dev": true, - "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" - } - }, - "node_modules/nwsapi": { - "version": "2.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "*" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy": { - "version": "0.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/define-property": { - "version": "0.2.5", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/kind-of": { - "version": "3.2.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.9.0", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object-visit": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-visit/node_modules/isobject": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.assign": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.entries": { - "version": "1.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1", - "has": "^1.0.3" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.fromentries": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2", - "has": "^1.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.getownpropertydescriptors": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1" - }, - "engines": { - "node": ">= 0.8" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.pick": { - "version": "1.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.pick/node_modules/isobject": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.values": { - "version": "1.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2", - "has": "^1.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/once": { - "version": "1.4.0", - "dev": true, - "license": "ISC", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/optionator": { - "version": "0.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/p-each-series": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-reduce": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/p-finally": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-queue": { - "version": "6.6.2", - "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz", - "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==", - "dev": true, - "dependencies": { - "eventemitter3": "^4.0.4", - "p-timeout": "^3.2.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-reduce": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/p-timeout": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", - "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", - "dev": true, - "dependencies": { - "p-finally": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-json": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/parse5": { - "version": "4.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/pascalcase": { - "version": "0.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-exists": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "dev": true, - "license": "MIT" - }, - "node_modules/path-type": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/performance-now": { - "version": "2.1.0", - "dev": true, - "license": "MIT" - }, - "node_modules/picocolors": { - "version": "1.0.0", - "dev": true, - "license": "ISC" - }, - "node_modules/picomatch": { - "version": "2.2.2", - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "4.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/pirates": { - "version": "4.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "node-modules-regexp": "^1.0.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/pkg-dir": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "find-up": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "2.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-dir/node_modules/p-try": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/pn": { - "version": "1.1.0", - "dev": true, - "license": "MIT" - }, - "node_modules/posix-character-classes": { - "version": "0.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - } - ], - "peer": true, - "dependencies": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-calc": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", - "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", - "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.9", - "postcss-value-parser": "^4.2.0" - }, - "peerDependencies": { - "postcss": "^8.2.2" - } - }, - "node_modules/postcss-colormin": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", - "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", - "dev": true, - "dependencies": { - "browserslist": "^4.16.6", - "caniuse-api": "^3.0.0", - "colord": "^2.9.1", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-convert-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", - "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", - "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-discard-comments": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", - "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-discard-duplicates": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", - "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-discard-empty": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", - "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-discard-overridden": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", - "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", - "dev": true, - "dependencies": { - "lilconfig": "^2.0.5", - "yaml": "^1.10.2" - }, - "engines": { - "node": ">= 10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": ">=8.0.9", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "postcss": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/postcss-merge-longhand": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", - "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^5.1.1" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-merge-rules": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.3.tgz", - "integrity": "sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==", - "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.1.0", - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-minify-font-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", - "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-minify-gradients": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", - "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", - "dev": true, - "dependencies": { - "colord": "^2.9.1", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-minify-params": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", - "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", - "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-minify-selectors": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", - "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", - "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-modules": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-4.3.1.tgz", - "integrity": "sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==", - "dev": true, - "dependencies": { - "generic-names": "^4.0.0", - "icss-replace-symbols": "^1.1.0", - "lodash.camelcase": "^4.3.0", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "string-hash": "^1.1.1" - }, - "peerDependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/postcss-modules-extract-imports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-local-by-default": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", - "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", - "dev": true, - "dependencies": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-scope": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", - "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", - "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", - "dev": true, - "dependencies": { - "icss-utils": "^5.0.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-normalize-charset": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", - "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-display-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", - "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-positions": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", - "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-repeat-style": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", - "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-string": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", - "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-timing-functions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", - "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-unicode": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", - "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", - "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-url": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", - "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", - "dev": true, - "dependencies": { - "normalize-url": "^6.0.1", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-whitespace": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", - "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-ordered-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", - "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", - "dev": true, - "dependencies": { - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-reduce-initial": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.1.tgz", - "integrity": "sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==", - "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-reduce-transforms": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", - "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.0.11", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", - "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", - "dev": true, - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-svgo": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", - "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0", - "svgo": "^2.7.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-unique-selectors": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", - "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", - "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - }, - "node_modules/prelude-ls": { - "version": "1.1.2", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { - "version": "2.2.1", - "dev": true, - "license": "MIT", - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/prettier-linter-helpers": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-diff": "^1.1.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/pretty-format": { - "version": "24.9.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "^24.9.0", - "ansi-regex": "^4.0.0", - "ansi-styles": "^3.2.0", - "react-is": "^16.8.4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/pretty-format/node_modules/ansi-regex": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/private": { - "version": "0.1.8", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/progress": { - "version": "2.0.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", - "dev": true - }, - "node_modules/promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", - "dev": true, - "dependencies": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/promise.series": { - "version": "0.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12" - } - }, - "node_modules/prompts": { - "version": "2.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/prompts/node_modules/kleur": { - "version": "3.0.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/prop-types": { - "version": "15.7.2", - "license": "MIT", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.8.1" - } - }, - "node_modules/psl": { - "version": "1.8.0", - "dev": true, - "license": "MIT" - }, - "node_modules/pump": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/punycode": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/quick-lru": { - "version": "4.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/randombytes": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/react": { - "resolved": "../digital-growth-charts-react-client/node_modules/react", - "link": true - }, - "node_modules/react-dom": { - "resolved": "../digital-growth-charts-react-client/node_modules/react-dom", - "link": true - }, - "node_modules/react-fast-compare": { - "version": "2.0.4", - "license": "MIT" - }, - "node_modules/react-is": { - "version": "16.13.1", - "license": "MIT" - }, - "node_modules/read-pkg": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/read-pkg-up": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "find-up": "^3.0.0", - "read-pkg": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/read-pkg-up/node_modules/find-up": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/read-pkg-up/node_modules/locate-path": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/read-pkg-up/node_modules/p-limit": { - "version": "2.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/p-locate": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/read-pkg-up/node_modules/p-try": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/read-pkg/node_modules/path-type": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "pify": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/read-pkg/node_modules/pify": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/readable-stream": { - "version": "2.3.7", - "dev": true, - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/realpath-native": { - "version": "1.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "util.promisify": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/redent": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/regenerate": { - "version": "1.4.1", - "dev": true, - "license": "MIT" - }, - "node_modules/regenerate-unicode-properties": { - "version": "8.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "regenerate": "^1.4.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.13.5", - "dev": true, - "license": "MIT" - }, - "node_modules/regenerator-transform": { - "version": "0.14.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.8.4", - "private": "^0.1.8" - } - }, - "node_modules/regex-not": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regexp.prototype.flags": { - "version": "1.3.1", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regexpp": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "node_modules/regexpu-core": { - "version": "4.7.0", - "dev": true, - "license": "MIT", - "dependencies": { - "regenerate": "^1.4.0", - "regenerate-unicode-properties": "^8.2.0", - "regjsgen": "^0.5.1", - "regjsparser": "^0.6.4", - "unicode-match-property-ecmascript": "^1.0.4", - "unicode-match-property-value-ecmascript": "^1.2.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regjsgen": { - "version": "0.5.2", - "dev": true, - "license": "MIT" - }, - "node_modules/regjsparser": { - "version": "0.6.4", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "jsesc": "~0.5.0" - }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - } - }, - "node_modules/remove-trailing-separator": { - "version": "1.1.0", - "dev": true, - "license": "ISC" - }, - "node_modules/repeat-element": { - "version": "1.1.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/repeat-string": { - "version": "1.6.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/request": { - "version": "2.88.2", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/request-promise-core": { - "version": "1.1.3", - "dev": true, - "license": "ISC", - "dependencies": { - "lodash": "^4.17.15" - }, - "engines": { - "node": ">=0.10.0" - }, - "peerDependencies": { - "request": "^2.34" - } - }, - "node_modules/request-promise-native": { - "version": "1.0.8", - "dev": true, - "license": "ISC", - "dependencies": { - "request-promise-core": "1.1.3", - "stealthy-require": "^1.1.1", - "tough-cookie": "^2.3.3" - }, - "engines": { - "node": ">=0.12.0" - }, - "peerDependencies": { - "request": "^2.34" - } - }, - "node_modules/request/node_modules/qs": { - "version": "6.5.2", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/require-directory": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-main-filename": { - "version": "2.0.0", - "dev": true, - "license": "ISC" - }, - "node_modules/resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - "dev": true, - "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-cwd": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "resolve-from": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/resolve-cwd/node_modules/resolve-from": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/resolve-from": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-url": { - "version": "0.2.1", - "dev": true, - "license": "MIT" - }, - "node_modules/ret": { - "version": "0.1.15", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12" - } - }, - "node_modules/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "dev": true, - "license": "MIT", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "2.7.1", - "dev": true, - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/rollup": { - "version": "1.32.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/estree": "*", - "@types/node": "*", - "acorn": "^7.1.0" - }, - "bin": { - "rollup": "dist/bin/rollup" - } - }, - "node_modules/rollup-plugin-copy": { - "version": "3.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/fs-extra": "^8.0.1", - "colorette": "^1.1.0", - "fs-extra": "^8.1.0", - "globby": "10.0.1", - "is-plain-object": "^3.0.0" - }, - "engines": { - "node": ">=8.3" - } - }, - "node_modules/rollup-plugin-copy/node_modules/globby": { - "version": "10.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", - "glob": "^7.1.3", - "ignore": "^5.1.1", - "merge2": "^1.2.3", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/rollup-plugin-copy/node_modules/ignore": { - "version": "5.1.8", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/rollup-plugin-peer-deps-external": { - "version": "2.2.2", - "dev": true, - "license": "MIT", - "peerDependencies": { - "rollup": "*" - } - }, - "node_modules/rollup-plugin-postcss": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/rollup-plugin-postcss/-/rollup-plugin-postcss-4.0.2.tgz", - "integrity": "sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==", - "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "concat-with-sourcemaps": "^1.1.0", - "cssnano": "^5.0.1", - "import-cwd": "^3.0.0", - "p-queue": "^6.6.2", - "pify": "^5.0.0", - "postcss-load-config": "^3.0.0", - "postcss-modules": "^4.0.0", - "promise.series": "^0.2.0", - "resolve": "^1.19.0", - "rollup-pluginutils": "^2.8.2", - "safe-identifier": "^0.4.2", - "style-inject": "^0.3.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "postcss": "8.x" - } - }, - "node_modules/rollup-plugin-postcss/node_modules/ansi-styles": { - "version": "4.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/rollup-plugin-postcss/node_modules/chalk": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/rollup-plugin-postcss/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/rollup-plugin-postcss/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/rollup-plugin-postcss/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/rollup-plugin-postcss/node_modules/import-cwd": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "import-from": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/rollup-plugin-postcss/node_modules/import-from": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/rollup-plugin-postcss/node_modules/pify": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/rollup-plugin-postcss/node_modules/supports-color": { - "version": "7.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/rollup-plugin-typescript2": { - "version": "0.27.1", - "dev": true, - "license": "MIT", - "dependencies": { - "@rollup/pluginutils": "^3.0.8", - "find-cache-dir": "^3.3.1", - "fs-extra": "8.1.0", - "resolve": "1.15.1", - "tslib": "1.11.2" - }, - "peerDependencies": { - "rollup": ">=1.26.3", - "typescript": ">=2.4.0" - } - }, - "node_modules/rollup-plugin-typescript2/node_modules/resolve": { - "version": "1.15.1", - "dev": true, - "license": "MIT", - "dependencies": { - "path-parse": "^1.0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/rollup-plugin-typescript2/node_modules/tslib": { - "version": "1.11.2", - "dev": true, - "license": "0BSD" - }, - "node_modules/rollup-plugin-version-injector": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/rollup-plugin-version-injector/-/rollup-plugin-version-injector-1.3.3.tgz", - "integrity": "sha512-+Rrf0xIFHkwFGuMfphVlAOtd9FlhHFh3vrDwamJ6+YR3IxebRHGVT879qwWzZ1CpWMCLlngb2MmHW5wC5EJqvg==", - "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "dateformat": "^4.2.1", - "lodash": "^4.17.20" - } - }, - "node_modules/rollup-plugin-version-injector/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/rollup-plugin-version-injector/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/rollup-plugin-version-injector/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/rollup-plugin-version-injector/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/rollup-plugin-version-injector/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/rollup-plugin-version-injector/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/rollup-pluginutils": { - "version": "2.8.2", - "dev": true, - "license": "MIT", - "dependencies": { - "estree-walker": "^0.6.1" - } - }, - "node_modules/rollup-pluginutils/node_modules/estree-walker": { - "version": "0.6.1", - "dev": true, - "license": "MIT" - }, - "node_modules/rollup/node_modules/acorn": { - "version": "7.3.1", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/rsvp": { - "version": "4.8.5", - "dev": true, - "license": "MIT", - "engines": { - "node": "6.* || >= 7.*" - } - }, - "node_modules/run-parallel": { - "version": "1.1.9", - "dev": true, - "license": "MIT" - }, - "node_modules/safe-buffer": { - "version": "5.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/safe-identifier": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/safe-identifier/-/safe-identifier-0.4.2.tgz", - "integrity": "sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==", - "dev": true - }, - "node_modules/safe-regex": { - "version": "1.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ret": "~0.1.10" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/sane": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@cnakazawa/watch": "^1.0.3", - "anymatch": "^2.0.0", - "capture-exit": "^2.0.0", - "exec-sh": "^0.3.2", - "execa": "^1.0.0", - "fb-watchman": "^2.0.0", - "micromatch": "^3.1.4", - "minimist": "^1.1.1", - "walker": "~1.0.5" - }, - "bin": { - "sane": "src/cli.js" - }, - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/sane/node_modules/anymatch": { - "version": "2.0.0", - "dev": true, - "license": "ISC", - "dependencies": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "node_modules/sane/node_modules/micromatch": { - "version": "3.1.10", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sane/node_modules/normalize-path": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "remove-trailing-separator": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sass": { - "version": "1.57.1", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.57.1.tgz", - "integrity": "sha512-O2+LwLS79op7GI0xZ8fqzF7X2m/m8WFfI02dHOdsK5R2ECeS5F62zrwg/relM1rjSLy7Vd/DiMNIvPrQGsA0jw==", - "dependencies": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", - "source-map-js": ">=0.6.2 <2.0.0" - }, - "bin": { - "sass": "sass.js" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/sass-graph": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-4.0.0.tgz", - "integrity": "sha512-WSO/MfXqKH7/TS8RdkCX3lVkPFQzCgbqdGsmSKq6tlPU+GpGEsa/5aW18JqItnqh+lPtcjifqdZ/VmiILkKckQ==", - "dev": true, - "dependencies": { - "glob": "^7.0.0", - "lodash": "^4.17.11", - "scss-tokenizer": "^0.3.0", - "yargs": "^17.2.1" - }, - "bin": { - "sassgraph": "bin/sassgraph" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/sass-graph/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/sass-graph/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/sass-graph/node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "node_modules/sass-graph/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/sass-graph/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/sass-graph/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/sass-graph/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/sass-graph/node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/sass-graph/node_modules/yargs": { - "version": "17.3.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.3.1.tgz", - "integrity": "sha512-WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA==", - "dev": true, - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/sass-graph/node_modules/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-z9kApYUOCwoeZ78rfRYYWdiU/iNL6mwwYlkkZfJoyMR1xps+NEBX5X7XmRpxkZHhXJ6+Ey00IwKxBBSW9FIjyA==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/sax": { - "version": "1.2.4", - "dev": true, - "license": "ISC" - }, - "node_modules/schema-utils": { - "version": "3.1.1", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/scss-tokenizer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.3.0.tgz", - "integrity": "sha512-14Zl9GcbBvOT9057ZKjpz5yPOyUWG2ojd9D5io28wHRYsOrs7U95Q+KNL87+32p8rc+LvDpbu/i9ZYjM9Q+FsQ==", - "dev": true, - "dependencies": { - "js-base64": "^2.4.3", - "source-map": "^0.7.1" - } - }, - "node_modules/scss-tokenizer/node_modules/source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/semver": { - "version": "5.7.1", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/serialize-javascript": { - "version": "6.0.0", - "dev": true, - "license": "BSD-3-Clause", - "peer": true, - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "dev": true, - "license": "ISC" - }, - "node_modules/set-value": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/set-value/node_modules/extend-shallow": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/set-value/node_modules/is-plain-object": { - "version": "2.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/set-value/node_modules/isobject": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/shallowequal": { - "version": "1.1.0", - "license": "MIT", - "peer": true - }, - "node_modules/shebang-command": { - "version": "1.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/shebang-regex": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/shellwords": { - "version": "0.1.1", - "dev": true, - "license": "MIT" - }, - "node_modules/side-channel": { - "version": "1.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.3", - "dev": true, - "license": "ISC" - }, - "node_modules/sisteransi": { - "version": "1.0.5", - "dev": true, - "license": "MIT" - }, - "node_modules/slash": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/slice-ansi": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/astral-regex": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/slice-ansi/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/slice-ansi/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true, - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/snapdragon": { - "version": "0.8.2", - "dev": true, - "license": "MIT", - "dependencies": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/define-property": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/is-accessor-descriptor": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/is-data-descriptor": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/is-descriptor": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/isobject": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-util": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^3.2.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-util/node_modules/kind-of": { - "version": "3.2.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/debug": { - "version": "2.6.9", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/snapdragon/node_modules/define-property": { - "version": "0.2.5", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/extend-shallow": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/ms": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/socks": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.6.2.tgz", - "integrity": "sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA==", - "dev": true, - "dependencies": { - "ip": "^1.1.5", - "smart-buffer": "^4.2.0" - }, - "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks-proxy-agent": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.1.1.tgz", - "integrity": "sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==", - "dev": true, - "dependencies": { - "agent-base": "^6.0.2", - "debug": "^4.3.1", - "socks": "^2.6.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/source-map": { - "version": "0.5.7", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-resolve": { - "version": "0.5.3", - "dev": true, - "license": "MIT", - "dependencies": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "dev": true, - "license": "MIT", - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-url": { - "version": "0.4.0", - "dev": true, - "license": "MIT" - }, - "node_modules/sourcemap-codec": { - "version": "1.4.8", - "dev": true, - "license": "MIT" - }, - "node_modules/spdx-correct": { - "version": "3.1.1", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-exceptions": { - "version": "2.3.0", - "dev": true, - "license": "CC-BY-3.0" - }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-license-ids": { - "version": "3.0.5", - "dev": true, - "license": "CC0-1.0" - }, - "node_modules/split-string": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "extend-shallow": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "dev": true, - "license": "BSD-3-Clause" - }, - "node_modules/sshpk": { - "version": "1.16.1", - "dev": true, - "license": "MIT", - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ssri": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", - "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", - "dev": true, - "dependencies": { - "minipass": "^3.1.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/stable": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", - "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", - "dev": true - }, - "node_modules/stack-utils": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend": { - "version": "0.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/define-property": { - "version": "0.2.5", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/stdout-stream": { - "version": "1.4.1", - "dev": true, - "license": "MIT", - "dependencies": { - "readable-stream": "^2.0.1" - } - }, - "node_modules/stealthy-require": { - "version": "1.1.1", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/string_decoder": { - "version": "1.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/string-hash": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", - "integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==", - "dev": true - }, - "node_modules/string-length": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "astral-regex": "^1.0.0", - "strip-ansi": "^4.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/string-length/node_modules/ansi-regex": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/string-length/node_modules/strip-ansi": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/string-width/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string.prototype.matchall": { - "version": "4.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2", - "has-symbols": "^1.0.1", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.3.1", - "side-channel": "^1.0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-eof": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/strip-indent": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "min-indent": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/style-inject": { - "version": "0.3.0", - "dev": true, - "license": "MIT" - }, - "node_modules/styled-components": { - "version": "5.2.1", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/traverse": "^7.4.5", - "@emotion/is-prop-valid": "^0.8.8", - "@emotion/stylis": "^0.8.4", - "@emotion/unitless": "^0.7.4", - "babel-plugin-styled-components": ">= 1", - "css-to-react-native": "^3.0.0", - "hoist-non-react-statics": "^3.0.0", - "shallowequal": "^1.1.0", - "supports-color": "^5.5.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/styled-components" - }, - "peerDependencies": { - "react": ">= 16.8.0", - "react-dom": ">= 16.8.0", - "react-is": ">= 16.8.0" - } - }, - "node_modules/stylehacks": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", - "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", - "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/svgo": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", - "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", - "dev": true, - "dependencies": { - "@trysound/sax": "0.2.0", - "commander": "^7.2.0", - "css-select": "^4.1.3", - "css-tree": "^1.1.3", - "csso": "^4.2.0", - "picocolors": "^1.0.0", - "stable": "^0.1.8" - }, - "bin": { - "svgo": "bin/svgo" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/svgo/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/symbol-tree": { - "version": "3.2.4", - "dev": true, - "license": "MIT" - }, - "node_modules/table": { - "version": "6.0.9", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "ajv": "^8.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "lodash.clonedeep": "^4.5.0", - "lodash.flatten": "^4.4.0", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/table/node_modules/ajv": { - "version": "8.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/table/node_modules/json-schema-traverse": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/tapable": { - "version": "2.2.1", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/tar": { - "version": "6.1.11", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", - "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", - "dev": true, - "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^3.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/tar/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.0", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "jest-worker": "^27.4.1", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "source-map": "^0.6.1", - "terser": "^5.7.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } - } - }, - "node_modules/terser-webpack-plugin/node_modules/acorn": { - "version": "8.6.0", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/terser-webpack-plugin/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/terser-webpack-plugin/node_modules/terser": { - "version": "5.10.0", - "dev": true, - "license": "BSD-2-Clause", - "peer": true, - "dependencies": { - "commander": "^2.20.0", - "source-map": "~0.7.2", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "acorn": "^8.5.0" - }, - "peerDependenciesMeta": { - "acorn": { - "optional": true - } - } - }, - "node_modules/terser-webpack-plugin/node_modules/terser/node_modules/source-map": { - "version": "0.7.3", - "dev": true, - "license": "BSD-3-Clause", - "peer": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/test-exclude": { - "version": "5.2.3", - "dev": true, - "license": "ISC", - "dependencies": { - "glob": "^7.1.3", - "minimatch": "^3.0.4", - "read-pkg-up": "^4.0.0", - "require-main-filename": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/throat": { - "version": "4.1.0", - "dev": true, - "license": "MIT" - }, - "node_modules/tmpl": { - "version": "1.0.5", - "dev": true, - "license": "BSD-3-Clause" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-object-path": { - "version": "0.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-object-path/node_modules/kind-of": { - "version": "3.2.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex": { - "version": "3.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex-range": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/tough-cookie": { - "version": "2.5.0", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/tr46": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/trim-newlines": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/true-case-path": { - "version": "1.0.3", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "glob": "^7.1.2" - } - }, - "node_modules/ts-jest": { - "version": "24.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "bs-logger": "0.x", - "buffer-from": "1.x", - "fast-json-stable-stringify": "2.x", - "json5": "2.x", - "lodash.memoize": "4.x", - "make-error": "1.x", - "mkdirp": "0.x", - "resolve": "1.x", - "semver": "^5.5", - "yargs-parser": "10.x" - }, - "bin": { - "ts-jest": "cli.js" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "jest": ">=24 <25" - } - }, - "node_modules/ts-jest/node_modules/camelcase": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/ts-jest/node_modules/yargs-parser": { - "version": "10.1.0", - "dev": true, - "license": "ISC", - "dependencies": { - "camelcase": "^4.1.0" - } - }, - "node_modules/tslib": { - "version": "2.1.0", - "license": "0BSD" - }, - "node_modules/tsutils": { - "version": "3.21.0", - "dev": true, - "license": "MIT", - "dependencies": { - "tslib": "^1.8.1" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - } - }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", - "dev": true, - "license": "0BSD" - }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "dev": true, - "license": "Unlicense" - }, - "node_modules/type-check": { - "version": "0.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "0.8.1", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=8" - } - }, - "node_modules/typescript": { - "version": "3.9.5", - "dev": true, - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.1", - "has-bigints": "^1.0.1", - "has-symbols": "^1.0.2", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "1.0.4", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-ecmascript": { - "version": "1.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "unicode-canonical-property-names-ecmascript": "^1.0.4", - "unicode-property-aliases-ecmascript": "^1.0.4" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "1.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "1.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/union-value": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "dev": true, - "dependencies": { - "unique-slug": "^2.0.0" - } - }, - "node_modules/unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4" - } - }, - "node_modules/universalify": { - "version": "0.1.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/unset-value": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-value": { - "version": "0.3.1", - "dev": true, - "license": "MIT", - "dependencies": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "isarray": "1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-values": { - "version": "0.1.4", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/isobject": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", - "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "browserslist-lint": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.2.2", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/urix": { - "version": "0.1.0", - "dev": true, - "license": "MIT" - }, - "node_modules/use": { - "version": "3.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/util.promisify": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "define-properties": "^1.1.2", - "object.getownpropertydescriptors": "^2.0.3" - } - }, - "node_modules/uuid": { - "version": "3.4.0", - "dev": true, - "license": "MIT", - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/v8-compile-cache": { - "version": "2.3.0", - "dev": true, - "license": "MIT" - }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "node_modules/verror": { - "version": "1.10.0", - "dev": true, - "engines": [ - "node >=0.6.0" - ], - "license": "MIT", - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "node_modules/victory": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "victory-area": "^35.4.8", - "victory-axis": "^35.4.8", - "victory-bar": "^35.4.8", - "victory-box-plot": "^35.4.8", - "victory-brush-container": "^35.4.8", - "victory-brush-line": "^35.4.8", - "victory-candlestick": "^35.4.8", - "victory-chart": "^35.4.8", - "victory-core": "^35.4.8", - "victory-create-container": "^35.4.8", - "victory-cursor-container": "^35.4.8", - "victory-errorbar": "^35.4.8", - "victory-group": "^35.4.8", - "victory-histogram": "^35.4.8", - "victory-legend": "^35.4.8", - "victory-line": "^35.4.8", - "victory-pie": "^35.4.8", - "victory-polar-axis": "^35.4.8", - "victory-scatter": "^35.4.8", - "victory-selection-container": "^35.4.8", - "victory-shared-events": "^35.4.8", - "victory-stack": "^35.4.8", - "victory-tooltip": "^35.4.8", - "victory-voronoi": "^35.4.8", - "victory-voronoi-container": "^35.4.8", - "victory-zoom-container": "^35.4.8" - } - }, - "node_modules/victory-area": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "d3-shape": "^1.2.0", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-axis": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-bar": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "d3-shape": "^1.2.0", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-box-plot": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "d3-array": "^1.2.0", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-brush-container": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-brush-line": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-candlestick": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-chart": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0", - "victory-axis": "^35.4.8", - "victory-core": "^35.4.8", - "victory-polar-axis": "^35.4.8", - "victory-shared-events": "^35.4.8" - } - }, - "node_modules/victory-core": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "d3-ease": "^1.0.0", - "d3-interpolate": "^1.1.1", - "d3-scale": "^1.0.0", - "d3-shape": "^1.2.0", - "d3-timer": "^1.0.0", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0" - } - }, - "node_modules/victory-create-container": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.19", - "victory-brush-container": "^35.4.8", - "victory-core": "^35.4.8", - "victory-cursor-container": "^35.4.8", - "victory-selection-container": "^35.4.8", - "victory-voronoi-container": "^35.4.8", - "victory-zoom-container": "^35.4.8" - } - }, - "node_modules/victory-cursor-container": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-errorbar": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-group": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0", - "victory-core": "^35.4.8", - "victory-shared-events": "^35.4.8" - } - }, - "node_modules/victory-histogram": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "d3-array": "^2.4.0", - "d3-scale": "^1.0.0", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0", - "victory-bar": "^35.4.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-histogram/node_modules/d3-array": { - "version": "2.11.0", - "license": "BSD-3-Clause", - "dependencies": { - "internmap": "^1.0.0" - } - }, - "node_modules/victory-legend": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-line": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "d3-shape": "^1.2.0", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-pie": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "d3-shape": "^1.0.0", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-polar-axis": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-scatter": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-selection-container": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-shared-events": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "json-stringify-safe": "^5.0.1", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-stack": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0", - "victory-core": "^35.4.8", - "victory-shared-events": "^35.4.8" - } - }, - "node_modules/victory-tooltip": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-voronoi": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "d3-voronoi": "^1.1.2", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/victory-voronoi-container": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "delaunay-find": "0.0.5", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0", - "victory-core": "^35.4.8", - "victory-tooltip": "^35.4.8" - } - }, - "node_modules/victory-zoom-container": { - "version": "35.4.8", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "node_modules/w3c-hr-time": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "browser-process-hrtime": "^1.0.0" - } - }, - "node_modules/walker": { - "version": "1.0.7", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "makeerror": "1.0.x" - } - }, - "node_modules/watchpack": { - "version": "2.3.1", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webidl-conversions": { - "version": "4.0.2", - "dev": true, - "license": "BSD-2-Clause" - }, - "node_modules/webpack": { - "version": "5.65.0", - "dev": true, - "license": "MIT", - "peer": true, - "dependencies": { - "@types/eslint-scope": "^3.7.0", - "@types/estree": "^0.0.50", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.4.1", - "acorn-import-assertions": "^1.7.6", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.8.3", - "es-module-lexer": "^0.9.0", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.4", - "json-parse-better-errors": "^1.0.2", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.3.1", - "webpack-sources": "^3.2.2" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-sources": { - "version": "3.2.2", - "dev": true, - "license": "MIT", - "peer": true, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack/node_modules/@types/estree": { - "version": "0.0.50", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/webpack/node_modules/acorn": { - "version": "8.6.0", - "dev": true, - "license": "MIT", - "peer": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/webpack/node_modules/acorn-import-assertions": { - "version": "1.8.0", - "dev": true, - "license": "MIT", - "peer": true, - "peerDependencies": { - "acorn": "^8" - } - }, - "node_modules/whatwg-encoding": { - "version": "1.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "iconv-lite": "0.4.24" - } - }, - "node_modules/whatwg-mimetype": { - "version": "2.3.0", - "dev": true, - "license": "MIT" - }, - "node_modules/whatwg-url": { - "version": "6.5.0", - "dev": true, - "license": "MIT", - "dependencies": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, - "node_modules/which": { - "version": "1.3.1", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-module": { - "version": "2.0.0", - "dev": true, - "license": "ISC" - }, - "node_modules/wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "dev": true, - "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "node_modules/word-wrap": { - "version": "1.2.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/wrap-ansi": { - "version": "5.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/wrap-ansi/node_modules/string-width": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "dev": true, - "license": "ISC" - }, - "node_modules/write-file-atomic": { - "version": "2.4.1", - "dev": true, - "license": "ISC", - "dependencies": { - "graceful-fs": "^4.1.11", - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" - } - }, - "node_modules/ws": { - "version": "5.2.3", - "dev": true, - "license": "MIT", - "dependencies": { - "async-limiter": "~1.0.0" - } - }, - "node_modules/xml-name-validator": { - "version": "3.0.0", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/y18n": { - "version": "4.0.1", - "dev": true, - "license": "ISC" - }, - "node_modules/yallist": { - "version": "4.0.0", - "dev": true, - "license": "ISC" - }, - "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/yargs": { - "version": "13.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" - } - }, - "node_modules/yargs-parser": { - "version": "13.1.2", - "dev": true, - "license": "ISC", - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - }, - "node_modules/yargs/node_modules/ansi-regex": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/yargs/node_modules/find-up": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/yargs/node_modules/is-fullwidth-code-point": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/yargs/node_modules/locate-path": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/yargs/node_modules/p-limit": { - "version": "2.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/yargs/node_modules/p-locate": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/yargs/node_modules/p-try": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/yargs/node_modules/string-width": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/yargs/node_modules/strip-ansi": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "engines": { - "node": ">=6" - } - } - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.11", - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/compat-data": { - "version": "7.10.3", - "dev": true, - "requires": { - "browserslist": "^4.12.0", - "invariant": "^2.2.4", - "semver": "^5.5.0" - } - }, - "@babel/core": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.3", - "@babel/generator": "^7.10.3", - "@babel/helper-module-transforms": "^7.10.1", - "@babel/helpers": "^7.10.1", - "@babel/parser": "^7.10.3", - "@babel/template": "^7.10.3", - "@babel/traverse": "^7.10.3", - "@babel/types": "^7.10.3", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.1", - "json5": "^2.1.2", - "lodash": "^4.17.13", - "resolve": "^1.3.2", - "semver": "^5.4.1", - "source-map": "^0.5.0" - } - }, - "@babel/generator": { - "version": "7.10.3", - "requires": { - "@babel/types": "^7.10.3", - "jsesc": "^2.5.1", - "lodash": "^4.17.13", - "source-map": "^0.5.0" - } - }, - "@babel/helper-annotate-as-pure": { - "version": "7.10.1", - "requires": { - "@babel/types": "^7.10.1" - } - }, - "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/helper-explode-assignable-expression": "^7.10.3", - "@babel/types": "^7.10.3" - } - }, - "@babel/helper-builder-react-jsx": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.10.1", - "@babel/types": "^7.10.3" - } - }, - "@babel/helper-builder-react-jsx-experimental": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.10.1", - "@babel/helper-module-imports": "^7.10.1", - "@babel/types": "^7.10.1" - } - }, - "@babel/helper-compilation-targets": { - "version": "7.10.2", - "dev": true, - "requires": { - "@babel/compat-data": "^7.10.1", - "browserslist": "^4.12.0", - "invariant": "^2.2.4", - "levenary": "^1.1.1", - "semver": "^5.5.0" - } - }, - "@babel/helper-create-class-features-plugin": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/helper-function-name": "^7.10.3", - "@babel/helper-member-expression-to-functions": "^7.10.3", - "@babel/helper-optimise-call-expression": "^7.10.3", - "@babel/helper-plugin-utils": "^7.10.3", - "@babel/helper-replace-supers": "^7.10.1", - "@babel/helper-split-export-declaration": "^7.10.1" - } - }, - "@babel/helper-create-regexp-features-plugin": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.10.1", - "@babel/helper-regex": "^7.10.1", - "regexpu-core": "^4.7.0" - } - }, - "@babel/helper-define-map": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/helper-function-name": "^7.10.3", - "@babel/types": "^7.10.3", - "lodash": "^4.17.13" - } - }, - "@babel/helper-explode-assignable-expression": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/traverse": "^7.10.3", - "@babel/types": "^7.10.3" - } - }, - "@babel/helper-function-name": { - "version": "7.10.3", - "requires": { - "@babel/helper-get-function-arity": "^7.10.3", - "@babel/template": "^7.10.3", - "@babel/types": "^7.10.3" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.10.3", - "requires": { - "@babel/types": "^7.10.3" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/types": "^7.10.3" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/types": "^7.10.3" - } - }, - "@babel/helper-module-imports": { - "version": "7.10.3", - "requires": { - "@babel/types": "^7.10.3" - } - }, - "@babel/helper-module-transforms": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.10.1", - "@babel/helper-replace-supers": "^7.10.1", - "@babel/helper-simple-access": "^7.10.1", - "@babel/helper-split-export-declaration": "^7.10.1", - "@babel/template": "^7.10.1", - "@babel/types": "^7.10.1", - "lodash": "^4.17.13" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/types": "^7.10.3" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.10.3", - "dev": true - }, - "@babel/helper-regex": { - "version": "7.10.1", - "dev": true, - "requires": { - "lodash": "^4.17.13" - } - }, - "@babel/helper-remap-async-to-generator": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.10.1", - "@babel/helper-wrap-function": "^7.10.1", - "@babel/template": "^7.10.3", - "@babel/traverse": "^7.10.3", - "@babel/types": "^7.10.3" - } - }, - "@babel/helper-replace-supers": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-member-expression-to-functions": "^7.10.1", - "@babel/helper-optimise-call-expression": "^7.10.1", - "@babel/traverse": "^7.10.1", - "@babel/types": "^7.10.1" - } - }, - "@babel/helper-simple-access": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/template": "^7.10.1", - "@babel/types": "^7.10.1" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.10.1", - "requires": { - "@babel/types": "^7.10.1" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.12.11" - }, - "@babel/helper-wrap-function": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-function-name": "^7.10.1", - "@babel/template": "^7.10.1", - "@babel/traverse": "^7.10.1", - "@babel/types": "^7.10.1" - } - }, - "@babel/helpers": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/template": "^7.10.1", - "@babel/traverse": "^7.10.1", - "@babel/types": "^7.10.1" - } - }, - "@babel/highlight": { - "version": "7.13.10", - "requires": { - "@babel/helper-validator-identifier": "^7.12.11", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.10.3" - }, - "@babel/plugin-proposal-async-generator-functions": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.3", - "@babel/helper-remap-async-to-generator": "^7.10.3", - "@babel/plugin-syntax-async-generators": "^7.8.0" - } - }, - "@babel/plugin-proposal-decorators": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-decorators": "^7.8.3" - } - }, - "@babel/plugin-proposal-dynamic-import": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/plugin-syntax-dynamic-import": "^7.8.0" - } - }, - "@babel/plugin-proposal-json-strings": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/plugin-syntax-json-strings": "^7.8.0" - } - }, - "@babel/plugin-proposal-object-rest-spread": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.0", - "@babel/plugin-transform-parameters": "^7.10.1" - } - }, - "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.0" - } - }, - "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-decorators": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-flow": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-jsx": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-syntax-typescript": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-arrow-functions": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-async-to-generator": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/helper-remap-async-to-generator": "^7.10.1" - } - }, - "@babel/plugin-transform-block-scoped-functions": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-block-scoping": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1", - "lodash": "^4.17.13" - } - }, - "@babel/plugin-transform-classes": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.10.1", - "@babel/helper-define-map": "^7.10.3", - "@babel/helper-function-name": "^7.10.3", - "@babel/helper-optimise-call-expression": "^7.10.3", - "@babel/helper-plugin-utils": "^7.10.3", - "@babel/helper-replace-supers": "^7.10.1", - "@babel/helper-split-export-declaration": "^7.10.1", - "globals": "^11.1.0" - } - }, - "@babel/plugin-transform-computed-properties": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.3" - } - }, - "@babel/plugin-transform-destructuring": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-dotall-regex": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-duplicate-keys": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-exponentiation-operator": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-for-of": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-function-name": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-function-name": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-literals": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-member-expression-literals": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-modules-amd": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1", - "babel-plugin-dynamic-import-node": "^2.3.3" - } - }, - "@babel/plugin-transform-modules-commonjs": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/helper-simple-access": "^7.10.1", - "babel-plugin-dynamic-import-node": "^2.3.3" - } - }, - "@babel/plugin-transform-modules-systemjs": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/helper-hoist-variables": "^7.10.3", - "@babel/helper-module-transforms": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.3", - "babel-plugin-dynamic-import-node": "^2.3.3" - } - }, - "@babel/plugin-transform-modules-umd": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-module-transforms": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.8.3" - } - }, - "@babel/plugin-transform-new-target": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-object-super": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/helper-replace-supers": "^7.10.1" - } - }, - "@babel/plugin-transform-parameters": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-property-literals": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-react-jsx": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/helper-builder-react-jsx": "^7.10.3", - "@babel/helper-builder-react-jsx-experimental": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.3", - "@babel/plugin-syntax-jsx": "^7.10.1" - } - }, - "@babel/plugin-transform-react-jsx-development": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-builder-react-jsx-experimental": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/plugin-syntax-jsx": "^7.10.1" - } - }, - "@babel/plugin-transform-react-jsx-self": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/plugin-syntax-jsx": "^7.10.1" - } - }, - "@babel/plugin-transform-react-jsx-source": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/plugin-syntax-jsx": "^7.10.1" - } - }, - "@babel/plugin-transform-regenerator": { - "version": "7.10.3", - "dev": true, - "requires": { - "regenerator-transform": "^0.14.2" - } - }, - "@babel/plugin-transform-reserved-words": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-runtime": { - "version": "7.9.0", - "dev": true, - "requires": { - "@babel/helper-module-imports": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "resolve": "^1.8.1", - "semver": "^5.5.1" - } - }, - "@babel/plugin-transform-shorthand-properties": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-spread": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-sticky-regex": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1", - "@babel/helper-regex": "^7.10.1" - } - }, - "@babel/plugin-transform-template-literals": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.3" - } - }, - "@babel/plugin-transform-typeof-symbol": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/plugin-transform-typescript": { - "version": "7.10.3", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.10.3", - "@babel/helper-plugin-utils": "^7.10.3", - "@babel/plugin-syntax-typescript": "^7.10.1" - } - }, - "@babel/plugin-transform-unicode-regex": { - "version": "7.10.1", - "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.10.1", - "@babel/helper-plugin-utils": "^7.10.1" - } - }, - "@babel/preset-modules": { - "version": "0.1.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - } - }, - "@babel/preset-typescript": { - "version": "7.9.0", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-transform-typescript": "^7.9.0" - } - }, - "@babel/runtime": { - "version": "7.10.3", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/runtime-corejs3": { - "version": "7.10.3", - "dev": true, - "requires": { - "core-js-pure": "^3.0.0", - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/template": { - "version": "7.10.3", - "requires": { - "@babel/code-frame": "^7.10.3", - "@babel/parser": "^7.10.3", - "@babel/types": "^7.10.3" - } - }, - "@babel/traverse": { - "version": "7.10.3", - "requires": { - "@babel/code-frame": "^7.10.3", - "@babel/generator": "^7.10.3", - "@babel/helper-function-name": "^7.10.3", - "@babel/helper-split-export-declaration": "^7.10.1", - "@babel/parser": "^7.10.3", - "@babel/types": "^7.10.3", - "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.13" - } - }, - "@babel/types": { - "version": "7.10.3", - "requires": { - "@babel/helper-validator-identifier": "^7.10.3", - "lodash": "^4.17.13", - "to-fast-properties": "^2.0.0" - } - }, - "@cnakazawa/watch": { - "version": "1.0.4", - "dev": true, - "requires": { - "exec-sh": "^0.3.2", - "minimist": "^1.2.0" - } - }, - "@emotion/is-prop-valid": { - "version": "0.8.8", - "peer": true, - "requires": { - "@emotion/memoize": "0.7.4" - } - }, - "@emotion/memoize": { - "version": "0.7.4", - "peer": true - }, - "@emotion/stylis": { - "version": "0.8.5", - "peer": true - }, - "@emotion/unitless": { - "version": "0.7.5", - "peer": true - }, - "@eslint/eslintrc": { - "version": "0.4.0", - "dev": true, - "requires": { - "ajv": "^6.12.4", - "debug": "^4.1.1", - "espree": "^7.3.0", - "globals": "^12.1.0", - "ignore": "^4.0.6", - "import-fresh": "^3.2.1", - "js-yaml": "^3.13.1", - "minimatch": "^3.0.4", - "strip-json-comments": "^3.1.1" - }, - "dependencies": { - "globals": { - "version": "12.4.0", - "dev": true, - "requires": { - "type-fest": "^0.8.1" - } - } - } - }, - "@gar/promisify": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", - "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", - "dev": true - }, - "@jest/console": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/source-map": "^24.9.0", - "chalk": "^2.0.1", - "slash": "^2.0.0" - }, - "dependencies": { - "slash": { - "version": "2.0.0", - "dev": true - } - } - }, - "@jest/core": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/console": "^24.7.1", - "@jest/reporters": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "graceful-fs": "^4.1.15", - "jest-changed-files": "^24.9.0", - "jest-config": "^24.9.0", - "jest-haste-map": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-regex-util": "^24.3.0", - "jest-resolve": "^24.9.0", - "jest-resolve-dependencies": "^24.9.0", - "jest-runner": "^24.9.0", - "jest-runtime": "^24.9.0", - "jest-snapshot": "^24.9.0", - "jest-util": "^24.9.0", - "jest-validate": "^24.9.0", - "jest-watcher": "^24.9.0", - "micromatch": "^3.1.10", - "p-each-series": "^1.0.0", - "realpath-native": "^1.1.0", - "rimraf": "^2.5.4", - "slash": "^2.0.0", - "strip-ansi": "^5.0.0" - }, - "dependencies": { - "ansi-escapes": { - "version": "3.2.0", - "dev": true - }, - "ansi-regex": { - "version": "4.1.0", - "dev": true - }, - "micromatch": { - "version": "3.1.10", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "slash": { - "version": "2.0.0", - "dev": true - }, - "strip-ansi": { - "version": "5.2.0", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } - } - }, - "@jest/environment": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/fake-timers": "^24.9.0", - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "jest-mock": "^24.9.0" - } - }, - "@jest/fake-timers": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/types": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-mock": "^24.9.0" - } - }, - "@jest/reporters": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/environment": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "glob": "^7.1.2", - "istanbul-lib-coverage": "^2.0.2", - "istanbul-lib-instrument": "^3.0.1", - "istanbul-lib-report": "^2.0.4", - "istanbul-lib-source-maps": "^3.0.1", - "istanbul-reports": "^2.2.6", - "jest-haste-map": "^24.9.0", - "jest-resolve": "^24.9.0", - "jest-runtime": "^24.9.0", - "jest-util": "^24.9.0", - "jest-worker": "^24.6.0", - "node-notifier": "^5.4.2", - "slash": "^2.0.0", - "source-map": "^0.6.0", - "string-length": "^2.0.0" - }, - "dependencies": { - "jest-worker": { - "version": "24.9.0", - "dev": true, - "requires": { - "merge-stream": "^2.0.0", - "supports-color": "^6.1.0" - } - }, - "slash": { - "version": "2.0.0", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "dev": true - }, - "supports-color": { - "version": "6.1.0", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "@jest/source-map": { - "version": "24.9.0", - "dev": true, - "requires": { - "callsites": "^3.0.0", - "graceful-fs": "^4.1.15", - "source-map": "^0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "dev": true - } - } - }, - "@jest/test-result": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/console": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/istanbul-lib-coverage": "^2.0.0" - } - }, - "@jest/test-sequencer": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/test-result": "^24.9.0", - "jest-haste-map": "^24.9.0", - "jest-runner": "^24.9.0", - "jest-runtime": "^24.9.0" - } - }, - "@jest/transform": { - "version": "24.9.0", - "dev": true, - "requires": { - "@babel/core": "^7.1.0", - "@jest/types": "^24.9.0", - "babel-plugin-istanbul": "^5.1.0", - "chalk": "^2.0.1", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.1.15", - "jest-haste-map": "^24.9.0", - "jest-regex-util": "^24.9.0", - "jest-util": "^24.9.0", - "micromatch": "^3.1.10", - "pirates": "^4.0.1", - "realpath-native": "^1.1.0", - "slash": "^2.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "2.4.1" - }, - "dependencies": { - "micromatch": { - "version": "3.1.10", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "slash": { - "version": "2.0.0", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "dev": true - } - } - }, - "@jest/types": { - "version": "24.9.0", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^13.0.0" - } - }, - "@nodelib/fs.scandir": { - "version": "2.1.3", - "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.3", - "run-parallel": "^1.1.9" - }, - "dependencies": { - "@nodelib/fs.stat": { - "version": "2.0.3", - "dev": true - } - } - }, - "@nodelib/fs.stat": { - "version": "2.0.4", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.4", - "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.3", - "fastq": "^1.6.0" - } - }, - "@npmcli/fs": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", - "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", - "dev": true, - "requires": { - "@gar/promisify": "^1.0.1", - "semver": "^7.3.5" - }, - "dependencies": { - "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } - }, - "@npmcli/move-file": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", - "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", - "dev": true, - "requires": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" - }, - "dependencies": { - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - } - } - }, - "@rollup/plugin-commonjs": { - "version": "11.1.0", - "dev": true, - "requires": { - "@rollup/pluginutils": "^3.0.8", - "commondir": "^1.0.1", - "estree-walker": "^1.0.1", - "glob": "^7.1.2", - "is-reference": "^1.1.2", - "magic-string": "^0.25.2", - "resolve": "^1.11.0" - } - }, - "@rollup/plugin-image": { - "version": "2.0.6", - "dev": true, - "requires": { - "@rollup/pluginutils": "^3.1.0", - "mini-svg-data-uri": "^1.2.3" - } - }, - "@rollup/plugin-json": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-4.1.0.tgz", - "integrity": "sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==", - "dev": true, - "requires": { - "@rollup/pluginutils": "^3.0.8" - } - }, - "@rollup/plugin-node-resolve": { - "version": "7.1.3", - "dev": true, - "requires": { - "@rollup/pluginutils": "^3.0.8", - "@types/resolve": "0.0.8", - "builtin-modules": "^3.1.0", - "is-module": "^1.0.0", - "resolve": "^1.14.2" - } - }, - "@rollup/pluginutils": { - "version": "3.1.0", - "dev": true, - "requires": { - "@types/estree": "0.0.39", - "estree-walker": "^1.0.1", - "picomatch": "^2.2.2" - } - }, - "@testing-library/dom": { - "version": "7.16.2", - "dev": true, - "requires": { - "@babel/runtime": "^7.10.2", - "aria-query": "^4.0.2", - "dom-accessibility-api": "^0.4.5", - "pretty-format": "^25.5.0" - }, - "dependencies": { - "@jest/types": { - "version": "25.5.0", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - } - }, - "@types/yargs": { - "version": "15.0.5", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-regex": { - "version": "5.0.1", - "dev": true - }, - "ansi-styles": { - "version": "4.2.1", - "dev": true, - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "pretty-format": { - "version": "25.5.0", - "dev": true, - "requires": { - "@jest/types": "^25.5.0", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^16.12.0" - } - }, - "supports-color": { - "version": "7.1.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@testing-library/jest-dom": { - "version": "5.10.1", - "dev": true, - "requires": { - "@babel/runtime": "^7.9.2", - "@types/testing-library__jest-dom": "^5.9.1", - "chalk": "^3.0.0", - "css": "^2.2.4", - "css.escape": "^1.5.1", - "jest-diff": "^25.1.0", - "jest-matcher-utils": "^25.1.0", - "lodash": "^4.17.15", - "redent": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.2.1", - "dev": true, - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "supports-color": { - "version": "7.1.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@testing-library/react": { - "version": "10.3.0", - "dev": true, - "requires": { - "@babel/runtime": "^7.10.2", - "@testing-library/dom": "^7.14.2" - } - }, - "@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", - "dev": true - }, - "@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", - "dev": true - }, - "@types/babel__core": { - "version": "7.1.9", - "dev": true, - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "@types/babel__generator": { - "version": "7.6.1", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@types/babel__template": { - "version": "7.0.2", - "dev": true, - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@types/babel__traverse": { - "version": "7.0.12", - "dev": true, - "requires": { - "@babel/types": "^7.3.0" - } - }, - "@types/color-name": { - "version": "1.1.1", - "dev": true - }, - "@types/eslint": { - "version": "8.2.1", - "dev": true, - "peer": true, - "requires": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "@types/eslint-scope": { - "version": "3.7.2", - "dev": true, - "peer": true, - "requires": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "@types/estree": { - "version": "0.0.39", - "dev": true - }, - "@types/fs-extra": { - "version": "8.1.1", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/glob": { - "version": "7.1.2", - "dev": true, - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "@types/hoist-non-react-statics": { - "version": "3.3.1", - "dev": true, - "requires": { - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0" - } - }, - "@types/istanbul-lib-coverage": { - "version": "2.0.3", - "dev": true - }, - "@types/istanbul-lib-report": { - "version": "3.0.0", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "*" - } - }, - "@types/istanbul-reports": { - "version": "1.1.2", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "*", - "@types/istanbul-lib-report": "*" - } - }, - "@types/jest": { - "version": "24.9.1", - "dev": true, - "requires": { - "jest-diff": "^24.3.0" - }, - "dependencies": { - "jest-diff": { - "version": "24.9.0", - "dev": true, - "requires": { - "chalk": "^2.0.1", - "diff-sequences": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - } - } - } - }, - "@types/json-schema": { - "version": "7.0.9", - "dev": true - }, - "@types/minimatch": { - "version": "3.0.3", - "dev": true - }, - "@types/minimist": { - "version": "1.2.2", - "dev": true - }, - "@types/node": { - "version": "14.0.13", - "dev": true - }, - "@types/normalize-package-data": { - "version": "2.4.1", - "dev": true - }, - "@types/parse-json": { - "version": "4.0.0", - "dev": true - }, - "@types/prop-types": { - "version": "15.7.3", - "dev": true - }, - "@types/react": { - "version": "16.9.38", - "dev": true, - "requires": { - "@types/prop-types": "*", - "csstype": "^2.2.0" - } - }, - "@types/react-dom": { - "version": "16.9.8", - "dev": true, - "requires": { - "@types/react": "*" - } - }, - "@types/resolve": { - "version": "0.0.8", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/stack-utils": { - "version": "1.0.1", - "dev": true - }, - "@types/styled-components": { - "version": "5.1.9", - "dev": true, - "requires": { - "@types/hoist-non-react-statics": "*", - "@types/react": "*", - "csstype": "^3.0.2" - }, - "dependencies": { - "csstype": { - "version": "3.0.7", - "dev": true - } - } - }, - "@types/testing-library__jest-dom": { - "version": "5.9.1", - "dev": true, - "requires": { - "@types/jest": "*" - } - }, - "@types/victory": { - "version": "33.1.4", - "dev": true, - "requires": { - "@types/react": "*" - } - }, - "@types/yargs": { - "version": "13.0.9", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "@types/yargs-parser": { - "version": "15.0.0", - "dev": true - }, - "@typescript-eslint/eslint-plugin": { - "version": "4.20.0", - "dev": true, - "requires": { - "@typescript-eslint/experimental-utils": "4.20.0", - "@typescript-eslint/scope-manager": "4.20.0", - "debug": "^4.1.1", - "functional-red-black-tree": "^1.0.1", - "lodash": "^4.17.15", - "regexpp": "^3.0.0", - "semver": "^7.3.2", - "tsutils": "^3.17.1" - }, - "dependencies": { - "semver": { - "version": "7.3.5", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } - }, - "@typescript-eslint/experimental-utils": { - "version": "4.20.0", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.3", - "@typescript-eslint/scope-manager": "4.20.0", - "@typescript-eslint/types": "4.20.0", - "@typescript-eslint/typescript-estree": "4.20.0", - "eslint-scope": "^5.0.0", - "eslint-utils": "^2.0.0" - } - }, - "@typescript-eslint/parser": { - "version": "4.20.0", - "dev": true, - "requires": { - "@typescript-eslint/scope-manager": "4.20.0", - "@typescript-eslint/types": "4.20.0", - "@typescript-eslint/typescript-estree": "4.20.0", - "debug": "^4.1.1" - } - }, - "@typescript-eslint/scope-manager": { - "version": "4.20.0", - "dev": true, - "requires": { - "@typescript-eslint/types": "4.20.0", - "@typescript-eslint/visitor-keys": "4.20.0" - } - }, - "@typescript-eslint/types": { - "version": "4.20.0", - "dev": true - }, - "@typescript-eslint/typescript-estree": { - "version": "4.20.0", - "dev": true, - "requires": { - "@typescript-eslint/types": "4.20.0", - "@typescript-eslint/visitor-keys": "4.20.0", - "debug": "^4.1.1", - "globby": "^11.0.1", - "is-glob": "^4.0.1", - "semver": "^7.3.2", - "tsutils": "^3.17.1" - }, - "dependencies": { - "semver": { - "version": "7.3.5", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } - } - }, - "@typescript-eslint/visitor-keys": { - "version": "4.20.0", - "dev": true, - "requires": { - "@typescript-eslint/types": "4.20.0", - "eslint-visitor-keys": "^2.0.0" - } - }, - "@webassemblyjs/ast": { - "version": "1.11.1", - "dev": true, - "peer": true, - "requires": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" - } - }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "dev": true, - "peer": true - }, - "@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "dev": true, - "peer": true - }, - "@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "dev": true, - "peer": true - }, - "@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "dev": true, - "peer": true, - "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "dev": true, - "peer": true - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "dev": true, - "peer": true, - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" - } - }, - "@webassemblyjs/ieee754": { - "version": "1.11.1", - "dev": true, - "peer": true, - "requires": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "@webassemblyjs/leb128": { - "version": "1.11.1", - "dev": true, - "peer": true, - "requires": { - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/utf8": { - "version": "1.11.1", - "dev": true, - "peer": true - }, - "@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "dev": true, - "peer": true, - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "dev": true, - "peer": true, - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "dev": true, - "peer": true, - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" - } - }, - "@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "dev": true, - "peer": true, - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "@webassemblyjs/wast-printer": { - "version": "1.11.1", - "dev": true, - "peer": true, - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "@xtuc/ieee754": { - "version": "1.2.0", - "dev": true, - "peer": true - }, - "@xtuc/long": { - "version": "4.2.2", - "dev": true, - "peer": true - }, - "abab": { - "version": "2.0.3", - "dev": true - }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "acorn": { - "version": "6.4.1", - "dev": true - }, - "acorn-globals": { - "version": "4.3.4", - "dev": true, - "requires": { - "acorn": "^6.0.1", - "acorn-walk": "^6.0.1" - } - }, - "acorn-jsx": { - "version": "5.3.1", - "dev": true, - "requires": {} - }, - "acorn-walk": { - "version": "6.2.0", - "dev": true - }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "requires": { - "debug": "4" - } - }, - "agentkeepalive": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.0.tgz", - "integrity": "sha512-0PhAp58jZNw13UJv7NVdTGb0ZcghHUb3DrZ046JiiJY/BOaTTpbwdHq2VObPCBV8M2GPh7sgrJ3AQ8Ey468LJw==", - "dev": true, - "requires": { - "debug": "^4.1.0", - "depd": "^1.1.2", - "humanize-ms": "^1.2.1" - } - }, - "aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ajv": { - "version": "6.12.6", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "3.5.2", - "dev": true, - "requires": {} - }, - "ansi-colors": { - "version": "4.1.1", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "requires": { - "color-convert": "^1.9.0" - } - }, - "anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, - "are-we-there-yet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", - "dev": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "argparse": { - "version": "1.0.10", - "dev": true, - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "aria-query": { - "version": "4.2.2", - "dev": true, - "requires": { - "@babel/runtime": "^7.10.2", - "@babel/runtime-corejs3": "^7.10.2" - } - }, - "arr-diff": { - "version": "4.0.0", - "dev": true - }, - "arr-flatten": { - "version": "1.1.0", - "dev": true - }, - "arr-union": { - "version": "3.1.0", - "dev": true - }, - "array-equal": { - "version": "1.0.0", - "dev": true - }, - "array-includes": { - "version": "3.1.3", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2", - "get-intrinsic": "^1.1.1", - "is-string": "^1.0.5" - } - }, - "array-union": { - "version": "2.1.0", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "dev": true - }, - "array.prototype.flatmap": { - "version": "1.2.4", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1", - "function-bind": "^1.1.1" - } - }, - "arrify": { - "version": "1.0.1", - "dev": true - }, - "asn1": { - "version": "0.2.4", - "dev": true, - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "assert-plus": { - "version": "1.0.0", - "dev": true - }, - "assign-symbols": { - "version": "1.0.0", - "dev": true - }, - "astral-regex": { - "version": "1.0.0", - "dev": true - }, - "async-foreach": { - "version": "0.1.3", - "dev": true - }, - "async-limiter": { - "version": "1.0.1", - "dev": true - }, - "asynckit": { - "version": "0.4.0", - "dev": true - }, - "atob": { - "version": "2.1.2", - "dev": true - }, - "aws-sign2": { - "version": "0.7.0", - "dev": true - }, - "aws4": { - "version": "1.10.0", - "dev": true - }, - "babel-jest": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/babel__core": "^7.1.0", - "babel-plugin-istanbul": "^5.1.0", - "babel-preset-jest": "^24.9.0", - "chalk": "^2.4.2", - "slash": "^2.0.0" - }, - "dependencies": { - "slash": { - "version": "2.0.0", - "dev": true - } - } - }, - "babel-loader": { - "version": "8.1.0", - "dev": true, - "requires": { - "find-cache-dir": "^2.1.0", - "loader-utils": "^1.4.0", - "mkdirp": "^0.5.3", - "pify": "^4.0.1", - "schema-utils": "^2.6.5" - }, - "dependencies": { - "find-cache-dir": { - "version": "2.1.0", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" - } - }, - "schema-utils": { - "version": "2.7.0", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.4", - "ajv": "^6.12.2", - "ajv-keywords": "^3.4.1" - } - } - } - }, - "babel-plugin-dynamic-import-node": { - "version": "2.3.3", - "dev": true, - "requires": { - "object.assign": "^4.1.0" - } - }, - "babel-plugin-istanbul": { - "version": "5.2.0", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "find-up": "^3.0.0", - "istanbul-lib-instrument": "^3.3.0", - "test-exclude": "^5.2.3" - }, - "dependencies": { - "find-up": { - "version": "3.0.0", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.3.0", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "dev": true - } - } - }, - "babel-plugin-jest-hoist": { - "version": "24.9.0", - "dev": true, - "requires": { - "@types/babel__traverse": "^7.0.6" - } - }, - "babel-plugin-macros": { - "version": "2.8.0", - "dev": true, - "requires": { - "@babel/runtime": "^7.7.2", - "cosmiconfig": "^6.0.0", - "resolve": "^1.12.0" - } - }, - "babel-plugin-styled-components": { - "version": "1.12.0", - "peer": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.0.0", - "@babel/helper-module-imports": "^7.0.0", - "babel-plugin-syntax-jsx": "^6.18.0", - "lodash": "^4.17.11" - } - }, - "babel-plugin-syntax-jsx": { - "version": "6.18.0", - "peer": true - }, - "babel-plugin-transform-react-remove-prop-types": { - "version": "0.4.24", - "dev": true - }, - "babel-preset-jest": { - "version": "24.9.0", - "dev": true, - "requires": { - "@babel/plugin-syntax-object-rest-spread": "^7.0.0", - "babel-plugin-jest-hoist": "^24.9.0" - } - }, - "babel-preset-react-app": { - "version": "9.1.2", - "dev": true, - "requires": { - "@babel/core": "7.9.0", - "@babel/plugin-proposal-class-properties": "7.8.3", - "@babel/plugin-proposal-decorators": "7.8.3", - "@babel/plugin-proposal-nullish-coalescing-operator": "7.8.3", - "@babel/plugin-proposal-numeric-separator": "7.8.3", - "@babel/plugin-proposal-optional-chaining": "7.9.0", - "@babel/plugin-transform-flow-strip-types": "7.9.0", - "@babel/plugin-transform-react-display-name": "7.8.3", - "@babel/plugin-transform-runtime": "7.9.0", - "@babel/preset-env": "7.9.0", - "@babel/preset-react": "7.9.1", - "@babel/preset-typescript": "7.9.0", - "@babel/runtime": "7.9.0", - "babel-plugin-macros": "2.8.0", - "babel-plugin-transform-react-remove-prop-types": "0.4.24" - }, - "dependencies": { - "@babel/core": { - "version": "7.9.0", - "dev": true, - "requires": { - "@babel/code-frame": "^7.8.3", - "@babel/generator": "^7.9.0", - "@babel/helper-module-transforms": "^7.9.0", - "@babel/helpers": "^7.9.0", - "@babel/parser": "^7.9.0", - "@babel/template": "^7.8.6", - "@babel/traverse": "^7.9.0", - "@babel/types": "^7.9.0", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.1", - "json5": "^2.1.2", - "lodash": "^4.17.13", - "resolve": "^1.3.2", - "semver": "^5.4.1", - "source-map": "^0.5.0" - } - }, - "@babel/plugin-proposal-class-properties": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" - } - }, - "@babel/plugin-proposal-numeric-separator": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3" - } - }, - "@babel/plugin-proposal-optional-chaining": { - "version": "7.9.0", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.0" - } - }, - "@babel/plugin-transform-flow-strip-types": { - "version": "7.9.0", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-flow": "^7.8.3" - } - }, - "@babel/plugin-transform-react-display-name": { - "version": "7.8.3", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/preset-env": { - "version": "7.9.0", - "dev": true, - "requires": { - "@babel/compat-data": "^7.9.0", - "@babel/helper-compilation-targets": "^7.8.7", - "@babel/helper-module-imports": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-proposal-async-generator-functions": "^7.8.3", - "@babel/plugin-proposal-dynamic-import": "^7.8.3", - "@babel/plugin-proposal-json-strings": "^7.8.3", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-proposal-numeric-separator": "^7.8.3", - "@babel/plugin-proposal-object-rest-spread": "^7.9.0", - "@babel/plugin-proposal-optional-catch-binding": "^7.8.3", - "@babel/plugin-proposal-optional-chaining": "^7.9.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.8.3", - "@babel/plugin-syntax-async-generators": "^7.8.0", - "@babel/plugin-syntax-dynamic-import": "^7.8.0", - "@babel/plugin-syntax-json-strings": "^7.8.0", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", - "@babel/plugin-syntax-numeric-separator": "^7.8.0", - "@babel/plugin-syntax-object-rest-spread": "^7.8.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.0", - "@babel/plugin-syntax-top-level-await": "^7.8.3", - "@babel/plugin-transform-arrow-functions": "^7.8.3", - "@babel/plugin-transform-async-to-generator": "^7.8.3", - "@babel/plugin-transform-block-scoped-functions": "^7.8.3", - "@babel/plugin-transform-block-scoping": "^7.8.3", - "@babel/plugin-transform-classes": "^7.9.0", - "@babel/plugin-transform-computed-properties": "^7.8.3", - "@babel/plugin-transform-destructuring": "^7.8.3", - "@babel/plugin-transform-dotall-regex": "^7.8.3", - "@babel/plugin-transform-duplicate-keys": "^7.8.3", - "@babel/plugin-transform-exponentiation-operator": "^7.8.3", - "@babel/plugin-transform-for-of": "^7.9.0", - "@babel/plugin-transform-function-name": "^7.8.3", - "@babel/plugin-transform-literals": "^7.8.3", - "@babel/plugin-transform-member-expression-literals": "^7.8.3", - "@babel/plugin-transform-modules-amd": "^7.9.0", - "@babel/plugin-transform-modules-commonjs": "^7.9.0", - "@babel/plugin-transform-modules-systemjs": "^7.9.0", - "@babel/plugin-transform-modules-umd": "^7.9.0", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.8.3", - "@babel/plugin-transform-new-target": "^7.8.3", - "@babel/plugin-transform-object-super": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.8.7", - "@babel/plugin-transform-property-literals": "^7.8.3", - "@babel/plugin-transform-regenerator": "^7.8.7", - "@babel/plugin-transform-reserved-words": "^7.8.3", - "@babel/plugin-transform-shorthand-properties": "^7.8.3", - "@babel/plugin-transform-spread": "^7.8.3", - "@babel/plugin-transform-sticky-regex": "^7.8.3", - "@babel/plugin-transform-template-literals": "^7.8.3", - "@babel/plugin-transform-typeof-symbol": "^7.8.4", - "@babel/plugin-transform-unicode-regex": "^7.8.3", - "@babel/preset-modules": "^0.1.3", - "@babel/types": "^7.9.0", - "browserslist": "^4.9.1", - "core-js-compat": "^3.6.2", - "invariant": "^2.2.2", - "levenary": "^1.1.1", - "semver": "^5.5.0" - } - }, - "@babel/preset-react": { - "version": "7.9.1", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-transform-react-display-name": "^7.8.3", - "@babel/plugin-transform-react-jsx": "^7.9.1", - "@babel/plugin-transform-react-jsx-development": "^7.9.0", - "@babel/plugin-transform-react-jsx-self": "^7.9.0", - "@babel/plugin-transform-react-jsx-source": "^7.9.0" - } - }, - "@babel/runtime": { - "version": "7.9.0", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - } - } - }, - "balanced-match": { - "version": "1.0.0", - "dev": true - }, - "base": { - "version": "0.11.2", - "dev": true, - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "isobject": { - "version": "3.0.1", - "dev": true - } - } - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "dev": true, - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "big.js": { - "version": "5.2.2", - "dev": true - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" - }, - "bindings": { - "version": "1.5.0", - "dev": true, - "optional": true, - "requires": { - "file-uri-to-path": "1.0.0" - } - }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "dev": true - }, - "brace-expansion": { - "version": "1.1.11", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "2.3.2", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "isobject": { - "version": "3.0.1", - "dev": true - } - } - }, - "browser-process-hrtime": { - "version": "1.0.0", - "dev": true - }, - "browser-resolve": { - "version": "1.11.3", - "dev": true, - "requires": { - "resolve": "1.1.7" - }, - "dependencies": { - "resolve": { - "version": "1.1.7", - "dev": true - } - } - }, - "browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" - } - }, - "bs-logger": { - "version": "0.2.6", - "dev": true, - "requires": { - "fast-json-stable-stringify": "2.x" - } - }, - "bser": { - "version": "2.1.1", - "dev": true, - "requires": { - "node-int64": "^0.4.0" - } - }, - "buffer-from": { - "version": "1.1.1", - "dev": true - }, - "builtin-modules": { - "version": "3.1.0", - "dev": true - }, - "cacache": { - "version": "15.3.0", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", - "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", - "dev": true, - "requires": { - "@npmcli/fs": "^1.0.0", - "@npmcli/move-file": "^1.0.1", - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "infer-owner": "^1.0.4", - "lru-cache": "^6.0.0", - "minipass": "^3.1.1", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^1.0.3", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.0.2", - "unique-filename": "^1.1.1" - }, - "dependencies": { - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - } - } - }, - "cache-base": { - "version": "1.0.1", - "dev": true, - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "dev": true - } - } - }, - "call-bind": { - "version": "1.0.2", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "callsites": { - "version": "3.1.0", - "dev": true - }, - "camelcase": { - "version": "5.3.1", - "dev": true - }, - "camelcase-keys": { - "version": "6.2.2", - "dev": true, - "requires": { - "camelcase": "^5.3.1", - "map-obj": "^4.0.0", - "quick-lru": "^4.0.1" - } - }, - "camelize": { - "version": "1.0.0", - "peer": true - }, - "caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", - "dev": true, - "requires": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" - } - }, - "caniuse-lite": { - "version": "1.0.30001443", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001443.tgz", - "integrity": "sha512-jUo8svymO8+Mkj3qbUbVjR8zv8LUGpGkUM/jKvc9SO2BvjCI980dp9fQbf/dyLs6RascPzgR4nhAKFA4OHeSaA==", - "dev": true - }, - "capture-exit": { - "version": "2.0.0", - "dev": true, - "requires": { - "rsvp": "^4.8.4" - } - }, - "caseless": { - "version": "0.12.0", - "dev": true - }, - "chalk": { - "version": "2.4.2", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "dependencies": { - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "requires": { - "fill-range": "^7.0.1" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "requires": { - "is-number": "^7.0.0" - } - } - } - }, - "chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true - }, - "chrome-trace-event": { - "version": "1.0.3", - "dev": true, - "peer": true - }, - "ci-info": { - "version": "2.0.0", - "dev": true - }, - "class-utils": { - "version": "0.3.6", - "dev": true, - "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "isobject": { - "version": "3.0.1", - "dev": true - } - } - }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true - }, - "cliui": { - "version": "5.0.0", - "dev": true, - "requires": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "dev": true - }, - "string-width": { - "version": "3.1.0", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } - } - }, - "co": { - "version": "4.6.0", - "dev": true - }, - "collection-visit": { - "version": "1.0.0", - "dev": true, - "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - } - }, - "color-convert": { - "version": "1.9.3", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3" - }, - "color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true - }, - "colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "dev": true - }, - "colorette": { - "version": "1.2.0", - "dev": true - }, - "combined-stream": { - "version": "1.0.8", - "dev": true, - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "commander": { - "version": "2.20.3", - "dev": true, - "peer": true - }, - "commondir": { - "version": "1.0.1", - "dev": true - }, - "component-emitter": { - "version": "1.3.0", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "dev": true - }, - "concat-with-sourcemaps": { - "version": "1.1.0", - "dev": true, - "requires": { - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "dev": true - } - } - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "dev": true - }, - "convert-source-map": { - "version": "1.7.0", - "dev": true, - "requires": { - "safe-buffer": "~5.1.1" - } - }, - "copy-descriptor": { - "version": "0.1.1", - "dev": true - }, - "core-js-compat": { - "version": "3.6.5", - "dev": true, - "requires": { - "browserslist": "^4.8.5", - "semver": "7.0.0" - }, - "dependencies": { - "semver": { - "version": "7.0.0", - "dev": true - } - } - }, - "core-js-pure": { - "version": "3.6.5", - "dev": true - }, - "core-util-is": { - "version": "1.0.2", - "dev": true - }, - "cosmiconfig": { - "version": "6.0.0", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - } - }, - "cross-spawn": { - "version": "6.0.5", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "css": { - "version": "2.2.4", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "source-map": "^0.6.1", - "source-map-resolve": "^0.5.2", - "urix": "^0.1.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "dev": true - } - } - }, - "css-color-keywords": { - "version": "1.0.0", - "peer": true - }, - "css-declaration-sorter": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz", - "integrity": "sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==", - "dev": true, - "requires": {} - }, - "css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "dev": true, - "requires": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - } - }, - "css-to-react-native": { - "version": "3.0.0", - "peer": true, - "requires": { - "camelize": "^1.0.0", - "css-color-keywords": "^1.0.0", - "postcss-value-parser": "^4.0.2" - } - }, - "css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", - "dev": true, - "requires": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "dev": true - }, - "css.escape": { - "version": "1.5.1", - "dev": true - }, - "cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true - }, - "cssnano": { - "version": "5.1.14", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.14.tgz", - "integrity": "sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==", - "dev": true, - "requires": { - "cssnano-preset-default": "^5.2.13", - "lilconfig": "^2.0.3", - "yaml": "^1.10.2" - } - }, - "cssnano-preset-default": { - "version": "5.2.13", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.13.tgz", - "integrity": "sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==", - "dev": true, - "requires": { - "css-declaration-sorter": "^6.3.1", - "cssnano-utils": "^3.1.0", - "postcss-calc": "^8.2.3", - "postcss-colormin": "^5.3.0", - "postcss-convert-values": "^5.1.3", - "postcss-discard-comments": "^5.1.2", - "postcss-discard-duplicates": "^5.1.0", - "postcss-discard-empty": "^5.1.1", - "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.7", - "postcss-merge-rules": "^5.1.3", - "postcss-minify-font-values": "^5.1.0", - "postcss-minify-gradients": "^5.1.1", - "postcss-minify-params": "^5.1.4", - "postcss-minify-selectors": "^5.2.1", - "postcss-normalize-charset": "^5.1.0", - "postcss-normalize-display-values": "^5.1.0", - "postcss-normalize-positions": "^5.1.1", - "postcss-normalize-repeat-style": "^5.1.1", - "postcss-normalize-string": "^5.1.0", - "postcss-normalize-timing-functions": "^5.1.0", - "postcss-normalize-unicode": "^5.1.1", - "postcss-normalize-url": "^5.1.0", - "postcss-normalize-whitespace": "^5.1.1", - "postcss-ordered-values": "^5.1.3", - "postcss-reduce-initial": "^5.1.1", - "postcss-reduce-transforms": "^5.1.0", - "postcss-svgo": "^5.1.0", - "postcss-unique-selectors": "^5.1.1" - } - }, - "cssnano-utils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", - "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", - "dev": true, - "requires": {} - }, - "csso": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", - "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", - "dev": true, - "requires": { - "css-tree": "^1.1.2" - } - }, - "cssom": { - "version": "0.3.8", - "dev": true - }, - "cssstyle": { - "version": "1.4.0", - "dev": true, - "requires": { - "cssom": "0.3.x" - } - }, - "csstype": { - "version": "2.6.10", - "dev": true - }, - "d3-array": { - "version": "1.2.4" - }, - "d3-collection": { - "version": "1.0.7" - }, - "d3-color": { - "version": "1.4.1" - }, - "d3-ease": { - "version": "1.0.7" - }, - "d3-format": { - "version": "1.4.5" - }, - "d3-interpolate": { - "version": "1.4.0", - "requires": { - "d3-color": "1" - } - }, - "d3-path": { - "version": "1.0.9" - }, - "d3-scale": { - "version": "1.0.7", - "requires": { - "d3-array": "^1.2.0", - "d3-collection": "1", - "d3-color": "1", - "d3-format": "1", - "d3-interpolate": "1", - "d3-time": "1", - "d3-time-format": "2" - } - }, - "d3-shape": { - "version": "1.3.7", - "requires": { - "d3-path": "1" - } - }, - "d3-time": { - "version": "1.1.0" - }, - "d3-time-format": { - "version": "2.3.0", - "requires": { - "d3-time": "1" - } - }, - "d3-timer": { - "version": "1.0.10" - }, - "d3-voronoi": { - "version": "1.1.4" - }, - "dashdash": { - "version": "1.14.1", - "dev": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "data-urls": { - "version": "1.1.0", - "dev": true, - "requires": { - "abab": "^2.0.0", - "whatwg-mimetype": "^2.2.0", - "whatwg-url": "^7.0.0" - }, - "dependencies": { - "whatwg-url": { - "version": "7.1.0", - "dev": true, - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - } - } - }, - "dateformat": { - "version": "4.6.3", - "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-4.6.3.tgz", - "integrity": "sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==", - "dev": true - }, - "debug": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", - "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", - "requires": { - "ms": "2.1.2" - } - }, - "decamelize": { - "version": "1.2.0", - "dev": true - }, - "decamelize-keys": { - "version": "1.1.0", - "dev": true, - "requires": { - "decamelize": "^1.1.0", - "map-obj": "^1.0.0" - }, - "dependencies": { - "map-obj": { - "version": "1.0.1", - "dev": true - } - } - }, - "decode-uri-component": { - "version": "0.2.0", - "dev": true - }, - "deep-is": { - "version": "0.1.3", - "dev": true - }, - "define-properties": { - "version": "1.1.3", - "dev": true, - "requires": { - "object-keys": "^1.0.12" - } - }, - "define-property": { - "version": "2.0.2", - "dev": true, - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "dependencies": { - "is-accessor-descriptor": { - "version": "1.0.0", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "isobject": { - "version": "3.0.1", - "dev": true - } - } - }, - "delaunator": { - "version": "4.0.1" - }, - "delaunay-find": { - "version": "0.0.5", - "requires": { - "delaunator": "^4.0.0" - } - }, - "delayed-stream": { - "version": "1.0.0", - "dev": true - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "dev": true - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "dev": true - }, - "detect-newline": { - "version": "2.1.0", - "dev": true - }, - "diff-sequences": { - "version": "24.9.0", - "dev": true - }, - "dir-glob": { - "version": "3.0.1", - "dev": true, - "requires": { - "path-type": "^4.0.0" - } - }, - "doctrine": { - "version": "3.0.0", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "dom-accessibility-api": { - "version": "0.4.5", - "dev": true - }, - "dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "dev": true, - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - } - }, - "domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "dev": true - }, - "domexception": { - "version": "1.0.1", - "dev": true, - "requires": { - "webidl-conversions": "^4.0.2" - } - }, - "domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "dev": true, - "requires": { - "domelementtype": "^2.2.0" - } - }, - "domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "dev": true, - "requires": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - } - }, - "ecc-jsbn": { - "version": "0.1.2", - "dev": true, - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "electron-to-chromium": { - "version": "1.4.284", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", - "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", - "dev": true - }, - "emoji-regex": { - "version": "7.0.3", - "dev": true - }, - "emojis-list": { - "version": "3.0.0", - "dev": true - }, - "encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "dev": true, - "optional": true, - "requires": { - "iconv-lite": "^0.6.2" - }, - "dependencies": { - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - } - } - }, - "end-of-stream": { - "version": "1.4.4", - "dev": true, - "requires": { - "once": "^1.4.0" - } - }, - "enhanced-resolve": { - "version": "5.8.3", - "dev": true, - "peer": true, - "requires": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - } - }, - "enquirer": { - "version": "2.3.6", - "dev": true, - "requires": { - "ansi-colors": "^4.1.1" - } - }, - "entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "dev": true - }, - "env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true - }, - "err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true - }, - "error-ex": { - "version": "1.3.2", - "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "es-abstract": { - "version": "1.18.0", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.2", - "is-string": "^1.0.5", - "object-inspect": "^1.9.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.0" - } - }, - "es-module-lexer": { - "version": "0.9.3", - "dev": true, - "peer": true - }, - "es-to-primitive": { - "version": "1.2.1", - "dev": true, - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "escalade": { - "version": "3.1.1", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5" - }, - "escodegen": { - "version": "1.14.2", - "dev": true, - "requires": { - "esprima": "^4.0.1", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1", - "source-map": "~0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "dev": true, - "optional": true - } - } - }, - "eslint": { - "version": "7.23.0", - "dev": true, - "requires": { - "@babel/code-frame": "7.12.11", - "@eslint/eslintrc": "^0.4.0", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.0.1", - "doctrine": "^3.0.0", - "enquirer": "^2.3.5", - "eslint-scope": "^5.1.1", - "eslint-utils": "^2.1.0", - "eslint-visitor-keys": "^2.0.0", - "espree": "^7.3.1", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.0.0", - "globals": "^13.6.0", - "ignore": "^4.0.6", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash": "^4.17.21", - "minimatch": "^3.0.4", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "progress": "^2.0.0", - "regexpp": "^3.1.0", - "semver": "^7.2.1", - "strip-ansi": "^6.0.0", - "strip-json-comments": "^3.1.0", - "table": "^6.0.4", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.0", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "cross-spawn": { - "version": "7.0.3", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "globals": { - "version": "13.7.0", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "levn": { - "version": "0.4.1", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - } - }, - "optionator": { - "version": "0.9.1", - "dev": true, - "requires": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" - } - }, - "path-key": { - "version": "3.1.1", - "dev": true - }, - "prelude-ls": { - "version": "1.2.1", - "dev": true - }, - "semver": { - "version": "7.3.5", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "shebang-command": { - "version": "2.0.0", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "dev": true - }, - "strip-ansi": { - "version": "6.0.0", - "dev": true, - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "type-check": { - "version": "0.4.0", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1" - } - }, - "type-fest": { - "version": "0.20.2", - "dev": true - }, - "which": { - "version": "2.0.2", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "eslint-config-prettier": { - "version": "8.1.0", - "dev": true, - "requires": {} - }, - "eslint-plugin-prettier": { - "version": "3.3.1", - "dev": true, - "requires": { - "prettier-linter-helpers": "^1.0.0" - } - }, - "eslint-plugin-react": { - "version": "7.23.1", - "dev": true, - "requires": { - "array-includes": "^3.1.3", - "array.prototype.flatmap": "^1.2.4", - "doctrine": "^2.1.0", - "has": "^1.0.3", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.0.4", - "object.entries": "^1.1.3", - "object.fromentries": "^2.0.4", - "object.values": "^1.1.3", - "prop-types": "^15.7.2", - "resolve": "^2.0.0-next.3", - "string.prototype.matchall": "^4.0.4" - }, - "dependencies": { - "doctrine": { - "version": "2.1.0", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "resolve": { - "version": "2.0.0-next.3", - "dev": true, - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" - } - } - } - }, - "eslint-scope": { - "version": "5.1.1", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - } - }, - "eslint-utils": { - "version": "2.1.0", - "dev": true, - "requires": { - "eslint-visitor-keys": "^1.1.0" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "1.3.0", - "dev": true - } - } - }, - "eslint-visitor-keys": { - "version": "2.0.0", - "dev": true - }, - "espree": { - "version": "7.3.1", - "dev": true, - "requires": { - "acorn": "^7.4.0", - "acorn-jsx": "^5.3.1", - "eslint-visitor-keys": "^1.3.0" - }, - "dependencies": { - "acorn": { - "version": "7.4.1", - "dev": true - }, - "eslint-visitor-keys": { - "version": "1.3.0", - "dev": true - } - } - }, - "esprima": { - "version": "4.0.1", - "dev": true - }, - "esquery": { - "version": "1.4.0", - "dev": true, - "requires": { - "estraverse": "^5.1.0" - }, - "dependencies": { - "estraverse": { - "version": "5.2.0", - "dev": true - } - } - }, - "esrecurse": { - "version": "4.3.0", - "dev": true, - "requires": { - "estraverse": "^5.2.0" - }, - "dependencies": { - "estraverse": { - "version": "5.2.0", - "dev": true - } - } - }, - "estraverse": { - "version": "4.3.0", - "dev": true - }, - "estree-walker": { - "version": "1.0.1", - "dev": true - }, - "esutils": { - "version": "2.0.3", - "dev": true - }, - "eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true - }, - "events": { - "version": "3.3.0", - "dev": true, - "peer": true - }, - "exec-sh": { - "version": "0.3.4", - "dev": true - }, - "execa": { - "version": "1.0.0", - "dev": true, - "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - } - }, - "exit": { - "version": "0.1.2", - "dev": true - }, - "expand-brackets": { - "version": "2.1.4", - "dev": true, - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "ms": { - "version": "2.0.0", - "dev": true - } - } - }, - "expect": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/types": "^24.9.0", - "ansi-styles": "^3.2.0", - "jest-get-type": "^24.9.0", - "jest-matcher-utils": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-regex-util": "^24.9.0" - }, - "dependencies": { - "jest-diff": { - "version": "24.9.0", - "dev": true, - "requires": { - "chalk": "^2.0.1", - "diff-sequences": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - } - }, - "jest-matcher-utils": { - "version": "24.9.0", - "dev": true, - "requires": { - "chalk": "^2.0.1", - "jest-diff": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - } - } - } - }, - "extend": { - "version": "3.0.2", - "dev": true - }, - "extend-shallow": { - "version": "3.0.2", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-plain-object": { - "version": "2.0.4", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "isobject": { - "version": "3.0.1", - "dev": true - } - } - }, - "extglob": { - "version": "2.0.4", - "dev": true, - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "extsprintf": { - "version": "1.3.0", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "dev": true - }, - "fast-diff": { - "version": "1.2.0", - "dev": true - }, - "fast-glob": { - "version": "3.2.5", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.0", - "merge2": "^1.3.0", - "micromatch": "^4.0.2", - "picomatch": "^2.2.1" - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "dev": true - }, - "fast-levenshtein": { - "version": "2.0.6", - "dev": true - }, - "fastq": { - "version": "1.8.0", - "dev": true, - "requires": { - "reusify": "^1.0.4" - } - }, - "fb-watchman": { - "version": "2.0.1", - "dev": true, - "requires": { - "bser": "2.1.1" - } - }, - "file-entry-cache": { - "version": "6.0.1", - "dev": true, - "requires": { - "flat-cache": "^3.0.4" - } - }, - "file-uri-to-path": { - "version": "1.0.0", - "dev": true, - "optional": true - }, - "fill-range": { - "version": "4.0.0", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "find-cache-dir": { - "version": "3.3.1", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "dependencies": { - "make-dir": { - "version": "3.1.0", - "dev": true, - "requires": { - "semver": "^6.0.0" - } - }, - "pkg-dir": { - "version": "4.2.0", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - }, - "semver": { - "version": "6.3.0", - "dev": true - } - } - }, - "find-up": { - "version": "4.1.0", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "dependencies": { - "locate-path": { - "version": "5.0.0", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-limit": { - "version": "2.3.0", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "p-try": { - "version": "2.2.0", - "dev": true - }, - "path-exists": { - "version": "4.0.0", - "dev": true - } - } - }, - "flat-cache": { - "version": "3.0.4", - "dev": true, - "requires": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - }, - "dependencies": { - "rimraf": { - "version": "3.0.2", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - } - } - }, - "flatted": { - "version": "3.1.1", - "dev": true - }, - "for-in": { - "version": "1.0.2", - "dev": true - }, - "forever-agent": { - "version": "0.6.1", - "dev": true - }, - "form-data": { - "version": "2.3.3", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "fragment-cache": { - "version": "0.2.1", - "dev": true, - "requires": { - "map-cache": "^0.2.2" - } - }, - "fs-extra": { - "version": "8.1.0", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "dependencies": { - "jsonfile": { - "version": "4.0.0", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6" - } - } - } - }, - "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "dev": true - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "optional": true - }, - "function-bind": { - "version": "1.1.1", - "dev": true - }, - "functional-red-black-tree": { - "version": "1.0.1", - "dev": true - }, - "gauge": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", - "dev": true, - "requires": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - } - } - }, - "gaze": { - "version": "1.1.3", - "dev": true, - "requires": { - "globule": "^1.0.0" - } - }, - "generic-names": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-4.0.0.tgz", - "integrity": "sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==", - "dev": true, - "requires": { - "loader-utils": "^3.2.0" - }, - "dependencies": { - "loader-utils": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", - "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", - "dev": true - } - } - }, - "gensync": { - "version": "1.0.0-beta.1", - "dev": true - }, - "get-caller-file": { - "version": "2.0.5", - "dev": true - }, - "get-intrinsic": { - "version": "1.1.1", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - }, - "get-stdin": { - "version": "4.0.1", - "dev": true - }, - "get-stream": { - "version": "4.1.0", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "get-value": { - "version": "2.0.6", - "dev": true - }, - "getpass": { - "version": "0.1.7", - "dev": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "glob": { - "version": "7.1.6", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "5.1.2", - "requires": { - "is-glob": "^4.0.1" - } - }, - "glob-to-regexp": { - "version": "0.4.1", - "dev": true, - "peer": true - }, - "globals": { - "version": "11.12.0" - }, - "globby": { - "version": "11.0.3", - "dev": true, - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", - "slash": "^3.0.0" - }, - "dependencies": { - "ignore": { - "version": "5.1.8", - "dev": true - } - } - }, - "globule": { - "version": "1.3.2", - "dev": true, - "requires": { - "glob": "~7.1.1", - "lodash": "~4.17.10", - "minimatch": "~3.0.2" - } - }, - "graceful-fs": { - "version": "4.2.9", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", - "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==", - "dev": true - }, - "growly": { - "version": "1.3.0", - "dev": true - }, - "har-schema": { - "version": "2.0.0", - "dev": true - }, - "har-validator": { - "version": "5.1.3", - "dev": true, - "requires": { - "ajv": "^6.5.5", - "har-schema": "^2.0.0" - } - }, - "hard-rejection": { - "version": "2.1.0", - "dev": true - }, - "harmony-reflect": { - "version": "1.6.1", - "dev": true - }, - "has": { - "version": "1.0.3", - "dev": true, - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-bigints": { - "version": "1.0.1", - "dev": true - }, - "has-flag": { - "version": "3.0.0" - }, - "has-symbols": { - "version": "1.0.2", - "dev": true - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "dev": true - }, - "has-value": { - "version": "1.0.0", - "dev": true, - "requires": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "dev": true - } - } - }, - "has-values": { - "version": "1.0.0", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "dependencies": { - "kind-of": { - "version": "4.0.0", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "hoist-non-react-statics": { - "version": "3.3.2", - "requires": { - "react-is": "^16.7.0" - } - }, - "hosted-git-info": { - "version": "2.8.9", - "dev": true - }, - "html-encoding-sniffer": { - "version": "1.0.2", - "dev": true, - "requires": { - "whatwg-encoding": "^1.0.1" - } - }, - "html-escaper": { - "version": "2.0.2", - "dev": true - }, - "http-cache-semantics": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", - "dev": true - }, - "http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "dev": true, - "requires": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - } - }, - "http-signature": { - "version": "1.2.0", - "dev": true, - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "https-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", - "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", - "dev": true, - "requires": { - "agent-base": "6", - "debug": "4" - } - }, - "humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", - "dev": true, - "requires": { - "ms": "^2.0.0" - } - }, - "iconv-lite": { - "version": "0.4.24", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "icss-replace-symbols": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", - "integrity": "sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==", - "dev": true - }, - "icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", - "dev": true, - "requires": {} - }, - "identity-obj-proxy": { - "version": "3.0.0", - "dev": true, - "requires": { - "harmony-reflect": "^1.4.6" - } - }, - "ignore": { - "version": "4.0.6", - "dev": true - }, - "immutable": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.2.2.tgz", - "integrity": "sha512-fTMKDwtbvO5tldky9QZ2fMX7slR0mYpY5nbnFWYp0fOzDhHqhgIw9KoYgxLWsoNTS9ZHGauHj18DTyEw6BK3Og==" - }, - "import-fresh": { - "version": "3.2.1", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "4.0.0", - "dev": true - } - } - }, - "import-local": { - "version": "2.0.0", - "dev": true, - "requires": { - "pkg-dir": "^3.0.0", - "resolve-cwd": "^2.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "dev": true - }, - "indent-string": { - "version": "4.0.0", - "dev": true - }, - "infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "dev": true - }, - "internal-slot": { - "version": "1.0.3", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - } - }, - "internmap": { - "version": "1.0.0" - }, - "invariant": { - "version": "2.2.4", - "dev": true, - "requires": { - "loose-envify": "^1.0.0" - } - }, - "ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", - "dev": true - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-arrayish": { - "version": "0.2.1", - "dev": true - }, - "is-bigint": { - "version": "1.0.1", - "dev": true - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-boolean-object": { - "version": "1.1.0", - "dev": true, - "requires": { - "call-bind": "^1.0.0" - } - }, - "is-buffer": { - "version": "1.1.6", - "dev": true - }, - "is-callable": { - "version": "1.2.3", - "dev": true - }, - "is-ci": { - "version": "2.0.0", - "dev": true, - "requires": { - "ci-info": "^2.0.0" - } - }, - "is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-date-object": { - "version": "1.0.2", - "dev": true - }, - "is-descriptor": { - "version": "0.1.6", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "dev": true - } - } - }, - "is-extendable": { - "version": "0.1.1", - "dev": true - }, - "is-extglob": { - "version": "2.1.1" - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "is-generator-fn": { - "version": "2.1.0", - "dev": true - }, - "is-glob": { - "version": "4.0.1", - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", - "dev": true - }, - "is-module": { - "version": "1.0.0", - "dev": true - }, - "is-negative-zero": { - "version": "2.0.1", - "dev": true - }, - "is-number": { - "version": "3.0.0", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-number-object": { - "version": "1.0.4", - "dev": true - }, - "is-plain-obj": { - "version": "1.1.0", - "dev": true - }, - "is-plain-object": { - "version": "3.0.0", - "dev": true, - "requires": { - "isobject": "^4.0.0" - } - }, - "is-reference": { - "version": "1.2.0", - "dev": true, - "requires": { - "@types/estree": "0.0.44" - }, - "dependencies": { - "@types/estree": { - "version": "0.0.44", - "dev": true - } - } - }, - "is-regex": { - "version": "1.1.2", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.1" - } - }, - "is-stream": { - "version": "1.1.0", - "dev": true - }, - "is-string": { - "version": "1.0.5", - "dev": true - }, - "is-symbol": { - "version": "1.0.3", - "dev": true, - "requires": { - "has-symbols": "^1.0.1" - } - }, - "is-typedarray": { - "version": "1.0.0", - "dev": true - }, - "is-windows": { - "version": "1.0.2", - "dev": true - }, - "is-wsl": { - "version": "1.1.0", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "dev": true - }, - "isobject": { - "version": "4.0.0", - "dev": true - }, - "isstream": { - "version": "0.1.2", - "dev": true - }, - "istanbul-lib-coverage": { - "version": "2.0.5", - "dev": true - }, - "istanbul-lib-instrument": { - "version": "3.3.0", - "dev": true, - "requires": { - "@babel/generator": "^7.4.0", - "@babel/parser": "^7.4.3", - "@babel/template": "^7.4.0", - "@babel/traverse": "^7.4.3", - "@babel/types": "^7.4.0", - "istanbul-lib-coverage": "^2.0.5", - "semver": "^6.0.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "dev": true - } - } - }, - "istanbul-lib-report": { - "version": "2.0.8", - "dev": true, - "requires": { - "istanbul-lib-coverage": "^2.0.5", - "make-dir": "^2.1.0", - "supports-color": "^6.1.0" - }, - "dependencies": { - "supports-color": { - "version": "6.1.0", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "istanbul-lib-source-maps": { - "version": "3.0.6", - "dev": true, - "requires": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^2.0.5", - "make-dir": "^2.1.0", - "rimraf": "^2.6.3", - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "dev": true - } - } - }, - "istanbul-reports": { - "version": "2.2.7", - "dev": true, - "requires": { - "html-escaper": "^2.0.0" - } - }, - "jest": { - "version": "24.9.0", - "dev": true, - "requires": { - "import-local": "^2.0.0", - "jest-cli": "^24.9.0" - } - }, - "jest-changed-files": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/types": "^24.9.0", - "execa": "^1.0.0", - "throat": "^4.0.0" - } - }, - "jest-cli": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/core": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "import-local": "^2.0.0", - "is-ci": "^2.0.0", - "jest-config": "^24.9.0", - "jest-util": "^24.9.0", - "jest-validate": "^24.9.0", - "prompts": "^2.0.1", - "realpath-native": "^1.1.0", - "yargs": "^13.3.0" - } - }, - "jest-config": { - "version": "24.9.0", - "dev": true, - "requires": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^24.9.0", - "@jest/types": "^24.9.0", - "babel-jest": "^24.9.0", - "chalk": "^2.0.1", - "glob": "^7.1.1", - "jest-environment-jsdom": "^24.9.0", - "jest-environment-node": "^24.9.0", - "jest-get-type": "^24.9.0", - "jest-jasmine2": "^24.9.0", - "jest-regex-util": "^24.3.0", - "jest-resolve": "^24.9.0", - "jest-util": "^24.9.0", - "jest-validate": "^24.9.0", - "micromatch": "^3.1.10", - "pretty-format": "^24.9.0", - "realpath-native": "^1.1.0" - }, - "dependencies": { - "micromatch": { - "version": "3.1.10", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - } - } - }, - "jest-diff": { - "version": "25.5.0", - "dev": true, - "requires": { - "chalk": "^3.0.0", - "diff-sequences": "^25.2.6", - "jest-get-type": "^25.2.6", - "pretty-format": "^25.5.0" - }, - "dependencies": { - "@jest/types": { - "version": "25.5.0", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - } - }, - "@types/yargs": { - "version": "15.0.5", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-regex": { - "version": "5.0.1", - "dev": true - }, - "ansi-styles": { - "version": "4.2.1", - "dev": true, - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "diff-sequences": { - "version": "25.2.6", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "jest-get-type": { - "version": "25.2.6", - "dev": true - }, - "pretty-format": { - "version": "25.5.0", - "dev": true, - "requires": { - "@jest/types": "^25.5.0", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^16.12.0" - } - }, - "supports-color": { - "version": "7.1.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-docblock": { - "version": "24.9.0", - "dev": true, - "requires": { - "detect-newline": "^2.1.0" - } - }, - "jest-each": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "jest-get-type": "^24.9.0", - "jest-util": "^24.9.0", - "pretty-format": "^24.9.0" - } - }, - "jest-environment-jsdom": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/environment": "^24.9.0", - "@jest/fake-timers": "^24.9.0", - "@jest/types": "^24.9.0", - "jest-mock": "^24.9.0", - "jest-util": "^24.9.0", - "jsdom": "^11.5.1" - } - }, - "jest-environment-node": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/environment": "^24.9.0", - "@jest/fake-timers": "^24.9.0", - "@jest/types": "^24.9.0", - "jest-mock": "^24.9.0", - "jest-util": "^24.9.0" - } - }, - "jest-get-type": { - "version": "24.9.0", - "dev": true - }, - "jest-haste-map": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/types": "^24.9.0", - "anymatch": "^2.0.0", - "fb-watchman": "^2.0.0", - "fsevents": "^1.2.7", - "graceful-fs": "^4.1.15", - "invariant": "^2.2.4", - "jest-serializer": "^24.9.0", - "jest-util": "^24.9.0", - "jest-worker": "^24.9.0", - "micromatch": "^3.1.10", - "sane": "^4.0.3", - "walker": "^1.0.7" - }, - "dependencies": { - "anymatch": { - "version": "2.0.0", - "dev": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "fsevents": { - "version": "1.2.13", - "dev": true, - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - } - }, - "jest-worker": { - "version": "24.9.0", - "dev": true, - "requires": { - "merge-stream": "^2.0.0", - "supports-color": "^6.1.0" - } - }, - "micromatch": { - "version": "3.1.10", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "normalize-path": { - "version": "2.1.1", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - }, - "supports-color": { - "version": "6.1.0", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "jest-jasmine2": { - "version": "24.9.0", - "dev": true, - "requires": { - "@babel/traverse": "^7.1.0", - "@jest/environment": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "co": "^4.6.0", - "expect": "^24.9.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^24.9.0", - "jest-matcher-utils": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-runtime": "^24.9.0", - "jest-snapshot": "^24.9.0", - "jest-util": "^24.9.0", - "pretty-format": "^24.9.0", - "throat": "^4.0.0" - }, - "dependencies": { - "jest-diff": { - "version": "24.9.0", - "dev": true, - "requires": { - "chalk": "^2.0.1", - "diff-sequences": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - } - }, - "jest-matcher-utils": { - "version": "24.9.0", - "dev": true, - "requires": { - "chalk": "^2.0.1", - "jest-diff": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - } - } - } - }, - "jest-leak-detector": { - "version": "24.9.0", - "dev": true, - "requires": { - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - } - }, - "jest-matcher-utils": { - "version": "25.5.0", - "dev": true, - "requires": { - "chalk": "^3.0.0", - "jest-diff": "^25.5.0", - "jest-get-type": "^25.2.6", - "pretty-format": "^25.5.0" - }, - "dependencies": { - "@jest/types": { - "version": "25.5.0", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - } - }, - "@types/yargs": { - "version": "15.0.5", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-regex": { - "version": "5.0.1", - "dev": true - }, - "ansi-styles": { - "version": "4.2.1", - "dev": true, - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "jest-get-type": { - "version": "25.2.6", - "dev": true - }, - "pretty-format": { - "version": "25.5.0", - "dev": true, - "requires": { - "@jest/types": "^25.5.0", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^16.12.0" - } - }, - "supports-color": { - "version": "7.1.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-message-util": { - "version": "24.9.0", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/stack-utils": "^1.0.1", - "chalk": "^2.0.1", - "micromatch": "^3.1.10", - "slash": "^2.0.0", - "stack-utils": "^1.0.1" - }, - "dependencies": { - "micromatch": { - "version": "3.1.10", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "slash": { - "version": "2.0.0", - "dev": true - } - } - }, - "jest-mock": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/types": "^24.9.0" - } - }, - "jest-pnp-resolver": { - "version": "1.2.1", - "dev": true, - "requires": {} - }, - "jest-regex-util": { - "version": "24.9.0", - "dev": true - }, - "jest-resolve": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/types": "^24.9.0", - "browser-resolve": "^1.11.3", - "chalk": "^2.0.1", - "jest-pnp-resolver": "^1.2.1", - "realpath-native": "^1.1.0" - } - }, - "jest-resolve-dependencies": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/types": "^24.9.0", - "jest-regex-util": "^24.3.0", - "jest-snapshot": "^24.9.0" - } - }, - "jest-runner": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/console": "^24.7.1", - "@jest/environment": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "chalk": "^2.4.2", - "exit": "^0.1.2", - "graceful-fs": "^4.1.15", - "jest-config": "^24.9.0", - "jest-docblock": "^24.3.0", - "jest-haste-map": "^24.9.0", - "jest-jasmine2": "^24.9.0", - "jest-leak-detector": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-resolve": "^24.9.0", - "jest-runtime": "^24.9.0", - "jest-util": "^24.9.0", - "jest-worker": "^24.6.0", - "source-map-support": "^0.5.6", - "throat": "^4.0.0" - }, - "dependencies": { - "jest-worker": { - "version": "24.9.0", - "dev": true, - "requires": { - "merge-stream": "^2.0.0", - "supports-color": "^6.1.0" - } - }, - "supports-color": { - "version": "6.1.0", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "jest-runtime": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/console": "^24.7.1", - "@jest/environment": "^24.9.0", - "@jest/source-map": "^24.3.0", - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/yargs": "^13.0.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.1.15", - "jest-config": "^24.9.0", - "jest-haste-map": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-mock": "^24.9.0", - "jest-regex-util": "^24.3.0", - "jest-resolve": "^24.9.0", - "jest-snapshot": "^24.9.0", - "jest-util": "^24.9.0", - "jest-validate": "^24.9.0", - "realpath-native": "^1.1.0", - "slash": "^2.0.0", - "strip-bom": "^3.0.0", - "yargs": "^13.3.0" - }, - "dependencies": { - "slash": { - "version": "2.0.0", - "dev": true - } - } - }, - "jest-serializer": { - "version": "24.9.0", - "dev": true - }, - "jest-snapshot": { - "version": "24.9.0", - "dev": true, - "requires": { - "@babel/types": "^7.0.0", - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "expect": "^24.9.0", - "jest-diff": "^24.9.0", - "jest-get-type": "^24.9.0", - "jest-matcher-utils": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-resolve": "^24.9.0", - "mkdirp": "^0.5.1", - "natural-compare": "^1.4.0", - "pretty-format": "^24.9.0", - "semver": "^6.2.0" - }, - "dependencies": { - "jest-diff": { - "version": "24.9.0", - "dev": true, - "requires": { - "chalk": "^2.0.1", - "diff-sequences": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - } - }, - "jest-matcher-utils": { - "version": "24.9.0", - "dev": true, - "requires": { - "chalk": "^2.0.1", - "jest-diff": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - } - }, - "semver": { - "version": "6.3.0", - "dev": true - } - } - }, - "jest-util": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/console": "^24.9.0", - "@jest/fake-timers": "^24.9.0", - "@jest/source-map": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "callsites": "^3.0.0", - "chalk": "^2.0.1", - "graceful-fs": "^4.1.15", - "is-ci": "^2.0.0", - "mkdirp": "^0.5.1", - "slash": "^2.0.0", - "source-map": "^0.6.0" - }, - "dependencies": { - "slash": { - "version": "2.0.0", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "dev": true - } - } - }, - "jest-validate": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/types": "^24.9.0", - "camelcase": "^5.3.1", - "chalk": "^2.0.1", - "jest-get-type": "^24.9.0", - "leven": "^3.1.0", - "pretty-format": "^24.9.0" - } - }, - "jest-watcher": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/yargs": "^13.0.0", - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.1", - "jest-util": "^24.9.0", - "string-length": "^2.0.0" - }, - "dependencies": { - "ansi-escapes": { - "version": "3.2.0", - "dev": true - } - } - }, - "jest-worker": { - "version": "27.4.5", - "dev": true, - "peer": true, - "requires": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "dependencies": { - "has-flag": { - "version": "4.0.0", - "dev": true, - "peer": true - }, - "supports-color": { - "version": "8.1.1", - "dev": true, - "peer": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "js-base64": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", - "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==", - "dev": true - }, - "js-tokens": { - "version": "4.0.0" - }, - "js-yaml": { - "version": "3.14.0", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "jsbn": { - "version": "0.1.1", - "dev": true - }, - "jsdom": { - "version": "11.12.0", - "dev": true, - "requires": { - "abab": "^2.0.0", - "acorn": "^5.5.3", - "acorn-globals": "^4.1.0", - "array-equal": "^1.0.0", - "cssom": ">= 0.3.2 < 0.4.0", - "cssstyle": "^1.0.0", - "data-urls": "^1.0.0", - "domexception": "^1.0.1", - "escodegen": "^1.9.1", - "html-encoding-sniffer": "^1.0.2", - "left-pad": "^1.3.0", - "nwsapi": "^2.0.7", - "parse5": "4.0.0", - "pn": "^1.1.0", - "request": "^2.87.0", - "request-promise-native": "^1.0.5", - "sax": "^1.2.4", - "symbol-tree": "^3.2.2", - "tough-cookie": "^2.3.4", - "w3c-hr-time": "^1.0.1", - "webidl-conversions": "^4.0.2", - "whatwg-encoding": "^1.0.3", - "whatwg-mimetype": "^2.1.0", - "whatwg-url": "^6.4.1", - "ws": "^5.2.0", - "xml-name-validator": "^3.0.0" - }, - "dependencies": { - "acorn": { - "version": "5.7.4", - "dev": true - } - } - }, - "jsesc": { - "version": "2.5.2" - }, - "json-parse-better-errors": { - "version": "1.0.2", - "dev": true - }, - "json-schema": { - "version": "0.4.0", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "dev": true - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "dev": true - }, - "json-stringify-safe": { - "version": "5.0.1" - }, - "json5": { - "version": "2.1.3", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "jsprim": { - "version": "1.4.2", - "dev": true, - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - } - }, - "jsx-ast-utils": { - "version": "3.2.0", - "dev": true, - "requires": { - "array-includes": "^3.1.2", - "object.assign": "^4.1.2" - } - }, - "kind-of": { - "version": "6.0.3", - "dev": true - }, - "left-pad": { - "version": "1.3.0", - "dev": true - }, - "leven": { - "version": "3.1.0", - "dev": true - }, - "levenary": { - "version": "1.1.1", - "dev": true, - "requires": { - "leven": "^3.1.0" - } - }, - "levn": { - "version": "0.3.0", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } - }, - "lilconfig": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", - "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", - "dev": true - }, - "lines-and-columns": { - "version": "1.1.6", - "dev": true - }, - "load-json-file": { - "version": "4.0.0", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - }, - "dependencies": { - "parse-json": { - "version": "4.0.0", - "dev": true, - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - } - }, - "pify": { - "version": "3.0.0", - "dev": true - } - } - }, - "loader-runner": { - "version": "4.2.0", - "dev": true, - "peer": true - }, - "loader-utils": { - "version": "1.4.0", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - } - } - }, - "lodash": { - "version": "4.17.21" - }, - "lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "dev": true - }, - "lodash.clonedeep": { - "version": "4.5.0", - "dev": true - }, - "lodash.flatten": { - "version": "4.4.0", - "dev": true - }, - "lodash.memoize": { - "version": "4.1.2", - "dev": true - }, - "lodash.sortby": { - "version": "4.7.0", - "dev": true - }, - "lodash.truncate": { - "version": "4.4.2", - "dev": true - }, - "lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", - "dev": true - }, - "loose-envify": { - "version": "1.4.0", - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } - }, - "lru-cache": { - "version": "6.0.0", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "magic-string": { - "version": "0.25.7", - "dev": true, - "requires": { - "sourcemap-codec": "^1.4.4" - } - }, - "make-dir": { - "version": "2.1.0", - "dev": true, - "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - } - }, - "make-error": { - "version": "1.3.6", - "dev": true - }, - "make-fetch-happen": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", - "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", - "dev": true, - "requires": { - "agentkeepalive": "^4.1.3", - "cacache": "^15.2.0", - "http-cache-semantics": "^4.1.0", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^6.0.0", - "minipass": "^3.1.3", - "minipass-collect": "^1.0.2", - "minipass-fetch": "^1.3.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.2", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^6.0.0", - "ssri": "^8.0.0" - } - }, - "makeerror": { - "version": "1.0.11", - "dev": true, - "requires": { - "tmpl": "1.0.x" - } - }, - "map-cache": { - "version": "0.2.2", - "dev": true - }, - "map-obj": { - "version": "4.3.0", - "dev": true - }, - "map-visit": { - "version": "1.0.0", - "dev": true, - "requires": { - "object-visit": "^1.0.0" - } - }, - "mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", - "dev": true - }, - "meow": { - "version": "9.0.0", - "dev": true, - "requires": { - "@types/minimist": "^1.2.0", - "camelcase-keys": "^6.2.2", - "decamelize": "^1.2.0", - "decamelize-keys": "^1.1.0", - "hard-rejection": "^2.1.0", - "minimist-options": "4.1.0", - "normalize-package-data": "^3.0.0", - "read-pkg-up": "^7.0.1", - "redent": "^3.0.0", - "trim-newlines": "^3.0.0", - "type-fest": "^0.18.0", - "yargs-parser": "^20.2.3" - }, - "dependencies": { - "hosted-git-info": { - "version": "4.0.2", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "normalize-package-data": { - "version": "3.0.3", - "dev": true, - "requires": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" - } - }, - "read-pkg": { - "version": "5.2.0", - "dev": true, - "requires": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" - }, - "dependencies": { - "hosted-git-info": { - "version": "2.8.9", - "dev": true - }, - "normalize-package-data": { - "version": "2.5.0", - "dev": true, - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "semver": { - "version": "5.7.1", - "dev": true - }, - "type-fest": { - "version": "0.6.0", - "dev": true - } - } - }, - "read-pkg-up": { - "version": "7.0.1", - "dev": true, - "requires": { - "find-up": "^4.1.0", - "read-pkg": "^5.2.0", - "type-fest": "^0.8.1" - }, - "dependencies": { - "type-fest": { - "version": "0.8.1", - "dev": true - } - } - }, - "semver": { - "version": "7.3.5", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "type-fest": { - "version": "0.18.1", - "dev": true - }, - "yargs-parser": { - "version": "20.2.9", - "dev": true - } - } - }, - "merge-stream": { - "version": "2.0.0", - "dev": true - }, - "merge2": { - "version": "1.4.1", - "dev": true - }, - "micromatch": { - "version": "4.0.2", - "dev": true, - "requires": { - "braces": "^3.0.1", - "picomatch": "^2.0.5" - }, - "dependencies": { - "braces": { - "version": "3.0.2", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "fill-range": { - "version": "7.0.1", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "is-number": { - "version": "7.0.0", - "dev": true - }, - "to-regex-range": { - "version": "5.0.1", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - } - } - }, - "mime-db": { - "version": "1.44.0", - "dev": true - }, - "mime-types": { - "version": "2.1.27", - "dev": true, - "requires": { - "mime-db": "1.44.0" - } - }, - "min-indent": { - "version": "1.0.1", - "dev": true - }, - "mini-svg-data-uri": { - "version": "1.2.3", - "dev": true - }, - "minimatch": { - "version": "3.0.4", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.5", - "dev": true - }, - "minimist-options": { - "version": "4.1.0", - "dev": true, - "requires": { - "arrify": "^1.0.1", - "is-plain-obj": "^1.1.0", - "kind-of": "^6.0.3" - } - }, - "minipass": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", - "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-fetch": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", - "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", - "dev": true, - "requires": { - "encoding": "^0.1.12", - "minipass": "^3.1.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.0.0" - } - }, - "minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "requires": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - } - }, - "mixin-deep": { - "version": "1.3.2", - "dev": true, - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "is-plain-object": { - "version": "2.0.4", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "isobject": { - "version": "3.0.1", - "dev": true - } - } - }, - "mkdirp": { - "version": "0.5.5", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "ms": { - "version": "2.1.2" - }, - "nan": { - "version": "2.14.1", - "dev": true - }, - "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", - "dev": true, - "peer": true - }, - "nanomatch": { - "version": "1.2.13", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - } - }, - "natural-compare": { - "version": "1.4.0", - "dev": true - }, - "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true - }, - "neo-async": { - "version": "2.6.2", - "dev": true, - "peer": true - }, - "nice-try": { - "version": "1.0.5", - "dev": true - }, - "node-gyp": { - "version": "8.4.1", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", - "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", - "dev": true, - "requires": { - "env-paths": "^2.2.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^9.1.0", - "nopt": "^5.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "are-we-there-yet": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.0.tgz", - "integrity": "sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==", - "dev": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - } - }, - "gauge": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.1.tgz", - "integrity": "sha512-zJ4jePUHR8cceduZ53b6temRalyGpkC2Kc2r3ecNphmL+uWNoJ3YcOcUjpbG6WwoE/Ef6/+aEZz63neI2WIa1Q==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1", - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - } - }, - "npmlog": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.1.tgz", - "integrity": "sha512-BTHDvY6nrRHuRfyjt1MAufLxYdVXZfd099H4+i1f0lPywNQyI4foeNXJRObB/uy+TYqUW0vAD9gbdSOXPst7Eg==", - "dev": true, - "requires": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.0", - "set-blocking": "^2.0.0" - } - }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "node-int64": { - "version": "0.4.0", - "dev": true - }, - "node-modules-regexp": { - "version": "1.0.0", - "dev": true - }, - "node-notifier": { - "version": "5.4.5", - "dev": true, - "requires": { - "growly": "^1.3.0", - "is-wsl": "^1.1.0", - "semver": "^5.5.0", - "shellwords": "^0.1.1", - "which": "^1.3.0" - } - }, - "node-releases": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.8.tgz", - "integrity": "sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==", - "dev": true - }, - "node-sass": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-7.0.1.tgz", - "integrity": "sha512-uMy+Xt29NlqKCFdFRZyXKOTqGt+QaKHexv9STj2WeLottnlqZEEWx6Bj0MXNthmFRRdM/YwyNo/8Tr46TOM0jQ==", - "dev": true, - "requires": { - "async-foreach": "^0.1.3", - "chalk": "^4.1.2", - "cross-spawn": "^7.0.3", - "gaze": "^1.0.0", - "get-stdin": "^4.0.1", - "glob": "^7.0.3", - "lodash": "^4.17.15", - "meow": "^9.0.0", - "nan": "^2.13.2", - "node-gyp": "^8.4.1", - "npmlog": "^5.0.0", - "request": "^2.88.0", - "sass-graph": "4.0.0", - "stdout-stream": "^1.4.0", - "true-case-path": "^1.0.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "cross-spawn": { - "version": "7.0.3", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "path-key": { - "version": "3.1.1", - "dev": true - }, - "shebang-command": { - "version": "2.0.0", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "which": { - "version": "2.0.2", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "nopt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", - "dev": true, - "requires": { - "abbrev": "1" - } - }, - "normalize-package-data": { - "version": "2.5.0", - "dev": true, - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - }, - "normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", - "dev": true - }, - "npm-run-path": { - "version": "2.0.2", - "dev": true, - "requires": { - "path-key": "^2.0.0" - } - }, - "npmlog": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", - "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", - "dev": true, - "requires": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^3.0.0", - "set-blocking": "^2.0.0" - } - }, - "nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "dev": true, - "requires": { - "boolbase": "^1.0.0" - } - }, - "nwsapi": { - "version": "2.2.0", - "dev": true - }, - "oauth-sign": { - "version": "0.9.0", - "dev": true - }, - "object-assign": { - "version": "4.1.1" - }, - "object-copy": { - "version": "0.1.0", - "dev": true, - "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "kind-of": { - "version": "3.2.2", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "object-inspect": { - "version": "1.9.0", - "dev": true - }, - "object-keys": { - "version": "1.1.1", - "dev": true - }, - "object-visit": { - "version": "1.0.1", - "dev": true, - "requires": { - "isobject": "^3.0.0" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "dev": true - } - } - }, - "object.assign": { - "version": "4.1.2", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "object.entries": { - "version": "1.1.3", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1", - "has": "^1.0.3" - } - }, - "object.fromentries": { - "version": "2.0.4", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2", - "has": "^1.0.3" - } - }, - "object.getownpropertydescriptors": { - "version": "2.1.0", - "dev": true, - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1" - } - }, - "object.pick": { - "version": "1.3.0", - "dev": true, - "requires": { - "isobject": "^3.0.1" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "dev": true - } - } - }, - "object.values": { - "version": "1.1.3", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2", - "has": "^1.0.3" - } - }, - "once": { - "version": "1.4.0", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "optionator": { - "version": "0.8.3", - "dev": true, - "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - } - }, - "p-each-series": { - "version": "1.0.0", - "dev": true, - "requires": { - "p-reduce": "^1.0.0" - } - }, - "p-finally": { - "version": "1.0.0", - "dev": true - }, - "p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "requires": { - "aggregate-error": "^3.0.0" - } - }, - "p-queue": { - "version": "6.6.2", - "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz", - "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==", - "dev": true, - "requires": { - "eventemitter3": "^4.0.4", - "p-timeout": "^3.2.0" - } - }, - "p-reduce": { - "version": "1.0.0", - "dev": true - }, - "p-timeout": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", - "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", - "dev": true, - "requires": { - "p-finally": "^1.0.0" - } - }, - "parent-module": { - "version": "1.0.1", - "dev": true, - "requires": { - "callsites": "^3.0.0" - } - }, - "parse-json": { - "version": "5.0.0", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1", - "lines-and-columns": "^1.1.6" - } - }, - "parse5": { - "version": "4.0.0", - "dev": true - }, - "pascalcase": { - "version": "0.1.1", - "dev": true - }, - "path-exists": { - "version": "3.0.0", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "dev": true - }, - "path-key": { - "version": "2.0.1", - "dev": true - }, - "path-parse": { - "version": "1.0.7", - "dev": true - }, - "path-type": { - "version": "4.0.0", - "dev": true - }, - "performance-now": { - "version": "2.1.0", - "dev": true - }, - "picocolors": { - "version": "1.0.0", - "dev": true - }, - "picomatch": { - "version": "2.2.2" - }, - "pify": { - "version": "4.0.1", - "dev": true - }, - "pirates": { - "version": "4.0.1", - "dev": true, - "requires": { - "node-modules-regexp": "^1.0.0" - } - }, - "pkg-dir": { - "version": "3.0.0", - "dev": true, - "requires": { - "find-up": "^3.0.0" - }, - "dependencies": { - "find-up": { - "version": "3.0.0", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.3.0", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "dev": true - } - } - }, - "pn": { - "version": "1.1.0", - "dev": true - }, - "posix-character-classes": { - "version": "0.1.1", - "dev": true - }, - "postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", - "dev": true, - "peer": true, - "requires": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - } - }, - "postcss-calc": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", - "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", - "dev": true, - "requires": { - "postcss-selector-parser": "^6.0.9", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-colormin": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", - "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", - "dev": true, - "requires": { - "browserslist": "^4.16.6", - "caniuse-api": "^3.0.0", - "colord": "^2.9.1", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-convert-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", - "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-discard-comments": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", - "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", - "dev": true, - "requires": {} - }, - "postcss-discard-duplicates": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", - "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", - "dev": true, - "requires": {} - }, - "postcss-discard-empty": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", - "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", - "dev": true, - "requires": {} - }, - "postcss-discard-overridden": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", - "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", - "dev": true, - "requires": {} - }, - "postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", - "dev": true, - "requires": { - "lilconfig": "^2.0.5", - "yaml": "^1.10.2" - } - }, - "postcss-merge-longhand": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", - "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^5.1.1" - } - }, - "postcss-merge-rules": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.3.tgz", - "integrity": "sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.1.0", - "postcss-selector-parser": "^6.0.5" - } - }, - "postcss-minify-font-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", - "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-minify-gradients": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", - "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", - "dev": true, - "requires": { - "colord": "^2.9.1", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-minify-params": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", - "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-minify-selectors": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", - "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", - "dev": true, - "requires": { - "postcss-selector-parser": "^6.0.5" - } - }, - "postcss-modules": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-4.3.1.tgz", - "integrity": "sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==", - "dev": true, - "requires": { - "generic-names": "^4.0.0", - "icss-replace-symbols": "^1.1.0", - "lodash.camelcase": "^4.3.0", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "string-hash": "^1.1.1" - } - }, - "postcss-modules-extract-imports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", - "dev": true, - "requires": {} - }, - "postcss-modules-local-by-default": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", - "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", - "dev": true, - "requires": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" - } - }, - "postcss-modules-scope": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", - "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", - "dev": true, - "requires": { - "postcss-selector-parser": "^6.0.4" - } - }, - "postcss-modules-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", - "dev": true, - "requires": { - "icss-utils": "^5.0.0" - } - }, - "postcss-normalize-charset": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", - "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", - "dev": true, - "requires": {} - }, - "postcss-normalize-display-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", - "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-positions": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", - "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-repeat-style": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", - "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-string": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", - "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-timing-functions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", - "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-unicode": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", - "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-url": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", - "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", - "dev": true, - "requires": { - "normalize-url": "^6.0.1", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-normalize-whitespace": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", - "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-ordered-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", - "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", - "dev": true, - "requires": { - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-reduce-initial": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.1.tgz", - "integrity": "sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0" - } - }, - "postcss-reduce-transforms": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", - "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-selector-parser": { - "version": "6.0.11", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", - "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", - "dev": true, - "requires": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - } - }, - "postcss-svgo": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", - "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", - "dev": true, - "requires": { - "postcss-value-parser": "^4.2.0", - "svgo": "^2.7.0" - } - }, - "postcss-unique-selectors": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", - "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", - "dev": true, - "requires": { - "postcss-selector-parser": "^6.0.5" - } - }, - "postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - }, - "prelude-ls": { - "version": "1.1.2", - "dev": true - }, - "prettier": { - "version": "2.2.1", - "dev": true - }, - "prettier-linter-helpers": { - "version": "1.0.0", - "dev": true, - "requires": { - "fast-diff": "^1.1.2" - } - }, - "pretty-format": { - "version": "24.9.0", - "dev": true, - "requires": { - "@jest/types": "^24.9.0", - "ansi-regex": "^4.0.0", - "ansi-styles": "^3.2.0", - "react-is": "^16.8.4" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "dev": true - } - } - }, - "private": { - "version": "0.1.8", - "dev": true - }, - "process-nextick-args": { - "version": "2.0.1", - "dev": true - }, - "progress": { - "version": "2.0.3", - "dev": true - }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", - "dev": true - }, - "promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", - "dev": true, - "requires": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - } - }, - "promise.series": { - "version": "0.2.0", - "dev": true - }, - "prompts": { - "version": "2.3.2", - "dev": true, - "requires": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.4" - }, - "dependencies": { - "kleur": { - "version": "3.0.3", - "dev": true - } - } - }, - "prop-types": { - "version": "15.7.2", - "requires": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.8.1" - } - }, - "psl": { - "version": "1.8.0", - "dev": true - }, - "pump": { - "version": "3.0.0", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "punycode": { - "version": "2.1.1", - "dev": true - }, - "quick-lru": { - "version": "4.0.1", - "dev": true - }, - "randombytes": { - "version": "2.1.0", - "dev": true, - "peer": true, - "requires": { - "safe-buffer": "^5.1.0" - } - }, - "react": { - "version": "file:../digital-growth-charts-react-client/node_modules/react", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - } - }, - "react-dom": { - "version": "file:../digital-growth-charts-react-client/node_modules/react-dom", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "scheduler": "^0.20.2" - } - }, - "react-fast-compare": { - "version": "2.0.4" - }, - "react-is": { - "version": "16.13.1" - }, - "read-pkg": { - "version": "3.0.0", - "dev": true, - "requires": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - }, - "dependencies": { - "path-type": { - "version": "3.0.0", - "dev": true, - "requires": { - "pify": "^3.0.0" - } - }, - "pify": { - "version": "3.0.0", - "dev": true - } - } - }, - "read-pkg-up": { - "version": "4.0.0", - "dev": true, - "requires": { - "find-up": "^3.0.0", - "read-pkg": "^3.0.0" - }, - "dependencies": { - "find-up": { - "version": "3.0.0", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.3.0", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "dev": true - } - } - }, - "readable-stream": { - "version": "2.3.7", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "requires": { - "picomatch": "^2.2.1" - } - }, - "realpath-native": { - "version": "1.1.0", - "dev": true, - "requires": { - "util.promisify": "^1.0.0" - } - }, - "redent": { - "version": "3.0.0", - "dev": true, - "requires": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" - } - }, - "regenerate": { - "version": "1.4.1", - "dev": true - }, - "regenerate-unicode-properties": { - "version": "8.2.0", - "dev": true, - "requires": { - "regenerate": "^1.4.0" - } - }, - "regenerator-runtime": { - "version": "0.13.5", - "dev": true - }, - "regenerator-transform": { - "version": "0.14.4", - "dev": true, - "requires": { - "@babel/runtime": "^7.8.4", - "private": "^0.1.8" - } - }, - "regex-not": { - "version": "1.0.2", - "dev": true, - "requires": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - } - }, - "regexp.prototype.flags": { - "version": "1.3.1", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "regexpp": { - "version": "3.1.0", - "dev": true - }, - "regexpu-core": { - "version": "4.7.0", - "dev": true, - "requires": { - "regenerate": "^1.4.0", - "regenerate-unicode-properties": "^8.2.0", - "regjsgen": "^0.5.1", - "regjsparser": "^0.6.4", - "unicode-match-property-ecmascript": "^1.0.4", - "unicode-match-property-value-ecmascript": "^1.2.0" - } - }, - "regjsgen": { - "version": "0.5.2", - "dev": true - }, - "regjsparser": { - "version": "0.6.4", - "dev": true, - "requires": { - "jsesc": "~0.5.0" - }, - "dependencies": { - "jsesc": { - "version": "0.5.0", - "dev": true - } - } - }, - "remove-trailing-separator": { - "version": "1.1.0", - "dev": true - }, - "repeat-element": { - "version": "1.1.3", - "dev": true - }, - "repeat-string": { - "version": "1.6.1", - "dev": true - }, - "request": { - "version": "2.88.2", - "dev": true, - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "dependencies": { - "qs": { - "version": "6.5.2", - "dev": true - } - } - }, - "request-promise-core": { - "version": "1.1.3", - "dev": true, - "requires": { - "lodash": "^4.17.15" - } - }, - "request-promise-native": { - "version": "1.0.8", - "dev": true, - "requires": { - "request-promise-core": "1.1.3", - "stealthy-require": "^1.1.1", - "tough-cookie": "^2.3.3" - } - }, - "require-directory": { - "version": "2.1.1", - "dev": true - }, - "require-from-string": { - "version": "2.0.2", - "dev": true - }, - "require-main-filename": { - "version": "2.0.0", - "dev": true - }, - "resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - "dev": true, - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "resolve-cwd": { - "version": "2.0.0", - "dev": true, - "requires": { - "resolve-from": "^3.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "3.0.0", - "dev": true - } - } - }, - "resolve-from": { - "version": "5.0.0", - "dev": true - }, - "resolve-url": { - "version": "0.2.1", - "dev": true - }, - "ret": { - "version": "0.1.15", - "dev": true - }, - "retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", - "dev": true - }, - "reusify": { - "version": "1.0.4", - "dev": true - }, - "rimraf": { - "version": "2.7.1", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "rollup": { - "version": "1.32.1", - "dev": true, - "requires": { - "@types/estree": "*", - "@types/node": "*", - "acorn": "^7.1.0" - }, - "dependencies": { - "acorn": { - "version": "7.3.1", - "dev": true - } - } - }, - "rollup-plugin-copy": { - "version": "3.3.0", - "dev": true, - "requires": { - "@types/fs-extra": "^8.0.1", - "colorette": "^1.1.0", - "fs-extra": "^8.1.0", - "globby": "10.0.1", - "is-plain-object": "^3.0.0" - }, - "dependencies": { - "globby": { - "version": "10.0.1", - "dev": true, - "requires": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", - "glob": "^7.1.3", - "ignore": "^5.1.1", - "merge2": "^1.2.3", - "slash": "^3.0.0" - } - }, - "ignore": { - "version": "5.1.8", - "dev": true - } - } - }, - "rollup-plugin-peer-deps-external": { - "version": "2.2.2", - "dev": true, - "requires": {} - }, - "rollup-plugin-postcss": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/rollup-plugin-postcss/-/rollup-plugin-postcss-4.0.2.tgz", - "integrity": "sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "concat-with-sourcemaps": "^1.1.0", - "cssnano": "^5.0.1", - "import-cwd": "^3.0.0", - "p-queue": "^6.6.2", - "pify": "^5.0.0", - "postcss-load-config": "^3.0.0", - "postcss-modules": "^4.0.0", - "promise.series": "^0.2.0", - "resolve": "^1.19.0", - "rollup-pluginutils": "^2.8.2", - "safe-identifier": "^0.4.2", - "style-inject": "^0.3.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.2.1", - "dev": true, - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.0", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "dev": true - }, - "import-cwd": { - "version": "3.0.0", - "dev": true, - "requires": { - "import-from": "^3.0.0" - } - }, - "import-from": { - "version": "3.0.0", - "dev": true, - "requires": { - "resolve-from": "^5.0.0" - } - }, - "pify": { - "version": "5.0.0", - "dev": true - }, - "supports-color": { - "version": "7.1.0", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "rollup-plugin-typescript2": { - "version": "0.27.1", - "dev": true, - "requires": { - "@rollup/pluginutils": "^3.0.8", - "find-cache-dir": "^3.3.1", - "fs-extra": "8.1.0", - "resolve": "1.15.1", - "tslib": "1.11.2" - }, - "dependencies": { - "resolve": { - "version": "1.15.1", - "dev": true, - "requires": { - "path-parse": "^1.0.6" - } - }, - "tslib": { - "version": "1.11.2", - "dev": true - } - } - }, - "rollup-plugin-version-injector": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/rollup-plugin-version-injector/-/rollup-plugin-version-injector-1.3.3.tgz", - "integrity": "sha512-+Rrf0xIFHkwFGuMfphVlAOtd9FlhHFh3vrDwamJ6+YR3IxebRHGVT879qwWzZ1CpWMCLlngb2MmHW5wC5EJqvg==", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "dateformat": "^4.2.1", - "lodash": "^4.17.20" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "rollup-pluginutils": { - "version": "2.8.2", - "dev": true, - "requires": { - "estree-walker": "^0.6.1" - }, - "dependencies": { - "estree-walker": { - "version": "0.6.1", - "dev": true - } - } - }, - "rsvp": { - "version": "4.8.5", - "dev": true - }, - "run-parallel": { - "version": "1.1.9", - "dev": true - }, - "safe-buffer": { - "version": "5.1.2", - "dev": true - }, - "safe-identifier": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/safe-identifier/-/safe-identifier-0.4.2.tgz", - "integrity": "sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==", - "dev": true - }, - "safe-regex": { - "version": "1.1.0", - "dev": true, - "requires": { - "ret": "~0.1.10" - } - }, - "safer-buffer": { - "version": "2.1.2", - "dev": true - }, - "sane": { - "version": "4.1.0", - "dev": true, - "requires": { - "@cnakazawa/watch": "^1.0.3", - "anymatch": "^2.0.0", - "capture-exit": "^2.0.0", - "exec-sh": "^0.3.2", - "execa": "^1.0.0", - "fb-watchman": "^2.0.0", - "micromatch": "^3.1.4", - "minimist": "^1.1.1", - "walker": "~1.0.5" - }, - "dependencies": { - "anymatch": { - "version": "2.0.0", - "dev": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "micromatch": { - "version": "3.1.10", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "normalize-path": { - "version": "2.1.1", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - } - } - }, - "sass": { - "version": "1.57.1", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.57.1.tgz", - "integrity": "sha512-O2+LwLS79op7GI0xZ8fqzF7X2m/m8WFfI02dHOdsK5R2ECeS5F62zrwg/relM1rjSLy7Vd/DiMNIvPrQGsA0jw==", - "requires": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", - "source-map-js": ">=0.6.2 <2.0.0" - } - }, - "sass-graph": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-4.0.0.tgz", - "integrity": "sha512-WSO/MfXqKH7/TS8RdkCX3lVkPFQzCgbqdGsmSKq6tlPU+GpGEsa/5aW18JqItnqh+lPtcjifqdZ/VmiILkKckQ==", - "dev": true, - "requires": { - "glob": "^7.0.0", - "lodash": "^4.17.11", - "scss-tokenizer": "^0.3.0", - "yargs": "^17.2.1" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true - }, - "yargs": { - "version": "17.3.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.3.1.tgz", - "integrity": "sha512-WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA==", - "dev": true, - "requires": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.0.0" - } - }, - "yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-z9kApYUOCwoeZ78rfRYYWdiU/iNL6mwwYlkkZfJoyMR1xps+NEBX5X7XmRpxkZHhXJ6+Ey00IwKxBBSW9FIjyA==", - "dev": true - } - } - }, - "sax": { - "version": "1.2.4", - "dev": true - }, - "schema-utils": { - "version": "3.1.1", - "dev": true, - "peer": true, - "requires": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - } - }, - "scss-tokenizer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.3.0.tgz", - "integrity": "sha512-14Zl9GcbBvOT9057ZKjpz5yPOyUWG2ojd9D5io28wHRYsOrs7U95Q+KNL87+32p8rc+LvDpbu/i9ZYjM9Q+FsQ==", - "dev": true, - "requires": { - "js-base64": "^2.4.3", - "source-map": "^0.7.1" - }, - "dependencies": { - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", - "dev": true - } - } - }, - "semver": { - "version": "5.7.1", - "dev": true - }, - "serialize-javascript": { - "version": "6.0.0", - "dev": true, - "peer": true, - "requires": { - "randombytes": "^2.1.0" - } - }, - "set-blocking": { - "version": "2.0.0", - "dev": true - }, - "set-value": { - "version": "2.0.1", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-plain-object": { - "version": "2.0.4", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "isobject": { - "version": "3.0.1", - "dev": true - } - } - }, - "shallowequal": { - "version": "1.1.0", - "peer": true - }, - "shebang-command": { - "version": "1.2.0", - "dev": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "dev": true - }, - "shellwords": { - "version": "0.1.1", - "dev": true - }, - "side-channel": { - "version": "1.0.4", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - } - }, - "signal-exit": { - "version": "3.0.3", - "dev": true - }, - "sisteransi": { - "version": "1.0.5", - "dev": true - }, - "slash": { - "version": "3.0.0", - "dev": true - }, - "slice-ansi": { - "version": "4.0.0", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "astral-regex": { - "version": "2.0.0", - "dev": true - }, - "color-convert": { - "version": "2.0.1", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "dev": true - } - } - }, - "smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true - }, - "snapdragon": { - "version": "0.8.2", - "dev": true, - "requires": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "ms": { - "version": "2.0.0", - "dev": true - } - } - }, - "snapdragon-node": { - "version": "2.1.1", - "dev": true, - "requires": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "isobject": { - "version": "3.0.1", - "dev": true - } - } - }, - "snapdragon-util": { - "version": "3.0.1", - "dev": true, - "requires": { - "kind-of": "^3.2.0" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "socks": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.6.2.tgz", - "integrity": "sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA==", - "dev": true, - "requires": { - "ip": "^1.1.5", - "smart-buffer": "^4.2.0" - } - }, - "socks-proxy-agent": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.1.1.tgz", - "integrity": "sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==", - "dev": true, - "requires": { - "agent-base": "^6.0.2", - "debug": "^4.3.1", - "socks": "^2.6.1" - } - }, - "source-map": { - "version": "0.5.7" - }, - "source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" - }, - "source-map-resolve": { - "version": "0.5.3", - "dev": true, - "requires": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "source-map-support": { - "version": "0.5.21", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "dev": true - } - } - }, - "source-map-url": { - "version": "0.4.0", - "dev": true - }, - "sourcemap-codec": { - "version": "1.4.8", - "dev": true - }, - "spdx-correct": { - "version": "3.1.1", - "dev": true, - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-exceptions": { - "version": "2.3.0", - "dev": true - }, - "spdx-expression-parse": { - "version": "3.0.1", - "dev": true, - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-license-ids": { - "version": "3.0.5", - "dev": true - }, - "split-string": { - "version": "3.1.0", - "dev": true, - "requires": { - "extend-shallow": "^3.0.0" - } - }, - "sprintf-js": { - "version": "1.0.3", - "dev": true - }, - "sshpk": { - "version": "1.16.1", - "dev": true, - "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - } - }, - "ssri": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", - "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", - "dev": true, - "requires": { - "minipass": "^3.1.1" - } - }, - "stable": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", - "dev": true - }, - "stack-utils": { - "version": "1.0.2", - "dev": true - }, - "static-extend": { - "version": "0.1.2", - "dev": true, - "requires": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "stdout-stream": { - "version": "1.4.1", - "dev": true, - "requires": { - "readable-stream": "^2.0.1" - } - }, - "stealthy-require": { - "version": "1.1.1", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "string-hash": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", - "integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==", - "dev": true - }, - "string-length": { - "version": "2.0.0", - "dev": true, - "requires": { - "astral-regex": "^1.0.0", - "strip-ansi": "^4.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "dev": true - }, - "strip-ansi": { - "version": "4.0.0", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } - } - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - } - } - }, - "string.prototype.matchall": { - "version": "4.0.4", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2", - "has-symbols": "^1.0.1", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.3.1", - "side-channel": "^1.0.4" - } - }, - "string.prototype.trimend": { - "version": "1.0.4", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "string.prototype.trimstart": { - "version": "1.0.4", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "strip-bom": { - "version": "3.0.0", - "dev": true - }, - "strip-eof": { - "version": "1.0.0", - "dev": true - }, - "strip-indent": { - "version": "3.0.0", - "dev": true, - "requires": { - "min-indent": "^1.0.0" - } - }, - "strip-json-comments": { - "version": "3.1.1", - "dev": true - }, - "style-inject": { - "version": "0.3.0", - "dev": true - }, - "styled-components": { - "version": "5.2.1", - "peer": true, - "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/traverse": "^7.4.5", - "@emotion/is-prop-valid": "^0.8.8", - "@emotion/stylis": "^0.8.4", - "@emotion/unitless": "^0.7.4", - "babel-plugin-styled-components": ">= 1", - "css-to-react-native": "^3.0.0", - "hoist-non-react-statics": "^3.0.0", - "shallowequal": "^1.1.0", - "supports-color": "^5.5.0" - } - }, - "stylehacks": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", - "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", - "dev": true, - "requires": { - "browserslist": "^4.21.4", - "postcss-selector-parser": "^6.0.4" - } - }, - "supports-color": { - "version": "5.5.0", - "requires": { - "has-flag": "^3.0.0" - } - }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true - }, - "svgo": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", - "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", - "dev": true, - "requires": { - "@trysound/sax": "0.2.0", - "commander": "^7.2.0", - "css-select": "^4.1.3", - "css-tree": "^1.1.3", - "csso": "^4.2.0", - "picocolors": "^1.0.0", - "stable": "^0.1.8" - }, - "dependencies": { - "commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true - } - } - }, - "symbol-tree": { - "version": "3.2.4", - "dev": true - }, - "table": { - "version": "6.0.9", - "dev": true, - "requires": { - "ajv": "^8.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "lodash.clonedeep": "^4.5.0", - "lodash.flatten": "^4.4.0", - "lodash.truncate": "^4.4.2", - "slice-ansi": "^4.0.0", - "string-width": "^4.2.0" - }, - "dependencies": { - "ajv": { - "version": "8.0.1", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "dev": true - } - } - }, - "tapable": { - "version": "2.2.1", - "dev": true, - "peer": true - }, - "tar": { - "version": "6.1.11", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", - "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", - "dev": true, - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^3.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "dependencies": { - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - } - } - }, - "terser-webpack-plugin": { - "version": "5.3.0", - "dev": true, - "peer": true, - "requires": { - "jest-worker": "^27.4.1", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "source-map": "^0.6.1", - "terser": "^5.7.2" - }, - "dependencies": { - "acorn": { - "version": "8.6.0", - "dev": true, - "optional": true, - "peer": true - }, - "source-map": { - "version": "0.6.1", - "dev": true, - "peer": true - }, - "terser": { - "version": "5.10.0", - "dev": true, - "peer": true, - "requires": { - "commander": "^2.20.0", - "source-map": "~0.7.2", - "source-map-support": "~0.5.20" - }, - "dependencies": { - "source-map": { - "version": "0.7.3", - "dev": true, - "peer": true - } - } - } - } - }, - "test-exclude": { - "version": "5.2.3", - "dev": true, - "requires": { - "glob": "^7.1.3", - "minimatch": "^3.0.4", - "read-pkg-up": "^4.0.0", - "require-main-filename": "^2.0.0" - } - }, - "text-table": { - "version": "0.2.0", - "dev": true - }, - "throat": { - "version": "4.1.0", - "dev": true - }, - "tmpl": { - "version": "1.0.5", - "dev": true - }, - "to-fast-properties": { - "version": "2.0.0" - }, - "to-object-path": { - "version": "0.3.0", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "to-regex": { - "version": "3.0.2", - "dev": true, - "requires": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - } - }, - "to-regex-range": { - "version": "2.1.1", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - }, - "tough-cookie": { - "version": "2.5.0", - "dev": true, - "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - } - }, - "tr46": { - "version": "1.0.1", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "trim-newlines": { - "version": "3.0.1", - "dev": true - }, - "true-case-path": { - "version": "1.0.3", - "dev": true, - "requires": { - "glob": "^7.1.2" - } - }, - "ts-jest": { - "version": "24.3.0", - "dev": true, - "requires": { - "bs-logger": "0.x", - "buffer-from": "1.x", - "fast-json-stable-stringify": "2.x", - "json5": "2.x", - "lodash.memoize": "4.x", - "make-error": "1.x", - "mkdirp": "0.x", - "resolve": "1.x", - "semver": "^5.5", - "yargs-parser": "10.x" - }, - "dependencies": { - "camelcase": { - "version": "4.1.0", - "dev": true - }, - "yargs-parser": { - "version": "10.1.0", - "dev": true, - "requires": { - "camelcase": "^4.1.0" - } - } - } + "name": "@rcpch/digital-growth-charts-react-component-library", + "version": "7.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@rcpch/digital-growth-charts-react-component-library", + "version": "7.0.0", + "license": "AGPL-3.0-or-later", + "dependencies": { + "sass": "1.70.0", + "styled-components": "6.1.8", + "victory": "36.9.1" + }, + "devDependencies": { + "@babel/preset-react": "7.23.3", + "@babel/preset-typescript": "7.23.3", + "@rollup/plugin-commonjs": "25.0.7", + "@rollup/plugin-image": "3.0.3", + "@rollup/plugin-json": "6.1.0", + "@rollup/plugin-node-resolve": "15.2.3", + "@rollup/plugin-terser": "0.4.4", + "@rollup/plugin-typescript": "11.1.6", + "@storybook/addon-essentials": "^8.0.4", + "@storybook/addon-interactions": "^8.0.4", + "@storybook/addon-links": "^8.0.4", + "@storybook/addon-mdx-gfm": "^8.0.4", + "@storybook/addon-onboarding": "^8.0.4", + "@storybook/addon-styling-webpack": "^1.0.0", + "@storybook/addon-webpack5-compiler-babel": "^3.0.3", + "@storybook/blocks": "^8.0.4", + "@storybook/react": "^8.0.4", + "@storybook/react-webpack5": "^8.0.4", + "@storybook/test": "^8.0.4", + "@testing-library/jest-dom": "6.4.2", + "@testing-library/react": "14.2.1", + "@testing-library/user-event": "14.5.2", + "@types/jest": "29.5.12", + "@types/react": "18.2.55", + "@types/styled-components": "5.1.34", + "eslint-plugin-storybook": "^0.6.15", + "jest": "29.7.0", + "jest-environment-jsdom": "29.7.0", + "rollup": "4.11.0", + "rollup-plugin-copy": "3.5.0", + "rollup-plugin-dts": "6.1.0", + "rollup-plugin-peer-deps-external": "2.2.4", + "rollup-plugin-postcss": "4.0.2", + "rollup-plugin-version-injector": "1.3.3", + "sass-loader": "14.1.1", + "storybook": "^8.0.4", + "ts-jest": "29.1.2", + "ts-node": "10.9.2", + "tslib": "2.6.2", + "typescript": "5.3.3" + }, + "peerDependencies": { + "react": "18.2.0", + "react-dom": "18.2.0" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@adobe/css-tools": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.3.3.tgz", + "integrity": "sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==", + "dev": true + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@aw-web-design/x-default-browser": { + "version": "1.4.126", + "resolved": "https://registry.npmjs.org/@aw-web-design/x-default-browser/-/x-default-browser-1.4.126.tgz", + "integrity": "sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==", + "dev": true, + "dependencies": { + "default-browser-id": "3.0.0" + }, + "bin": { + "x-default-browser": "bin/x-default-browser.js" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.1.tgz", + "integrity": "sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.9.tgz", + "integrity": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.23.9", + "@babel/parser": "^7.23.9", + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", + "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.23.6", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", + "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.1.tgz", + "integrity": "sha512-1yJa9dX9g//V6fDebXoEfEsxkZHk3Hcbm+zLhyu6qVgYFLvmTALTeV+jNU9e5RnYtioBrGEOdoI2joMSNQ/+aA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-member-expression-to-functions": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.24.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", + "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.1.tgz", + "integrity": "sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", + "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz", + "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz", + "integrity": "sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", + "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-wrap-function": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz", + "integrity": "sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-member-expression-to-functions": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", + "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", + "dev": true, + "dependencies": { + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.15", + "@babel/types": "^7.22.19" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.9.tgz", + "integrity": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.1.tgz", + "integrity": "sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.1.tgz", + "integrity": "sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.1.tgz", + "integrity": "sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.24.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.1.tgz", + "integrity": "sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.1.tgz", + "integrity": "sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.1.tgz", + "integrity": "sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz", + "integrity": "sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz", + "integrity": "sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz", + "integrity": "sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-remap-async-to-generator": "^7.22.20", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz", + "integrity": "sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-remap-async-to-generator": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.1.tgz", + "integrity": "sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.1.tgz", + "integrity": "sha512-h71T2QQvDgM2SmT29UYU6ozjMlAt7s7CSs5Hvy8f8cf/GM/Z4a2zMfN+fjVGaieeCrXR3EdQl6C4gQG+OgmbKw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.1.tgz", + "integrity": "sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.1.tgz", + "integrity": "sha512-FUHlKCn6J3ERiu8Dv+4eoz7w8+kFLSyeVG4vDAikwADGjUCoHw/JHokyGtr8OR4UjpwPVivyF+h8Q5iv/JmrtA==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.1.tgz", + "integrity": "sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-replace-supers": "^7.24.1", + "@babel/helper-split-export-declaration": "^7.22.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.1.tgz", + "integrity": "sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/template": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.1.tgz", + "integrity": "sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.1.tgz", + "integrity": "sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.1.tgz", + "integrity": "sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.1.tgz", + "integrity": "sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.1.tgz", + "integrity": "sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==", + "dev": true, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.1.tgz", + "integrity": "sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.1.tgz", + "integrity": "sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-flow": "^7.24.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.1.tgz", + "integrity": "sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.1.tgz", + "integrity": "sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.1.tgz", + "integrity": "sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.1.tgz", + "integrity": "sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.1.tgz", + "integrity": "sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.1.tgz", + "integrity": "sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.1.tgz", + "integrity": "sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz", + "integrity": "sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-simple-access": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.1.tgz", + "integrity": "sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==", + "dev": true, + "dependencies": { + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.1.tgz", + "integrity": "sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.1.tgz", + "integrity": "sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.1.tgz", + "integrity": "sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.1.tgz", + "integrity": "sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.1.tgz", + "integrity": "sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.24.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.1.tgz", + "integrity": "sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-replace-supers": "^7.24.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.1.tgz", + "integrity": "sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.1.tgz", + "integrity": "sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.1.tgz", + "integrity": "sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.1.tgz", + "integrity": "sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.1.tgz", + "integrity": "sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.1.tgz", + "integrity": "sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz", + "integrity": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz", + "integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/types": "^7.23.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", + "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", + "dev": true, + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz", + "integrity": "sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.1.tgz", + "integrity": "sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.1.tgz", + "integrity": "sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz", + "integrity": "sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.1.tgz", + "integrity": "sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.1.tgz", + "integrity": "sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz", + "integrity": "sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.1.tgz", + "integrity": "sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz", + "integrity": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.23.6", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-typescript": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.1.tgz", + "integrity": "sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.1.tgz", + "integrity": "sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.1.tgz", + "integrity": "sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.1.tgz", + "integrity": "sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.3.tgz", + "integrity": "sha512-fSk430k5c2ff8536JcPvPWK4tZDwehWLGlBp0wrsBUjZVdeQV6lePbwKWZaZfK2vnh/1kQX1PzAJWsnBmVgGJA==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.24.1", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-validator-option": "^7.23.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.1", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.1", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.24.1", + "@babel/plugin-syntax-import-attributes": "^7.24.1", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.24.1", + "@babel/plugin-transform-async-generator-functions": "^7.24.3", + "@babel/plugin-transform-async-to-generator": "^7.24.1", + "@babel/plugin-transform-block-scoped-functions": "^7.24.1", + "@babel/plugin-transform-block-scoping": "^7.24.1", + "@babel/plugin-transform-class-properties": "^7.24.1", + "@babel/plugin-transform-class-static-block": "^7.24.1", + "@babel/plugin-transform-classes": "^7.24.1", + "@babel/plugin-transform-computed-properties": "^7.24.1", + "@babel/plugin-transform-destructuring": "^7.24.1", + "@babel/plugin-transform-dotall-regex": "^7.24.1", + "@babel/plugin-transform-duplicate-keys": "^7.24.1", + "@babel/plugin-transform-dynamic-import": "^7.24.1", + "@babel/plugin-transform-exponentiation-operator": "^7.24.1", + "@babel/plugin-transform-export-namespace-from": "^7.24.1", + "@babel/plugin-transform-for-of": "^7.24.1", + "@babel/plugin-transform-function-name": "^7.24.1", + "@babel/plugin-transform-json-strings": "^7.24.1", + "@babel/plugin-transform-literals": "^7.24.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.1", + "@babel/plugin-transform-member-expression-literals": "^7.24.1", + "@babel/plugin-transform-modules-amd": "^7.24.1", + "@babel/plugin-transform-modules-commonjs": "^7.24.1", + "@babel/plugin-transform-modules-systemjs": "^7.24.1", + "@babel/plugin-transform-modules-umd": "^7.24.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.24.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1", + "@babel/plugin-transform-numeric-separator": "^7.24.1", + "@babel/plugin-transform-object-rest-spread": "^7.24.1", + "@babel/plugin-transform-object-super": "^7.24.1", + "@babel/plugin-transform-optional-catch-binding": "^7.24.1", + "@babel/plugin-transform-optional-chaining": "^7.24.1", + "@babel/plugin-transform-parameters": "^7.24.1", + "@babel/plugin-transform-private-methods": "^7.24.1", + "@babel/plugin-transform-private-property-in-object": "^7.24.1", + "@babel/plugin-transform-property-literals": "^7.24.1", + "@babel/plugin-transform-regenerator": "^7.24.1", + "@babel/plugin-transform-reserved-words": "^7.24.1", + "@babel/plugin-transform-shorthand-properties": "^7.24.1", + "@babel/plugin-transform-spread": "^7.24.1", + "@babel/plugin-transform-sticky-regex": "^7.24.1", + "@babel/plugin-transform-template-literals": "^7.24.1", + "@babel/plugin-transform-typeof-symbol": "^7.24.1", + "@babel/plugin-transform-unicode-escapes": "^7.24.1", + "@babel/plugin-transform-unicode-property-regex": "^7.24.1", + "@babel/plugin-transform-unicode-regex": "^7.24.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.1", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.4", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.31.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-flow": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.24.1.tgz", + "integrity": "sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-validator-option": "^7.23.5", + "@babel/plugin-transform-flow-strip-types": "^7.24.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.23.3.tgz", + "integrity": "sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-transform-react-display-name": "^7.23.3", + "@babel/plugin-transform-react-jsx": "^7.22.15", + "@babel/plugin-transform-react-jsx-development": "^7.22.5", + "@babel/plugin-transform-react-pure-annotations": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz", + "integrity": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/plugin-transform-modules-commonjs": "^7.23.3", + "@babel/plugin-transform-typescript": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/register": { + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.23.7.tgz", + "integrity": "sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==", + "dev": true, + "dependencies": { + "clone-deep": "^4.0.1", + "find-cache-dir": "^2.0.0", + "make-dir": "^2.1.0", + "pirates": "^4.0.6", + "source-map-support": "^0.5.16" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/register/node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/register/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/register/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@babel/register/node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "dev": true + }, + "node_modules/@babel/runtime": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.10.tgz", + "integrity": "sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", + "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.23.5", + "@babel/parser": "^7.24.0", + "@babel/types": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz", + "integrity": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.9", + "@babel/types": "^7.23.9", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz", + "integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@base2/pretty-print-object": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@base2/pretty-print-object/-/pretty-print-object-1.0.1.tgz", + "integrity": "sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==", + "dev": true + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@colors/colors": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", + "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@emotion/is-prop-valid": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz", + "integrity": "sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==", + "dependencies": { + "@emotion/memoize": "^0.8.1" + } + }, + "node_modules/@emotion/memoize": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", + "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" + }, + "node_modules/@emotion/unitless": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.0.tgz", + "integrity": "sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==" + }, + "node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", + "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", + "dev": true, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", + "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", + "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", + "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", + "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", + "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", + "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", + "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", + "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", + "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", + "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", + "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", + "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", + "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", + "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", + "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", + "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", + "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", + "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", + "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", + "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", + "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", + "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", + "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "peer": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "peer": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "peer": true + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "peer": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "peer": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", + "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", + "dev": true, + "peer": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@fal-works/esbuild-plugin-global-externals": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@fal-works/esbuild-plugin-global-externals/-/esbuild-plugin-global-externals-2.1.2.tgz", + "integrity": "sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==", + "dev": true + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "dev": true, + "peer": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", + "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", + "dev": true, + "peer": true + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", + "dev": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/environment/node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", + "dev": true, + "dependencies": { + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers/node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/types": "^29.6.3", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals/node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^6.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", + "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.18", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "dev": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz", + "integrity": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@mdx-js/react": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-3.0.1.tgz", + "integrity": "sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==", + "dev": true, + "dependencies": { + "@types/mdx": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "@types/react": ">=16", + "react": ">=16" + } + }, + "node_modules/@ndelangen/get-tarball": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@ndelangen/get-tarball/-/get-tarball-3.0.9.tgz", + "integrity": "sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==", + "dev": true, + "dependencies": { + "gunzip-maybe": "^1.4.2", + "pump": "^3.0.0", + "tar-fs": "^2.1.1" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@radix-ui/react-compose-refs": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz", + "integrity": "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-slot": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz", + "integrity": "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-commonjs": { + "version": "25.0.7", + "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.7.tgz", + "integrity": "sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.0.1", + "commondir": "^1.0.1", + "estree-walker": "^2.0.2", + "glob": "^8.0.3", + "is-reference": "1.2.1", + "magic-string": "^0.30.3" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^2.68.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-image": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@rollup/plugin-image/-/plugin-image-3.0.3.tgz", + "integrity": "sha512-qXWQwsXpvD4trSb8PeFPFajp8JLpRtqqOeNYRUKnEQNHm7e5UP7fuSRcbjQAJ7wDZBbnJvSdY5ujNBQd9B1iFg==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.0.1", + "mini-svg-data-uri": "^1.4.4" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-json": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-6.1.0.tgz", + "integrity": "sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.1.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "15.2.3", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.3.tgz", + "integrity": "sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.0.1", + "@types/resolve": "1.20.2", + "deepmerge": "^4.2.2", + "is-builtin-module": "^3.2.1", + "is-module": "^1.0.0", + "resolve": "^1.22.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^2.78.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-terser": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz", + "integrity": "sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==", + "dev": true, + "dependencies": { + "serialize-javascript": "^6.0.1", + "smob": "^1.0.0", + "terser": "^5.17.4" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-typescript": { + "version": "11.1.6", + "resolved": "https://registry.npmjs.org/@rollup/plugin-typescript/-/plugin-typescript-11.1.6.tgz", + "integrity": "sha512-R92yOmIACgYdJ7dJ97p4K69I8gg6IEHt8M7dUBxN3W6nrO8uUxX5ixl0yU/N3aZTi8WhPuICvOHXQvF6FaykAA==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.1.0", + "resolve": "^1.22.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^2.14.0||^3.0.0||^4.0.0", + "tslib": "*", + "typescript": ">=3.7.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true }, "tslib": { - "version": "2.1.0" - }, - "tsutils": { - "version": "3.21.0", - "dev": true, - "requires": { - "tslib": "^1.8.1" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "dev": true - } - } + "optional": true + } + } + }, + "node_modules/@rollup/pluginutils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.0.tgz", + "integrity": "sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.11.0.tgz", + "integrity": "sha512-BV+u2QSfK3i1o6FucqJh5IK9cjAU6icjFFhvknzFgu472jzl0bBojfDAkJLBEsHFMo+YZg6rthBvBBt8z12IBQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.11.0.tgz", + "integrity": "sha512-0ij3iw7sT5jbcdXofWO2NqDNjSVVsf6itcAkV2I6Xsq4+6wjW1A8rViVB67TfBEan7PV2kbLzT8rhOVWLI2YXw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.11.0.tgz", + "integrity": "sha512-yPLs6RbbBMupArf6qv1UDk6dzZvlH66z6NLYEwqTU0VHtss1wkI4UYeeMS7TVj5QRVvaNAWYKP0TD/MOeZ76Zg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.11.0.tgz", + "integrity": "sha512-OvqIgwaGAwnASzXaZEeoJY3RltOFg+WUbdkdfoluh2iqatd090UeOG3A/h0wNZmE93dDew9tAtXgm3/+U/B6bw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.11.0.tgz", + "integrity": "sha512-X17s4hZK3QbRmdAuLd2EE+qwwxL8JxyVupEqAkxKPa/IgX49ZO+vf0ka69gIKsaYeo6c1CuwY3k8trfDtZ9dFg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.11.0.tgz", + "integrity": "sha512-673Lu9EJwxVB9NfYeA4AdNu0FOHz7g9t6N1DmT7bZPn1u6bTF+oZjj+fuxUcrfxWXE0r2jxl5QYMa9cUOj9NFg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.11.0.tgz", + "integrity": "sha512-yFW2msTAQNpPJaMmh2NpRalr1KXI7ZUjlN6dY/FhWlOclMrZezm5GIhy3cP4Ts2rIAC+IPLAjNibjp1BsxCVGg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.11.0.tgz", + "integrity": "sha512-kKT9XIuhbvYgiA3cPAGntvrBgzhWkGpBMzuk1V12Xuoqg7CI41chye4HU0vLJnGf9MiZzfNh4I7StPeOzOWJfA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.11.0.tgz", + "integrity": "sha512-6q4ESWlyTO+erp1PSCmASac+ixaDv11dBk1fqyIuvIUc/CmRAX2Zk+2qK1FGo5q7kyDcjHCFVwgGFCGIZGVwCA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.11.0.tgz", + "integrity": "sha512-vIAQUmXeMLmaDN78HSE4Kh6xqof2e3TJUKr+LPqXWU4NYNON0MDN9h2+t4KHrPAQNmU3w1GxBQ/n01PaWFwa5w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.11.0.tgz", + "integrity": "sha512-LVXo9dDTGPr0nezMdqa1hK4JeoMZ02nstUxGYY/sMIDtTYlli1ZxTXBYAz3vzuuvKO4X6NBETciIh7N9+abT1g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.11.0.tgz", + "integrity": "sha512-xZVt6K70Gr3I7nUhug2dN6VRR1ibot3rXqXS3wo+8JP64t7djc3lBFyqO4GiVrhNaAIhUCJtwQ/20dr0h0thmQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.11.0.tgz", + "integrity": "sha512-f3I7h9oTg79UitEco9/2bzwdciYkWr8pITs3meSDSlr1TdvQ7IxkQaaYN2YqZXX5uZhiYL+VuYDmHwNzhx+HOg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@storybook/addon-actions": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-8.0.4.tgz", + "integrity": "sha512-EyCWo+8T11/TJGYNL/AXtW4yaB+q1v2E9mixbumryCLxpTl2NtaeGZ4e0dlwfIMuw/7RWgHk2uIypcIPR/UANQ==", + "dev": true, + "dependencies": { + "@storybook/core-events": "8.0.4", + "@storybook/global": "^5.0.0", + "@types/uuid": "^9.0.1", + "dequal": "^2.0.2", + "polished": "^4.2.2", + "uuid": "^9.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/addon-backgrounds": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-8.0.4.tgz", + "integrity": "sha512-fef0KD2GhJx2zpicOf8iL7k2LiIsNzEbGaQpIIjoy4DMqM1hIfNCt3DGTLH7LN5O8G+NVCLS1xmQg7RLvIVSCA==", + "dev": true, + "dependencies": { + "@storybook/global": "^5.0.0", + "memoizerific": "^1.11.3", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/addon-controls": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-8.0.4.tgz", + "integrity": "sha512-K5EYBTsUOTJlvIdA7p6Xj31wnV+RbZAkk56UKQvA7nJD7oDuLOq3E9u46F/uZD1vxddd9zFhf2iONfMe3KTTwQ==", + "dev": true, + "dependencies": { + "@storybook/blocks": "8.0.4", + "lodash": "^4.17.21", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/addon-docs": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-8.0.4.tgz", + "integrity": "sha512-m0Y7qGAMnNPLEOEgzW/SBm8GX0xabJBaRN+aYijO6UKTln7F6oXXVve+xPC0Y4s6Gc9HZFdJY8WXZr1YSGEUVA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@mdx-js/react": "^3.0.0", + "@storybook/blocks": "8.0.4", + "@storybook/client-logger": "8.0.4", + "@storybook/components": "8.0.4", + "@storybook/csf-plugin": "8.0.4", + "@storybook/csf-tools": "8.0.4", + "@storybook/global": "^5.0.0", + "@storybook/node-logger": "8.0.4", + "@storybook/preview-api": "8.0.4", + "@storybook/react-dom-shim": "8.0.4", + "@storybook/theming": "8.0.4", + "@storybook/types": "8.0.4", + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "fs-extra": "^11.1.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0", + "rehype-external-links": "^3.0.0", + "rehype-slug": "^6.0.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/addon-essentials": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-8.0.4.tgz", + "integrity": "sha512-mUIqhAkSz6Qv7nRqAAyCqMLiXBWVsY/8qN7HEIoaMQgdFq38KW3rYwNdzd2JLeXNWP1bBXwfvfcFe7/eqhYJFA==", + "dev": true, + "dependencies": { + "@storybook/addon-actions": "8.0.4", + "@storybook/addon-backgrounds": "8.0.4", + "@storybook/addon-controls": "8.0.4", + "@storybook/addon-docs": "8.0.4", + "@storybook/addon-highlight": "8.0.4", + "@storybook/addon-measure": "8.0.4", + "@storybook/addon-outline": "8.0.4", + "@storybook/addon-toolbars": "8.0.4", + "@storybook/addon-viewport": "8.0.4", + "@storybook/core-common": "8.0.4", + "@storybook/manager-api": "8.0.4", + "@storybook/node-logger": "8.0.4", + "@storybook/preview-api": "8.0.4", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/addon-highlight": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/addon-highlight/-/addon-highlight-8.0.4.tgz", + "integrity": "sha512-tnEiVaJlXL07v8JBox+QtRPVruoy0YovOTAOWY7fKDiKzF1I9wLaJjQF3wOsvwspHTHu00OZw2gsazgXiH4wLQ==", + "dev": true, + "dependencies": { + "@storybook/global": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/addon-interactions": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/addon-interactions/-/addon-interactions-8.0.4.tgz", + "integrity": "sha512-wTEOnVUbF1lNJxxocr5IKmpgnmwyO8YsQf6Baw3tTWCHAa/MaWWQYq1OA6CfFfmVGGRjv/w2GTuf1Vyq99O7mg==", + "dev": true, + "dependencies": { + "@storybook/global": "^5.0.0", + "@storybook/instrumenter": "8.0.4", + "@storybook/test": "8.0.4", + "@storybook/types": "8.0.4", + "polished": "^4.2.2", + "ts-dedent": "^2.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/addon-links": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-8.0.4.tgz", + "integrity": "sha512-SzE+JPZ4mxjprZqbLHf8Hx7UA2fXfMajFjeY9c3JREKQrDoOF1e4r28nAoVsZYF+frWxQB51U4+hOqjlx06wEA==", + "dev": true, + "dependencies": { + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + } + } + }, + "node_modules/@storybook/addon-mdx-gfm": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/addon-mdx-gfm/-/addon-mdx-gfm-8.0.4.tgz", + "integrity": "sha512-YVRZ3q8RUzddAoRAsrTP5ZRgez+MhrW1izsuBrp+cbSEt/4PfVZjj9LeztzahBxiHlGjs5egP7TonMxqv6pCmA==", + "dev": true, + "dependencies": { + "@storybook/node-logger": "8.0.4", + "remark-gfm": "^4.0.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/addon-measure": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-8.0.4.tgz", + "integrity": "sha512-GZYKo2ss5Br+dfHinoK3bgTaS90z3oKKDkhv6lrFfjjU1mDYzzMJpxajQhd3apCYxHLr3MbUqMQibWu2T/q2DQ==", + "dev": true, + "dependencies": { + "@storybook/global": "^5.0.0", + "tiny-invariant": "^1.3.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/addon-onboarding": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/addon-onboarding/-/addon-onboarding-8.0.4.tgz", + "integrity": "sha512-Av5Nbjzr98acDwcy+MOJTw9S/zq7eLHIK1rYIciARN1q02Nhty6a17Og6/ZsqqkwrhM/0RE8PwxVo4EG9LpVSw==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/addon-outline": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-8.0.4.tgz", + "integrity": "sha512-6J9ezNDUxdA3rMCh8sUEQbUwAgkrr+M9QdiFr1t+gKrk5FKP5gwubw1sr3sF1IRB9+s/AjljcOtJAVulSfq05w==", + "dev": true, + "dependencies": { + "@storybook/global": "^5.0.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/addon-styling-webpack": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@storybook/addon-styling-webpack/-/addon-styling-webpack-1.0.0.tgz", + "integrity": "sha512-jo1kzn7pi+NA+LZxrWoRvW6w7dXIKY/BjTG80XX2uU92lIKT+X1k/9vYk/0KPVK3Bsf4tO6ToAuqIRyOk7MHtg==", + "dev": true, + "dependencies": { + "@storybook/node-logger": "^8.0.0-alpha.10" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/@storybook/addon-toolbars": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-8.0.4.tgz", + "integrity": "sha512-yodRXDYog/90cNEy84kg6s7L+nxQ+egBjHBTsav1L4cJmQI/uAX8yISHHiX4I5ppNc120Jz3UdHdRxXRlo345g==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/addon-viewport": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-8.0.4.tgz", + "integrity": "sha512-E5IKOsxKcOtlOYc0cWgzVJohQB+dVBWwaJcg5FlslToknfVB9M0kfQ/SQcp3KB0C9/cOmJK1Jm388InW+EjrBQ==", + "dev": true, + "dependencies": { + "memoizerific": "^1.11.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/addon-webpack5-compiler-babel": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@storybook/addon-webpack5-compiler-babel/-/addon-webpack5-compiler-babel-3.0.3.tgz", + "integrity": "sha512-rVQTTw+oxJltbVKaejIWSHwVKOBJs3au21f/pYXhV0aiNgNhxEa3vr79t/j0j8ox8uJtzM8XYOb7FlkvGfHlwQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.23.7", + "babel-loader": "^9.1.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@storybook/blocks": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-8.0.4.tgz", + "integrity": "sha512-9dRXk9zLJVPOmEWsSXm10XUmIfvS/tVgeBgFXNbusFQZXPpexIPNdRgB004pDGg9RvlY78ykpnd3yP143zaXMg==", + "dev": true, + "dependencies": { + "@storybook/channels": "8.0.4", + "@storybook/client-logger": "8.0.4", + "@storybook/components": "8.0.4", + "@storybook/core-events": "8.0.4", + "@storybook/csf": "^0.1.2", + "@storybook/docs-tools": "8.0.4", + "@storybook/global": "^5.0.0", + "@storybook/icons": "^1.2.5", + "@storybook/manager-api": "8.0.4", + "@storybook/preview-api": "8.0.4", + "@storybook/theming": "8.0.4", + "@storybook/types": "8.0.4", + "@types/lodash": "^4.14.167", + "color-convert": "^2.0.1", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "markdown-to-jsx": "7.3.2", + "memoizerific": "^1.11.3", + "polished": "^4.2.2", + "react-colorful": "^5.1.2", + "telejson": "^7.2.0", + "tocbot": "^4.20.1", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true }, - "tunnel-agent": { - "version": "0.6.0", - "dev": true, - "requires": { - "safe-buffer": "^5.0.1" - } + "react-dom": { + "optional": true + } + } + }, + "node_modules/@storybook/builder-manager": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-8.0.4.tgz", + "integrity": "sha512-BafYVxq77uuTmXdjYo5by42OyOrb6qcpWYKva3ntWK2ZhTaLJlwwqAOdahT1DVzi4VeUP6465YvsTCzIE8fuIw==", + "dev": true, + "dependencies": { + "@fal-works/esbuild-plugin-global-externals": "^2.1.2", + "@storybook/core-common": "8.0.4", + "@storybook/manager": "8.0.4", + "@storybook/node-logger": "8.0.4", + "@types/ejs": "^3.1.1", + "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10", + "browser-assert": "^1.2.1", + "ejs": "^3.1.8", + "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0", + "esbuild-plugin-alias": "^0.2.1", + "express": "^4.17.3", + "fs-extra": "^11.1.0", + "process": "^0.11.10", + "util": "^0.12.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/builder-webpack5": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/builder-webpack5/-/builder-webpack5-8.0.4.tgz", + "integrity": "sha512-FKXIGfDjZJ7KCq6w8e3NEp2+KATsh4U24UV/K8cFjCrRIU++jDpO274D9ozdpzEmhvHOfxK/QlgalqS4G599Aw==", + "dev": true, + "dependencies": { + "@storybook/channels": "8.0.4", + "@storybook/client-logger": "8.0.4", + "@storybook/core-common": "8.0.4", + "@storybook/core-events": "8.0.4", + "@storybook/core-webpack": "8.0.4", + "@storybook/node-logger": "8.0.4", + "@storybook/preview": "8.0.4", + "@storybook/preview-api": "8.0.4", + "@types/node": "^18.0.0", + "@types/semver": "^7.3.4", + "browser-assert": "^1.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "cjs-module-lexer": "^1.2.3", + "constants-browserify": "^1.0.0", + "css-loader": "^6.7.1", + "es-module-lexer": "^1.4.1", + "express": "^4.17.3", + "fork-ts-checker-webpack-plugin": "^8.0.0", + "fs-extra": "^11.1.0", + "html-webpack-plugin": "^5.5.0", + "magic-string": "^0.30.5", + "path-browserify": "^1.0.1", + "process": "^0.11.10", + "semver": "^7.3.7", + "style-loader": "^3.3.1", + "terser-webpack-plugin": "^5.3.1", + "ts-dedent": "^2.0.0", + "url": "^0.11.0", + "util": "^0.12.4", + "util-deprecate": "^1.0.2", + "webpack": "5", + "webpack-dev-middleware": "^6.1.1", + "webpack-hot-middleware": "^2.25.1", + "webpack-virtual-modules": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/@types/node": { + "version": "18.19.26", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.26.tgz", + "integrity": "sha512-+wiMJsIwLOYCvUqSdKTrfkS8mpTp+MPINe6+Np4TAGFWWRWiBQ5kSq9nZGCSPkzx9mvT+uEukzpX4MOSCydcvw==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@storybook/channels": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.0.4.tgz", + "integrity": "sha512-haKV+8RbiSzLjicowUfc7h2fTClZHX/nz9SRUecf4IEZUEu2T78OgM/TzqZvL7rA3+/fKqp5iI+3PN3OA75Sdg==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "8.0.4", + "@storybook/core-events": "8.0.4", + "@storybook/global": "^5.0.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/cli": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-8.0.4.tgz", + "integrity": "sha512-8jb8hrulRMfyFyNXFEapxHBS51xb42ZZGfVAacXIsHOJtjOd5CnOoSUYn0aOkVl19VF/snoa9JOW7BaW/50Eqw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.23.0", + "@babel/types": "^7.23.0", + "@ndelangen/get-tarball": "^3.0.7", + "@storybook/codemod": "8.0.4", + "@storybook/core-common": "8.0.4", + "@storybook/core-events": "8.0.4", + "@storybook/core-server": "8.0.4", + "@storybook/csf-tools": "8.0.4", + "@storybook/node-logger": "8.0.4", + "@storybook/telemetry": "8.0.4", + "@storybook/types": "8.0.4", + "@types/semver": "^7.3.4", + "@yarnpkg/fslib": "2.10.3", + "@yarnpkg/libzip": "2.3.0", + "chalk": "^4.1.0", + "commander": "^6.2.1", + "cross-spawn": "^7.0.3", + "detect-indent": "^6.1.0", + "envinfo": "^7.7.3", + "execa": "^5.0.0", + "find-up": "^5.0.0", + "fs-extra": "^11.1.0", + "get-npm-tarball-url": "^2.0.3", + "giget": "^1.0.0", + "globby": "^11.0.2", + "jscodeshift": "^0.15.1", + "leven": "^3.1.0", + "ora": "^5.4.1", + "prettier": "^3.1.1", + "prompts": "^2.4.0", + "read-pkg-up": "^7.0.1", + "semver": "^7.3.7", + "strip-json-comments": "^3.0.1", + "tempy": "^1.0.1", + "tiny-invariant": "^1.3.1", + "ts-dedent": "^2.0.0" + }, + "bin": { + "getstorybook": "bin/index.js", + "sb": "bin/index.js" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/cli/node_modules/commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@storybook/cli/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/cli/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/cli/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@storybook/client-logger": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.0.4.tgz", + "integrity": "sha512-2SeEg3PT/d0l/+EAVtyj9hmMLTyTPp+bRBSzxYouBjtJPM1jrdKpFagj1o3uBRovwWm9SIVX6/ZsoRC33PEV1g==", + "dev": true, + "dependencies": { + "@storybook/global": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/codemod": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-8.0.4.tgz", + "integrity": "sha512-bysG46P4wjlR3RCpr/ntNAUaupWpzLcWYWti3iNtIyZ/iPrX6KtXoA9QCIwJZrlv41us6F+KEZbzLzkgWbymtQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.23.2", + "@babel/preset-env": "^7.23.2", + "@babel/types": "^7.23.0", + "@storybook/csf": "^0.1.2", + "@storybook/csf-tools": "8.0.4", + "@storybook/node-logger": "8.0.4", + "@storybook/types": "8.0.4", + "@types/cross-spawn": "^6.0.2", + "cross-spawn": "^7.0.3", + "globby": "^11.0.2", + "jscodeshift": "^0.15.1", + "lodash": "^4.17.21", + "prettier": "^3.1.1", + "recast": "^0.23.5", + "tiny-invariant": "^1.3.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/components": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/components/-/components-8.0.4.tgz", + "integrity": "sha512-i5ngl5GTOLB9nZ1cmpxTjtWct5IuH9UxzFC73a0jHMkCwN26w16IqufRVDaoQv0AvZN4pd4fNM2in/XVHA10dw==", + "dev": true, + "dependencies": { + "@radix-ui/react-slot": "^1.0.2", + "@storybook/client-logger": "8.0.4", + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "@storybook/icons": "^1.2.5", + "@storybook/theming": "8.0.4", + "@storybook/types": "8.0.4", + "memoizerific": "^1.11.3", + "util-deprecate": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@storybook/core-common": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-8.0.4.tgz", + "integrity": "sha512-dzFRLm5FxUa2EFE6Rx/KLDTJNLBIp1S2/+Q1K+rG8V+CLvewCc2Cd486rStZqSXEKI7vDnsRs/aMla+N0X/++Q==", + "dev": true, + "dependencies": { + "@storybook/core-events": "8.0.4", + "@storybook/csf-tools": "8.0.4", + "@storybook/node-logger": "8.0.4", + "@storybook/types": "8.0.4", + "@yarnpkg/fslib": "2.10.3", + "@yarnpkg/libzip": "2.3.0", + "chalk": "^4.1.0", + "cross-spawn": "^7.0.3", + "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0", + "esbuild-register": "^3.5.0", + "execa": "^5.0.0", + "file-system-cache": "2.3.0", + "find-cache-dir": "^3.0.0", + "find-up": "^5.0.0", + "fs-extra": "^11.1.0", + "glob": "^10.0.0", + "handlebars": "^4.7.7", + "lazy-universal-dotenv": "^4.0.0", + "node-fetch": "^2.0.0", + "picomatch": "^2.3.0", + "pkg-dir": "^5.0.0", + "pretty-hrtime": "^1.0.3", + "resolve-from": "^5.0.0", + "semver": "^7.3.7", + "tempy": "^1.0.1", + "tiny-invariant": "^1.3.1", + "ts-dedent": "^2.0.0", + "util": "^0.12.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/core-common/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@storybook/core-common/node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@storybook/core-common/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/core-common/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@storybook/core-common/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/core-common/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@storybook/core-events": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.0.4.tgz", + "integrity": "sha512-1FgLacIGi9i6/fyxw7ZJDC621RK47IMaA3keH4lc11ASRzCSwJ4YOrXjBFjfPc79EF2BuX72DDJNbhj6ynfF3g==", + "dev": true, + "dependencies": { + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/core-server": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-8.0.4.tgz", + "integrity": "sha512-/633Pp7LPcDWXkPLSW+W9VUYUbVkdVBG6peXjuzogV0vzdM0dM9af/T0uV2NQxUhzoy6/7QdSDljE+eEOBs2Lw==", + "dev": true, + "dependencies": { + "@aw-web-design/x-default-browser": "1.4.126", + "@babel/core": "^7.23.9", + "@discoveryjs/json-ext": "^0.5.3", + "@storybook/builder-manager": "8.0.4", + "@storybook/channels": "8.0.4", + "@storybook/core-common": "8.0.4", + "@storybook/core-events": "8.0.4", + "@storybook/csf": "^0.1.2", + "@storybook/csf-tools": "8.0.4", + "@storybook/docs-mdx": "3.0.0", + "@storybook/global": "^5.0.0", + "@storybook/manager": "8.0.4", + "@storybook/manager-api": "8.0.4", + "@storybook/node-logger": "8.0.4", + "@storybook/preview-api": "8.0.4", + "@storybook/telemetry": "8.0.4", + "@storybook/types": "8.0.4", + "@types/detect-port": "^1.3.0", + "@types/node": "^18.0.0", + "@types/pretty-hrtime": "^1.0.0", + "@types/semver": "^7.3.4", + "better-opn": "^3.0.2", + "chalk": "^4.1.0", + "cli-table3": "^0.6.1", + "compression": "^1.7.4", + "detect-port": "^1.3.0", + "express": "^4.17.3", + "fs-extra": "^11.1.0", + "globby": "^11.0.2", + "ip": "^2.0.1", + "lodash": "^4.17.21", + "open": "^8.4.0", + "pretty-hrtime": "^1.0.3", + "prompts": "^2.4.0", + "read-pkg-up": "^7.0.1", + "semver": "^7.3.7", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1", + "ts-dedent": "^2.0.0", + "util": "^0.12.4", + "util-deprecate": "^1.0.2", + "watchpack": "^2.2.0", + "ws": "^8.2.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/core-server/node_modules/@types/node": { + "version": "18.19.26", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.26.tgz", + "integrity": "sha512-+wiMJsIwLOYCvUqSdKTrfkS8mpTp+MPINe6+Np4TAGFWWRWiBQ5kSq9nZGCSPkzx9mvT+uEukzpX4MOSCydcvw==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@storybook/core-server/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/core-server/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/core-server/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@storybook/core-webpack": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/core-webpack/-/core-webpack-8.0.4.tgz", + "integrity": "sha512-sECeoJtT6iFWzgZaQbS1TEZvBrXIT4qb9fa0x2/I5YhCTPnprCNL1yyN90hFQTpdLco5vfQ86YnpzMRntODn7A==", + "dev": true, + "dependencies": { + "@storybook/core-common": "8.0.4", + "@storybook/node-logger": "8.0.4", + "@storybook/types": "8.0.4", + "@types/node": "^18.0.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/core-webpack/node_modules/@types/node": { + "version": "18.19.26", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.26.tgz", + "integrity": "sha512-+wiMJsIwLOYCvUqSdKTrfkS8mpTp+MPINe6+Np4TAGFWWRWiBQ5kSq9nZGCSPkzx9mvT+uEukzpX4MOSCydcvw==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@storybook/csf": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.2.tgz", + "integrity": "sha512-ePrvE/pS1vsKR9Xr+o+YwdqNgHUyXvg+1Xjx0h9LrVx7Zq4zNe06pd63F5EvzTbCbJsHj7GHr9tkiaqm7U8WRA==", + "dev": true, + "dependencies": { + "type-fest": "^2.19.0" + } + }, + "node_modules/@storybook/csf-plugin": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-8.0.4.tgz", + "integrity": "sha512-pEgctWuS/qeKMFZJJUM2JuKwjKBt27ye+216ft7xhNqpsrmCgumJYrkU/ii2CsFJU/qr5Fu9EYw+N+vof1OalQ==", + "dev": true, + "dependencies": { + "@storybook/csf-tools": "8.0.4", + "unplugin": "^1.3.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/csf-tools": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.0.4.tgz", + "integrity": "sha512-dMSZxWnXBhmXGOZZOAJ4DKZRCYdA0HaqqZ4/eF9MLLsI+qvW4EklcpjVY6bsIzACgubRWtRZkTpxTnjExi/N1A==", + "dev": true, + "dependencies": { + "@babel/generator": "^7.23.0", + "@babel/parser": "^7.23.0", + "@babel/traverse": "^7.23.2", + "@babel/types": "^7.23.0", + "@storybook/csf": "^0.1.2", + "@storybook/types": "8.0.4", + "fs-extra": "^11.1.0", + "recast": "^0.23.5", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/docs-mdx": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@storybook/docs-mdx/-/docs-mdx-3.0.0.tgz", + "integrity": "sha512-NmiGXl2HU33zpwTv1XORe9XG9H+dRUC1Jl11u92L4xr062pZtrShLmD4VKIsOQujxhhOrbxpwhNOt+6TdhyIdQ==", + "dev": true + }, + "node_modules/@storybook/docs-tools": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-8.0.4.tgz", + "integrity": "sha512-PONfG8j/AOHi79NbEkneFRZIscrShbA0sgA+62zeejH4r9+fuIkIKtLnKcAxvr8Bm6uo9aSQbISJZUcBG42WhQ==", + "dev": true, + "dependencies": { + "@storybook/core-common": "8.0.4", + "@storybook/preview-api": "8.0.4", + "@storybook/types": "8.0.4", + "@types/doctrine": "^0.0.3", + "assert": "^2.1.0", + "doctrine": "^3.0.0", + "lodash": "^4.17.21" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/global": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz", + "integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==", + "dev": true + }, + "node_modules/@storybook/icons": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/@storybook/icons/-/icons-1.2.9.tgz", + "integrity": "sha512-cOmylsz25SYXaJL/gvTk/dl3pyk7yBFRfeXTsHvTA3dfhoU/LWSq0NKL9nM7WBasJyn6XPSGnLS4RtKXLw5EUg==", + "dev": true, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@storybook/instrumenter": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/instrumenter/-/instrumenter-8.0.4.tgz", + "integrity": "sha512-lkHv1na12oMTZvuDbzufgqrtFlV1XqdXrAAg7YXZOia/oMz6Z/XMldEqwLPUCLGVodbFJofrpE67Wtw8dNTDQg==", + "dev": true, + "dependencies": { + "@storybook/channels": "8.0.4", + "@storybook/client-logger": "8.0.4", + "@storybook/core-events": "8.0.4", + "@storybook/global": "^5.0.0", + "@storybook/preview-api": "8.0.4", + "@vitest/utils": "^1.3.1", + "util": "^0.12.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/manager": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/manager/-/manager-8.0.4.tgz", + "integrity": "sha512-M5IofDSxbIQIdAglxUtZOGKjZ1EAq1Mdbh4UolVsF1PKF6dAvBQJLVW6TiLjEbmPBtqgeYKMgrmmYiFNqVcdBQ==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/manager-api": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-8.0.4.tgz", + "integrity": "sha512-TudiRmWlsi8kdjwqW0DDLen76Zp4Sci/AnvTbZvZOWe8C2mruxcr6aaGwuIug6y+uxIyXDvURF6Cek5Twz4isg==", + "dev": true, + "dependencies": { + "@storybook/channels": "8.0.4", + "@storybook/client-logger": "8.0.4", + "@storybook/core-events": "8.0.4", + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "@storybook/icons": "^1.2.5", + "@storybook/router": "8.0.4", + "@storybook/theming": "8.0.4", + "@storybook/types": "8.0.4", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3", + "store2": "^2.14.2", + "telejson": "^7.2.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/node-logger": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.0.4.tgz", + "integrity": "sha512-cALLHuX53vLQsoJamGRlquh2pfhPq9copXou2JTmFT6mrCcipo77SzhBDfeeuhaGv6vUWPfmGjPBEHXWGPe4+g==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/preset-react-webpack": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/preset-react-webpack/-/preset-react-webpack-8.0.4.tgz", + "integrity": "sha512-XldgoZJOXNbZLGhvP6FqVeRnXigEZXV88uhEveREH4zRceYxXUmiCjFUnFy5aXaYZLcv09GHpqTPCqRoOZ+upg==", + "dev": true, + "dependencies": { + "@storybook/core-webpack": "8.0.4", + "@storybook/docs-tools": "8.0.4", + "@storybook/node-logger": "8.0.4", + "@storybook/react": "8.0.4", + "@storybook/react-docgen-typescript-plugin": "1.0.6--canary.9.0c3f3b7.0", + "@types/node": "^18.0.0", + "@types/semver": "^7.3.4", + "find-up": "^5.0.0", + "fs-extra": "^11.1.0", + "magic-string": "^0.30.5", + "react-docgen": "^7.0.0", + "resolve": "^1.22.8", + "semver": "^7.3.7", + "tsconfig-paths": "^4.2.0", + "webpack": "5" + }, + "engines": { + "node": ">=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@storybook/preset-react-webpack/node_modules/@types/node": { + "version": "18.19.26", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.26.tgz", + "integrity": "sha512-+wiMJsIwLOYCvUqSdKTrfkS8mpTp+MPINe6+Np4TAGFWWRWiBQ5kSq9nZGCSPkzx9mvT+uEukzpX4MOSCydcvw==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@storybook/preset-react-webpack/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/preset-react-webpack/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/preset-react-webpack/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@storybook/preview": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/preview/-/preview-8.0.4.tgz", + "integrity": "sha512-dJa13bIxQBfa5ZsXAeL6X/oXI6b87Fy31pvpKPkW1o+7M6MC4OvwGQBqgAd7m8yn6NuIHxrdwjEupa7l7PGb6w==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/preview-api": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-8.0.4.tgz", + "integrity": "sha512-uZCgZ/7BZkFTNudCBWx3YPFVdReMQSZJj9EfQVhQaPmfGORHGMvZMRsQXl0ONhPy7zDD4rVQxu5dSKWmIiYoWQ==", + "dev": true, + "dependencies": { + "@storybook/channels": "8.0.4", + "@storybook/client-logger": "8.0.4", + "@storybook/core-events": "8.0.4", + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "@storybook/types": "8.0.4", + "@types/qs": "^6.9.5", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "tiny-invariant": "^1.3.1", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/react": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/react/-/react-8.0.4.tgz", + "integrity": "sha512-p4wQSJIhG48UD2fZ6tFDT9zaqrVnvZxjV18+VjSi3dez/pDoEMJ3SWZWcmeDenKwvvk+SPdRH7k5mUHW1Rh0xg==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "8.0.4", + "@storybook/docs-tools": "8.0.4", + "@storybook/global": "^5.0.0", + "@storybook/preview-api": "8.0.4", + "@storybook/react-dom-shim": "8.0.4", + "@storybook/types": "8.0.4", + "@types/escodegen": "^0.0.6", + "@types/estree": "^0.0.51", + "@types/node": "^18.0.0", + "acorn": "^7.4.1", + "acorn-jsx": "^5.3.1", + "acorn-walk": "^7.2.0", + "escodegen": "^2.1.0", + "html-tags": "^3.1.0", + "lodash": "^4.17.21", + "prop-types": "^15.7.2", + "react-element-to-jsx-string": "^15.0.0", + "semver": "^7.3.7", + "ts-dedent": "^2.0.0", + "type-fest": "~2.19", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0", + "typescript": ">= 4.2.x" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@storybook/react-docgen-typescript-plugin": { + "version": "1.0.6--canary.9.0c3f3b7.0", + "resolved": "https://registry.npmjs.org/@storybook/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-1.0.6--canary.9.0c3f3b7.0.tgz", + "integrity": "sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "endent": "^2.0.1", + "find-cache-dir": "^3.3.1", + "flat-cache": "^3.0.4", + "micromatch": "^4.0.2", + "react-docgen-typescript": "^2.2.2", + "tslib": "^2.0.0" + }, + "peerDependencies": { + "typescript": ">= 4.x", + "webpack": ">= 4" + } + }, + "node_modules/@storybook/react-dom-shim": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-8.0.4.tgz", + "integrity": "sha512-H8bci23e+G40WsdYPuPrhAjCeeXypXuAV6mTVvLHGKH+Yb+3wiB1weaXrot/TgzPbkDNybuhTI3Qm48FPLt0bw==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@storybook/react-webpack5": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/react-webpack5/-/react-webpack5-8.0.4.tgz", + "integrity": "sha512-HZzcIQLWR6pg28CRwNF9VnFWGTEFEnIAAGKbUAc7mMGysN9AgZgz618FZu0W0JmAUBtWwEJ+pYyLJCIOFoDE6w==", + "dev": true, + "dependencies": { + "@storybook/builder-webpack5": "8.0.4", + "@storybook/preset-react-webpack": "8.0.4", + "@storybook/react": "8.0.4", + "@types/node": "^18.0.0" + }, + "engines": { + "node": ">=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0", + "typescript": ">= 4.2.x" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@storybook/react-webpack5/node_modules/@types/node": { + "version": "18.19.17", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.17.tgz", + "integrity": "sha512-SzyGKgwPzuWp2SHhlpXKzCX0pIOfcI4V2eF37nNBJOhwlegQ83omtVQ1XxZpDE06V/d6AQvfQdPfnw0tRC//Ng==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@storybook/react/node_modules/@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", + "dev": true + }, + "node_modules/@storybook/react/node_modules/@types/node": { + "version": "18.19.17", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.17.tgz", + "integrity": "sha512-SzyGKgwPzuWp2SHhlpXKzCX0pIOfcI4V2eF37nNBJOhwlegQ83omtVQ1XxZpDE06V/d6AQvfQdPfnw0tRC//Ng==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@storybook/react/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/react/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@storybook/react/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@storybook/router": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/router/-/router-8.0.4.tgz", + "integrity": "sha512-hlR80QvmLBflAqMeGcgtDuSe6TJlzdizwEAkBLE1lDvFI6tvvEyAliCAXBpIDdOZTe0u/zeeJkOUXKSx33caoQ==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "8.0.4", + "memoizerific": "^1.11.3", + "qs": "^6.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/telemetry": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/telemetry/-/telemetry-8.0.4.tgz", + "integrity": "sha512-Q3ITY6J46R/TrrPRIU1fs3WNs69ExpTJZ9UlB8087qOUyV90Ex33SYk3i10xVWRczxCmyC1V58Xuht6nxz7mNQ==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "8.0.4", + "@storybook/core-common": "8.0.4", + "@storybook/csf-tools": "8.0.4", + "chalk": "^4.1.0", + "detect-package-manager": "^2.0.1", + "fetch-retry": "^5.0.2", + "fs-extra": "^11.1.0", + "read-pkg-up": "^7.0.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/test": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/test/-/test-8.0.4.tgz", + "integrity": "sha512-/uvE8Rtu7tIcuyQBUzKq7uuDCsjmADI18BApLdwo/qthmN8ERDxRSz0Ngj2gvBMQFv99At8ESi/xh6oFGu3rWg==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "8.0.4", + "@storybook/core-events": "8.0.4", + "@storybook/instrumenter": "8.0.4", + "@storybook/preview-api": "8.0.4", + "@testing-library/dom": "^9.3.4", + "@testing-library/jest-dom": "^6.4.2", + "@testing-library/user-event": "^14.5.2", + "@vitest/expect": "1.3.1", + "@vitest/spy": "^1.3.1", + "chai": "^4.4.1", + "util": "^0.12.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/theming": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-8.0.4.tgz", + "integrity": "sha512-NxtTU2wMC0lj375ejoT3Npdcqwv6NeUpLaJl6EZCMXSR41ve9WG4suUNWQ63olhqKxirjzAz0IL7ggH7c3hPvA==", + "dev": true, + "dependencies": { + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@storybook/client-logger": "8.0.4", + "@storybook/global": "^5.0.0", + "memoizerific": "^1.11.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true }, - "tweetnacl": { - "version": "0.14.5", - "dev": true + "react-dom": { + "optional": true + } + } + }, + "node_modules/@storybook/types": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.0.4.tgz", + "integrity": "sha512-OO7QY+qZFCYkItDUBACtIV32p75O7sNziAiyS1V2Oxgo7Ln7fwZwr3mJcA1ruBed6ZcrW3c87k7Xs40T2zAWcg==", + "dev": true, + "dependencies": { + "@storybook/channels": "8.0.4", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@swc/core": { + "version": "1.3.83", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.83.tgz", + "integrity": "sha512-PccHDgGQlFjpExgJxH91qA3a4aifR+axCFJ4RieCoiI0m5gURE4nBhxzTBY5YU/YKTBmPO8Gc5Q6inE3+NquWg==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "peer": true, + "dependencies": { + "@swc/types": "^0.1.4" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/swc" + }, + "optionalDependencies": { + "@swc/core-darwin-arm64": "1.3.83", + "@swc/core-darwin-x64": "1.3.83", + "@swc/core-linux-arm-gnueabihf": "1.3.83", + "@swc/core-linux-arm64-gnu": "1.3.83", + "@swc/core-linux-arm64-musl": "1.3.83", + "@swc/core-linux-x64-gnu": "1.3.83", + "@swc/core-linux-x64-musl": "1.3.83", + "@swc/core-win32-arm64-msvc": "1.3.83", + "@swc/core-win32-ia32-msvc": "1.3.83", + "@swc/core-win32-x64-msvc": "1.3.83" + }, + "peerDependencies": { + "@swc/helpers": "^0.5.0" + }, + "peerDependenciesMeta": { + "@swc/helpers": { + "optional": true + } + } + }, + "node_modules/@swc/core-darwin-arm64": { + "version": "1.3.83", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.83.tgz", + "integrity": "sha512-Plz2IKeveVLivbXTSCC3OZjD2MojyKYllhPrn9RotkDIZEFRYJZtW5/Ik1tJW/2rzu5HVKuGYrDKdScVVTbOxQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-darwin-x64": { + "version": "1.3.83", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.83.tgz", + "integrity": "sha512-FBGVg5IPF/8jQ6FbK60iDUHjv0H5+LwfpJHKH6wZnRaYWFtm7+pzYgreLu3NTsm3m7/1a7t0+7KURwBGUaJCCw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm-gnueabihf": { + "version": "1.3.83", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.83.tgz", + "integrity": "sha512-EZcsuRYhGkzofXtzwDjuuBC/suiX9s7zeg2YYXOVjWwyebb6BUhB1yad3mcykFQ20rTLO9JUyIaiaMYDHGobqw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm64-gnu": { + "version": "1.3.83", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.83.tgz", + "integrity": "sha512-khI41szLHrCD/cFOcN4p2SYvZgHjhhHlcMHz5BksRrDyteSJKu0qtWRZITVom0N/9jWoAleoFhMnFTUs0H8IWA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm64-musl": { + "version": "1.3.83", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.83.tgz", + "integrity": "sha512-zgT7yNOdbjHcGAwvys79mbfNLK65KBlPJWzeig+Yk7I8TVzmaQge7B6ZS/gwF9/p+8TiLYo/tZ5aF2lqlgdSVw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-x64-gnu": { + "version": "1.3.83", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.83.tgz", + "integrity": "sha512-x+mH0Y3NC/G0YNlFmGi3vGD4VOm7IPDhh+tGrx6WtJp0BsShAbOpxtfU885rp1QweZe4qYoEmGqiEjE2WrPIdA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-x64-musl": { + "version": "1.3.83", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.83.tgz", + "integrity": "sha512-s5AYhAOmetUwUZwS5g9qb92IYgNHHBGiY2mTLImtEgpAeBwe0LPDj6WrujxCBuZnaS55mKRLLOuiMZE5TpjBNA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-arm64-msvc": { + "version": "1.3.83", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.83.tgz", + "integrity": "sha512-yw2rd/KVOGs95lRRB+killLWNaO1dy4uVa8Q3/4wb5txlLru07W1m041fZLzwOg/1Sh0TMjJgGxj0XHGR3ZXhQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-ia32-msvc": { + "version": "1.3.83", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.83.tgz", + "integrity": "sha512-POW+rgZ6KWqBpwPGIRd2/3pcf46P+UrKBm4HLt5IwbHvekJ4avIM8ixJa9kK0muJNVJcDpaZgxaU1ELxtJ1j8w==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-x64-msvc": { + "version": "1.3.83", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.83.tgz", + "integrity": "sha512-CiWQtkFnZElXQUalaHp+Wacw0Jd+24ncRYhqaJ9YKnEQP1H82CxIIuQqLM8IFaLpn5dpY6SgzaeubWF46hjcLA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/types": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.4.tgz", + "integrity": "sha512-z/G02d+59gyyUb7KYhKi9jOhicek6QD2oMaotUyG+lUkybpXoV49dY9bj7Ah5Q+y7knK2jU67UTX9FyfGzaxQg==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/@testing-library/dom": { + "version": "9.3.4", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-9.3.4.tgz", + "integrity": "sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.1.3", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@testing-library/jest-dom": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.4.2.tgz", + "integrity": "sha512-CzqH0AFymEMG48CpzXFriYYkOjk6ZGPCLMhW9e9jg3KMCn5OfJecF8GtGW7yGfR/IgCe3SX8BSwjdzI6BBbZLw==", + "dev": true, + "dependencies": { + "@adobe/css-tools": "^4.3.2", + "@babel/runtime": "^7.9.2", + "aria-query": "^5.0.0", + "chalk": "^3.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.6.3", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "engines": { + "node": ">=14", + "npm": ">=6", + "yarn": ">=1" + }, + "peerDependencies": { + "@jest/globals": ">= 28", + "@types/bun": "latest", + "@types/jest": ">= 28", + "jest": ">= 28", + "vitest": ">= 0.32" + }, + "peerDependenciesMeta": { + "@jest/globals": { + "optional": true + }, + "@types/bun": { + "optional": true }, - "type-check": { - "version": "0.3.2", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2" - } + "@types/jest": { + "optional": true }, - "type-fest": { - "version": "0.8.1", - "dev": true + "jest": { + "optional": true }, + "vitest": { + "optional": true + } + } + }, + "node_modules/@testing-library/jest-dom/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/dom-accessibility-api": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", + "integrity": "sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==", + "dev": true + }, + "node_modules/@testing-library/react": { + "version": "14.2.1", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-14.2.1.tgz", + "integrity": "sha512-sGdjws32ai5TLerhvzThYFbpnF9XtL65Cjf+gB0Dhr29BGqK+mAeN7SURSdu+eqgET4ANcWoC7FQpkaiGvBr+A==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^9.0.0", + "@types/react-dom": "^18.0.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@testing-library/user-event": { + "version": "14.5.2", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.5.2.tgz", + "integrity": "sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==", + "dev": true, + "engines": { + "node": ">=12", + "npm": ">=6" + }, + "peerDependencies": { + "@testing-library/dom": ">=7.21.4" + } + }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "node_modules/@types/aria-query": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.1.tgz", + "integrity": "sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==", + "dev": true + }, + "node_modules/@types/babel__core": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz", + "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz", + "integrity": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", + "dev": true, + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/cross-spawn": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/@types/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/d3-array": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", + "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==" + }, + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==" + }, + "node_modules/@types/d3-ease": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==" + }, + "node_modules/@types/d3-interpolate": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "dependencies": { + "@types/d3-color": "*" + } + }, + "node_modules/@types/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==" + }, + "node_modules/@types/d3-scale": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz", + "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", + "dependencies": { + "@types/d3-time": "*" + } + }, + "node_modules/@types/d3-shape": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.6.tgz", + "integrity": "sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==", + "dependencies": { + "@types/d3-path": "*" + } + }, + "node_modules/@types/d3-time": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz", + "integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==" + }, + "node_modules/@types/d3-timer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", + "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==" + }, + "node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "dev": true, + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/detect-port": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/detect-port/-/detect-port-1.3.5.tgz", + "integrity": "sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==", + "dev": true + }, + "node_modules/@types/doctrine": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.3.tgz", + "integrity": "sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==", + "dev": true + }, + "node_modules/@types/ejs": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.5.tgz", + "integrity": "sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==", + "dev": true + }, + "node_modules/@types/emscripten": { + "version": "1.39.10", + "resolved": "https://registry.npmjs.org/@types/emscripten/-/emscripten-1.39.10.tgz", + "integrity": "sha512-TB/6hBkYQJxsZHSqyeuO1Jt0AB/bW6G7rHt9g7lML7SOF6lbgcHvw/Lr+69iqN0qxgXLhWKScAon73JNnptuDw==", + "dev": true + }, + "node_modules/@types/escodegen": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/@types/escodegen/-/escodegen-0.0.6.tgz", + "integrity": "sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==", + "dev": true + }, + "node_modules/@types/eslint": { + "version": "8.56.6", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.6.tgz", + "integrity": "sha512-ymwc+qb1XkjT/gfoQwxIeHZ6ixH23A+tCT2ADSA/DPVKzAjwYkTXBMCQ/f6fe4wEa85Lhp26VPeUxI7wMhAi7A==", + "dev": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dev": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true + }, + "node_modules/@types/express": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", + "dev": true, + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.43", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.43.tgz", + "integrity": "sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/fs-extra": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-8.1.2.tgz", + "integrity": "sha512-SvSrYXfWSc7R4eqnOzbQF4TZmfpNSM9FrSWLU3EUnWBuyZqNBOrv1B1JA3byUDPUl9z4Ab3jeZG2eDdySlgNMg==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "dev": true, + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/hoist-non-react-statics": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", + "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", + "dev": true, + "dependencies": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "dev": true + }, + "node_modules/@types/http-errors": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", + "dev": true + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "29.5.12", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.12.tgz", + "integrity": "sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==", + "dev": true, + "dependencies": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + } + }, + "node_modules/@types/jest/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@types/jest/node_modules/pretty-format": { + "version": "29.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.2.tgz", + "integrity": "sha512-1q0oC8eRveTg5nnBEWMXAU2qpv65Gnuf2eCQzSjxpWFkPaPARwqZZDGuNE0zPAZfTCHzIk3A8dIjwlQKKLphyg==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.0", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@types/jest/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/@types/jsdom": { + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", + "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/tough-cookie": "*", + "parse5": "^7.0.0" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "node_modules/@types/lodash": { + "version": "4.17.0", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.0.tgz", + "integrity": "sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==", + "dev": true + }, + "node_modules/@types/mdast": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.3.tgz", + "integrity": "sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg==", + "dev": true, + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/mdx": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.12.tgz", + "integrity": "sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==", + "dev": true + }, + "node_modules/@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", + "dev": true + }, + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "dev": true + }, + "node_modules/@types/ms": { + "version": "0.7.34", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz", + "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==", + "dev": true + }, + "node_modules/@types/node": { + "version": "20.5.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.0.tgz", + "integrity": "sha512-Mgq7eCtoTjT89FqNoTzzXg2XvCi5VMhRV6+I2aYanc6kQCBImeNaAYRs/DyoVqk1YEUJK5gN9VO7HRIdz4Wo3Q==", + "dev": true + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", + "dev": true + }, + "node_modules/@types/pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==", + "dev": true + }, + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", + "dev": true + }, + "node_modules/@types/qs": { + "version": "6.9.14", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.14.tgz", + "integrity": "sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==", + "dev": true + }, + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", + "dev": true + }, + "node_modules/@types/react": { + "version": "18.2.55", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.55.tgz", + "integrity": "sha512-Y2Tz5P4yz23brwm2d7jNon39qoAtMMmalOQv6+fEFt1mT+FcM3D841wDpoUvFXhaYenuROCy3FZYqdTjM7qVyA==", + "dev": true, + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.2.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz", + "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", + "dev": true, + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/resolve": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz", + "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==", + "dev": true + }, + "node_modules/@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==", + "dev": true + }, + "node_modules/@types/semver": { + "version": "7.5.7", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.7.tgz", + "integrity": "sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg==", + "dev": true + }, + "node_modules/@types/send": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "dev": true, + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz", + "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==", + "dev": true, + "dependencies": { + "@types/http-errors": "*", + "@types/mime": "*", + "@types/node": "*" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@types/styled-components": { + "version": "5.1.34", + "resolved": "https://registry.npmjs.org/@types/styled-components/-/styled-components-5.1.34.tgz", + "integrity": "sha512-mmiVvwpYklFIv9E8qfxuPyIt/OuyIrn6gMOAMOFUO3WJfSrSE+sGUoa4PiZj77Ut7bKZpaa6o1fBKS/4TOEvnA==", + "dev": true, + "dependencies": { + "@types/hoist-non-react-statics": "*", + "@types/react": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/stylis": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@types/stylis/-/stylis-4.2.0.tgz", + "integrity": "sha512-n4sx2bqL0mW1tvDf/loQ+aMX7GQD3lc3fkCMC55VFNDu/vBOabO+LTIeXKM14xK0ppk5TUGcWRjiSpIlUpghKw==" + }, + "node_modules/@types/tough-cookie": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.2.tgz", + "integrity": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==", + "dev": true + }, + "node_modules/@types/unist": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.2.tgz", + "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==", + "dev": true + }, + "node_modules/@types/uuid": { + "version": "9.0.8", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz", + "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==", + "dev": true + }, + "node_modules/@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { "typescript": { - "version": "3.9.5", - "dev": true - }, - "unbox-primitive": { - "version": "1.0.1", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has-bigints": "^1.0.1", - "has-symbols": "^1.0.2", - "which-boxed-primitive": "^1.0.2" - } - }, - "unicode-canonical-property-names-ecmascript": { - "version": "1.0.4", - "dev": true - }, - "unicode-match-property-ecmascript": { - "version": "1.0.4", - "dev": true, - "requires": { - "unicode-canonical-property-names-ecmascript": "^1.0.4", - "unicode-property-aliases-ecmascript": "^1.0.4" - } - }, - "unicode-match-property-value-ecmascript": { - "version": "1.2.0", - "dev": true - }, - "unicode-property-aliases-ecmascript": { - "version": "1.1.0", - "dev": true - }, - "union-value": { - "version": "1.0.1", - "dev": true, - "requires": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - } - }, - "unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "dev": true, - "requires": { - "unique-slug": "^2.0.0" - } - }, - "unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4" - } - }, - "universalify": { - "version": "0.1.2", - "dev": true - }, - "unset-value": { - "version": "1.0.0", - "dev": true, - "requires": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "dev": true, - "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "dev": true - }, - "isobject": { - "version": "3.0.1", - "dev": true - } - } - }, - "update-browserslist-db": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", - "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", - "dev": true, - "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - } - }, - "uri-js": { - "version": "4.2.2", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "urix": { - "version": "0.1.0", - "dev": true - }, - "use": { - "version": "3.1.1", - "dev": true - }, - "util-deprecate": { - "version": "1.0.2", - "dev": true - }, - "util.promisify": { - "version": "1.0.0", - "dev": true, - "requires": { - "define-properties": "^1.1.2", - "object.getownpropertydescriptors": "^2.0.3" - } - }, - "uuid": { - "version": "3.4.0", - "dev": true - }, - "v8-compile-cache": { - "version": "2.3.0", - "dev": true - }, - "validate-npm-package-license": { - "version": "3.0.4", - "dev": true, - "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "verror": { - "version": "1.10.0", - "dev": true, - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "victory": { - "version": "35.4.8", - "requires": { - "victory-area": "^35.4.8", - "victory-axis": "^35.4.8", - "victory-bar": "^35.4.8", - "victory-box-plot": "^35.4.8", - "victory-brush-container": "^35.4.8", - "victory-brush-line": "^35.4.8", - "victory-candlestick": "^35.4.8", - "victory-chart": "^35.4.8", - "victory-core": "^35.4.8", - "victory-create-container": "^35.4.8", - "victory-cursor-container": "^35.4.8", - "victory-errorbar": "^35.4.8", - "victory-group": "^35.4.8", - "victory-histogram": "^35.4.8", - "victory-legend": "^35.4.8", - "victory-line": "^35.4.8", - "victory-pie": "^35.4.8", - "victory-polar-axis": "^35.4.8", - "victory-scatter": "^35.4.8", - "victory-selection-container": "^35.4.8", - "victory-shared-events": "^35.4.8", - "victory-stack": "^35.4.8", - "victory-tooltip": "^35.4.8", - "victory-voronoi": "^35.4.8", - "victory-voronoi-container": "^35.4.8", - "victory-zoom-container": "^35.4.8" - } - }, - "victory-area": { - "version": "35.4.8", - "requires": { - "d3-shape": "^1.2.0", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "victory-axis": { - "version": "35.4.8", - "requires": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "victory-bar": { - "version": "35.4.8", - "requires": { - "d3-shape": "^1.2.0", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "victory-box-plot": { - "version": "35.4.8", - "requires": { - "d3-array": "^1.2.0", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "victory-brush-container": { - "version": "35.4.8", - "requires": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0", - "victory-core": "^35.4.8" - } - }, - "victory-brush-line": { - "version": "35.4.8", - "requires": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0", - "victory-core": "^35.4.8" - } - }, - "victory-candlestick": { - "version": "35.4.8", - "requires": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "victory-chart": { - "version": "35.4.8", - "requires": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0", - "victory-axis": "^35.4.8", - "victory-core": "^35.4.8", - "victory-polar-axis": "^35.4.8", - "victory-shared-events": "^35.4.8" - } - }, - "victory-core": { - "version": "35.4.8", - "requires": { - "d3-ease": "^1.0.0", - "d3-interpolate": "^1.1.1", - "d3-scale": "^1.0.0", - "d3-shape": "^1.2.0", - "d3-timer": "^1.0.0", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0" - } - }, - "victory-create-container": { - "version": "35.4.8", - "requires": { - "lodash": "^4.17.19", - "victory-brush-container": "^35.4.8", - "victory-core": "^35.4.8", - "victory-cursor-container": "^35.4.8", - "victory-selection-container": "^35.4.8", - "victory-voronoi-container": "^35.4.8", - "victory-zoom-container": "^35.4.8" - } - }, - "victory-cursor-container": { - "version": "35.4.8", - "requires": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "victory-errorbar": { - "version": "35.4.8", - "requires": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "victory-group": { - "version": "35.4.8", - "requires": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0", - "victory-core": "^35.4.8", - "victory-shared-events": "^35.4.8" - } - }, - "victory-histogram": { - "version": "35.4.8", - "requires": { - "d3-array": "^2.4.0", - "d3-scale": "^1.0.0", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0", - "victory-bar": "^35.4.8", - "victory-core": "^35.4.8" - }, - "dependencies": { - "d3-array": { - "version": "2.11.0", - "requires": { - "internmap": "^1.0.0" - } - } - } - }, - "victory-legend": { - "version": "35.4.8", - "requires": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "victory-line": { - "version": "35.4.8", - "requires": { - "d3-shape": "^1.2.0", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "victory-pie": { - "version": "35.4.8", - "requires": { - "d3-shape": "^1.0.0", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "victory-polar-axis": { - "version": "35.4.8", - "requires": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "victory-scatter": { - "version": "35.4.8", - "requires": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "victory-selection-container": { - "version": "35.4.8", - "requires": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } - }, - "victory-shared-events": { - "version": "35.4.8", - "requires": { - "json-stringify-safe": "^5.0.1", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0", - "victory-core": "^35.4.8" - } - }, - "victory-stack": { - "version": "35.4.8", - "requires": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0", - "victory-core": "^35.4.8", - "victory-shared-events": "^35.4.8" - } - }, - "victory-tooltip": { - "version": "35.4.8", - "requires": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/@vitest/expect": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-1.3.1.tgz", + "integrity": "sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==", + "dev": true, + "dependencies": { + "@vitest/spy": "1.3.1", + "@vitest/utils": "1.3.1", + "chai": "^4.3.10" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/expect/node_modules/@vitest/spy": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-1.3.1.tgz", + "integrity": "sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==", + "dev": true, + "dependencies": { + "tinyspy": "^2.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/expect/node_modules/@vitest/utils": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-1.3.1.tgz", + "integrity": "sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==", + "dev": true, + "dependencies": { + "diff-sequences": "^29.6.3", + "estree-walker": "^3.0.3", + "loupe": "^2.3.7", + "pretty-format": "^29.7.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/expect/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@vitest/expect/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/@vitest/expect/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@vitest/expect/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/@vitest/spy": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-1.4.0.tgz", + "integrity": "sha512-Ywau/Qs1DzM/8Uc+yA77CwSegizMlcgTJuYGAi0jujOteJOUf1ujunHThYo243KG9nAyWT3L9ifPYZ5+As/+6Q==", + "dev": true, + "dependencies": { + "tinyspy": "^2.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-1.4.0.tgz", + "integrity": "sha512-mx3Yd1/6e2Vt/PUC98DcqTirtfxUyAZ32uK82r8rZzbtBeBo+nqgnjx/LvqQdWsrvNtm14VmurNgcf4nqY5gJg==", + "dev": true, + "dependencies": { + "diff-sequences": "^29.6.3", + "estree-walker": "^3.0.3", + "loupe": "^2.3.7", + "pretty-format": "^29.7.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/utils/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@vitest/utils/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/@vitest/utils/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@vitest/utils/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", + "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", + "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dev": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", + "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.12.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dev": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "dev": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", + "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-opt": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1", + "@webassemblyjs/wast-printer": "1.12.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", + "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", + "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", + "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", + "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/@yarnpkg/esbuild-plugin-pnp": { + "version": "3.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@yarnpkg/esbuild-plugin-pnp/-/esbuild-plugin-pnp-3.0.0-rc.15.tgz", + "integrity": "sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==", + "dev": true, + "dependencies": { + "tslib": "^2.4.0" + }, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "esbuild": ">=0.10.0" + } + }, + "node_modules/@yarnpkg/fslib": { + "version": "2.10.3", + "resolved": "https://registry.npmjs.org/@yarnpkg/fslib/-/fslib-2.10.3.tgz", + "integrity": "sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==", + "dev": true, + "dependencies": { + "@yarnpkg/libzip": "^2.3.0", + "tslib": "^1.13.0" + }, + "engines": { + "node": ">=12 <14 || 14.2 - 14.9 || >14.10.0" + } + }, + "node_modules/@yarnpkg/fslib/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/@yarnpkg/libzip": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@yarnpkg/libzip/-/libzip-2.3.0.tgz", + "integrity": "sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==", + "dev": true, + "dependencies": { + "@types/emscripten": "^1.39.6", + "tslib": "^1.13.0" + }, + "engines": { + "node": ">=12 <14 || 14.2 - 14.9 || >14.10.0" + } + }, + "node_modules/@yarnpkg/libzip/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", + "dev": true, + "dependencies": { + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" + } + }, + "node_modules/acorn-globals/node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals/node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/app-root-dir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz", + "integrity": "sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==", + "dev": true + }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "dev": true, + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/assert": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz", + "integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "is-nan": "^1.3.2", + "object-is": "^1.1.5", + "object.assign": "^4.1.4", + "util": "^0.12.5" + } + }, + "node_modules/assertion-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/ast-types": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz", + "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/async": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", + "dev": true + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/babel-core": { + "version": "7.0.0-bridge.0", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", + "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", + "dev": true, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "dev": true, + "dependencies": { + "@jest/transform": "^29.7.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-loader": { + "version": "9.1.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.3.tgz", + "integrity": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==", + "dev": true, + "dependencies": { + "find-cache-dir": "^4.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 14.15.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0", + "webpack": ">=5" + } + }, + "node_modules/babel-loader/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/babel-loader/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/babel-loader/node_modules/find-cache-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", + "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", + "dev": true, + "dependencies": { + "common-path-prefix": "^3.0.0", + "pkg-dir": "^7.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-loader/node_modules/find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "dev": true, + "dependencies": { + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-loader/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/babel-loader/node_modules/locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", + "dev": true, + "dependencies": { + "p-locate": "^6.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-loader/node_modules/p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^1.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-loader/node_modules/p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "dev": true, + "dependencies": { + "p-limit": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-loader/node_modules/path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/babel-loader/node_modules/pkg-dir": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", + "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", + "dev": true, + "dependencies": { + "find-up": "^6.3.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/babel-loader/node_modules/yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "dev": true, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.10", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.10.tgz", + "integrity": "sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.1", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", + "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.1", + "core-js-compat": "^3.36.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.1.tgz", + "integrity": "sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/better-opn": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz", + "integrity": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==", + "dev": true, + "dependencies": { + "open": "^8.0.4" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/big-integer": { + "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/body-parser": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/body-parser/node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "node_modules/bplist-parser": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", + "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", + "dev": true, + "dependencies": { + "big-integer": "^1.6.44" + }, + "engines": { + "node": ">= 5.10.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-assert": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/browser-assert/-/browser-assert-1.2.1.tgz", + "integrity": "sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==", + "dev": true + }, + "node_modules/browserify-zlib": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", + "integrity": "sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==", + "dev": true, + "dependencies": { + "pako": "~0.2.0" + } + }, + "node_modules/browserslist": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", + "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001587", + "electron-to-chromium": "^1.4.668", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dev": true, + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelize": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz", + "integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001587", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001587.tgz", + "integrity": "sha512-HMFNotUmLXn71BQxg8cijvqxnIAofforZOwGsxyXJ0qugTdspUF4sPSJ2vhgprHCB996tIDzEq1ubumPDV8ULA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chai": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.4.1.tgz", + "integrity": "sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==", + "dev": true, + "dependencies": { + "assertion-error": "^1.1.0", + "check-error": "^1.0.3", + "deep-eql": "^4.1.3", + "get-func-name": "^2.0.2", + "loupe": "^2.3.6", + "pathval": "^1.1.1", + "type-detect": "^4.0.8" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/check-error": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz", + "integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==", + "dev": true, + "dependencies": { + "get-func-name": "^2.0.2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/citty": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.6.tgz", + "integrity": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==", + "dev": true, + "dependencies": { + "consola": "^3.2.3" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "node_modules/clean-css": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", + "dev": true, + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-table3": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.4.tgz", + "integrity": "sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0" + }, + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone-deep/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", + "dev": true + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/concat-with-sourcemaps": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", + "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", + "dev": true, + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "dev": true, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", + "dev": true + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "node_modules/core-js-compat": { + "version": "3.36.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.36.1.tgz", + "integrity": "sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==", + "dev": true, + "dependencies": { + "browserslist": "^4.23.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dev": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/css-color-keywords": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", + "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", + "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-loader": { + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.10.0.tgz", + "integrity": "sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==", + "dev": true, + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.4", + "postcss-modules-scope": "^3.1.1", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true }, - "victory-voronoi": { - "version": "35.4.8", - "requires": { - "d3-voronoi": "^1.1.2", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } + "webpack": { + "optional": true + } + } + }, + "node_modules/css-loader/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-loader/node_modules/postcss": { + "version": "8.4.38", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", + "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/css-loader/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-loader/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-to-react-native": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz", + "integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==", + "dependencies": { + "camelize": "^1.0.0", + "css-color-keywords": "^1.0.0", + "postcss-value-parser": "^4.0.2" + } + }, + "node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", + "dev": true + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", + "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", + "dev": true, + "dependencies": { + "cssnano-preset-default": "^5.2.14", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default": { + "version": "5.2.14", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", + "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", + "dev": true, + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "dev": true + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "node_modules/d3-array": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "dependencies": { + "internmap": "1 - 2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "dependencies": { + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "dependencies": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "dependencies": { + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "dependencies": { + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "dependencies": { + "d3-time": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-voronoi": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.4.tgz", + "integrity": "sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg==" + }, + "node_modules/data-urls": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/dateformat": { + "version": "4.6.3", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-4.6.3.tgz", + "integrity": "sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "dev": true + }, + "node_modules/decode-named-character-reference": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", + "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", + "dev": true, + "dependencies": { + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "node_modules/deep-eql": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz", + "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==", + "dev": true, + "dependencies": { + "type-detect": "^4.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/deep-equal": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.2.tgz", + "integrity": "sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.1", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.2", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.0", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "peer": true + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-browser-id": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", + "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", + "dev": true, + "dependencies": { + "bplist-parser": "^0.2.0", + "untildify": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dev": true, + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "dev": true, + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/defu": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", + "dev": true + }, + "node_modules/del": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", + "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", + "dev": true, + "dependencies": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/delaunator": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-4.0.1.tgz", + "integrity": "sha512-WNPWi1IRKZfCt/qIDMfERkDp93+iZEmOxN2yy4Jg+Xhv8SLk2UTqqbe1sfiipn0and9QrE914/ihdx82Y/Giag==" + }, + "node_modules/delaunay-find": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/delaunay-find/-/delaunay-find-0.0.6.tgz", + "integrity": "sha512-1+almjfrnR7ZamBk0q3Nhg6lqSe6Le4vL0WJDSMx4IDbQwTpUTXPjxC00lqLBT8MYsJpPCbI16sIkw9cPsbi7Q==", + "dependencies": { + "delaunator": "^4.0.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-indent": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-package-manager": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-2.0.1.tgz", + "integrity": "sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==", + "dev": true, + "dependencies": { + "execa": "^5.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/detect-port": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz", + "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==", + "dev": true, + "dependencies": { + "address": "^1.0.1", + "debug": "4" + }, + "bin": { + "detect": "bin/detect-port.js", + "detect-port": "bin/detect-port.js" + } + }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "dev": true, + "dependencies": { + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", + "dev": true + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dev": true, + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/dom-serializer/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "dev": true, + "dependencies": { + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dotenv": { + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/dotenv-expand": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz", + "integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/duplexify/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/duplexify/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/duplexify/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/duplexify/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "node_modules/ejs": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", + "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", + "dev": true, + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.670", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.670.tgz", + "integrity": "sha512-hcijYOWjOtjKrKPtNA6tuLlA/bTLO3heFG8pQA6mLpq7dRydSWicXova5lyxDzp1iVJaYhK7J2OQlGE52KYn7A==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/endent": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/endent/-/endent-2.1.0.tgz", + "integrity": "sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==", + "dev": true, + "dependencies": { + "dedent": "^0.7.0", + "fast-json-parse": "^1.0.3", + "objectorarray": "^1.0.5" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.16.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz", + "integrity": "sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/envinfo": { + "version": "7.11.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.11.1.tgz", + "integrity": "sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg==", + "dev": true, + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-module-lexer": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.2.tgz", + "integrity": "sha512-7nOqkomXZEaxUDJw21XZNtRk739QvrPSoZoRtbsEfcii00vdzZUh6zh1CQwHhrib8MdEtJfv5rJiGeb4KuV/vw==", + "dev": true + }, + "node_modules/esbuild": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", + "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.20.2", + "@esbuild/android-arm": "0.20.2", + "@esbuild/android-arm64": "0.20.2", + "@esbuild/android-x64": "0.20.2", + "@esbuild/darwin-arm64": "0.20.2", + "@esbuild/darwin-x64": "0.20.2", + "@esbuild/freebsd-arm64": "0.20.2", + "@esbuild/freebsd-x64": "0.20.2", + "@esbuild/linux-arm": "0.20.2", + "@esbuild/linux-arm64": "0.20.2", + "@esbuild/linux-ia32": "0.20.2", + "@esbuild/linux-loong64": "0.20.2", + "@esbuild/linux-mips64el": "0.20.2", + "@esbuild/linux-ppc64": "0.20.2", + "@esbuild/linux-riscv64": "0.20.2", + "@esbuild/linux-s390x": "0.20.2", + "@esbuild/linux-x64": "0.20.2", + "@esbuild/netbsd-x64": "0.20.2", + "@esbuild/openbsd-x64": "0.20.2", + "@esbuild/sunos-x64": "0.20.2", + "@esbuild/win32-arm64": "0.20.2", + "@esbuild/win32-ia32": "0.20.2", + "@esbuild/win32-x64": "0.20.2" + } + }, + "node_modules/esbuild-plugin-alias": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/esbuild-plugin-alias/-/esbuild-plugin-alias-0.2.1.tgz", + "integrity": "sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==", + "dev": true + }, + "node_modules/esbuild-register": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.5.0.tgz", + "integrity": "sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==", + "dev": true, + "dependencies": { + "debug": "^4.3.4" + }, + "peerDependencies": { + "esbuild": ">=0.12 <1" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/eslint": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", + "dev": true, + "peer": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", + "@humanwhocodes/config-array": "^0.11.13", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-plugin-storybook": { + "version": "0.6.15", + "resolved": "https://registry.npmjs.org/eslint-plugin-storybook/-/eslint-plugin-storybook-0.6.15.tgz", + "integrity": "sha512-lAGqVAJGob47Griu29KXYowI4G7KwMoJDOkEip8ujikuDLxU+oWJ1l0WL6F2oDO4QiyUFXvtDkEkISMOPzo+7w==", + "dev": true, + "dependencies": { + "@storybook/csf": "^0.0.1", + "@typescript-eslint/utils": "^5.45.0", + "requireindex": "^1.1.0", + "ts-dedent": "^2.2.0" + }, + "engines": { + "node": "12.x || 14.x || >= 16" + }, + "peerDependencies": { + "eslint": ">=6" + } + }, + "node_modules/eslint-plugin-storybook/node_modules/@storybook/csf": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.0.1.tgz", + "integrity": "sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.15" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "peer": true + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "peer": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "peer": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "peer": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "peer": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "peer": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree/node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "peer": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "peer": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "dev": true, + "dependencies": { + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/express": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "dev": true, + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.6.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/express/node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-parse": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fast-json-parse/-/fast-json-parse-1.0.3.tgz", + "integrity": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==", + "dev": true + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "peer": true + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fetch-retry": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.6.tgz", + "integrity": "sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==", + "dev": true + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "peer": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-system-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-2.3.0.tgz", + "integrity": "sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==", + "dev": true, + "dependencies": { + "fs-extra": "11.1.1", + "ramda": "0.29.0" + } + }, + "node_modules/file-system-cache/node_modules/fs-extra": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", + "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "dev": true, + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-cache-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-cache-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-cache-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-cache-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-cache-dir/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "dev": true + }, + "node_modules/flow-parser": { + "version": "0.231.0", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.231.0.tgz", + "integrity": "sha512-WVzuqwq7ZnvBceCG0DGeTQebZE+iIU0mlk5PmJgYj9DDrt+0isGC2m1ezW9vxL4V+HERJJo9ExppOnwKH2op6Q==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-8.0.0.tgz", + "integrity": "sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.7", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "cosmiconfig": "^7.0.1", + "deepmerge": "^4.2.2", + "fs-extra": "^10.0.0", + "memfs": "^3.4.1", + "minimatch": "^3.0.4", + "node-abort-controller": "^3.0.1", + "schema-utils": "^3.1.1", + "semver": "^7.3.5", + "tapable": "^2.2.1" + }, + "engines": { + "node": ">=12.13.0", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "typescript": ">3.6.0", + "webpack": "^5.11.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fs-minipass/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/fs-monkey": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", + "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/generic-names": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-4.0.0.tgz", + "integrity": "sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==", + "dev": true, + "dependencies": { + "loader-utils": "^3.2.0" + } + }, + "node_modules/generic-names/node_modules/loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "dev": true, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-func-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", + "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-npm-tarball-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-npm-tarball-url/-/get-npm-tarball-url-2.1.0.tgz", + "integrity": "sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==", + "dev": true, + "engines": { + "node": ">=12.17" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/giget": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/giget/-/giget-1.2.3.tgz", + "integrity": "sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==", + "dev": true, + "dependencies": { + "citty": "^0.1.6", + "consola": "^3.2.3", + "defu": "^6.1.4", + "node-fetch-native": "^1.6.3", + "nypm": "^0.3.8", + "ohash": "^1.1.3", + "pathe": "^1.1.2", + "tar": "^6.2.0" + }, + "bin": { + "giget": "dist/cli.mjs" + } + }, + "node_modules/github-slugger": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz", + "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==", + "dev": true + }, + "node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "peer": true + }, + "node_modules/gunzip-maybe": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz", + "integrity": "sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==", + "dev": true, + "dependencies": { + "browserify-zlib": "^0.1.4", + "is-deflate": "^1.0.0", + "is-gzip": "^1.0.0", + "peek-stream": "^1.1.0", + "pumpify": "^1.3.3", + "through2": "^2.0.3" + }, + "bin": { + "gunzip-maybe": "bin.js" + } + }, + "node_modules/handlebars": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.2", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hast-util-heading-rank": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-heading-rank/-/hast-util-heading-rank-3.0.0.tgz", + "integrity": "sha512-EJKb8oMUXVHcWZTDepnr+WNbfnXKFNf9duMesmr4S8SXTJBJ9M4Yok08pu9vxdJwdlGRhVumk9mEhkEvKGifwA==", + "dev": true, + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-is-element": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz", + "integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==", + "dev": true, + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-string": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-to-string/-/hast-util-to-string-3.0.0.tgz", + "integrity": "sha512-OGkAxX1Ua3cbcW6EJ5pT/tslVb90uViVkcJ4ZZIMW/R33DX/AkcJcRrPebPwJkHYwlDHXz4aIwvAAaAdtrACFA==", + "dev": true, + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dev": true, + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "dev": true, + "dependencies": { + "whatwg-encoding": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-entities": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz", + "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ] + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dev": true, + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-tags": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/html-webpack-plugin": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.0.tgz", + "integrity": "sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==", + "dev": true, + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.20.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true }, - "victory-voronoi-container": { - "version": "35.4.8", - "requires": { - "delaunay-find": "0.0.5", - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "react-fast-compare": "^2.0.0", - "victory-core": "^35.4.8", - "victory-tooltip": "^35.4.8" - } + "webpack": { + "optional": true + } + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/htmlparser2/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-replace-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", + "integrity": "sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==", + "dev": true + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/immutable": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.2.tgz", + "integrity": "sha512-oGXzbEDem9OOpDWZu88jGiYCvIsLHMvGw+8OXlpsvTFvIQplQbjg1B1cvKg8f7Hoch6+NGjpPsH1Fr+Mc2D1aA==" + }, + "node_modules/import-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-3.0.0.tgz", + "integrity": "sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==", + "dev": true, + "dependencies": { + "import-from": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz", + "integrity": "sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-local/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-local/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "engines": { + "node": ">=12" + } + }, + "node_modules/ip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.1.tgz", + "integrity": "sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==", + "dev": true + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-4.0.1.tgz", + "integrity": "sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-builtin-module": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", + "dev": true, + "dependencies": { + "builtin-modules": "^3.3.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-deflate": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz", + "integrity": "sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==", + "dev": true + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-gzip": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz", + "integrity": "sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", + "dev": true + }, + "node_modules/is-nan": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", + "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true + }, + "node_modules/is-reference": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz", + "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==", + "dev": true, + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "dev": true, + "dependencies": { + "which-typed-array": "^1.1.11" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/istanbul-lib-report/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jake": { + "version": "10.8.7", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", + "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", + "dev": true, + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", + "dev": true, + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", + "import-local": "^3.0.2", + "jest-cli": "^29.7.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", + "dev": true, + "dependencies": { + "execa": "^5.0.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/dedent": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "dev": true, + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/jest-circus/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "dev": true, + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true }, - "victory-zoom-container": { - "version": "35.4.8", - "requires": { - "lodash": "^4.17.19", - "prop-types": "^15.5.8", - "victory-core": "^35.4.8" - } + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/jest-config/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-environment-jsdom": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz", + "integrity": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/jsdom": "^20.0.0", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0", + "jsdom": "^20.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jest-environment-jsdom/node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-leak-detector/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", + "dev": true, + "dependencies": { + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/jest-runtime/node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.7.0", + "semver": "^7.5.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-validate/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-watcher": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "dev": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jscodeshift": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.15.2.tgz", + "integrity": "sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.23.0", + "@babel/parser": "^7.23.0", + "@babel/plugin-transform-class-properties": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.23.0", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11", + "@babel/plugin-transform-optional-chaining": "^7.23.0", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/preset-flow": "^7.22.15", + "@babel/preset-typescript": "^7.23.0", + "@babel/register": "^7.22.15", + "babel-core": "^7.0.0-bridge.0", + "chalk": "^4.1.2", + "flow-parser": "0.*", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.4", + "neo-async": "^2.5.0", + "node-dir": "^0.1.17", + "recast": "^0.23.3", + "temp": "^0.8.4", + "write-file-atomic": "^2.3.0" + }, + "bin": { + "jscodeshift": "bin/jscodeshift.js" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" + }, + "peerDependenciesMeta": { + "@babel/preset-env": { + "optional": true + } + } + }, + "node_modules/jscodeshift/node_modules/write-file-atomic": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/jsdom": { + "version": "20.0.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.6", + "acorn": "^8.8.1", + "acorn-globals": "^7.0.0", + "cssom": "^0.5.0", + "cssstyle": "^2.3.0", + "data-urls": "^3.0.2", + "decimal.js": "^10.4.2", + "domexception": "^4.0.0", + "escodegen": "^2.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.2", + "parse5": "^7.1.1", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.2", + "w3c-xmlserializer": "^4.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0", + "ws": "^8.11.0", + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jsdom/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "peer": true + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lazy-universal-dotenv": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lazy-universal-dotenv/-/lazy-universal-dotenv-4.0.0.tgz", + "integrity": "sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==", + "dev": true, + "dependencies": { + "app-root-dir": "^1.0.2", + "dotenv": "^16.0.0", + "dotenv-expand": "^10.0.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "peer": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "dev": true + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "peer": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/longest-streak": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", + "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/loupe": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.7.tgz", + "integrity": "sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==", + "dev": true, + "dependencies": { + "get-func-name": "^2.0.1" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "dev": true, + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/magic-string": { + "version": "0.30.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.7.tgz", + "integrity": "sha512-8vBuFF/I/+OSLRmdf2wwFCJCz+nSn0m6DPvGH1fS/KiQoSaR+sETbov0eIk9KhEKy8CYqIkIAnbohxT/4H0kuA==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/map-or-similar": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz", + "integrity": "sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==", + "dev": true + }, + "node_modules/markdown-table": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.3.tgz", + "integrity": "sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/markdown-to-jsx": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.3.2.tgz", + "integrity": "sha512-B+28F5ucp83aQm+OxNrPkS8z0tMKaeHiy0lHJs3LqCyDQFtWuenaIrkaVTgAm1pf1AU85LXltva86hlaT17i8Q==", + "dev": true, + "engines": { + "node": ">= 10" + }, + "peerDependencies": { + "react": ">= 0.14.0" + } + }, + "node_modules/mdast-util-find-and-replace": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.1.tgz", + "integrity": "sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==", + "dev": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "escape-string-regexp": "^5.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mdast-util-from-markdown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.0.tgz", + "integrity": "sha512-n7MTOr/z+8NAX/wmhhDji8O3bRvPTV/U0oTCaZJkjhPSKTPhS3xufVhKGF8s1pJ7Ox4QgoIU7KHseh09S+9rTA==", + "dev": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark": "^4.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-decode-string": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.0.0.tgz", + "integrity": "sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==", + "dev": true, + "dependencies": { + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-gfm-autolink-literal": "^2.0.0", + "mdast-util-gfm-footnote": "^2.0.0", + "mdast-util-gfm-strikethrough": "^2.0.0", + "mdast-util-gfm-table": "^2.0.0", + "mdast-util-gfm-task-list-item": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-autolink-literal": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.0.tgz", + "integrity": "sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==", + "dev": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "ccount": "^2.0.0", + "devlop": "^1.0.0", + "mdast-util-find-and-replace": "^3.0.0", + "micromark-util-character": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-footnote": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.0.0.tgz", + "integrity": "sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==", + "dev": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.1.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-strikethrough": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", + "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", + "dev": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", + "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", + "dev": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "markdown-table": "^3.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-gfm-task-list-item": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", + "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", + "dev": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "devlop": "^1.0.0", + "mdast-util-from-markdown": "^2.0.0", + "mdast-util-to-markdown": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-phrasing": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", + "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", + "dev": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-markdown": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.0.tgz", + "integrity": "sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==", + "dev": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "@types/unist": "^3.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^4.0.0", + "mdast-util-to-string": "^4.0.0", + "micromark-util-decode-string": "^2.0.0", + "unist-util-visit": "^5.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "dev": true, + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dev": true, + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/memoizerific": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz", + "integrity": "sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==", + "dev": true, + "dependencies": { + "map-or-similar": "^1.5.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromark": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.0.tgz", + "integrity": "sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-core-commonmark": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.0.tgz", + "integrity": "sha512-jThOz/pVmAYUtkroV3D5c1osFXAMv9e0ypGDOIZuCeAe91/sD6BoE2Sjzt30yuXtwOYUmySOhMas/PVyh02itA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "devlop": "^1.0.0", + "micromark-factory-destination": "^2.0.0", + "micromark-factory-label": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-factory-title": "^2.0.0", + "micromark-factory-whitespace": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-html-tag-name": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-subtokenize": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-extension-gfm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", + "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", + "dev": true, + "dependencies": { + "micromark-extension-gfm-autolink-literal": "^2.0.0", + "micromark-extension-gfm-footnote": "^2.0.0", + "micromark-extension-gfm-strikethrough": "^2.0.0", + "micromark-extension-gfm-table": "^2.0.0", + "micromark-extension-gfm-tagfilter": "^2.0.0", + "micromark-extension-gfm-task-list-item": "^2.0.0", + "micromark-util-combine-extensions": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-autolink-literal": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.0.0.tgz", + "integrity": "sha512-rTHfnpt/Q7dEAK1Y5ii0W8bhfJlVJFnJMHIPisfPK3gpVNuOP0VnRl96+YJ3RYWV/P4gFeQoGKNlT3RhuvpqAg==", + "dev": true, + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-footnote": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.0.0.tgz", + "integrity": "sha512-6Rzu0CYRKDv3BfLAUnZsSlzx3ak6HAoI85KTiijuKIz5UxZxbUI+pD6oHgw+6UtQuiRwnGRhzMmPRv4smcz0fg==", + "dev": true, + "dependencies": { + "devlop": "^1.0.0", + "micromark-core-commonmark": "^2.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-normalize-identifier": "^2.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-strikethrough": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.0.0.tgz", + "integrity": "sha512-c3BR1ClMp5fxxmwP6AoOY2fXO9U8uFMKs4ADD66ahLTNcwzSCyRVU4k7LPV5Nxo/VJiR4TdzxRQY2v3qIUceCw==", + "dev": true, + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-classify-character": "^2.0.0", + "micromark-util-resolve-all": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.0.0.tgz", + "integrity": "sha512-PoHlhypg1ItIucOaHmKE8fbin3vTLpDOUg8KAr8gRCF1MOZI9Nquq2i/44wFvviM4WuxJzc3demT8Y3dkfvYrw==", + "dev": true, + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-tagfilter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz", + "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", + "dev": true, + "dependencies": { + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-extension-gfm-task-list-item": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.0.1.tgz", + "integrity": "sha512-cY5PzGcnULaN5O7T+cOzfMoHjBW7j+T9D2sucA5d/KbsBTPcYdebm9zUd9zzdgJGCwahV+/W78Z3nbulBYVbTw==", + "dev": true, + "dependencies": { + "devlop": "^1.0.0", + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-factory-destination": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz", + "integrity": "sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-label": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz", + "integrity": "sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-space": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz", + "integrity": "sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-title": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz", + "integrity": "sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-factory-whitespace": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz", + "integrity": "sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-factory-space": "^2.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-character": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", + "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-chunked": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz", + "integrity": "sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-classify-character": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz", + "integrity": "sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-combine-extensions": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz", + "integrity": "sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-chunked": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-numeric-character-reference": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz", + "integrity": "sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-decode-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.0.tgz", + "integrity": "sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^2.0.0", + "micromark-util-decode-numeric-character-reference": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz", + "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-html-tag-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz", + "integrity": "sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-normalize-identifier": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz", + "integrity": "sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-resolve-all": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz", + "integrity": "sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz", + "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-subtokenize": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.0.tgz", + "integrity": "sha512-vc93L1t+gpR3p8jxeVdaYlbV2jTYteDje19rNSS/H5dlhxUYll5Fy6vJ2cDwP8RnsXi818yGty1ayP55y3W6fg==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "dependencies": { + "devlop": "^1.0.0", + "micromark-util-chunked": "^2.0.0", + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", + "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromark-util-types": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", + "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ] + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-svg-data-uri": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz", + "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==", + "dev": true, + "bin": { + "mini-svg-data-uri": "cli.js" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-abort-controller": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", + "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", + "dev": true + }, + "node_modules/node-dir": { + "version": "0.1.17", + "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", + "integrity": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==", + "dev": true, + "dependencies": { + "minimatch": "^3.0.2" + }, + "engines": { + "node": ">= 0.10.5" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-fetch-native": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.4.tgz", + "integrity": "sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==", + "dev": true + }, + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nwsapi": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", + "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==", + "dev": true + }, + "node_modules/nypm": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/nypm/-/nypm-0.3.8.tgz", + "integrity": "sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==", + "dev": true, + "dependencies": { + "citty": "^0.1.6", + "consola": "^3.2.3", + "execa": "^8.0.1", + "pathe": "^1.1.2", + "ufo": "^1.4.0" + }, + "bin": { + "nypm": "dist/cli.mjs" + }, + "engines": { + "node": "^14.16.0 || >=16.10.0" + } + }, + "node_modules/nypm/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/nypm/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/nypm/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "dev": true, + "engines": { + "node": ">=16.17.0" + } + }, + "node_modules/nypm/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/nypm/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/nypm/node_modules/npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", + "dev": true, + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/nypm/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/nypm/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/nypm/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/nypm/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/objectorarray": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/objectorarray/-/objectorarray-1.0.5.tgz", + "integrity": "sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==", + "dev": true + }, + "node_modules/ohash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.3.tgz", + "integrity": "sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==", + "dev": true + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dev": true, + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "peer": true, + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-queue": { + "version": "6.6.2", + "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz", + "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==", + "dev": true, + "dependencies": { + "eventemitter3": "^4.0.4", + "p-timeout": "^3.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-timeout": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", + "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", + "dev": true, + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pako": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", + "dev": true + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "dev": true, + "dependencies": { + "entities": "^4.4.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "dev": true, + "dependencies": { + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/pathe": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", + "dev": true + }, + "node_modules/pathval": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/peek-stream": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.3.tgz", + "integrity": "sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "duplexify": "^3.5.0", + "through2": "^2.0.3" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", + "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", + "dev": true, + "dependencies": { + "find-up": "^5.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/polished": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/polished/-/polished-4.2.2.tgz", + "integrity": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.17.8" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/postcss-colormin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-load-config": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", + "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "dev": true, + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^1.10.2" + }, + "engines": { + "node": ">= 10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true }, - "w3c-hr-time": { - "version": "1.0.2", - "dev": true, - "requires": { - "browser-process-hrtime": "^1.0.0" - } + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-merge-rules": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "dev": true, + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-modules": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-4.3.1.tgz", + "integrity": "sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==", + "dev": true, + "dependencies": { + "generic-names": "^4.0.0", + "icss-replace-symbols": "^1.1.0", + "lodash.camelcase": "^4.3.0", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "string-hash": "^1.1.1" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.4.tgz", + "integrity": "sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.1.1.tgz", + "integrity": "sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "dev": true, + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "dev": true, + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", + "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", + "dev": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/pretty-format/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true + }, + "node_modules/pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/promise.series": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/promise.series/-/promise.series-0.2.0.tgz", + "integrity": "sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==", + "dev": true, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/pumpify/node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pure-rand": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] + }, + "node_modules/qs": { + "version": "6.12.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.12.0.tgz", + "integrity": "sha512-trVZiI6RMOkO476zLGaBIzszOdFPnCCXHPG9kn0yuS1uz6xdVxPfZdB3vUig9pxPFDM9BRAgz/YUIVQ1/vuiUg==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ramda": { + "version": "0.29.0", + "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.29.0.tgz", + "integrity": "sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/ramda" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-colorful": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.6.1.tgz", + "integrity": "sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==", + "dev": true, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/react-docgen": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-7.0.3.tgz", + "integrity": "sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.18.9", + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9", + "@types/babel__core": "^7.18.0", + "@types/babel__traverse": "^7.18.0", + "@types/doctrine": "^0.0.9", + "@types/resolve": "^1.20.2", + "doctrine": "^3.0.0", + "resolve": "^1.22.1", + "strip-indent": "^4.0.0" + }, + "engines": { + "node": ">=16.14.0" + } + }, + "node_modules/react-docgen-typescript": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz", + "integrity": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==", + "dev": true, + "peerDependencies": { + "typescript": ">= 4.3.x" + } + }, + "node_modules/react-docgen/node_modules/@types/doctrine": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.9.tgz", + "integrity": "sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==", + "dev": true + }, + "node_modules/react-docgen/node_modules/strip-indent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", + "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", + "dev": true, + "dependencies": { + "min-indent": "^1.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-element-to-jsx-string": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-15.0.0.tgz", + "integrity": "sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==", + "dev": true, + "dependencies": { + "@base2/pretty-print-object": "1.0.1", + "is-plain-object": "5.0.0", + "react-is": "18.1.0" + }, + "peerDependencies": { + "react": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0", + "react-dom": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0" + } + }, + "node_modules/react-element-to-jsx-string/node_modules/react-is": { + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz", + "integrity": "sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==", + "dev": true + }, + "node_modules/react-fast-compare": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", + "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==" + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true + }, + "node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/recast": { + "version": "0.23.6", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.6.tgz", + "integrity": "sha512-9FHoNjX1yjuesMwuthAmPKabxYQdOgihFYmT5ebXfYGBcnqXZf3WOVz+5foEZ8Y83P4ZY6yQD5GMmtV+pgCCAQ==", + "dev": true, + "dependencies": { + "ast-types": "^0.16.1", + "esprima": "~4.0.0", + "source-map": "~0.6.1", + "tiny-invariant": "^1.3.3", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "dev": true + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dev": true, + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/rehype-external-links": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/rehype-external-links/-/rehype-external-links-3.0.0.tgz", + "integrity": "sha512-yp+e5N9V3C6bwBeAC4n796kc86M4gJCdlVhiMTxIrJG5UHDMh+PJANf9heqORJbt1nrCbDwIlAZKjANIaVBbvw==", + "dev": true, + "dependencies": { + "@types/hast": "^3.0.0", + "@ungap/structured-clone": "^1.0.0", + "hast-util-is-element": "^3.0.0", + "is-absolute-url": "^4.0.0", + "space-separated-tokens": "^2.0.0", + "unist-util-visit": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-slug": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/rehype-slug/-/rehype-slug-6.0.0.tgz", + "integrity": "sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==", + "dev": true, + "dependencies": { + "@types/hast": "^3.0.0", + "github-slugger": "^2.0.0", + "hast-util-heading-rank": "^3.0.0", + "hast-util-to-string": "^3.0.0", + "unist-util-visit": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remark-gfm": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.0.tgz", + "integrity": "sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==", + "dev": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-gfm": "^3.0.0", + "micromark-extension-gfm": "^3.0.0", + "remark-parse": "^11.0.0", + "remark-stringify": "^11.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-parse": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", + "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", + "dev": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-from-markdown": "^2.0.0", + "micromark-util-types": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-stringify": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", + "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", + "dev": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-to-markdown": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dev": true, + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requireindex": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/requireindex/-/requireindex-1.2.0.tgz", + "integrity": "sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==", + "dev": true, + "engines": { + "node": ">=0.10.5" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.11.0.tgz", + "integrity": "sha512-2xIbaXDXjf3u2tajvA5xROpib7eegJ9Y/uPlSFhXLNpK9ampCczXAhLEb5yLzJyG3LAdI1NWtNjDXiLyniNdjQ==", + "dev": true, + "dependencies": { + "@types/estree": "1.0.5" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.11.0", + "@rollup/rollup-android-arm64": "4.11.0", + "@rollup/rollup-darwin-arm64": "4.11.0", + "@rollup/rollup-darwin-x64": "4.11.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.11.0", + "@rollup/rollup-linux-arm64-gnu": "4.11.0", + "@rollup/rollup-linux-arm64-musl": "4.11.0", + "@rollup/rollup-linux-riscv64-gnu": "4.11.0", + "@rollup/rollup-linux-x64-gnu": "4.11.0", + "@rollup/rollup-linux-x64-musl": "4.11.0", + "@rollup/rollup-win32-arm64-msvc": "4.11.0", + "@rollup/rollup-win32-ia32-msvc": "4.11.0", + "@rollup/rollup-win32-x64-msvc": "4.11.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup-plugin-copy": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-copy/-/rollup-plugin-copy-3.5.0.tgz", + "integrity": "sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==", + "dev": true, + "dependencies": { + "@types/fs-extra": "^8.0.1", + "colorette": "^1.1.0", + "fs-extra": "^8.1.0", + "globby": "10.0.1", + "is-plain-object": "^3.0.0" + }, + "engines": { + "node": ">=8.3" + } + }, + "node_modules/rollup-plugin-copy/node_modules/colorette": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", + "dev": true + }, + "node_modules/rollup-plugin-copy/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/rollup-plugin-copy/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup-plugin-copy/node_modules/globby": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.1.tgz", + "integrity": "sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==", + "dev": true, + "dependencies": { + "@types/glob": "^7.1.1", + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "glob": "^7.1.3", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/rollup-plugin-copy/node_modules/is-plain-object": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.1.tgz", + "integrity": "sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/rollup-plugin-copy/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/rollup-plugin-copy/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/rollup-plugin-dts": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-dts/-/rollup-plugin-dts-6.1.0.tgz", + "integrity": "sha512-ijSCPICkRMDKDLBK9torss07+8dl9UpY9z1N/zTeA1cIqdzMlpkV3MOOC7zukyvQfDyxa1s3Dl2+DeiP/G6DOw==", + "dev": true, + "dependencies": { + "magic-string": "^0.30.4" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/Swatinem" + }, + "optionalDependencies": { + "@babel/code-frame": "^7.22.13" + }, + "peerDependencies": { + "rollup": "^3.29.4 || ^4", + "typescript": "^4.5 || ^5.0" + } + }, + "node_modules/rollup-plugin-peer-deps-external": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/rollup-plugin-peer-deps-external/-/rollup-plugin-peer-deps-external-2.2.4.tgz", + "integrity": "sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==", + "dev": true, + "peerDependencies": { + "rollup": "*" + } + }, + "node_modules/rollup-plugin-postcss": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-postcss/-/rollup-plugin-postcss-4.0.2.tgz", + "integrity": "sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "concat-with-sourcemaps": "^1.1.0", + "cssnano": "^5.0.1", + "import-cwd": "^3.0.0", + "p-queue": "^6.6.2", + "pify": "^5.0.0", + "postcss-load-config": "^3.0.0", + "postcss-modules": "^4.0.0", + "promise.series": "^0.2.0", + "resolve": "^1.19.0", + "rollup-pluginutils": "^2.8.2", + "safe-identifier": "^0.4.2", + "style-inject": "^0.3.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "postcss": "8.x" + } + }, + "node_modules/rollup-plugin-postcss/node_modules/pify": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz", + "integrity": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/rollup-plugin-version-injector": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/rollup-plugin-version-injector/-/rollup-plugin-version-injector-1.3.3.tgz", + "integrity": "sha512-+Rrf0xIFHkwFGuMfphVlAOtd9FlhHFh3vrDwamJ6+YR3IxebRHGVT879qwWzZ1CpWMCLlngb2MmHW5wC5EJqvg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "dateformat": "^4.2.1", + "lodash": "^4.17.20" + } + }, + "node_modules/rollup-pluginutils": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", + "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", + "dev": true, + "dependencies": { + "estree-walker": "^0.6.1" + } + }, + "node_modules/rollup-pluginutils/node_modules/estree-walker": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", + "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==", + "dev": true + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-identifier": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/safe-identifier/-/safe-identifier-0.4.2.tgz", + "integrity": "sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==", + "dev": true + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/sass": { + "version": "1.70.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.70.0.tgz", + "integrity": "sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==", + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-loader": { + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-14.1.1.tgz", + "integrity": "sha512-QX8AasDg75monlybel38BZ49JP5Z+uSKfKwF2rO7S74BywaRmGQMUBw9dtkS+ekyM/QnP+NOrRYq8ABMZ9G8jw==", + "dev": true, + "dependencies": { + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true }, - "walker": { - "version": "1.0.7", - "dev": true, - "requires": { - "makeerror": "1.0.x" - } + "node-sass": { + "optional": true }, - "watchpack": { - "version": "2.3.1", - "dev": true, - "peer": true, - "requires": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - } + "sass": { + "optional": true }, - "webidl-conversions": { - "version": "4.0.2", - "dev": true + "sass-embedded": { + "optional": true }, "webpack": { - "version": "5.65.0", - "dev": true, - "peer": true, - "requires": { - "@types/eslint-scope": "^3.7.0", - "@types/estree": "^0.0.50", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.4.1", - "acorn-import-assertions": "^1.7.6", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.8.3", - "es-module-lexer": "^0.9.0", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.4", - "json-parse-better-errors": "^1.0.2", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.3.1", - "webpack-sources": "^3.2.2" - }, - "dependencies": { - "@types/estree": { - "version": "0.0.50", - "dev": true, - "peer": true - }, - "acorn": { - "version": "8.6.0", - "dev": true, - "peer": true - }, - "acorn-import-assertions": { - "version": "1.8.0", - "dev": true, - "peer": true, - "requires": {} - } - } - }, - "webpack-sources": { - "version": "3.2.2", - "dev": true, - "peer": true - }, - "whatwg-encoding": { - "version": "1.0.5", - "dev": true, - "requires": { - "iconv-lite": "0.4.24" - } - }, - "whatwg-mimetype": { - "version": "2.3.0", - "dev": true - }, - "whatwg-url": { - "version": "6.5.0", - "dev": true, - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, - "which": { - "version": "1.3.1", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "which-boxed-primitive": { - "version": "1.0.2", - "dev": true, - "requires": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - } - }, - "which-module": { - "version": "2.0.0", - "dev": true - }, - "wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "dev": true, - "requires": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "word-wrap": { - "version": "1.2.3", - "dev": true - }, - "wrap-ansi": { - "version": "5.1.0", - "dev": true, - "requires": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "dev": true - }, - "string-width": { - "version": "3.1.0", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } - } - }, - "wrappy": { - "version": "1.0.2", - "dev": true - }, - "write-file-atomic": { - "version": "2.4.1", - "dev": true, - "requires": { - "graceful-fs": "^4.1.11", - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" - } - }, - "ws": { - "version": "5.2.3", - "dev": true, - "requires": { - "async-limiter": "~1.0.0" - } - }, - "xml-name-validator": { - "version": "3.0.0", - "dev": true - }, - "y18n": { - "version": "4.0.1", - "dev": true - }, - "yallist": { - "version": "4.0.0", - "dev": true + "optional": true + } + } + }, + "node_modules/saxes": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "dev": true, + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=v12.22.7" + } + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shallowequal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/smob": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/smob/-/smob-1.4.0.tgz", + "integrity": "sha512-MqR3fVulhjWuRNSMydnTlweu38UhQ0HXM4buStD/S3mc/BzX3CuM9OmhyQpmtYCvoYdl5ris6TI0ZqH355Ymqg==", + "dev": true + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz", + "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==", + "dev": true + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", + "dev": true + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stop-iteration-iterator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "dev": true, + "dependencies": { + "internal-slot": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/store2": { + "version": "2.14.3", + "resolved": "https://registry.npmjs.org/store2/-/store2-2.14.3.tgz", + "integrity": "sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==", + "dev": true + }, + "node_modules/storybook": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/storybook/-/storybook-8.0.4.tgz", + "integrity": "sha512-FUr3Uc2dSAQ80jINH5fSXz7zD7Ncn08OthROjwRtHAH+jMf4wxyZ+RhF3heFy9xLot2/HXOLIWyHyzZZMtGhxg==", + "dev": true, + "dependencies": { + "@storybook/cli": "8.0.4" + }, + "bin": { + "sb": "index.js", + "storybook": "index.js" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/stream-shift": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", + "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==", + "dev": true + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-hash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", + "integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==", + "dev": true + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-inject": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/style-inject/-/style-inject-0.3.0.tgz", + "integrity": "sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==", + "dev": true + }, + "node_modules/style-loader": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz", + "integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==", + "dev": true, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/styled-components": { + "version": "6.1.8", + "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-6.1.8.tgz", + "integrity": "sha512-PQ6Dn+QxlWyEGCKDS71NGsXoVLKfE1c3vApkvDYS5KAK+V8fNWGhbSUEo9Gg2iaID2tjLXegEW3bZDUGpofRWw==", + "dependencies": { + "@emotion/is-prop-valid": "1.2.1", + "@emotion/unitless": "0.8.0", + "@types/stylis": "4.2.0", + "css-to-react-native": "3.2.0", + "csstype": "3.1.2", + "postcss": "8.4.31", + "shallowequal": "1.1.0", + "stylis": "4.3.1", + "tslib": "2.5.0" + }, + "engines": { + "node": ">= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/styled-components" + }, + "peerDependencies": { + "react": ">= 16.8.0", + "react-dom": ">= 16.8.0" + } + }, + "node_modules/styled-components/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/stylis": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.1.tgz", + "integrity": "sha512-EQepAV+wMsIaGVGX1RECzgrcqRRU/0sYOHkeLsZ3fzHaHXZy4DaOOX0vOlGQdlsjkh3mFHAIlVimpwAs4dslyQ==" + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dev": true, + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/tar": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", + "dev": true, + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-fs/node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/telejson": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/telejson/-/telejson-7.2.0.tgz", + "integrity": "sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==", + "dev": true, + "dependencies": { + "memoizerific": "^1.11.3" + } + }, + "node_modules/temp": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", + "integrity": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==", + "dev": true, + "dependencies": { + "rimraf": "~2.6.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/temp/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/temp/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/tempy": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-1.0.1.tgz", + "integrity": "sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==", + "dev": true, + "dependencies": { + "del": "^6.0.0", + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "5.27.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.27.1.tgz", + "integrity": "sha512-29wAr6UU/oQpnTw5HoadwjUZnFQXGdOfj0LjZ4sVxzqwHh/QVkvr7m8y9WoR4iN3FRitVduTc6KdjcW38Npsug==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.20", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.26.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/terser/node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/terser/node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/test-exclude/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true, + "peer": true + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/through2/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/through2/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/through2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/tiny-invariant": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", + "dev": true + }, + "node_modules/tinyspy": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-2.2.1.tgz", + "integrity": "sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==", + "dev": true, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tocbot": { + "version": "4.25.0", + "resolved": "https://registry.npmjs.org/tocbot/-/tocbot-4.25.0.tgz", + "integrity": "sha512-kE5wyCQJ40hqUaRVkyQ4z5+4juzYsv/eK+aqD97N62YH0TxFhzJvo22RUQQZdO3YnXAk42ZOfOpjVdy+Z0YokA==", + "dev": true + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "dev": true, + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/trough": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/ts-dedent": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz", + "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==", + "dev": true, + "engines": { + "node": ">=6.10" + } + }, + "node_modules/ts-jest": { + "version": "29.1.2", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.2.tgz", + "integrity": "sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==", + "dev": true, + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "^7.5.3", + "yargs-parser": "^21.0.1" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^16.10.0 || ^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3 <6" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true }, - "yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true + "@jest/types": { + "optional": true }, - "yargs": { - "version": "13.3.2", - "dev": true, - "requires": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "dev": true - }, - "find-up": { - "version": "3.0.0", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "dev": true - }, - "locate-path": { - "version": "3.0.0", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.3.0", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "dev": true - }, - "string-width": { - "version": "3.1.0", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } - } + "babel-jest": { + "optional": true }, - "yargs-parser": { - "version": "13.1.2", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } + "esbuild": { + "optional": true + } + } + }, + "node_modules/ts-jest/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/ts-node": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", + "dev": true, + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/ts-node/node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ts-node/node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/tsconfig-paths": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", + "dev": true, + "dependencies": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "peer": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "dev": true, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/ufo": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.3.tgz", + "integrity": "sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==", + "dev": true + }, + "node_modules/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "dev": true, + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unified": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.4.tgz", + "integrity": "sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==", + "dev": true, + "dependencies": { + "@types/unist": "^3.0.0", + "bail": "^2.0.0", + "devlop": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dev": true, + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/unist-util-is": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", + "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", + "dev": true, + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "dev": true, + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", + "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", + "dev": true, + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", + "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", + "dev": true, + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unplugin": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.10.0.tgz", + "integrity": "sha512-CuZtvvO8ua2Wl+9q2jEaqH6m3DoQ38N7pvBYQbbaeNlWGvK2l6GHiKi29aIHDPoSxdUzQ7Unevf1/ugil5X6Pg==", + "dev": true, + "dependencies": { + "acorn": "^8.11.3", + "chokidar": "^3.6.0", + "webpack-sources": "^3.2.3", + "webpack-virtual-modules": "^0.6.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/unplugin/node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/unplugin/node_modules/webpack-virtual-modules": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.1.tgz", + "integrity": "sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==", + "dev": true + }, + "node_modules/untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.3.tgz", + "integrity": "sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==", + "dev": true, + "dependencies": { + "punycode": "^1.4.1", + "qs": "^6.11.2" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "dev": true + }, + "node_modules/util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", + "dev": true + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "dev": true, + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true + }, + "node_modules/v8-to-istanbul": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^2.0.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vfile": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.1.tgz", + "integrity": "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==", + "dev": true, + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz", + "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==", + "dev": true, + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/victory": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory/-/victory-36.9.1.tgz", + "integrity": "sha512-unLRMqyXNU6oiLqIPFKc5LdbQpqd0y8icz/J6ma5jnKfcZvsrrPRffkSv0KNPJ/EZMdRsZAcfOF7nSTOYeru3w==", + "dependencies": { + "victory-area": "^36.9.1", + "victory-axis": "^36.9.1", + "victory-bar": "^36.9.1", + "victory-box-plot": "^36.9.1", + "victory-brush-container": "^36.9.1", + "victory-brush-line": "^36.9.1", + "victory-candlestick": "^36.9.1", + "victory-canvas": "^36.9.1", + "victory-chart": "^36.9.1", + "victory-core": "^36.9.1", + "victory-create-container": "^36.9.1", + "victory-cursor-container": "^36.9.1", + "victory-errorbar": "^36.9.1", + "victory-group": "^36.9.1", + "victory-histogram": "^36.9.1", + "victory-legend": "^36.9.1", + "victory-line": "^36.9.1", + "victory-pie": "^36.9.1", + "victory-polar-axis": "^36.9.1", + "victory-scatter": "^36.9.1", + "victory-selection-container": "^36.9.1", + "victory-shared-events": "^36.9.1", + "victory-stack": "^36.9.1", + "victory-tooltip": "^36.9.1", + "victory-voronoi": "^36.9.1", + "victory-voronoi-container": "^36.9.1", + "victory-zoom-container": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-area": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-area/-/victory-area-36.9.1.tgz", + "integrity": "sha512-rElzHXJBXZ6sFkYs10aFUoUikFI48XZLbFIfL1tzdA74T426fTRQZNlKvjb2s3XL4fcecqVpvlg1I2dkaAszIQ==", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "^36.9.1", + "victory-vendor": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-axis": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-axis/-/victory-axis-36.9.1.tgz", + "integrity": "sha512-s23wAFlE2KFSb6pRlmY4GXL7ZC2poL7jfUJbVWovBDkIUiz5G020ba2+RfMBL4tBTK006OPzQ3GeUPASG7qejA==", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-bar": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-bar/-/victory-bar-36.9.1.tgz", + "integrity": "sha512-XCPKgeSBFItux1dBFpTZD90uqMw0wgd4+xD+sRgagVthTdppS3JV4YPNo1MxC/Gdm6XQfBFckcFpNG1qm3Noqw==", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "^36.9.1", + "victory-vendor": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-box-plot": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-box-plot/-/victory-box-plot-36.9.1.tgz", + "integrity": "sha512-+dSHrA1naP5xEuVeIEoRadE8VL0+QmobJ6qwTxhZyjSwR9CGOelFZEgK4oVzWb7pfSa3dYUlXQRc+UWG02zFVw==", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "^36.9.1", + "victory-vendor": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-brush-container": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-brush-container/-/victory-brush-container-36.9.1.tgz", + "integrity": "sha512-XyLqCQ1LV1QbnWJh1ZlNxzk5Yp8PHqzGH6HLcnnKodZE8FBWTSREgELMQCrcT9NczI2GAA7XNkhGkZcJ4SuBMw==", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-brush-line": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-brush-line/-/victory-brush-line-36.9.1.tgz", + "integrity": "sha512-evk8KThXX425wUvbAXIKLxcbddIB81b1bVGaQW+fuRGQi9ZOB0pCQxC23Pb7wrBaHzn7iyxbPwWbv9jZhfA5RQ==", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-candlestick": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-candlestick/-/victory-candlestick-36.9.1.tgz", + "integrity": "sha512-Ki2dM+xAKznP9YTqPr4wbUbs3qHwWUB/LGRSH753cn/VbvvLJGsw9AjTsDDCjPunlxljRUnISmBlABPQgUwxJg==", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-canvas": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-canvas/-/victory-canvas-36.9.1.tgz", + "integrity": "sha512-MfFrNqmQYrj3IdDx3pqdc67YWDouGJVPq5B2Jd9f71pJhxfbXAAsCC0OB7kDgZjVwzPlH2FpaOfRBan8zUJaPg==", + "dependencies": { + "lodash": "^4.17.19", + "victory-bar": "^36.9.1", + "victory-core": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-chart": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-chart/-/victory-chart-36.9.1.tgz", + "integrity": "sha512-i87Ok1vAeY9LirQt6T7B8tSr7d1vAuZvVv7f1MTTlRLHEAvifBNiGrhZho5ETzvTOXOAM7UjwqzPZze0Gk66cA==", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-axis": "^36.9.1", + "victory-core": "^36.9.1", + "victory-polar-axis": "^36.9.1", + "victory-shared-events": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-core": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-core/-/victory-core-36.9.1.tgz", + "integrity": "sha512-voPTyOyyVipzJPjelxvszVixiI98ApMNb6X9qfaFYK7fHyavF/Hy4sf/Hwq1otatLI7zpr2hC4wF+af6HDELqA==", + "dependencies": { + "lodash": "^4.17.21", + "react-fast-compare": "^3.2.0", + "victory-vendor": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-create-container": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-create-container/-/victory-create-container-36.9.1.tgz", + "integrity": "sha512-L1c66whZAFnChVQdU2E0aYiTy3Wc1cM58V2vZPo1ORea/W9h3ojOW2bpYkG/XLf67PgnFZ299i23UzuC16Z5uw==", + "dependencies": { + "lodash": "^4.17.19", + "victory-brush-container": "^36.9.1", + "victory-core": "^36.9.1", + "victory-cursor-container": "^36.9.1", + "victory-selection-container": "^36.9.1", + "victory-voronoi-container": "^36.9.1", + "victory-zoom-container": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-cursor-container": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-cursor-container/-/victory-cursor-container-36.9.1.tgz", + "integrity": "sha512-jAxlHbebVjIvmyUBf2AVbfk3rpQNyWPSVoozcBAzjDKhrUn5GIPvytg8QvFsShwdCtSob1eSyBEsGkb16F6xnw==", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-errorbar": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-errorbar/-/victory-errorbar-36.9.1.tgz", + "integrity": "sha512-h19jbkd9LuINKCH8dhXSwSt/UuCiphH75+j3rbSQF9kibzOpUa+WT2IbvHcZEig7obuvj+p2734Ve2Lx4xDE6A==", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-group": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-group/-/victory-group-36.9.1.tgz", + "integrity": "sha512-FJwZbrwMJSR/ucj4rYXKYJ+R6oDNsHPG2OvVs4KWkMSSp1Ld/0/V42qFqFNixcLAEcD5ACYtyigZOmS8VEnSnA==", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "^36.9.1", + "victory-shared-events": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-histogram": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-histogram/-/victory-histogram-36.9.1.tgz", + "integrity": "sha512-GIsY8S7ouVvvO5xQpUEWOrS8lQfWpZQNINtvvPsYgDidQtBeOfHi4S1yg9Txrs2kHzZ7uy2LpMcOoyGXdG0V6Q==", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-bar": "^36.9.1", + "victory-core": "^36.9.1", + "victory-vendor": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-legend": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-legend/-/victory-legend-36.9.1.tgz", + "integrity": "sha512-NVWJzEJgm2+LH94b6aUQ96M58TzAgKP9wXlQC/CuYLMqK45RiLwg7pkSNuXBdtQiJgpD3W6d6klHQmUP2JkNzA==", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-line": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-line/-/victory-line-36.9.1.tgz", + "integrity": "sha512-WfnDMI5mYN+7rC21yG3IXLIkGL+xNPAFDYikCwtKD9MnHUqk1k/HMGTH0BCVPgXagwIzd8aGpbJGlvcfRr1Kvg==", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "^36.9.1", + "victory-vendor": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-pie": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-pie/-/victory-pie-36.9.1.tgz", + "integrity": "sha512-TjfGe1Wd8cWaV7Ldd2AgPstAT0qbxY8EHYj2YyB93qfZCwdLQqxEmDobl+T+BmnRtCodXUWdghkLvVggf4N0bQ==", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "^36.9.1", + "victory-vendor": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-polar-axis": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-polar-axis/-/victory-polar-axis-36.9.1.tgz", + "integrity": "sha512-C7oPeRzG0Mn+Veu8qI1lVgiBMyZwdrvnplUi6AnFvYf9wURoFjyC+DQ7Eh5IH4TeVQz9rr9ksiliFtXPOHCwvg==", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-scatter": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-scatter/-/victory-scatter-36.9.1.tgz", + "integrity": "sha512-n5h/PUW2pHwiBJi0gLt5D5/jM3ZNXnFqZyjFkiKP6nztUtLRQfjcDMwmRWFOF/WZS/e2C7qMYizuXmxuU5ZVOw==", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-selection-container": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-selection-container/-/victory-selection-container-36.9.1.tgz", + "integrity": "sha512-yugHpsS+JHmhJdhduuDHIBVg0mJ60Nge52CCHdiqM7hitcK1+hJgeEPt9zyCDYivQrBimRCGjNYfXhjjCbxzrg==", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-shared-events": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-shared-events/-/victory-shared-events-36.9.1.tgz", + "integrity": "sha512-U+iDeuv17qYbigMivQcYmZPrvCMHQ8oHFprrlmF9K9cby3q9NFuZ6bbZUngm8kB61P0L6gR0BbYSWvdT9QUEbA==", + "dependencies": { + "json-stringify-safe": "^5.0.1", + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-stack": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-stack/-/victory-stack-36.9.1.tgz", + "integrity": "sha512-yTSLyq3PShJIIsHFjRZcWJvJsZU0+kZ6OhYawqnE133XkaQFdA6C4nhMGCAs6VzFT9PofzFuU0OY4geZ70G1TQ==", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "^36.9.1", + "victory-shared-events": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-tooltip": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-tooltip/-/victory-tooltip-36.9.1.tgz", + "integrity": "sha512-/ICZ4jaYFplSgK1HkFikEN9d4xlRm7dI7MouYTC1m74q869nMPycLJeVjUo9RsiPnUDeiJLAnKZnXb0oICyYsQ==", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-vendor": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-36.9.1.tgz", + "integrity": "sha512-+pZIP+U3pEJdDCeFmsXwHzV7vNHQC/eIbHklfe2ZCZqayYRH7lQbHcVgsJ0XOOv27hWs4jH4MONgXxHMObTMSA==", + "dependencies": { + "@types/d3-array": "^3.0.3", + "@types/d3-ease": "^3.0.0", + "@types/d3-interpolate": "^3.0.1", + "@types/d3-scale": "^4.0.2", + "@types/d3-shape": "^3.1.0", + "@types/d3-time": "^3.0.0", + "@types/d3-timer": "^3.0.0", + "d3-array": "^3.1.6", + "d3-ease": "^3.0.1", + "d3-interpolate": "^3.0.1", + "d3-scale": "^4.0.2", + "d3-shape": "^3.1.0", + "d3-time": "^3.0.0", + "d3-timer": "^3.0.1" + } + }, + "node_modules/victory-voronoi": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-voronoi/-/victory-voronoi-36.9.1.tgz", + "integrity": "sha512-LJyBRKYu2dyrBO8Mr6vvpyknjoag/k0uJ1ax4DAFGk1uAW+ktRu5QXmU5UMIiDNihScByUsiU76JnHhI2A5wYg==", + "dependencies": { + "d3-voronoi": "^1.1.4", + "lodash": "^4.17.19", + "victory-core": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-voronoi-container": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-voronoi-container/-/victory-voronoi-container-36.9.1.tgz", + "integrity": "sha512-F/ZWvhF/JkRxFT1UPGf4HgPnBAhUmbRIBssAvsIRer4cr3p7RieMNTMcTYHtVwR9kTKClfmJKgn1T7imBGt2BA==", + "dependencies": { + "delaunay-find": "0.0.6", + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "^36.9.1", + "victory-tooltip": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-zoom-container": { + "version": "36.9.1", + "resolved": "https://registry.npmjs.org/victory-zoom-container/-/victory-zoom-container-36.9.1.tgz", + "integrity": "sha512-2G+2iUsmTCpt1ItUWVOzK0CCRYCFf+/rH4uXuvXqipHjRnotz5bxOkuW68Fdx1MzGoexIc8DfQoKxKd/q0HkZA==", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "^36.9.1" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", + "dev": true, + "dependencies": { + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz", + "integrity": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==", + "dev": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dev": true, + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/webpack": { + "version": "5.91.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.91.0.tgz", + "integrity": "sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.5", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.21.10", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.16.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.1", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.1.2.tgz", + "integrity": "sha512-Wu+EHmX326YPYUpQLKmKbTyZZJIB8/n6R09pTmB03kJmnMsVPTo9COzHZFr01txwaCAuZvfBJE4ZCHRcKs5JaQ==", + "dev": true, + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.12", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-hot-middleware": { + "version": "2.26.1", + "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.26.1.tgz", + "integrity": "sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==", + "dev": true, + "dependencies": { + "ansi-html-community": "0.0.8", + "html-entities": "^2.1.0", + "strip-ansi": "^6.0.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-virtual-modules": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==", + "dev": true + }, + "node_modules/webpack/node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/webpack/node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "dev": true, + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dev": true, + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/ws": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", + "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true } + } + }, + "node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } } + } } diff --git a/package.json b/package.json index 4591db5..0f7ba4c 100644 --- a/package.json +++ b/package.json @@ -1,89 +1,79 @@ { - "name": "@rcpch/digital-growth-charts-react-component-library", - "version": "6.1.15", - "main": "build/index.js", - "module": "build/index.esm.js", - "files": [ - "build" - ], - "types": "build/index.d.ts", - "description": "A React component library for the RCPCH digital growth charts using Rollup, TypeScript and Styled-Components", - "scripts": { - "build": "rollup -c", - "test": "jest", - "test:watch": "jest --watch", - "generate": "node ./util/create-component", - "prepublishOnly": "npm run build", - "prepare": "npm run build" - }, - "repository": { - "type": "git", - "url": "https://github.com/RCPCH/digital-growth-charts-react-component-library.git" - }, - "publishConfig": { - "registry": "https://registry.npmjs.org/" - }, - "keywords": [ - "Growth", - "Charts", - "React", - "Component", - "Library", - "Rollup", - "Typescript", - "Sass" - ], - "author": "Simon Chapman", - "license": "AGPL-3.0-or-later", - "bugs": { - "url": "https://github.com/RCPCH/digital-growth-charts-react-component-library/issues" - }, - "homepage": "https://github.com/RCPCH/digital-growth-charts-react-component-library#readme", - "peerDependencies": { - "react": ">=17", - "react-dom": ">=17", - "styled-components": ">=5" - }, - "devDependencies": { - "@babel/core": "^7.10.3", - "@rollup/plugin-commonjs": "^11.1.0", - "@rollup/plugin-image": "^2.0.6", - "@rollup/plugin-json": "^4.1.0", - "@rollup/plugin-node-resolve": "^7.1.3", - "@testing-library/jest-dom": "^5.5.0", - "@testing-library/react": "^10.0.2", - "@types/jest": "^24.0.24", - "@types/react": "^16.9.12", - "@types/react-dom": "^16.9.8", - "babel-loader": "^8.1.0", - "babel-preset-react-app": "^9.1.2", - "identity-obj-proxy": "^3.0.0", - "jest": "^24.9.0", - "node-sass": "^7.0.1", - "rollup": "^1.27.4", - "rollup-plugin-copy": "^3.3.0", - "rollup-plugin-peer-deps-external": "^2.2.0", - "rollup-plugin-postcss": "^4.0.2", - "rollup-plugin-typescript2": "^0.27.0", - "rollup-plugin-version-injector": "^1.3.3", - "ts-jest": "^24.2.0", - "typescript": "^3.7.2", - "@types/styled-components": "^5.1.9", - "@types/victory": "^33.1.4", - "@typescript-eslint/eslint-plugin": "^4.20.0", - "@typescript-eslint/parser": "^4.20.0", - "eslint": "^7.23.0", - "eslint-config-prettier": "^8.1.0", - "eslint-plugin-prettier": "^3.3.1", - "eslint-plugin-react": "^7.23.1", - "prettier": "^2.2.1" - }, - "dependencies": { - "sass": "^1.57.1", - "tslib": "^2.1.0", - "victory": "^35.4.8" - }, - "resolutions": { - "styled-components": "^5" - } + "name": "@rcpch/digital-growth-charts-react-component-library", + "version": "7.0.0", + "description": "A React component library for the RCPCH digital growth charts using Rollup, TypeScript and Styled-Components", + "main": "build/index.js", + "module": "build/esm.index.js", + "types": "build/index.d.ts", + "scripts": { + "test": "jest --env=jsdom", + "build": "ROLLUP_WATCH=false rollup -c --bundleConfigAsCjs", + "storybook": "storybook dev -p 6006", + "build-storybook": "storybook build" + }, + "keywords": [ + "Growth", + "Charts", + "React", + "Component", + "Library", + "Rollup", + "Typescript", + "Sass", + "Jest", + "Storybook" + ], + "author": "eatyourpeas", + "license": "AGPL-3.0-or-later", + "peerDependencies": { + "react": "18.2.0", + "react-dom": "18.2.0" + }, + "dependencies": { + "sass": "1.70.0", + "styled-components": "6.1.8", + "victory": "36.9.1" + }, + "devDependencies": { + "@babel/preset-react": "7.23.3", + "@babel/preset-typescript": "7.23.3", + "@rollup/plugin-commonjs": "25.0.7", + "@rollup/plugin-image": "3.0.3", + "@rollup/plugin-json": "6.1.0", + "@rollup/plugin-node-resolve": "15.2.3", + "@rollup/plugin-terser": "0.4.4", + "@rollup/plugin-typescript": "11.1.6", + "sass-loader": "14.1.1", + "@storybook/addon-essentials": "^8.0.4", + "@storybook/addon-interactions": "^8.0.4", + "@storybook/addon-links": "^8.0.4", + "@storybook/addon-mdx-gfm": "^8.0.4", + "@storybook/addon-onboarding": "^8.0.4", + "@storybook/addon-webpack5-compiler-babel": "^3.0.3", + "@storybook/addon-styling-webpack": "^1.0.0", + "@storybook/blocks": "^8.0.4", + "@storybook/react": "^8.0.4", + "@storybook/react-webpack5": "^8.0.4", + "@storybook/test": "^8.0.4", + "@testing-library/jest-dom": "6.4.2", + "@testing-library/react": "14.2.1", + "@testing-library/user-event": "14.5.2", + "ts-jest": "29.1.2", + "@types/jest": "29.5.12", + "@types/react": "18.2.55", + "@types/styled-components": "5.1.34", + "eslint-plugin-storybook": "^0.6.15", + "jest": "29.7.0", + "jest-environment-jsdom": "29.7.0", + "rollup": "4.11.0", + "rollup-plugin-copy": "3.5.0", + "rollup-plugin-dts": "6.1.0", + "rollup-plugin-peer-deps-external": "2.2.4", + "rollup-plugin-postcss": "4.0.2", + "rollup-plugin-version-injector": "1.3.3", + "storybook": "^8.0.4", + "ts-node": "10.9.2", + "tslib": "2.6.2", + "typescript": "5.3.3" + } } diff --git a/rollup.config.js b/rollup.config.js deleted file mode 100644 index 9cf0334..0000000 --- a/rollup.config.js +++ /dev/null @@ -1,55 +0,0 @@ -import peerDepsExternal from 'rollup-plugin-peer-deps-external'; -import resolve from '@rollup/plugin-node-resolve'; -import commonjs from '@rollup/plugin-commonjs'; -import typescript from 'rollup-plugin-typescript2'; -import postcss from 'rollup-plugin-postcss'; -import copy from 'rollup-plugin-copy'; -import image from '@rollup/plugin-image'; -import json from '@rollup/plugin-json'; -import versionInjector from 'rollup-plugin-version-injector'; - -const packageJson = require('./package.json'); - -export default { - input: 'src/index.ts', - external: ['react', 'react-dom', 'styled-components'], - output: [ - { - file: packageJson.main, - format: 'cjs', - sourcemap: true, - }, - { - file: packageJson.module, - format: 'esm', - sourcemap: true, - }, - ], - plugins: [ - peerDepsExternal(), - resolve(), - commonjs({ - ignoreGlobal: true, - include: /\/node_modules\//, - }), - typescript({ useTsconfigDeclarationDir: true }), - postcss(), - copy({ - targets: [ - { - src: 'src/variables.scss', - dest: 'build', - rename: 'variables.scss', - }, - { - src: 'src/typography.scss', - dest: 'build', - rename: 'typography.scss', - }, - ], - }), - image(), - json(), - versionInjector(), - ], -}; diff --git a/rollup.config.mjs b/rollup.config.mjs new file mode 100644 index 0000000..1d23779 --- /dev/null +++ b/rollup.config.mjs @@ -0,0 +1,72 @@ +import resolve from '@rollup/plugin-node-resolve'; +import commonjs from '@rollup/plugin-commonjs'; +import typescript from '@rollup/plugin-typescript'; +import terser from '@rollup/plugin-terser'; +import peerDepsExternal from 'rollup-plugin-peer-deps-external'; +import postcss from 'rollup-plugin-postcss'; +import json from '@rollup/plugin-json'; +import versionInjector from 'rollup-plugin-version-injector'; +import image from '@rollup/plugin-image'; +import dts from 'rollup-plugin-dts'; +import copy from 'rollup-plugin-copy'; + +const packageJson = require('./package.json'); +const production = !process.env.ROLLUP_WATCH; + +let external = ['styled-components']; +let globals = {}; + +if (production) { + external = [...external, 'react', 'react-dom']; + globals = { + react: 'React', + 'react-dom': 'ReactDOM', + ...globals, + }; +} + +export default [ + { + input: 'src/index.ts', + external, + output: [ + { + file: packageJson.main, + format: 'cjs', + sourcemap: true, + }, + { + file: packageJson.module, + format: 'esm', + sourcemap: true, + }, + ], + plugins: [ + peerDepsExternal(), + resolve(), + commonjs({ + ignoreGlobal: true, + include: /\/node_modules\//, + }), + typescript(), + terser(), + postcss({ + extract: true, // Extract CSS to separate file + modules: false, // Disable CSS modules + minimize: true, // Minimize CSS + // Add custom PostCSS plugins if needed + }), + json(), + versionInjector(), + image(), + copy({ + targets: [{ src: 'src/fonts/**/*', dest: 'build/fonts/' }], + }), + ], + }, + { + input: 'src/index.ts', + output: [{ file: 'build/types.d.ts', format: 'es' }], + plugins: [dts.default()], + }, +]; diff --git a/src/.DS_Store b/src/.DS_Store deleted file mode 100644 index ec3a86f..0000000 Binary files a/src/.DS_Store and /dev/null differ diff --git a/src/@types/index.d.ts b/src/@types/index.d.ts index 75477d6..175b129 100644 --- a/src/@types/index.d.ts +++ b/src/@types/index.d.ts @@ -1,6 +1,6 @@ declare module "\*.svg" { import React = require("react"); - export const ReactComponent: React.SFC>; + export const ReactComponent: React.FC>; const src: string; export default src; } diff --git a/src/CentileChart/CentileChart.scss b/src/CentileChart/CentileChart.scss deleted file mode 100644 index 1d201e1..0000000 --- a/src/CentileChart/CentileChart.scss +++ /dev/null @@ -1,16 +0,0 @@ -// Generated with util/create-component.js -@import "../variables.scss"; -@import "../typography.scss"; - -.centred { - display: block; - margin: auto; -} - -.flex-center-vertically { - display: flex; - justify-content: center; - flex-direction: column; - height: 50px; - left: 5px; -} \ No newline at end of file diff --git a/src/CentileChart/CentileChart.stories.tsx b/src/CentileChart/CentileChart.stories.tsx index 44b8ad1..9c6f5b8 100644 --- a/src/CentileChart/CentileChart.stories.tsx +++ b/src/CentileChart/CentileChart.stories.tsx @@ -1,11 +1,468 @@ // Generated with util/create-component.js -import * as React from "react"; -import CentileChart from "./CentileChart"; +import * as React from 'react'; +import CentileChart from './CentileChart'; +import RCPCHChart from '../RCPCHChart'; +import { monochromeStyles } from '../testParameters/styles/monochromeStyles'; +import { Tanner1Styles } from '../testParameters/styles/tanner1Styles'; +import { Tanner2Styles } from '../testParameters/styles/tanner2Styles'; +import { Tanner3Styles } from '../testParameters/styles/tanner3Styles'; +import { traditionalBoysStyles } from '../testParameters/styles/traditionalBoysStyles'; +import { termGirlWithSingleHeightMeasurementAndBoneAgeAndEvent } from '../testParameters/measurements/termGirlWithSingleHeightMeasurementAndBoneAgeAndEvent'; +import { twoWeightMeasurements } from '../testParameters/measurements/twoWeightMeasurements'; +import { twoToEight } from '../testParameters/measurements/twoToEight'; +import { twoToEightWeight } from '../testParameters/measurements/twoToEightWeight'; +import { twoToEightOFC } from '../testParameters/measurements/twoToEightOFC'; +import { twoToEightGirlBMI } from '../testParameters/measurements/twoToEightYearsGirlBMI'; +import { prematureThreeMonths } from '../testParameters/measurements/prematureThreeMonths'; +import { smallChildJustOverTwo } from '../testParameters/measurements/smallChildJustOverTwo'; +import { prematureTwentyTwoWeeksWeight } from '../testParameters/measurements/prematureTwentyTwoWeeks'; +import { prematureTwentyTwoWeeksHeight } from '../testParameters/measurements/prematureTwentyTwoWeeksHeight'; +import { prematureTwentyTwoWeeksOFC } from '../testParameters/measurements/prematureTwentyTwoWeeksOFC'; +import { prematureGirlOverThreeHeight } from '../testParameters/measurements/prematureGirlOverThreeHeight'; +import { prematureGirlOverFourHeight } from '../testParameters/measurements/prematureGirlOverFourHeight'; +import { termToAYearGirlHeight } from '../testParameters/measurements/termToAYearGirlHeight'; +import { termToTwoYearsGirlHeight } from '../testParameters/measurements/termToTwoYearsGirlHeight'; +import { termToOverFourYearsGirlHeight } from '../testParameters/measurements/termToOverFourYearsGirlHeight'; +import { turnerHeightOneYearToEleven } from '../testParameters/measurements/turnerHeightOneYearToEleven'; +import { beforeDueDateError } from '../testParameters/measurements/beforeDueDateError'; +import { termBabyGirlWeight } from '../testParameters/measurements/termBabyGirlWeight'; export default { - title: "CentileChart" + title: 'CentileChart', }; -export const WithBar = () => ; +export const WithHeightAndNoData = () => ( + null} + clinicianFocus={true} + /> +); -export const WithBaz = () => ; +export const WithTurnerHeightAndNoData = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithWeightAndNoData = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithBMIAndNoData = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithOFCAndNoData = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithTermBoyAndSingleHeightMeasurementAndBoneAgeAndEvent = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithPrematureFemaleHeights = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithMeasurementsFromBirthOverTwoYears = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithMeasurementsAtExtremePrematurityWeight = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithMeasurementsAtExtremePrematurity = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithMeasurementsAtExtremePrematurityOFC = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithHeightMeasurementsTwoToEightYears = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithWeightMeasurementsTwoToEightYears = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithOFCMeasurementsTwoToEightYears = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithBMIMeasurementsTwoToEightYears = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithExtremePrematureFemaleHeights = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithPrematureGirlOverThreeHeight = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithPrematureGirlOverFourHeight = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithTermToAYearGirlHeight = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithTermToTwoYearsGirlHeight = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithTermToOverFourYearsGirlHeight = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithTurnerFemaleHeights = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithBeforeDueDateError = () => ( + null} + clinicianFocus={true} + /> +); + +export const WithTermBabyGirlWeight = () => ( + null} + clinicianFocus={true} + /> +); + +// props + +const midParentalHeights = {}; diff --git a/src/CentileChart/CentileChart.test.tsx b/src/CentileChart/CentileChart.test.tsx index 32c1e30..615ca1b 100644 --- a/src/CentileChart/CentileChart.test.tsx +++ b/src/CentileChart/CentileChart.test.tsx @@ -1,27 +1,1163 @@ -// Generated with util/create-component.js +/* +Tests for Centile Chart +This is a test suite which applies only to the centile chart component. +The centile chart component is a complex component, made of several subcomponents that need tests of their own +Tests here therefore are more integration test, rather than unit tests + +Bundled in are several fictional children against which to test. These are found in the testParameters folder. +They are also used in storybook: + +prematureThreeMonths - a girl born at 30+2, length +prematureTwentyTwoWeeks - - a girl born at 22 weeks | to demonstrate lack of data +PrematureTwentyTwoWeeksHeight - a girl born at 22 weeks +PrematureTwentyTwoWeeksOFC - a girl born at 22 weeks +termToAYearGirlHeight - a girl born term to a year of age +smallChildJustOverTwo - a boy, term, height from birth to 2y +twoWeightMeasurements - a boy weight, term birth and 2 y +twoToEight - a girl, heights +twoToEightWeight - a boy +termToAYearYearsGirlHeight - a girl from term to over a year +termToTwoYearsGirlHeight - a girl from term to over 2 years +termToOverFourYearsGirlHeight - a girl from term to over 4 years +turnerHeightOneYearToEleven - a girl with Turner's from a year to 11 y + +Below is a list of tests that are implemented or need implementing + +--------- +Props +--------- +-[ ] Boy chart presented if sex is 'male' +-[ ] Girl chart presented if sex is 'female' +-[ ] UK-WHO chart presented if reference is 'uk-who' +-[ ] Trisomy 21 chart presented if reference is 'trisomy-21' +-[ ] Turner chart presented if reference is 'turner' +-[ ] Height chart presented if measurementMethod is 'height' +-[ ] Weight chart presented if measurementMethod is 'weight' +-[ ] BMI chart presented if measurementMethod is 'bmi' +-[ ] Head circumference chart presented if measurementMethod is 'ofc' + +--------- +Labels +--------- +-[X] Title text renders correctly +-[X] Subtitle text renders correctly +-[X] Version text renders correctly +-[X] Y axis lable text renders correctly - height +-[X] Y axis lable text renders correctly - weight +-[X] Y axis lable text renders correctly - bmi +-[X] Y axis lable text renders correctly - OFC +-[X] X axis lable text renders correctly - premature infant (Gestation weeks) +-[X] X axis lable text renders correctly - premature infant after term (Gestation or postnatal weeks / months (shown as lollipops)) +-[X] X axis lable text renders correctly - infant (Age (in years and months (shown as lollipops))) +-[X] X axis lable text renders correctly - child (age in years) +-[X] reference attribution text renders correctly - UK-WHO +-[X] reference attribution text renders correctly - Trisomy 21 +-[X] reference attribution text renders correctly - Turner +-[X] early puberty cut off text renders correctly - boys +-[X] early puberty cut off text renders correctly - girls +-[X] late puberty cut off text renders correctly - boys +-[X] late puberty cut off text renders correctly - girls + +------------------ +Measurement Points +------------------ +These are important to ensure data points are not lost when swapping from one reference to another. +Do not include tests for tooltips on mouseover which are collected in events. + +-[X] correct number of measurement points render for preterm infant under term +-[X] correct number of measurement points render for preterm infant now over 42 weeks +-[X] correct number of measurement points render for preterm infant now over 2 years +-[X] correct number of measurement points render for preterm infant now over 4 years +-[X] correct number of measurement points render for term infant under 2 y +-[X] correct number of measurement points render for term infant now over 2y +-[X] correct number of measurement points render for term infant now over 4 + +-[ ] padding is applied to lowest measurement and the chart truncated +-[ ] padding is applied to highest measurement and the chart truncated + +--------- +Centiles +--------- +One each of these needed for every measurement method and every sex +-[X] centile line renders for 0.4th centile +-[X] centile line renders for 2nd centile +-[X] centile line renders for 9th centile +-[X] centile line renders for 25th centile +-[X] centile line renders for 50th centile +-[X] centile line renders for 75th centile +-[X] centile line renders for 91st centile +-[X] centile line renders for 98th centile +-[X] centile line renders for 99.6th centile + +------------- +BMI SDS Lines +------------- +-[X] -4.0 SDS line renders for BMI +-[X] -3.0 SDS line renders for BMI +-[X] +3.0 SDS line renders for BMI +-[X] +3.33 SDS line renders for BMI +-[X] +3.67 SDS line renders for BMI +-[X] +4.0 SDS line renders for BMI + +--------- +Events +--------- +*MouseOver* + +!measurements! +-[ ] chronological age is correct +-[ ] chronological age renders on hover over chronological data point +-[ ] corrected age does not render on hover over chronological data point +-[ ] corrected age is correct +-[ ] corrected age renders on hover over corrected data point +-[ ] chronological age does not render on hover over corrected data point +-[ ] no tooltip appears on hover over link line between chronological and corrected measurement points +-[ ] SDS render in tooltip if clinicianFocus is true +-[ ] SDS do not render in tooltip if clinicianFocus is false +-[ ] clinician age advice renders in tooltip if clinicianFocus is true +-[ ] lay age advice renders in tooltip if clinicianFocus is false +-[ ] corrected gestational age renders in tooltip if baby is born less than 37 weeks +-[ ] corrected gestational age does not render in tooltip if baby is born less than 37 weeks but is over 42 weeks corrected +-[ ] measurement date follows dd MMM YYYY format + +Errors are generated in the API, but tests are needed to ensure they are presented correctly +-[ ] measurement error is reported if baby is <23 weeks for weight at time of measurement +-[ ] measurement error is reported if baby is <25 weeks for length at time of measurement +-[ ] measurement error is reported if baby is <23 weeks for head circumference at time of measurement +-[ ] measurement error is reported if baby is <42 weeks for BMI at time of measurement +-[ ] measurement is plotted at 22 weeks and over for length +-[ ] measurement is plotted at 22 weeks and over for weight +-[ ] measurement is plotted at 22 weeks and over for head circumference +-[ ] measurement is not plotted below 2 weeks and for BMI +-[ ] measurement is not plotted >20 y for height +-[ ] measurement is not plotted >20 y for weight +-[ ] measurement is not plotted >20 y for BMI +-[ ] measurement is not plotted >18 y for head circumference in boys +-[ ] measurement is not plotted >17 y for head circumference in girls + +!bone ages! +-[ ] correct bone age renders when supplied +-[ ] correct SDS renders when supplied +-[ ] correct centile renders when supplied +-[ ] correct comment renders when supplied +-[ ] bone age renders with grey link line +-[ ] bone age renders with associated corrected age (chronological age is false) +-[ ] bone age renders with associated chronological age (corrected age is false) +-[ ] bone age renders with associated corrected age (both ages are true) + +!growth chart events! +-[ ] correct event text renders when supplied +-[ ] event caret renders when text supplied + +!midparental heights! +-[ ] correct midparental height rendered for a girl +-[ ] correct midparental height rendered for a boy +-[ ] upper limit midparental height tooltip data renders +-[ ] lower limit midparental height tooltip data renders +-[ ] median midparental height tooltip data renders + +!thresholds! +-[ ] transition from UK-WHO to UK90 tooltip renders at 4 y +-[ ] transition from lying to standing tooltip renders at 2 y height - boys +-[ ] transition from lying to standing tooltip renders at 2 y height - girls +-[ ] notification of term thresholds tooltip renders at 37-42 weeks - boys +-[ ] notification of term thresholds tooltip renders at 37-42 weeks - girls +-[ ] notification of late puberty area threshold - boys +-[ ] notification of late puberty area threshold - girls + +!centiles! +One each of these needed for every measurement method and every sex +-[ ] centile label renders for 0.4th centile +-[ ] centile label renders for 2nd centile +-[ ] centile label renders for 9th centile +-[ ] centile label renders for 25th centile +-[ ] centile label renders for 50th centile +-[ ] centile label renders for 75th centile +-[ ] centile label renders for 91st centile +-[ ] centile label renders for 98th centile +-[ ] centile label renders for 99.6th centile + +-[ ] -4.0 SDS label renders for BMI +-[ ] -3.0 SDS label renders for BMI +-[ ] +3.0 SDS label renders for BMI +-[ ] +3.33 SDS label renders for BMI +-[ ] +3.67 SDS label renders for BMI +-[ ] +4.0 SDS label renders for BMI + +*Corrected/Chronological Ages Toggle Button* +-[X] corrected measurements only rendered when 'corrected' toggle clicked +-[X] chronological measurements only rendered when 'chronological' toggle clicked +-[X] corrected and chronological measurements both rendered when 'both' toggle clicked + +*Life Course View Button* +-[ ] Life course view button renders if full life course not visible +-[ ] Life course view button does not render if full life course is visible +-[ ] Life course view button icon toggles on press +-[ ] Life course view toggles on button press +-[ ] Description text appears on hover over button +-[ ] Zoom disabled in life course view + +*Paste Button* +-[x] Paste button present if enableExport prop is true +-[x] Paste button absent if enableExport prop is false +-[x] Description text appears on hover over button +-[x] 'copied' text appears and fades on click +-[-] Grey rim animates round button edge on hover over button +-[x] exportChartCallback triggered on click +-[ ] correct SVG of chart present when exportChartCallback triggered on click + +*Zoom* +-[x] Zoom function enabled if enableZoom prop is true +-[x] Show description text if on hover over button +-[x] Zoom function disabled if enableZoom prop is false +-[x] Reset zoom button appears if zoom applied +The following tests need considerations and about their implementations +-[ ] Reset zoom button disabled if zoom not applied +-[ ] Reset zoom button enabled if zoom applied +-[ ] Chart domains reset if Reset zoom button pressed + +*/ + import * as React from "react"; -import { render } from "@testing-library/react"; +import { fireEvent,getByTestId,queryByTestId,render, screen, waitFor } from "@testing-library/react"; +import '@testing-library/jest-dom'; import CentileChart from "./CentileChart"; import { CentileChartProps } from "./CentileChart.types"; +import { MidParentalHeightObject } from "../interfaces/MidParentalHeightObject"; + +import { monochromeStyles } from '../testParameters/styles/monochromeStyles' +import {prematureThreeMonths} from '../testParameters/measurements/prematureThreeMonths'; +import { twoToEightWeight } from "../testParameters/measurements/twoToEightWeight"; +import { termToAYearGirlHeight } from "../testParameters/measurements/termToAYearGirlHeight"; +import { termToTwoYearsGirlHeight } from "../testParameters/measurements/termToTwoYearsGirlHeight"; +import { termToOverFourYearsGirlHeight } from "../testParameters/measurements/termToOverFourYearsGirlHeight"; +import { turnerHeightOneYearToEleven } from "../testParameters/measurements/turnerHeightOneYearToEleven"; +import { prematureTwentyTwoWeeksWeight } from "../testParameters/measurements/prematureTwentyTwoWeeks"; +import { prematureGirlOverFourHeight } from "../testParameters/measurements/prematureGirlOverFourHeight"; +import { termGirlWithSingleHeightMeasurementAndBoneAgeAndEvent } from "../testParameters/measurements/termGirlWithSingleHeightMeasurementAndBoneAgeAndEvent"; -describe("Test Component", () => { +describe("All tests relate to rendering the centile lines in the height centile chart with no data.", () => { let props: CentileChartProps; + const midparentalHeight: MidParentalHeightObject = {} + beforeEach(() => { props = { - foo: "bar" + chartsVersion: "7.0.0", + reference: 'uk-who', + title: 'TestChartTitle', + subtitle: 'TestChartSubtitle', + measurementMethod: 'height', + sex: 'male', + childMeasurements: [], + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, }; }); + + enum MeasurementMethods { + 'height'= 'height', 'weight'='weight', 'bmi'='bmi', 'ofc'='ofc' + } - const renderComponent = () => render(); + const measurementMethods = [MeasurementMethods.height, MeasurementMethods.weight, MeasurementMethods.bmi, MeasurementMethods.ofc]; - it("should render foo text correctly", () => { - props.foo = "harvey was here"; - const { getByTestId } = renderComponent(); + it("should render 0.4th centile", () => { + measurementMethods.forEach((item, index) =>{ + props.measurementMethod = item + const chart = + render(chart); + // expect(screen.queryByTestId("reference-0-centile-0.4-measurement-"+item)).toBeInTheDocument() + expect(screen.queryByTestId("reference-1-centile-0.4-measurement-"+item)).toBeInTheDocument() + expect(screen.queryByTestId("reference-2-centile-0.4-measurement-"+item)).toBeInTheDocument() + expect(screen.queryByTestId("reference-3-centile-0.4-measurement-"+item)).toBeInTheDocument() + }) + }); + + it("should render 2nd centile", () => { + measurementMethods.forEach((item, index) =>{ + props.measurementMethod = item + const chart = + render(chart); + expect(screen.queryByTestId("reference-1-centile-2-measurement-"+props.measurementMethod)).toBeInTheDocument() + expect(screen.queryByTestId("reference-2-centile-2-measurement-"+props.measurementMethod)).toBeInTheDocument() + expect(screen.queryByTestId("reference-3-centile-2-measurement-"+props.measurementMethod)).toBeInTheDocument() + }); + }); + + it("should render 9th centile", () => { + measurementMethods.forEach((item, index) =>{ + props.measurementMethod = item + const chart = + render(chart); + expect(screen.getByTestId("reference-1-centile-9-measurement-"+props.measurementMethod)).toBeInTheDocument() + expect(screen.getByTestId("reference-2-centile-9-measurement-"+props.measurementMethod)).toBeInTheDocument() + expect(screen.getByTestId("reference-3-centile-9-measurement-"+props.measurementMethod)).toBeInTheDocument() + }); + }); + + it("should render 25th centile", () => { + measurementMethods.forEach((item, index) =>{ + props.measurementMethod = item + const chart = + render(chart); + expect(screen.getByTestId("reference-1-centile-25-measurement-"+props.measurementMethod)).toBeInTheDocument() + expect(screen.getByTestId("reference-2-centile-25-measurement-"+props.measurementMethod)).toBeInTheDocument() + expect(screen.getByTestId("reference-3-centile-25-measurement-"+props.measurementMethod)).toBeInTheDocument() + }); + }); + + it("should render 50th centile", () => { + measurementMethods.forEach((item, index) =>{ + props.measurementMethod = item + const chart = + render(chart); + expect(screen.getByTestId("reference-1-centile-50-measurement-"+props.measurementMethod)).toBeInTheDocument() + expect(screen.getByTestId("reference-2-centile-50-measurement-"+props.measurementMethod)).toBeInTheDocument() + expect(screen.getByTestId("reference-3-centile-50-measurement-"+props.measurementMethod)).toBeInTheDocument() + }); + }); + + it("should render 75th centile", () => { + measurementMethods.forEach((item, index) =>{ + props.measurementMethod = item + const chart = + render(chart); + expect(screen.getByTestId("reference-1-centile-75-measurement-"+props.measurementMethod)).toBeInTheDocument() + expect(screen.getByTestId("reference-2-centile-75-measurement-"+props.measurementMethod)).toBeInTheDocument() + expect(screen.getByTestId("reference-3-centile-75-measurement-"+props.measurementMethod)).toBeInTheDocument() + }); + }); + + it("should render 91st centile", () => { + measurementMethods.forEach((item, index) =>{ + props.measurementMethod = item + const chart = + render(chart); + expect(screen.getByTestId("reference-1-centile-91-measurement-"+props.measurementMethod)).toBeInTheDocument() + expect(screen.getByTestId("reference-2-centile-91-measurement-"+props.measurementMethod)).toBeInTheDocument() + expect(screen.getByTestId("reference-3-centile-91-measurement-"+props.measurementMethod)).toBeInTheDocument() + }); + }); + + it("should render 98th centile", () => { + measurementMethods.forEach((item, index) =>{ + props.measurementMethod = item + const chart = + render(chart); + expect(screen.getByTestId("reference-1-centile-98-measurement-"+props.measurementMethod)).toBeInTheDocument() + expect(screen.getByTestId("reference-2-centile-98-measurement-"+props.measurementMethod)).toBeInTheDocument() + expect(screen.getByTestId("reference-3-centile-98-measurement-"+props.measurementMethod)).toBeInTheDocument() + }); + }); + + it("should render 99.6th centile", () => { + measurementMethods.forEach((item, index) =>{ + props.measurementMethod = item + const chart = + render(chart); + expect(screen.getByTestId("reference-1-centile-99.6-measurement-"+props.measurementMethod)).toBeInTheDocument() + expect(screen.getByTestId("reference-2-centile-99.6-measurement-"+props.measurementMethod)).toBeInTheDocument() + expect(screen.getByTestId("reference-3-centile-99.6-measurement-"+props.measurementMethod)).toBeInTheDocument() + }); + }); + +}); - const component = getByTestId("CentileChart"); +describe("All tests relate to rendering the SDS lines in the BMI centile chart with no data.", () => { + let props: CentileChartProps; + + const midparentalHeight: MidParentalHeightObject = {} - expect(component).toHaveTextContent("harvey was here"); + beforeEach(() => { + props = { + chartsVersion: "7.0.0", + reference: 'uk-who', + title: 'TestChartTitle', + subtitle: 'TestChartSubtitle', + measurementMethod: 'bmi', + sex: 'male', + childMeasurements: [], + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, + }; + }); + + const sdsLines = [-5,-4, 3, 3.33, 3.67, 4] + + sdsLines.forEach((sdsLine, index)=>{ + it("should render the "+sdsLine+" line",()=>{ + const chart = + render(chart); + expect(screen.queryByTestId("reference-1-centile-"+sdsLine+"-bmisds")).toBeInTheDocument() + expect(screen.queryByTestId("reference-2-centile-"+sdsLine+"-bmisds")).toBeInTheDocument() + expect(screen.queryByTestId("reference-3-centile-"+sdsLine+"-bmisds")).toBeInTheDocument() + }); + }); + +}); + +describe("All tests relate to rendering the text in the height centile chart for an older boy.", () => { + let props: CentileChartProps; + + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "7.0.0", + reference: 'uk-who', + title: 'TestChartTitle', + subtitle: 'TestChartSubtitle', + measurementMethod: 'height', + sex: 'male', + childMeasurements: [], + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, + }; + }); + + it("should render title text correctly", () => { + render(); + expect(screen.queryByText("TestChartTitle")).toBeInTheDocument() + }); + + it("should render subtitle text correctly", () => { + render(); + expect(screen.queryByText("TestChartSubtitle")).toBeInTheDocument() + }); + + it("should render version text correctly", () => { + render(); + expect(screen.queryByText("7.0.0")).toBeInTheDocument() + }); + + it("should render height y axis label text correctly.", () => { + render(); + expect(screen.queryByText("Height / Length (cm)")).toBeInTheDocument() + }); + + it("should render weight y axis label text correctly.", () => { + props.measurementMethod="weight" + render(); + expect(screen.queryByText("Weight (kg)")).toBeInTheDocument() + }); + + it("should render bmi y axis label text correctly.", () => { + props.measurementMethod="bmi" + render(); + expect(screen.queryByText("Body Mass Index (kg/m²)")).toBeInTheDocument() + }); + + it("should render head circumference y axis label text correctly.", () => { + props.measurementMethod="ofc" + render(); + expect(screen.queryByText("Head Circumference (cm)")).toBeInTheDocument() + }); + + it("should render age x axis label text correctly.", () => { + render(); + expect(screen.queryByText("Age (in years)")).toBeInTheDocument() + }); + + it("should render UK-WHO reference attribution label text correctly.", () => { + render(); + expect(screen.queryByText("WHO Child Growth Standards, UK 1990 reference data, reanalysed 2009")).toBeInTheDocument() + }); + + it("should render Trisomy 21 reference attribution label text correctly.", () => { + props.reference="trisomy-21" + render(); + expect(screen.queryByText("Styles ME, Cole TJ, Dennis J, Preece MA. New cross sectional stature, weight and head circumference references for Down’s syndrome in the UK and Republic of Ireland. Arch Dis Child 2002;87:104-8. BMI centiles added 11/11/2013")).toBeInTheDocument() + }); + + it("should render early puberty cut off text in a boy.", () => { + render(); + expect(screen.getAllByText("Puberty starting before 9 years is precocious.")[0]).toBeInTheDocument() + }); + + it("should render delayed puberty cut off text in a boy.", () => { + render(); + expect(screen.getAllByText("Puberty is delayed if no signs are present by 14y.")[0]).toBeInTheDocument() + }); + + it("should render late puberty cut off text in a boy.", () => { + render(); + expect(screen.getAllByText("Puberty completing after 17y is delayed.")[0]).toBeInTheDocument() + }); + +}); + +describe("All tests relate to rendering the text in the height centile chart for an older girl.", () => { + let props: CentileChartProps; + + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "ChartVersion", + reference: 'uk-who', + title: 'TestChartTitle', + subtitle: 'TestChartSubtitle', + measurementMethod: 'height', + sex: 'female', + childMeasurements: [], + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false + }; }); + + it("should render early puberty cut off text in a girl.", () => { + render(); + expect(screen.getAllByText("Puberty starting before 8 years is precocious.")[0]).toBeInTheDocument() + }); + + it("should render delayed puberty cut off text in a girl.", () => { + render(); + expect(screen.getAllByText("Puberty is delayed if no signs are present by 13y.")[0]).toBeInTheDocument() + }); + + it("should render late puberty cut off text in a girl.", () => { + render(); + expect(screen.getAllByText("Puberty completing after 16y is delayed.")[0]).toBeInTheDocument() + }); + + it("should render Turner reference attribution label text correctly.", () => { + props.reference="turner" + props.sex="female" + render(); + expect(screen.queryByText("UK Turner reference data, 1985. Lyon, Preece and Grant (1985).")).toBeInTheDocument() + }); + + // it("centile labels should render.", () => { + // render(); + // expect(screen.getAllByText("99.6th")[0]).toBeInTheDocument() + // }); + + // it("centile labels should not render.", () => { + // props.showCentileLabels=false; + // render(); + // expect(screen.queryAllByText("99.6th")[0]).toBeUndefined(); + // }); + }); + +describe("All tests relate to rendering the text in the height/length centile chart for a premature neonate.", () => { + let props: CentileChartProps; + + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "ChartVersion", + reference: 'uk-who', + title: 'TestChartTitle', + subtitle: 'TestChartSubtitle', + measurementMethod: 'height', + sex: 'female', + childMeasurements: prematureThreeMonths, + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, + }; + }); + + it("should render title text correctly", () => { + render(); + expect(screen.queryByText("TestChartTitle")).toBeInTheDocument() + }); + + it("should render subtitle text correctly", () => { + render(); + expect(screen.queryByText("TestChartSubtitle")).toBeInTheDocument() + }); + + it("should render height y axis label text correctly.", () => { + render(); + expect(screen.queryByText("Height / Length (cm)")).toBeInTheDocument() + }); + + it("should render age x axis label text correctly for premature infant.", () => { + render(); + expect(screen.queryByText("Gestation or postnatal weeks / months (shown as lollipops)")).toBeInTheDocument() + }); + +}); + +describe("All tests relate to plotting in the height/length centile chart for a premature neonate.", () => { + let props: CentileChartProps; + + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "ChartVersion", + reference: 'uk-who', + title: 'TestChartTitle', + subtitle: 'TestChartSubtitle', + measurementMethod: 'height', + sex: 'female', + childMeasurements: prematureThreeMonths, + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, + }; + }); + + it("should plot 23 x points for corrected age.", () => { + render(); + expect(screen.getAllByTestId('correctedMeasurementXPoint')).toHaveLength(23); + }); + + it("should not render point for corrected age.", () => { + render(); + expect(screen.queryAllByTestId('chronologicalMeasurementPoint')).toHaveLength(0); + }); + + it("should plot 23 chronological points on click of `chronological` toggle.", () => { + render(); + fireEvent.click(screen.getByTestId('unadjusted')); + expect(screen.queryAllByTestId('chronologicalMeasurementPoint')).toHaveLength(23); + }); + + it("should plot 23 chronological points and 23 corrected x points on click of `both` toggle.", () => { + const chart = render(); + fireEvent.click(screen.getByTestId('both')); + expect(chart.queryAllByTestId('chronologicalMeasurementPoint')).toHaveLength(23); + expect(chart.queryAllByTestId('correctedMeasurementXPoint')).toHaveLength(23); + }); + +}); + +describe("All tests relating to rendering the text in the weight centile chart for an older boy.", () => { + let props: CentileChartProps; + + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "ChartVersion", + reference: "uk-who", + title: "TestChartTitle", + subtitle: "TestChartSubtitle", + measurementMethod: "weight", + sex: 'male', + childMeasurements: twoToEightWeight, + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, + }; + }); + + it("should render title text correctly", () => { + render(); + expect(screen.queryByText("TestChartTitle")).toBeInTheDocument() + }); + + it("should render subtitle text correctly", () => { + render(); + expect(screen.queryByText("TestChartSubtitle")).toBeInTheDocument() + }); + + it("should render weight y axis label text correctly", () => { + render(); + expect(screen.queryByText("Weight (kg)")).toBeInTheDocument(); + }); + + it("should render age x axis label correctly", () => { + render(); + expect(screen.queryByText("Age (in years)")) + }); + +}); + +describe("All test relating to plotting in the weight centile chart for a toddler between two and eight years.", () => { + let props: CentileChartProps; + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "ChartVersion", + reference: "uk-who", + title: "TestChartTitle", + subtitle: "TestChartSubtitle", + measurementMethod: "weight", + sex: 'male', + childMeasurements: twoToEightWeight, + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, + }; + }); + + it("should plot 73 x points for chronological age", () => { + render(); + expect(screen.getAllByTestId('chronologicalMeasurementPoint')).toHaveLength(73); + }); + +}); + +describe("All tests relating to plotting in the height centile chart for a premature girl to three months of age.", () => { + let props: CentileChartProps; + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "7.0.0", + reference: "uk-who", + title: "TestChartTitle", + subtitle: "TestChartSubtitle", + measurementMethod: "height", + sex: 'female', + childMeasurements: prematureThreeMonths, + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, + }; + }); + + it("should plot x axis correctly in the first year of life.", () => { + render(); + expect(screen.getByText('Gestation or postnatal weeks / months (shown as lollipops)')).toBeInTheDocument(); + }); + +}); + +describe("All tests relating to plotting height centile chart for a girl with Turner.", () => { + let props: CentileChartProps; + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "7.0.0", + reference: "turner", + title: "TestChartTitle", + subtitle: "TestChartSubtitle", + measurementMethod: "height", + sex: 'female', + childMeasurements: turnerHeightOneYearToEleven, + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, + }; + }); + + it("should plot turner reference text correctly.", () => { + render(); + expect(screen.getByText('UK Turner reference data, 1985. Lyon, Preece and Grant (1985).')).toBeInTheDocument(); + }); + +}); + +describe("All tests relating to plotting weight centile chart for an extremely preterm girl not yet term.", () => { + let props: CentileChartProps; + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "7.0.0", + reference: "uk-who", + title: "TestChartTitle", + subtitle: "TestChartSubtitle", + measurementMethod: "weight", + sex: 'female', + childMeasurements: prematureTwentyTwoWeeksWeight, + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, + }; + }); + + it("should plot x axis correctly in the first year of life.", () => { + render(); + expect(screen.getByText('Gestation (weeks)')).toBeInTheDocument(); + }); + + it("should plot 16 x points for corrected age.", () => { + render(); + fireEvent.click(screen.getByTestId('adjusted')); + expect(screen.getAllByTestId('correctedMeasurementXPoint')).toHaveLength(16); + }); + + it("should plot 16 x points for chronological age.", () => { + render(); + fireEvent.click(screen.getByTestId('unadjusted')); + expect(screen.queryAllByTestId('chronologicalMeasurementPoint')).toHaveLength(16); + }); + +}); + +describe("All tests relating to plotting weight centile chart for an extremely preterm girl now over 4y.", () => { + let props: CentileChartProps; + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "7.0.0", + reference: "uk-who", + title: "Premature Girl", + subtitle: "Now over 4y", + measurementMethod: "height", + sex: 'female', + childMeasurements: prematureGirlOverFourHeight, + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, + }; + }); + + it("should plot 16 x points for corrected age.", () => { + render(); + fireEvent.click(screen.getByTestId('adjusted')); + expect(screen.getAllByTestId('correctedMeasurementXPoint')).toHaveLength(14); + }); + + it("should plot 16 x points for chronological age.", () => { + render(); + fireEvent.click(screen.getByTestId('unadjusted')); + expect(screen.queryAllByTestId('chronologicalMeasurementPoint')).toHaveLength(14); + }); + +}); + +describe("All tests relating to plotting height centile chart for a term girl until a year.", () => { + let props: CentileChartProps; + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "7.0.0", + reference: "uk-who", + title: "Term Girl", + subtitle: "Now a year", + measurementMethod: "height", + sex: 'female', + childMeasurements: termToAYearGirlHeight, + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false + }; + }); + + it("should plot 85 x points for chronological age.", () => { + render(); + expect(screen.queryAllByTestId('chronologicalMeasurementPoint')).toHaveLength(85); + }); + + it("should plot 0 x points for corrected age.", () => { + render(); + expect(screen.queryAllByTestId('correctedMeasurementPoint')).toHaveLength(0); + }); + +}); + +describe("All tests relating to plotting height centile chart for a term girl until over two years.", () => { + let props: CentileChartProps; + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "7.0.0", + reference: "uk-who", + title: "Term Girl", + subtitle: "Now over 2 years", + measurementMethod: "height", + sex: 'female', + childMeasurements: termToTwoYearsGirlHeight, + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, + }; + }); + + it("should plot 7 x points for chronological age.", () => { + render(); + expect(screen.queryAllByTestId('chronologicalMeasurementPoint')).toHaveLength(7); + }); + + it("should plot 0 x points for corrected age.", () => { + render(); + expect(screen.queryAllByTestId('correctedMeasurementPoint')).toHaveLength(0); + }); + +}); + +describe("All tests relating to plotting height centile chart for a term girl until over four years.", () => { + let props: CentileChartProps; + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "7.0.0", + reference: "uk-who", + title: "Term Girl", + subtitle: "Now over 4 years", + measurementMethod: "height", + sex: 'female', + childMeasurements: termToOverFourYearsGirlHeight, + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, + }; + }); + + it("should plot 14 dot points for chronological age.", () => { + render(); + expect(screen.queryAllByTestId('chronologicalMeasurementPoint')).toHaveLength(14); + }); + + it("should plot 0 x points for corrected age.", () => { + render(); + expect(screen.queryAllByTestId('correctedMeasurementPoint')).toHaveLength(0); + }); + +}); + + +// Paste button tests + +describe("All tests relating to testing the copy button", () => { + let props: CentileChartProps; + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "7.0.0", + reference: 'uk-who', + title: 'TestChartTitle', + subtitle: 'TestChartSubtitle', + measurementMethod: 'height', + sex: 'male', + childMeasurements: [], + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: true, + exportChartCallback: ()=>null, + clinicianFocus: false + }; + }); + + it("should show that paste button is present if enableExport prop is true", () => { + render(); + expect(screen.queryByTestId("copy-button")).toBeInTheDocument(); + }) + it("should show the Copy Graph text upon hovering", () => { + render(); + fireEvent.mouseEnter(screen.getByTestId('copy-button')); + expect(screen.queryByText("Copy Graph")); + }) + it("should show the 'copied' text upon clicking and then it should fade", async () => { + render(); + fireEvent.click(screen.getByTestId('copy-button')); + await waitFor(()=>expect(screen.queryByText('Copied!')), {timeout: 1000}); + }) + it("should show the grey rim around copy button on hover", () => { + render(); + fireEvent.mouseOver(screen.getByTestId('copy-button')); + expect(screen.getByTestId('copy-button')).toHaveStyle('background-color: ButtonFace'); + }) + +}) + +describe("Tests relating to exportChartCallback function", () => { + const mockExportChartCallback = jest.fn(); + let props: CentileChartProps; + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "7.0.0", + reference: 'uk-who', + title: 'TestChartTitle', + subtitle: 'TestChartSubtitle', + measurementMethod: 'height', + sex: 'male', + childMeasurements: [], + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: true, + exportChartCallback: mockExportChartCallback, + clinicianFocus: false, + }; + }); + + it("should trigger exportChartCallback function onclick", () => { + render(); + fireEvent.click(screen.getByTestId('copy-button')); + expect(mockExportChartCallback).toHaveBeenCalled(); + }) +}) + +describe("Tests relating to negative settings on the copy button", () => { + let props: CentileChartProps; + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "7.0.0", + reference: 'uk-who', + title: 'TestChartTitle', + subtitle: 'TestChartSubtitle', + measurementMethod: 'height', + sex: 'male', + childMeasurements: [], + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, + }; + }); + + it("should show that the paste button is absent if enableExport is false", () => { + render(); + expect(screen.queryByTestId('copy-button')).not.toBeInTheDocument(); + }) +}) + +describe("All tests relate to a single height measurement in a term girl now 4 years old with an advanced bone age and some events.", () => { + let props: CentileChartProps; + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "7.0.0", + reference: "uk-who", + title: "Term Girl", + subtitle: "Now over 4 years with advanced bone age", + measurementMethod: "height", + sex: 'female', + childMeasurements: termGirlWithSingleHeightMeasurementAndBoneAgeAndEvent, + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, + }; + }); + + it("Chronological age should be correct.", () => { + const chart = render(); + expect(chart.queryAllByTestId('chronologicalMeasurementPoint')).toHaveLength(1); + // 4.167008898015058 age + + }); + +}); + +describe("All tests relating to the zoom functionality where enableZoom needs to be true", () => { + let props: CentileChartProps; + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "7.0.0", + reference: "uk-who", + title: "Term Girl", + subtitle: "Now over 4 years with advanced bone age", + measurementMethod: "height", + sex: 'female', + childMeasurements: termGirlWithSingleHeightMeasurementAndBoneAgeAndEvent, + midParentalHeightData: midparentalHeight, + enableZoom: true, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false + }; + }); + it("should show the zoom button when enablezoom is true", () => { + render(); + expect(screen.queryByTestId('zoom-button')).toBeInTheDocument(); + }); + it("should show the Toggle Full Lifespan text upon hovering", () => { + render(); + fireEvent.mouseEnter(screen.getByTestId('zoom-button')); + expect(screen.queryByText("Toggle Full Lifespan")); + }); + it("should show the Reset Zoom button if zoom is applied", () => { + render(); + fireEvent.click(screen.getByTestId('zoom-button')); + expect(screen.queryByTestId("resetzoom-button")).toBeInTheDocument(); + }) +}) + +describe("Tests relating to negative settings on the zoom button", () => { + let props: CentileChartProps; + const midparentalHeight: MidParentalHeightObject = {} + + beforeEach(() => { + props = { + chartsVersion: "7.0.0", + reference: 'uk-who', + title: 'TestChartTitle', + subtitle: 'TestChartSubtitle', + measurementMethod: 'height', + sex: 'male', + childMeasurements: [], + midParentalHeightData: midparentalHeight, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, + }; + }); + + it("should show that the zoom button is absent if enableZoom is false", () => { + render(); + expect(screen.queryByTestId('resetzoom-button')).not.toBeInTheDocument(); + }) +}) \ No newline at end of file diff --git a/src/CentileChart/CentileChart.tsx b/src/CentileChart/CentileChart.tsx index 0442d4e..bee61a0 100644 --- a/src/CentileChart/CentileChart.tsx +++ b/src/CentileChart/CentileChart.tsx @@ -7,12 +7,12 @@ import { VictoryGroup, VictoryLine, VictoryScatter, - VictoryVoronoiContainerProps, - VictoryZoomContainerProps, VictoryTooltip, VictoryAxis, VictoryLabel, - VictoryArea + VictoryArea, + DomainPropType, + VictoryPortal, } from 'victory'; // helper functions @@ -24,12 +24,16 @@ import defaultToggles from '../functions/defaultToggles'; import { tooltipText } from '../functions/tooltips'; import { delayedPubertyThreshold, makePubertyThresholds, lowerPubertyBorder } from '../functions/DelayedPuberty'; import { getFilteredMidParentalHeightData } from '../functions/getFilteredMidParentalHeightData'; +import { isCrowded } from '../functions/isCrowded'; +import { labelAngle } from '../functions/labelAngle'; +import addOrdinalSuffix from '../functions/addOrdinalSuffix'; +import { labelIndexInterval } from '../functions/labelIndexInterval'; +import { referenceText } from '../functions/referenceText'; // interfaces & props import { CentileChartProps } from './CentileChart.types'; import { ICentile } from '../interfaces/CentilesObject'; import { Measurement } from '../interfaces/RCPCHMeasurementObject'; -import { Domains } from '../interfaces/Domains'; // components/subcomponents import { XPoint } from '../SubComponents/XPoint'; @@ -38,17 +42,16 @@ import RenderTickLabel from '../SubComponents/RenderTickLabel'; import { TitleContainer } from '../SubComponents/TitleContainer'; import { StyledRadioButtonGroup } from '../SubComponents/StyledRadioButtonGroup'; import { StyledResetZoomButton } from '../SubComponents/StyledResetZoomButton'; +import { StyledGradientLabelsButton } from '../SubComponents/StyledGradientLabelsButton' +import { StyledButtonTooltip } from '../SubComponents/StyledButtonTooltip'; import { ButtonContainer } from '../SubComponents/ButtonContainer'; -import { TwoButtonContainer } from '../SubComponents/TwoButtonContainer'; +import { ThreeButtonContainer } from '../SubComponents/ThreeButtonContainer'; import { ChartTitle } from '../SubComponents/ChartTitle'; import { LogoContainer } from '../SubComponents/LogoContainer'; -import { VersionLabel } from '../SubComponents/VersionLabel'; +import { IndividualLogoContainer } from '../SubComponents/IndividualLogoContainer'; import { MainContainer } from '../SubComponents/MainContainer'; - -// RCPCH Icon: -import icon from '../images/icon.png'; -import ukca from '../images/ukca.png'; -import { isCrowded } from '../functions/isCrowded'; +import { TopContainer } from '../SubComponents/TopContainer'; +import { VersionLabel } from '../SubComponents/VersionLabel'; import { EventCaret } from '../SubComponents/EventCaret'; import { StyledShareButton } from '../SubComponents/StyledShareButton'; import { StyledFullScreenButton } from '../SubComponents/StyledFullScreenButton'; @@ -56,13 +59,24 @@ import { ShareButtonWrapper } from '../SubComponents/ShareButtonWrapper'; import { FullScreenButtonWrapper } from '../SubComponents/FullScreenButtonWrapper'; import { ShareIcon } from '../SubComponents/ShareIcon'; import { CopiedLabel } from '../SubComponents/CopiedLabel'; +import { ShowCentileLabelIcon } from '../SubComponents/ShowCentileLabelIcon'; +import { HideCentileLabelIcon } from '../SubComponents/HideCentileLabelIcon'; import { ChartContainer } from '../SubComponents/ChartContainer'; import { FullScreenIcon } from '../SubComponents/FullScreenIcon'; import { CloseFullScreenIcon } from '../SubComponents/CloseFullScreenIcon'; import { ResetZoomContainer } from '../SubComponents/ResetZoomContainer'; +import { GradientLabelsButtonWrapper } from '../SubComponents/GradientLabelsButtonWrapper'; + +// RCPCH Icon: +import icon from '../images/icon.png'; +import ukca from '../images/ukca.png'; + +// styles - imports fonts +import '../global.css'; +// import GlobalFonts from '../fonts/fonts' // allows two top level containers: zoom and voronoi -const VictoryZoomVoronoiContainer = createContainer( +const VictoryZoomVoronoiContainer:any = createContainer( 'zoom', 'voronoi', ); @@ -94,6 +108,9 @@ function CentileChart({ const chartRef=useRef(); const [active, setActive] = useState(false); const [fullScreen, setFullScreen]=useState(true); + const [centileLabels, setCentileLabels] = useState(false); + + // save & destruct domains and data on initial render and when dependencies change let { bmiSDSData, centileData, computedDomains, chartScaleType } = useMemo( () => @@ -108,34 +125,52 @@ function CentileChart({ [storedChildMeasurements, sex, measurementMethod, reference, showCorrectedAge, showChronologicalAge], ); - const updatedData = useMemo(() => getVisibleData(sex, measurementMethod, reference, userDomains), [ - sex, - measurementMethod, - reference, - userDomains, - ]); + // get the highest reference index of visible centile data + let maxVisibleReferenceIndex: number = null; + let minimumArrayLength; + centileData.forEach((item,index)=>{ + switch (index) { + case 0: + minimumArrayLength = 3; // neonates label gap + break; + case 1: + minimumArrayLength = 4; // infants label gap + break; + case 2: + minimumArrayLength = 6; // small child label gap + break; + case 3: + minimumArrayLength = 15; // large child label gap + break; + default: + minimumArrayLength = 6; + break; + } + if (item[0].data.length > minimumArrayLength){ + maxVisibleReferenceIndex = index; + } + }); - const allowZooming = storedChildMeasurements.length > 0 && enableZoom ? true : false; - + const domains = userDomains || computedDomains; - + const isChartCrowded = isCrowded(domains, childMeasurements); - + let pubertyThresholds: null | any[] = null; - + if (reference === 'uk-who' && measurementMethod === 'height') { pubertyThresholds = makePubertyThresholds(domains, sex); } - + const filteredMidParentalHeightData = useMemo(() => getFilteredMidParentalHeightData(reference, childMeasurements, midParentalHeightData, sex),[ reference, childMeasurements, - midParentalHeightData, + midParentalHeightData, sex ]); - // Create the shaded area at term + // Create the shaded area at term let termAreaData: null | any[] = null; if ( @@ -166,7 +201,7 @@ function CentileChart({ if (enableExport) { setActive(true); exportChartCallback(chartRef.current.firstChild) // this passes the raw SVG back to the client for converting - } + } } // label fade on cut @@ -179,7 +214,7 @@ function CentileChart({ setFullScreen(!fullScreen); fullScreen ? setStoredChildMeasurements([]) : setStoredChildMeasurements(childMeasurements); } - + // toggle between corrected/uncorrected/both const onSelectRadioButton = (event: MouseEvent) => { switch ((event.target as HTMLInputElement).value) { @@ -201,11 +236,14 @@ function CentileChart({ setUserDomains(null); }; - const handleZoomChange = (domain: Domains) => { + const handleZoomChange = (domain: DomainPropType) => { setUserDomains(domain); }; - + const renderGradientLabels = () => { + setCentileLabels(!centileLabels); + } + // always reset zoom to default when measurements array changes useLayoutEffect(() => { setUserDomains(null); @@ -213,35 +251,40 @@ function CentileChart({ return ( - -
- + + + + + {chartsVersion} -
- -
- - - {title} - {subtitle} - + + + + + + + + {title} + {subtitle} + + {/* The VictoryChart is the parent component. It contains a Voronoi container, which groups data sets together for the purposes of tooltips */} {/* It has an animation object and the domains are the thresholds of ages rendered. This is calculated from the child data supplied by the user. */} {/* Tooltips are here as it is the parent component. More information of tooltips in centiles below. */} { chartRef.current=ref} } allowZoom={allowZooming} allowPan={allowZooming} @@ -249,7 +292,9 @@ function CentileChart({ zoomDomain={domains} labelComponent={ { @@ -350,7 +395,7 @@ function CentileChart({ return o; }) return ( - ); })} - + ); }) } {/* Render the centiles - loop through the data set, create a line for each centile */} - {/* On the old charts the 50th centile was thicker and darker and this lead parents to believe it was therefore */} + {/* On the old charts the 50th centile was thicker and darker and this led parents to believe it was therefore */} {/* the line their children should follow. This was a design mistake, since it does not matter which line the child is on */} {/* so long as they follow it. The middle line was therefore 'de-emphasised' on the newer charts. */} {/* For each reference data set, there are 9 centiles. The 0.4th, 9th, 50th, 91st, 99.6th are all dashed. */} @@ -413,36 +458,78 @@ function CentileChart({ {/* to a step down in height weight and bmi in the data set. There is another tool tip at 4 years to indicate transition from datasets. */} {centileData && - centileData.map((referenceData, index) => { + centileData.map((referenceData, referenceIndex) => { + return ( - {referenceData.map((centile: ICentile, centileIndex: number) => { - + // BMI charts also have SDS lines at -5, -4, -3, -2, 2, 3, 4, 5 + + if (centile.data.length < 1){ + // prevents a css `width` infinity error if no data presented to centile line + return + } + if (centileIndex % 2 === 0) { // even index - centile is dashed return ( centileLabels && labelIndexInterval(chartScaleType, props.index) && props.index > 0 ? [addOrdinalSuffix(centile.centile)]: null} + labelComponent={ + { + return labelAngle(centile.data, index, chartScaleType, measurementMethod, domains); + } + } + style={styles.centileLabel} + backgroundStyle={{fill:'white'}} + backgroundPadding={{top: 1, bottom: 1, left: 3, right:3}} + textAnchor={'middle'} + verticalAnchor={'middle'} + dy={0} + /> + } /> ); } else { // uneven index - centile is continuous + return ( centileLabels && labelIndexInterval(chartScaleType, props.index) && props.index > 0 ? [addOrdinalSuffix(centile.centile)]: null} + labelComponent={ + { + return labelAngle(centile.data, index, chartScaleType, measurementMethod, domains); + } + } + style={[{ fill: styles.centileLabel.fill, fontFamily: styles.centileLabel.fontFamily, fontSize: styles.centileLabel.fontSize }]} + backgroundStyle={{fill:'white'}} + backgroundPadding={{top: 0, bottom: 0, left: 3, right:3}} + textAnchor={'middle'} + verticalAnchor={'middle'} + dy={0} + /> + } /> ); } @@ -457,25 +544,45 @@ function CentileChart({ measurementMethod === "bmi" && bmiSDSData && bmiSDSData.map((sdsReferenceData, index) => { return ( - - {sdsReferenceData.map((sdsLine, sdsIndex: number) => { - + {sdsReferenceData.map((sdsLine: ICentile, sdsIndex: number) => { + // BMI charts have SDS lines at -5, -4, -3, 3, 3.33, 3.67, 4 + + if (sdsLine.data.length < 1){ + // prevents a css `width` infinity error if no data presented to sds line + return + } // sds line is dashed return ( centileLabels && labelIndexInterval(chartScaleType, props.index) && props.index > 0 ? [sdsLine.sds]: null} + labelComponent={ + { + return labelAngle(sdsLine.data, index, chartScaleType, measurementMethod, domains); + } + } + style={{fill: styles.sdsLine.data.stroke, fontSize: 10.0}} + backgroundStyle={{fill:'white'}} + textAnchor={'end'} + dy={5} + /> + } /> ); - + })} ) @@ -494,7 +601,6 @@ function CentileChart({ name={`puberty-${dataArray[0].x}`} style={styles.delayedPubertyThresholdLine} data={dataArray} - labels={({ datum }) => datum.label} labelComponent={ { - if ( - childMeasurement.measurement_calculated_values.corrected_measurement_error || - childMeasurement.measurement_calculated_values.chronological_measurement_error - ) { - return null; - } + {childMeasurements.map((childMeasurement: Measurement, index) => { const chronData: any = { age_type: 'chronological_age', @@ -539,9 +639,12 @@ function CentileChart({ lay_comment: childMeasurement.measurement_dates.comments.lay_chronological_decimal_age_comment, observation_date: new Date(childMeasurement.measurement_dates.observation_date).toLocaleDateString('en-UK'), observation_value_error: childMeasurement.child_observation_value.observation_value_error, + chronological_measurement_error: childMeasurement.measurement_calculated_values.chronological_measurement_error, + chronological_decimal_age_error: childMeasurement.measurement_dates.chronological_decimal_age_error, x: childMeasurement.measurement_dates.chronological_decimal_age, y: childMeasurement.child_observation_value.observation_value, - sds: childMeasurement.measurement_calculated_values.chronological_sds + sds: childMeasurement.measurement_calculated_values.chronological_sds, + chronological_percentage_median_bmi: childMeasurement.measurement_calculated_values.chronological_percentage_median_bmi }; const correctData: any = { age_type: 'corrected_age', @@ -559,12 +662,14 @@ function CentileChart({ lay_comment: childMeasurement.measurement_dates.comments.lay_corrected_decimal_age_comment, observation_date: new Date(childMeasurement.measurement_dates.observation_date).toLocaleDateString('en-UK'), observation_value_error: childMeasurement.child_observation_value.observation_value_error, + corrected_measurement_error: childMeasurement.measurement_calculated_values.corrected_measurement_error, + corrected_decimal_age_error: childMeasurement.measurement_dates.corrected_decimal_age_error, x: childMeasurement.measurement_dates.corrected_decimal_age, y: childMeasurement.child_observation_value.observation_value, - sds: childMeasurement.measurement_calculated_values.corrected_sds + sds: childMeasurement.measurement_calculated_values.corrected_sds, + corrected_percentage_median_bmi: childMeasurement.measurement_calculated_values.corrected_percentage_median_bmi }; - if (isChartCrowded) { chronData.size = 1.5; correctData.size = 1.5; @@ -572,39 +677,48 @@ function CentileChart({ chronData.size = 3; correctData.size = 3; } - + return ( { childMeasurement.events_data.events_text && childMeasurement.events_data.events_text.length > 0 && ( - + showChronologicalAge && !showCorrectedAge ? // Events against chronological age only if corrected age not showing - - } - /> + + + } + /> + : // Events against corrected age - - } - /> + + + } + /> + ) } - + { showChronologicalAge && childMeasurement.bone_age.bone_age && ( showChronologicalAge || showCorrectedAge ) && !( showCorrectedAge && showChronologicalAge ) && // bone age linked to chronological age @@ -636,13 +751,14 @@ function CentileChart({ } { showChronologicalAge && !showCorrectedAge && childMeasurement.bone_age.bone_age &&// bone age line linked to chronological age @@ -650,6 +766,7 @@ function CentileChart({ { showCorrectedAge && childMeasurement.bone_age.bone_age && // bone age line linked to corrected age @@ -685,6 +806,7 @@ function CentileChart({ { showChronologicalAge && showCorrectedAge && ( // only show the line if both cross and dot are rendered + {referenceText(reference)} {(showToggle || allowZooming || enableExport || childMeasurements.length > 0) && ( + - - - - { childMeasurements.length > 0 && - - fullScreenPressed()} - color={styles.toggleStyle.activeColour} - size={5} - > - { fullScreen ? - - : - - } - - - } - - { enableExport && ( - - + + {/* Creates the Centile Label toggle button */} + { + + + - - - - Copied! - - - ) - } + { centileLabels ? + + : + + } + { centileLabels ? +
Hide Centile Labels
+ : +
Show Centile Labels
+ } + + + + + } + + {/* Creates the Zoom to see whole lifespan button */} + { childMeasurements.length > 0 && + + + fullScreenPressed()} + $color={styles.toggleStyle.activeColour} + size={5} + data-testid="zoom-button" + > + { fullScreen ? + + : + + } + +
Toggle Full Lifespan
+
+
+ } -
+ {/* Creates the Copy button */} + { enableExport && ( + + + + + +
Copy Chart
+
+ + Copied! + +
+ ) + } + + {showToggle && ( ) } - + {/* {allowZooming && ( */} + $isHidden={!allowZooming} + data-testid="resetzoom-button" + > setUserDomains(null)} - enabled={userDomains !== null} > Reset Zoom @@ -769,4 +949,4 @@ function CentileChart({ ); } -export default CentileChart; \ No newline at end of file +export default CentileChart; diff --git a/src/CentileChart/CentileChart.types.ts b/src/CentileChart/CentileChart.types.ts index a679810..9505ddb 100644 --- a/src/CentileChart/CentileChart.types.ts +++ b/src/CentileChart/CentileChart.types.ts @@ -18,17 +18,17 @@ export type Results = { pointsForCentileLabels: { x: number; y: number; centile: string }[]; }; export interface CentileChartProps { - chartsVersion: string; + chartsVersion?: string; reference: 'uk-who' | 'turner' | 'trisomy-21'; title: string; subtitle: string; measurementMethod: 'height' | 'weight' | 'ofc' | 'bmi'; sex: 'male' | 'female'; childMeasurements: Measurement[]; - midParentalHeightData: MidParentalHeightObject; - enableZoom: boolean; + midParentalHeightData?: MidParentalHeightObject | null; + enableZoom?: boolean; styles: { [key: string]: any }; - enableExport: boolean; - exportChartCallback(svg: any); - clinicianFocus: boolean; + enableExport?: boolean; + exportChartCallback(svg: any): any; + clinicianFocus?: boolean | undefined | null; } diff --git a/src/RCPCHChart/RCPCHChart.mdx b/src/RCPCHChart/RCPCHChart.mdx new file mode 100644 index 0000000..a49c956 --- /dev/null +++ b/src/RCPCHChart/RCPCHChart.mdx @@ -0,0 +1,437 @@ +import { Canvas, Meta } from '@storybook/blocks'; + +import * as RCPCHChartStories from './RCPCHChart.stories.tsx'; + + + +# `` + +An `RCPCHChart` instance is a wrapper component that receives user props and uses these to create either a CentileChart or an SDSChart. + + + +## Props + +The prop to define which chart type is rendered is: `chartType?: 'centile' | 'sds'` + +Other props are: + +- `title: string;` the title of the chart : could include patient name and identifiers +- `measurementMethod: 'height' | 'weight' | 'ofc' | 'bmi';` _must_ be one of the options provided +- `reference: 'uk-who' | 'turner' | 'trisomy-21';` _must_ be one of the options provided +- `sex: 'male' | 'female';` _must_ be one of the options provided +- `measurements: { measurementMethod: Measurement[]};` array of measurements returned from RCPCH Growth API. This should not be edited or manipulated. **NOTE this has changed in v7.0.0** +- `midParentalHeightData?: MidParentalHeightObject | undefined;` an RCPCH object returned from the RCPCH Growth API. Should not be edited or manipulated +- `enableZoom?: boolean;` Allows the user to zoom and pan the charts if set to true. If disabled, hides the buttons associated with this. +- `chartType?: 'centile' | 'sds';` These are addressed below +- `enableExport?: boolean | undefined;` Cut/Paste button. Returns an SVG snapshot of the chart (without title) if set to true. If false, the buttons associated with this are hidden. +- `exportChartCallback(svg?: any): any;` Names the function within the client to return the exported SVG to. +- `clinicianFocus?: boolean | undefined | null;` Toggles tooltip advice between those aimed at clinicians and those more appropriate for patients/lay people. +- `theme?: 'monochrome' | 'traditional' | 'tanner1' | 'tanner2' | 'tanner3' | 'custom'` +- `customThemeStyles?`: discussed below + +### `measurements` + +**Note in v7.0.0 this prop has changed**. Formerly `measurementsArray`, the structure has changed to conform to the following structure: + +```js +{ + height?: Measurement[] + weight?: Measurment[] + bmi?: Measurement[] + ofc?: Measurement[] +} +``` + +Measurements should be passed to the component through the `measurements` prop using this structure. + +This aligns the SDS and centile charts to accept the same structure. SDS and centile charts differ, +in that SDS charts multiple measurement methods on a single chart, whereas centile charts must have one instance for each measurement method. + +#### Example + +An array of height measurements for a girl returned from the RCPCH Growth API: + +```js +{}} // this is a callback for the export chart function if true + clinicianFocus={false} +/> +``` + +In the same way, an implementation for the sds charts would be: + +```js +{}} // this is a callback for the export chart function if true + clinicianFocus={false} +/> +``` + +For information the structure of the Measurement interface is provided here. This matches the response object from the RCPCH Growth API, therefore implementers should not need to use this interface: + +```js +export interface Measurement { + birth_data: { + birth_date: string; + estimated_date_delivery: string; + estimated_date_delivery_string: string; + gestation_weeks: number; + gestation_days: number; + sex: 'male' | 'female'; + }; + child_observation_value: { + measurement_method: 'height' | 'weight' | 'bmi' | 'ofc'; + observation_value: number; + observation_value_error?: string; + }; + measurement_dates: { + chronological_calendar_age: string; + chronological_decimal_age: number; + corrected_calendar_age: string; + corrected_decimal_age: number; + corrected_gestational_age?: { + corrected_gestation_weeks?: number; + corrected_gestation_days?: number; + }; + comments?:{ + clinician_corrected_decimal_age_comment?: string; + lay_corrected_decimal_age_comment?: string; + clinician_chronological_decimal_age_comment: string; + lay_chronological_decimal_age_comment: string; + } + observation_date: string; + corrected_decimal_age_error?: string; + chronological_decimal_age_error?: string; + }; + measurement_calculated_values: { + chronological_centile: number; + chronological_centile_band: string; + chronological_measurement_error?: string; + chronological_sds: number; + corrected_centile: number; + corrected_centile_band: string; + corrected_measurement_error?: string; + corrected_percentage_median_bmi?: number + chronological_percentage_median_bmi?: number + corrected_sds: number; + }; + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + age_error?: string; + age_type: 'chronological_age' | 'corrected_age'; + calendar_age: string; + centile_band: string; + clinician_comment: string; + lay_comment: string; + observation_error?: string; + observation_value_error?: string; + x: number; + y: number; + b?: number; + centile?: number; + sds?: number; + bone_age_label?: string; + events_text?: string[]; + bone_age_type?: string; + bone_age_sds?: number; + bone_age_centile?: number; + }; + corrected_decimal_age_data: { + age_error?: string; + age_type: 'chronological_age' | 'corrected_age'; + calendar_age: string; + centile_band: string; + clinician_comment: string; + lay_comment: string; + observation_error?: string; + observation_value_error?: string; + x: number; + y: number; + b?: number; + centile?: number; + sds?: number; + bone_age_label?: string; + events_text?: string[]; + bone_age_type?: string; + bone_age_sds?: number; + bone_age_centile?: number; + corrected_gestational_age?: string; + }; + }; + sds_data: { + chronological_decimal_age_data: { + age_error?: string; + age_type: 'chronological_age' | 'corrected_age'; + calendar_age: string; + centile_band: string; + clinician_comment: string; + lay_comment: string; + observation_error?: string; + observation_value_error?: string; + x: number; + y: number; + b?: number; + centile: number; + sds: number; + bone_age_label?: string; + events_text?: string[]; + bone_age_sds?: number; + bone_age_type?: string; + bone_age_centile?: number; + }; + corrected_decimal_age_data: { + age_error?: string; + age_type: 'chronological_age' | 'corrected_age'; + calendar_age: string; + centile_band: string; + clinician_comment: string; + lay_comment: string; + observation_error?: string; + observation_value_error?: string; + x: number; + y: number; + b?: number; + centile: number; + sds: number; + bone_age_label?: string; + bone_age_type?: string; + events_text?: string[]; + bone_age_sds?: number; + bone_age_centile?: number; + corrected_gestational_age?: string; + }; + }; + }; + bone_age: { + bone_age?: number; + bone_age_type?: string; + bone_age_centile?: number; + bone_age_sds?: number; + bone_age_text?: string; + }; + events_data: { + events_text?: string[]; + }; +} +``` + +### Themes vs Styles + +Themes are collections of styles. The RCPCH have created some suggested themes: + +1. Monochrome (default) +2. Traditional: this uses the preexisting pink and blue colours present on the paper charts +3. Tanner 1: Purple and yellow +4. Tanner 2: Orange and blue +5. Tanner 3: Red and yellow +6. Custom + +These themes all have predefined attributes for `fontFamily`, `color`, `size`, `stroke` and `strokeWidth` for different aspects of the charts. +If these attributes are too prescriptive and users would like either to build their own theme, +or override styles within an existing theme, this can be done by passing in custom styles through the `customThemeStyles` prop. + +All attributes are optional, therefore only those attributes where changes are requested need be passed in. The keys for the `customThemeStyles` object are as follows: + +- `chartStyle?: ChartStyle;` +- `axisStyle?: AxisStyle;` +- `gridlineStyle?: GridlineStyle;` +- `centileStyle?: CentileStyle;` +- `sdsStyle?: SDSStyle;` +- `measurementStyle?: MeasurementStyle;` + +The attributes of each of these are below: + +#### `ChartStyle` + +- `backgroundColour?: string;` //background colour of chart +- `titleStyle?: TextStyle `| undefined; // style of text in title: includes fontFamily, fontSize, colour, weight (regular/bold/italic) +- `subTitleStyle?: TextStyle `| undefined; // style of text in subtitle: includes fontFamily, fontSize, colour, weight (regular/bold/italic) +- `tooltipBackgroundColour?: string;` //background colour of tooltip +- `tooltipStroke?: string;` //border colour of tooltip +- `tooltipTextStyle?: TextStyle `| undefined; // tooltip text: includes fontFamily, fontSize, colour, weight (regular/bold/italic) +- `termFill?: string;` // background colour of weight term area +- `termStroke?: string;` // border colour of weight term area +- `toggleButtonInactiveColour?: string;` // buttons - inactive colour +- `toggleButtonActiveColour?: string;` // buttons - active colour +- `toggleButtonTextStyle?: TextStyle | undefined;` // buttons text: includes fontFamily, fontSize, colour, weight (regular/bold/italic) + +#### `MeasurementStyle` + +- `measurementFill?: string;` // measurement point fill colour - only apply to SDS charts +- `highlightedMeasurementFill?: string;` // measurement point fill colour when hightlighted (SDS charts) +- `eventTextStyle?: TextStyle;` // styles for text of events: includes fontFamily, fontSize, colour, weight (regular/bold/italic) + +#### `CentileStyle` + +- `sdsStroke?: string;` // sds line colour +- `centileStroke?: string;` // centile line colour +- `delayedPubertyAreaFill?: string;` // delayed puberty area colour +- `midParentalCentileStroke?: string;` // Midparental height centile line colour +- `midParentalAreaFill?: string;` // Midparental height area colour + +#### `SDSStyle` + +- `heightStroke?: string;` // sds line colour +- `weightStroke?: string;` // sds line colour +- `ofcStroke?: string;` // sds line colour +- `bmiStroke?: string;` // sds line colour + +#### `GridlineStyle` + +- `gridlines?: boolean;` // show or hide gridlines +- `stroke?: string;` // gridline colour +- `strokeWidth?: number;` // gridline width +- `dashed?: boolean;` // dashed vs continuous gridlines + +#### `AxisStyle` + +- `axisStroke?: string;` // Axis colour +- `axisLabelTextStyle?: TextStyle | undefined;` // Axis label text: : includes fontFamily, fontSize, colour, weight (regular/bold/italic) +- `tickLabelTextStyle?: TextStyle | undefined;` // Tick label text : includes fontFamily, fontSize, colour, weight (regular/bold/italic) + +#### `TextStyle` + +- `name?: string;` +- `colour?: string;` +- `size?: number;` +- `style?: 'bold' | 'italic' | 'normal';` + +For example, if a user wished to override the background colour of the existing 'monochrome' theme: + +```js +const customChartStyle: ChartStyle = { + backgroundColour: "tomato" +} + +const customStyles = { + chartStyle: customChartStyle +} +``` + +And in the JSX: + +```js + {}} // this is a callback for the export chart function if true + clinicianFocus={false} +/> +``` + +yields: + + diff --git a/src/RCPCHChart/RCPCHChart.scss b/src/RCPCHChart/RCPCHChart.scss index b09a63a..c95b4fb 100644 --- a/src/RCPCHChart/RCPCHChart.scss +++ b/src/RCPCHChart/RCPCHChart.scss @@ -1,11 +1,11 @@ // Generated with util/create-component.js -@import "../variables.scss"; -@import "../typography.scss"; +// @import "../variables.scss"; +// @import "../typography.scss"; -.foo-bar { - @include font-defaults; +// .foo-bar { +// @include font-defaults; - color: $rcpch-darkgrey; -} +// color: $rcpch-darkgrey; +// } diff --git a/src/RCPCHChart/RCPCHChart.stories.tsx b/src/RCPCHChart/RCPCHChart.stories.tsx new file mode 100644 index 0000000..c70d022 --- /dev/null +++ b/src/RCPCHChart/RCPCHChart.stories.tsx @@ -0,0 +1,124 @@ +// Replace your-renderer with the renderer you are using (e.g., react, vue3, etc.) +import type { Meta, StoryObj } from '@storybook/react'; + +import RCPCHChart from './RCPCHChart.tsx'; +import { ChartStyle } from '../interfaces/StyleObjects.ts'; + +// data +import { twoToEight } from '../testParameters/measurements/twoToEight'; +import { prematureGirlOverThreeHeight } from '../testParameters/measurements/prematureGirlOverThreeHeight.ts'; +import { sdsTenYearGirlData } from '../testParameters/measurements/sdsTenYearGirlData' + +const meta: Meta = { + component: RCPCHChart, +}; +export default meta; + +type Story = StoryObj; + +const customChartStyle: ChartStyle = { + backgroundColour: "tomato" +} + +const customStyles = { + chartStyle: customChartStyle +} + +export const SDSChart: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'height', + reference: 'uk-who', + sex: 'female', + measurements: { + height: twoToEight, + weight: [], + bmi: [], + ofc: [] + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'sds', + enableExport: false, + exportChartCallback: ()=>{}, + clinicianFocus: true, + theme: 'tanner3', + customThemeStyles: {} + } +}; + +export const CentileChart: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'height', + reference: 'uk-who', + sex: 'female', + measurements: {height: twoToEight}, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: ()=>{}, + theme: 'monochrome', + customThemeStyles: {} + }, +}; + +export const TomatoCentileChart: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'height', + reference: 'uk-who', + sex: 'female', + measurements: { + height: twoToEight + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'centile', + enableExport: false, + exportChartCallback: ()=>{}, + theme: 'monochrome', + customThemeStyles: customStyles + }, +}; + +export const PrematureSDSChart: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'height', + reference: 'uk-who', + sex: 'female', + measurements: { + height: prematureGirlOverThreeHeight, + weight: [], + bmi: [], + ofc: [] + }, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'sds', + enableExport: false, + exportChartCallback: ()=>{}, + theme: 'tanner3', + customThemeStyles: {} + }, +}; + +export const MultipleMeasurementSDSChart: Story = { + args: { + title: 'Patient Name - Hospital Number', + measurementMethod: 'height', + reference: 'uk-who', + sex: 'female', + measurements: sdsTenYearGirlData, + midParentalHeightData: {}, + enableZoom: true, + chartType: 'sds', + enableExport: false, + exportChartCallback: ()=>{}, + theme: 'monochrome', + customThemeStyles: {} + }, + +} \ No newline at end of file diff --git a/src/RCPCHChart/RCPCHChart.test.tsx b/src/RCPCHChart/RCPCHChart.test.tsx index 279acfc..9b744d2 100644 --- a/src/RCPCHChart/RCPCHChart.test.tsx +++ b/src/RCPCHChart/RCPCHChart.test.tsx @@ -4,33 +4,42 @@ import { render } from "@testing-library/react"; import RCPCHChart from "./RCPCHChart"; import { RCPCHChartProps } from "./RCPCHChart.types"; +import { chartObject, axesObject, gridlinesObject, centilesObject, measurementObjects, sdsObject } from '../testParameters/styles/monochromeStyles' -describe("Test Component", () => { +describe("RCPCHChart", () => { let props: RCPCHChartProps; beforeEach(() => { props = { - measurementMethod: "height", - sex: "male", + reference: 'uk-who', + title: 'TestChartTitle', + subtitle: 'TestChartSubtitle', + measurementMethod: 'height', + sex: 'male', + midParentalHeightData: {}, + enableZoom: false, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, measurementsArray: [], - measurementsSDSArray: [], - reference: "uk-who", - width: 700, - height: 600, - measurementDataPointColour: "red", - centileColour: "blue", - chartBackground: "white" + chartStyle: chartObject, + axisStyle: axesObject, + gridlineStyle: gridlinesObject, + centileStyle: centilesObject, + sdsStyle: sdsObject, + measurementStyle: measurementObjects, + chartType:'centile', }; }); const renderComponent = () => render(); - it("should render foo text correctly", () => { + test.skip("should render chart title text correctly", () => { props.measurementMethod = "height"; const { getByTestId } = renderComponent(); const component = getByTestId("RCPCHChart"); - expect(component).toHaveTextContent("rcpch chart was here"); + expect(component.textContent?.match(/TestChartTitle/)); }); }); diff --git a/src/RCPCHChart/RCPCHChart.tsx b/src/RCPCHChart/RCPCHChart.tsx index ce9bb2e..c730e85 100644 --- a/src/RCPCHChart/RCPCHChart.tsx +++ b/src/RCPCHChart/RCPCHChart.tsx @@ -16,43 +16,72 @@ import makeAllStyles from '../functions/makeAllStyles'; import ErrorBoundary from '../SubComponents/ErrorBoundary'; import { ClientMeasurementObject } from '../interfaces/ClientMeasurementObject'; import defineNonStylePropDefaults from '../functions/defineNonStylePropDefaults'; +import { nameForReference } from '../functions/nameForReference' +import { nameForMeasurementMethod } from '../functions/nameForMeasurementMethod'; +import { stylesForTheme } from '../functions/stylesForTheme'; // const VERSION_LOG = '[VI]Version: {version} - built on {date}[/VI]'; const VERSION = '[VI]v{version}[/VI]'; // uses version injector plugin to Rollup to report package.json version const RCPCHChart: React.FC = ({ title, - subtitle, measurementMethod, reference, sex, - measurementsArray, + measurements, midParentalHeightData, enableZoom = true, - chartStyle, - axisStyle, - gridlineStyle, - centileStyle, - sdsStyle, - measurementStyle, chartType, enableExport, exportChartCallback, - clinicianFocus + clinicianFocus, + theme, + customThemeStyles }) => { - const styles = makeAllStyles(chartStyle, axisStyle, gridlineStyle, centileStyle, sdsStyle, measurementStyle); - + clinicianFocus = defineNonStylePropDefaults('clinicianFocus', clinicianFocus); enableExport = defineNonStylePropDefaults('enableExport', enableExport); chartType = defineNonStylePropDefaults('chartType', chartType); + + // get styles for each theme + let all_styles = stylesForTheme(theme=theme, sex=sex); + + if(customThemeStyles != undefined){ + // replace any default theme styles with custom styles if provided by user + // custom styles must be provided in the correct format + for (const theme_style in all_styles){ + for (const property in customThemeStyles[theme_style]){ + if(property != undefined){ + all_styles[theme_style][property] = customThemeStyles[theme_style][property]; + } + } + } + } + + + // spread styles into individual objects + const { chartStyle, axisStyle, gridlineStyle, centileStyle, sdsStyle, measurementStyle } = all_styles + + // make granular styles to pass into charts + const styles = makeAllStyles(chartStyle, axisStyle, gridlineStyle, centileStyle, sdsStyle, measurementStyle); + // uncomment in development // console.log("loading from locally..."); + + // create subtitle from sex, reference and measurementMethod + const subtitleReferenceMeasurementMethod = `${nameForReference(reference)} - ${nameForMeasurementMethod(measurementMethod)}` + const subtitle = sex==="male" ? `Boys - ${subtitleReferenceMeasurementMethod}` : `Girls - ${subtitleReferenceMeasurementMethod}` let isCentile=(chartType === "centile" || chartType === undefined); - - + if (isCentile){ + /* Centile charts as of 7.0.0 receive the measurements array as a different structure: + { + [measurementMethod]: [...], + } + */ + return ( = ({ reference={reference} title={title} subtitle={subtitle} - childMeasurements={measurementsArray || []} + childMeasurements={ measurements[measurementMethod] } midParentalHeightData={midParentalHeightData || {}} measurementMethod={measurementMethod} sex={sex} @@ -73,7 +102,16 @@ const RCPCHChart: React.FC = ({ ); } else { - const castArray = measurementsArray as ClientMeasurementObject; + /* Since the SDS chart shows multiple measurement methods on a single chart, it receives the measurements array as a different structure: + { + height?: [], + weight?: [], + bmi?: [], + ofc?: [], + } + */ + const castArray = measurements as ClientMeasurementObject; + return ( @@ -90,6 +128,7 @@ const RCPCHChart: React.FC = ({ styles={styles} enableExport={enableExport} exportChartCallback={exportChartCallback} + clinicianFocus={clinicianFocus} /> ); diff --git a/src/RCPCHChart/RCPCHChart.types.ts b/src/RCPCHChart/RCPCHChart.types.ts index c32da0f..6f9f17d 100644 --- a/src/RCPCHChart/RCPCHChart.types.ts +++ b/src/RCPCHChart/RCPCHChart.types.ts @@ -1,24 +1,27 @@ import { Measurement } from '../interfaces/RCPCHMeasurementObject'; import { MidParentalHeightObject } from '../interfaces/MidParentalHeightObject'; import { AxisStyle, CentileStyle, ChartStyle, GridlineStyle, MeasurementStyle, SDSStyle } from '../interfaces/StyleObjects'; +import { ClientMeasurementObject } from '../interfaces/ClientMeasurementObject'; export interface RCPCHChartProps { - title: string; - subtitle: string; + title: string; measurementMethod: 'height' | 'weight' | 'ofc' | 'bmi'; reference: 'uk-who' | 'turner' | 'trisomy-21'; sex: 'male' | 'female'; - measurementsArray: Measurement[]; - midParentalHeightData?: MidParentalHeightObject; + measurements: ClientMeasurementObject; + midParentalHeightData?: MidParentalHeightObject | undefined; enableZoom?: boolean; - chartStyle?: ChartStyle; - axisStyle?: AxisStyle; - gridlineStyle?: GridlineStyle; - centileStyle?: CentileStyle; - sdsStyle?: SDSStyle; - measurementStyle?: MeasurementStyle; chartType?: 'centile' | 'sds'; - enableExport?: boolean; - exportChartCallback(svg?: any); - clinicianFocus?: boolean; + enableExport?: boolean | undefined; + exportChartCallback(svg?: any): any; + clinicianFocus?: boolean | undefined | null; + theme?: 'monochrome' | 'traditional' | 'tanner1' | 'tanner2' | 'tanner3' | 'custom'; + customThemeStyles?: { + chartStyle?: ChartStyle + axisStyle?: AxisStyle + gridlineStyle?: GridlineStyle + measurementStyle?: MeasurementStyle + centileStyle?: CentileStyle + sdsStyle?: SDSStyle + } // individual styles to override in each theme. If 'custom' theme is selected, 'monochrome' styles are defaulted and styles passed here override them } \ No newline at end of file diff --git a/src/SDSChart/SDSChart.scss b/src/SDSChart/SDSChart.scss index 4b63040..06e0297 100644 --- a/src/SDSChart/SDSChart.scss +++ b/src/SDSChart/SDSChart.scss @@ -1,9 +1,9 @@ -// Generated with util/create-component.js -@import "../variables.scss"; -@import "../typography.scss"; +// // Generated with util/create-component.js +// @import "../variables.scss"; +// @import "../typography.scss"; -// .foo-bar { -// @include font-defaults; +// // .foo-bar { +// // @include font-defaults; -// color: $harvey-green; -// } +// // color: $harvey-green; +// // } diff --git a/src/SDSChart/SDSChart.test.tsx b/src/SDSChart/SDSChart.test.tsx index 0ac9e65..7c01baf 100644 --- a/src/SDSChart/SDSChart.test.tsx +++ b/src/SDSChart/SDSChart.test.tsx @@ -4,24 +4,45 @@ import { render } from "@testing-library/react"; import SDSChart from "./SDSChart"; import { SDSChartProps } from "./SDSChart.types"; +import { monochromeStyles } from "../testParameters/styles/monochromeStyles"; +import { ClientMeasurementObject } from "../interfaces/ClientMeasurementObject"; -// describe("Test Component", () => { -// let props: SDSChartProps; +describe("SDSChart", () => { + let props: SDSChartProps; -// beforeEach(() => { -// props = { -// foo: "bar" -// }; -// }); + const blank: ClientMeasurementObject = { + height:[], + weight: [], + ofc:[], + bmi:[] + } -// const renderComponent = () => render(); + beforeEach(() => { + props = { + chartsVersion: 'testVersion', + reference: 'uk-who', + title: 'TestChartTitle', + subtitle: 'TestChartSubtitle', + measurementMethod: 'height', + sex: 'male', + childMeasurements: blank, + midParentalHeightData: {}, + enableZoom: false, + styles: monochromeStyles, + enableExport: false, + exportChartCallback: ()=>null, + clinicianFocus: false, + }; + }); -// it("should render foo text correctly", () => { -// props.foo = "harvey was here"; -// const { getByTestId } = renderComponent(); + const renderComponent = () => render(); -// const component = getByTestId("SDSChart"); + test.skip("should render foo text correctly", () => { + props.title = 'TestChartTitle'; + const { getByTestId } = renderComponent(); -// expect(component).toHaveTextContent("harvey was here"); -// }); -// }); + const component = getByTestId("SDSChart"); + + expect(component.textContent?.match(/TestChartTitle/)); + }); +}); diff --git a/src/SDSChart/SDSChart.tsx b/src/SDSChart/SDSChart.tsx index d68507c..70d7b3b 100644 --- a/src/SDSChart/SDSChart.tsx +++ b/src/SDSChart/SDSChart.tsx @@ -16,6 +16,8 @@ import { // interfaces and props import { SDSChartProps } from "./SDSChart.types"; +import { Measurement } from '../interfaces/RCPCHMeasurementObject'; +import { Line } from '../interfaces/ClientStyleObjects'; // components import { MainContainer } from "../SubComponents/MainContainer"; @@ -25,11 +27,19 @@ import { ChartTitle } from "../SubComponents/ChartTitle"; import { yAxisLabel } from '../functions/yAxisLabel'; import CustomGridComponent from "../SubComponents/CustomGridComponent"; import RenderTickLabel from "../SubComponents/RenderTickLabel"; -import icon from '../images/icon.png'; -import ukca from '../images/ukca.png'; import { VersionLabel } from "../SubComponents/VersionLabel"; import { ButtonContainer } from "../SubComponents/ButtonContainer"; import { StyledRadioButtonGroup } from "../SubComponents/StyledRadioButtonGroup"; +import { XPoint } from "../SubComponents/XPoint"; +import { CopiedLabel } from "../SubComponents/CopiedLabel"; +import { ShareButtonWrapper } from "../SubComponents/ShareButtonWrapper"; +import { ShareIcon } from "../SubComponents/ShareIcon"; +import { StyledShareButton } from "../SubComponents/StyledShareButton"; +import { ChartContainer } from '../SubComponents/ChartContainer'; +import { TopContainer } from '../SubComponents/TopContainer'; +import { IndividualLogoContainer } from '../SubComponents/IndividualLogoContainer'; +import icon from '../images/icon.png'; +import ukca from '../images/ukca.png'; // helper functions import { getDomainsAndData, getVisibleData } from '../functions/getDomainsAndData'; @@ -37,19 +47,15 @@ import xAxisLabel from '../functions/xAxisLabel'; import tailoredXTickValues from '../functions/tailoredXTickValues'; import defaultToggles from '../functions/defaultToggles'; import { sdsTooltipText } from "../functions/sdsTooltipText"; -import { createSDSPointMouseOverObject } from '../functions/sdsPointMouseOverObject'; - -// style sheets -import "./SDSChart.scss"; -import { XPoint } from "../SubComponents/XPoint"; -import { CopiedLabel } from "../SubComponents/CopiedLabel"; -import { ShareButtonWrapper } from "../SubComponents/ShareButtonWrapper"; -import { ShareIcon } from "../SubComponents/ShareIcon"; -import { StyledShareButton } from "../SubComponents/StyledShareButton"; import { generateMidParentalHeightSDSData } from "../functions/generateMidParentalHeightSDSData"; import { symbolForMeasurementType } from "../functions/symbolForMeasurementType"; import { selectedMeasurementMethods } from "../functions/buildListOfMeasurementMethods"; import { measurementMethodForName } from "../functions/measurementMethodForName"; +import { referenceText } from '../functions/referenceText'; + +// style sheets +import "../global.css"; +import { StyledButtonTooltip } from '../SubComponents/StyledButtonTooltip'; const SDSChart: React.FC = ( { @@ -69,7 +75,7 @@ const SDSChart: React.FC = ( ) => { const [userDomains, setUserDomains] = useState(null); - let measurements = []; + let measurements:Measurement[] = []; if (measurementMethod==="height"){ measurements=childMeasurements.height; } @@ -119,13 +125,12 @@ const SDSChart: React.FC = ( const [legendSelections, setLegendSelections] = useState(legendMeasurements); - - let termAreaData: null | any[] = null; const shadedTermAreaText = 'Babies born in this shaded area\nare term. It is normal for\nbabies to lose weight over\nthe first two weeks of life.\nMedical review should be sought\nif weight has dropped by more\nthan 10% of birth weight or\nweight is still below birth weight\nthree weeks after birth.'; + let { computedDomains, chartScaleType } = useMemo( () => getDomainsAndData( @@ -225,19 +230,24 @@ const SDSChart: React.FC = ( setActive(false); }; - const chartEvents = createSDSPointMouseOverObject(styles); // highlight a given series on mouseover - return ( - -
- + + + + + {chartsVersion} -
- -
+ + + + + + + + {title} @@ -247,86 +257,82 @@ const SDSChart: React.FC = ( {/* The VictoryChart is the parent component. It contains a Voronoi container, which groups data sets together for the purposes of tooltips */} {/* It has an animation object and the domains are the thresholds of ages rendered. This is calculated from the child data supplied by the user. */} {/* Tooltips are here as it is the parent component. More information of tooltips in centiles below. */} - { chartRef.current=ref} } - labelComponent={ - - } - labels={(datum)=> { - return sdsTooltipText(datum)} - } - voronoiBlacklist={[ - 'linkLine-height', - 'linkLine-weight', - 'linkLine-ofc', - 'linkLine-bmi', - 'chronological-height-line', - 'corrected-height-line', - 'chronological-weight-line', - 'corrected-weight-line', - 'chronological-bmi-line', - 'corrected-bmi-line', - 'chronological-ofc-line', - 'corrected-ofc-line'] - } - /> - } - events={chartEvents} // create events objects for each measurement that will highlight datapoints on mouse hover - > - - { - /* Term child shaded area: */ - termAreaData !== null && + { chartRef.current=ref} } + labelComponent={ + + } + labels={(datum)=> { + return sdsTooltipText(datum)} + } + voronoiBlacklist={[ + 'linkLine-height', + 'linkLine-weight', + 'linkLine-ofc', + 'linkLine-bmi', + 'chronological-height-line', + 'corrected-height-line', + 'chronological-weight-line', + 'corrected-weight-line', + 'chronological-bmi-line', + 'corrected-bmi-line', + 'chronological-ofc-line', + 'corrected-ofc-line'] + } + /> } - - {/* X axis: */} - + > + + { + /* Term child shaded area: */ + termAreaData !== null && } - gridComponent={} - /> - { - /* render the y axis */ + {/* X axis: */} + } + gridComponent={} /> - } - {/* - Measurements by type - loops through the measurement data provided by the API, first by measurement type, - then by data point. - */} + { + /* render the y axis */ + + } - + {/* + Measurements by type - loops through the measurement data provided by the API, first by measurement type, + then by data point. + */} - { childMeasurementsByType.map((measurementTypeItem, itemIndex) => - + { childMeasurementsByType.map((measurementTypeItem, itemIndex) => + { /* @@ -335,8 +341,9 @@ const SDSChart: React.FC = ( makeAllStyles function. Each line is associated with a scatter also, whose symbol varies */ + let measurementStyles; - let linkLineStyles; + let linkLineStyles: Line; let showData: boolean; if (measurementTypeItem.measurementType==="height"){ @@ -358,13 +365,18 @@ const SDSChart: React.FC = ( measurementStyles=styles?.ofcSDS; linkLineStyles=styles?.ofcSDS; showData=showOFC; - } + } + + if (measurementTypeItem.measurementTypeData.length == 0 || !showData){ + // if there is no data for this measurement, do not run this code as leads to css errors + return; + } return ( - { showChronologicalAge && showData && + { showChronologicalAge && showData && measurementTypeItem.measurementTypeData.length > 0 && = ( /> } - { showCorrectedAge && showData && + { showCorrectedAge && showData && measurementTypeItem.measurementTypeData.length > 0 && = ( } - { showCorrectedAge && showChronologicalAge && showData && + { showCorrectedAge && showChronologicalAge && showData && measurementTypeItem.measurementTypeData.length > 0 && measurementTypeItem.measurementTypeData.map((measurement, index)=>{ const chron = {...measurement.plottable_data.sds_data.chronological_decimal_age_data}; const correct = {...measurement.plottable_data.sds_data.corrected_decimal_age_data}; @@ -447,122 +459,153 @@ const SDSChart: React.FC = ( }) } - - { - midParentalHeightData?.mid_parental_height_sds && reference==="uk-who" && measurementMethod==="height" && - // only show midparental line if data present and height is selected - - } + + { + midParentalHeightData?.mid_parental_height_sds && reference==="uk-who" && measurementMethod==="height" && + // only show midparental line if data present and height is selected + + + } - { /* - legend - comes last to allow it to sit atop the axes and lines - */ - } - + { /* + legend - comes last to allow it to sit atop the axes and lines + */ } - name="legend" - title={["(Show/Hide on select)"]} - events={[{ - target: "data", - eventHandlers: { - onClick: ()=>{ - return [ - { - target: "data", - mutation: (props)=>{ - const fill = props.style && props.style.fill; - const name = measurementMethodForName(props.datum.name); - if (name==="height"){ - setShowHeight(!showHeight); - } - if (name==="weight"){ - setShowWeight(!showWeight); - } - if (name==="bmi"){ - setShowBMI(!showBMI); - } - if (name==="ofc"){ - setShowOFC(!showOFC); - } - return fill === "grey" ? null : { style: { fill: "grey" } }; - } - }, - { - target: "labels", - mutation: (props)=>{ - const fill = props.style && props.style.fill; - const name = measurementMethodForName(props.datum.name); - if (name==="height"){ - setShowHeight(!showHeight); - } - if (name==="weight"){ - setShowWeight(!showWeight); - } - if (name==="bmi"){ - setShowBMI(!showBMI); + + } + name="legend" + title={["(Show/Hide series by","clicking on the shape","in the legend)"]} + events={[{ + target: "data", + eventHandlers: { + onClick: ()=>{ + return [ + { + target: "data", + mutation: (props)=>{ + const fill = props.style && props.style.fill; + const name = measurementMethodForName(props.datum.name); + if (name==="height"){ + setShowHeight(!showHeight); + } + if (name==="weight"){ + setShowWeight(!showWeight); + } + if (name==="bmi"){ + setShowBMI(!showBMI); + } + if (name==="ofc"){ + setShowOFC(!showOFC); + } + return fill === "grey" ? null : { style: { fill: "grey" } }; } - if (name==="ofc"){ - setShowOFC(!showOFC); + }, + { + target: "labels", + mutation: (props)=>{ + const fill = props.style && props.style.fill; + const name = measurementMethodForName(props.datum.name); + if (name==="height"){ + setShowHeight(!showHeight); + } + if (name==="weight"){ + setShowWeight(!showWeight); + } + if (name==="bmi"){ + setShowBMI(!showBMI); + } + if (name==="ofc"){ + setShowOFC(!showOFC); + } + return fill === "grey" ? null : { style: { fill: "grey" } }; } - return fill === "grey" ? null : { style: { fill: "grey" } }; } - } - ] + ] + } } - } - }]} - /> + }]} + /> + + + + {referenceText(reference)} + + - {(showToggle || enableExport) && ( - { enableExport && ( + + {/* Creates the Copy button - note if user has disabled this, must have an empty div to allow the toggle buttons to remain in the center */} + { enableExport ? ( - - - - - Copied! - + + + + +
Copy Chart
+
+ + Copied! +
- )} + ) :
} + {showToggle && ( )} + +
+ {/* using flexbox on a single row and the space-between attribute, so must have an 'invisible' div */} +
)}
diff --git a/src/SDSChart/SDSChart.types.ts b/src/SDSChart/SDSChart.types.ts index 9069a0f..1644cbd 100644 --- a/src/SDSChart/SDSChart.types.ts +++ b/src/SDSChart/SDSChart.types.ts @@ -1,4 +1,5 @@ import { ClientMeasurementObject } from '../interfaces/ClientMeasurementObject'; +import { ClientStyle } from '../interfaces/ClientStyleObjects'; import { MidParentalHeightObject } from '../interfaces/MidParentalHeightObject'; export interface SDSChartProps { chartsVersion: string; @@ -6,11 +7,12 @@ export interface SDSChartProps { title: string; subtitle: string; measurementMethod: 'height' | 'weight' | 'ofc' | 'bmi'; - childMeasurements: ClientMeasurementObject; - midParentalHeightData: MidParentalHeightObject; + childMeasurements: ClientMeasurementObject | undefined; + midParentalHeightData?: MidParentalHeightObject | undefined; sex: 'male' | 'female'; enableZoom: boolean; styles: { [key: string]: any }; enableExport: boolean; - exportChartCallback(svg: any); + exportChartCallback(svg: any): any; + clinicianFocus?: boolean | undefined | null; } diff --git a/src/SubComponents/AgeRadioButtonGroup.tsx b/src/SubComponents/AgeRadioButtonGroup.tsx index eca6e8a..6ee0f39 100644 --- a/src/SubComponents/AgeRadioButtonGroup.tsx +++ b/src/SubComponents/AgeRadioButtonGroup.tsx @@ -1,9 +1,10 @@ import * as React from 'react'; -export const AgeRadioButtonGroup = (props) => { +export const AgeRadioButtonGroup = (props: any) => { return (
{ /> { /> { // lollipop tick for months +export const ChartCircle = (props: any) =>{ // lollipop tick for months const {x, y, style, text} = props if (text as number > 0){ return ( @@ -11,4 +11,4 @@ export const ChartCircle = (props) =>{ // lollipop tick for months } else { return null } - } \ No newline at end of file + } \ No newline at end of file diff --git a/src/SubComponents/CopiedLabel.tsx b/src/SubComponents/CopiedLabel.tsx index 281ac52..e164631 100644 --- a/src/SubComponents/CopiedLabel.tsx +++ b/src/SubComponents/CopiedLabel.tsx @@ -2,16 +2,16 @@ import styled from 'styled-components'; import { keyframes, css } from 'styled-components'; export const CopiedLabel = styled.h6<{ - active: boolean; + $active: boolean; }> ` flex-grow:0; text-align: center; margin-left: 5px; opacity: 0; -visibility: ${props => props.active ? `visible` : `hidden`}; +visibility: ${({$active}) => $active ? `visible` : `hidden`}; animation: ${ - props => (props.active ? + ({$active}) => ($active ? css` ${fadeInAnimation} fadeIn 5s; diff --git a/src/SubComponents/ErrorBoundary.tsx b/src/SubComponents/ErrorBoundary.tsx index ba7ab4a..672d867 100644 --- a/src/SubComponents/ErrorBoundary.tsx +++ b/src/SubComponents/ErrorBoundary.tsx @@ -30,9 +30,9 @@ class ErrorBoundary extends React.Component { return { hasError: true }; } - componentDidCatch(error, errorInfo) { + componentDidCatch(error: Error, errorInfo: React.ErrorInfo) { console.error({ error: error.message, errorInfo: errorInfo }); - this.setState({ errorMessage: error.message }); + this.setState({ errorMessage: error.message }); } handleClick() { @@ -53,9 +53,11 @@ class ErrorBoundary extends React.Component { > {!this.state.showError ? 'Show Details' : 'Hide Details'} - - {this.state.errorMessage} - + { this.state.showError && + + {this.state.errorMessage} + + } ); @@ -69,7 +71,7 @@ const ErrorContainer = styled.div<{ height: number; width: number }>` display: block; margin: auto; height: ${({ height }) => height}px; - width: ${({ width }) => width}px; + width: ${({ width }) => width == Infinity ? 0 : width}px; `; const TextContainer = styled.div` diff --git a/src/SubComponents/EventCaret.tsx b/src/SubComponents/EventCaret.tsx index 36dfe44..af7de97 100644 --- a/src/SubComponents/EventCaret.tsx +++ b/src/SubComponents/EventCaret.tsx @@ -1,7 +1,8 @@ import * as React from 'react'; +import '../global.css'; -export const EventCaret = (props) => { - const { x, y, eventsText } = props; +export const EventCaret = (props: any) => { + const { x, y, eventsText, style} = props; const textHeight = 15* eventsText.length; let inverted=false; let peakY = y+85 @@ -11,6 +12,11 @@ export const EventCaret = (props) => { cornerY = y-265; inverted=true; } + let finalX=x + if (finalX < 150){ + finalX += 100; + } + const coords = x-15 + " " + cornerY + " " + x + " " + peakY + " " + (x+15) + " " + cornerY return ( @@ -21,11 +27,13 @@ export const EventCaret = (props) => { fill="none" pointerEvents="visible" /> - - {eventsText.map(eventText => { - return {eventText} - })} + + {eventsText.map((eventText: string, index) => { + return {eventText} + })} ) } + + diff --git a/src/SubComponents/GradientLabelsButtonWrapper.tsx b/src/SubComponents/GradientLabelsButtonWrapper.tsx new file mode 100644 index 0000000..1449a72 --- /dev/null +++ b/src/SubComponents/GradientLabelsButtonWrapper.tsx @@ -0,0 +1,10 @@ +import styled from 'styled-components'; + +export const GradientLabelsButtonWrapper = styled.div +` +flex-grow: 0; +text-align: center; +align-items: center; +display: flex; + +` \ No newline at end of file diff --git a/src/SubComponents/HideCentileLabelIcon.tsx b/src/SubComponents/HideCentileLabelIcon.tsx new file mode 100644 index 0000000..d2ff35a --- /dev/null +++ b/src/SubComponents/HideCentileLabelIcon.tsx @@ -0,0 +1,53 @@ +import * as React from 'react'; +import styled, {keyframes} from 'styled-components'; +import Icon from './Icon' + +const fadeIn = keyframes` + from { + transform: scale(.25); + opacity: 0; + } + + to { + transform: scale(1); + opacity: 1; + } +`; + +const fadeOut = keyframes` + from { + transform: scale(1); + opacity: 1; + } + + to { + transform: scale(.25); + opacity: 0; + } +`; + +const Svg = styled(Icon)` + width: 16px; + height: 16px; + animation: ${fadeOut} .25s linear forwards, ${fadeIn} .25s linear forwards; +`; + + +export const HideCentileLabelIcon = ()=>( + + {/* */} + + + + + + + + 50 + 25 + 75 + 91 + 9 + + +) \ No newline at end of file diff --git a/src/SubComponents/IndividualLogoContainer.tsx b/src/SubComponents/IndividualLogoContainer.tsx new file mode 100644 index 0000000..2213e22 --- /dev/null +++ b/src/SubComponents/IndividualLogoContainer.tsx @@ -0,0 +1,6 @@ +import styled from 'styled-components'; + +export const IndividualLogoContainer = styled.div` + padding-left: 10px; + padding-right: 10px; +`; \ No newline at end of file diff --git a/src/SubComponents/LogoContainer.tsx b/src/SubComponents/LogoContainer.tsx index bba63ea..e25a494 100644 --- a/src/SubComponents/LogoContainer.tsx +++ b/src/SubComponents/LogoContainer.tsx @@ -2,9 +2,7 @@ import styled from 'styled-components'; export const LogoContainer = styled.div` display: flex; - justify-content: space-between; flex-direction: row; - align-items: 'baseline'; - padding-left: 5px; - padding-right: 5px; -`; \ No newline at end of file + justify-content: center; + align-items: center; +` \ No newline at end of file diff --git a/src/SubComponents/MainContainer.tsx b/src/SubComponents/MainContainer.tsx index 2e11463..e2bf66e 100644 --- a/src/SubComponents/MainContainer.tsx +++ b/src/SubComponents/MainContainer.tsx @@ -2,5 +2,8 @@ import styled from 'styled-components'; export const MainContainer = styled.div` display: block; - margin: auto; + margin: 0px; + width: 100%; + height: auto; + text-align: center; `; \ No newline at end of file diff --git a/src/SubComponents/MidParentalHeight.tsx b/src/SubComponents/MidParentalHeight.tsx index 34697b2..37b9ab6 100644 --- a/src/SubComponents/MidParentalHeight.tsx +++ b/src/SubComponents/MidParentalHeight.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; -export const MidParentalHeight = (props) => { +export const MidParentalHeight = (props: any) => { const { scale, data } = props; diff --git a/src/SubComponents/MonthsLabel.tsx b/src/SubComponents/MonthsLabel.tsx index 486d1f8..ddd0704 100644 --- a/src/SubComponents/MonthsLabel.tsx +++ b/src/SubComponents/MonthsLabel.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; -export const MonthsLabel = (props) => { // the same ChartCircle but smaller for use in axis label +export const MonthsLabel = (props:any) => { // the same ChartCircle but smaller for use in axis label const {x, y, text, style} = props return ( {text} diff --git a/src/SubComponents/RenderTickLabel.tsx b/src/SubComponents/RenderTickLabel.tsx index 96d183a..edf3977 100644 --- a/src/SubComponents/RenderTickLabel.tsx +++ b/src/SubComponents/RenderTickLabel.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; -function RenderTickLabel(props) { +function RenderTickLabel(props: any) { const x = props.x; const y = props.y; const text = props.text; @@ -9,7 +9,8 @@ function RenderTickLabel(props) { const lowerX = props.domains.x[0]; const tickColour = style.fill === '000000' ? 'black' : style.fill; - + + // Creates a dashed tick to be used to increment the timespan along the x axis const Dash = () => { return ( @@ -17,11 +18,13 @@ function RenderTickLabel(props) { ); }; + // Creates a lollipop to display the number of months along the x axis const LolliPop = ({ textLabel }: { textLabel: number }) => { if (text !== lowerX) { return ( + {textLabel} month{textLabel > 1 ? `s` : null} ` -visibility: ${(props) => (props.isHidden ? 'hidden' : 'visible' )} +visibility: ${(props) => (props.$isHidden ? 'hidden' : 'visible' )} ` \ No newline at end of file diff --git a/src/SubComponents/ShareIcon.tsx b/src/SubComponents/ShareIcon.tsx index bd1ce2b..b60504b 100644 --- a/src/SubComponents/ShareIcon.tsx +++ b/src/SubComponents/ShareIcon.tsx @@ -8,9 +8,6 @@ const Svg = styled(Icon)` `; export const ShareIcon = ()=>( - // - // - // diff --git a/src/SubComponents/ShowCentileLabelIcon.tsx b/src/SubComponents/ShowCentileLabelIcon.tsx new file mode 100644 index 0000000..ae4df0e --- /dev/null +++ b/src/SubComponents/ShowCentileLabelIcon.tsx @@ -0,0 +1,47 @@ +import * as React from 'react'; +import styled, { keyframes } from 'styled-components'; +import Icon from './Icon' + +const fadeIn = keyframes` + from { + transform: scale(.25); + opacity: 0; + } + + to { + transform: scale(1); + opacity: 1; + } +`; + +const fadeOut = keyframes` + from { + transform: scale(1); + opacity: 1; + } + + to { + transform: scale(.25); + opacity: 0; + } +`; + +const Svg = styled(Icon)` + width: 16px; + height: 16px; + animation: ${fadeOut} .25s linear forwards, ${fadeIn} .25s linear forwards; +`; + +export const ShowCentileLabelIcon = ()=>( + + + + + + + + 50 + th + + +) \ No newline at end of file diff --git a/src/SubComponents/StyledButtonTooltip.tsx b/src/SubComponents/StyledButtonTooltip.tsx new file mode 100644 index 0000000..bae54f7 --- /dev/null +++ b/src/SubComponents/StyledButtonTooltip.tsx @@ -0,0 +1,23 @@ +import styled from 'styled-components'; + +export const StyledButtonTooltip = styled.div` + position: relative; + + .tooltip { + position: absolute; + bottom: 100%; + left: 50%; + transform: translateX(-50%); + display: none; + background-color: #333; + color: #fff; + padding: 5px; + border-radius: 4px; + font-size: 14px; + font-family: 'Montserrat', Helvetica, Arial, sans-serif; + } + + &:hover .tooltip { + display: block; + } +`; \ No newline at end of file diff --git a/src/SubComponents/StyledErrorButton.tsx b/src/SubComponents/StyledErrorButton.tsx index ac413fd..7faf5de 100644 --- a/src/SubComponents/StyledErrorButton.tsx +++ b/src/SubComponents/StyledErrorButton.tsx @@ -12,8 +12,8 @@ export const StyledErrorButton = styled.button<{ margin?: string; }>` align-self: flex-end; - background-color: ${(props) => (props.enabled ? props.activeColour : props.inactiveColour)}; - border: 2px solid ${(props) => (props.enabled ? props.activeColour : props.inactiveColour)}; + background-color: ${({inactiveColour, activeColour, enabled }) => (enabled ? activeColour : inactiveColour)}; + border: 2px solid ${({enabled, activeColour, inactiveColour}) => (enabled ? activeColour : inactiveColour)}; font-family: Arial; font-size: 14px; min-height: 30px; @@ -23,10 +23,10 @@ export const StyledErrorButton = styled.button<{ font-style: ${({ fontStyle }) => fontStyle}; color: ${({ color }) => color}; &:hover { - background-color: ${(props) => (props.enabled ? props.activeColour : props.inactiveColour)}; + background-color: ${({enabled, activeColour, inactiveColour}) => (enabled ? activeColour : inactiveColour)}; color: ${({ color }) => color}; - border: 2px solid ${(props) => (props.enabled ? props.activeColour : props.inactiveColour)}; - outline: ${(props) => (props.enabled ? props.activeColour : 'transparent')} solid 2px; + border: 2px solid ${({enabled, inactiveColour, activeColour}) => (enabled ? activeColour : inactiveColour)}; + outline: ${({enabled, activeColour}) => (enabled ? activeColour : 'transparent')} solid 2px; } &:focus { outline: ${(props) => (props.enabled ? props.activeColour : 'transparent')} solid 2px; diff --git a/src/SubComponents/StyledFullScreenButton.tsx b/src/SubComponents/StyledFullScreenButton.tsx index 0b578db..261ad77 100644 --- a/src/SubComponents/StyledFullScreenButton.tsx +++ b/src/SubComponents/StyledFullScreenButton.tsx @@ -1,10 +1,10 @@ import styled from 'styled-components'; export const StyledFullScreenButton = styled.button<{ - color?: string, + $color?: string, size?: number }>` -background-color: ${(props) => (props.color ? props.color : 'black')}; +background-color: ${(props) => (props.$color ? props.$color : 'black')}; height: 48px; width: 48px; color: white; diff --git a/src/SubComponents/StyledGradientLabelsButton.tsx b/src/SubComponents/StyledGradientLabelsButton.tsx new file mode 100644 index 0000000..bea7e6f --- /dev/null +++ b/src/SubComponents/StyledGradientLabelsButton.tsx @@ -0,0 +1,27 @@ +import styled from 'styled-components'; + +export const StyledGradientLabelsButton = styled.button<{ + $color?: string, + size?: number +}>` +background-color: ${(props) => (props.$color ? props.$color : 'black')}; +height: 48px; +width: 48px; +color: white; +padding: 1rem; +border: none; +cursor: pointer; +border: 5px solid white; +border-radius: 50%; +padding: 3px; +flex: 1; +display: flex; +justify-content: center; +align-items: center; +&:hover { + filter: brightness(85%); +} +&:active { + background-color: brightness(115%); +} +` \ No newline at end of file diff --git a/src/SubComponents/StyledRadioButtonGroup.tsx b/src/SubComponents/StyledRadioButtonGroup.tsx index 03ad8a0..89fa6c9 100644 --- a/src/SubComponents/StyledRadioButtonGroup.tsx +++ b/src/SubComponents/StyledRadioButtonGroup.tsx @@ -2,31 +2,31 @@ import styled from 'styled-components'; import { AgeRadioButtonGroup } from './AgeRadioButtonGroup'; export const StyledRadioButtonGroup = styled(AgeRadioButtonGroup)<{ - activeColour: string; - inactiveColour: string; - fontFamily: string; - fontSize: number; - fontWeight: string; - fontStyle: string; - color: string; - className: string; + $activeColour: string; + $inactiveColour: string; + $fontFamily: string; + $fontSize: number; + $fontWeight: string; + $fontStyle: string; + $color: string; + $className: string; }>` align-self: center; label { - display: inline-block; - padding: 5px 11px; - font-family: ${({ fontFamily }) => fontFamily}; - font-size: ${({ fontSize }) => fontSize}px; - font-weight: ${({ fontWeight }) => fontWeight}; - font-style: ${({ fontStyle }) => fontStyle}; - color: ${({ color }) => color}; + padding: 5px 11px 5px 11px; + font-family: ${({ $fontFamily }) => $fontFamily}; + font-size: ${({ $fontSize }) => $fontSize}px; + font-weight: ${({ $fontWeight }) => $fontWeight}; + font-style: ${({ $fontStyle }) => $fontStyle}; + color: ${({ $color }) => $color}; cursor: pointer; - background-color: ${(props) => props.inactiveColour}; + background-color: ${({$inactiveColour}) => $inactiveColour}; min-height: 30px; + min-width: max-content; } input[type='radio']:checked + label { - color: ${({ color }) => color}; - background-color: ${(props) => props.activeColour}; + color: ${({ $color }) => $color}; + background-color: ${({$activeColour}) => $activeColour}; } input[type='radio'] { display: none; diff --git a/src/SubComponents/StyledResetZoomButton.tsx b/src/SubComponents/StyledResetZoomButton.tsx index 91b104d..e0e01c6 100644 --- a/src/SubComponents/StyledResetZoomButton.tsx +++ b/src/SubComponents/StyledResetZoomButton.tsx @@ -1,35 +1,35 @@ import styled from 'styled-components'; export const StyledResetZoomButton = styled.button<{ - activeColour: string; - inactiveColour: string; - fontFamily: string; - fontSize: number; - fontWeight: string; - fontStyle: string; - color: string; - enabled: boolean; - margin?: string; + $activeColour: string; + $inactiveColour: string; + $fontFamily: string; + $fontSize: number; + $fontWeight: string; + $fontStyle: string; + $color: string; + $enabled: boolean; + $margin?: string; }>` align-self: flex-end; - background-color: ${(props) => (props.enabled ? props.activeColour : props.inactiveColour)}; - border: 2px solid ${(props) => (props.enabled ? props.activeColour : props.inactiveColour)}; + background-color: ${({$enabled, $activeColour, $inactiveColour}) => ($enabled ? $activeColour : $inactiveColour)}; + border: 2px solid ${({$enabled, $activeColour, $inactiveColour}) => ($enabled ? $activeColour : $inactiveColour)}; font-family: Arial; font-size: 14px; min-height: 30px; - min-width: max-content; - font-family: ${({ fontFamily }) => fontFamily}; - font-size: ${({ fontSize }) => fontSize}px; - font-weight: ${({ fontWeight }) => fontWeight}; - font-style: ${({ fontStyle }) => fontStyle}; - color: ${({ color }) => color}; + padding: 5px 11px 5px 11px; + font-family: ${({ $fontFamily }) => $fontFamily}; + font-size: ${({ $fontSize }) => $fontSize}px; + font-weight: ${({ $fontWeight }) => $fontWeight}; + font-style: ${({ $fontStyle }) => $fontStyle}; + color: ${({ $color }) => $color}; &:hover { - background-color: ${(props) => (props.enabled ? props.activeColour : props.inactiveColour)}; - color: ${({ color }) => color}; - border: 2px solid ${(props) => (props.enabled ? props.activeColour : props.inactiveColour)}; - outline: ${(props) => (props.enabled ? props.activeColour : 'transparent')} solid 2px; + background-color: ${({$enabled, $activeColour, $inactiveColour}) => ($enabled ? $activeColour : $inactiveColour)}; + color: ${({ $color }) => $color}; + border: 2px solid ${({$enabled, $activeColour, $inactiveColour}) => ($enabled ? $activeColour : $inactiveColour)}; + outline: ${({$enabled, $activeColour}) => ($enabled ? $activeColour : 'transparent')} solid 2px; } &:focus { - outline: ${(props) => (props.enabled ? props.activeColour : 'transparent')} solid 2px; + outline: ${({$enabled, $activeColour}) => ($enabled ? $activeColour : 'transparent')} solid 2px; } `; \ No newline at end of file diff --git a/src/SubComponents/StyledShareButton.tsx b/src/SubComponents/StyledShareButton.tsx index 4763ecb..a81d822 100644 --- a/src/SubComponents/StyledShareButton.tsx +++ b/src/SubComponents/StyledShareButton.tsx @@ -1,11 +1,11 @@ import styled from 'styled-components'; export const StyledShareButton = styled.button<{ - color?: string, + $color?: string, size?: number }>` flex-grow:0; -background-color: ${(props) => (props.color ? props.color : 'black')}; +background-color: ${(props) => (props.$color ? props.$color : 'black')}; height: 48px; width: 48px; color: white; diff --git a/src/SubComponents/TwoButtonContainer.tsx b/src/SubComponents/ThreeButtonContainer.tsx similarity index 70% rename from src/SubComponents/TwoButtonContainer.tsx rename to src/SubComponents/ThreeButtonContainer.tsx index 59ceba1..27891a8 100644 --- a/src/SubComponents/TwoButtonContainer.tsx +++ b/src/SubComponents/ThreeButtonContainer.tsx @@ -1,6 +1,6 @@ import styled from 'styled-components'; -export const TwoButtonContainer = styled.div` +export const ThreeButtonContainer = styled.div` display: flex; justify-content: center; align-items: center; diff --git a/src/SubComponents/TopContainer.tsx b/src/SubComponents/TopContainer.tsx new file mode 100644 index 0000000..7737966 --- /dev/null +++ b/src/SubComponents/TopContainer.tsx @@ -0,0 +1,7 @@ +import styled from 'styled-components'; + +export const TopContainer = styled.div` + display: flex; + flex-direction: row; + justify-content: space-between; +`; \ No newline at end of file diff --git a/src/SubComponents/VersionLabel.tsx b/src/SubComponents/VersionLabel.tsx index f84a55f..e3857f9 100644 --- a/src/SubComponents/VersionLabel.tsx +++ b/src/SubComponents/VersionLabel.tsx @@ -8,5 +8,5 @@ export const VersionLabel = styled.p<{ font-weight: 200; font-style: italic; padding: 0px; - color: #A9A9A(); + color: "#A9A9A"; `; \ No newline at end of file diff --git a/src/SubComponents/XPoint.tsx b/src/SubComponents/XPoint.tsx index e0415b5..aee8604 100644 --- a/src/SubComponents/XPoint.tsx +++ b/src/SubComponents/XPoint.tsx @@ -1,7 +1,7 @@ import * as React from 'react'; import { Point } from 'victory'; -export const XPoint = (props) => { +export const XPoint = (props: any) => { const transform = `rotate(45, ${props.x}, ${props.y})`; let crossColour = props?.colour ?? 'black'; diff --git a/src/chartdata/uk_who_height_male_centile_data.ts b/src/chartdata/uk_who_height_male_centile_data.ts index e910d2f..bfdc560 100644 --- a/src/chartdata/uk_who_height_male_centile_data.ts +++ b/src/chartdata/uk_who_height_male_centile_data.ts @@ -10,6 +10,11 @@ export const ukwhoHeightMaleCentileData: ReferenceGroup = { "sds": -2.67, "centile": 0.4, "data": [ + { + "l": "0.4", + "x": -0.33, + "y": null + }, { "l": "0.4", "x": -0.2875, @@ -111,6 +116,11 @@ export const ukwhoHeightMaleCentileData: ReferenceGroup = { "sds": -2.0, "centile": 2.0, "data": [ + { + "l": "2.0", + "x": -0.33, + "y": null + }, { "l": "2.0", "x": -0.2875, @@ -212,6 +222,11 @@ export const ukwhoHeightMaleCentileData: ReferenceGroup = { "sds": -1.33, "centile": 9.0, "data": [ + { + "l": "9.0", + "x": -0.33, + "y": null + }, { "l": "9.0", "x": -0.2875, @@ -313,6 +328,11 @@ export const ukwhoHeightMaleCentileData: ReferenceGroup = { "sds": -0.67, "centile": 25.0, "data": [ + { + "l": "25.0", + "x": -0.33, + "y": null + }, { "l": "25.0", "x": -0.2875, @@ -414,6 +434,11 @@ export const ukwhoHeightMaleCentileData: ReferenceGroup = { "sds": 0.0, "centile": 50.0, "data": [ + { + "l": "50.0", + "x": -0.33, + "y": null + }, { "l": "50.0", "x": -0.2875, @@ -515,6 +540,11 @@ export const ukwhoHeightMaleCentileData: ReferenceGroup = { "sds": 0.67, "centile": 75.0, "data": [ + { + "l": "75.0", + "x": -0.33, + "y": null + }, { "l": "75.0", "x": -0.2875, @@ -616,6 +646,11 @@ export const ukwhoHeightMaleCentileData: ReferenceGroup = { "sds": 1.33, "centile": 91.0, "data": [ + { + "l": "91.0", + "x": -0.33, + "y": null + }, { "l": "91.0", "x": -0.2875, @@ -717,6 +752,11 @@ export const ukwhoHeightMaleCentileData: ReferenceGroup = { "sds": 2.0, "centile": 98.0, "data": [ + { + "l": "98.0", + "x": -0.33, + "y": null + }, { "l": "98.0", "x": -0.2875, @@ -818,6 +858,11 @@ export const ukwhoHeightMaleCentileData: ReferenceGroup = { "sds": 2.67, "centile": 99.6, "data": [ + { + "l": "99.6", + "x": -0.33, + "y": null + }, { "l": "99.6", "x": -0.2875, diff --git a/src/chartdata/uk_who_ofc_female_centile_data.ts b/src/chartdata/uk_who_ofc_female_centile_data.ts index 82b1d7e..f1e7d39 100644 --- a/src/chartdata/uk_who_ofc_female_centile_data.ts +++ b/src/chartdata/uk_who_ofc_female_centile_data.ts @@ -13,6 +13,11 @@ export const ukwhoOFCFemaleCentileData: ReferenceGroup = { "sds": -2.67, "centile": 0.4, "data": [ + { + "l": "0.4", + "x": -0.33, + "y": null + }, { "l": "0.4", "x": -0.3258, @@ -124,6 +129,11 @@ export const ukwhoOFCFemaleCentileData: ReferenceGroup = { "sds": -2.0, "centile": 2.0, "data": [ + { + "l": "2.0", + "x": -0.33, + "y": null + }, { "l": "2.0", "x": -0.3258, @@ -235,6 +245,11 @@ export const ukwhoOFCFemaleCentileData: ReferenceGroup = { "sds": -1.33, "centile": 9.0, "data": [ + { + "l": "9.0", + "x": -0.33, + "y": null + }, { "l": "9.0", "x": -0.3258, @@ -346,6 +361,11 @@ export const ukwhoOFCFemaleCentileData: ReferenceGroup = { "sds": -0.67, "centile": 25.0, "data": [ + { + "l": "25.0", + "x": -0.33, + "y": null + }, { "l": "25.0", "x": -0.3258, @@ -457,6 +477,11 @@ export const ukwhoOFCFemaleCentileData: ReferenceGroup = { "sds": 0.0, "centile": 50.0, "data": [ + { + "l": "50.0", + "x": -0.33, + "y": null + }, { "l": "50.0", "x": -0.3258, @@ -568,6 +593,11 @@ export const ukwhoOFCFemaleCentileData: ReferenceGroup = { "sds": 0.67, "centile": 75.0, "data": [ + { + "l": "75.0", + "x": -0.33, + "y": null + }, { "l": "75.0", "x": -0.3258, @@ -679,6 +709,11 @@ export const ukwhoOFCFemaleCentileData: ReferenceGroup = { "sds": 1.33, "centile": 91.0, "data": [ + { + "l": "91.0", + "x": -0.33, + "y": null + }, { "l": "91.0", "x": -0.3258, @@ -790,6 +825,11 @@ export const ukwhoOFCFemaleCentileData: ReferenceGroup = { "sds": 2.0, "centile": 98.0, "data": [ + { + "l": "98.0", + "x": -0.33, + "y": null + }, { "l": "98.0", "x": -0.3258, @@ -901,6 +941,11 @@ export const ukwhoOFCFemaleCentileData: ReferenceGroup = { "sds": 2.67, "centile": 99.6, "data": [ + { + "l": "99.6", + "x": -0.33, + "y": null + }, { "l": "99.6", "x": -0.3258, diff --git a/src/chartdata/uk_who_weight_female_centile_data.ts b/src/chartdata/uk_who_weight_female_centile_data.ts index be6b4b2..a58c894 100644 --- a/src/chartdata/uk_who_weight_female_centile_data.ts +++ b/src/chartdata/uk_who_weight_female_centile_data.ts @@ -12,6 +12,11 @@ export const ukwhoWeightFemaleCentileData: ReferenceGroup = { "sds": -2.67, "centile": 0.4, "data": [ + { + "l": "0.4", + "x": -0.33, + "y": null + }, { "l": "0.4", "x": -0.3258, @@ -123,6 +128,11 @@ export const ukwhoWeightFemaleCentileData: ReferenceGroup = { "sds": -2.0, "centile": 2.0, "data": [ + { + "l": "2.0", + "x": -0.33, + "y": null + }, { "l": "2.0", "x": -0.3258, @@ -234,6 +244,11 @@ export const ukwhoWeightFemaleCentileData: ReferenceGroup = { "sds": -1.33, "centile": 9.0, "data": [ + { + "l": "9.0", + "x": -0.33, + "y": null + }, { "l": "9.0", "x": -0.3258, @@ -345,6 +360,11 @@ export const ukwhoWeightFemaleCentileData: ReferenceGroup = { "sds": -0.67, "centile": 25.0, "data": [ + { + "l": "25.0", + "x": -0.33, + "y": null + }, { "l": "25.0", "x": -0.3258, @@ -456,6 +476,11 @@ export const ukwhoWeightFemaleCentileData: ReferenceGroup = { "sds": 0.0, "centile": 50.0, "data": [ + { + "l": "50.0", + "x": -0.33, + "y": null + }, { "l": "50.0", "x": -0.3258, @@ -567,6 +592,11 @@ export const ukwhoWeightFemaleCentileData: ReferenceGroup = { "sds": 0.67, "centile": 75.0, "data": [ + { + "l": "75.0", + "x": -0.33, + "y": null + }, { "l": "75.0", "x": -0.3258, @@ -678,6 +708,11 @@ export const ukwhoWeightFemaleCentileData: ReferenceGroup = { "sds": 1.33, "centile": 91.0, "data": [ + { + "l": "91.0", + "x": -0.33, + "y": null + }, { "l": "91.0", "x": -0.3258, @@ -789,6 +824,11 @@ export const ukwhoWeightFemaleCentileData: ReferenceGroup = { "sds": 2.0, "centile": 98.0, "data": [ + { + "l": "98.0", + "x": -0.33, + "y": null + }, { "l": "98.0", "x": -0.3258, @@ -900,6 +940,11 @@ export const ukwhoWeightFemaleCentileData: ReferenceGroup = { "sds": 2.67, "centile": 99.6, "data": [ + { + "l": "99.6", + "x": -0.33, + "y": null + }, { "l": "99.6", "x": -0.3258, diff --git a/src/chartdata/uk_who_weight_male_centile_data.ts b/src/chartdata/uk_who_weight_male_centile_data.ts index 38eae0a..90d9de2 100644 --- a/src/chartdata/uk_who_weight_male_centile_data.ts +++ b/src/chartdata/uk_who_weight_male_centile_data.ts @@ -11,6 +11,11 @@ export const ukwhoWeightMaleCentileData: ReferenceGroup = { "sds": -2.67, "centile": 0.4, "data": [ + { + "l": "0.4", + "x": -0.33, + "y": null + }, { "l": "0.4", "x": -0.3258, @@ -122,6 +127,11 @@ export const ukwhoWeightMaleCentileData: ReferenceGroup = { "sds": -2.0, "centile": 2.0, "data": [ + { + "l": "2.0", + "x": -0.33, + "y": null + }, { "l": "2.0", "x": -0.3258, @@ -233,6 +243,11 @@ export const ukwhoWeightMaleCentileData: ReferenceGroup = { "sds": -1.33, "centile": 9.0, "data": [ + { + "l": "9.0", + "x": -0.33, + "y": null + }, { "l": "9.0", "x": -0.3258, @@ -344,6 +359,11 @@ export const ukwhoWeightMaleCentileData: ReferenceGroup = { "sds": -0.67, "centile": 25.0, "data": [ + { + "l": "25.0", + "x": -0.33, + "y": null + }, { "l": "25.0", "x": -0.3258, @@ -455,6 +475,11 @@ export const ukwhoWeightMaleCentileData: ReferenceGroup = { "sds": 0.0, "centile": 50.0, "data": [ + { + "l": "50.0", + "x": -0.33, + "y": null + }, { "l": "50.0", "x": -0.3258, @@ -566,6 +591,11 @@ export const ukwhoWeightMaleCentileData: ReferenceGroup = { "sds": 0.67, "centile": 75.0, "data": [ + { + "l": "75.0", + "x": -0.33, + "y": null + }, { "l": "75.0", "x": -0.3258, @@ -677,6 +707,11 @@ export const ukwhoWeightMaleCentileData: ReferenceGroup = { "sds": 1.33, "centile": 91.0, "data": [ + { + "l": "91.0", + "x": -0.33, + "y": null + }, { "l": "91.0", "x": -0.3258, @@ -788,6 +823,11 @@ export const ukwhoWeightMaleCentileData: ReferenceGroup = { "sds": 2.0, "centile": 98.0, "data": [ + { + "l": "98.0", + "x": -0.33, + "y": null + }, { "l": "98.0", "x": -0.3258, @@ -899,6 +939,11 @@ export const ukwhoWeightMaleCentileData: ReferenceGroup = { "sds": 2.67, "centile": 99.6, "data": [ + { + "l": "99.6", + "x": -0.33, + "y": null + }, { "l": "99.6", "x": -0.3258, diff --git a/src/fonts/.DS_Store b/src/fonts/.DS_Store deleted file mode 100644 index 88a100f..0000000 Binary files a/src/fonts/.DS_Store and /dev/null differ diff --git a/src/fonts/Arial/ARIAL.TTF b/src/fonts/Arial/ARIAL.TTF new file mode 100644 index 0000000..8682d94 Binary files /dev/null and b/src/fonts/Arial/ARIAL.TTF differ diff --git a/src/fonts/Arial/ARIALBD.TTF b/src/fonts/Arial/ARIALBD.TTF new file mode 100644 index 0000000..a6037e6 Binary files /dev/null and b/src/fonts/Arial/ARIALBD.TTF differ diff --git a/src/fonts/Arial/ARIALI.TTF b/src/fonts/Arial/ARIALI.TTF new file mode 100644 index 0000000..3801997 Binary files /dev/null and b/src/fonts/Arial/ARIALI.TTF differ diff --git a/src/fonts/fonts.ts b/src/fonts/fonts.ts index b7cf2e6..e433c00 100644 --- a/src/fonts/fonts.ts +++ b/src/fonts/fonts.ts @@ -1,5 +1,5 @@ import Montserrat from './Montserrat/Montserrat-Regular.ttf'; -import Arial from './Arial/ari.ttf' +import Arial from './Arial/ARI.ttf' const montserratRegular = Montserrat const arialRegular = Arial const fonts = { diff --git a/src/functions/buildListOfMeasurementMethods.ts b/src/functions/buildListOfMeasurementMethods.ts index 0d8c33c..5ebb34f 100644 --- a/src/functions/buildListOfMeasurementMethods.ts +++ b/src/functions/buildListOfMeasurementMethods.ts @@ -1,12 +1,17 @@ -import { VictoryLegend, VictoryLegendProps } from "victory"; +import { VictoryLegendProps } from "victory"; +import { ClientMeasurementObject } from "../interfaces/ClientMeasurementObject"; +import { ClientStyle } from "../interfaces/ClientStyleObjects"; import { nameForMeasurementMethod } from "./nameForMeasurementMethod"; import { symbolForMeasurementType } from "./symbolForMeasurementType"; +import { VictoryLegendDatum } from "../interfaces/VictoryLegendData"; -export const selectedMeasurementMethods = (childMeasurements, styles) => { - const finalList=[]; +export const selectedMeasurementMethods = (childMeasurements: ClientMeasurementObject, styles: { [key: string]: any }) => { + + const finalList: VictoryLegendDatum[]=[]; if (childMeasurements.height.length > 0){ const symbol=symbolForMeasurementType("height"); const name=nameForMeasurementMethod("height"); + finalList.push({ name: name, symbol: { @@ -60,5 +65,6 @@ export const selectedMeasurementMethods = (childMeasurements, styles) => { } }); } + return finalList; } \ No newline at end of file diff --git a/src/functions/defineNonStylePropDefaults.ts b/src/functions/defineNonStylePropDefaults.ts index 7b0f6f3..717e7fc 100644 --- a/src/functions/defineNonStylePropDefaults.ts +++ b/src/functions/defineNonStylePropDefaults.ts @@ -1,7 +1,3 @@ -import { Measurement } from "../interfaces/RCPCHMeasurementObject" -import { MidParentalHeightObject } from "../interfaces/MidParentalHeightObject" - - function defineNonStylePropDefaults( propName: string, propValue: any diff --git a/src/functions/generateMidParentalHeightSDSData.ts b/src/functions/generateMidParentalHeightSDSData.ts index 4513f7d..7aaf7bf 100644 --- a/src/functions/generateMidParentalHeightSDSData.ts +++ b/src/functions/generateMidParentalHeightSDSData.ts @@ -1,4 +1,3 @@ -import { ClientMeasurementObject } from "../interfaces/ClientMeasurementObject"; import { MidParentalHeightObject } from "../interfaces/MidParentalHeightObject"; export const generateMidParentalHeightSDSData = ( diff --git a/src/functions/getDomainsAndData.ts b/src/functions/getDomainsAndData.ts index ad451e6..864e392 100644 --- a/src/functions/getDomainsAndData.ts +++ b/src/functions/getDomainsAndData.ts @@ -1,6 +1,3 @@ -// import ukwhoData from '../chartdata/uk_who_chart_data'; -// import turnerData from '../chartdata/turners_chart_data'; -// import trisomy21Data from '../chartdata/trisomy21Data'; import { ukwhoHeightMaleCentileData } from '../chartdata/uk_who_height_male_centile_data'; import { ukwhoHeightFemaleCentileData } from '../chartdata/uk_who_height_female_centile_data'; @@ -20,9 +17,9 @@ import { trisomy21BMIFemaleSDSData } from '../chartdata/trisomy21_bmi_female_sds import totalMinPadding from './totalMinPadding'; import { getTickValuesForChartScaling } from './tailoredXTickValues'; import { Measurement } from '../interfaces/RCPCHMeasurementObject'; -import { Domains } from '../interfaces/Domains'; +import { Domains, IDomainSex } from '../interfaces/Domains'; -import { IPlottedCentileMeasurement, ReferenceGroup, UKWHOReferences, Reference } from '../interfaces/CentilesObject'; +import { IPlottedCentileMeasurement, Reference, ICentile } from '../interfaces/CentilesObject'; import deepCopy from './deepCopy'; import { ClientMeasurementObject } from '../interfaces/ClientMeasurementObject'; import { trisomy21HeightMaleCentileData } from '../chartdata/trisomy21_height_male_centile_data'; @@ -56,48 +53,48 @@ type ExtremeValues = { const blankDataset = [ [ - { centile: 0.4, data: [], sds: -2.67 }, - { centile: 2, data: [], sds: -2 }, - { centile: 9, data: [], sds: -1.33 }, - { centile: 25, data: [], sds: -0.67 }, - { centile: 50, data: [], sds: 0 }, - { centile: 75, data: [], sds: 0.67 }, - { centile: 91, data: [], sds: 1.33 }, - { centile: 98, data: [], sds: 2 }, - { centile: 99.6, data: [], sds: 2.67 }, + { centile: 0.4, data: [] as ICentile[], sds: -2.67 }, + { centile: 2, data: [] as ICentile[], sds: -2 }, + { centile: 9, data: [] as ICentile[], sds: -1.33 }, + { centile: 25, data: [] as ICentile[], sds: -0.67 }, + { centile: 50, data: [] as ICentile[], sds: 0 }, + { centile: 75, data: [] as ICentile[], sds: 0.67 }, + { centile: 91, data: [] as ICentile[], sds: 1.33 }, + { centile: 98, data: [] as ICentile[], sds: 2 }, + { centile: 99.6, data: [] as ICentile[], sds: 2.67 }, ], [ - { centile: 0.4, data: [], sds: -2.67 }, - { centile: 2, data: [], sds: -2 }, - { centile: 9, data: [], sds: -1.33 }, - { centile: 25, data: [], sds: -0.67 }, - { centile: 50, data: [], sds: 0 }, - { centile: 75, data: [], sds: 0.67 }, - { centile: 91, data: [], sds: 1.33 }, - { centile: 98, data: [], sds: 2 }, + { centile: 0.4, data: [] as ICentile[], sds: -2.67 }, + { centile: 2, data: [] as ICentile[], sds: -2 }, + { centile: 9, data: [] as ICentile[], sds: -1.33 }, + { centile: 25, data: [] as ICentile[], sds: -0.67 }, + { centile: 50, data: [] as ICentile[], sds: 0 }, + { centile: 75, data: [] as ICentile[], sds: 0.67 }, + { centile: 91, data: [] as ICentile[], sds: 1.33 }, + { centile: 98, data: [] as ICentile[], sds: 2 }, { centile: 99.6, data: [], sds: 2.67 }, ], [ - { centile: 0.4, data: [], sds: -2.67 }, - { centile: 2, data: [], sds: -2 }, - { centile: 9, data: [], sds: -1.33 }, - { centile: 25, data: [], sds: -0.67 }, - { centile: 50, data: [], sds: 0 }, - { centile: 75, data: [], sds: 0.67 }, - { centile: 91, data: [], sds: 1.33 }, - { centile: 98, data: [], sds: 2 }, - { centile: 99.6, data: [], sds: 2.67 }, + { centile: 0.4, data: [] as ICentile[], sds: -2.67 }, + { centile: 2, data: [] as ICentile[], sds: -2 }, + { centile: 9, data: [] as ICentile[], sds: -1.33 }, + { centile: 25, data: [] as ICentile[], sds: -0.67 }, + { centile: 50, data: [] as ICentile[], sds: 0 }, + { centile: 75, data: [] as ICentile[], sds: 0.67 }, + { centile: 91, data: [] as ICentile[], sds: 1.33 }, + { centile: 98, data: [] as ICentile[], sds: 2 }, + { centile: 99.6, data: [] as ICentile[], sds: 2.67 }, ], [ - { centile: 0.4, data: [], sds: -2.67 }, - { centile: 2, data: [], sds: -2 }, - { centile: 9, data: [], sds: -1.33 }, - { centile: 25, data: [], sds: -0.67 }, - { centile: 50, data: [], sds: 0 }, - { centile: 75, data: [], sds: 0.67 }, - { centile: 91, data: [], sds: 1.33 }, - { centile: 98, data: [], sds: 2 }, - { centile: 99.6, data: [], sds: 2.67 }, + { centile: 0.4, data: [] as ICentile[], sds: -2.67 }, + { centile: 2, data: [] as ICentile[], sds: -2 }, + { centile: 9, data: [] as ICentile[], sds: -1.33 }, + { centile: 25, data: [] as ICentile[], sds: -0.67 }, + { centile: 50, data: [] as ICentile[], sds: 0 }, + { centile: 75, data: [] as ICentile[], sds: 0.67 }, + { centile: 91, data: [] as ICentile[], sds: 1.33 }, + { centile: 98, data: [] as ICentile[], sds: 2 }, + { centile: 99.6, data: [] as ICentile[], sds: 2.67 }, ], ]; @@ -106,90 +103,91 @@ function makeDefaultDomains( reference: 'uk-who' | 'trisomy-21' | 'turner', measurementMethod: 'height' | 'weight' | 'bmi' | 'ofc', ) { - const all = { - male: { + const all: IDomainSex = { + 'male': { 'uk-who': { - height: { + 'height': { x: [0.038329911019849415, 20.05], y: [36.841246, 204.840832], }, - weight: { + 'weight': { x: [0.038329911019849415, 20.05], y: [0, 109.984056], }, - bmi: { + 'bmi': { x: [0.038329911019849415, 20.05], y: [8.878608, 34.219536000000005], }, - ofc: { + 'ofc': { x: [0.038329911019849415, 18.05], y: [30.716032000000002, 63.533944000000005], }, }, 'trisomy-21': { - height: { + 'height': { x: [-0.01, 20.05], y: [33.456711999999996, 185.010504], }, - weight: { + 'weight': { x: [-0.01, 20.05], y: [0, 113.55046], }, - bmi: { + 'bmi': { x: [-0.01, 18.87], y: [0, 67.871482], }, - ofc: { + 'ofc': { x: [-0.01, 18.05], y: [28.033898999999998, 59.464058], }, }, }, - female: { + 'female': { 'uk-who': { - height: { + 'height': { x: [0.038329911019849415, 20.05], y: [37.106385, 187.74047], }, - weight: { + 'weight': { x: [0.038329911019849415, 20.05], y: [0, 94.233692], }, - bmi: { + 'bmi': { x: [0.038329911019849415, 20.05], y: [8.569247, 34.568174], }, - ofc: { + 'ofc': { x: [0.038329911019849415, 17.05], y: [30.280771, 60.829982], }, }, 'trisomy-21': { - height: { + 'height': { x: [-0.01, 20.05], y: [34.805428, 170.823076], }, - weight: { + 'weight': { x: [-0.01, 20.05], y: [0, 110.50604799999999], }, - bmi: { + 'bmi': { x: [-0.01, 18.87], y: [0, 48.775794], }, - ofc: { + 'ofc': { x: [-0.01, 18.05], y: [27.716357000000002, 56.751594], }, }, - turner: { - height: { + 'turner': { + 'height': { x: [0.99, 20.05], y: [54.450081, 169.723302], }, }, }, }; + return all[sex][reference][measurementMethod]; } @@ -268,11 +266,12 @@ function childMeasurementRanges( let chronologicalX = measurement.plottable_data.centile_data.chronological_decimal_age_data.x; let correctedY = measurement.plottable_data.centile_data.corrected_decimal_age_data.y; let chronologicalY = measurement.plottable_data.centile_data.chronological_decimal_age_data.y; - const errorsPresent = - measurement.measurement_calculated_values.corrected_measurement_error || - measurement.measurement_calculated_values.chronological_measurement_error - ? true - : false; + const errorsPresent = false; + // measurement.measurement_calculated_values.corrected_measurement_error || + // measurement.measurement_calculated_values.chronological_measurement_error + // ? true + // : false; + if (!errorsPresent) { if (showCorrected && !showChronological) { chronologicalX = correctedX; @@ -303,6 +302,7 @@ function childMeasurementRanges( console.warn('Measurements considered invalid by the API given to the chart. The chart will ignore them.'); } } + return { lowestChildX, highestChildX, lowestChildY, highestChildY }; } @@ -454,7 +454,7 @@ function getRelevantDataSets( } const dataSetRanges = [ - [-0.33, 0.0383], + [-0.345, 0.0383], [0.0383, 2], [2, 4], [4, 21], @@ -538,8 +538,9 @@ function getDomainsAndData( const twoWeeksPostnatal = 0.038329911019849415; const gestWeeks37 = -0.057494866529774126; const gestWeeks24 = -0.306639288158795; - const gestWeeks22 = -0.33; let absoluteBottomX = twoWeeksPostnatal; + const gestWeeks23 = -0.33; + const gestWeeks22 = -0.345; let absoluteHighX = 20.05; let agePadding = totalMinPadding.biggerChild; if (reference === 'uk-who') { @@ -600,9 +601,9 @@ function getDomainsAndData( absoluteBottomX = gestWeeks22; agePadding = totalMinPadding.prem; absoluteHighX = twoWeeksPostnatal; - if (measurementMethod === 'height') { - absoluteBottomX = gestWeeks24; - } + // if (measurementMethod === 'height') { + // absoluteBottomX = gestWeeks24; + // } if (difference > totalMinPadding.prem) { internalChartScaleType = 'infant'; } else { @@ -614,7 +615,8 @@ function getDomainsAndData( if (lowestChildX >= gestWeeks37 && lowestChildX < twoWeeksPostnatal && reference === 'uk-who') { absoluteBottomX = gestWeeks37; } else if (lowestChildX < gestWeeks37) { - absoluteBottomX = measurementMethod === 'height' ? gestWeeks24 : gestWeeks22; + // absoluteBottomX = measurementMethod === 'height' ? gestWeeks24 : gestWeeks22; + absoluteBottomX = gestWeeks22; } if (difference > totalMinPadding.infant) { internalChartScaleType = 'smallChild'; @@ -629,9 +631,14 @@ function getDomainsAndData( } if(lowestChildX < twoWeeksPostnatal && lowestChildX >= gestWeeks37){ absoluteBottomX = lowestChildX-totalMinPadding.prem; + } else if(lowestChildX < gestWeeks37){ + absoluteBottomX = lowestChildX-totalMinPadding.prem } + } else { + absoluteBottomX = lowestChildX-totalMinPadding.prem } + // work out most appropriate highest and lowest x coords for domain setting: let unroundedLowestX = 0; let unroundedHighestX = 0; @@ -661,6 +668,7 @@ function getDomainsAndData( const xTickValues = getTickValuesForChartScaling(internalChartScaleType); + if (lowestXForDomain !== absoluteBottomX) { const arrayForOrdering = [...xTickValues]; arrayForOrdering.push(unroundedLowestX); @@ -681,7 +689,7 @@ function getDomainsAndData( } else { let errorString = 'No valid measurements entered. Error message from the server: '; for (const measurement of childMeasurements) { - if (measurement.measurement_calculated_values.corrected_measurement_error) { + if (measurement.measurement_calculated_values.corrected_measurement_error && measurement.measurement_dates.corrected_decimal_age < gestWeeks22) { errorString += ` ${measurement.measurement_calculated_values.corrected_measurement_error}`; throw new Error(errorString); } @@ -773,7 +781,7 @@ function getDomainsAndData( bmiSDSData: finalSDSData, centileData: finalCentileData, computedDomains: internalDomains, - chartScaleType: internalChartScaleType, + chartScaleType: internalChartScaleType }; } @@ -794,11 +802,11 @@ function getVisibleData( case xDifference <= totalMinPadding.prem: chartScaleType = 'prem'; break; - case xDifference <= totalMinPadding.infant: - chartScaleType = 'infant'; - break; - case xDifference <= totalMinPadding.smallChild: - chartScaleType = 'smallChild'; + case xDifference <= totalMinPadding.infant: + chartScaleType = 'infant'; + break; + case xDifference <= totalMinPadding.smallChild: + chartScaleType = 'smallChild'; break; } const relevantCentileDataSets = getRelevantDataSets(sex, measurementMethod, reference, lowestX, highestX, false); @@ -821,4 +829,5 @@ export const delayedPubertyData = { female: ukwhoHeightFemaleCentileData.centile_data[3].uk90_child.female.height[0].data //ukwhoData.uk90_child.female.height[0].data, }; + export { getVisibleData, getDomainsAndData }; diff --git a/src/functions/getFilteredMidParentalHeightData.ts b/src/functions/getFilteredMidParentalHeightData.ts index 37ffdac..579462d 100644 --- a/src/functions/getFilteredMidParentalHeightData.ts +++ b/src/functions/getFilteredMidParentalHeightData.ts @@ -1,15 +1,17 @@ -import { ICentile } from "../interfaces/CentilesObject"; +import { ICentile, UKWHOReferences } from "../interfaces/CentilesObject"; +import { ClientMidparentalCentilesObject } from "../interfaces/ClientMidparentalCentilesObject"; +import { MidParentalHeightObject } from "../interfaces/MidParentalHeightObject"; import { Measurement } from "../interfaces/RCPCHMeasurementObject"; export const getFilteredMidParentalHeightData = ( reference: string, childMeasurements: Measurement[], - midParentalHeightData, - sex + midParentalHeightData: MidParentalHeightObject, + sex: 'male' | 'female', ) => { if(reference !== "uk-who"){ - console.log("Not UK-WHO"); + // console.log("Not UK-WHO"); return } @@ -38,8 +40,8 @@ export const getFilteredMidParentalHeightData = ( } } - let newReferenceObject = []; - midParentalHeightData.mid_parental_height_centile_data.map((referenceData, index) => { + let newReferenceObject: ClientMidparentalCentilesObject[] = []; + midParentalHeightData.mid_parental_height_centile_data.map((referenceData: UKWHOReferences, index) => { // get the midparental centile data const centiles = referenceData.uk90_preterm || referenceData.uk_who_infant || referenceData.uk_who_child || referenceData.uk90_child; diff --git a/src/functions/isCrowded.ts b/src/functions/isCrowded.ts index 8513e11..e8029e9 100644 --- a/src/functions/isCrowded.ts +++ b/src/functions/isCrowded.ts @@ -20,6 +20,9 @@ export function isCrowded(domains: any, childMeasurements: Measurement[]) { } } const currentDomainInterval = domains.x[1] - domains.x[0]; + if (smallestInterval === null) { + return true; + } const ratio = smallestInterval / currentDomainInterval; return ratio < 0.01 ? true : false; } diff --git a/src/functions/labelAngle.ts b/src/functions/labelAngle.ts new file mode 100644 index 0000000..4c41094 --- /dev/null +++ b/src/functions/labelAngle.ts @@ -0,0 +1,89 @@ +import { Domains } from '../interfaces/Domains'; + +export function labelAngle(data:any, index:any, chartScaleType: 'prem' | 'infant' | 'smallChild' | 'biggerChild' = 'biggerChild', measurementMethod: 'height' | 'weight' | 'ofc' | 'bmi', domains: Domains):number{ + /* + returns the angle in radians of a centile or sds line label using the gradient of the line + + Used to set angle of centile/sds labels + identifies x and y values of current data point and the one before. Uses these to calculate difference between x and y to convert to radians + As X scale differs based on age, accepts chartScaleType as parameter - uses this to magnify x difference at younger decimal ages + Also accepts chart domains as parameter, as x magnification depends on visible extremes of chart (eg a 3 year old seen close up, or 3 year old in life course view) + */ + + if (data.length<1){ + return; + } + + const lastItem = data[index]; // item in array + + let earlierBack = data[index-5]; // item below current + if (chartScaleType == 'prem'){ + // first item in the list is 22 weeks and will not be associated with any reference data + earlierBack = data[3] + } + + if(earlierBack == undefined || lastItem == undefined){ + return; + } + + const x0=earlierBack.x + const x1=lastItem.x + const y0=earlierBack.y + const y1=lastItem.y + const xDiff = x1-x0 + const yDiff = y1-y0 + + let ageDiff = xDiff*10; + let measurementDiff = yDiff + + if (measurementMethod==='height'){ // babies ages smaller - magnify more + if (x1 > 2 && x1 <= 9){ + ageDiff = xDiff * 15; + } + if (chartScaleType ==='prem'){ + ageDiff = xDiff*100 + } + if (chartScaleType ==='infant'){ + ageDiff = xDiff*100 + } + if (chartScaleType ==='smallChild'){ + ageDiff = xDiff * 37.5 + } + if (chartScaleType==='biggerChild'){ + if (x1 <= 2.0){ + // need to consider upper domains of chart here - if life course view + if (domains.x[1] > 9){ + ageDiff = xDiff*7.5; + } else { + ageDiff = xDiff*37.5; + } + } else if(x1 <=9){ + ageDiff = xDiff*15; + } + } + } + if (measurementMethod === 'weight') { + ageDiff = xDiff * 5; + if (chartScaleType ==='infant'){ + ageDiff = xDiff * 20 + } + if (chartScaleType ==='prem'){ + ageDiff = xDiff*20 + } + } + if (measurementMethod === 'bmi') { + ageDiff = xDiff * 2; + } + if (measurementMethod === 'ofc'){ + ageDiff = xDiff * 2.5; + if (chartScaleType ==='prem'){ + ageDiff = xDiff*200 + } + } + + let angle = 0; + const radians = Math.atan2((measurementDiff), ageDiff); + angle = radians * (180/Math.PI); + // console.log(`angle: ${angle}, centile: ${lastItem.l} x0: ${x0} x1: ${x1} x-diff: ${x1-x0} y0: ${y0} y1:${y1} y-diff:${y1-y0} gradient: ${(y1-y0)/(x1-x0)}`); + return Math.round(-angle); +} \ No newline at end of file diff --git a/src/functions/labelIndexInterval.ts b/src/functions/labelIndexInterval.ts new file mode 100644 index 0000000..b80449a --- /dev/null +++ b/src/functions/labelIndexInterval.ts @@ -0,0 +1,16 @@ +export function labelIndexInterval(chartScaleType: 'prem' | 'infant' | 'smallChild' | 'biggerChild' = 'biggerChild', index: number):boolean{ + // returns true if index of data point in centile data array should be rendered + + switch(chartScaleType){ + case "prem": + return index%5==0; + case "infant": + return index%10==0; + case "smallChild": + return index%30==0; + case "biggerChild": + return index%40==0; + default: + return index%50==0; + } +} \ No newline at end of file diff --git a/src/functions/makeAllStyles.ts b/src/functions/makeAllStyles.ts index 660f8c0..5ec95f8 100644 --- a/src/functions/makeAllStyles.ts +++ b/src/functions/makeAllStyles.ts @@ -1,3 +1,19 @@ +/* +This function is called on instantiation of RCPCHChart within RCPCHChar.tsx. + +This is refactored in version 7.0.0 +Users pass in one of 6 RCPCH defined themes: 'monochrome', 'traditional', 'tanner1', 'tanner2', 'tanner3', 'custom' +The themes define styles for a series of exposed chart attributes. If the 'custom' theme is chosen, 'monochrome' is used as the basis for default styles. +Any of the exposed attributes can be personalised. + +These are categorised into 6 interfaces: +AxisStyle, CentileStyle, SDSStyle, ChartStyle, GridlineStyle, MeasurementStyle + +Most of the properties in each of the interfaces are optionals, as users may not want to alter everything. + +This function therefore instantiates defaults where user values have not been provided. +This creates a styles object that is passed to the chart. +*/ import { AxisStyle, CentileStyle, SDSStyle, ChartStyle, GridlineStyle, MeasurementStyle } from '../interfaces/StyleObjects'; import { setOpacity } from './setOpacity'; @@ -6,8 +22,10 @@ const white = '#FFFFFF'; const midGrey = '#b3b3b3'; const lightGrey = '#d9d9d9'; const lightLightGrey = "#f3f3f3"; -const lightPink = '#E497C1'; -const darkPink = '#cb3083'; +const aquaGreen ='#00BDAA' +const orange = '#FF8000' +const purple = '#7159AA' +const strongGreen = '#66CC33' function makeAllStyles( chartStyle?: ChartStyle, @@ -17,6 +35,7 @@ function makeAllStyles( sdsStyle?: SDSStyle, measurementStyle?: MeasurementStyle, ) { + let newGridlineStyle = { stroke: lightGrey, strokeWidth: 0.25, @@ -30,52 +49,39 @@ function makeAllStyles( }; } else if (gridlineStyle?.gridlines === false) { newGridlineStyle = { - stroke: undefined, + stroke: '', strokeWidth: 0, strokeDasharray: '', }; } - return { - chartHeight: chartStyle?.height ?? 475, - chartWidth: chartStyle?.width ?? 700, - chartPadding: { - left: chartStyle?.padding?.left ?? 50, - right: chartStyle?.padding?.right ?? 50, - top: chartStyle?.padding?.top ?? 25, - bottom: chartStyle?.padding?.bottom ?? 40, - }, + return { chartMisc: { background: { fill: chartStyle?.backgroundColour ?? white, }, }, toolTipFlyout: { - stroke: chartStyle?.tooltipStroke ?? midGrey, - fill: chartStyle?.tooltipBackgroundColour ?? midGrey, + stroke: chartStyle?.tooltipStroke ?? midGrey, // tooltip border colour + fill: chartStyle?.tooltipBackgroundColour ?? midGrey, // tooltip backgroundcolour }, toolTipMain: { - textAnchor: 'start', - stroke: chartStyle?.tooltipTextStyle?.colour ?? black, - strokeWidth: chartStyle?.tooltipTextStyle?.size ?? 0.25, + fontSize: chartStyle?.tooltipTextStyle?.size ?? 14, fill: chartStyle?.tooltipTextStyle?.colour ?? black, fontFamily: chartStyle?.tooltipTextStyle?.name ?? 'Montserrat', - fontWeight: chartStyle?.tooltipTextStyle?.weight ?? 'normal', + fontStyle: chartStyle?.tooltipTextStyle?.style ?? 'normal', + textAnchor: "start" }, chartTitle: { fontFamily: chartStyle?.titleStyle?.name ?? 'Arial', color: chartStyle?.titleStyle?.colour ?? black, fontSize: chartStyle?.titleStyle?.size ?? 14, - fontWeight: - chartStyle?.titleStyle?.weight === 'italic' ? 'normal' : chartStyle?.titleStyle?.weight ?? 'bold', - fontStyle: chartStyle?.titleStyle?.weight === 'italic' ? 'italic' : 'normal', + fontStyle: chartStyle?.titleStyle?.style === 'italic' ? 'italic' : 'normal', }, chartSubTitle: { fontFamily: chartStyle?.subTitleStyle?.name ?? 'Arial', color: chartStyle?.subTitleStyle?.colour ?? black, fontSize: chartStyle?.subTitleStyle?.size ?? 14, - fontWeight: - chartStyle?.subTitleStyle?.weight === 'italic' ? 'normal' : chartStyle?.titleStyle?.weight ?? 'normal', - fontStyle: chartStyle?.subTitleStyle?.weight === 'italic' ? 'italic' : 'normal', + fontStyle: chartStyle?.subTitleStyle?.style === 'italic' ? 'italic' : 'normal', }, termArea: { data: { fill: chartStyle?.termFill ?? midGrey, stroke: chartStyle?.termStroke ?? midGrey } }, xAxis: { @@ -88,6 +94,7 @@ function makeAllStyles( padding: 20, fill: axisStyle?.axisLabelTextStyle?.colour ?? black, fontFamily: axisStyle?.axisLabelTextStyle?.name ?? 'Arial', + fontStyle: axisStyle?.axisLabelTextStyle?.style ?? 'normal', }, ticks: { stroke: axisStyle?.tickLabelTextStyle?.colour ?? black, @@ -98,6 +105,7 @@ function makeAllStyles( fill: axisStyle?.tickLabelTextStyle?.colour ?? black, color: axisStyle?.tickLabelTextStyle?.colour ?? black, fontFamily: axisStyle?.axisLabelTextStyle?.name ?? 'Arial', + fontStyle: axisStyle?.axisLabelTextStyle?.style ?? 'normal', }, grid: { ...newGridlineStyle, @@ -107,6 +115,7 @@ function makeAllStyles( fill: axisStyle?.tickLabelTextStyle?.colour ?? black, fontSize: axisStyle?.tickLabelTextStyle?.size ?? 8, fontFamily: axisStyle?.tickLabelTextStyle?.name ?? 'Arial', + fontStyle: axisStyle?.axisLabelTextStyle?.style ?? 'normal', }, yAxis: { axis: { @@ -118,6 +127,7 @@ function makeAllStyles( padding: 25, fill: axisStyle?.axisLabelTextStyle?.colour ?? black, fontFamily: axisStyle?.axisLabelTextStyle?.name ?? 'Arial', + fontStyle: axisStyle?.axisLabelTextStyle?.style ?? 'normal', }, ticks: { stroke: axisStyle?.tickLabelTextStyle?.colour ?? black, @@ -127,6 +137,7 @@ function makeAllStyles( padding: 5, fill: axisStyle?.tickLabelTextStyle?.colour ?? black, fontFamily: axisStyle?.axisLabelTextStyle?.name ?? 'Arial', + fontStyle: axisStyle?.axisLabelTextStyle?.style ?? 'normal', }, grid: { ...newGridlineStyle, @@ -136,7 +147,7 @@ function makeAllStyles( data: { stroke: centileStyle?.delayedPubertyAreaFill ?? midGrey, fill: centileStyle?.delayedPubertyAreaFill ?? midGrey, - strokeWidth: centileStyle?.centileStrokeWidth ?? 0.5, + strokeWidth: 0.5, }, }, delayedPubertyThresholdLine: { @@ -154,7 +165,7 @@ function makeAllStyles( sdsLine: { // these are the sds lines on the BMI chart data: { stroke: centileStyle?.sdsStroke ?? '#A9A9A9', - strokeWidth: centileStyle?.sdsStrokeWidth ?? 1.0, + strokeWidth: 1.0, strokeLinecap: 'round', strokeDasharray: '5 5', } @@ -162,7 +173,7 @@ function makeAllStyles( dashedCentile: { data: { stroke: centileStyle?.centileStroke ?? black, - strokeWidth: centileStyle?.centileStrokeWidth ?? 1.5, + strokeWidth: 1.5, strokeLinecap: 'round', strokeDasharray: '5 5', }, @@ -170,42 +181,47 @@ function makeAllStyles( continuousCentile: { data: { stroke: centileStyle?.centileStroke ?? black, - strokeWidth: centileStyle?.centileStrokeWidth ?? 1.5, + strokeWidth: 1.5, strokeLinecap: 'round', }, }, + centileLabel: { + fontSize: 6, + fontFamily: 'Montserrat', + fill: centileStyle?.centileStroke ?? black + }, heightSDS: { data: { - stroke: sdsStyle?.heightStroke ?? setOpacity(centileStyle?.centileStroke ?? black, 1.0), - strokeWidth: centileStyle?.centileStrokeWidth ?? 1.5, + stroke: aquaGreen, + strokeWidth: 1.5, strokeLinecap: 'round', } }, weightSDS: { data: { - stroke: sdsStyle?.weightStroke ?? setOpacity(centileStyle?.centileStroke ?? black, 0.5), - strokeWidth: centileStyle?.centileStrokeWidth ?? 1.5, + stroke: orange, + strokeWidth: 1.5, strokeLinecap: 'round', } }, ofcSDS: { data: { - stroke: sdsStyle?.ofcStroke ?? setOpacity(centileStyle?.centileStroke ?? black, 0.25), - strokeWidth: centileStyle?.centileStrokeWidth ?? 1.5, + stroke: purple, + strokeWidth: 1.5, strokeLinecap: 'round', } }, bmiSDS: { data: { - stroke: sdsStyle?.bmiStroke ?? setOpacity(centileStyle?.centileStroke ?? black, 0.125), - strokeWidth: centileStyle?.centileStrokeWidth ?? 1.5, + stroke: strongGreen, + strokeWidth: 1.5, strokeLinecap: 'round', } }, midParentalCentile: { data: { stroke: centileStyle?.midParentalCentileStroke ?? black, - strokeWidth: centileStyle?.midParentalCentileStrokeWidth ?? 1.5, + strokeWidth: 1.5, strokeLinecap: 'round', strokeOpacity: 1.0, } @@ -213,7 +229,7 @@ function makeAllStyles( midParentalSDS: { data: { stroke: centileStyle?.midParentalCentileStroke ?? black, - strokeWidth: centileStyle?.midParentalCentileStrokeWidth ?? 1.5, + strokeWidth: 1.5, strokeLinecap: 'round', strokeOpacity: 1.0, strokeDasharray: '2 5' @@ -241,17 +257,19 @@ function makeAllStyles( fill: measurementStyle?.highlightedMeasurementFill ?? black } }, + eventTextStyle: { + size: measurementStyle?.eventTextStyle?.size ?? 14, + name: measurementStyle?.eventTextStyle?.name ?? 'Montserrat', + colour: measurementStyle?.eventTextStyle?.colour ?? black, + style: measurementStyle?.eventTextStyle?.style ?? 'normal' + }, toggleStyle: { - activeColour: chartStyle?.toggleButtonActiveColour ?? darkPink, - inactiveColour: chartStyle?.toggleButtonInactiveColour ?? lightPink, + activeColour: chartStyle?.toggleButtonActiveColour ?? black, + inactiveColour: chartStyle?.toggleButtonInactiveColour ?? midGrey, fontFamily: chartStyle?.toggleButtonTextStyle?.name ?? 'Arial', color: chartStyle?.toggleButtonTextStyle?.colour ?? white, fontSize: chartStyle?.toggleButtonTextStyle?.size ?? 14, - fontWeight: - chartStyle?.toggleButtonTextStyle?.weight === 'italic' - ? 'normal' - : chartStyle?.toggleButtonTextStyle?.weight ?? 'normal', - fontStyle: chartStyle?.toggleButtonTextStyle?.weight === 'italic' ? 'italic' : 'normal', + fontStyle: chartStyle?.toggleButtonTextStyle?.style === 'italic' ? 'italic' : 'normal', }, }; } diff --git a/src/functions/nameForMeasurementMethod.ts b/src/functions/nameForMeasurementMethod.ts index 31bfc7f..00076d2 100644 --- a/src/functions/nameForMeasurementMethod.ts +++ b/src/functions/nameForMeasurementMethod.ts @@ -1,5 +1,5 @@ export const nameForMeasurementMethod = (measurementMethod: string): string =>{ - let name="Height"; + let name="Height/Length"; if (measurementMethod==="weight"){ name="Weight"; } diff --git a/src/functions/nameForReference.ts b/src/functions/nameForReference.ts new file mode 100644 index 0000000..8458046 --- /dev/null +++ b/src/functions/nameForReference.ts @@ -0,0 +1,16 @@ +export const nameForReference = (reference: 'uk-who'|'trisomy-21'|'turner'):string=>{ + /* + Returns reference name against supplied reference prop + */ + + const ukWHOText = "UK-WHO"; + const trisomy = "Trisomy 21 (Down's Syndrome)" + const turnerSyndrome = "Turner's Syndrome" + + if (reference==="trisomy-21") return trisomy; + else if(reference==="turner") return turnerSyndrome; + else if(reference==="uk-who") { + return ukWHOText + } + else throw new Error("No reference supplied"); +} \ No newline at end of file diff --git a/src/functions/referenceText.ts b/src/functions/referenceText.ts new file mode 100644 index 0000000..07b7775 --- /dev/null +++ b/src/functions/referenceText.ts @@ -0,0 +1,17 @@ +export const referenceText = (reference: 'uk-who'|'trisomy-21'|'turner'):string=>{ + /* + Returns attribution text against supplied reference prop + */ + + const ukWHOText = "WHO Child Growth Standards"; + const pretermText = "UK 1990 reference data, reanalysed 2009" + const trisomy = "Styles ME, Cole TJ, Dennis J, Preece MA. New cross sectional stature, weight and head circumference references for Down’s syndrome in the UK and Republic of Ireland. Arch Dis Child 2002;87:104-8. BMI centiles added 11/11/2013" + const turnerSyndrome = "UK Turner reference data, 1985. Lyon, Preece and Grant (1985)." + + if (reference==="trisomy-21") return trisomy; + else if(reference==="turner") return turnerSyndrome; + else if(reference==="uk-who") { + return `${ukWHOText}, ${pretermText}` + } + else throw new Error("No reference supplied"); +} \ No newline at end of file diff --git a/src/functions/sdsPointMouseOverObject.ts b/src/functions/sdsPointMouseOverObject.ts deleted file mode 100644 index fa3c724..0000000 --- a/src/functions/sdsPointMouseOverObject.ts +++ /dev/null @@ -1,73 +0,0 @@ -export function createSDSPointMouseOverObject(styles){ - /* - Takes styles object from SDS chart - This function creates an array of Victory Events, which trigger onMouseOver of SDS chart measurement - data points and highlight the series in a different colour specified by the styles object (passed in from the client) - */ - const returnArray=[] - for (const item of ["height", "weight", "ofc", "bmi"]){ - const redObject = { - childName: [ - `chronological-${item}-line`, - `corrected-${item}-line`, - `corrected-${item}-scatter`, - `chronological-${item}-scatter`, - `linkLine-${item}` - ], - target: "data", - eventHandlers: { - onMouseOver: ()=>{ - return [ - { - childName: [ - `chronological-${item}-line`, - `corrected-${item}-line`, - `linkLine-${item}` - ], - - mutation: ()=>{ - return { - style: { - stroke: styles.toolTipFlyout.stroke, - } - }; - } - }, - { - childName: [ - `corrected-${item}-scatter`, - `chronological-${item}-scatter`, - ], - - mutation: ()=>{ - return { - style: { - fill: styles.toolTipFlyout.stroke - } - }; - } - } - ] - }, - onMouseOut: ()=>{ - return [ - { - childName: [ - `chronological-${item}-line`, - `corrected-${item}-line`, - `corrected-${item}-scatter`, - `chronological-${item}-scatter`, - `linkLine-${item}` - ], - mutation: ()=>{ - return null; - } - } - ] - } - } - } - returnArray.push(redObject) - } - return returnArray; -} \ No newline at end of file diff --git a/src/functions/sdsTooltipText.ts b/src/functions/sdsTooltipText.ts index e406243..ffc6f3a 100644 --- a/src/functions/sdsTooltipText.ts +++ b/src/functions/sdsTooltipText.ts @@ -1,5 +1,6 @@ +import { Datum } from "victory"; -export function sdsTooltipText(datum){ +export function sdsTooltipText(datum: Datum){ /* Returns tool tip labels for SDS charts. */ diff --git a/src/functions/setOpacity.ts b/src/functions/setOpacity.ts index 0394977..595849b 100644 --- a/src/functions/setOpacity.ts +++ b/src/functions/setOpacity.ts @@ -1 +1 @@ -export const setOpacity = (hex, alpha) => `${hex}${Math.floor(alpha * 255).toString(16).padStart(2, "0")}`; \ No newline at end of file +export const setOpacity = (hex: string, alpha: number):string => `${hex}${Math.floor(alpha * 255).toString(16).padStart(2, "0")}`; \ No newline at end of file diff --git a/src/functions/stylesForTheme.ts b/src/functions/stylesForTheme.ts new file mode 100644 index 0000000..ef231ab --- /dev/null +++ b/src/functions/stylesForTheme.ts @@ -0,0 +1,71 @@ +import { monochromeAxisStyles, monochromeChartStyles, monochromeGridlineStyle, monochromeCentileStyle, monochromeMeasurementStyle, monochromeSDSStyle } from '../testParameters/styles/monochromeStyles'; +import { Tanner1AxisStyles, Tanner1ChartStyles, Tanner1GridlineStyles, Tanner1CentileStyles, Tanner1MeasurementStyles, Tanner1SDSStyles } from '../testParameters/styles/tanner1Styles'; +import { Tanner2AxisStyles, Tanner2ChartStyles, Tanner2GridlineStyles, Tanner2CentileStyles, Tanner2MeasurementStyles, Tanner2SDSStyles } from '../testParameters/styles/tanner2Styles'; +import { Tanner3AxisStyles, Tanner3ChartStyles, Tanner3GridlineStyles, Tanner3CentileStyles, Tanner3MeasurementStyles, Tanner3SDSStyles } from '../testParameters/styles/tanner3Styles'; +import { traditionalBoyAxisStyles, traditionalBoyChartStyles, traditionalBoyGridlineStyles, traditionalBoyCentileStyles, traditionalBoyMeasurementStyles, traditionalBoySDSStyles } from '../testParameters/styles/traditionalBoysStyles'; +import { traditionalGirlAxisStyles, traditionalGirlChartStyles, traditionalGirlGridlineStyles, traditionalGirlCentileStyles, traditionalGirlMeasurementStyles, traditionalGirlSDSStyles } from '../testParameters/styles/traditionalGirlsStyles'; +import { ChartStyle, AxisStyle, GridlineStyle, CentileStyle, SDSStyle, MeasurementStyle } from '../interfaces/StyleObjects'; +import { Exception } from 'sass'; + +export const stylesForTheme = (theme: 'monochrome' | 'traditional' | 'tanner1' | 'tanner2' | 'tanner3' | 'custom', sex: 'male' | 'female')=>{ + // Returns the styles objects for a theme. If custom is selected, monochrome is selected to be customized later + let chartStyle:ChartStyle, axisStyle:AxisStyle, gridlineStyle:GridlineStyle, centileStyle:CentileStyle, sdsStyle:SDSStyle, measurementStyle:MeasurementStyle; + + switch (theme) { + case 'monochrome' || 'custom': + chartStyle = monochromeChartStyles + axisStyle = monochromeAxisStyles + gridlineStyle = monochromeGridlineStyle + centileStyle = monochromeCentileStyle + sdsStyle = monochromeSDSStyle + measurementStyle = monochromeMeasurementStyle + break; + case 'traditional': + if (sex === "male"){ + chartStyle = traditionalBoyChartStyles + axisStyle = traditionalBoyAxisStyles + gridlineStyle = traditionalBoyGridlineStyles + centileStyle = traditionalBoyCentileStyles + sdsStyle = traditionalBoySDSStyles + measurementStyle = traditionalBoyMeasurementStyles + } + if (sex === "female"){ + chartStyle = traditionalGirlChartStyles + axisStyle = traditionalGirlAxisStyles + gridlineStyle = traditionalGirlGridlineStyles + centileStyle = traditionalGirlCentileStyles + sdsStyle = traditionalGirlSDSStyles + measurementStyle = traditionalGirlMeasurementStyles + } + break; + case 'tanner1': + chartStyle = Tanner1ChartStyles + axisStyle = Tanner1AxisStyles + gridlineStyle = Tanner1GridlineStyles + centileStyle = Tanner1CentileStyles + sdsStyle = Tanner1SDSStyles + measurementStyle = Tanner1MeasurementStyles + break; + case 'tanner2': + chartStyle = Tanner2ChartStyles + axisStyle = Tanner2AxisStyles + gridlineStyle = Tanner2GridlineStyles + centileStyle = Tanner2CentileStyles + sdsStyle = Tanner2SDSStyles + measurementStyle = Tanner2MeasurementStyles + break; + case 'tanner3': + chartStyle = Tanner3ChartStyles + axisStyle = Tanner3AxisStyles + gridlineStyle = Tanner3GridlineStyles + centileStyle = Tanner3CentileStyles + sdsStyle = Tanner3SDSStyles + measurementStyle = Tanner3MeasurementStyles + break; + default: + throw new Error("Please select a valid theme or select custom."); + } + + return { chartStyle, axisStyle,gridlineStyle,centileStyle,sdsStyle,measurementStyle }; + +} \ No newline at end of file diff --git a/src/functions/tailoredXTickValues.ts b/src/functions/tailoredXTickValues.ts index 2513686..28fcc06 100644 --- a/src/functions/tailoredXTickValues.ts +++ b/src/functions/tailoredXTickValues.ts @@ -1,4 +1,5 @@ const allXTickValues = [ + -0.34496919917864477, -0.33, -0.32580424366872, -0.3066392881587953, diff --git a/src/functions/tooltips.ts b/src/functions/tooltips.ts index 8595ade..5be37c2 100644 --- a/src/functions/tooltips.ts +++ b/src/functions/tooltips.ts @@ -1,16 +1,18 @@ +import { Datum } from 'victory'; import { measurementSuffix } from '../functions/measurementSuffix'; +import { MidParentalHeightObject } from '../interfaces/MidParentalHeightObject'; import addOrdinalSuffix from './addOrdinalSuffix'; export function tooltipText( reference: string, measurementMethod: string, - datum: any, - midParentalHeightData, + datum: Datum, + midParentalHeightData: MidParentalHeightObject, clinicianFocus: boolean, // flag passed in from user - defines if tooltip text aimed at clinicians or families - sex: string + sex: 'male' | 'female' ): string { - const { + const { childName, x, // the decimal age l, // labels @@ -21,6 +23,9 @@ export function tooltipText( gestational_age, y, observation_value_error, + corrected_measurement_error, + corrected_decimal_age_error, + chronological_decimal_age_error, age_error, lay_comment, clinician_comment, @@ -31,8 +36,27 @@ export function tooltipText( bone_age_sds, bone_age_centile, bone_age_type, + corrected_percentage_median_bmi, + chronological_percentage_median_bmi } = datum; + // flag passed in from user - if clinician, show clinician age advice strings, else show child/family advice + const comment = clinicianFocus ? clinician_comment : lay_comment; + + if (corrected_decimal_age_error && age_type === 'corrected_age'){ + return corrected_decimal_age_error + } + if (corrected_measurement_error && age_type === 'corrected_age'){ + let corrected_gestational_age='' + if (gestational_age){ + const finalCorrectedString = comment.replaceAll(', ', ',\n').replaceAll('. ', '.\n'); + corrected_gestational_age=`${gestational_age.corrected_gestation_weeks}+${gestational_age.corrected_gestation_days} weeks` + return `${calendar_age}\nCorrected age: ${corrected_gestational_age} on ${observation_date}\n${finalCorrectedString}\n${y}${measurementSuffix(measurementMethod)}\n${corrected_measurement_error}`; + } + const finalCorrectedString = comment.replaceAll(', ', ',\n').replaceAll('. ', '.\n'); + return `Corrected age: ${calendar_age} on ${observation_date}\n${finalCorrectedString}\n${y} ${measurementSuffix(measurementMethod)} ${corrected_measurement_error}`; + } + // midparental height labels if (midParentalHeightData){ const { @@ -59,6 +83,15 @@ export function tooltipText( // l represent labels that represent reference transitions, puberty area or sds labels for the BMI SDS lines if (l) { + + if (x <= 0.038329911019849415 && x >= -0.057494866529774126 && measurementMethod === 'weight' && reference === 'uk-who'){ + // 37 weeks gest - 42 + if (childName.includes("centileLine")){ + // these are the centile labels + return `${addOrdinalSuffix(l)} centile`; + } + return l; + } // reference transit point or puberty shaded area labels if (x === 0.0383 && reference === 'uk-who') { return 'Transit point from\nUK90 to WHO data'; @@ -68,11 +101,11 @@ export function tooltipText( } if (x === 2 && measurementMethod === 'height' && reference == 'uk-who') { // step down at 2 y where children measured standing (height), not lying (length) - return "Measure length until x 2;\nMeasure height after age 2.\nA child’s height is usually\nslightly less than their length."; + return "Measure length until age 2y;\nMeasure height after age 2y.\nA child’s height is usually\nslightly less than their length."; } if (x === 2 && measurementMethod === 'height' && reference == 'uk-who') { // step down at 2 y where children measured standing (height), not lying (length) - return "Measure length until x 2;\nMeasure height after age 2.\nA child’s height is usually\nslightly less than their length."; + return "Measure length until age 2y;\nMeasure height after age 2y.\nA child’s height is usually\nslightly less than their length."; } if (l === 'For all Children plotted in this shaded area see instructions.' && reference == 'uk-who') { // delayed puberty if plotted in this area @@ -90,15 +123,15 @@ export function tooltipText( if (childName.includes("centileLine")){ // these are the centile labels - if (datum._voronoiX < 20){ - // fix for duplicate text if tooltip called from mouse point where x > chart area + + if (datum.x < 20 && y != null){ + // fix for duplicate text if tooltip called from mouse point where x > chart area or + // y is ull - situations when hovering below the chart in areas where centile data do not exist return `${addOrdinalSuffix(l)} centile`; } } } if (centile_band) { - // flag passed in from user - if clinician, show clinician age advice strings, else show child/family advice - const comment = clinicianFocus ? clinician_comment : lay_comment; // bone age text if ((childName==="chronologicalboneage" || childName === "correctedboneage") && b){ @@ -150,38 +183,22 @@ export function tooltipText( splitCentile[wantedIndex] = 'is\n'; finalCentile = splitCentile.join(' ').replace('is\n ', 'is\n'); } - - if (observation_value_error === null && age_error === null) { - const year=observation_date.split('/')[2] - const month=observation_date.split('/')[1]-1 - const day=observation_date.split('/')[0] - - // sds in square brackets - const formatted_observation_date = new Date(year,month,day).toLocaleDateString("en-GB", {year: "numeric", month: "short", day: "numeric"}); - const sds_string = `[SDS: ${sds > 0 ? '+' + Math.round(sds*1000)/1000 : Math.round(sds*1000)/1000 }]`; - if (age_type === 'corrected_age' && x > 0.0383) { - const finalCorrectedString = comment.replaceAll(', ', ',\n').replaceAll('. ', '.\n'); - return `Corrected age: ${calendar_age} on ${formatted_observation_date}\n${finalCorrectedString}\n${y} ${measurementSuffix(measurementMethod)} ${ clinicianFocus ? sds_string : '\n' + finalCentile}`; - } - if (age_type === 'chronological_age') { - let finalChronologicalString = comment - .replaceAll(', ', ',\n') - .replaceAll('. ', '.\n') - .replaceAll('account ', 'account\n'); - return `Chronological age: ${calendar_age} on ${formatted_observation_date}\n${finalChronologicalString}\n${y} ${measurementSuffix(measurementMethod)} ${ clinicianFocus ? sds_string : '\n' + finalCentile}`; - } - } + + const year=observation_date.split('/')[2] + const month=observation_date.split('/')[1]-1 + const day=observation_date.split('/')[0] + const formatted_observation_date = new Date(year,month,day).toLocaleDateString("en-GB", {year: "numeric", month: "short", day: "numeric"}); + // measurement data points if (x <= 0.0383) { - // <= 42 weeks + + /// plots if (observation_value_error === null ) { - const year=observation_date.split('/')[2] - const month=observation_date.split('/')[1]-1 - const day=observation_date.split('/')[0] // && age_error === null temporarily removed from if statement as error in api return object for EDD < observation_date - const formatted_observation_date = new Date(year,month,day).toLocaleDateString("en-GB", {year: "numeric", month: "short", day: "numeric"}); + + let corrected_gestational_age='' if (gestational_age){ corrected_gestational_age=`${gestational_age.corrected_gestation_weeks}+${gestational_age.corrected_gestation_days} weeks` @@ -197,6 +214,40 @@ export function tooltipText( return `Chronological age: ${calendar_age}\n${formatted_observation_date}\n${finalChronologicalString}\n${y} ${measurementSuffix(measurementMethod)} ${ clinicianFocus ? sds_string : '\n' + finalCentile}`; } } + } else { + // over 42 weeks + // if no errors, return the ages, measurement and calculations + let correctedPercentageMedianBMI = "" + let chronologicalPercentageMedianBMI = "" + if (measurementMethod==="bmi"){ + correctedPercentageMedianBMI = `Percentage median BMI: ${Math.round(corrected_percentage_median_bmi)}%` + chronologicalPercentageMedianBMI = `Percentage median BMI: ${Math.round(chronological_percentage_median_bmi)}%` + } + + // sds in square brackets + const sds_string = `[SDS: ${sds > 0 ? '+' + Math.round(sds*1000)/1000 : Math.round(sds*1000)/1000 }]`; + + if (age_type === 'corrected_age' && x > 0.0383) { + const finalCorrectedString = comment.replaceAll(', ', ',\n').replaceAll('. ', '.\n'); + let returnString = `Corrected age: ${calendar_age} on ${formatted_observation_date}\n${finalCorrectedString}\n${y} ${measurementSuffix(measurementMethod)} ${ clinicianFocus ? sds_string : '\n' + finalCentile}`; + if (measurementMethod==="bmi"){ + returnString += `\n${correctedPercentageMedianBMI}` + } + return returnString; + + } + if (age_type === 'chronological_age') { + + let finalChronologicalString = comment + .replaceAll(', ', ',\n') + .replaceAll('. ', '.\n') + .replaceAll('account ', 'account\n'); + let returnString = `Chronological age: ${calendar_age} on ${formatted_observation_date}\n${finalChronologicalString}\n${y} ${measurementSuffix(measurementMethod)} ${ clinicianFocus ? sds_string : '\n' + finalCentile}`; + if (measurementMethod === "bmi"){ + returnString += `\n${chronologicalPercentageMedianBMI}`; + } + return returnString; + } } } } diff --git a/src/functions/xAxisLabel.ts b/src/functions/xAxisLabel.ts index bd653a2..19a57ad 100644 --- a/src/functions/xAxisLabel.ts +++ b/src/functions/xAxisLabel.ts @@ -12,14 +12,14 @@ function xAxislabel(chartScaleType: 'prem' | 'infant' | 'smallChild' | 'biggerCh } case 'infant': if (lowerX < 0 && upperX >= 0) { - return 'Gestation or postnatal weeks / months'; + return 'Gestation or postnatal weeks / months (shown as lollipops)'; } else if (upperX < 0) { return 'Gestation'; } else { - return 'Age (in weeks and months)'; + return 'Age (in weeks and months (shown as lollipops))'; } case 'smallChild': - return 'Age (in years and months)'; + return 'Age (in years and months (shown as lollipops))'; case 'biggerChild': return 'Age (in years)'; default: diff --git a/src/global.css b/src/global.css new file mode 100644 index 0000000..0b0ce87 --- /dev/null +++ b/src/global.css @@ -0,0 +1,40 @@ +@font-face { + font-family: 'Montserrat'; + src: url("./fonts/Montserrat/Montserrat-Medium.ttf") format('truetype'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Montserrat'; + src: url("./fonts/Montserrat/Montserrat-Bold.ttf") format('truetype'); + font-weight: bold; + font-style: bold; +} + +@font-face { + font-family: 'Montserrat'; + src: url("./fonts/Montserrat/Montserrat-Italic.ttf") format('truetype'); + font-weight: italic; + font-style: italic; +} +@font-face { + font-family: 'Arial'; + src: url("./fonts/Arial/ARI.ttf") format('truetype'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Arial'; + src: url("./fonts/Arial/ARIALBD.TTF") format('truetype'); + font-weight: bold; + font-style: bold; +} + +@font-face { + font-family: 'Arial'; + src: url("./fonts/Arial/ARIALI.TTF") format('truetype'); + font-weight: italic; + font-style: italic; +} \ No newline at end of file diff --git a/src/index.ts b/src/index.ts index f25b99f..f1f0dc2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,3 @@ import RCPCHChart from "./RCPCHChart"; -import icon from '../src/images/icon.png' -export { icon } export { RCPCHChart }; \ No newline at end of file diff --git a/src/interfaces/CentilesObject.ts b/src/interfaces/CentilesObject.ts index 192ed9b..9166a2e 100644 --- a/src/interfaces/CentilesObject.ts +++ b/src/interfaces/CentilesObject.ts @@ -5,27 +5,27 @@ export interface UKWHOReferences { "uk90_child"?: ISexChoice } export interface ReferenceGroup { - centile_data: Reference[] + centile_data?: Reference[] } export interface Reference { [name: string]: ISexChoice } export interface ICentile { - centile: number, - data: IPlottedCentileMeasurement[], - sds: number + centile?: number, + data?: IPlottedCentileMeasurement[], + sds?: number } export interface IPlottedCentileMeasurement { - "l": string | number, - "x": number, - "y": number + "l"?: string | number, + "x"?: number, + "y"?: number } export interface ISexChoice { - male: IMeasurementMethod, - female: IMeasurementMethod + male?: IMeasurementMethod, + female?: IMeasurementMethod } export interface IMeasurementMethod{ diff --git a/src/interfaces/ClientMidparentalCentilesObject.ts b/src/interfaces/ClientMidparentalCentilesObject.ts new file mode 100644 index 0000000..6def211 --- /dev/null +++ b/src/interfaces/ClientMidparentalCentilesObject.ts @@ -0,0 +1,7 @@ +import { ICentile } from "./CentilesObject" + +export interface ClientMidparentalCentilesObject { + lowerParentalCentile: ICentile[], + midParentalCentile: ICentile[], + upperParentalCentile: ICentile[] +} \ No newline at end of file diff --git a/src/interfaces/ClientStyleObjects.ts b/src/interfaces/ClientStyleObjects.ts new file mode 100644 index 0000000..57045ab --- /dev/null +++ b/src/interfaces/ClientStyleObjects.ts @@ -0,0 +1,126 @@ +export interface ChartPadding { + left?: number, + right?: number, + top?: number, + bottom?: number, +} + +export interface ChartMisc { + background?: {fill?: string} +} + +export interface Label { + fontSize?: number, + padding?: number, + fill?: string, + fontFamily?: string, +} + +export interface Line { + data: { + stroke?: string, + strokeWidth?: number, + strokeLinecap?: string, + strokeDasharray?: string, + strokeOpacity?: number + } +} + +export interface Axis { + axis?: { + stroke?: string, + strokeWidth?: number + }, + axisLabel?: Label, + ticks?: { + stroke?: string + }, + tickLabel?: Label, + grid?: { + stroke?: string; + strokeWidth?: number; + strokeDasharray?: string; + } +} + +export interface Data { + stroke?: string, + fill?: string, + strokeWidth?: number, +} + +export interface ClientStyle { + chartHeight?: number, + chartWidth?: number, + chartPadding?: ChartPadding, + chartMisc?: ChartMisc, + toolTipFlyout?:{ + stroke?: string, + fill?: string + }, + toolTipMain?: { + textAnchor?: 'start' | 'end', + stroke?: string, + strokeWidth?: number, + fill?: string, + fontFamily?: string, + fontWeight?: number + }, + chartTitle?: { + fontFamily?: string, + color?: string, + fontSize?: number, + fontWeight?: 'italic' | 'normal' | 'bold', + fontStyle?: 'italic' | 'normal' | 'bold', + }, + termArea?: { + data?: Data + }, + xAxis?: Axis, + xTicklabel?: Label, + yAxis?: Axis, + delayedPubertyArea: { + data?: Data + }, + delayedPubertyThresholdLine?:{ + data?: Data + }, + delayedPubertyThresholdLabel?: { + fontSize?: number, + fill?: string, + fontFamily?: string, + textAlign?: string, + }, + sdsLine?: Line, + dashedCentile?: Line, + continuousCentile?: Line, + heightSDS?: Line, + weightSDS?: Line, + ofcSDS?: Line, + bmiSDS?: Line, + midParentalSDS?: Line, + midParentalArea?: { + data?: Data + }, + measurementPoint?: { + data?: { + fill?: string + } + }, + measurementLinkLine?: Line, + highlightedMeasurementFill?: { + data?: { + fill?: string + } + } + toggleStyle?:{ + activeColour?: string, + inactiveColour?: string, + fontFamily?: string, + color?: string, + fontSize?: string, + fontWeight?: string, + fontStyle?: string, + } + +} \ No newline at end of file diff --git a/src/interfaces/Domains.ts b/src/interfaces/Domains.ts index 8e3e04f..8dd7bf0 100644 --- a/src/interfaces/Domains.ts +++ b/src/interfaces/Domains.ts @@ -1,4 +1,17 @@ export interface Domains { x: [number, number], y: [number, number] +} + + +export interface IDomainMeasurementMethod { + [measurementMethod: string]: Domains +} + +export interface IDomainReference { + [reference: string]: IDomainMeasurementMethod +} + +export interface IDomainSex { + [sex: string]: IDomainReference } \ No newline at end of file diff --git a/src/interfaces/MidParentalHeightObject.ts b/src/interfaces/MidParentalHeightObject.ts index 88d7611..e9e57aa 100644 --- a/src/interfaces/MidParentalHeightObject.ts +++ b/src/interfaces/MidParentalHeightObject.ts @@ -3,9 +3,9 @@ export interface MidParentalHeightObject { mid_parental_height?: number; mid_parental_height_sds?: number; mid_parental_height_centile?: number; - mid_parental_height_centile_data?: Reference[] - mid_parental_height_upper_centile_data?: Reference[] - mid_parental_height_lower_centile_data?: Reference[] - mid_parental_height_lower_value?: number - mid_parental_height_upper_value?: number + mid_parental_height_centile_data?: Reference[]; + mid_parental_height_upper_centile_data?: Reference[]; + mid_parental_height_lower_centile_data?: Reference[]; + mid_parental_height_lower_value?: number; + mid_parental_height_upper_value?: number; } \ No newline at end of file diff --git a/src/interfaces/RCPCHMeasurementObject.ts b/src/interfaces/RCPCHMeasurementObject.ts index 5bf140b..f3afaa9 100644 --- a/src/interfaces/RCPCHMeasurementObject.ts +++ b/src/interfaces/RCPCHMeasurementObject.ts @@ -27,7 +27,7 @@ export interface Measurement { clinician_chronological_decimal_age_comment: string; lay_chronological_decimal_age_comment: string; } - observation_date: Date; + observation_date: string; corrected_decimal_age_error?: string; chronological_decimal_age_error?: string; }; @@ -39,8 +39,9 @@ export interface Measurement { corrected_centile: number; corrected_centile_band: string; corrected_measurement_error?: string; + corrected_percentage_median_bmi?: number + chronological_percentage_median_bmi?: number corrected_sds: number; - measurement_method: 'height' | 'weight' | 'bmi' | 'ofc'; }; plottable_data: { centile_data: { @@ -55,14 +56,17 @@ export interface Measurement { observation_value_error?: string; x: number; y: number; - b: number; + b?: number; centile?: number; sds?: number; bone_age_label?: string; events_text?: string[]; + bone_age_type?: string; + bone_age_sds?: number; + bone_age_centile?: number; }; corrected_decimal_age_data: { - age_error: null; + age_error?: string; age_type: 'chronological_age' | 'corrected_age'; calendar_age: string; centile_band: string; @@ -72,11 +76,15 @@ export interface Measurement { observation_value_error?: string; x: number; y: number; - b: number; + b?: number; centile?: number; sds?: number; bone_age_label?: string; events_text?: string[]; + bone_age_type?: string; + bone_age_sds?: number; + bone_age_centile?: number; + corrected_gestational_age?: string; }; }; sds_data: { @@ -91,9 +99,14 @@ export interface Measurement { observation_value_error?: string; x: number; y: number; - b: number; + b?: number; + centile: number; + sds: number; bone_age_label?: string; events_text?: string[]; + bone_age_sds?: number; + bone_age_type?: string; + bone_age_centile?: number; }; corrected_decimal_age_data: { age_error?: string; @@ -106,15 +119,21 @@ export interface Measurement { observation_value_error?: string; x: number; y: number; - b: number; + b?: number; + centile: number; + sds: number; bone_age_label?: string; + bone_age_type?: string; events_text?: string[]; + bone_age_sds?: number; + bone_age_centile?: number; + corrected_gestational_age?: string; }; }; }; bone_age: { bone_age?: number; - bone_age_type?: number; + bone_age_type?: string; bone_age_centile?: number; bone_age_sds?: number; bone_age_text?: string; diff --git a/src/interfaces/StyleObjects.ts b/src/interfaces/StyleObjects.ts index 065dbc7..55847a8 100644 --- a/src/interfaces/StyleObjects.ts +++ b/src/interfaces/StyleObjects.ts @@ -1,62 +1,50 @@ export interface ChartStyle { - backgroundColour?: string; - width?: number; - height?: number; - padding?: Padding; - titleStyle?: TextStyle; - subTitleStyle?: TextStyle; - tooltipBackgroundColour?: string; - tooltipStroke?: string; - tooltipTextStyle?: TextStyle; // the text size is not in pts, but is a strokeWidth as text is an svg - termFill?: string; - termStroke?: string; - toggleButtonInactiveColour: string; - toggleButtonActiveColour: string; - toggleButtonTextStyle: TextStyle; + backgroundColour?: string; //background colour of chart + titleStyle?: TextStyle | undefined; // style of text in title: includes fontFamily, fontSize, colour, weight (regular/bold/italic) + subTitleStyle?: TextStyle | undefined; // style of text in subtitle: includes fontFamily, fontSize, colour, weight (regular/bold/italic) + tooltipBackgroundColour?: string; //background colour of tooltip + tooltipStroke?: string; //border colour of tooltip + tooltipTextStyle?: TextStyle | undefined; // tooltip text: includes fontFamily, fontSize, colour, weight (regular/bold/italic) + termFill?: string; // background colour of weight term area + termStroke?: string; // border colour of weight term area + toggleButtonInactiveColour?: string; // buttons - inactive colour + toggleButtonActiveColour?: string; // buttons - active colour + toggleButtonTextStyle?: TextStyle | undefined; // buttons text: includes fontFamily, fontSize, colour, weight (regular/bold/italic) } export interface MeasurementStyle { - measurementFill?: string; - highlightedMeasurementFill?: string; + measurementFill?: string; // measurement point fill colour - only apply to SDS charts + highlightedMeasurementFill?: string; // measurement point fill colour when hightlighted (SDS charts) + eventTextStyle?: TextStyle; // styles for text of events: includes fontFamily, fontSize, colour, weight (regular/bold/italic) } export interface CentileStyle { - sdsStroke?: string; - sdsStrokeWidth?: string; - centileStroke?: string; - centileStrokeWidth?: number; - delayedPubertyAreaFill?: string; - midParentalCentileStrokeWidth?: number; - midParentalCentileStroke?: string; - midParentalAreaFill?: string; + sdsStroke?: string; // sds line colour + centileStroke?: string; // centile line colour + delayedPubertyAreaFill?: string; // delayed puberty area colour + midParentalCentileStroke?: string; // Midparental height centile line colour + midParentalAreaFill?: string; // Midparental height area colour } export interface SDSStyle { - lineStrokeWidth?: number; - heightStroke?: string; - weightStroke?: string; - ofcStroke?: string; - bmiStroke?: string; + heightStroke?: string; // sds line colour + weightStroke?: string; // sds line colour + ofcStroke?: string; // sds line colour + bmiStroke?: string; // sds line colour } export interface GridlineStyle { - gridlines?: boolean; - stroke?: string; - strokeWidth?: number; - dashed?: boolean; + gridlines?: boolean; // show or hide gridlines + stroke?: string; // gridline colour + strokeWidth?: number; // gridline width + dashed?: boolean; // dashed vs continuous gridlines } export interface AxisStyle { - axisStroke?: string; - axisLabelTextStyle?: TextStyle; - tickLabelTextStyle?: TextStyle; + axisStroke?: string; // Axis colour + axisLabelTextStyle?: TextStyle | undefined; // Axis label text: : includes fontFamily, fontSize, colour, weight (regular/bold/italic) + tickLabelTextStyle?: TextStyle | undefined; // Tick label text : includes fontFamily, fontSize, colour, weight (regular/bold/italic) } -export interface Padding { - left?: number; - right?: number; - top?: number; - bottom?: number; -} export interface TextStyle { name?: string; colour?: string; size?: number; - weight?: 'bold' | 'italic' | 'normal'; + style?: 'bold' | 'italic' | 'normal'; } diff --git a/src/interfaces/VictoryLegendData.ts b/src/interfaces/VictoryLegendData.ts new file mode 100644 index 0000000..5e43012 --- /dev/null +++ b/src/interfaces/VictoryLegendData.ts @@ -0,0 +1,11 @@ +export interface VictoryLegendDatum { + name?: string; + labels?: { + fill?: string; + size?: number; + }; + symbol?: { + fill?: string; + type?: string; + }; + } \ No newline at end of file diff --git a/src/stories/Button.stories.ts b/src/stories/Button.stories.ts new file mode 100644 index 0000000..49d190c --- /dev/null +++ b/src/stories/Button.stories.ts @@ -0,0 +1,58 @@ +import type { Meta, StoryObj } from '@storybook/react'; + +import { Button } from './Button'; + +// More on how to set up stories at: https://storybook.js.org/docs/react/writing-stories/introduction#default-export +const meta: Meta = { + title: 'Example/Button', + component: Button, + parameters: { + // Optional parameter to center the component in the Canvas. More info: https://storybook.js.org/docs/react/configure/story-layout + layout: 'centered', + }, + // This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/react/writing-docs/autodocs + tags: ['autodocs'], + // More on argTypes: https://storybook.js.org/docs/react/api/argtypes + argTypes: { + backgroundColor: { control: 'color' }, + }, +}; + +export default meta; +type Story = StoryObj; + +// More on writing stories with args: https://storybook.js.org/docs/react/writing-stories/args +export const Primary: Story = { + args: { + primary: true, + label: 'Button', + }, +}; + +export const Secondary: Story = { + args: { + label: 'Button', + }, +}; + +export const Large: Story = { + args: { + size: 'large', + label: 'Button', + }, +}; + +export const Small: Story = { + args: { + size: 'small', + label: 'Button', + }, +}; + +export const Warning: Story = { + args: { + primary: true, + label: 'Delete now', + backgroundColor: 'red', + }, +}; diff --git a/src/stories/Button.tsx b/src/stories/Button.tsx new file mode 100644 index 0000000..c33be6e --- /dev/null +++ b/src/stories/Button.tsx @@ -0,0 +1,48 @@ +import React from 'react'; +import './button.css'; + +interface ButtonProps { + /** + * Is this the principal call to action on the page? + */ + primary?: boolean; + /** + * What background color to use + */ + backgroundColor?: string; + /** + * How large should the button be? + */ + size?: 'small' | 'medium' | 'large'; + /** + * Button contents + */ + label: string; + /** + * Optional click handler + */ + onClick?: () => void; +} + +/** + * Primary UI component for user interaction + */ +export const Button = ({ + primary = false, + size = 'medium', + backgroundColor, + label, + ...props +}: ButtonProps) => { + const mode = primary ? 'storybook-button--primary' : 'storybook-button--secondary'; + return ( + + ); +}; diff --git a/src/stories/Configure.mdx b/src/stories/Configure.mdx new file mode 100644 index 0000000..a50fcea --- /dev/null +++ b/src/stories/Configure.mdx @@ -0,0 +1,364 @@ +import { Meta } from "@storybook/blocks"; + +import Github from "./assets/github.svg"; +import Discord from "./assets/discord.svg"; +import Youtube from "./assets/youtube.svg"; +import Tutorials from "./assets/tutorials.svg"; +import Styling from "./assets/styling.png"; +import Context from "./assets/context.png"; +import Assets from "./assets/assets.png"; +import Docs from "./assets/docs.png"; +import Share from "./assets/share.png"; +import FigmaPlugin from "./assets/figma-plugin.png"; +import Testing from "./assets/testing.png"; +import Accessibility from "./assets/accessibility.png"; +import Theming from "./assets/theming.png"; +import AddonLibrary from "./assets/addon-library.png"; + +export const RightArrow = () => + + + + + +
+
+ # Configure your project + + Because Storybook works separately from your app, you'll need to configure it for your specific stack and setup. Below, explore guides for configuring Storybook with popular frameworks and tools. If you get stuck, learn how you can ask for help from our community. +
+
+
+ A wall of logos representing different styling technologies +

Add styling and CSS

+

Like with web applications, there are many ways to include CSS within Storybook. Learn more about setting up styling within Storybook.

+ Learn more +
+
+ An abstraction representing the composition of data for a component +

Provide context and mocking

+

Often when a story doesn't render, it's because your component is expecting a specific environment or context (like a theme provider) to be available.

+ Learn more +
+
+ A representation of typography and image assets +
+

Load assets and resources

+

To link static files (like fonts) to your projects and stories, use the + `staticDirs` configuration option to specify folders to load when + starting Storybook.

+ Learn more +
+
+
+
+
+
+ # Do more with Storybook + + Now that you know the basics, let's explore other parts of Storybook that will improve your experience. This list is just to get you started. You can customise Storybook in many ways to fit your needs. +
+ +
+
+
+ A screenshot showing the autodocs tag being set, pointing a docs page being generated +

Autodocs

+

Auto-generate living, + interactive reference documentation from your components and stories.

+ Learn more +
+
+ A browser window showing a Storybook being published to a chromatic.com URL +

Publish to Chromatic

+

Publish your Storybook to review and collaborate with your entire team.

+ Learn more +
+
+ Windows showing the Storybook plugin in Figma +

Figma Plugin

+

Embed your stories into Figma to cross-reference the design and live + implementation in one place.

+ Learn more +
+
+ Screenshot of tests passing and failing +

Testing

+

Use stories to test a component in all its variations, no matter how + complex.

+ Learn more +
+
+ Screenshot of accessibility tests passing and failing +

Accessibility

+

Automatically test your components for a11y issues as you develop.

+ Learn more +
+
+ Screenshot of Storybook in light and dark mode +

Theming

+

Theme Storybook's UI to personalize it to your project.

+ Learn more +
+
+
+
+
+
+

Addons

+

Integrate your tools with Storybook to connect workflows.

+ Discover all addons +
+
+ Integrate your tools with Storybook to connect workflows. +
+
+ +
+
+ Github logo + Join our contributors building the future of UI development. + + Star on GitHub +
+
+ Discord logo +
+ Get support and chat with frontend developers. + + Join Discord server +
+
+
+ Youtube logo +
+ Watch tutorials, feature previews and interviews. + + Watch on YouTube +
+
+
+ A book +

Follow guided walkthroughs on for key workflows.

+ + Discover tutorials +
+
+ + diff --git a/src/stories/Header.stories.ts b/src/stories/Header.stories.ts new file mode 100644 index 0000000..05a5b56 --- /dev/null +++ b/src/stories/Header.stories.ts @@ -0,0 +1,27 @@ +import type { Meta, StoryObj } from '@storybook/react'; + +import { Header } from './Header'; + +const meta: Meta = { + title: 'Example/Header', + component: Header, + // This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/react/writing-docs/autodocs + tags: ['autodocs'], + parameters: { + // More on Story layout: https://storybook.js.org/docs/react/configure/story-layout + layout: 'fullscreen', + }, +}; + +export default meta; +type Story = StoryObj; + +export const LoggedIn: Story = { + args: { + user: { + name: 'Jane Doe', + }, + }, +}; + +export const LoggedOut: Story = {}; diff --git a/src/stories/Header.tsx b/src/stories/Header.tsx new file mode 100644 index 0000000..0150460 --- /dev/null +++ b/src/stories/Header.tsx @@ -0,0 +1,56 @@ +import React from 'react'; + +import { Button } from './Button'; +import './header.css'; + +type User = { + name: string; +}; + +interface HeaderProps { + user?: User; + onLogin: () => void; + onLogout: () => void; + onCreateAccount: () => void; +} + +export const Header = ({ user, onLogin, onLogout, onCreateAccount }: HeaderProps) => ( +
+
+
+ + + + + + + +

Acme

+
+
+ {user ? ( + <> + + Welcome, {user.name}! + +
+
+
+); diff --git a/src/stories/Page.stories.ts b/src/stories/Page.stories.ts new file mode 100644 index 0000000..511d4d0 --- /dev/null +++ b/src/stories/Page.stories.ts @@ -0,0 +1,29 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { within, userEvent } from '@storybook/test'; + +import { Page } from './Page'; + +const meta: Meta = { + title: 'Example/Page', + component: Page, + parameters: { + // More on Story layout: https://storybook.js.org/docs/react/configure/story-layout + layout: 'fullscreen', + }, +}; + +export default meta; +type Story = StoryObj; + +export const LoggedOut: Story = {}; + +// More on interaction testing: https://storybook.js.org/docs/react/writing-tests/interaction-testing +export const LoggedIn: Story = { + play: async ({ canvasElement }) => { + const canvas = within(canvasElement); + const loginButton = await canvas.getByRole('button', { + name: /Log in/i, + }); + await userEvent.click(loginButton); + }, +}; diff --git a/src/stories/Page.tsx b/src/stories/Page.tsx new file mode 100644 index 0000000..994d890 --- /dev/null +++ b/src/stories/Page.tsx @@ -0,0 +1,73 @@ +import React from 'react'; + +import { Header } from './Header'; +import './page.css'; + +type User = { + name: string; +}; + +export const Page: React.FC = () => { + const [user, setUser] = React.useState(); + + return ( +
+
setUser({ name: 'Jane Doe' })} + onLogout={() => setUser(undefined)} + onCreateAccount={() => setUser({ name: 'Jane Doe' })} + /> + +
+

Pages in Storybook

+

+ We recommend building UIs with a{' '} + + component-driven + {' '} + process starting with atomic components and ending with pages. +

+

+ Render pages with mock data. This makes it easy to build and review page states without + needing to navigate to them in your app. Here are some handy patterns for managing page + data in Storybook: +

+
    +
  • + Use a higher-level connected component. Storybook helps you compose such data from the + "args" of child component stories +
  • +
  • + Assemble data in the page component from your services. You can mock these services out + using Storybook. +
  • +
+

+ Get a guided tutorial on component-driven development at{' '} + + Storybook tutorials + + . Read more in the{' '} + + docs + + . +

+
+ Tip Adjust the width of the canvas with the{' '} + + + + + + Viewports addon in the toolbar +
+
+
+ ); +}; diff --git a/src/stories/assets/accessibility.png b/src/stories/assets/accessibility.png new file mode 100644 index 0000000..6ffe6fe Binary files /dev/null and b/src/stories/assets/accessibility.png differ diff --git a/src/stories/assets/accessibility.svg b/src/stories/assets/accessibility.svg new file mode 100644 index 0000000..a328883 --- /dev/null +++ b/src/stories/assets/accessibility.svg @@ -0,0 +1,5 @@ + + Accessibility + + + \ No newline at end of file diff --git a/src/stories/assets/addon-library.png b/src/stories/assets/addon-library.png new file mode 100644 index 0000000..95deb38 Binary files /dev/null and b/src/stories/assets/addon-library.png differ diff --git a/src/stories/assets/assets.png b/src/stories/assets/assets.png new file mode 100644 index 0000000..cfba681 Binary files /dev/null and b/src/stories/assets/assets.png differ diff --git a/src/stories/assets/context.png b/src/stories/assets/context.png new file mode 100644 index 0000000..e5cd249 Binary files /dev/null and b/src/stories/assets/context.png differ diff --git a/src/stories/assets/discord.svg b/src/stories/assets/discord.svg new file mode 100644 index 0000000..1204df9 --- /dev/null +++ b/src/stories/assets/discord.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/stories/assets/docs.png b/src/stories/assets/docs.png new file mode 100644 index 0000000..a749629 Binary files /dev/null and b/src/stories/assets/docs.png differ diff --git a/src/stories/assets/figma-plugin.png b/src/stories/assets/figma-plugin.png new file mode 100644 index 0000000..8f79b08 Binary files /dev/null and b/src/stories/assets/figma-plugin.png differ diff --git a/src/stories/assets/github.svg b/src/stories/assets/github.svg new file mode 100644 index 0000000..158e026 --- /dev/null +++ b/src/stories/assets/github.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/stories/assets/share.png b/src/stories/assets/share.png new file mode 100644 index 0000000..8097a37 Binary files /dev/null and b/src/stories/assets/share.png differ diff --git a/src/stories/assets/styling.png b/src/stories/assets/styling.png new file mode 100644 index 0000000..d341e82 Binary files /dev/null and b/src/stories/assets/styling.png differ diff --git a/src/stories/assets/testing.png b/src/stories/assets/testing.png new file mode 100644 index 0000000..d4ac39a Binary files /dev/null and b/src/stories/assets/testing.png differ diff --git a/src/stories/assets/theming.png b/src/stories/assets/theming.png new file mode 100644 index 0000000..1535eb9 Binary files /dev/null and b/src/stories/assets/theming.png differ diff --git a/src/stories/assets/tutorials.svg b/src/stories/assets/tutorials.svg new file mode 100644 index 0000000..4b2fc7c --- /dev/null +++ b/src/stories/assets/tutorials.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/stories/assets/youtube.svg b/src/stories/assets/youtube.svg new file mode 100644 index 0000000..33a3a61 --- /dev/null +++ b/src/stories/assets/youtube.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/stories/button.css b/src/stories/button.css new file mode 100644 index 0000000..dc91dc7 --- /dev/null +++ b/src/stories/button.css @@ -0,0 +1,30 @@ +.storybook-button { + font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-weight: 700; + border: 0; + border-radius: 3em; + cursor: pointer; + display: inline-block; + line-height: 1; +} +.storybook-button--primary { + color: white; + background-color: #1ea7fd; +} +.storybook-button--secondary { + color: #333; + background-color: transparent; + box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 0px 1px inset; +} +.storybook-button--small { + font-size: 12px; + padding: 10px 16px; +} +.storybook-button--medium { + font-size: 14px; + padding: 11px 20px; +} +.storybook-button--large { + font-size: 16px; + padding: 12px 24px; +} diff --git a/src/stories/header.css b/src/stories/header.css new file mode 100644 index 0000000..d9a7052 --- /dev/null +++ b/src/stories/header.css @@ -0,0 +1,32 @@ +.storybook-header { + font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; + border-bottom: 1px solid rgba(0, 0, 0, 0.1); + padding: 15px 20px; + display: flex; + align-items: center; + justify-content: space-between; +} + +.storybook-header svg { + display: inline-block; + vertical-align: top; +} + +.storybook-header h1 { + font-weight: 700; + font-size: 20px; + line-height: 1; + margin: 6px 0 6px 10px; + display: inline-block; + vertical-align: top; +} + +.storybook-header button + button { + margin-left: 10px; +} + +.storybook-header .welcome { + color: #333; + font-size: 14px; + margin-right: 10px; +} diff --git a/src/stories/page.css b/src/stories/page.css new file mode 100644 index 0000000..098dad1 --- /dev/null +++ b/src/stories/page.css @@ -0,0 +1,69 @@ +.storybook-page { + font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 24px; + padding: 48px 20px; + margin: 0 auto; + max-width: 600px; + color: #333; +} + +.storybook-page h2 { + font-weight: 700; + font-size: 32px; + line-height: 1; + margin: 0 0 4px; + display: inline-block; + vertical-align: top; +} + +.storybook-page p { + margin: 1em 0; +} + +.storybook-page a { + text-decoration: none; + color: #1ea7fd; +} + +.storybook-page ul { + padding-left: 30px; + margin: 1em 0; +} + +.storybook-page li { + margin-bottom: 8px; +} + +.storybook-page .tip { + display: inline-block; + border-radius: 1em; + font-size: 11px; + line-height: 12px; + font-weight: 700; + background: #e7fdd8; + color: #66bf3c; + padding: 4px 12px; + margin-right: 10px; + vertical-align: top; +} + +.storybook-page .tip-wrapper { + font-size: 13px; + line-height: 20px; + margin-top: 40px; + margin-bottom: 40px; +} + +.storybook-page .tip-wrapper svg { + display: inline-block; + height: 12px; + width: 12px; + margin-right: 4px; + vertical-align: top; + margin-top: 3px; +} + +.storybook-page .tip-wrapper svg path { + fill: #1ea7fd; +} diff --git a/src/testParameters/measurements/beforeDueDateError.ts b/src/testParameters/measurements/beforeDueDateError.ts new file mode 100644 index 0000000..4437749 --- /dev/null +++ b/src/testParameters/measurements/beforeDueDateError.ts @@ -0,0 +1,163 @@ +import { Measurement } from "../../interfaces/RCPCHMeasurementObject" + +export const beforeDueDateError:Measurement[] = [ + { + "birth_data": { + "birth_date": "2020-04-12", + "gestation_weeks": 23, + "gestation_days": 0, + "estimated_date_delivery": "2020-08-09", + "estimated_date_delivery_string": "Sun 09 August, 2020", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "2020-04-18", + "chronological_decimal_age": 0.01642710472279261, + "corrected_decimal_age": -0.30937713894592744, + "chronological_calendar_age": "6 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 23, + "corrected_gestation_days": 6 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 23+0 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 45.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": null, + "corrected_centile": null, + "corrected_centile_band": null, + "chronological_sds": -3.0300336248399846, + "chronological_centile": 0.1, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": "UK-WHO length data does not exist in infants below 25 weeks gestation.", + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.01642710472279261, + "y": 45.0, + "b": null, + "centile": 0.1, + "sds": -3.0300336248399846, + "bone_age_label": "This bone age is advanced", + "events_text": [ + "Growth hormone start", + "Growth Hormone Deficiency diagnosis" + ], + "bone_age_type": "greulich-pyle", + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.30937713894592744, + "y": 45.0, + "b": null, + "centile": null, + "sds": null, + "bone_age_label": "This bone age is advanced", + "events_text": [ + "Growth hormone start", + "Growth Hormone Deficiency diagnosis" + ], + "bone_age_type": "greulich-pyle", + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "23 + 6 weeks", + "lay_comment": "Because your child was born at 23+0 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": null, + "observation_value_error": "UK-WHO length data does not exist in infants below 25 weeks gestation." + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.01642710472279261, + "y": -3.0300336248399846, + "b": null, + "centile": 0.1, + "sds": null, + "bone_age_label": "This bone age is advanced", + "events_text": [ + "Growth hormone start", + "Growth Hormone Deficiency diagnosis" + ], + "bone_age_type": "greulich-pyle", + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.30937713894592744, + "y": null, + "b": null, + "centile": null, + "sds": null, + "bone_age_label": "This bone age is advanced", + "events_text": [ + "Growth hormone start", + "Growth Hormone Deficiency diagnosis" + ], + "bone_age_type": "greulich-pyle", + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "23 + 6 weeks", + "lay_comment": "Because your child was born at 23+0 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": null, + "observation_value_error": "UK-WHO length data does not exist in infants below 25 weeks gestation." + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": "greulich-pyle", + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": "This bone age is advanced" + }, + "events_data": { + "events_text": [ + "Growth hormone start", + "Growth Hormone Deficiency diagnosis" + ] + } + } +] \ No newline at end of file diff --git a/src/testParameters/measurements/prematureGirlOverFourHeight.ts b/src/testParameters/measurements/prematureGirlOverFourHeight.ts new file mode 100644 index 0000000..6703072 --- /dev/null +++ b/src/testParameters/measurements/prematureGirlOverFourHeight.ts @@ -0,0 +1,2020 @@ +import { Measurement } from "../../interfaces/RCPCHMeasurementObject"; + +export const prematureGirlOverFourHeight: Measurement[]=[ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-11", + "chronological_decimal_age": 0.0, + "corrected_decimal_age": -0.13141683778234087, + "chronological_calendar_age": "Happy Birthday", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 33, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 51.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.5193085014915835, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 1.018282547536866, + "chronological_centile": 84.6, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": 51.9, + "b": null, + "centile": 84.6, + "sds": 1.018282547536866, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.13141683778234087, + "y": 51.9, + "b": null, + "centile": 100.0, + "sds": 3.5193085014915835, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "33 + 1 weeks", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": 1.018282547536866, + "b": null, + "centile": 84.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.13141683778234087, + "y": 3.5193085014915835, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "33 + 1 weeks", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-08-10", + "chronological_decimal_age": 0.33127994524298426, + "corrected_decimal_age": 0.1998631074606434, + "chronological_calendar_age": "3 months, 4 weeks and 2 days", + "corrected_calendar_age": "2 months, 1 week and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 64.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.9441576793247375, + "corrected_centile": 99.8, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 1.045541401865189, + "chronological_centile": 85.2, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.33127994524298426, + "y": 64.3, + "b": null, + "centile": 85.2, + "sds": 1.045541401865189, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months, 4 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.1998631074606434, + "y": 64.3, + "b": null, + "centile": 99.8, + "sds": 2.9441576793247375, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.33127994524298426, + "y": 1.045541401865189, + "b": null, + "centile": 85.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months, 4 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.1998631074606434, + "y": 2.9441576793247375, + "b": null, + "centile": 99.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-12-09", + "chronological_decimal_age": 0.6625598904859685, + "corrected_decimal_age": 0.5311430527036276, + "chronological_calendar_age": "7 months and 4 weeks", + "corrected_calendar_age": "6 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 71.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.089196003509204, + "corrected_centile": 98.2, + "corrected_centile_band": "This height measurement is on or near the 98th centile.", + "chronological_sds": 1.0245221453278943, + "chronological_centile": 84.7, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.6625598904859685, + "y": 71.1, + "b": null, + "centile": 84.7, + "sds": 1.0245221453278943, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 months and 4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.5311430527036276, + "y": 71.1, + "b": null, + "centile": 98.2, + "sds": 2.089196003509204, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 98th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.6625598904859685, + "y": 1.0245221453278943, + "b": null, + "centile": 84.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 months and 4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.5311430527036276, + "y": 2.089196003509204, + "b": null, + "centile": 98.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 98th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-04-08", + "chronological_decimal_age": 0.9938398357289527, + "corrected_decimal_age": 0.8624229979466119, + "chronological_calendar_age": "11 months and 4 weeks", + "corrected_calendar_age": "10 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 76.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.8756236471730483, + "corrected_centile": 97.0, + "corrected_centile_band": "This height measurement is on or near the 98th centile.", + "chronological_sds": 1.0406623910922144, + "chronological_centile": 85.1, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.9938398357289527, + "y": 76.6, + "b": null, + "centile": 85.1, + "sds": 1.0406623910922144, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 months and 4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.8624229979466119, + "y": 76.6, + "b": null, + "centile": 97.0, + "sds": 1.8756236471730483, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 98th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.9938398357289527, + "y": 1.0406623910922144, + "b": null, + "centile": 85.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 months and 4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.8624229979466119, + "y": 1.8756236471730483, + "b": null, + "centile": 97.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 98th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-08-07", + "chronological_decimal_age": 1.325119780971937, + "corrected_decimal_age": 1.1937029431895962, + "chronological_calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "corrected_calendar_age": "1 year, 2 months, 1 week and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 81.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.7204570324108464, + "corrected_centile": 95.7, + "corrected_centile_band": "This height measurement is between the 91st and 98th centiles.", + "chronological_sds": 1.0401969811144558, + "chronological_centile": 85.1, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.325119780971937, + "y": 81.4, + "b": null, + "centile": 85.1, + "sds": 1.0401969811144558, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.1937029431895962, + "y": 81.4, + "b": null, + "centile": 95.7, + "sds": 1.7204570324108464, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 2 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.325119780971937, + "y": 1.0401969811144558, + "b": null, + "centile": 85.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.1937029431895962, + "y": 1.7204570324108464, + "b": null, + "centile": 95.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 2 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-12-06", + "chronological_decimal_age": 1.6563997262149213, + "corrected_decimal_age": 1.5249828884325805, + "chronological_calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "corrected_calendar_age": "1 year, 6 months and 1 week", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 85.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.6048721877485435, + "corrected_centile": 94.6, + "corrected_centile_band": "This height measurement is between the 91st and 98th centiles.", + "chronological_sds": 1.036705836646904, + "chronological_centile": 85.0, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.6563997262149213, + "y": 85.7, + "b": null, + "centile": 85.0, + "sds": 1.036705836646904, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.5249828884325805, + "y": 85.7, + "b": null, + "centile": 94.6, + "sds": 1.6048721877485435, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 6 months and 1 week", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.6563997262149213, + "y": 1.036705836646904, + "b": null, + "centile": 85.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.5249828884325805, + "y": 1.6048721877485435, + "b": null, + "centile": 94.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 6 months and 1 week", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-04-06", + "chronological_decimal_age": 1.9876796714579055, + "corrected_decimal_age": 1.8562628336755647, + "chronological_calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "corrected_calendar_age": "1 year, 10 months, 1 week and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 89.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.5444617824851088, + "corrected_centile": 93.9, + "corrected_centile_band": "This height measurement is between the 91st and 98th centiles.", + "chronological_sds": 1.0615629274118485, + "chronological_centile": 85.6, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.9876796714579055, + "y": 89.7, + "b": null, + "centile": 85.6, + "sds": 1.0615629274118485, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.8562628336755647, + "y": 89.7, + "b": null, + "centile": 93.9, + "sds": 1.5444617824851088, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 10 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.9876796714579055, + "y": 1.0615629274118485, + "b": null, + "centile": 85.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.8562628336755647, + "y": 1.5444617824851088, + "b": null, + "centile": 93.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 10 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-08-05", + "chronological_decimal_age": 2.31895961670089, + "corrected_decimal_age": 2.187542778918549, + "chronological_calendar_age": "2 years, 3 months, 3 weeks and 4 days", + "corrected_calendar_age": "2 years, 2 months and 1 week", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 92.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.47848232999836, + "corrected_centile": 93.0, + "corrected_centile_band": "This height measurement is on or near the 91st centile.", + "chronological_sds": 1.063270058732607, + "chronological_centile": 85.6, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.31895961670089, + "y": 92.6, + "b": null, + "centile": 85.6, + "sds": 1.063270058732607, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 3 months, 3 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.187542778918549, + "y": 92.6, + "b": null, + "centile": 93.0, + "sds": 1.47848232999836, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 2 months and 1 week", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.31895961670089, + "y": 1.063270058732607, + "b": null, + "centile": 85.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 3 months, 3 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.187542778918549, + "y": 1.47848232999836, + "b": null, + "centile": 93.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 2 months and 1 week", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-12-04", + "chronological_decimal_age": 2.650239561943874, + "corrected_decimal_age": 2.518822724161533, + "chronological_calendar_age": "2 years, 7 months, 3 weeks and 2 days", + "corrected_calendar_age": "2 years, 6 months and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 95.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.425111930298132, + "corrected_centile": 92.3, + "corrected_centile_band": "This height measurement is on or near the 91st centile.", + "chronological_sds": 1.066105972045275, + "chronological_centile": 85.7, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.650239561943874, + "y": 95.9, + "b": null, + "centile": 85.7, + "sds": 1.066105972045275, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.518822724161533, + "y": 95.9, + "b": null, + "centile": 92.3, + "sds": 1.425111930298132, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 6 months and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.650239561943874, + "y": 1.066105972045275, + "b": null, + "centile": 85.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.518822724161533, + "y": 1.425111930298132, + "b": null, + "centile": 92.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 6 months and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-04-04", + "chronological_decimal_age": 2.9815195071868583, + "corrected_decimal_age": 2.8501026694045173, + "chronological_calendar_age": "2 years, 11 months, 3 weeks and 3 days", + "corrected_calendar_age": "2 years, 10 months and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 98.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.3713326497242362, + "corrected_centile": 91.5, + "corrected_centile_band": "This height measurement is on or near the 91st centile.", + "chronological_sds": 1.0538327807181609, + "chronological_centile": 85.4, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.9815195071868583, + "y": 98.9, + "b": null, + "centile": 85.4, + "sds": 1.0538327807181609, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 11 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.8501026694045173, + "y": 98.9, + "b": null, + "centile": 91.5, + "sds": 1.3713326497242362, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 10 months and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.9815195071868583, + "y": 1.0538327807181609, + "b": null, + "centile": 85.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 11 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.8501026694045173, + "y": 1.3713326497242362, + "b": null, + "centile": 91.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 10 months and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-08-03", + "chronological_decimal_age": 3.3127994524298425, + "corrected_decimal_age": 3.1813826146475015, + "chronological_calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "corrected_calendar_age": "3 years, 2 months and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 101.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.347991469414639, + "corrected_centile": 91.1, + "corrected_centile_band": "This height measurement is on or near the 91st centile.", + "chronological_sds": 1.0609004841507517, + "chronological_centile": 85.6, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.3127994524298425, + "y": 101.8, + "b": null, + "centile": 85.6, + "sds": 1.0609004841507517, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.1813826146475015, + "y": 101.8, + "b": null, + "centile": 91.1, + "sds": 1.347991469414639, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 2 months and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.3127994524298425, + "y": 1.0609004841507517, + "b": null, + "centile": 85.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.1813826146475015, + "y": 1.347991469414639, + "b": null, + "centile": 91.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 2 months and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-12-02", + "chronological_decimal_age": 3.6440793976728267, + "corrected_decimal_age": 3.512662559890486, + "chronological_calendar_age": "3 years, 7 months and 3 weeks", + "corrected_calendar_age": "3 years, 6 months and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 104.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.3158438381210076, + "corrected_centile": 90.6, + "corrected_centile_band": "This height measurement is on or near the 91st centile.", + "chronological_sds": 1.0547660378390498, + "chronological_centile": 85.4, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.6440793976728267, + "y": 104.5, + "b": null, + "centile": 85.4, + "sds": 1.0547660378390498, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 7 months and 3 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.512662559890486, + "y": 104.5, + "b": null, + "centile": 90.6, + "sds": 1.3158438381210076, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 6 months and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.6440793976728267, + "y": 1.0547660378390498, + "b": null, + "centile": 85.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 7 months and 3 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.512662559890486, + "y": 1.3158438381210076, + "b": null, + "centile": 90.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 6 months and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-04-02", + "chronological_decimal_age": 3.975359342915811, + "corrected_decimal_age": 3.8439425051334704, + "chronological_calendar_age": "3 years, 11 months, 3 weeks and 1 day", + "corrected_calendar_age": "3 years, 10 months and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 105.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.9660311082671635, + "corrected_centile": 83.3, + "corrected_centile_band": "This height measurement is between the 75th and 91st centiles.", + "chronological_sds": 0.7320462592109017, + "chronological_centile": 76.8, + "chronological_centile_band": "This height measurement is on or near the 75th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.975359342915811, + "y": 105.7, + "b": null, + "centile": 76.8, + "sds": 0.7320462592109017, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 3 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 75th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.8439425051334704, + "y": 105.7, + "b": null, + "centile": 83.3, + "sds": 0.9660311082671635, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 10 months and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.975359342915811, + "y": 0.7320462592109017, + "b": null, + "centile": 76.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 3 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 75th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.8439425051334704, + "y": 0.9660311082671635, + "b": null, + "centile": 83.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 10 months and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-08-01", + "chronological_decimal_age": 4.306639288158795, + "corrected_decimal_age": 4.175222450376454, + "chronological_calendar_age": "4 years, 3 months and 3 weeks", + "corrected_calendar_age": "4 years, 2 months and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 108.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.322803724255717, + "corrected_centile": 90.7, + "corrected_centile_band": "This height measurement is on or near the 91st centile.", + "chronological_sds": 1.0774150228622907, + "chronological_centile": 85.9, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.306639288158795, + "y": 108.2, + "b": null, + "centile": 85.9, + "sds": 1.0774150228622907, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 3 months and 3 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.175222450376454, + "y": 108.2, + "b": null, + "centile": 90.7, + "sds": 1.322803724255717, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 2 months and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.306639288158795, + "y": 1.0774150228622907, + "b": null, + "centile": 85.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 3 months and 3 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.175222450376454, + "y": 1.322803724255717, + "b": null, + "centile": 90.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 2 months and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } +] \ No newline at end of file diff --git a/src/testParameters/measurements/prematureGirlOverThreeHeight.ts b/src/testParameters/measurements/prematureGirlOverThreeHeight.ts new file mode 100644 index 0000000..701eff9 --- /dev/null +++ b/src/testParameters/measurements/prematureGirlOverThreeHeight.ts @@ -0,0 +1,1588 @@ +import { Measurement } from "../../interfaces/RCPCHMeasurementObject"; + +export const prematureGirlOverThreeHeight: Measurement[]=[ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-11", + "chronological_decimal_age": 0.0, + "corrected_decimal_age": -0.13141683778234087, + "chronological_calendar_age": "Happy Birthday", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 33, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 51.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.5193085014915835, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 1.018282547536866, + "chronological_centile": 84.6, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": 51.9, + "b": null, + "centile": 84.6, + "sds": 1.018282547536866, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.13141683778234087, + "y": 51.9, + "b": null, + "centile": 100.0, + "sds": 3.5193085014915835, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "33 + 1 weeks", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": 1.018282547536866, + "b": null, + "centile": 84.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.13141683778234087, + "y": 3.5193085014915835, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "33 + 1 weeks", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-08-10", + "chronological_decimal_age": 0.33127994524298426, + "corrected_decimal_age": 0.1998631074606434, + "chronological_calendar_age": "3 months, 4 weeks and 2 days", + "corrected_calendar_age": "2 months, 1 week and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 64.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.9441576793247375, + "corrected_centile": 99.8, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 1.045541401865189, + "chronological_centile": 85.2, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.33127994524298426, + "y": 64.3, + "b": null, + "centile": 85.2, + "sds": 1.045541401865189, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months, 4 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.1998631074606434, + "y": 64.3, + "b": null, + "centile": 99.8, + "sds": 2.9441576793247375, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.33127994524298426, + "y": 1.045541401865189, + "b": null, + "centile": 85.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months, 4 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.1998631074606434, + "y": 2.9441576793247375, + "b": null, + "centile": 99.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-12-09", + "chronological_decimal_age": 0.6625598904859685, + "corrected_decimal_age": 0.5311430527036276, + "chronological_calendar_age": "7 months and 4 weeks", + "corrected_calendar_age": "6 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 71.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.089196003509204, + "corrected_centile": 98.2, + "corrected_centile_band": "This height measurement is on or near the 98th centile.", + "chronological_sds": 1.0245221453278943, + "chronological_centile": 84.7, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.6625598904859685, + "y": 71.1, + "b": null, + "centile": 84.7, + "sds": 1.0245221453278943, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 months and 4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.5311430527036276, + "y": 71.1, + "b": null, + "centile": 98.2, + "sds": 2.089196003509204, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 98th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.6625598904859685, + "y": 1.0245221453278943, + "b": null, + "centile": 84.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 months and 4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.5311430527036276, + "y": 2.089196003509204, + "b": null, + "centile": 98.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 98th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-04-08", + "chronological_decimal_age": 0.9938398357289527, + "corrected_decimal_age": 0.8624229979466119, + "chronological_calendar_age": "11 months and 4 weeks", + "corrected_calendar_age": "10 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 76.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.8756236471730483, + "corrected_centile": 97.0, + "corrected_centile_band": "This height measurement is on or near the 98th centile.", + "chronological_sds": 1.0406623910922144, + "chronological_centile": 85.1, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.9938398357289527, + "y": 76.6, + "b": null, + "centile": 85.1, + "sds": 1.0406623910922144, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 months and 4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.8624229979466119, + "y": 76.6, + "b": null, + "centile": 97.0, + "sds": 1.8756236471730483, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 98th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.9938398357289527, + "y": 1.0406623910922144, + "b": null, + "centile": 85.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 months and 4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.8624229979466119, + "y": 1.8756236471730483, + "b": null, + "centile": 97.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 98th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-08-07", + "chronological_decimal_age": 1.325119780971937, + "corrected_decimal_age": 1.1937029431895962, + "chronological_calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "corrected_calendar_age": "1 year, 2 months, 1 week and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 81.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.7204570324108464, + "corrected_centile": 95.7, + "corrected_centile_band": "This height measurement is between the 91st and 98th centiles.", + "chronological_sds": 1.0401969811144558, + "chronological_centile": 85.1, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.325119780971937, + "y": 81.4, + "b": null, + "centile": 85.1, + "sds": 1.0401969811144558, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.1937029431895962, + "y": 81.4, + "b": null, + "centile": 95.7, + "sds": 1.7204570324108464, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 2 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.325119780971937, + "y": 1.0401969811144558, + "b": null, + "centile": 85.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.1937029431895962, + "y": 1.7204570324108464, + "b": null, + "centile": 95.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 2 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-12-06", + "chronological_decimal_age": 1.6563997262149213, + "corrected_decimal_age": 1.5249828884325805, + "chronological_calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "corrected_calendar_age": "1 year, 6 months and 1 week", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 85.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.6048721877485435, + "corrected_centile": 94.6, + "corrected_centile_band": "This height measurement is between the 91st and 98th centiles.", + "chronological_sds": 1.036705836646904, + "chronological_centile": 85.0, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.6563997262149213, + "y": 85.7, + "b": null, + "centile": 85.0, + "sds": 1.036705836646904, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.5249828884325805, + "y": 85.7, + "b": null, + "centile": 94.6, + "sds": 1.6048721877485435, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 6 months and 1 week", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.6563997262149213, + "y": 1.036705836646904, + "b": null, + "centile": 85.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.5249828884325805, + "y": 1.6048721877485435, + "b": null, + "centile": 94.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 6 months and 1 week", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-04-06", + "chronological_decimal_age": 1.9876796714579055, + "corrected_decimal_age": 1.8562628336755647, + "chronological_calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "corrected_calendar_age": "1 year, 10 months, 1 week and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 89.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.5444617824851088, + "corrected_centile": 93.9, + "corrected_centile_band": "This height measurement is between the 91st and 98th centiles.", + "chronological_sds": 1.0615629274118485, + "chronological_centile": 85.6, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.9876796714579055, + "y": 89.7, + "b": null, + "centile": 85.6, + "sds": 1.0615629274118485, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.8562628336755647, + "y": 89.7, + "b": null, + "centile": 93.9, + "sds": 1.5444617824851088, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 10 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.9876796714579055, + "y": 1.0615629274118485, + "b": null, + "centile": 85.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.8562628336755647, + "y": 1.5444617824851088, + "b": null, + "centile": 93.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 10 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-08-05", + "chronological_decimal_age": 2.31895961670089, + "corrected_decimal_age": 2.187542778918549, + "chronological_calendar_age": "2 years, 3 months, 3 weeks and 4 days", + "corrected_calendar_age": "2 years, 2 months and 1 week", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 92.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.47848232999836, + "corrected_centile": 93.0, + "corrected_centile_band": "This height measurement is on or near the 91st centile.", + "chronological_sds": 1.063270058732607, + "chronological_centile": 85.6, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.31895961670089, + "y": 92.6, + "b": null, + "centile": 85.6, + "sds": 1.063270058732607, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 3 months, 3 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.187542778918549, + "y": 92.6, + "b": null, + "centile": 93.0, + "sds": 1.47848232999836, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 2 months and 1 week", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.31895961670089, + "y": 1.063270058732607, + "b": null, + "centile": 85.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 3 months, 3 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.187542778918549, + "y": 1.47848232999836, + "b": null, + "centile": 93.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 2 months and 1 week", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-12-04", + "chronological_decimal_age": 2.650239561943874, + "corrected_decimal_age": 2.518822724161533, + "chronological_calendar_age": "2 years, 7 months, 3 weeks and 2 days", + "corrected_calendar_age": "2 years, 6 months and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 95.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.425111930298132, + "corrected_centile": 92.3, + "corrected_centile_band": "This height measurement is on or near the 91st centile.", + "chronological_sds": 1.066105972045275, + "chronological_centile": 85.7, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.650239561943874, + "y": 95.9, + "b": null, + "centile": 85.7, + "sds": 1.066105972045275, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.518822724161533, + "y": 95.9, + "b": null, + "centile": 92.3, + "sds": 1.425111930298132, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 6 months and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.650239561943874, + "y": 1.066105972045275, + "b": null, + "centile": 85.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.518822724161533, + "y": 1.425111930298132, + "b": null, + "centile": 92.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 6 months and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-04-04", + "chronological_decimal_age": 2.9815195071868583, + "corrected_decimal_age": 2.8501026694045173, + "chronological_calendar_age": "2 years, 11 months, 3 weeks and 3 days", + "corrected_calendar_age": "2 years, 10 months and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 98.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.3713326497242362, + "corrected_centile": 91.5, + "corrected_centile_band": "This height measurement is on or near the 91st centile.", + "chronological_sds": 1.0538327807181609, + "chronological_centile": 85.4, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.9815195071868583, + "y": 98.9, + "b": null, + "centile": 85.4, + "sds": 1.0538327807181609, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 11 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.8501026694045173, + "y": 98.9, + "b": null, + "centile": 91.5, + "sds": 1.3713326497242362, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 10 months and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.9815195071868583, + "y": 1.0538327807181609, + "b": null, + "centile": 85.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 11 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.8501026694045173, + "y": 1.3713326497242362, + "b": null, + "centile": 91.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 10 months and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 33, + "gestation_days": 1, + "estimated_date_delivery": "1759-05-29", + "estimated_date_delivery_string": "Tue 29 May, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-08-03", + "chronological_decimal_age": 3.3127994524298425, + "corrected_decimal_age": 3.1813826146475015, + "chronological_calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "corrected_calendar_age": "3 years, 2 months and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 101.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.347991469414639, + "corrected_centile": 91.1, + "corrected_centile_band": "This height measurement is on or near the 91st centile.", + "chronological_sds": 1.0609004841507517, + "chronological_centile": 85.6, + "chronological_centile_band": "This height measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.3127994524298425, + "y": 101.8, + "b": null, + "centile": 85.6, + "sds": 1.0609004841507517, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.1813826146475015, + "y": 101.8, + "b": null, + "centile": 91.1, + "sds": 1.347991469414639, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 2 months and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.3127994524298425, + "y": 1.0609004841507517, + "b": null, + "centile": 85.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.1813826146475015, + "y": 1.347991469414639, + "b": null, + "centile": 91.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 2 months and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 33+1 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } +] \ No newline at end of file diff --git a/src/testParameters/measurements/prematureThreeMonths.ts b/src/testParameters/measurements/prematureThreeMonths.ts new file mode 100644 index 0000000..8b8107f --- /dev/null +++ b/src/testParameters/measurements/prematureThreeMonths.ts @@ -0,0 +1,3316 @@ +import { Measurement } from "../../interfaces/RCPCHMeasurementObject"; + +export const prematureThreeMonths: Measurement[]=[ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-11", + "chronological_decimal_age": 0.0, + "corrected_decimal_age": -0.1861738535249829, + "chronological_calendar_age": "Happy Birthday", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 30, + "corrected_gestation_days": 2 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 50.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.850057779266134, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": -0.00929688975104273, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": 50.0, + "b": null, + "centile": 49.0, + "sds": -0.00929688975104273, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.1861738535249829, + "y": 50.0, + "b": null, + "centile": 100.0, + "sds": 3.850057779266134, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "30 + 2 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": -0.00929688975104273, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.1861738535249829, + "y": 3.850057779266134, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "30 + 2 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-15", + "chronological_decimal_age": 0.010951403148528405, + "corrected_decimal_age": -0.17522245037645448, + "chronological_calendar_age": "4 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 30, + "corrected_gestation_days": 6 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 50.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.79021791777047, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 0.016136411687771274, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.010951403148528405, + "y": 50.4, + "b": null, + "centile": 50.0, + "sds": 0.016136411687771274, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.17522245037645448, + "y": 50.4, + "b": null, + "centile": 100.0, + "sds": 3.79021791777047, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "30 + 6 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.010951403148528405, + "y": 0.016136411687771274, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.17522245037645448, + "y": 3.79021791777047, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "30 + 6 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-19", + "chronological_decimal_age": 0.02190280629705681, + "corrected_decimal_age": -0.16427104722792607, + "chronological_calendar_age": "1 week and 1 day", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 31, + "corrected_gestation_days": 3 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 50.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.6894828023406796, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": -0.004524365226949466, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.02190280629705681, + "y": 50.7, + "b": null, + "centile": 49.0, + "sds": -0.004524365226949466, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 week and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.16427104722792607, + "y": 50.7, + "b": null, + "centile": 100.0, + "sds": 3.6894828023406796, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "31 + 3 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.02190280629705681, + "y": -0.004524365226949466, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 week and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.16427104722792607, + "y": 3.6894828023406796, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "31 + 3 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-23", + "chronological_decimal_age": 0.03285420944558522, + "corrected_decimal_age": -0.15331964407939766, + "chronological_calendar_age": "1 week and 5 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 32, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 51.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.5885697830935177, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": -0.022107204206416427, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.03285420944558522, + "y": 51.0, + "b": null, + "centile": 49.0, + "sds": -0.022107204206416427, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 week and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.15331964407939766, + "y": 51.0, + "b": null, + "centile": 100.0, + "sds": 3.5885697830935177, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "32 + 0 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.03285420944558522, + "y": -0.022107204206416427, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 week and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.15331964407939766, + "y": 3.5885697830935177, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "32 + 0 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-27", + "chronological_decimal_age": 0.04380561259411362, + "corrected_decimal_age": -0.14236824093086928, + "chronological_calendar_age": "2 weeks and 2 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 32, + "corrected_gestation_days": 4 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 51.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.699435359782823, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 0.007557153626246579, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.04380561259411362, + "y": 51.8, + "b": null, + "centile": 50.0, + "sds": 0.007557153626246579, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.14236824093086928, + "y": 51.8, + "b": null, + "centile": 100.0, + "sds": 3.699435359782823, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "32 + 4 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.04380561259411362, + "y": 0.007557153626246579, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.14236824093086928, + "y": 3.699435359782823, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "32 + 4 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-01", + "chronological_decimal_age": 0.05475701574264202, + "corrected_decimal_age": -0.13141683778234087, + "chronological_calendar_age": "2 weeks and 6 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 33, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 52.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.691101724669004, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": -0.017021347206964688, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.05475701574264202, + "y": 52.3, + "b": null, + "centile": 49.0, + "sds": -0.017021347206964688, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.13141683778234087, + "y": 52.3, + "b": null, + "centile": 100.0, + "sds": 3.691101724669004, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "33 + 1 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.05475701574264202, + "y": -0.017021347206964688, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.13141683778234087, + "y": 3.691101724669004, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "33 + 1 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-05", + "chronological_decimal_age": 0.06570841889117043, + "corrected_decimal_age": -0.12046543463381246, + "chronological_calendar_age": "3 weeks and 3 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 33, + "corrected_gestation_days": 5 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 52.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.733301701264494, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 0.017668112581910218, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.06570841889117043, + "y": 52.9, + "b": null, + "centile": 50.0, + "sds": 0.017668112581910218, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.12046543463381246, + "y": 52.9, + "b": null, + "centile": 100.0, + "sds": 3.733301701264494, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "33 + 5 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.06570841889117043, + "y": 0.017668112581910218, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.12046543463381246, + "y": 3.733301701264494, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "33 + 5 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-09", + "chronological_decimal_age": 0.07665982203969883, + "corrected_decimal_age": -0.10951403148528405, + "chronological_calendar_age": "4 weeks", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 34, + "corrected_gestation_days": 2 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 53.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.741378530474534, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 0.009810964679988198, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.07665982203969883, + "y": 53.4, + "b": null, + "centile": 50.0, + "sds": 0.009810964679988198, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.10951403148528405, + "y": 53.4, + "b": null, + "centile": 100.0, + "sds": 3.741378530474534, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "34 + 2 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.07665982203969883, + "y": 0.009810964679988198, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.10951403148528405, + "y": 3.741378530474534, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "34 + 2 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-13", + "chronological_decimal_age": 0.08761122518822724, + "corrected_decimal_age": -0.09856262833675565, + "chronological_calendar_age": "1 month and 2 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 34, + "corrected_gestation_days": 6 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 53.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.760313499853755, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 0.009917606832099659, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.08761122518822724, + "y": 53.9, + "b": null, + "centile": 50.0, + "sds": 0.009917606832099659, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.09856262833675565, + "y": 53.9, + "b": null, + "centile": 100.0, + "sds": 3.760313499853755, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "34 + 6 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.08761122518822724, + "y": 0.009917606832099659, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.09856262833675565, + "y": 3.760313499853755, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "34 + 6 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-17", + "chronological_decimal_age": 0.09856262833675565, + "corrected_decimal_age": -0.08761122518822724, + "chronological_calendar_age": "1 month and 6 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 35, + "corrected_gestation_days": 3 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 54.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.792597544700541, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 0.017711448566752764, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.09856262833675565, + "y": 54.4, + "b": null, + "centile": 50.0, + "sds": 0.017711448566752764, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.08761122518822724, + "y": 54.4, + "b": null, + "centile": 100.0, + "sds": 3.792597544700541, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "35 + 3 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.09856262833675565, + "y": 0.017711448566752764, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.08761122518822724, + "y": 3.792597544700541, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "35 + 3 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-21", + "chronological_decimal_age": 0.10951403148528405, + "corrected_decimal_age": -0.07665982203969883, + "chronological_calendar_age": "1 month, 1 week and 3 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 36, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 54.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.7921819275376043, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": -0.017530208810605085, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.10951403148528405, + "y": 54.8, + "b": null, + "centile": 49.0, + "sds": -0.017530208810605085, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 1 week and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.07665982203969883, + "y": 54.8, + "b": null, + "centile": 100.0, + "sds": 3.7921819275376043, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "36 + 0 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.10951403148528405, + "y": -0.017530208810605085, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 1 week and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.07665982203969883, + "y": 3.7921819275376043, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "36 + 0 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-25", + "chronological_decimal_age": 0.12046543463381246, + "corrected_decimal_age": -0.06570841889117043, + "chronological_calendar_age": "1 month and 2 weeks", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 36, + "corrected_gestation_days": 4 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 55.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.8550327852876696, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 0.004885933772732756, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.12046543463381246, + "y": 55.3, + "b": null, + "centile": 50.0, + "sds": 0.004885933772732756, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month and 2 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.06570841889117043, + "y": 55.3, + "b": null, + "centile": 100.0, + "sds": 3.8550327852876696, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "36 + 4 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.12046543463381246, + "y": 0.004885933772732756, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month and 2 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.06570841889117043, + "y": 3.8550327852876696, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "36 + 4 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-29", + "chronological_decimal_age": 0.13141683778234087, + "corrected_decimal_age": -0.05475701574264202, + "chronological_calendar_age": "1 month, 2 weeks and 4 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 37, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 55.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.8836577806264483, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": -0.016071410620355872, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.13141683778234087, + "y": 55.7, + "b": null, + "centile": 49.0, + "sds": -0.016071410620355872, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 2 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.05475701574264202, + "y": 55.7, + "b": null, + "centile": 100.0, + "sds": 3.8836577806264483, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "37 + 1 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.13141683778234087, + "y": -0.016071410620355872, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 2 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.05475701574264202, + "y": 3.8836577806264483, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "37 + 1 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-02", + "chronological_decimal_age": 0.14236824093086928, + "corrected_decimal_age": -0.04380561259411362, + "chronological_calendar_age": "1 month, 3 weeks and 1 day", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 37, + "corrected_gestation_days": 5 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 56.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.9748792116928287, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 0.019455836823590172, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.14236824093086928, + "y": 56.2, + "b": null, + "centile": 50.0, + "sds": 0.019455836823590172, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 3 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.04380561259411362, + "y": 56.2, + "b": null, + "centile": 100.0, + "sds": 3.9748792116928287, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "37 + 5 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.14236824093086928, + "y": 0.019455836823590172, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 3 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.04380561259411362, + "y": 3.9748792116928287, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "37 + 5 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-06", + "chronological_decimal_age": 0.15331964407939766, + "corrected_decimal_age": -0.03285420944558522, + "chronological_calendar_age": "1 month, 3 weeks and 5 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 38, + "corrected_gestation_days": 2 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 56.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 4.0248727249354, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 0.011510070200433186, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.15331964407939766, + "y": 56.6, + "b": null, + "centile": 50.0, + "sds": 0.011510070200433186, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.03285420944558522, + "y": 56.6, + "b": null, + "centile": 100.0, + "sds": 4.0248727249354, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "38 + 2 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.15331964407939766, + "y": 0.011510070200433186, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.03285420944558522, + "y": 4.0248727249354, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "38 + 2 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-10", + "chronological_decimal_age": 0.16427104722792607, + "corrected_decimal_age": -0.02190280629705681, + "chronological_calendar_age": "1 month, 4 weeks and 2 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 38, + "corrected_gestation_days": 6 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 57.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 4.081187141378417, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 0.009605004764117683, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.16427104722792607, + "y": 57.0, + "b": null, + "centile": 50.0, + "sds": 0.009605004764117683, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 4 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.02190280629705681, + "y": 57.0, + "b": null, + "centile": 100.0, + "sds": 4.081187141378417, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "38 + 6 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.16427104722792607, + "y": 0.009605004764117683, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 4 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.02190280629705681, + "y": 4.081187141378417, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "38 + 6 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-14", + "chronological_decimal_age": 0.17522245037645448, + "corrected_decimal_age": -0.010951403148528405, + "chronological_calendar_age": "2 months and 3 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 39, + "corrected_gestation_days": 3 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 57.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 4.144187917884887, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 0.013042015774787726, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.17522245037645448, + "y": 57.4, + "b": null, + "centile": 50.0, + "sds": 0.013042015774787726, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.010951403148528405, + "y": 57.4, + "b": null, + "centile": 100.0, + "sds": 4.144187917884887, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "39 + 3 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.17522245037645448, + "y": 0.013042015774787726, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.010951403148528405, + "y": 4.144187917884887, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "39 + 3 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-18", + "chronological_decimal_age": 0.1861738535249829, + "corrected_decimal_age": 0.0, + "chronological_calendar_age": "2 months and 1 week", + "corrected_calendar_age": "Happy Birthday", + "corrected_gestational_age": { + "corrected_gestation_weeks": 40, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 57.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 4.209187115957218, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 0.02143228904014809, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.1861738535249829, + "y": 57.8, + "b": null, + "centile": 50.0, + "sds": 0.02143228904014809, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months and 1 week", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.0, + "y": 57.8, + "b": null, + "centile": 100.0, + "sds": 4.209187115957218, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "Happy Birthday", + "corrected_gestational_age": "40 + 0 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.1861738535249829, + "y": 0.02143228904014809, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months and 1 week", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.0, + "y": 4.209187115957218, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "Happy Birthday", + "corrected_gestational_age": "40 + 0 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-22", + "chronological_decimal_age": 0.1971252566735113, + "corrected_decimal_age": 0.010951403148528405, + "chronological_calendar_age": "2 months, 1 week and 4 days", + "corrected_calendar_age": "4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": 40, + "corrected_gestation_days": 4 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 58.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 4.215674351662824, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": -0.013964320180091591, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.1971252566735113, + "y": 58.1, + "b": null, + "centile": 49.0, + "sds": -0.013964320180091591, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 1 week and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.010951403148528405, + "y": 58.1, + "b": null, + "centile": 100.0, + "sds": 4.215674351662824, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 days", + "corrected_gestational_age": "40 + 4 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.1971252566735113, + "y": -0.013964320180091591, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 1 week and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.010951403148528405, + "y": 4.215674351662824, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 days", + "corrected_gestational_age": "40 + 4 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-26", + "chronological_decimal_age": 0.2080766598220397, + "corrected_decimal_age": 0.02190280629705681, + "chronological_calendar_age": "2 months, 2 weeks and 1 day", + "corrected_calendar_age": "1 week and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": 41, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 58.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 4.264187253771656, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 0.0037731201136410744, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.2080766598220397, + "y": 58.5, + "b": null, + "centile": 50.0, + "sds": 0.0037731201136410744, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 2 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.02190280629705681, + "y": 58.5, + "b": null, + "centile": 100.0, + "sds": 4.264187253771656, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 week and 1 day", + "corrected_gestational_age": "41 + 1 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.2080766598220397, + "y": 0.0037731201136410744, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 2 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.02190280629705681, + "y": 4.264187253771656, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 week and 1 day", + "corrected_gestational_age": "41 + 1 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-30", + "chronological_decimal_age": 0.2190280629705681, + "corrected_decimal_age": 0.03285420944558522, + "chronological_calendar_age": "2 months, 2 weeks and 5 days", + "corrected_calendar_age": "1 week and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": 41, + "corrected_gestation_days": 5 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 58.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 4.244455835878341, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": -0.022364081139777846, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.2190280629705681, + "y": 58.8, + "b": null, + "centile": 49.0, + "sds": -0.022364081139777846, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 2 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.03285420944558522, + "y": 58.8, + "b": null, + "centile": 100.0, + "sds": 4.244455835878341, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 week and 5 days", + "corrected_gestational_age": "41 + 5 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.2190280629705681, + "y": -0.022364081139777846, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 2 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.03285420944558522, + "y": 4.244455835878341, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 week and 5 days", + "corrected_gestational_age": "41 + 5 weeks", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-07-04", + "chronological_decimal_age": 0.2299794661190965, + "corrected_decimal_age": 0.04380561259411362, + "chronological_calendar_age": "2 months, 3 weeks and 2 days", + "corrected_calendar_age": "2 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 59.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.883404260950595, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": 0.0037329778721619782, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.2299794661190965, + "y": 59.2, + "b": null, + "centile": 50.0, + "sds": 0.0037329778721619782, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.04380561259411362, + "y": 59.2, + "b": null, + "centile": 100.0, + "sds": 3.883404260950595, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.2299794661190965, + "y": 0.0037329778721619782, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.04380561259411362, + "y": 3.883404260950595, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 30, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-18", + "estimated_date_delivery_string": "Mon 18 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-07-08", + "chronological_decimal_age": 0.24093086926762491, + "corrected_decimal_age": 0.05475701574264202, + "chronological_calendar_age": "2 months, 3 weeks and 6 days", + "corrected_calendar_age": "2 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 59.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.7291616188674057, + "corrected_centile": 100.0, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": -0.01400457197961405, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.24093086926762491, + "y": 59.5, + "b": null, + "centile": 49.0, + "sds": -0.01400457197961405, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.05475701574264202, + "y": 59.5, + "b": null, + "centile": 100.0, + "sds": 3.7291616188674057, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.24093086926762491, + "y": -0.01400457197961405, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.05475701574264202, + "y": 3.7291616188674057, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 30+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } +] \ No newline at end of file diff --git a/src/testParameters/measurements/prematureTwentyTwoWeeks.ts b/src/testParameters/measurements/prematureTwentyTwoWeeks.ts new file mode 100644 index 0000000..9942675 --- /dev/null +++ b/src/testParameters/measurements/prematureTwentyTwoWeeks.ts @@ -0,0 +1,2309 @@ + +import { Measurement } from "../../interfaces/RCPCHMeasurementObject"; + +export const prematureTwentyTwoWeeksWeight: Measurement[]=[ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 1, + "estimated_date_delivery": "1759-08-14", + "estimated_date_delivery_string": "Tue 14 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-11", + "chronological_decimal_age": 0.0, + "corrected_decimal_age": -0.34223134839151265, + "chronological_calendar_age": "Happy Birthday", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 22, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 3.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": null, + "corrected_centile": null, + "corrected_centile_band": null, + "chronological_sds": -0.03054717110689776, + "chronological_centile": 48.8, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": "UK-WHO data does not exist below 23 weeks gestation.", + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": 3.4, + "b": null, + "centile": 48.8, + "sds": -0.03054717110689776, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.34223134839151265, + "y": 3.4, + "b": null, + "centile": null, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "22 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": null, + "observation_value_error": "UK-WHO data does not exist below 23 weeks gestation." + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": -0.03054717110689776, + "b": null, + "centile": 48.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.34223134839151265, + "y": null, + "b": null, + "centile": null, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "22 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": null, + "observation_value_error": "UK-WHO data does not exist below 23 weeks gestation." + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 1, + "estimated_date_delivery": "1759-08-14", + "estimated_date_delivery_string": "Tue 14 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-18", + "chronological_decimal_age": 0.019164955509924708, + "corrected_decimal_age": -0.32306639288158795, + "chronological_calendar_age": "1 week", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 23, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 3.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 44.77006264057963, + "corrected_centile": 100.0, + "corrected_centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "chronological_sds": 0.10903374116398087, + "chronological_centile": 54.3, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.019164955509924708, + "y": 3.6, + "b": null, + "centile": 54.3, + "sds": 0.10903374116398087, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 week", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.32306639288158795, + "y": 3.6, + "b": null, + "centile": 100.0, + "sds": 44.77006264057963, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "23 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.019164955509924708, + "y": 0.10903374116398087, + "b": null, + "centile": 54.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 week", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.32306639288158795, + "y": 44.77006264057963, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "23 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 1, + "estimated_date_delivery": "1759-08-14", + "estimated_date_delivery_string": "Tue 14 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-25", + "chronological_decimal_age": 0.038329911019849415, + "corrected_decimal_age": -0.30390143737166325, + "chronological_calendar_age": "2 weeks", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 24, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 3.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 32.90044006623068, + "corrected_centile": 100.0, + "corrected_centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "chronological_sds": 0.059786614011023295, + "chronological_centile": 52.4, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.038329911019849415, + "y": 3.6, + "b": null, + "centile": 52.4, + "sds": 0.059786614011023295, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.30390143737166325, + "y": 3.6, + "b": null, + "centile": 100.0, + "sds": 32.90044006623068, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "24 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.038329911019849415, + "y": 0.059786614011023295, + "b": null, + "centile": 52.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.30390143737166325, + "y": 32.90044006623068, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "24 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 1, + "estimated_date_delivery": "1759-08-14", + "estimated_date_delivery_string": "Tue 14 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-02", + "chronological_decimal_age": 0.057494866529774126, + "corrected_decimal_age": -0.28473648186173856, + "chronological_calendar_age": "3 weeks", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 25, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 3.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 26.956362318360686, + "corrected_centile": 100.0, + "corrected_centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "chronological_sds": -0.06551863085840072, + "chronological_centile": 47.4, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.057494866529774126, + "y": 3.8, + "b": null, + "centile": 47.4, + "sds": -0.06551863085840072, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.28473648186173856, + "y": 3.8, + "b": null, + "centile": 100.0, + "sds": 26.956362318360686, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "25 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.057494866529774126, + "y": -0.06551863085840072, + "b": null, + "centile": 47.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.28473648186173856, + "y": 26.956362318360686, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "25 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 1, + "estimated_date_delivery": "1759-08-14", + "estimated_date_delivery_string": "Tue 14 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-09", + "chronological_decimal_age": 0.07665982203969883, + "corrected_decimal_age": -0.2655715263518138, + "chronological_calendar_age": "4 weeks", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 26, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 4.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 23.357913797816078, + "corrected_centile": 100.0, + "corrected_centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "chronological_sds": 0.00229722886614603, + "chronological_centile": 50.1, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.07665982203969883, + "y": 4.1, + "b": null, + "centile": 50.1, + "sds": 0.00229722886614603, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2655715263518138, + "y": 4.1, + "b": null, + "centile": 100.0, + "sds": 23.357913797816078, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "26 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.07665982203969883, + "y": 0.00229722886614603, + "b": null, + "centile": 50.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2655715263518138, + "y": 23.357913797816078, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "26 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 1, + "estimated_date_delivery": "1759-08-14", + "estimated_date_delivery_string": "Tue 14 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-16", + "chronological_decimal_age": 0.09582477754962354, + "corrected_decimal_age": -0.2464065708418891, + "chronological_calendar_age": "1 month and 5 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 27, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 4.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 20.465683880553005, + "corrected_centile": 100.0, + "corrected_centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "chronological_sds": 0.08828633543228687, + "chronological_centile": 53.5, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.09582477754962354, + "y": 4.4, + "b": null, + "centile": 53.5, + "sds": 0.08828633543228687, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2464065708418891, + "y": 4.4, + "b": null, + "centile": 100.0, + "sds": 20.465683880553005, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "27 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.09582477754962354, + "y": 0.08828633543228687, + "b": null, + "centile": 53.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2464065708418891, + "y": 20.465683880553005, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "27 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 1, + "estimated_date_delivery": "1759-08-14", + "estimated_date_delivery_string": "Tue 14 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-23", + "chronological_decimal_age": 0.11498973305954825, + "corrected_decimal_age": -0.2272416153319644, + "chronological_calendar_age": "1 month, 1 week and 5 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 28, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 4.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 17.63067864666676, + "corrected_centile": 100.0, + "corrected_centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "chronological_sds": 0.033688579713907395, + "chronological_centile": 51.3, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.11498973305954825, + "y": 4.6, + "b": null, + "centile": 51.3, + "sds": 0.033688579713907395, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 1 week and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2272416153319644, + "y": 4.6, + "b": null, + "centile": 100.0, + "sds": 17.63067864666676, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "28 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.11498973305954825, + "y": 0.033688579713907395, + "b": null, + "centile": 51.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 1 week and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2272416153319644, + "y": 17.63067864666676, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "28 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 1, + "estimated_date_delivery": "1759-08-14", + "estimated_date_delivery_string": "Tue 14 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-30", + "chronological_decimal_age": 0.13415468856947296, + "corrected_decimal_age": -0.2080766598220397, + "chronological_calendar_age": "1 month, 2 weeks and 5 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 29, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 4.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 15.362146547194069, + "corrected_centile": 100.0, + "corrected_centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "chronological_sds": 0.007879317030238848, + "chronological_centile": 50.3, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.13415468856947296, + "y": 4.8, + "b": null, + "centile": 50.3, + "sds": 0.007879317030238848, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 2 weeks and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2080766598220397, + "y": 4.8, + "b": null, + "centile": 100.0, + "sds": 15.362146547194069, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "29 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.13415468856947296, + "y": 0.007879317030238848, + "b": null, + "centile": 50.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 2 weeks and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2080766598220397, + "y": 15.362146547194069, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "29 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 1, + "estimated_date_delivery": "1759-08-14", + "estimated_date_delivery_string": "Tue 14 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-06", + "chronological_decimal_age": 0.15331964407939766, + "corrected_decimal_age": -0.188911704312115, + "chronological_calendar_age": "1 month, 3 weeks and 5 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 30, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 5.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 13.431192367839726, + "corrected_centile": 100.0, + "corrected_centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "chronological_sds": 0.006268604108103806, + "chronological_centile": 50.3, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.15331964407939766, + "y": 5.0, + "b": null, + "centile": 50.3, + "sds": 0.006268604108103806, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 3 weeks and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.188911704312115, + "y": 5.0, + "b": null, + "centile": 100.0, + "sds": 13.431192367839726, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "30 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.15331964407939766, + "y": 0.006268604108103806, + "b": null, + "centile": 50.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 3 weeks and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.188911704312115, + "y": 13.431192367839726, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "30 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 1, + "estimated_date_delivery": "1759-08-14", + "estimated_date_delivery_string": "Tue 14 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-13", + "chronological_decimal_age": 0.17248459958932238, + "corrected_decimal_age": -0.1697467488021903, + "chronological_calendar_age": "2 months and 2 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 31, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 5.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 11.779289886667083, + "corrected_centile": 100.0, + "corrected_centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "chronological_sds": 0.023473022718324743, + "chronological_centile": 50.9, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.17248459958932238, + "y": 5.2, + "b": null, + "centile": 50.9, + "sds": 0.023473022718324743, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.1697467488021903, + "y": 5.2, + "b": null, + "centile": 100.0, + "sds": 11.779289886667083, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "31 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.17248459958932238, + "y": 0.023473022718324743, + "b": null, + "centile": 50.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.1697467488021903, + "y": 11.779289886667083, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "31 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 1, + "estimated_date_delivery": "1759-08-14", + "estimated_date_delivery_string": "Tue 14 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-20", + "chronological_decimal_age": 0.19164955509924708, + "corrected_decimal_age": -0.15058179329226556, + "chronological_calendar_age": "2 months, 1 week and 2 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 32, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 5.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 10.42198698633706, + "corrected_centile": 100.0, + "corrected_centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "chronological_sds": 0.055214815052567395, + "chronological_centile": 52.2, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.19164955509924708, + "y": 5.4, + "b": null, + "centile": 52.2, + "sds": 0.055214815052567395, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 1 week and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.15058179329226556, + "y": 5.4, + "b": null, + "centile": 100.0, + "sds": 10.42198698633706, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "32 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.19164955509924708, + "y": 0.055214815052567395, + "b": null, + "centile": 52.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 1 week and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.15058179329226556, + "y": 10.42198698633706, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "32 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 1, + "estimated_date_delivery": "1759-08-14", + "estimated_date_delivery_string": "Tue 14 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-27", + "chronological_decimal_age": 0.2108145106091718, + "corrected_decimal_age": -0.13141683778234087, + "chronological_calendar_age": "2 months, 2 weeks and 2 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 33, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 5.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 9.086716996078607, + "corrected_centile": 100.0, + "corrected_centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "chronological_sds": -0.041882351405530184, + "chronological_centile": 48.3, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.2108145106091718, + "y": 5.5, + "b": null, + "centile": 48.3, + "sds": -0.041882351405530184, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 2 weeks and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.13141683778234087, + "y": 5.5, + "b": null, + "centile": 100.0, + "sds": 9.086716996078607, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "33 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.2108145106091718, + "y": -0.041882351405530184, + "b": null, + "centile": 48.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 2 weeks and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.13141683778234087, + "y": 9.086716996078607, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "33 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 1, + "estimated_date_delivery": "1759-08-14", + "estimated_date_delivery_string": "Tue 14 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-07-04", + "chronological_decimal_age": 0.2299794661190965, + "corrected_decimal_age": -0.11225188227241616, + "chronological_calendar_age": "2 months, 3 weeks and 2 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 34, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 5.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 8.252850456328668, + "corrected_centile": 100.0, + "corrected_centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "chronological_sds": 0.016191410801641964, + "chronological_centile": 50.6, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.2299794661190965, + "y": 5.7, + "b": null, + "centile": 50.6, + "sds": 0.016191410801641964, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 3 weeks and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.11225188227241616, + "y": 5.7, + "b": null, + "centile": 100.0, + "sds": 8.252850456328668, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "34 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.2299794661190965, + "y": 0.016191410801641964, + "b": null, + "centile": 50.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 3 weeks and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.11225188227241616, + "y": 8.252850456328668, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "34 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 1, + "estimated_date_delivery": "1759-08-14", + "estimated_date_delivery_string": "Tue 14 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-07-11", + "chronological_decimal_age": 0.24914442162902123, + "corrected_decimal_age": -0.09308692676249145, + "chronological_calendar_age": "3 months", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 35, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 5.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 7.614349102975943, + "corrected_centile": 100.0, + "corrected_centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "chronological_sds": 0.08194898515794831, + "chronological_centile": 53.3, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.24914442162902123, + "y": 5.9, + "b": null, + "centile": 53.3, + "sds": 0.08194898515794831, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.09308692676249145, + "y": 5.9, + "b": null, + "centile": 100.0, + "sds": 7.614349102975943, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "35 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.24914442162902123, + "y": 0.08194898515794831, + "b": null, + "centile": 53.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.09308692676249145, + "y": 7.614349102975943, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "35 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 1, + "estimated_date_delivery": "1759-08-14", + "estimated_date_delivery_string": "Tue 14 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-07-18", + "chronological_decimal_age": 0.2683093771389459, + "corrected_decimal_age": -0.07392197125256673, + "chronological_calendar_age": "3 months and 1 week", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 36, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 6.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 6.9779576706023985, + "corrected_centile": 100.0, + "corrected_centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "chronological_sds": 0.023819390474867086, + "chronological_centile": 51.0, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.2683093771389459, + "y": 6.0, + "b": null, + "centile": 51.0, + "sds": 0.023819390474867086, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months and 1 week", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.07392197125256673, + "y": 6.0, + "b": null, + "centile": 100.0, + "sds": 6.9779576706023985, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "36 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.2683093771389459, + "y": 0.023819390474867086, + "b": null, + "centile": 51.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months and 1 week", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.07392197125256673, + "y": 6.9779576706023985, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "36 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 1, + "estimated_date_delivery": "1759-08-14", + "estimated_date_delivery_string": "Tue 14 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-07-25", + "chronological_decimal_age": 0.2874743326488706, + "corrected_decimal_age": -0.05475701574264202, + "chronological_calendar_age": "3 months and 2 weeks", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 37, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 6.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 6.533069089462194, + "corrected_centile": 100.0, + "corrected_centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "chronological_sds": -0.02490003339453346, + "chronological_centile": 49.0, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.2874743326488706, + "y": 6.1, + "b": null, + "centile": 49.0, + "sds": -0.02490003339453346, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months and 2 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.05475701574264202, + "y": 6.1, + "b": null, + "centile": 100.0, + "sds": 6.533069089462194, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "37 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.2874743326488706, + "y": -0.02490003339453346, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months and 2 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.05475701574264202, + "y": 6.533069089462194, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "37 + 1 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This weight measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } +] \ No newline at end of file diff --git a/src/testParameters/measurements/prematureTwentyTwoWeeksHeight.ts b/src/testParameters/measurements/prematureTwentyTwoWeeksHeight.ts new file mode 100644 index 0000000..e36750a --- /dev/null +++ b/src/testParameters/measurements/prematureTwentyTwoWeeksHeight.ts @@ -0,0 +1,2309 @@ + +import { Measurement } from "../../interfaces/RCPCHMeasurementObject"; + +export const prematureTwentyTwoWeeksHeight: Measurement[]=[ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-11", + "chronological_decimal_age": 0.0, + "corrected_decimal_age": -0.34496919917864477, + "chronological_calendar_age": "Happy Birthday", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 22, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 40.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": null, + "corrected_centile": null, + "corrected_centile_band": null, + "chronological_sds": -4.984944691355657, + "chronological_centile": 0.0, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": "UK-WHO data does not exist below 23 weeks gestation.", + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": 40.8, + "b": null, + "centile": 0.0, + "sds": -4.984944691355657, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.34496919917864477, + "y": 40.8, + "b": null, + "centile": null, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "22 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": null, + "observation_value_error": "UK-WHO data does not exist below 23 weeks gestation." + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": -4.984944691355657, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.34496919917864477, + "y": null, + "b": null, + "centile": null, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "22 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": null, + "observation_value_error": "UK-WHO data does not exist below 23 weeks gestation." + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-18", + "chronological_decimal_age": 0.019164955509924708, + "corrected_decimal_age": -0.3258042436687201, + "chronological_calendar_age": "1 week", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 23, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 41.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": null, + "corrected_centile": null, + "corrected_centile_band": null, + "chronological_sds": -4.994661421999189, + "chronological_centile": 0.0, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": "UK-WHO length data does not exist in infants below 25 weeks gestation.", + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.019164955509924708, + "y": 41.5, + "b": null, + "centile": 0.0, + "sds": -4.994661421999189, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 week", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.3258042436687201, + "y": 41.5, + "b": null, + "centile": null, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "23 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": null, + "observation_value_error": "UK-WHO length data does not exist in infants below 25 weeks gestation." + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.019164955509924708, + "y": -4.994661421999189, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 week", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.3258042436687201, + "y": null, + "b": null, + "centile": null, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "23 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": null, + "observation_value_error": "UK-WHO length data does not exist in infants below 25 weeks gestation." + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-25", + "chronological_decimal_age": 0.038329911019849415, + "corrected_decimal_age": -0.3066392881587953, + "chronological_calendar_age": "2 weeks", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 24, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 42.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": null, + "corrected_centile": null, + "corrected_centile_band": null, + "chronological_sds": -4.998808946531075, + "chronological_centile": 0.0, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": "UK-WHO length data does not exist in infants below 25 weeks gestation.", + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.038329911019849415, + "y": 42.0, + "b": null, + "centile": 0.0, + "sds": -4.998808946531075, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.3066392881587953, + "y": 42.0, + "b": null, + "centile": null, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "24 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": null, + "observation_value_error": "UK-WHO length data does not exist in infants below 25 weeks gestation." + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.038329911019849415, + "y": -4.998808946531075, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.3066392881587953, + "y": null, + "b": null, + "centile": null, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "24 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": null, + "observation_value_error": "UK-WHO length data does not exist in infants below 25 weeks gestation." + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-02", + "chronological_decimal_age": 0.057494866529774126, + "corrected_decimal_age": -0.2874743326488706, + "chronological_calendar_age": "3 weeks", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 25, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 42.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.9686682552230255, + "corrected_centile": 99.9, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": -4.970895225348778, + "chronological_centile": 0.0, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.057494866529774126, + "y": 42.9, + "b": null, + "centile": 0.0, + "sds": -4.970895225348778, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2874743326488706, + "y": 42.9, + "b": null, + "centile": 99.9, + "sds": 2.9686682552230255, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "25 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.057494866529774126, + "y": -4.970895225348778, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2874743326488706, + "y": 2.9686682552230255, + "b": null, + "centile": 99.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "25 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-09", + "chronological_decimal_age": 0.07665982203969883, + "corrected_decimal_age": -0.2683093771389459, + "chronological_calendar_age": "4 weeks", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 26, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 43.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.9423577760713604, + "corrected_centile": 99.8, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": -4.972720836150732, + "chronological_centile": 0.0, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.07665982203969883, + "y": 43.7, + "b": null, + "centile": 0.0, + "sds": -4.972720836150732, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2683093771389459, + "y": 43.7, + "b": null, + "centile": 99.8, + "sds": 2.9423577760713604, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "26 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.07665982203969883, + "y": -4.972720836150732, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2683093771389459, + "y": 2.9423577760713604, + "b": null, + "centile": 99.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "26 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-16", + "chronological_decimal_age": 0.09582477754962354, + "corrected_decimal_age": -0.24914442162902123, + "chronological_calendar_age": "1 month and 5 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 27, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 44.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.8810948273495067, + "corrected_centile": 99.8, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": -5.004064441481283, + "chronological_centile": 0.0, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.09582477754962354, + "y": 44.4, + "b": null, + "centile": 0.0, + "sds": -5.004064441481283, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.24914442162902123, + "y": 44.4, + "b": null, + "centile": 99.8, + "sds": 2.8810948273495067, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "27 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.09582477754962354, + "y": -5.004064441481283, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.24914442162902123, + "y": 2.8810948273495067, + "b": null, + "centile": 99.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "27 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-23", + "chronological_decimal_age": 0.11498973305954825, + "corrected_decimal_age": -0.2299794661190965, + "chronological_calendar_age": "1 month, 1 week and 5 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 28, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 45.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.8437309563899706, + "corrected_centile": 99.8, + "corrected_centile_band": "This height measurement is above the normal range", + "chronological_sds": -4.963701459945458, + "chronological_centile": 0.0, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.11498973305954825, + "y": 45.2, + "b": null, + "centile": 0.0, + "sds": -4.963701459945458, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 1 week and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2299794661190965, + "y": 45.2, + "b": null, + "centile": 99.8, + "sds": 2.8437309563899706, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "28 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.11498973305954825, + "y": -4.963701459945458, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 1 week and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2299794661190965, + "y": 2.8437309563899706, + "b": null, + "centile": 99.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "28 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-30", + "chronological_decimal_age": 0.13415468856947296, + "corrected_decimal_age": -0.2108145106091718, + "chronological_calendar_age": "1 month, 2 weeks and 5 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 29, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 45.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.705650218306084, + "corrected_centile": 99.7, + "corrected_centile_band": "This height measurement is on or near the 99.6th centile.", + "chronological_sds": -5.004404115858875, + "chronological_centile": 0.0, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.13415468856947296, + "y": 45.8, + "b": null, + "centile": 0.0, + "sds": -5.004404115858875, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 2 weeks and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2108145106091718, + "y": 45.8, + "b": null, + "centile": 99.7, + "sds": 2.705650218306084, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "29 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is on or near the 99.6th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.13415468856947296, + "y": -5.004404115858875, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 2 weeks and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2108145106091718, + "y": 2.705650218306084, + "b": null, + "centile": 99.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "29 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is on or near the 99.6th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-06", + "chronological_decimal_age": 0.15331964407939766, + "corrected_decimal_age": -0.19164955509924708, + "chronological_calendar_age": "1 month, 3 weeks and 5 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 30, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 46.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.5808687540651425, + "corrected_centile": 99.5, + "corrected_centile_band": "This height measurement is on or near the 99.6th centile.", + "chronological_sds": -4.977833664750738, + "chronological_centile": 0.0, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.15331964407939766, + "y": 46.5, + "b": null, + "centile": 0.0, + "sds": -4.977833664750738, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 3 weeks and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.19164955509924708, + "y": 46.5, + "b": null, + "centile": 99.5, + "sds": 2.5808687540651425, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "30 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is on or near the 99.6th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.15331964407939766, + "y": -4.977833664750738, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 3 weeks and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.19164955509924708, + "y": 2.5808687540651425, + "b": null, + "centile": 99.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "30 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is on or near the 99.6th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-13", + "chronological_decimal_age": 0.17248459958932238, + "corrected_decimal_age": -0.17248459958932238, + "chronological_calendar_age": "2 months and 2 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 31, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 47.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.4036175515611466, + "corrected_centile": 99.2, + "corrected_centile_band": "This height measurement is between the 98th and 99.6th centiles.", + "chronological_sds": -4.985058189332455, + "chronological_centile": 0.0, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.17248459958932238, + "y": 47.1, + "b": null, + "centile": 0.0, + "sds": -4.985058189332455, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.17248459958932238, + "y": 47.1, + "b": null, + "centile": 99.2, + "sds": 2.4036175515611466, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "31 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is between the 98th and 99.6th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.17248459958932238, + "y": -4.985058189332455, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.17248459958932238, + "y": 2.4036175515611466, + "b": null, + "centile": 99.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "31 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is between the 98th and 99.6th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-20", + "chronological_decimal_age": 0.19164955509924708, + "corrected_decimal_age": -0.15331964407939766, + "chronological_calendar_age": "2 months, 1 week and 2 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 32, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 47.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.219955147953404, + "corrected_centile": 98.7, + "corrected_centile_band": "This height measurement is between the 98th and 99.6th centiles.", + "chronological_sds": -4.977074942524101, + "chronological_centile": 0.0, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.19164955509924708, + "y": 47.7, + "b": null, + "centile": 0.0, + "sds": -4.977074942524101, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 1 week and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.15331964407939766, + "y": 47.7, + "b": null, + "centile": 98.7, + "sds": 2.219955147953404, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "32 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is between the 98th and 99.6th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.19164955509924708, + "y": -4.977074942524101, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 1 week and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.15331964407939766, + "y": 2.219955147953404, + "b": null, + "centile": 98.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "32 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is between the 98th and 99.6th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-27", + "chronological_decimal_age": 0.2108145106091718, + "corrected_decimal_age": -0.13415468856947296, + "chronological_calendar_age": "2 months, 2 weeks and 2 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 33, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 48.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.0359307593342297, + "corrected_centile": 97.9, + "corrected_centile_band": "This height measurement is on or near the 98th centile.", + "chronological_sds": -4.957882303762647, + "chronological_centile": 0.0, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.2108145106091718, + "y": 48.3, + "b": null, + "centile": 0.0, + "sds": -4.957882303762647, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 2 weeks and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.13415468856947296, + "y": 48.3, + "b": null, + "centile": 97.9, + "sds": 2.0359307593342297, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "33 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is on or near the 98th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.2108145106091718, + "y": -4.957882303762647, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 2 weeks and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.13415468856947296, + "y": 2.0359307593342297, + "b": null, + "centile": 97.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "33 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is on or near the 98th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-07-04", + "chronological_decimal_age": 0.2299794661190965, + "corrected_decimal_age": -0.11498973305954825, + "chronological_calendar_age": "2 months, 3 weeks and 2 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 34, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 48.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.8143495620678696, + "corrected_centile": 96.5, + "corrected_centile_band": "This height measurement is between the 91st and 98th centiles.", + "chronological_sds": -4.973570851675935, + "chronological_centile": 0.0, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.2299794661190965, + "y": 48.8, + "b": null, + "centile": 0.0, + "sds": -4.973570851675935, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 3 weeks and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.11498973305954825, + "y": 48.8, + "b": null, + "centile": 96.5, + "sds": 1.8143495620678696, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "34 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.2299794661190965, + "y": -4.973570851675935, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 3 weeks and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.11498973305954825, + "y": 1.8143495620678696, + "b": null, + "centile": 96.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "34 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-07-11", + "chronological_decimal_age": 0.24914442162902123, + "corrected_decimal_age": -0.09582477754962354, + "chronological_calendar_age": "3 months", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 35, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 49.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.6053977495439204, + "corrected_centile": 94.6, + "corrected_centile_band": "This height measurement is between the 91st and 98th centiles.", + "chronological_sds": -4.979324395411271, + "chronological_centile": 0.0, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.24914442162902123, + "y": 49.3, + "b": null, + "centile": 0.0, + "sds": -4.979324395411271, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.09582477754962354, + "y": 49.3, + "b": null, + "centile": 94.6, + "sds": 1.6053977495439204, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "35 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.24914442162902123, + "y": -4.979324395411271, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.09582477754962354, + "y": 1.6053977495439204, + "b": null, + "centile": 94.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "35 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-07-18", + "chronological_decimal_age": 0.2683093771389459, + "corrected_decimal_age": -0.07665982203969883, + "chronological_calendar_age": "3 months and 1 week", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 36, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 49.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.4188909795700095, + "corrected_centile": 92.2, + "corrected_centile_band": "This height measurement is on or near the 91st centile.", + "chronological_sds": -4.96581770669554, + "chronological_centile": 0.0, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.2683093771389459, + "y": 49.8, + "b": null, + "centile": 0.0, + "sds": -4.96581770669554, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months and 1 week", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.07665982203969883, + "y": 49.8, + "b": null, + "centile": 92.2, + "sds": 1.4188909795700095, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "36 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.2683093771389459, + "y": -4.96581770669554, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months and 1 week", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.07665982203969883, + "y": 1.4188909795700095, + "b": null, + "centile": 92.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "36 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-07-25", + "chronological_decimal_age": 0.2874743326488706, + "corrected_decimal_age": -0.057494866529774126, + "chronological_calendar_age": "3 months and 2 weeks", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 37, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 50.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.2129505122586826, + "corrected_centile": 88.7, + "corrected_centile_band": "This height measurement is on or near the 91st centile.", + "chronological_sds": -4.996814635584171, + "chronological_centile": 0.0, + "chronological_centile_band": "This height measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.2874743326488706, + "y": 50.2, + "b": null, + "centile": 0.0, + "sds": -4.996814635584171, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months and 2 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.057494866529774126, + "y": 50.2, + "b": null, + "centile": 88.7, + "sds": 1.2129505122586826, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "37 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.2874743326488706, + "y": -4.996814635584171, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months and 2 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.057494866529774126, + "y": 1.2129505122586826, + "b": null, + "centile": 88.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "37 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This height measurement is on or near the 91st centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } +] \ No newline at end of file diff --git a/src/testParameters/measurements/prematureTwentyTwoWeeksOFC.ts b/src/testParameters/measurements/prematureTwentyTwoWeeksOFC.ts new file mode 100644 index 0000000..ae64a75 --- /dev/null +++ b/src/testParameters/measurements/prematureTwentyTwoWeeksOFC.ts @@ -0,0 +1,2309 @@ + +import { Measurement } from "../../interfaces/RCPCHMeasurementObject"; + +export const prematureTwentyTwoWeeksOFC: Measurement[]=[ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-11", + "chronological_decimal_age": 0.0, + "corrected_decimal_age": -0.34496919917864477, + "chronological_calendar_age": "Happy Birthday", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 22, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 28.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": null, + "corrected_centile": null, + "corrected_centile_band": null, + "chronological_sds": -5.0150532354212505, + "chronological_centile": 0.0, + "chronological_centile_band": "This head circumference measurement is below the normal range", + "corrected_measurement_error": "UK-WHO data does not exist below 23 weeks gestation.", + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": 28.9, + "b": null, + "centile": 0.0, + "sds": -5.0150532354212505, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.34496919917864477, + "y": 28.9, + "b": null, + "centile": null, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "22 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": null, + "observation_value_error": "UK-WHO data does not exist below 23 weeks gestation." + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": -5.0150532354212505, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.34496919917864477, + "y": null, + "b": null, + "centile": null, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "22 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": null, + "observation_value_error": "UK-WHO data does not exist below 23 weeks gestation." + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-18", + "chronological_decimal_age": 0.019164955509924708, + "corrected_decimal_age": -0.3258042436687201, + "chronological_calendar_age": "1 week", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 23, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 29.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 6.00345584218107, + "corrected_centile": 100.0, + "corrected_centile_band": "This head circumference measurement is well above the normal range. Please review its accuracy.", + "chronological_sds": -5.008061734033337, + "chronological_centile": 0.0, + "chronological_centile_band": "This head circumference measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.019164955509924708, + "y": 29.5, + "b": null, + "centile": 0.0, + "sds": -5.008061734033337, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 week", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.3258042436687201, + "y": 29.5, + "b": null, + "centile": 100.0, + "sds": 6.00345584218107, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "23 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.019164955509924708, + "y": -5.008061734033337, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 week", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.3258042436687201, + "y": 6.00345584218107, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "23 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is well above the normal range. Please review its accuracy.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-25", + "chronological_decimal_age": 0.038329911019849415, + "corrected_decimal_age": -0.3066392881587953, + "chronological_calendar_age": "2 weeks", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 24, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 29.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 5.102334993314876, + "corrected_centile": 100.0, + "corrected_centile_band": "This head circumference measurement is above the normal range", + "chronological_sds": -5.000889458380692, + "chronological_centile": 0.0, + "chronological_centile_band": "This head circumference measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.038329911019849415, + "y": 29.5, + "b": null, + "centile": 0.0, + "sds": -5.000889458380692, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.3066392881587953, + "y": 29.5, + "b": null, + "centile": 100.0, + "sds": 5.102334993314876, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "24 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.038329911019849415, + "y": -5.000889458380692, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.3066392881587953, + "y": 5.102334993314876, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "24 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-02", + "chronological_decimal_age": 0.057494866529774126, + "corrected_decimal_age": -0.2874743326488706, + "chronological_calendar_age": "3 weeks", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 25, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 30.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 4.668083158208143, + "corrected_centile": 100.0, + "corrected_centile_band": "This head circumference measurement is above the normal range", + "chronological_sds": -4.959038797186392, + "chronological_centile": 0.0, + "chronological_centile_band": "This head circumference measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.057494866529774126, + "y": 30.1, + "b": null, + "centile": 0.0, + "sds": -4.959038797186392, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2874743326488706, + "y": 30.1, + "b": null, + "centile": 100.0, + "sds": 4.668083158208143, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "25 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.057494866529774126, + "y": -4.959038797186392, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2874743326488706, + "y": 4.668083158208143, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "25 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-09", + "chronological_decimal_age": 0.07665982203969883, + "corrected_decimal_age": -0.2683093771389459, + "chronological_calendar_age": "4 weeks", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 26, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 30.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 4.1410508219073225, + "corrected_centile": 100.0, + "corrected_centile_band": "This head circumference measurement is above the normal range", + "chronological_sds": -5.02449091950095, + "chronological_centile": 0.0, + "chronological_centile_band": "This head circumference measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.07665982203969883, + "y": 30.5, + "b": null, + "centile": 0.0, + "sds": -5.02449091950095, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2683093771389459, + "y": 30.5, + "b": null, + "centile": 100.0, + "sds": 4.1410508219073225, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "26 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.07665982203969883, + "y": -5.02449091950095, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2683093771389459, + "y": 4.1410508219073225, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "26 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-16", + "chronological_decimal_age": 0.09582477754962354, + "corrected_decimal_age": -0.24914442162902123, + "chronological_calendar_age": "1 month and 5 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 27, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 31.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.7294620693077274, + "corrected_centile": 100.0, + "corrected_centile_band": "This head circumference measurement is above the normal range", + "chronological_sds": -4.955895378953365, + "chronological_centile": 0.0, + "chronological_centile_band": "This head circumference measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.09582477754962354, + "y": 31.0, + "b": null, + "centile": 0.0, + "sds": -4.955895378953365, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.24914442162902123, + "y": 31.0, + "b": null, + "centile": 100.0, + "sds": 3.7294620693077274, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "27 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.09582477754962354, + "y": -4.955895378953365, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.24914442162902123, + "y": 3.7294620693077274, + "b": null, + "centile": 100.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "27 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-23", + "chronological_decimal_age": 0.11498973305954825, + "corrected_decimal_age": -0.2299794661190965, + "chronological_calendar_age": "1 month, 1 week and 5 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 28, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 31.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 3.245534804059691, + "corrected_centile": 99.9, + "corrected_centile_band": "This head circumference measurement is above the normal range", + "chronological_sds": -5.020596625384338, + "chronological_centile": 0.0, + "chronological_centile_band": "This head circumference measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.11498973305954825, + "y": 31.3, + "b": null, + "centile": 0.0, + "sds": -5.020596625384338, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 1 week and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2299794661190965, + "y": 31.3, + "b": null, + "centile": 99.9, + "sds": 3.245534804059691, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "28 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.11498973305954825, + "y": -5.020596625384338, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 1 week and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2299794661190965, + "y": 3.245534804059691, + "b": null, + "centile": 99.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "28 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-05-30", + "chronological_decimal_age": 0.13415468856947296, + "corrected_decimal_age": -0.2108145106091718, + "chronological_calendar_age": "1 month, 2 weeks and 5 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 29, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 31.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.8850949808144857, + "corrected_centile": 99.8, + "corrected_centile_band": "This head circumference measurement is above the normal range", + "chronological_sds": -4.972417835368453, + "chronological_centile": 0.0, + "chronological_centile_band": "This head circumference measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.13415468856947296, + "y": 31.7, + "b": null, + "centile": 0.0, + "sds": -4.972417835368453, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 2 weeks and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2108145106091718, + "y": 31.7, + "b": null, + "centile": 99.8, + "sds": 2.8850949808144857, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "29 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is above the normal range", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.13415468856947296, + "y": -4.972417835368453, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 2 weeks and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.2108145106091718, + "y": 2.8850949808144857, + "b": null, + "centile": 99.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "29 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is above the normal range", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-06", + "chronological_decimal_age": 0.15331964407939766, + "corrected_decimal_age": -0.19164955509924708, + "chronological_calendar_age": "1 month, 3 weeks and 5 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 30, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 32.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.5105769974019165, + "corrected_centile": 99.4, + "corrected_centile_band": "This head circumference measurement is on or near the 99.6th centile.", + "chronological_sds": -4.987855574354214, + "chronological_centile": 0.0, + "chronological_centile_band": "This head circumference measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.15331964407939766, + "y": 32.0, + "b": null, + "centile": 0.0, + "sds": -4.987855574354214, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 3 weeks and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.19164955509924708, + "y": 32.0, + "b": null, + "centile": 99.4, + "sds": 2.5105769974019165, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "30 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 99.6th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.15331964407939766, + "y": -4.987855574354214, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 3 weeks and 5 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.19164955509924708, + "y": 2.5105769974019165, + "b": null, + "centile": 99.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "30 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 99.6th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-13", + "chronological_decimal_age": 0.17248459958932238, + "corrected_decimal_age": -0.17248459958932238, + "chronological_calendar_age": "2 months and 2 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 31, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 32.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.1764813577887088, + "corrected_centile": 98.5, + "corrected_centile_band": "This head circumference measurement is between the 98th and 99.6th centiles.", + "chronological_sds": -4.983974556739063, + "chronological_centile": 0.0, + "chronological_centile_band": "This head circumference measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.17248459958932238, + "y": 32.3, + "b": null, + "centile": 0.0, + "sds": -4.983974556739063, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.17248459958932238, + "y": 32.3, + "b": null, + "centile": 98.5, + "sds": 2.1764813577887088, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "31 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 98th and 99.6th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.17248459958932238, + "y": -4.983974556739063, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.17248459958932238, + "y": 2.1764813577887088, + "b": null, + "centile": 98.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "31 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 98th and 99.6th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-20", + "chronological_decimal_age": 0.19164955509924708, + "corrected_decimal_age": -0.15331964407939766, + "chronological_calendar_age": "2 months, 1 week and 2 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 32, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 32.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.8829818790396426, + "corrected_centile": 97.0, + "corrected_centile_band": "This head circumference measurement is on or near the 98th centile.", + "chronological_sds": -4.9686624746986805, + "chronological_centile": 0.0, + "chronological_centile_band": "This head circumference measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.19164955509924708, + "y": 32.6, + "b": null, + "centile": 0.0, + "sds": -4.9686624746986805, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 1 week and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.15331964407939766, + "y": 32.6, + "b": null, + "centile": 97.0, + "sds": 1.8829818790396426, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "32 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 98th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.19164955509924708, + "y": -4.9686624746986805, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 1 week and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.15331964407939766, + "y": 1.8829818790396426, + "b": null, + "centile": 97.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "32 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 98th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-27", + "chronological_decimal_age": 0.2108145106091718, + "corrected_decimal_age": -0.13415468856947296, + "chronological_calendar_age": "2 months, 2 weeks and 2 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 33, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 32.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.5576174376496619, + "corrected_centile": 94.0, + "corrected_centile_band": "This head circumference measurement is between the 91st and 98th centiles.", + "chronological_sds": -5.020389518068269, + "chronological_centile": 0.0, + "chronological_centile_band": "This head circumference measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.2108145106091718, + "y": 32.8, + "b": null, + "centile": 0.0, + "sds": -5.020389518068269, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 2 weeks and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.13415468856947296, + "y": 32.8, + "b": null, + "centile": 94.0, + "sds": 1.5576174376496619, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "33 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.2108145106091718, + "y": -5.020389518068269, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 2 weeks and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.13415468856947296, + "y": 1.5576174376496619, + "b": null, + "centile": 94.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "33 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 91st and 98th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-07-04", + "chronological_decimal_age": 0.2299794661190965, + "corrected_decimal_age": -0.11498973305954825, + "chronological_calendar_age": "2 months, 3 weeks and 2 days", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 34, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 33.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.333717183931485, + "corrected_centile": 90.9, + "corrected_centile_band": "This head circumference measurement is on or near the 91st centile.", + "chronological_sds": -4.980611781613565, + "chronological_centile": 0.0, + "chronological_centile_band": "This head circumference measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.2299794661190965, + "y": 33.1, + "b": null, + "centile": 0.0, + "sds": -4.980611781613565, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 3 weeks and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.11498973305954825, + "y": 33.1, + "b": null, + "centile": 90.9, + "sds": 1.333717183931485, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "34 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 91st centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.2299794661190965, + "y": -4.980611781613565, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 months, 3 weeks and 2 days", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.11498973305954825, + "y": 1.333717183931485, + "b": null, + "centile": 90.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "34 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 91st centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-07-11", + "chronological_decimal_age": 0.24914442162902123, + "corrected_decimal_age": -0.09582477754962354, + "chronological_calendar_age": "3 months", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 35, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 33.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.0690320845660555, + "corrected_centile": 85.7, + "corrected_centile_band": "This head circumference measurement is between the 75th and 91st centiles.", + "chronological_sds": -5.013056833285605, + "chronological_centile": 0.0, + "chronological_centile_band": "This head circumference measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.24914442162902123, + "y": 33.3, + "b": null, + "centile": 0.0, + "sds": -5.013056833285605, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.09582477754962354, + "y": 33.3, + "b": null, + "centile": 85.7, + "sds": 1.0690320845660555, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "35 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.24914442162902123, + "y": -5.013056833285605, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.09582477754962354, + "y": 1.0690320845660555, + "b": null, + "centile": 85.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "35 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-07-18", + "chronological_decimal_age": 0.2683093771389459, + "corrected_decimal_age": -0.07665982203969883, + "chronological_calendar_age": "3 months and 1 week", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 36, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 33.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.9130564244458975, + "corrected_centile": 81.9, + "corrected_centile_band": "This head circumference measurement is between the 75th and 91st centiles.", + "chronological_sds": -4.949974976623921, + "chronological_centile": 0.0, + "chronological_centile_band": "This head circumference measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.2683093771389459, + "y": 33.6, + "b": null, + "centile": 0.0, + "sds": -4.949974976623921, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months and 1 week", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.07665982203969883, + "y": 33.6, + "b": null, + "centile": 81.9, + "sds": 0.9130564244458975, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "36 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.2683093771389459, + "y": -4.949974976623921, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months and 1 week", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.07665982203969883, + "y": 0.9130564244458975, + "b": null, + "centile": 81.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "36 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 22, + "gestation_days": 0, + "estimated_date_delivery": "1759-08-15", + "estimated_date_delivery_string": "Wed 15 August, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-07-25", + "chronological_decimal_age": 0.2874743326488706, + "corrected_decimal_age": -0.057494866529774126, + "chronological_calendar_age": "3 months and 2 weeks", + "corrected_calendar_age": null, + "corrected_gestational_age": { + "corrected_gestation_weeks": 37, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_corrected_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "clinician_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts.", + "lay_chronological_decimal_age_comment": "Your child has been born below the threshold of the charts." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": "The due date is after the observation date - a calendar age cannot be calculated." + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 33.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.7112060016347265, + "corrected_centile": 76.2, + "corrected_centile_band": "This head circumference measurement is on or near the 75th centile.", + "chronological_sds": -4.964175586922364, + "chronological_centile": 0.0, + "chronological_centile_band": "This head circumference measurement is below the normal range", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.2874743326488706, + "y": 33.8, + "b": null, + "centile": 0.0, + "sds": -4.964175586922364, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months and 2 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.057494866529774126, + "y": 33.8, + "b": null, + "centile": 76.2, + "sds": 0.7112060016347265, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "37 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 75th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.2874743326488706, + "y": -4.964175586922364, + "b": null, + "centile": 0.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months and 2 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is below the normal range", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": -0.057494866529774126, + "y": 0.7112060016347265, + "b": null, + "centile": 76.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": null, + "corrected_gestational_age": "37 + 0 weeks", + "lay_comment": "Your child has been born below the threshold of the charts.", + "clinician_comment": "Your child has been born below the threshold of the charts.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 75th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } +] \ No newline at end of file diff --git a/src/testParameters/measurements/sdsTenYearGirlData.ts b/src/testParameters/measurements/sdsTenYearGirlData.ts new file mode 100644 index 0000000..4b65d9c --- /dev/null +++ b/src/testParameters/measurements/sdsTenYearGirlData.ts @@ -0,0 +1,9228 @@ +import { ClientMeasurementObject } from "../../interfaces/ClientMeasurementObject" + +export const sdsTenYearGirlData:ClientMeasurementObject ={ + ofc: [ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-04-10", + "chronological_decimal_age": 1.998631074606434, + "corrected_decimal_age": 1.7932922655715264, + "chronological_calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_calendar_age": "1 year, 9 months, 2 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 45.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.6606734869270593, + "corrected_centile": 25.4, + "corrected_centile_band": "This head circumference measurement is on or near the 25th centile.", + "chronological_sds": -0.9173580833735476, + "chronological_centile": 17.9, + "chronological_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": 45.9, + "b": null, + "centile": 17.9, + "sds": -0.9173580833735476, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.7932922655715264, + "y": 45.9, + "b": null, + "centile": 25.4, + "sds": -0.6606734869270593, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 9 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": -0.9173580833735476, + "b": null, + "centile": 17.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.7932922655715264, + "y": -0.6606734869270593, + "b": null, + "centile": 25.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 9 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-12-09", + "chronological_decimal_age": 2.6639288158795345, + "corrected_decimal_age": 2.458590006844627, + "chronological_calendar_age": "2 years, 7 months and 4 weeks", + "corrected_calendar_age": "2 years, 5 months and 2 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 46.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.838962929795662, + "corrected_centile": 20.1, + "corrected_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "chronological_sds": -1.0222150798546479, + "chronological_centile": 15.3, + "chronological_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.6639288158795345, + "y": 46.7, + "b": null, + "centile": 15.3, + "sds": -1.0222150798546479, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months and 4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.458590006844627, + "y": 46.7, + "b": null, + "centile": 20.1, + "sds": -0.838962929795662, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 5 months and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.6639288158795345, + "y": -1.0222150798546479, + "b": null, + "centile": 15.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months and 4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.458590006844627, + "y": -0.838962929795662, + "b": null, + "centile": 20.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 5 months and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-08-09", + "chronological_decimal_age": 3.3292265571526354, + "corrected_decimal_age": 3.1238877481177276, + "chronological_calendar_age": "3 years, 3 months, 4 weeks and 1 day", + "corrected_calendar_age": "3 years, 1 month, 2 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 47.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -1.0125361235742294, + "corrected_centile": 15.6, + "corrected_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "chronological_sds": -1.1436550600914872, + "chronological_centile": 12.6, + "chronological_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.3292265571526354, + "y": 47.2, + "b": null, + "centile": 12.6, + "sds": -1.1436550600914872, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 4 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.1238877481177276, + "y": 47.2, + "b": null, + "centile": 15.6, + "sds": -1.0125361235742294, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 1 month, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.3292265571526354, + "y": -1.1436550600914872, + "b": null, + "centile": 12.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 4 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.1238877481177276, + "y": -1.0125361235742294, + "b": null, + "centile": 15.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 1 month, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-04-09", + "chronological_decimal_age": 3.994524298425736, + "corrected_decimal_age": 3.789185489390828, + "chronological_calendar_age": "3 years, 11 months, 4 weeks and 1 day", + "corrected_calendar_age": "3 years, 9 months, 2 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 48.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.7644641426213532, + "corrected_centile": 22.2, + "corrected_centile_band": "This head circumference measurement is on or near the 25th centile.", + "chronological_sds": -0.8652000064107823, + "chronological_centile": 19.3, + "chronological_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.994524298425736, + "y": 48.1, + "b": null, + "centile": 19.3, + "sds": -0.8652000064107823, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 4 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.789185489390828, + "y": 48.1, + "b": null, + "centile": 22.2, + "sds": -0.7644641426213532, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 9 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.994524298425736, + "y": -0.8652000064107823, + "b": null, + "centile": 19.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 4 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.789185489390828, + "y": -0.7644641426213532, + "b": null, + "centile": 22.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 9 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-12-08", + "chronological_decimal_age": 4.659822039698836, + "corrected_decimal_age": 4.454483230663929, + "chronological_calendar_age": "4 years, 7 months, 3 weeks and 6 days", + "corrected_calendar_age": "4 years, 5 months, 1 week and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 50.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.9041175205709278, + "corrected_centile": 18.3, + "corrected_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "chronological_sds": -1.0028268836489995, + "chronological_centile": 15.8, + "chronological_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.659822039698836, + "y": 50.3, + "b": null, + "centile": 15.8, + "sds": -1.0028268836489995, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 7 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.454483230663929, + "y": 50.3, + "b": null, + "centile": 18.3, + "sds": -0.9041175205709278, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 5 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.659822039698836, + "y": -1.0028268836489995, + "b": null, + "centile": 15.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 7 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.454483230663929, + "y": -0.9041175205709278, + "b": null, + "centile": 18.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 5 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-08-07", + "chronological_decimal_age": 5.325119780971937, + "corrected_decimal_age": 5.119780971937029, + "chronological_calendar_age": "5 years, 3 months, 3 weeks and 6 days", + "corrected_calendar_age": "5 years, 1 month, 1 week and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 50.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.7908900351062957, + "corrected_centile": 21.5, + "corrected_centile_band": "This head circumference measurement is on or near the 25th centile.", + "chronological_sds": -0.877544693068198, + "chronological_centile": 19.0, + "chronological_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.325119780971937, + "y": 50.8, + "b": null, + "centile": 19.0, + "sds": -0.877544693068198, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 3 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.119780971937029, + "y": 50.8, + "b": null, + "centile": 21.5, + "sds": -0.7908900351062957, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 1 month, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.325119780971937, + "y": -0.877544693068198, + "b": null, + "centile": 19.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 3 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.119780971937029, + "y": -0.7908900351062957, + "b": null, + "centile": 21.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 1 month, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-04-07", + "chronological_decimal_age": 5.990417522245037, + "corrected_decimal_age": 5.7850787132101305, + "chronological_calendar_age": "5 years, 11 months, 3 weeks and 6 days", + "corrected_calendar_age": "5 years, 9 months, 1 week and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 51.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.8106743745831153, + "corrected_centile": 20.9, + "corrected_centile_band": "This head circumference measurement is on or near the 25th centile.", + "chronological_sds": -0.8896540324409288, + "chronological_centile": 18.7, + "chronological_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.990417522245037, + "y": 51.1, + "b": null, + "centile": 18.7, + "sds": -0.8896540324409288, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 11 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.7850787132101305, + "y": 51.1, + "b": null, + "centile": 20.9, + "sds": -0.8106743745831153, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 9 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.990417522245037, + "y": -0.8896540324409288, + "b": null, + "centile": 18.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 11 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.7850787132101305, + "y": -0.8106743745831153, + "b": null, + "centile": 20.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 9 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-12-06", + "chronological_decimal_age": 6.655715263518139, + "corrected_decimal_age": 6.450376454483231, + "chronological_calendar_age": "6 years, 7 months, 3 weeks and 4 days", + "corrected_calendar_age": "6 years, 5 months, 1 week and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 51.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.7243100211684294, + "corrected_centile": 23.4, + "corrected_centile_band": "This head circumference measurement is on or near the 25th centile.", + "chronological_sds": -0.7962926767891436, + "chronological_centile": 21.3, + "chronological_centile_band": "This head circumference measurement is on or near the 25th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.655715263518139, + "y": 51.5, + "b": null, + "centile": 21.3, + "sds": -0.7962926767891436, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 7 months, 3 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.450376454483231, + "y": 51.5, + "b": null, + "centile": 23.4, + "sds": -0.7243100211684294, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 5 months, 1 week and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.655715263518139, + "y": -0.7962926767891436, + "b": null, + "centile": 21.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 7 months, 3 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.450376454483231, + "y": -0.7243100211684294, + "b": null, + "centile": 23.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 5 months, 1 week and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-08-06", + "chronological_decimal_age": 7.321013004791239, + "corrected_decimal_age": 7.115674195756331, + "chronological_calendar_age": "7 years, 3 months, 3 weeks and 5 days", + "corrected_calendar_age": "7 years, 1 month, 1 week and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 51.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.8706297698964885, + "corrected_centile": 19.2, + "corrected_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "chronological_sds": -0.9382312320349167, + "chronological_centile": 17.4, + "chronological_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.321013004791239, + "y": 51.6, + "b": null, + "centile": 17.4, + "sds": -0.9382312320349167, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 3 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.115674195756331, + "y": 51.6, + "b": null, + "centile": 19.2, + "sds": -0.8706297698964885, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 1 month, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.321013004791239, + "y": -0.9382312320349167, + "b": null, + "centile": 17.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 3 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.115674195756331, + "y": -0.8706297698964885, + "b": null, + "centile": 19.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 1 month, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-04-06", + "chronological_decimal_age": 7.98631074606434, + "corrected_decimal_age": 7.780971937029432, + "chronological_calendar_age": "7 years, 11 months, 3 weeks and 5 days", + "corrected_calendar_age": "7 years, 9 months, 1 week and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 52.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.7567567333384947, + "corrected_centile": 22.5, + "corrected_centile_band": "This head circumference measurement is on or near the 25th centile.", + "chronological_sds": -0.8214075042652007, + "chronological_centile": 20.6, + "chronological_centile_band": "This head circumference measurement is on or near the 25th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.98631074606434, + "y": 52.0, + "b": null, + "centile": 20.6, + "sds": -0.8214075042652007, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 11 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.780971937029432, + "y": 52.0, + "b": null, + "centile": 22.5, + "sds": -0.7567567333384947, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 9 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.98631074606434, + "y": -0.8214075042652007, + "b": null, + "centile": 20.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 11 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.780971937029432, + "y": -0.7567567333384947, + "b": null, + "centile": 22.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 9 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-12-05", + "chronological_decimal_age": 8.65160848733744, + "corrected_decimal_age": 8.446269678302533, + "chronological_calendar_age": "8 years, 7 months, 3 weeks and 3 days", + "corrected_calendar_age": "8 years, 5 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 52.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.7982736169640475, + "corrected_centile": 21.2, + "corrected_centile_band": "This head circumference measurement is on or near the 25th centile.", + "chronological_sds": -0.859124235209539, + "chronological_centile": 19.5, + "chronological_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 8.65160848733744, + "y": 52.2, + "b": null, + "centile": 19.5, + "sds": -0.859124235209539, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 7 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.446269678302533, + "y": 52.2, + "b": null, + "centile": 21.2, + "sds": -0.7982736169640475, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 5 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 8.65160848733744, + "y": -0.859124235209539, + "b": null, + "centile": 19.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 7 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.446269678302533, + "y": -0.7982736169640475, + "b": null, + "centile": 21.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 5 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 25th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1768-08-04", + "chronological_decimal_age": 9.316906228610542, + "corrected_decimal_age": 9.111567419575634, + "chronological_calendar_age": "9 years, 3 months, 3 weeks and 3 days", + "corrected_calendar_age": "9 years, 1 month, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 52.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.989647468395642, + "corrected_centile": 16.1, + "corrected_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "chronological_sds": -1.0452051162391574, + "chronological_centile": 14.8, + "chronological_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 9.316906228610542, + "y": 52.2, + "b": null, + "centile": 14.8, + "sds": -1.0452051162391574, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 3 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.111567419575634, + "y": 52.2, + "b": null, + "centile": 16.1, + "sds": -0.989647468395642, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 1 month, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 9.316906228610542, + "y": -1.0452051162391574, + "b": null, + "centile": 14.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 3 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.111567419575634, + "y": -0.989647468395642, + "b": null, + "centile": 16.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 1 month, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1769-04-04", + "chronological_decimal_age": 9.982203969883642, + "corrected_decimal_age": 9.776865160848734, + "chronological_calendar_age": "9 years, 11 months, 3 weeks and 3 days", + "corrected_calendar_age": "9 years, 9 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 52.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.92674674759222, + "corrected_centile": 17.7, + "corrected_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "chronological_sds": -0.9792392021168262, + "chronological_centile": 16.4, + "chronological_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 9.982203969883642, + "y": 52.5, + "b": null, + "centile": 16.4, + "sds": -0.9792392021168262, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 11 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.776865160848734, + "y": 52.5, + "b": null, + "centile": 17.7, + "sds": -0.92674674759222, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 9 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 9.982203969883642, + "y": -0.9792392021168262, + "b": null, + "centile": 16.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 11 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.776865160848734, + "y": -0.92674674759222, + "b": null, + "centile": 17.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 9 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1769-12-03", + "chronological_decimal_age": 10.647501711156742, + "corrected_decimal_age": 10.442162902121835, + "chronological_calendar_age": "10 years, 7 months, 3 weeks and 1 day", + "corrected_calendar_age": "10 years, 5 months, 1 week and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 52.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.9334182958231074, + "corrected_centile": 17.5, + "corrected_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "chronological_sds": -0.9820226898467227, + "chronological_centile": 16.3, + "chronological_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 10.647501711156742, + "y": 52.7, + "b": null, + "centile": 16.3, + "sds": -0.9820226898467227, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 7 months, 3 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.442162902121835, + "y": 52.7, + "b": null, + "centile": 17.5, + "sds": -0.9334182958231074, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 5 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 10.647501711156742, + "y": -0.9820226898467227, + "b": null, + "centile": 16.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 7 months, 3 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.442162902121835, + "y": -0.9334182958231074, + "b": null, + "centile": 17.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 5 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1770-08-03", + "chronological_decimal_age": 11.312799452429843, + "corrected_decimal_age": 11.107460643394935, + "chronological_calendar_age": "11 years, 3 months, 3 weeks and 2 days", + "corrected_calendar_age": "11 years, 1 month, 1 week and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 52.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.9301353034314217, + "corrected_centile": 17.6, + "corrected_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "chronological_sds": -0.9750779130323418, + "chronological_centile": 16.5, + "chronological_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 11.312799452429843, + "y": 52.9, + "b": null, + "centile": 16.5, + "sds": -0.9750779130323418, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 3 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.107460643394935, + "y": 52.9, + "b": null, + "centile": 17.6, + "sds": -0.9301353034314217, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 1 month, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 11.312799452429843, + "y": -0.9750779130323418, + "b": null, + "centile": 16.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 3 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.107460643394935, + "y": -0.9301353034314217, + "b": null, + "centile": 17.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 1 month, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1771-04-03", + "chronological_decimal_age": 11.978097193702943, + "corrected_decimal_age": 11.772758384668036, + "chronological_calendar_age": "11 years, 11 months, 3 weeks and 2 days", + "corrected_calendar_age": "11 years, 9 months, 1 week and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 53.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.8409357221472579, + "corrected_centile": 20.0, + "corrected_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "chronological_sds": -0.8838316163023854, + "chronological_centile": 18.8, + "chronological_centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 11.978097193702943, + "y": 53.2, + "b": null, + "centile": 18.8, + "sds": -0.8838316163023854, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 11 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.772758384668036, + "y": 53.2, + "b": null, + "centile": 20.0, + "sds": -0.8409357221472579, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 9 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 11.978097193702943, + "y": -0.8838316163023854, + "b": null, + "centile": 18.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 11 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.772758384668036, + "y": -0.8409357221472579, + "b": null, + "centile": 20.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 9 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This head circumference measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } + ], + bmi: [ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-04-10", + "chronological_decimal_age": 1.998631074606434, + "corrected_decimal_age": 1.7932922655715264, + "chronological_calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_calendar_age": "1 year, 9 months, 2 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 17.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.1123988921959977, + "corrected_centile": 86.7, + "corrected_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "chronological_sds": 1.183658019065792, + "chronological_centile": 88.2, + "chronological_centile_band": "This body mass index measurement is on or near the 91st centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 110.31381620042463, + "chronological_percentage_median_bmi": 110.31381620042463 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": 17.1, + "b": null, + "centile": 88.2, + "sds": 1.183658019065792, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 91st centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.7932922655715264, + "y": 17.1, + "b": null, + "centile": 86.7, + "sds": 1.1123988921959977, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 9 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": 1.183658019065792, + "b": null, + "centile": 88.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 91st centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.7932922655715264, + "y": 1.1123988921959977, + "b": null, + "centile": 86.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 9 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-12-09", + "chronological_decimal_age": 2.6639288158795345, + "corrected_decimal_age": 2.458590006844627, + "chronological_calendar_age": "2 years, 7 months and 4 weeks", + "corrected_calendar_age": "2 years, 5 months and 2 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 16.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.9704822832610793, + "corrected_centile": 83.4, + "corrected_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "chronological_sds": 1.0121835124180474, + "chronological_centile": 84.4, + "chronological_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 108.75301574911276, + "chronological_percentage_median_bmi": 108.75301574911276 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.6639288158795345, + "y": 16.9, + "b": null, + "centile": 84.4, + "sds": 1.0121835124180474, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months and 4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.458590006844627, + "y": 16.9, + "b": null, + "centile": 83.4, + "sds": 0.9704822832610793, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 5 months and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.6639288158795345, + "y": 1.0121835124180474, + "b": null, + "centile": 84.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months and 4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.458590006844627, + "y": 0.9704822832610793, + "b": null, + "centile": 83.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 5 months and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-08-09", + "chronological_decimal_age": 3.3292265571526354, + "corrected_decimal_age": 3.1238877481177276, + "chronological_calendar_age": "3 years, 3 months, 4 weeks and 1 day", + "corrected_calendar_age": "3 years, 1 month, 2 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 16.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.008896694147956, + "corrected_centile": 84.3, + "corrected_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "chronological_sds": 1.0208212880379761, + "chronological_centile": 84.6, + "chronological_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 109.29145040299805, + "chronological_percentage_median_bmi": 109.29145040299805 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.3292265571526354, + "y": 16.8, + "b": null, + "centile": 84.6, + "sds": 1.0208212880379761, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 4 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.1238877481177276, + "y": 16.8, + "b": null, + "centile": 84.3, + "sds": 1.008896694147956, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 1 month, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.3292265571526354, + "y": 1.0208212880379761, + "b": null, + "centile": 84.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 4 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.1238877481177276, + "y": 1.008896694147956, + "b": null, + "centile": 84.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 1 month, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-04-09", + "chronological_decimal_age": 3.994524298425736, + "corrected_decimal_age": 3.789185489390828, + "chronological_calendar_age": "3 years, 11 months, 4 weeks and 1 day", + "corrected_calendar_age": "3 years, 9 months, 2 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 16.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.025398032962995, + "corrected_centile": 84.7, + "corrected_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "chronological_sds": 1.0205765436767262, + "chronological_centile": 84.6, + "chronological_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 109.96621273605808, + "chronological_percentage_median_bmi": 109.96621273605808 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.994524298425736, + "y": 16.8, + "b": null, + "centile": 84.6, + "sds": 1.0205765436767262, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 4 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.789185489390828, + "y": 16.8, + "b": null, + "centile": 84.7, + "sds": 1.025398032962995, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 9 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.994524298425736, + "y": 1.0205765436767262, + "b": null, + "centile": 84.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 4 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.789185489390828, + "y": 1.025398032962995, + "b": null, + "centile": 84.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 9 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-12-08", + "chronological_decimal_age": 4.659822039698836, + "corrected_decimal_age": 4.454483230663929, + "chronological_calendar_age": "4 years, 7 months, 3 weeks and 6 days", + "corrected_calendar_age": "4 years, 5 months, 1 week and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 17.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.9911141119568666, + "corrected_centile": 83.9, + "corrected_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "chronological_sds": 0.999924967911026, + "chronological_centile": 84.1, + "chronological_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 109.85707608430761, + "chronological_percentage_median_bmi": 109.85707608430761 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.659822039698836, + "y": 17.1, + "b": null, + "centile": 84.1, + "sds": 0.999924967911026, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 7 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.454483230663929, + "y": 17.1, + "b": null, + "centile": 83.9, + "sds": 0.9911141119568666, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 5 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.659822039698836, + "y": 0.999924967911026, + "b": null, + "centile": 84.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 7 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.454483230663929, + "y": 0.9911141119568666, + "b": null, + "centile": 83.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 5 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-08-07", + "chronological_decimal_age": 5.325119780971937, + "corrected_decimal_age": 5.119780971937029, + "chronological_calendar_age": "5 years, 3 months, 3 weeks and 6 days", + "corrected_calendar_age": "5 years, 1 month, 1 week and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 17.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.000678135184915, + "corrected_centile": 84.2, + "corrected_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "chronological_sds": 0.9914884794549039, + "chronological_centile": 83.9, + "chronological_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 110.5239738031747, + "chronological_percentage_median_bmi": 110.5239738031747 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.325119780971937, + "y": 17.1, + "b": null, + "centile": 83.9, + "sds": 0.9914884794549039, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 3 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.119780971937029, + "y": 17.1, + "b": null, + "centile": 84.2, + "sds": 1.000678135184915, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 1 month, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.325119780971937, + "y": 0.9914884794549039, + "b": null, + "centile": 83.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 3 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.119780971937029, + "y": 1.000678135184915, + "b": null, + "centile": 84.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 1 month, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-04-07", + "chronological_decimal_age": 5.990417522245037, + "corrected_decimal_age": 5.7850787132101305, + "chronological_calendar_age": "5 years, 11 months, 3 weeks and 6 days", + "corrected_calendar_age": "5 years, 9 months, 1 week and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 17.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.003550963630028, + "corrected_centile": 84.2, + "corrected_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "chronological_sds": 0.9775395799851048, + "chronological_centile": 83.6, + "chronological_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 111.20503826464048, + "chronological_percentage_median_bmi": 111.20503826464048 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.990417522245037, + "y": 17.2, + "b": null, + "centile": 83.6, + "sds": 0.9775395799851048, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 11 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.7850787132101305, + "y": 17.2, + "b": null, + "centile": 84.2, + "sds": 1.003550963630028, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 9 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.990417522245037, + "y": 0.9775395799851048, + "b": null, + "centile": 83.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 11 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.7850787132101305, + "y": 1.003550963630028, + "b": null, + "centile": 84.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 9 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-12-06", + "chronological_decimal_age": 6.655715263518139, + "corrected_decimal_age": 6.450376454483231, + "chronological_calendar_age": "6 years, 7 months, 3 weeks and 4 days", + "corrected_calendar_age": "6 years, 5 months, 1 week and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 17.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.0505715922936956, + "corrected_centile": 85.3, + "corrected_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "chronological_sds": 1.0113979111298024, + "chronological_centile": 84.4, + "chronological_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 112.53811018509809, + "chronological_percentage_median_bmi": 112.53811018509809 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.655715263518139, + "y": 17.5, + "b": null, + "centile": 84.4, + "sds": 1.0113979111298024, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 7 months, 3 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.450376454483231, + "y": 17.5, + "b": null, + "centile": 85.3, + "sds": 1.0505715922936956, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 5 months, 1 week and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.655715263518139, + "y": 1.0113979111298024, + "b": null, + "centile": 84.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 7 months, 3 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.450376454483231, + "y": 1.0505715922936956, + "b": null, + "centile": 85.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 5 months, 1 week and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-08-06", + "chronological_decimal_age": 7.321013004791239, + "corrected_decimal_age": 7.115674195756331, + "chronological_calendar_age": "7 years, 3 months, 3 weeks and 5 days", + "corrected_calendar_age": "7 years, 1 month, 1 week and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 17.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.0526420829794634, + "corrected_centile": 85.4, + "corrected_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "chronological_sds": 1.0086580568825811, + "chronological_centile": 84.3, + "chronological_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 113.3121667159945, + "chronological_percentage_median_bmi": 113.3121667159945 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.321013004791239, + "y": 17.8, + "b": null, + "centile": 84.3, + "sds": 1.0086580568825811, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 3 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.115674195756331, + "y": 17.8, + "b": null, + "centile": 85.4, + "sds": 1.0526420829794634, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 1 month, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.321013004791239, + "y": 1.0086580568825811, + "b": null, + "centile": 84.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 3 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.115674195756331, + "y": 1.0526420829794634, + "b": null, + "centile": 85.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 1 month, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-04-06", + "chronological_decimal_age": 7.98631074606434, + "corrected_decimal_age": 7.780971937029432, + "chronological_calendar_age": "7 years, 11 months, 3 weeks and 5 days", + "corrected_calendar_age": "7 years, 9 months, 1 week and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 18.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.0744245970620139, + "corrected_centile": 85.9, + "corrected_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "chronological_sds": 1.0284836903232808, + "chronological_centile": 84.8, + "chronological_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 114.35238796364995, + "chronological_percentage_median_bmi": 114.35238796364995 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.98631074606434, + "y": 18.2, + "b": null, + "centile": 84.8, + "sds": 1.0284836903232808, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 11 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.780971937029432, + "y": 18.2, + "b": null, + "centile": 85.9, + "sds": 1.0744245970620139, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 9 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.98631074606434, + "y": 1.0284836903232808, + "b": null, + "centile": 84.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 11 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.780971937029432, + "y": 1.0744245970620139, + "b": null, + "centile": 85.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 9 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-12-05", + "chronological_decimal_age": 8.65160848733744, + "corrected_decimal_age": 8.446269678302533, + "chronological_calendar_age": "8 years, 7 months, 3 weeks and 3 days", + "corrected_calendar_age": "8 years, 5 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 18.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.0426312248919123, + "corrected_centile": 85.1, + "corrected_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "chronological_sds": 0.9959222340768318, + "chronological_centile": 84.0, + "chronological_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 114.4663681688926, + "chronological_percentage_median_bmi": 114.4663681688926 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 8.65160848733744, + "y": 18.5, + "b": null, + "centile": 84.0, + "sds": 0.9959222340768318, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 7 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.446269678302533, + "y": 18.5, + "b": null, + "centile": 85.1, + "sds": 1.0426312248919123, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 5 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 8.65160848733744, + "y": 0.9959222340768318, + "b": null, + "centile": 84.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 7 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.446269678302533, + "y": 1.0426312248919123, + "b": null, + "centile": 85.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 5 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1768-08-04", + "chronological_decimal_age": 9.316906228610542, + "corrected_decimal_age": 9.111567419575634, + "chronological_calendar_age": "9 years, 3 months, 3 weeks and 3 days", + "corrected_calendar_age": "9 years, 1 month, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 18.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.0381386693575254, + "corrected_centile": 85.0, + "corrected_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "chronological_sds": 0.9904479647700306, + "chronological_centile": 83.9, + "chronological_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 114.89519013464304, + "chronological_percentage_median_bmi": 114.89519013464304 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 9.316906228610542, + "y": 18.9, + "b": null, + "centile": 83.9, + "sds": 0.9904479647700306, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 3 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.111567419575634, + "y": 18.9, + "b": null, + "centile": 85.0, + "sds": 1.0381386693575254, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 1 month, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 9.316906228610542, + "y": 0.9904479647700306, + "b": null, + "centile": 83.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 3 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.111567419575634, + "y": 1.0381386693575254, + "b": null, + "centile": 85.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 1 month, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1769-04-04", + "chronological_decimal_age": 9.982203969883642, + "corrected_decimal_age": 9.776865160848734, + "chronological_calendar_age": "9 years, 11 months, 3 weeks and 3 days", + "corrected_calendar_age": "9 years, 9 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 19.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.0574338757022783, + "corrected_centile": 85.5, + "corrected_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "chronological_sds": 1.0089654140561668, + "chronological_centile": 84.4, + "chronological_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 115.61986381286407, + "chronological_percentage_median_bmi": 115.61986381286407 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 9.982203969883642, + "y": 19.4, + "b": null, + "centile": 84.4, + "sds": 1.0089654140561668, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 11 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.776865160848734, + "y": 19.4, + "b": null, + "centile": 85.5, + "sds": 1.0574338757022783, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 9 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 9.982203969883642, + "y": 1.0089654140561668, + "b": null, + "centile": 84.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 11 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.776865160848734, + "y": 1.0574338757022783, + "b": null, + "centile": 85.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 9 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1769-12-03", + "chronological_decimal_age": 10.647501711156742, + "corrected_decimal_age": 10.442162902121835, + "chronological_calendar_age": "10 years, 7 months, 3 weeks and 1 day", + "corrected_calendar_age": "10 years, 5 months, 1 week and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 19.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.066210984728481, + "corrected_centile": 85.7, + "corrected_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "chronological_sds": 1.017351977599397, + "chronological_centile": 84.6, + "chronological_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 116.06418194889572, + "chronological_percentage_median_bmi": 116.06418194889572 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 10.647501711156742, + "y": 19.9, + "b": null, + "centile": 84.6, + "sds": 1.017351977599397, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 7 months, 3 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.442162902121835, + "y": 19.9, + "b": null, + "centile": 85.7, + "sds": 1.066210984728481, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 5 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 10.647501711156742, + "y": 1.017351977599397, + "b": null, + "centile": 84.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 7 months, 3 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.442162902121835, + "y": 1.066210984728481, + "b": null, + "centile": 85.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 5 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1770-08-03", + "chronological_decimal_age": 11.312799452429843, + "corrected_decimal_age": 11.107460643394935, + "chronological_calendar_age": "11 years, 3 months, 3 weeks and 2 days", + "corrected_calendar_age": "11 years, 1 month, 1 week and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 20.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.0675441480768613, + "corrected_centile": 85.7, + "corrected_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "chronological_sds": 1.0183674305666754, + "chronological_centile": 84.6, + "chronological_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 116.274190972733, + "chronological_percentage_median_bmi": 116.274190972733 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 11.312799452429843, + "y": 20.4, + "b": null, + "centile": 84.6, + "sds": 1.0183674305666754, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 3 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.107460643394935, + "y": 20.4, + "b": null, + "centile": 85.7, + "sds": 1.0675441480768613, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 1 month, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 11.312799452429843, + "y": 1.0183674305666754, + "b": null, + "centile": 84.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 3 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.107460643394935, + "y": 1.0675441480768613, + "b": null, + "centile": 85.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 1 month, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1771-04-03", + "chronological_decimal_age": 11.978097193702943, + "corrected_decimal_age": 11.772758384668036, + "chronological_calendar_age": "11 years, 11 months, 3 weeks and 2 days", + "corrected_calendar_age": "11 years, 9 months, 1 week and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 20.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.0337218457329465, + "corrected_centile": 84.9, + "corrected_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "chronological_sds": 0.9851462959575294, + "chronological_centile": 83.8, + "chronological_centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 115.75653827430243, + "chronological_percentage_median_bmi": 115.75653827430243 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 11.978097193702943, + "y": 20.8, + "b": null, + "centile": 83.8, + "sds": 0.9851462959575294, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 11 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.772758384668036, + "y": 20.8, + "b": null, + "centile": 84.9, + "sds": 1.0337218457329465, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 9 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 11.978097193702943, + "y": 0.9851462959575294, + "b": null, + "centile": 83.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 11 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.772758384668036, + "y": 1.0337218457329465, + "b": null, + "centile": 84.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 9 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 75th and 91st centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } + ], + weight: [ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-04-10", + "chronological_decimal_age": 1.998631074606434, + "corrected_decimal_age": 1.7932922655715264, + "chronological_calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_calendar_age": "1 year, 9 months, 2 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 11.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.5913087606604649, + "corrected_centile": 72.3, + "corrected_centile_band": "This weight measurement is on or near the 75th centile.", + "chronological_sds": 0.22514471223680127, + "chronological_centile": 58.9, + "chronological_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": 11.8, + "b": null, + "centile": 58.9, + "sds": 0.22514471223680127, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.7932922655715264, + "y": 11.8, + "b": null, + "centile": 72.3, + "sds": 0.5913087606604649, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 9 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 75th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": 0.22514471223680127, + "b": null, + "centile": 58.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.7932922655715264, + "y": 0.5913087606604649, + "b": null, + "centile": 72.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 9 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 75th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-12-09", + "chronological_decimal_age": 2.6639288158795345, + "corrected_decimal_age": 2.458590006844627, + "chronological_calendar_age": "2 years, 7 months and 4 weeks", + "corrected_calendar_age": "2 years, 5 months and 2 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 13.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.5961057469704507, + "corrected_centile": 72.4, + "corrected_centile_band": "This weight measurement is on or near the 75th centile.", + "chronological_sds": 0.30155614960126664, + "chronological_centile": 61.9, + "chronological_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.6639288158795345, + "y": 13.6, + "b": null, + "centile": 61.9, + "sds": 0.30155614960126664, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months and 4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.458590006844627, + "y": 13.6, + "b": null, + "centile": 72.4, + "sds": 0.5961057469704507, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 5 months and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 75th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.6639288158795345, + "y": 0.30155614960126664, + "b": null, + "centile": 61.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months and 4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.458590006844627, + "y": 0.5961057469704507, + "b": null, + "centile": 72.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 5 months and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 75th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-08-09", + "chronological_decimal_age": 3.3292265571526354, + "corrected_decimal_age": 3.1238877481177276, + "chronological_calendar_age": "3 years, 3 months, 4 weeks and 1 day", + "corrected_calendar_age": "3 years, 1 month, 2 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 15.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.5044251827963239, + "corrected_centile": 69.3, + "corrected_centile_band": "This weight measurement is on or near the 75th centile.", + "chronological_sds": 0.25773846341521167, + "chronological_centile": 60.2, + "chronological_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.3292265571526354, + "y": 15.1, + "b": null, + "centile": 60.2, + "sds": 0.25773846341521167, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 4 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.1238877481177276, + "y": 15.1, + "b": null, + "centile": 69.3, + "sds": 0.5044251827963239, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 1 month, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 75th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.3292265571526354, + "y": 0.25773846341521167, + "b": null, + "centile": 60.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 4 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.1238877481177276, + "y": 0.5044251827963239, + "b": null, + "centile": 69.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 1 month, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 75th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-04-09", + "chronological_decimal_age": 3.994524298425736, + "corrected_decimal_age": 3.789185489390828, + "chronological_calendar_age": "3 years, 11 months, 4 weeks and 1 day", + "corrected_calendar_age": "3 years, 9 months, 2 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 16.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.4453080187345196, + "corrected_centile": 67.2, + "corrected_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.23795834362592422, + "chronological_centile": 59.4, + "chronological_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.994524298425736, + "y": 16.6, + "b": null, + "centile": 59.4, + "sds": 0.23795834362592422, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 4 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.789185489390828, + "y": 16.6, + "b": null, + "centile": 67.2, + "sds": 0.4453080187345196, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 9 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.994524298425736, + "y": 0.23795834362592422, + "b": null, + "centile": 59.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 4 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.789185489390828, + "y": 0.4453080187345196, + "b": null, + "centile": 67.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 9 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-12-08", + "chronological_decimal_age": 4.659822039698836, + "corrected_decimal_age": 4.454483230663929, + "chronological_calendar_age": "4 years, 7 months, 3 weeks and 6 days", + "corrected_calendar_age": "4 years, 5 months, 1 week and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 18.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.5046748087753579, + "corrected_centile": 69.3, + "corrected_centile_band": "This weight measurement is on or near the 75th centile.", + "chronological_sds": 0.31002464314183753, + "chronological_centile": 62.2, + "chronological_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.659822039698836, + "y": 18.3, + "b": null, + "centile": 62.2, + "sds": 0.31002464314183753, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 7 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.454483230663929, + "y": 18.3, + "b": null, + "centile": 69.3, + "sds": 0.5046748087753579, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 5 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 75th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.659822039698836, + "y": 0.31002464314183753, + "b": null, + "centile": 62.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 7 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.454483230663929, + "y": 0.5046748087753579, + "b": null, + "centile": 69.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 5 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is on or near the 75th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-08-07", + "chronological_decimal_age": 5.325119780971937, + "corrected_decimal_age": 5.119780971937029, + "chronological_calendar_age": "5 years, 3 months, 3 weeks and 6 days", + "corrected_calendar_age": "5 years, 1 month, 1 week and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 19.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.4361326779933039, + "corrected_centile": 66.9, + "corrected_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.26259721169677086, + "chronological_centile": 60.4, + "chronological_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.325119780971937, + "y": 19.7, + "b": null, + "centile": 60.4, + "sds": 0.26259721169677086, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 3 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.119780971937029, + "y": 19.7, + "b": null, + "centile": 66.9, + "sds": 0.4361326779933039, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 1 month, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.325119780971937, + "y": 0.26259721169677086, + "b": null, + "centile": 60.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 3 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.119780971937029, + "y": 0.4361326779933039, + "b": null, + "centile": 66.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 1 month, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-04-07", + "chronological_decimal_age": 5.990417522245037, + "corrected_decimal_age": 5.7850787132101305, + "chronological_calendar_age": "5 years, 11 months, 3 weeks and 6 days", + "corrected_calendar_age": "5 years, 9 months, 1 week and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 21.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.43808507212510606, + "corrected_centile": 66.9, + "corrected_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.2774982671664074, + "chronological_centile": 60.9, + "chronological_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.990417522245037, + "y": 21.3, + "b": null, + "centile": 60.9, + "sds": 0.2774982671664074, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 11 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.7850787132101305, + "y": 21.3, + "b": null, + "centile": 66.9, + "sds": 0.43808507212510606, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 9 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.990417522245037, + "y": 0.2774982671664074, + "b": null, + "centile": 60.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 11 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.7850787132101305, + "y": 0.43808507212510606, + "b": null, + "centile": 66.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 9 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-12-06", + "chronological_decimal_age": 6.655715263518139, + "corrected_decimal_age": 6.450376454483231, + "chronological_calendar_age": "6 years, 7 months, 3 weeks and 4 days", + "corrected_calendar_age": "6 years, 5 months, 1 week and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 23.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.4354937076845908, + "corrected_centile": 66.8, + "corrected_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.2771856838647385, + "chronological_centile": 60.9, + "chronological_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.655715263518139, + "y": 23.0, + "b": null, + "centile": 60.9, + "sds": 0.2771856838647385, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 7 months, 3 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.450376454483231, + "y": 23.0, + "b": null, + "centile": 66.8, + "sds": 0.4354937076845908, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 5 months, 1 week and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.655715263518139, + "y": 0.2771856838647385, + "b": null, + "centile": 60.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 7 months, 3 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.450376454483231, + "y": 0.4354937076845908, + "b": null, + "centile": 66.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 5 months, 1 week and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-08-06", + "chronological_decimal_age": 7.321013004791239, + "corrected_decimal_age": 7.115674195756331, + "chronological_calendar_age": "7 years, 3 months, 3 weeks and 5 days", + "corrected_calendar_age": "7 years, 1 month, 1 week and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 24.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.42032099812980006, + "corrected_centile": 66.3, + "corrected_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.2597922971223577, + "chronological_centile": 60.2, + "chronological_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.321013004791239, + "y": 24.9, + "b": null, + "centile": 60.2, + "sds": 0.2597922971223577, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 3 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.115674195756331, + "y": 24.9, + "b": null, + "centile": 66.3, + "sds": 0.42032099812980006, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 1 month, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.321013004791239, + "y": 0.2597922971223577, + "b": null, + "centile": 60.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 3 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.115674195756331, + "y": 0.42032099812980006, + "b": null, + "centile": 66.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 1 month, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-04-06", + "chronological_decimal_age": 7.98631074606434, + "corrected_decimal_age": 7.780971937029432, + "chronological_calendar_age": "7 years, 11 months, 3 weeks and 5 days", + "corrected_calendar_age": "7 years, 9 months, 1 week and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 26.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.385809900795631, + "corrected_centile": 65.0, + "corrected_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.2412345182888053, + "chronological_centile": 59.5, + "chronological_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.98631074606434, + "y": 26.9, + "b": null, + "centile": 59.5, + "sds": 0.2412345182888053, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 11 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.780971937029432, + "y": 26.9, + "b": null, + "centile": 65.0, + "sds": 0.385809900795631, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 9 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.98631074606434, + "y": 0.2412345182888053, + "b": null, + "centile": 59.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 11 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.780971937029432, + "y": 0.385809900795631, + "b": null, + "centile": 65.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 9 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-12-05", + "chronological_decimal_age": 8.65160848733744, + "corrected_decimal_age": 8.446269678302533, + "chronological_calendar_age": "8 years, 7 months, 3 weeks and 3 days", + "corrected_calendar_age": "8 years, 5 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 28.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.35491188480010183, + "corrected_centile": 63.9, + "corrected_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.2251901651699165, + "chronological_centile": 58.9, + "chronological_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 8.65160848733744, + "y": 28.9, + "b": null, + "centile": 58.9, + "sds": 0.2251901651699165, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 7 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.446269678302533, + "y": 28.9, + "b": null, + "centile": 63.9, + "sds": 0.35491188480010183, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 5 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 8.65160848733744, + "y": 0.2251901651699165, + "b": null, + "centile": 58.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 7 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.446269678302533, + "y": 0.35491188480010183, + "b": null, + "centile": 63.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 5 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1768-08-04", + "chronological_decimal_age": 9.316906228610542, + "corrected_decimal_age": 9.111567419575634, + "chronological_calendar_age": "9 years, 3 months, 3 weeks and 3 days", + "corrected_calendar_age": "9 years, 1 month, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 31.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.4176343510086467, + "corrected_centile": 66.2, + "corrected_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.28789723412724655, + "chronological_centile": 61.3, + "chronological_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 9.316906228610542, + "y": 31.5, + "b": null, + "centile": 61.3, + "sds": 0.28789723412724655, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 3 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.111567419575634, + "y": 31.5, + "b": null, + "centile": 66.2, + "sds": 0.4176343510086467, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 1 month, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 9.316906228610542, + "y": 0.28789723412724655, + "b": null, + "centile": 61.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 3 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.111567419575634, + "y": 0.4176343510086467, + "b": null, + "centile": 66.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 1 month, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1769-04-04", + "chronological_decimal_age": 9.982203969883642, + "corrected_decimal_age": 9.776865160848734, + "chronological_calendar_age": "9 years, 11 months, 3 weeks and 3 days", + "corrected_calendar_age": "9 years, 9 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 33.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.39685329972360595, + "corrected_centile": 65.4, + "corrected_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.2716169559095619, + "chronological_centile": 60.7, + "chronological_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 9.982203969883642, + "y": 33.9, + "b": null, + "centile": 60.7, + "sds": 0.2716169559095619, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 11 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.776865160848734, + "y": 33.9, + "b": null, + "centile": 65.4, + "sds": 0.39685329972360595, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 9 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 9.982203969883642, + "y": 0.2716169559095619, + "b": null, + "centile": 60.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 11 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.776865160848734, + "y": 0.39685329972360595, + "b": null, + "centile": 65.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 9 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1769-12-03", + "chronological_decimal_age": 10.647501711156742, + "corrected_decimal_age": 10.442162902121835, + "chronological_calendar_age": "10 years, 7 months, 3 weeks and 1 day", + "corrected_calendar_age": "10 years, 5 months, 1 week and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 36.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.38653665060236514, + "corrected_centile": 65.0, + "corrected_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.2688881398174126, + "chronological_centile": 60.6, + "chronological_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 10.647501711156742, + "y": 36.5, + "b": null, + "centile": 60.6, + "sds": 0.2688881398174126, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 7 months, 3 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.442162902121835, + "y": 36.5, + "b": null, + "centile": 65.0, + "sds": 0.38653665060236514, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 5 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 10.647501711156742, + "y": 0.2688881398174126, + "b": null, + "centile": 60.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 7 months, 3 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.442162902121835, + "y": 0.38653665060236514, + "b": null, + "centile": 65.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 5 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1770-08-03", + "chronological_decimal_age": 11.312799452429843, + "corrected_decimal_age": 11.107460643394935, + "chronological_calendar_age": "11 years, 3 months, 3 weeks and 2 days", + "corrected_calendar_age": "11 years, 1 month, 1 week and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 39.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.3611000416891811, + "corrected_centile": 64.1, + "corrected_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.24553027763569743, + "chronological_centile": 59.7, + "chronological_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 11.312799452429843, + "y": 39.1, + "b": null, + "centile": 59.7, + "sds": 0.24553027763569743, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 3 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.107460643394935, + "y": 39.1, + "b": null, + "centile": 64.1, + "sds": 0.3611000416891811, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 1 month, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 11.312799452429843, + "y": 0.24553027763569743, + "b": null, + "centile": 59.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 3 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.107460643394935, + "y": 0.3611000416891811, + "b": null, + "centile": 64.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 1 month, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1771-04-03", + "chronological_decimal_age": 11.978097193702943, + "corrected_decimal_age": 11.772758384668036, + "chronological_calendar_age": "11 years, 11 months, 3 weeks and 2 days", + "corrected_calendar_age": "11 years, 9 months, 1 week and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 42.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.4087873219703293, + "corrected_centile": 65.9, + "corrected_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.2901683732840675, + "chronological_centile": 61.4, + "chronological_centile_band": "This weight measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 11.978097193702943, + "y": 42.5, + "b": null, + "centile": 61.4, + "sds": 0.2901683732840675, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 11 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.772758384668036, + "y": 42.5, + "b": null, + "centile": 65.9, + "sds": 0.4087873219703293, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 9 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 11.978097193702943, + "y": 0.2901683732840675, + "b": null, + "centile": 61.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 11 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.772758384668036, + "y": 0.4087873219703293, + "b": null, + "centile": 65.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 9 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This weight measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } + ], + height: [ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-04-10", + "chronological_decimal_age": 1.998631074606434, + "corrected_decimal_age": 1.7932922655715264, + "chronological_calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_calendar_age": "1 year, 9 months, 2 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 86.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.6282034488211067, + "corrected_centile": 73.5, + "corrected_centile_band": "This height measurement is on or near the 75th centile.", + "chronological_sds": -0.0931829023744163, + "chronological_centile": 46.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": 86.1, + "b": null, + "centile": 46.3, + "sds": -0.0931829023744163, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.7932922655715264, + "y": 86.1, + "b": null, + "centile": 73.5, + "sds": 0.6282034488211067, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 9 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 75th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": -0.0931829023744163, + "b": null, + "centile": 46.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.7932922655715264, + "y": 0.6282034488211067, + "b": null, + "centile": 73.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 9 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 75th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-12-09", + "chronological_decimal_age": 2.6639288158795345, + "corrected_decimal_age": 2.458590006844627, + "chronological_calendar_age": "2 years, 7 months and 4 weeks", + "corrected_calendar_age": "2 years, 5 months and 2 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 92.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.5436688254110755, + "corrected_centile": 70.7, + "corrected_centile_band": "This height measurement is on or near the 75th centile.", + "chronological_sds": 0.009305776760930431, + "chronological_centile": 50.4, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.6639288158795345, + "y": 92.2, + "b": null, + "centile": 50.4, + "sds": 0.009305776760930431, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months and 4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.458590006844627, + "y": 92.2, + "b": null, + "centile": 70.7, + "sds": 0.5436688254110755, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 5 months and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 75th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.6639288158795345, + "y": 0.009305776760930431, + "b": null, + "centile": 50.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months and 4 weeks", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.458590006844627, + "y": 0.5436688254110755, + "b": null, + "centile": 70.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 5 months and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 75th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-08-09", + "chronological_decimal_age": 3.3292265571526354, + "corrected_decimal_age": 3.1238877481177276, + "chronological_calendar_age": "3 years, 3 months, 4 weeks and 1 day", + "corrected_calendar_age": "3 years, 1 month, 2 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 97.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.39458062215791206, + "corrected_centile": 65.3, + "corrected_centile_band": "This height measurement is between the 50th and 75th centiles.", + "chronological_sds": -0.029387430311729048, + "chronological_centile": 48.8, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.3292265571526354, + "y": 97.6, + "b": null, + "centile": 48.8, + "sds": -0.029387430311729048, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 4 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.1238877481177276, + "y": 97.6, + "b": null, + "centile": 65.3, + "sds": 0.39458062215791206, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 1 month, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.3292265571526354, + "y": -0.029387430311729048, + "b": null, + "centile": 48.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 4 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.1238877481177276, + "y": 0.39458062215791206, + "b": null, + "centile": 65.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 1 month, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-04-09", + "chronological_decimal_age": 3.994524298425736, + "corrected_decimal_age": 3.789185489390828, + "chronological_calendar_age": "3 years, 11 months, 4 weeks and 1 day", + "corrected_calendar_age": "3 years, 9 months, 2 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 102.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.3062627833552427, + "corrected_centile": 62.0, + "corrected_centile_band": "This height measurement is between the 50th and 75th centiles.", + "chronological_sds": -0.04462096733256773, + "chronological_centile": 48.2, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.994524298425736, + "y": 102.5, + "b": null, + "centile": 48.2, + "sds": -0.04462096733256773, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 4 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.789185489390828, + "y": 102.5, + "b": null, + "centile": 62.0, + "sds": 0.3062627833552427, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 9 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.994524298425736, + "y": -0.04462096733256773, + "b": null, + "centile": 48.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 4 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.789185489390828, + "y": 0.3062627833552427, + "b": null, + "centile": 62.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 9 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-12-08", + "chronological_decimal_age": 4.659822039698836, + "corrected_decimal_age": 4.454483230663929, + "chronological_calendar_age": "4 years, 7 months, 3 weeks and 6 days", + "corrected_calendar_age": "4 years, 5 months, 1 week and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 105.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.2574857511613832, + "corrected_centile": 60.2, + "corrected_centile_band": "This height measurement is between the 50th and 75th centiles.", + "chronological_sds": -0.10373862080611959, + "chronological_centile": 45.9, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.659822039698836, + "y": 105.9, + "b": null, + "centile": 45.9, + "sds": -0.10373862080611959, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 7 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.454483230663929, + "y": 105.9, + "b": null, + "centile": 60.2, + "sds": 0.2574857511613832, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 5 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.659822039698836, + "y": -0.10373862080611959, + "b": null, + "centile": 45.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 7 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.454483230663929, + "y": 0.2574857511613832, + "b": null, + "centile": 60.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 5 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-08-07", + "chronological_decimal_age": 5.325119780971937, + "corrected_decimal_age": 5.119780971937029, + "chronological_calendar_age": "5 years, 3 months, 3 weeks and 6 days", + "corrected_calendar_age": "5 years, 1 month, 1 week and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 111.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.41883860777494547, + "corrected_centile": 66.2, + "corrected_centile_band": "This height measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.1073486858622964, + "chronological_centile": 54.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.325119780971937, + "y": 111.6, + "b": null, + "centile": 54.3, + "sds": 0.1073486858622964, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 3 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.119780971937029, + "y": 111.6, + "b": null, + "centile": 66.2, + "sds": 0.41883860777494547, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 1 month, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.325119780971937, + "y": 0.1073486858622964, + "b": null, + "centile": 54.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 3 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.119780971937029, + "y": 0.41883860777494547, + "b": null, + "centile": 66.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 1 month, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-04-07", + "chronological_decimal_age": 5.990417522245037, + "corrected_decimal_age": 5.7850787132101305, + "chronological_calendar_age": "5 years, 11 months, 3 weeks and 6 days", + "corrected_calendar_age": "5 years, 9 months, 1 week and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 115.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.28760749929154494, + "corrected_centile": 61.3, + "corrected_centile_band": "This height measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.026511302550805436, + "chronological_centile": 51.1, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.990417522245037, + "y": 115.4, + "b": null, + "centile": 51.1, + "sds": 0.026511302550805436, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 11 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.7850787132101305, + "y": 115.4, + "b": null, + "centile": 61.3, + "sds": 0.28760749929154494, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 9 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.990417522245037, + "y": 0.026511302550805436, + "b": null, + "centile": 51.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 11 months, 3 weeks and 6 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.7850787132101305, + "y": 0.28760749929154494, + "b": null, + "centile": 61.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 9 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-12-06", + "chronological_decimal_age": 6.655715263518139, + "corrected_decimal_age": 6.450376454483231, + "chronological_calendar_age": "6 years, 7 months, 3 weeks and 4 days", + "corrected_calendar_age": "6 years, 5 months, 1 week and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 119.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.31844648409697524, + "corrected_centile": 62.5, + "corrected_centile_band": "This height measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.07595031208561429, + "chronological_centile": 53.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.655715263518139, + "y": 119.6, + "b": null, + "centile": 53.0, + "sds": 0.07595031208561429, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 7 months, 3 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.450376454483231, + "y": 119.6, + "b": null, + "centile": 62.5, + "sds": 0.31844648409697524, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 5 months, 1 week and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.655715263518139, + "y": 0.07595031208561429, + "b": null, + "centile": 53.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 7 months, 3 weeks and 4 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.450376454483231, + "y": 0.31844648409697524, + "b": null, + "centile": 62.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 5 months, 1 week and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-08-06", + "chronological_decimal_age": 7.321013004791239, + "corrected_decimal_age": 7.115674195756331, + "chronological_calendar_age": "7 years, 3 months, 3 weeks and 5 days", + "corrected_calendar_age": "7 years, 1 month, 1 week and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 123.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.3137777346926315, + "corrected_centile": 62.3, + "corrected_centile_band": "This height measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.0696495430203619, + "chronological_centile": 52.8, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.321013004791239, + "y": 123.6, + "b": null, + "centile": 52.8, + "sds": 0.0696495430203619, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 3 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.115674195756331, + "y": 123.6, + "b": null, + "centile": 62.3, + "sds": 0.3137777346926315, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 1 month, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.321013004791239, + "y": 0.0696495430203619, + "b": null, + "centile": 52.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 3 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.115674195756331, + "y": 0.3137777346926315, + "b": null, + "centile": 62.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 1 month, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-04-06", + "chronological_decimal_age": 7.98631074606434, + "corrected_decimal_age": 7.780971937029432, + "chronological_calendar_age": "7 years, 11 months, 3 weeks and 5 days", + "corrected_calendar_age": "7 years, 9 months, 1 week and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 127.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.2707948228127456, + "corrected_centile": 60.7, + "corrected_centile_band": "This height measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.043851644982636336, + "chronological_centile": 51.7, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.98631074606434, + "y": 127.5, + "b": null, + "centile": 51.7, + "sds": 0.043851644982636336, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 11 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.780971937029432, + "y": 127.5, + "b": null, + "centile": 60.7, + "sds": 0.2707948228127456, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 9 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.98631074606434, + "y": 0.043851644982636336, + "b": null, + "centile": 51.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 11 months, 3 weeks and 5 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.780971937029432, + "y": 0.2707948228127456, + "b": null, + "centile": 60.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 9 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-12-05", + "chronological_decimal_age": 8.65160848733744, + "corrected_decimal_age": 8.446269678302533, + "chronological_calendar_age": "8 years, 7 months, 3 weeks and 3 days", + "corrected_calendar_age": "8 years, 5 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 131.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.31110963971210087, + "corrected_centile": 62.2, + "corrected_centile_band": "This height measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.11398848839075094, + "chronological_centile": 54.5, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 8.65160848733744, + "y": 131.6, + "b": null, + "centile": 54.5, + "sds": 0.11398848839075094, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 7 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.446269678302533, + "y": 131.6, + "b": null, + "centile": 62.2, + "sds": 0.31110963971210087, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 5 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 8.65160848733744, + "y": 0.11398848839075094, + "b": null, + "centile": 54.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 7 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.446269678302533, + "y": 0.31110963971210087, + "b": null, + "centile": 62.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 5 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1768-08-04", + "chronological_decimal_age": 9.316906228610542, + "corrected_decimal_age": 9.111567419575634, + "chronological_calendar_age": "9 years, 3 months, 3 weeks and 3 days", + "corrected_calendar_age": "9 years, 1 month, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 135.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.3011671349899444, + "corrected_centile": 61.8, + "corrected_centile_band": "This height measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.10702812062606239, + "chronological_centile": 54.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 9.316906228610542, + "y": 135.2, + "b": null, + "centile": 54.3, + "sds": 0.10702812062606239, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 3 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.111567419575634, + "y": 135.2, + "b": null, + "centile": 61.8, + "sds": 0.3011671349899444, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 1 month, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 9.316906228610542, + "y": 0.10702812062606239, + "b": null, + "centile": 54.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 3 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.111567419575634, + "y": 0.3011671349899444, + "b": null, + "centile": 61.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 1 month, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1769-04-04", + "chronological_decimal_age": 9.982203969883642, + "corrected_decimal_age": 9.776865160848734, + "chronological_calendar_age": "9 years, 11 months, 3 weeks and 3 days", + "corrected_calendar_age": "9 years, 9 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 138.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.16774617178343432, + "corrected_centile": 56.7, + "corrected_centile_band": "This height measurement is between the 50th and 75th centiles.", + "chronological_sds": -0.02011037580215428, + "chronological_centile": 49.2, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 9.982203969883642, + "y": 138.2, + "b": null, + "centile": 49.2, + "sds": -0.02011037580215428, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 11 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.776865160848734, + "y": 138.2, + "b": null, + "centile": 56.7, + "sds": 0.16774617178343432, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 9 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 9.982203969883642, + "y": -0.02011037580215428, + "b": null, + "centile": 49.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 11 months, 3 weeks and 3 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.776865160848734, + "y": 0.16774617178343432, + "b": null, + "centile": 56.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 9 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1769-12-03", + "chronological_decimal_age": 10.647501711156742, + "corrected_decimal_age": 10.442162902121835, + "chronological_calendar_age": "10 years, 7 months, 3 weeks and 1 day", + "corrected_calendar_age": "10 years, 5 months, 1 week and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 141.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.1279761144269975, + "corrected_centile": 55.1, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.047856400100433655, + "chronological_centile": 48.1, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 10.647501711156742, + "y": 141.8, + "b": null, + "centile": 48.1, + "sds": -0.047856400100433655, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 7 months, 3 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.442162902121835, + "y": 141.8, + "b": null, + "centile": 55.1, + "sds": 0.1279761144269975, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 5 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 10.647501711156742, + "y": -0.047856400100433655, + "b": null, + "centile": 48.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 7 months, 3 weeks and 1 day", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.442162902121835, + "y": 0.1279761144269975, + "b": null, + "centile": 55.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 5 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1770-08-03", + "chronological_decimal_age": 11.312799452429843, + "corrected_decimal_age": 11.107460643394935, + "chronological_calendar_age": "11 years, 3 months, 3 weeks and 2 days", + "corrected_calendar_age": "11 years, 1 month, 1 week and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 145.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.16915626575907125, + "corrected_centile": 56.7, + "corrected_centile_band": "This height measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.002254442077434167, + "chronological_centile": 50.1, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 11.312799452429843, + "y": 145.9, + "b": null, + "centile": 50.1, + "sds": 0.002254442077434167, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 3 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.107460643394935, + "y": 145.9, + "b": null, + "centile": 56.7, + "sds": 0.16915626575907125, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 1 month, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 11.312799452429843, + "y": 0.002254442077434167, + "b": null, + "centile": 50.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 3 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.107460643394935, + "y": 0.16915626575907125, + "b": null, + "centile": 56.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 1 month, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 29, + "gestation_days": 2, + "estimated_date_delivery": "1759-06-25", + "estimated_date_delivery_string": "Mon 25 June, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1771-04-03", + "chronological_decimal_age": 11.978097193702943, + "corrected_decimal_age": 11.772758384668036, + "chronological_calendar_age": "11 years, 11 months, 3 weeks and 2 days", + "corrected_calendar_age": "11 years, 9 months, 1 week and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Correction for gestational age has been made.", + "lay_corrected_decimal_age_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_chronological_decimal_age_comment": "No correction has been made for gestational age.", + "lay_chronological_decimal_age_comment": "This is your child's age without taking into account their gestation at birth." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 150.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.2571539901464376, + "corrected_centile": 60.1, + "corrected_centile_band": "This height measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.09366036615888176, + "chronological_centile": 53.7, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 11.978097193702943, + "y": 150.3, + "b": null, + "centile": 53.7, + "sds": 0.09366036615888176, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 11 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.772758384668036, + "y": 150.3, + "b": null, + "centile": 60.1, + "sds": 0.2571539901464376, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 9 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 11.978097193702943, + "y": 0.09366036615888176, + "b": null, + "centile": 53.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 11 months, 3 weeks and 2 days", + "lay_comment": "This is your child's age without taking into account their gestation at birth.", + "clinician_comment": "No correction has been made for gestational age.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.772758384668036, + "y": 0.2571539901464376, + "b": null, + "centile": 60.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 9 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Because your child was born at 29+2 weeks gestation, an adjustment has been made to take this into account.", + "clinician_comment": "Correction for gestational age has been made.", + "age_error": null, + "centile_band": "This height measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } + ] +} \ No newline at end of file diff --git a/src/testParameters/measurements/smallChildJustOverTwo.ts b/src/testParameters/measurements/smallChildJustOverTwo.ts new file mode 100644 index 0000000..1ea94cf --- /dev/null +++ b/src/testParameters/measurements/smallChildJustOverTwo.ts @@ -0,0 +1,3747 @@ +import { Measurement } from "../../interfaces/RCPCHMeasurementObject"; + +export const smallChildJustOverTwo:Measurement[] = [ + {"birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1759-04-11", + "chronological_decimal_age": 0.0, + "corrected_decimal_age": 0.0, + "chronological_calendar_age": "Happy Birthday", + "corrected_calendar_age": "Happy Birthday", + "corrected_gestational_age": { + "corrected_gestation_weeks": 40, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 50.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.020828050375289595, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.020828050375289595, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": 50.9, + "b": null, + "centile": 49.0, + "sds": -0.020828050375289595, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.0, + "y": 50.9, + "b": null, + "centile": 49.0, + "sds": -0.020828050375289595, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "Happy Birthday", + "corrected_gestational_age": "40 + 0 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": -0.020828050375289595, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.0, + "y": -0.020828050375289595, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "Happy Birthday", + "corrected_gestational_age": "40 + 0 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1759-05-11", + "chronological_decimal_age": 0.08213552361396304, + "corrected_decimal_age": 0.08213552361396304, + "chronological_calendar_age": "1 month", + "corrected_calendar_age": "1 month", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 54.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.018256247623027102, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.018256247623027102, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.08213552361396304, + "y": 54.7, + "b": null, + "centile": 50.0, + "sds": 0.018256247623027102, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.08213552361396304, + "y": 54.7, + "b": null, + "centile": 50.0, + "sds": 0.018256247623027102, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 month", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.08213552361396304, + "y": 0.018256247623027102, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.08213552361396304, + "y": 0.018256247623027102, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 month", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1759-06-10", + "chronological_decimal_age": 0.16427104722792607, + "corrected_decimal_age": 0.16427104722792607, + "chronological_calendar_age": "1 month, 4 weeks and 2 days", + "corrected_calendar_age": "1 month, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 58.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.03505739886895309, + "corrected_centile": 51.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.03505739886895309, + "chronological_centile": 51.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.16427104722792607, + "y": 58.4, + "b": null, + "centile": 51.0, + "sds": 0.03505739886895309, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.16427104722792607, + "y": 58.4, + "b": null, + "centile": 51.0, + "sds": 0.03505739886895309, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 month, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.16427104722792607, + "y": 0.03505739886895309, + "b": null, + "centile": 51.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.16427104722792607, + "y": 0.03505739886895309, + "b": null, + "centile": 51.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 month, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1759-07-11", + "chronological_decimal_age": 0.24914442162902123, + "corrected_decimal_age": 0.24914442162902123, + "chronological_calendar_age": "3 months", + "corrected_calendar_age": "3 months", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 61.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.0006359924952056826, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.0006359924952056826, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.24914442162902123, + "y": 61.4, + "b": null, + "centile": 49.0, + "sds": -0.0006359924952056826, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.24914442162902123, + "y": 61.4, + "b": null, + "centile": 49.0, + "sds": -0.0006359924952056826, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 months", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.24914442162902123, + "y": -0.0006359924952056826, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.24914442162902123, + "y": -0.0006359924952056826, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 months", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1759-08-10", + "chronological_decimal_age": 0.33127994524298426, + "corrected_decimal_age": 0.33127994524298426, + "chronological_calendar_age": "3 months, 4 weeks and 2 days", + "corrected_calendar_age": "3 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 63.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.03307148683157214, + "corrected_centile": 51.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.03307148683157214, + "chronological_centile": 51.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.33127994524298426, + "y": 63.9, + "b": null, + "centile": 51.0, + "sds": 0.03307148683157214, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.33127994524298426, + "y": 63.9, + "b": null, + "centile": 51.0, + "sds": 0.03307148683157214, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.33127994524298426, + "y": 0.03307148683157214, + "b": null, + "centile": 51.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.33127994524298426, + "y": 0.03307148683157214, + "b": null, + "centile": 51.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1759-09-10", + "chronological_decimal_age": 0.4161533196440794, + "corrected_decimal_age": 0.4161533196440794, + "chronological_calendar_age": "4 months, 4 weeks and 2 days", + "corrected_calendar_age": "4 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 65.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.004153415640842571, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.004153415640842571, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.4161533196440794, + "y": 65.9, + "b": null, + "centile": 50.0, + "sds": 0.004153415640842571, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.4161533196440794, + "y": 65.9, + "b": null, + "centile": 50.0, + "sds": 0.004153415640842571, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.4161533196440794, + "y": 0.004153415640842571, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.4161533196440794, + "y": 0.004153415640842571, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1759-10-10", + "chronological_decimal_age": 0.49828884325804246, + "corrected_decimal_age": 0.49828884325804246, + "chronological_calendar_age": "5 months, 4 weeks and 1 day", + "corrected_calendar_age": "5 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 67.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.004455129540143975, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.004455129540143975, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.49828884325804246, + "y": 67.6, + "b": null, + "centile": 50.0, + "sds": 0.004455129540143975, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.49828884325804246, + "y": 67.6, + "b": null, + "centile": 50.0, + "sds": 0.004455129540143975, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.49828884325804246, + "y": 0.004455129540143975, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.49828884325804246, + "y": 0.004455129540143975, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1759-11-10", + "chronological_decimal_age": 0.5831622176591376, + "corrected_decimal_age": 0.5831622176591376, + "chronological_calendar_age": "6 months, 4 weeks and 2 days", + "corrected_calendar_age": "6 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 69.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.017747569167361154, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.017747569167361154, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.5831622176591376, + "y": 69.2, + "b": null, + "centile": 50.0, + "sds": 0.017747569167361154, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.5831622176591376, + "y": 69.2, + "b": null, + "centile": 50.0, + "sds": 0.017747569167361154, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.5831622176591376, + "y": 0.017747569167361154, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.5831622176591376, + "y": 0.017747569167361154, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1759-12-10", + "chronological_decimal_age": 0.6652977412731006, + "corrected_decimal_age": 0.6652977412731006, + "chronological_calendar_age": "7 months, 4 weeks and 1 day", + "corrected_calendar_age": "7 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 70.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.010671858230371967, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.010671858230371967, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.6652977412731006, + "y": 70.6, + "b": null, + "centile": 50.0, + "sds": 0.010671858230371967, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.6652977412731006, + "y": 70.6, + "b": null, + "centile": 50.0, + "sds": 0.010671858230371967, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.6652977412731006, + "y": 0.010671858230371967, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.6652977412731006, + "y": 0.010671858230371967, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1760-01-09", + "chronological_decimal_age": 0.7474332648870636, + "corrected_decimal_age": 0.7474332648870636, + "chronological_calendar_age": "8 months, 4 weeks and 1 day", + "corrected_calendar_age": "8 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 72.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.032373379878229074, + "corrected_centile": 51.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.032373379878229074, + "chronological_centile": 51.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.7474332648870636, + "y": 72.0, + "b": null, + "centile": 51.0, + "sds": 0.032373379878229074, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.7474332648870636, + "y": 72.0, + "b": null, + "centile": 51.0, + "sds": 0.032373379878229074, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.7474332648870636, + "y": 0.032373379878229074, + "b": null, + "centile": 51.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.7474332648870636, + "y": 0.032373379878229074, + "b": null, + "centile": 51.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1760-02-09", + "chronological_decimal_age": 0.8323066392881588, + "corrected_decimal_age": 0.8323066392881588, + "chronological_calendar_age": "9 months, 4 weeks and 1 day", + "corrected_calendar_age": "9 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 73.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.015160601158668427, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.015160601158668427, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.8323066392881588, + "y": 73.3, + "b": null, + "centile": 50.0, + "sds": 0.015160601158668427, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.8323066392881588, + "y": 73.3, + "b": null, + "centile": 50.0, + "sds": 0.015160601158668427, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.8323066392881588, + "y": 0.015160601158668427, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.8323066392881588, + "y": 0.015160601158668427, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1760-03-10", + "chronological_decimal_age": 0.9144421629021219, + "corrected_decimal_age": 0.9144421629021219, + "chronological_calendar_age": "10 months and 4 weeks", + "corrected_calendar_age": "10 months and 4 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 74.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.0025258096361110154, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.0025258096361110154, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.9144421629021219, + "y": 74.5, + "b": null, + "centile": 49.0, + "sds": -0.0025258096361110154, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.9144421629021219, + "y": 74.5, + "b": null, + "centile": 49.0, + "sds": -0.0025258096361110154, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.9144421629021219, + "y": -0.0025258096361110154, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.9144421629021219, + "y": -0.0025258096361110154, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1760-04-10", + "chronological_decimal_age": 0.999315537303217, + "corrected_decimal_age": 0.999315537303217, + "chronological_calendar_age": "11 months, 4 weeks and 2 days", + "corrected_calendar_age": "11 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 75.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.01643015120464208, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.01643015120464208, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.999315537303217, + "y": 75.7, + "b": null, + "centile": 49.0, + "sds": -0.01643015120464208, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.999315537303217, + "y": 75.7, + "b": null, + "centile": 49.0, + "sds": -0.01643015120464208, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.999315537303217, + "y": -0.01643015120464208, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.999315537303217, + "y": -0.01643015120464208, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1760-05-10", + "chronological_decimal_age": 1.08145106091718, + "corrected_decimal_age": 1.08145106091718, + "chronological_calendar_age": "1 year, 4 weeks and 1 day", + "corrected_calendar_age": "1 year, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 76.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.003047488176542143, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.003047488176542143, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.08145106091718, + "y": 76.9, + "b": null, + "centile": 50.0, + "sds": 0.003047488176542143, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.08145106091718, + "y": 76.9, + "b": null, + "centile": 50.0, + "sds": 0.003047488176542143, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.08145106091718, + "y": 0.003047488176542143, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.08145106091718, + "y": 0.003047488176542143, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1760-06-10", + "chronological_decimal_age": 1.1663244353182751, + "corrected_decimal_age": 1.1663244353182751, + "chronological_calendar_age": "1 year, 1 month, 4 weeks and 2 days", + "corrected_calendar_age": "1 year, 1 month, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 78.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.018218574924159323, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.018218574924159323, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.1663244353182751, + "y": 78.0, + "b": null, + "centile": 49.0, + "sds": -0.018218574924159323, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 1 month, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.1663244353182751, + "y": 78.0, + "b": null, + "centile": 49.0, + "sds": -0.018218574924159323, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 1 month, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.1663244353182751, + "y": -0.018218574924159323, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 1 month, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.1663244353182751, + "y": -0.018218574924159323, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 1 month, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1760-07-10", + "chronological_decimal_age": 1.2484599589322383, + "corrected_decimal_age": 1.2484599589322383, + "chronological_calendar_age": "1 year, 2 months, 4 weeks and 1 day", + "corrected_calendar_age": "1 year, 2 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 79.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.010214133385316806, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.010214133385316806, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.2484599589322383, + "y": 79.1, + "b": null, + "centile": 49.0, + "sds": -0.010214133385316806, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 2 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.2484599589322383, + "y": 79.1, + "b": null, + "centile": 49.0, + "sds": -0.010214133385316806, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 2 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.2484599589322383, + "y": -0.010214133385316806, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 2 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.2484599589322383, + "y": -0.010214133385316806, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 2 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1760-08-10", + "chronological_decimal_age": 1.3333333333333333, + "corrected_decimal_age": 1.3333333333333333, + "chronological_calendar_age": "1 year, 3 months, 4 weeks and 2 days", + "corrected_calendar_age": "1 year, 3 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 80.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.004372374495036458, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.004372374495036458, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.3333333333333333, + "y": 80.2, + "b": null, + "centile": 49.0, + "sds": -0.004372374495036458, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 3 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.3333333333333333, + "y": 80.2, + "b": null, + "centile": 49.0, + "sds": -0.004372374495036458, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 3 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.3333333333333333, + "y": -0.004372374495036458, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 3 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.3333333333333333, + "y": -0.004372374495036458, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 3 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1760-09-09", + "chronological_decimal_age": 1.4154688569472964, + "corrected_decimal_age": 1.4154688569472964, + "chronological_calendar_age": "1 year, 4 months, 4 weeks and 1 day", + "corrected_calendar_age": "1 year, 4 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 81.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.012874037994955841, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.012874037994955841, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.4154688569472964, + "y": 81.2, + "b": null, + "centile": 49.0, + "sds": -0.012874037994955841, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 4 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.4154688569472964, + "y": 81.2, + "b": null, + "centile": 49.0, + "sds": -0.012874037994955841, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 4 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.4154688569472964, + "y": -0.012874037994955841, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 4 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.4154688569472964, + "y": -0.012874037994955841, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 4 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1760-10-09", + "chronological_decimal_age": 1.4976043805612593, + "corrected_decimal_age": 1.4976043805612593, + "chronological_calendar_age": "1 year, 5 months and 4 weeks", + "corrected_calendar_age": "1 year, 5 months and 4 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 82.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.0259521051682447, + "corrected_centile": 51.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.0259521051682447, + "chronological_centile": 51.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.4976043805612593, + "y": 82.3, + "b": null, + "centile": 51.0, + "sds": 0.0259521051682447, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 5 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.4976043805612593, + "y": 82.3, + "b": null, + "centile": 51.0, + "sds": 0.0259521051682447, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 5 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.4976043805612593, + "y": 0.0259521051682447, + "b": null, + "centile": 51.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 5 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.4976043805612593, + "y": 0.0259521051682447, + "b": null, + "centile": 51.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 5 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1760-11-09", + "chronological_decimal_age": 1.5824777549623545, + "corrected_decimal_age": 1.5824777549623545, + "chronological_calendar_age": "1 year, 6 months, 4 weeks and 1 day", + "corrected_calendar_age": "1 year, 6 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 83.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.01155763383553462, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.01155763383553462, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.5824777549623545, + "y": 83.2, + "b": null, + "centile": 49.0, + "sds": -0.01155763383553462, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 6 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.5824777549623545, + "y": 83.2, + "b": null, + "centile": 49.0, + "sds": -0.01155763383553462, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 6 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.5824777549623545, + "y": -0.01155763383553462, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 6 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.5824777549623545, + "y": -0.01155763383553462, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 6 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1760-12-09", + "chronological_decimal_age": 1.6646132785763177, + "corrected_decimal_age": 1.6646132785763177, + "chronological_calendar_age": "1 year, 7 months and 4 weeks", + "corrected_calendar_age": "1 year, 7 months and 4 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 84.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.008433151505028064, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.008433151505028064, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.6646132785763177, + "y": 84.2, + "b": null, + "centile": 50.0, + "sds": 0.008433151505028064, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 7 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.6646132785763177, + "y": 84.2, + "b": null, + "centile": 50.0, + "sds": 0.008433151505028064, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 7 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.6646132785763177, + "y": 0.008433151505028064, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 7 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.6646132785763177, + "y": 0.008433151505028064, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 7 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1761-01-09", + "chronological_decimal_age": 1.7494866529774127, + "corrected_decimal_age": 1.7494866529774127, + "chronological_calendar_age": "1 year, 8 months, 4 weeks and 1 day", + "corrected_calendar_age": "1 year, 8 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 85.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.010128680348991283, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.010128680348991283, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.7494866529774127, + "y": 85.1, + "b": null, + "centile": 49.0, + "sds": -0.010128680348991283, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 8 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.7494866529774127, + "y": 85.1, + "b": null, + "centile": 49.0, + "sds": -0.010128680348991283, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 8 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.7494866529774127, + "y": -0.010128680348991283, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 8 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.7494866529774127, + "y": -0.010128680348991283, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 8 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1761-02-08", + "chronological_decimal_age": 1.8316221765913758, + "corrected_decimal_age": 1.8316221765913758, + "chronological_calendar_age": "1 year, 9 months and 4 weeks", + "corrected_calendar_age": "1 year, 9 months and 4 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 86.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.009942405415441965, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.009942405415441965, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.8316221765913758, + "y": 86.0, + "b": null, + "centile": 49.0, + "sds": -0.009942405415441965, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 9 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.8316221765913758, + "y": 86.0, + "b": null, + "centile": 49.0, + "sds": -0.009942405415441965, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 9 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.8316221765913758, + "y": -0.009942405415441965, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 9 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.8316221765913758, + "y": -0.009942405415441965, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 9 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1761-03-11", + "chronological_decimal_age": 1.9164955509924708, + "corrected_decimal_age": 1.9164955509924708, + "chronological_calendar_age": "1 year and 11 months", + "corrected_calendar_age": "1 year and 11 months", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 86.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.01308344911608462, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.01308344911608462, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.9164955509924708, + "y": 86.9, + "b": null, + "centile": 49.0, + "sds": -0.01308344911608462, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year and 11 months", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.9164955509924708, + "y": 86.9, + "b": null, + "centile": 49.0, + "sds": -0.01308344911608462, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year and 11 months", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.9164955509924708, + "y": -0.01308344911608462, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year and 11 months", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.9164955509924708, + "y": -0.01308344911608462, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year and 11 months", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1761-04-10", + "chronological_decimal_age": 1.998631074606434, + "corrected_decimal_age": 1.998631074606434, + "chronological_calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 87.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.0005646910081344427, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.0005646910081344427, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": 87.8, + "b": null, + "centile": 49.0, + "sds": -0.0005646910081344427, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.998631074606434, + "y": 87.8, + "b": null, + "centile": 49.0, + "sds": -0.0005646910081344427, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": -0.0005646910081344427, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.998631074606434, + "y": -0.0005646910081344427, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +}, +{ + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "1761-05-10", + "chronological_decimal_age": 2.080766598220397, + "corrected_decimal_age": 2.080766598220397, + "chronological_calendar_age": "2 years, 4 weeks and 1 day", + "corrected_calendar_age": "2 years, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 88.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.01745694112179179, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.01745694112179179, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.080766598220397, + "y": 88.0, + "b": null, + "centile": 50.0, + "sds": 0.01745694112179179, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.080766598220397, + "y": 88.0, + "b": null, + "centile": 50.0, + "sds": 0.01745694112179179, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.080766598220397, + "y": 0.01745694112179179, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.080766598220397, + "y": 0.01745694112179179, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } +} +] \ No newline at end of file diff --git a/src/testParameters/measurements/termBabyGirlWeight.ts b/src/testParameters/measurements/termBabyGirlWeight.ts new file mode 100644 index 0000000..e164f0e --- /dev/null +++ b/src/testParameters/measurements/termBabyGirlWeight.ts @@ -0,0 +1,148 @@ +import { Measurement } from "../../interfaces/RCPCHMeasurementObject"; + +export const termBabyGirlWeight: Measurement[]=[ + { + "birth_data": { + "birth_date": "2020-04-12", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "2020-04-12", + "estimated_date_delivery_string": "Sun 12 April, 2020", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "2020-04-13", + "chronological_decimal_age": 0.0027378507871321013, + "corrected_decimal_age": 0.0027378507871321013, + "chronological_calendar_age": "1 day", + "corrected_calendar_age": "1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": 40, + "corrected_gestation_days": 1 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 3.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -1.057506929353401, + "corrected_centile": 14.5, + "corrected_centile_band": "This weight measurement is between the 9th and 25th centiles.", + "chronological_sds": -1.057506929353401, + "chronological_centile": 14.5, + "chronological_centile_band": "This weight measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.0027378507871321013, + "y": 3.0, + "b": null, + "centile": 14.5, + "sds": -1.057506929353401, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This weight measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.0027378507871321013, + "y": 3.0, + "b": null, + "centile": 14.5, + "sds": -1.057506929353401, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 day", + "corrected_gestational_age": "40 + 1 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This weight measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.0027378507871321013, + "y": -1.057506929353401, + "b": null, + "centile": 14.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This weight measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.0027378507871321013, + "y": -1.057506929353401, + "b": null, + "centile": 14.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 day", + "corrected_gestational_age": "40 + 1 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This weight measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } +] \ No newline at end of file diff --git a/src/testParameters/measurements/termGirlWithSingleHeightMeasurementAndBoneAgeAndEvent.ts b/src/testParameters/measurements/termGirlWithSingleHeightMeasurementAndBoneAgeAndEvent.ts new file mode 100644 index 0000000..d194e00 --- /dev/null +++ b/src/testParameters/measurements/termGirlWithSingleHeightMeasurementAndBoneAgeAndEvent.ts @@ -0,0 +1,162 @@ +import { Measurement } from "../../interfaces/RCPCHMeasurementObject"; + +export const termGirlWithSingleHeightMeasurementAndBoneAgeAndEvent:Measurement[] = [ + { + "birth_data": { + "birth_date": "2020-04-12", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "2020-04-12", + "estimated_date_delivery_string": "Sun 12 April, 2020", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "2024-06-12", + "chronological_decimal_age": 4.167008898015058, + "corrected_decimal_age": 4.167008898015058, + "chronological_calendar_age": "4 years and 2 months", + "corrected_calendar_age": "4 years and 2 months", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 95.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -1.8809326924150185, + "corrected_centile": 3.0, + "corrected_centile_band": "This height measurement is on or near the 2nd centile.", + "chronological_sds": -1.8809326924150185, + "chronological_centile": 3.0, + "chronological_centile_band": "This height measurement is on or near the 2nd centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.167008898015058, + "y": 95.0, + "b": 5.0, + "centile": 3.0, + "sds": -1.8809326924150185, + "bone_age_label": "This bone age is advanced", + "events_text": [ + "Growth hormone start", + "Growth Hormone Deficiency diagnosis" + ], + "bone_age_type": "greulich-pyle", + "bone_age_sds": 2.0, + "bone_age_centile": 98.0, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years and 2 months", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 2nd centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.167008898015058, + "y": 95.0, + "b": 5.0, + "centile": 3.0, + "sds": -1.8809326924150185, + "bone_age_label": "This bone age is advanced", + "events_text": [ + "Growth hormone start", + "Growth Hormone Deficiency diagnosis" + ], + "bone_age_type": "greulich-pyle", + "bone_age_sds": 2.0, + "bone_age_centile": 98.0, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years and 2 months", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 2nd centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.167008898015058, + "y": -1.8809326924150185, + "b": 5.0, + "centile": 3.0, + "sds": null, + "bone_age_label": "This bone age is advanced", + "events_text": [ + "Growth hormone start", + "Growth Hormone Deficiency diagnosis" + ], + "bone_age_type": "greulich-pyle", + "bone_age_sds": 2.0, + "bone_age_centile": 98.0, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years and 2 months", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 2nd centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.167008898015058, + "y": -1.8809326924150185, + "b": 5.0, + "centile": 3.0, + "sds": null, + "bone_age_label": "This bone age is advanced", + "events_text": [ + "Growth hormone start", + "Growth Hormone Deficiency diagnosis" + ], + "bone_age_type": "greulich-pyle", + "bone_age_sds": 2.0, + "bone_age_centile": 98.0, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years and 2 months", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 2nd centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": 5.0, + "bone_age_type": "greulich-pyle", + "bone_age_sds": 2.0, + "bone_age_centile": 98.0, + "bone_age_text": "This bone age is advanced" + }, + "events_data": { + "events_text": [ + "Growth hormone start", + "Growth Hormone Deficiency diagnosis" + ] + } +}] \ No newline at end of file diff --git a/src/testParameters/measurements/termToAYearGirlHeight.ts b/src/testParameters/measurements/termToAYearGirlHeight.ts new file mode 100644 index 0000000..8dac979 --- /dev/null +++ b/src/testParameters/measurements/termToAYearGirlHeight.ts @@ -0,0 +1,12244 @@ +import { Measurement } from "../../interfaces/RCPCHMeasurementObject" + +export const termToAYearGirlHeight: Measurement[] = [ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-11", + "chronological_decimal_age": 0.0, + "corrected_decimal_age": 0.0, + "chronological_calendar_age": "Happy Birthday", + "corrected_calendar_age": "Happy Birthday", + "corrected_gestational_age": { + "corrected_gestation_weeks": 40, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 50.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.00929688975104273, + "corrected_centile": 49.6, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.00929688975104273, + "chronological_centile": 49.6, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": 50.0, + "b": null, + "centile": 49.6, + "sds": -0.00929688975104273, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.0, + "y": 50.0, + "b": null, + "centile": 49.6, + "sds": -0.00929688975104273, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "Happy Birthday", + "corrected_gestational_age": "40 + 0 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": -0.00929688975104273, + "b": null, + "centile": 49.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.0, + "y": -0.00929688975104273, + "b": null, + "centile": 49.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "Happy Birthday", + "corrected_gestational_age": "40 + 0 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-06-10", + "chronological_decimal_age": 0.16427104722792607, + "corrected_decimal_age": 0.16427104722792607, + "chronological_calendar_age": "1 month, 4 weeks and 2 days", + "corrected_calendar_age": "1 month, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 57.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.058768136775673566, + "corrected_centile": 52.3, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.058768136775673566, + "chronological_centile": 52.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.16427104722792607, + "y": 57.1, + "b": null, + "centile": 52.3, + "sds": 0.058768136775673566, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.16427104722792607, + "y": 57.1, + "b": null, + "centile": 52.3, + "sds": 0.058768136775673566, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 month, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.16427104722792607, + "y": 0.058768136775673566, + "b": null, + "centile": 52.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 month, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.16427104722792607, + "y": 0.058768136775673566, + "b": null, + "centile": 52.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 month, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-08-09", + "chronological_decimal_age": 0.32854209445585214, + "corrected_decimal_age": 0.32854209445585214, + "chronological_calendar_age": "3 months, 4 weeks and 1 day", + "corrected_calendar_age": "3 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 62.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.06073799582068131, + "corrected_centile": 52.4, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.06073799582068131, + "chronological_centile": 52.4, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.32854209445585214, + "y": 62.1, + "b": null, + "centile": 52.4, + "sds": 0.06073799582068131, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.32854209445585214, + "y": 62.1, + "b": null, + "centile": 52.4, + "sds": 0.06073799582068131, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.32854209445585214, + "y": 0.06073799582068131, + "b": null, + "centile": 52.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.32854209445585214, + "y": 0.06073799582068131, + "b": null, + "centile": 52.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-10-08", + "chronological_decimal_age": 0.4928131416837782, + "corrected_decimal_age": 0.4928131416837782, + "chronological_calendar_age": "5 months, 3 weeks and 6 days", + "corrected_calendar_age": "5 months, 3 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 65.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.04798171283560914, + "corrected_centile": 51.9, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.04798171283560914, + "chronological_centile": 51.9, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.4928131416837782, + "y": 65.7, + "b": null, + "centile": 51.9, + "sds": 0.04798171283560914, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 months, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.4928131416837782, + "y": 65.7, + "b": null, + "centile": 51.9, + "sds": 0.04798171283560914, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 months, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.4928131416837782, + "y": 0.04798171283560914, + "b": null, + "centile": 51.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 months, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.4928131416837782, + "y": 0.04798171283560914, + "b": null, + "centile": 51.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 months, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-12-07", + "chronological_decimal_age": 0.6570841889117043, + "corrected_decimal_age": 0.6570841889117043, + "chronological_calendar_age": "7 months, 3 weeks and 5 days", + "corrected_calendar_age": "7 months, 3 weeks and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 68.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.04849061238689612, + "corrected_centile": 51.9, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.04849061238689612, + "chronological_centile": 51.9, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.6570841889117043, + "y": 68.7, + "b": null, + "centile": 51.9, + "sds": 0.04849061238689612, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 months, 3 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.6570841889117043, + "y": 68.7, + "b": null, + "centile": 51.9, + "sds": 0.04849061238689612, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 months, 3 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.6570841889117043, + "y": 0.04849061238689612, + "b": null, + "centile": 51.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 months, 3 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.6570841889117043, + "y": 0.04849061238689612, + "b": null, + "centile": 51.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 months, 3 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-02-05", + "chronological_decimal_age": 0.8213552361396304, + "corrected_decimal_age": 0.8213552361396304, + "chronological_calendar_age": "9 months, 3 weeks and 4 days", + "corrected_calendar_age": "9 months, 3 weeks and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 71.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.08430567516659336, + "corrected_centile": 53.4, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.08430567516659336, + "chronological_centile": 53.4, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.8213552361396304, + "y": 71.5, + "b": null, + "centile": 53.4, + "sds": 0.08430567516659336, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.8213552361396304, + "y": 71.5, + "b": null, + "centile": 53.4, + "sds": 0.08430567516659336, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.8213552361396304, + "y": 0.08430567516659336, + "b": null, + "centile": 53.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.8213552361396304, + "y": 0.08430567516659336, + "b": null, + "centile": 53.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-04-05", + "chronological_decimal_age": 0.9856262833675564, + "corrected_decimal_age": 0.9856262833675564, + "chronological_calendar_age": "11 months, 3 weeks and 4 days", + "corrected_calendar_age": "11 months, 3 weeks and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 74.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.07659463092190288, + "corrected_centile": 53.1, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.07659463092190288, + "chronological_centile": 53.1, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.9856262833675564, + "y": 74.0, + "b": null, + "centile": 53.1, + "sds": 0.07659463092190288, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.9856262833675564, + "y": 74.0, + "b": null, + "centile": 53.1, + "sds": 0.07659463092190288, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.9856262833675564, + "y": 0.07659463092190288, + "b": null, + "centile": 53.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.9856262833675564, + "y": 0.07659463092190288, + "b": null, + "centile": 53.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-06-04", + "chronological_decimal_age": 1.1498973305954825, + "corrected_decimal_age": 1.1498973305954825, + "chronological_calendar_age": "1 year, 1 month, 3 weeks and 3 days", + "corrected_calendar_age": "1 year, 1 month, 3 weeks and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 76.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.09337030335611259, + "corrected_centile": 53.7, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.09337030335611259, + "chronological_centile": 53.7, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.1498973305954825, + "y": 76.4, + "b": null, + "centile": 53.7, + "sds": 0.09337030335611259, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 1 month, 3 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.1498973305954825, + "y": 76.4, + "b": null, + "centile": 53.7, + "sds": 0.09337030335611259, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 1 month, 3 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.1498973305954825, + "y": 0.09337030335611259, + "b": null, + "centile": 53.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 1 month, 3 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.1498973305954825, + "y": 0.09337030335611259, + "b": null, + "centile": 53.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 1 month, 3 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-08-03", + "chronological_decimal_age": 1.3141683778234086, + "corrected_decimal_age": 1.3141683778234086, + "chronological_calendar_age": "1 year, 3 months, 3 weeks and 2 days", + "corrected_calendar_age": "1 year, 3 months, 3 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 78.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.08761005114139224, + "corrected_centile": 53.5, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.08761005114139224, + "chronological_centile": 53.5, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.3141683778234086, + "y": 78.6, + "b": null, + "centile": 53.5, + "sds": 0.08761005114139224, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 3 months, 3 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.3141683778234086, + "y": 78.6, + "b": null, + "centile": 53.5, + "sds": 0.08761005114139224, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 3 months, 3 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.3141683778234086, + "y": 0.08761005114139224, + "b": null, + "centile": 53.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 3 months, 3 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.3141683778234086, + "y": 0.08761005114139224, + "b": null, + "centile": 53.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 3 months, 3 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-10-02", + "chronological_decimal_age": 1.4784394250513346, + "corrected_decimal_age": 1.4784394250513346, + "chronological_calendar_age": "1 year, 5 months and 3 weeks", + "corrected_calendar_age": "1 year, 5 months and 3 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 80.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.08919353809279709, + "corrected_centile": 53.6, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.08919353809279709, + "chronological_centile": 53.6, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.4784394250513346, + "y": 80.7, + "b": null, + "centile": 53.6, + "sds": 0.08919353809279709, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 5 months and 3 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.4784394250513346, + "y": 80.7, + "b": null, + "centile": 53.6, + "sds": 0.08919353809279709, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 5 months and 3 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.4784394250513346, + "y": 0.08919353809279709, + "b": null, + "centile": 53.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 5 months and 3 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.4784394250513346, + "y": 0.08919353809279709, + "b": null, + "centile": 53.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 5 months and 3 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-12-01", + "chronological_decimal_age": 1.6427104722792607, + "corrected_decimal_age": 1.6427104722792607, + "chronological_calendar_age": "1 year, 7 months, 2 weeks and 6 days", + "corrected_calendar_age": "1 year, 7 months, 2 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 82.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.09248805901284973, + "corrected_centile": 53.7, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.09248805901284973, + "chronological_centile": 53.7, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.6427104722792607, + "y": 82.7, + "b": null, + "centile": 53.7, + "sds": 0.09248805901284973, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 7 months, 2 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.6427104722792607, + "y": 82.7, + "b": null, + "centile": 53.7, + "sds": 0.09248805901284973, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 7 months, 2 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.6427104722792607, + "y": 0.09248805901284973, + "b": null, + "centile": 53.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 7 months, 2 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.6427104722792607, + "y": 0.09248805901284973, + "b": null, + "centile": 53.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 7 months, 2 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-01-30", + "chronological_decimal_age": 1.8069815195071868, + "corrected_decimal_age": 1.8069815195071868, + "chronological_calendar_age": "1 year, 9 months, 2 weeks and 5 days", + "corrected_calendar_age": "1 year, 9 months, 2 weeks and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 84.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.09355549755302466, + "corrected_centile": 53.7, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.09355549755302466, + "chronological_centile": 53.7, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.8069815195071868, + "y": 84.6, + "b": null, + "centile": 53.7, + "sds": 0.09355549755302466, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 9 months, 2 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.8069815195071868, + "y": 84.6, + "b": null, + "centile": 53.7, + "sds": 0.09355549755302466, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 9 months, 2 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.8069815195071868, + "y": 0.09355549755302466, + "b": null, + "centile": 53.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 9 months, 2 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.8069815195071868, + "y": 0.09355549755302466, + "b": null, + "centile": 53.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 9 months, 2 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-03-31", + "chronological_decimal_age": 1.9712525667351128, + "corrected_decimal_age": 1.9712525667351128, + "chronological_calendar_age": "1 year, 11 months, 2 weeks and 6 days", + "corrected_calendar_age": "1 year, 11 months, 2 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 85.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.12670487293347135, + "corrected_centile": 45.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.12670487293347135, + "chronological_centile": 45.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.9712525667351128, + "y": 85.7, + "b": null, + "centile": 45.0, + "sds": -0.12670487293347135, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 2 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.9712525667351128, + "y": 85.7, + "b": null, + "centile": 45.0, + "sds": -0.12670487293347135, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 11 months, 2 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.9712525667351128, + "y": -0.12670487293347135, + "b": null, + "centile": 45.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 2 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.9712525667351128, + "y": -0.12670487293347135, + "b": null, + "centile": 45.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 11 months, 2 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-05-30", + "chronological_decimal_age": 2.135523613963039, + "corrected_decimal_age": 2.135523613963039, + "chronological_calendar_age": "2 years, 1 month, 2 weeks and 5 days", + "corrected_calendar_age": "2 years, 1 month, 2 weeks and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 87.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.08197287744859298, + "corrected_centile": 53.3, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.08197287744859298, + "chronological_centile": 53.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.135523613963039, + "y": 87.4, + "b": null, + "centile": 53.3, + "sds": 0.08197287744859298, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 1 month, 2 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.135523613963039, + "y": 87.4, + "b": null, + "centile": 53.3, + "sds": 0.08197287744859298, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 1 month, 2 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.135523613963039, + "y": 0.08197287744859298, + "b": null, + "centile": 53.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 1 month, 2 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.135523613963039, + "y": 0.08197287744859298, + "b": null, + "centile": 53.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 1 month, 2 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-07-29", + "chronological_decimal_age": 2.299794661190965, + "corrected_decimal_age": 2.299794661190965, + "chronological_calendar_age": "2 years, 3 months, 2 weeks and 4 days", + "corrected_calendar_age": "2 years, 3 months, 2 weeks and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 89.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.09565081415308065, + "corrected_centile": 53.8, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.09565081415308065, + "chronological_centile": 53.8, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.299794661190965, + "y": 89.1, + "b": null, + "centile": 53.8, + "sds": 0.09565081415308065, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 3 months, 2 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.299794661190965, + "y": 89.1, + "b": null, + "centile": 53.8, + "sds": 0.09565081415308065, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 3 months, 2 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.299794661190965, + "y": 0.09565081415308065, + "b": null, + "centile": 53.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 3 months, 2 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.299794661190965, + "y": 0.09565081415308065, + "b": null, + "centile": 53.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 3 months, 2 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-09-27", + "chronological_decimal_age": 2.4640657084188913, + "corrected_decimal_age": 2.4640657084188913, + "chronological_calendar_age": "2 years, 5 months, 2 weeks and 2 days", + "corrected_calendar_age": "2 years, 5 months, 2 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 90.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.10109247937394605, + "corrected_centile": 54.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.10109247937394605, + "chronological_centile": 54.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.4640657084188913, + "y": 90.7, + "b": null, + "centile": 54.0, + "sds": 0.10109247937394605, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 5 months, 2 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.4640657084188913, + "y": 90.7, + "b": null, + "centile": 54.0, + "sds": 0.10109247937394605, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 5 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.4640657084188913, + "y": 0.10109247937394605, + "b": null, + "centile": 54.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 5 months, 2 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.4640657084188913, + "y": 0.10109247937394605, + "b": null, + "centile": 54.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 5 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-11-26", + "chronological_decimal_age": 2.628336755646817, + "corrected_decimal_age": 2.628336755646817, + "chronological_calendar_age": "2 years, 7 months, 2 weeks and 1 day", + "corrected_calendar_age": "2 years, 7 months, 2 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 92.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.09750367077099285, + "corrected_centile": 53.9, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.09750367077099285, + "chronological_centile": 53.9, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.628336755646817, + "y": 92.2, + "b": null, + "centile": 53.9, + "sds": 0.09750367077099285, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months, 2 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.628336755646817, + "y": 92.2, + "b": null, + "centile": 53.9, + "sds": 0.09750367077099285, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 7 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.628336755646817, + "y": 0.09750367077099285, + "b": null, + "centile": 53.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months, 2 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.628336755646817, + "y": 0.09750367077099285, + "b": null, + "centile": 53.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 7 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-01-25", + "chronological_decimal_age": 2.7926078028747434, + "corrected_decimal_age": 2.7926078028747434, + "chronological_calendar_age": "2 years, 9 months and 2 weeks", + "corrected_calendar_age": "2 years, 9 months and 2 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 93.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.08284133020469303, + "corrected_centile": 53.3, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.08284133020469303, + "chronological_centile": 53.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.7926078028747434, + "y": 93.6, + "b": null, + "centile": 53.3, + "sds": 0.08284133020469303, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 9 months and 2 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.7926078028747434, + "y": 93.6, + "b": null, + "centile": 53.3, + "sds": 0.08284133020469303, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 9 months and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.7926078028747434, + "y": 0.08284133020469303, + "b": null, + "centile": 53.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 9 months and 2 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.7926078028747434, + "y": 0.08284133020469303, + "b": null, + "centile": 53.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 9 months and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-03-26", + "chronological_decimal_age": 2.9568788501026693, + "corrected_decimal_age": 2.9568788501026693, + "chronological_calendar_age": "2 years, 11 months, 2 weeks and 1 day", + "corrected_calendar_age": "2 years, 11 months, 2 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 95.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.10792721500255242, + "corrected_centile": 54.3, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.10792721500255242, + "chronological_centile": 54.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.9568788501026693, + "y": 95.1, + "b": null, + "centile": 54.3, + "sds": 0.10792721500255242, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 11 months, 2 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.9568788501026693, + "y": 95.1, + "b": null, + "centile": 54.3, + "sds": 0.10792721500255242, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 11 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.9568788501026693, + "y": 0.10792721500255242, + "b": null, + "centile": 54.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 11 months, 2 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.9568788501026693, + "y": 0.10792721500255242, + "b": null, + "centile": 54.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 11 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-05-25", + "chronological_decimal_age": 3.1211498973305956, + "corrected_decimal_age": 3.1211498973305956, + "chronological_calendar_age": "3 years, 1 month and 2 weeks", + "corrected_calendar_age": "3 years, 1 month and 2 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 96.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.09061424482833594, + "corrected_centile": 53.6, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.09061424482833594, + "chronological_centile": 53.6, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.1211498973305956, + "y": 96.4, + "b": null, + "centile": 53.6, + "sds": 0.09061424482833594, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 1 month and 2 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.1211498973305956, + "y": 96.4, + "b": null, + "centile": 53.6, + "sds": 0.09061424482833594, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 1 month and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.1211498973305956, + "y": 0.09061424482833594, + "b": null, + "centile": 53.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 1 month and 2 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.1211498973305956, + "y": 0.09061424482833594, + "b": null, + "centile": 53.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 1 month and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-07-24", + "chronological_decimal_age": 3.2854209445585214, + "corrected_decimal_age": 3.2854209445585214, + "chronological_calendar_age": "3 years, 3 months, 1 week and 6 days", + "corrected_calendar_age": "3 years, 3 months, 1 week and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 97.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.08328392043413364, + "corrected_centile": 53.3, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.08328392043413364, + "chronological_centile": 53.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.2854209445585214, + "y": 97.7, + "b": null, + "centile": 53.3, + "sds": 0.08328392043413364, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 1 week and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.2854209445585214, + "y": 97.7, + "b": null, + "centile": 53.3, + "sds": 0.08328392043413364, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 3 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.2854209445585214, + "y": 0.08328392043413364, + "b": null, + "centile": 53.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 1 week and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.2854209445585214, + "y": 0.08328392043413364, + "b": null, + "centile": 53.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 3 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-09-22", + "chronological_decimal_age": 3.4496919917864477, + "corrected_decimal_age": 3.4496919917864477, + "chronological_calendar_age": "3 years, 5 months, 1 week and 4 days", + "corrected_calendar_age": "3 years, 5 months, 1 week and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 99.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.0847709248166881, + "corrected_centile": 53.4, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.0847709248166881, + "chronological_centile": 53.4, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.4496919917864477, + "y": 99.0, + "b": null, + "centile": 53.4, + "sds": 0.0847709248166881, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 5 months, 1 week and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.4496919917864477, + "y": 99.0, + "b": null, + "centile": 53.4, + "sds": 0.0847709248166881, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 5 months, 1 week and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.4496919917864477, + "y": 0.0847709248166881, + "b": null, + "centile": 53.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 5 months, 1 week and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.4496919917864477, + "y": 0.0847709248166881, + "b": null, + "centile": 53.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 5 months, 1 week and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-11-21", + "chronological_decimal_age": 3.6139630390143735, + "corrected_decimal_age": 3.6139630390143735, + "chronological_calendar_age": "3 years, 7 months, 1 week and 3 days", + "corrected_calendar_age": "3 years, 7 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 100.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.09445526278139438, + "corrected_centile": 53.8, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.09445526278139438, + "chronological_centile": 53.8, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.6139630390143735, + "y": 100.3, + "b": null, + "centile": 53.8, + "sds": 0.09445526278139438, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 7 months, 1 week and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.6139630390143735, + "y": 100.3, + "b": null, + "centile": 53.8, + "sds": 0.09445526278139438, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 7 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.6139630390143735, + "y": 0.09445526278139438, + "b": null, + "centile": 53.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 7 months, 1 week and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.6139630390143735, + "y": 0.09445526278139438, + "b": null, + "centile": 53.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 7 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-01-20", + "chronological_decimal_age": 3.7782340862423, + "corrected_decimal_age": 3.7782340862423, + "chronological_calendar_age": "3 years, 9 months, 1 week and 2 days", + "corrected_calendar_age": "3 years, 9 months, 1 week and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 101.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.08774374972074453, + "corrected_centile": 53.5, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.08774374972074453, + "chronological_centile": 53.5, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.7782340862423, + "y": 101.5, + "b": null, + "centile": 53.5, + "sds": 0.08774374972074453, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 9 months, 1 week and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.7782340862423, + "y": 101.5, + "b": null, + "centile": 53.5, + "sds": 0.08774374972074453, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 9 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.7782340862423, + "y": 0.08774374972074453, + "b": null, + "centile": 53.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 9 months, 1 week and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.7782340862423, + "y": 0.08774374972074453, + "b": null, + "centile": 53.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 9 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-03-21", + "chronological_decimal_age": 3.9425051334702257, + "corrected_decimal_age": 3.9425051334702257, + "chronological_calendar_age": "3 years, 11 months, 1 week and 3 days", + "corrected_calendar_age": "3 years, 11 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 102.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.08864821022612461, + "corrected_centile": 53.5, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.08864821022612461, + "chronological_centile": 53.5, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.9425051334702257, + "y": 102.7, + "b": null, + "centile": 53.5, + "sds": 0.08864821022612461, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 1 week and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.9425051334702257, + "y": 102.7, + "b": null, + "centile": 53.5, + "sds": 0.08864821022612461, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 11 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.9425051334702257, + "y": 0.08864821022612461, + "b": null, + "centile": 53.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 1 week and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.9425051334702257, + "y": 0.08864821022612461, + "b": null, + "centile": 53.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 11 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-05-20", + "chronological_decimal_age": 4.1067761806981515, + "corrected_decimal_age": 4.1067761806981515, + "chronological_calendar_age": "4 years, 1 month, 1 week and 2 days", + "corrected_calendar_age": "4 years, 1 month, 1 week and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 102.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.10188310310784433, + "corrected_centile": 54.1, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.10188310310784433, + "chronological_centile": 54.1, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.1067761806981515, + "y": 102.7, + "b": null, + "centile": 54.1, + "sds": 0.10188310310784433, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 1 month, 1 week and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.1067761806981515, + "y": 102.7, + "b": null, + "centile": 54.1, + "sds": 0.10188310310784433, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 1 month, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.1067761806981515, + "y": 0.10188310310784433, + "b": null, + "centile": 54.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 1 month, 1 week and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.1067761806981515, + "y": 0.10188310310784433, + "b": null, + "centile": 54.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 1 month, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-07-19", + "chronological_decimal_age": 4.271047227926078, + "corrected_decimal_age": 4.271047227926078, + "chronological_calendar_age": "4 years, 3 months, 1 week and 1 day", + "corrected_calendar_age": "4 years, 3 months, 1 week and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 103.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.10595260140714431, + "corrected_centile": 54.2, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.10595260140714431, + "chronological_centile": 54.2, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.271047227926078, + "y": 103.9, + "b": null, + "centile": 54.2, + "sds": 0.10595260140714431, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 3 months, 1 week and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.271047227926078, + "y": 103.9, + "b": null, + "centile": 54.2, + "sds": 0.10595260140714431, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 3 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.271047227926078, + "y": 0.10595260140714431, + "b": null, + "centile": 54.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 3 months, 1 week and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.271047227926078, + "y": 0.10595260140714431, + "b": null, + "centile": 54.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 3 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-09-17", + "chronological_decimal_age": 4.435318275154004, + "corrected_decimal_age": 4.435318275154004, + "chronological_calendar_age": "4 years, 5 months and 6 days", + "corrected_calendar_age": "4 years, 5 months and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 105.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.12591161710716717, + "corrected_centile": 55.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.12591161710716717, + "chronological_centile": 55.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.435318275154004, + "y": 105.2, + "b": null, + "centile": 55.0, + "sds": 0.12591161710716717, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 5 months and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.435318275154004, + "y": 105.2, + "b": null, + "centile": 55.0, + "sds": 0.12591161710716717, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 5 months and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.435318275154004, + "y": 0.12591161710716717, + "b": null, + "centile": 55.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 5 months and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.435318275154004, + "y": 0.12591161710716717, + "b": null, + "centile": 55.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 5 months and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-11-16", + "chronological_decimal_age": 4.59958932238193, + "corrected_decimal_age": 4.59958932238193, + "chronological_calendar_age": "4 years, 7 months and 5 days", + "corrected_calendar_age": "4 years, 7 months and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 106.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.11812471804346407, + "corrected_centile": 54.7, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.11812471804346407, + "chronological_centile": 54.7, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.59958932238193, + "y": 106.4, + "b": null, + "centile": 54.7, + "sds": 0.11812471804346407, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 7 months and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.59958932238193, + "y": 106.4, + "b": null, + "centile": 54.7, + "sds": 0.11812471804346407, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 7 months and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.59958932238193, + "y": 0.11812471804346407, + "b": null, + "centile": 54.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 7 months and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.59958932238193, + "y": 0.11812471804346407, + "b": null, + "centile": 54.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 7 months and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-01-15", + "chronological_decimal_age": 4.763860369609857, + "corrected_decimal_age": 4.763860369609857, + "chronological_calendar_age": "4 years, 9 months and 4 days", + "corrected_calendar_age": "4 years, 9 months and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 107.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.10914020690417621, + "corrected_centile": 54.3, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.10914020690417621, + "chronological_centile": 54.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.763860369609857, + "y": 107.6, + "b": null, + "centile": 54.3, + "sds": 0.10914020690417621, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 9 months and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.763860369609857, + "y": 107.6, + "b": null, + "centile": 54.3, + "sds": 0.10914020690417621, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 9 months and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.763860369609857, + "y": 0.10914020690417621, + "b": null, + "centile": 54.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 9 months and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.763860369609857, + "y": 0.10914020690417621, + "b": null, + "centile": 54.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 9 months and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-03-15", + "chronological_decimal_age": 4.9281314168377826, + "corrected_decimal_age": 4.9281314168377826, + "chronological_calendar_age": "4 years, 11 months and 4 days", + "corrected_calendar_age": "4 years, 11 months and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 108.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.12526092722822468, + "corrected_centile": 55.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.12526092722822468, + "chronological_centile": 55.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.9281314168377826, + "y": 108.9, + "b": null, + "centile": 55.0, + "sds": 0.12526092722822468, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 11 months and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.9281314168377826, + "y": 108.9, + "b": null, + "centile": 55.0, + "sds": 0.12526092722822468, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 11 months and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.9281314168377826, + "y": 0.12526092722822468, + "b": null, + "centile": 55.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 11 months and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.9281314168377826, + "y": 0.12526092722822468, + "b": null, + "centile": 55.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 11 months and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-05-14", + "chronological_decimal_age": 5.092402464065708, + "corrected_decimal_age": 5.092402464065708, + "chronological_calendar_age": "5 years, 1 month and 3 days", + "corrected_calendar_age": "5 years, 1 month and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 110.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.10777254528078992, + "corrected_centile": 54.3, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.10777254528078992, + "chronological_centile": 54.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.092402464065708, + "y": 110.0, + "b": null, + "centile": 54.3, + "sds": 0.10777254528078992, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 1 month and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.092402464065708, + "y": 110.0, + "b": null, + "centile": 54.3, + "sds": 0.10777254528078992, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 1 month and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.092402464065708, + "y": 0.10777254528078992, + "b": null, + "centile": 54.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 1 month and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.092402464065708, + "y": 0.10777254528078992, + "b": null, + "centile": 54.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 1 month and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-07-13", + "chronological_decimal_age": 5.256673511293634, + "corrected_decimal_age": 5.256673511293634, + "chronological_calendar_age": "5 years, 3 months and 2 days", + "corrected_calendar_age": "5 years, 3 months and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 111.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.12109125687547018, + "corrected_centile": 54.8, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.12109125687547018, + "chronological_centile": 54.8, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.256673511293634, + "y": 111.2, + "b": null, + "centile": 54.8, + "sds": 0.12109125687547018, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 3 months and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.256673511293634, + "y": 111.2, + "b": null, + "centile": 54.8, + "sds": 0.12109125687547018, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 3 months and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.256673511293634, + "y": 0.12109125687547018, + "b": null, + "centile": 54.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 3 months and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.256673511293634, + "y": 0.12109125687547018, + "b": null, + "centile": 54.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 3 months and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-09-11", + "chronological_decimal_age": 5.420944558521561, + "corrected_decimal_age": 5.420944558521561, + "chronological_calendar_age": "5 years and 5 months", + "corrected_calendar_age": "5 years and 5 months", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 112.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.0995560120513868, + "corrected_centile": 54.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.0995560120513868, + "chronological_centile": 54.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.420944558521561, + "y": 112.2, + "b": null, + "centile": 54.0, + "sds": 0.0995560120513868, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years and 5 months", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.420944558521561, + "y": 112.2, + "b": null, + "centile": 54.0, + "sds": 0.0995560120513868, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years and 5 months", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.420944558521561, + "y": 0.0995560120513868, + "b": null, + "centile": 54.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years and 5 months", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.420944558521561, + "y": 0.0995560120513868, + "b": null, + "centile": 54.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years and 5 months", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-11-10", + "chronological_decimal_age": 5.585215605749487, + "corrected_decimal_age": 5.585215605749487, + "chronological_calendar_age": "5 years, 6 months, 4 weeks and 2 days", + "corrected_calendar_age": "5 years, 6 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 113.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.11009751540475163, + "corrected_centile": 54.4, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.11009751540475163, + "chronological_centile": 54.4, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.585215605749487, + "y": 113.3, + "b": null, + "centile": 54.4, + "sds": 0.11009751540475163, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 6 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.585215605749487, + "y": 113.3, + "b": null, + "centile": 54.4, + "sds": 0.11009751540475163, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 6 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.585215605749487, + "y": 0.11009751540475163, + "b": null, + "centile": 54.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 6 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.585215605749487, + "y": 0.11009751540475163, + "b": null, + "centile": 54.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 6 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-01-09", + "chronological_decimal_age": 5.749486652977413, + "corrected_decimal_age": 5.749486652977413, + "chronological_calendar_age": "5 years, 8 months, 4 weeks and 1 day", + "corrected_calendar_age": "5 years, 8 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 114.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.1035002218445737, + "corrected_centile": 54.1, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.1035002218445737, + "chronological_centile": 54.1, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.749486652977413, + "y": 114.3, + "b": null, + "centile": 54.1, + "sds": 0.1035002218445737, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 8 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.749486652977413, + "y": 114.3, + "b": null, + "centile": 54.1, + "sds": 0.1035002218445737, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 8 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.749486652977413, + "y": 0.1035002218445737, + "b": null, + "centile": 54.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 8 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.749486652977413, + "y": 0.1035002218445737, + "b": null, + "centile": 54.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 8 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-03-10", + "chronological_decimal_age": 5.9137577002053385, + "corrected_decimal_age": 5.9137577002053385, + "chronological_calendar_age": "5 years, 10 months, 3 weeks and 6 days", + "corrected_calendar_age": "5 years, 10 months, 3 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 115.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.10318552789634187, + "corrected_centile": 54.1, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.10318552789634187, + "chronological_centile": 54.1, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.9137577002053385, + "y": 115.3, + "b": null, + "centile": 54.1, + "sds": 0.10318552789634187, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 10 months, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.9137577002053385, + "y": 115.3, + "b": null, + "centile": 54.1, + "sds": 0.10318552789634187, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 10 months, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.9137577002053385, + "y": 0.10318552789634187, + "b": null, + "centile": 54.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 10 months, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.9137577002053385, + "y": 0.10318552789634187, + "b": null, + "centile": 54.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 10 months, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-05-09", + "chronological_decimal_age": 6.078028747433265, + "corrected_decimal_age": 6.078028747433265, + "chronological_calendar_age": "6 years and 4 weeks", + "corrected_calendar_age": "6 years and 4 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 116.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.10287502469514583, + "corrected_centile": 54.1, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.10287502469514583, + "chronological_centile": 54.1, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.078028747433265, + "y": 116.3, + "b": null, + "centile": 54.1, + "sds": 0.10287502469514583, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.078028747433265, + "y": 116.3, + "b": null, + "centile": 54.1, + "sds": 0.10287502469514583, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.078028747433265, + "y": 0.10287502469514583, + "b": null, + "centile": 54.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.078028747433265, + "y": 0.10287502469514583, + "b": null, + "centile": 54.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-07-08", + "chronological_decimal_age": 6.242299794661191, + "corrected_decimal_age": 6.242299794661191, + "chronological_calendar_age": "6 years, 2 months, 3 weeks and 6 days", + "corrected_calendar_age": "6 years, 2 months, 3 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 117.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.10652270385910403, + "corrected_centile": 54.2, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.10652270385910403, + "chronological_centile": 54.2, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.242299794661191, + "y": 117.3, + "b": null, + "centile": 54.2, + "sds": 0.10652270385910403, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 2 months, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.242299794661191, + "y": 117.3, + "b": null, + "centile": 54.2, + "sds": 0.10652270385910403, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 2 months, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.242299794661191, + "y": 0.10652270385910403, + "b": null, + "centile": 54.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 2 months, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.242299794661191, + "y": 0.10652270385910403, + "b": null, + "centile": 54.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 2 months, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-09-06", + "chronological_decimal_age": 6.406570841889117, + "corrected_decimal_age": 6.406570841889117, + "chronological_calendar_age": "6 years, 4 months, 3 weeks and 5 days", + "corrected_calendar_age": "6 years, 4 months, 3 weeks and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 118.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.11047591092214655, + "corrected_centile": 54.4, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.11047591092214655, + "chronological_centile": 54.4, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.406570841889117, + "y": 118.3, + "b": null, + "centile": 54.4, + "sds": 0.11047591092214655, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 4 months, 3 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.406570841889117, + "y": 118.3, + "b": null, + "centile": 54.4, + "sds": 0.11047591092214655, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 4 months, 3 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.406570841889117, + "y": 0.11047591092214655, + "b": null, + "centile": 54.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 4 months, 3 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.406570841889117, + "y": 0.11047591092214655, + "b": null, + "centile": 54.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 4 months, 3 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-11-05", + "chronological_decimal_age": 6.570841889117043, + "corrected_decimal_age": 6.570841889117043, + "chronological_calendar_age": "6 years, 6 months, 3 weeks and 4 days", + "corrected_calendar_age": "6 years, 6 months, 3 weeks and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 119.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.11590089823802942, + "corrected_centile": 54.6, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.11590089823802942, + "chronological_centile": 54.6, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.570841889117043, + "y": 119.3, + "b": null, + "centile": 54.6, + "sds": 0.11590089823802942, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 6 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.570841889117043, + "y": 119.3, + "b": null, + "centile": 54.6, + "sds": 0.11590089823802942, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 6 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.570841889117043, + "y": 0.11590089823802942, + "b": null, + "centile": 54.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 6 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.570841889117043, + "y": 0.11590089823802942, + "b": null, + "centile": 54.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 6 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-01-04", + "chronological_decimal_age": 6.7351129363449695, + "corrected_decimal_age": 6.7351129363449695, + "chronological_calendar_age": "6 years, 8 months, 3 weeks and 3 days", + "corrected_calendar_age": "6 years, 8 months, 3 weeks and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 120.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.12142632829771323, + "corrected_centile": 54.8, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.12142632829771323, + "chronological_centile": 54.8, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.7351129363449695, + "y": 120.3, + "b": null, + "centile": 54.8, + "sds": 0.12142632829771323, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 8 months, 3 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.7351129363449695, + "y": 120.3, + "b": null, + "centile": 54.8, + "sds": 0.12142632829771323, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 8 months, 3 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.7351129363449695, + "y": 0.12142632829771323, + "b": null, + "centile": 54.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 8 months, 3 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.7351129363449695, + "y": 0.12142632829771323, + "b": null, + "centile": 54.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 8 months, 3 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-03-05", + "chronological_decimal_age": 6.899383983572895, + "corrected_decimal_age": 6.899383983572895, + "chronological_calendar_age": "6 years, 10 months, 3 weeks and 1 day", + "corrected_calendar_age": "6 years, 10 months, 3 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 121.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.12379767510717236, + "corrected_centile": 54.9, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.12379767510717236, + "chronological_centile": 54.9, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.899383983572895, + "y": 121.3, + "b": null, + "centile": 54.9, + "sds": 0.12379767510717236, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 10 months, 3 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.899383983572895, + "y": 121.3, + "b": null, + "centile": 54.9, + "sds": 0.12379767510717236, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 10 months, 3 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.899383983572895, + "y": 0.12379767510717236, + "b": null, + "centile": 54.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 10 months, 3 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.899383983572895, + "y": 0.12379767510717236, + "b": null, + "centile": 54.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 10 months, 3 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-05-04", + "chronological_decimal_age": 7.063655030800821, + "corrected_decimal_age": 7.063655030800821, + "chronological_calendar_age": "7 years, 3 weeks and 2 days", + "corrected_calendar_age": "7 years, 3 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 122.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.12503610334615314, + "corrected_centile": 55.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.12503610334615314, + "chronological_centile": 55.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.063655030800821, + "y": 122.3, + "b": null, + "centile": 55.0, + "sds": 0.12503610334615314, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 3 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.063655030800821, + "y": 122.3, + "b": null, + "centile": 55.0, + "sds": 0.12503610334615314, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 3 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.063655030800821, + "y": 0.12503610334615314, + "b": null, + "centile": 55.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 3 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.063655030800821, + "y": 0.12503610334615314, + "b": null, + "centile": 55.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 3 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-07-03", + "chronological_decimal_age": 7.227926078028747, + "corrected_decimal_age": 7.227926078028747, + "chronological_calendar_age": "7 years, 2 months, 3 weeks and 1 day", + "corrected_calendar_age": "7 years, 2 months, 3 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 123.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.12327171545281429, + "corrected_centile": 54.9, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.12327171545281429, + "chronological_centile": 54.9, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.227926078028747, + "y": 123.3, + "b": null, + "centile": 54.9, + "sds": 0.12327171545281429, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 2 months, 3 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.227926078028747, + "y": 123.3, + "b": null, + "centile": 54.9, + "sds": 0.12327171545281429, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 2 months, 3 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.227926078028747, + "y": 0.12327171545281429, + "b": null, + "centile": 54.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 2 months, 3 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.227926078028747, + "y": 0.12327171545281429, + "b": null, + "centile": 54.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 2 months, 3 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-09-01", + "chronological_decimal_age": 7.392197125256674, + "corrected_decimal_age": 7.392197125256674, + "chronological_calendar_age": "7 years, 4 months and 3 weeks", + "corrected_calendar_age": "7 years, 4 months and 3 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 124.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.11902705374328525, + "corrected_centile": 54.7, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.11902705374328525, + "chronological_centile": 54.7, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.392197125256674, + "y": 124.3, + "b": null, + "centile": 54.7, + "sds": 0.11902705374328525, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 4 months and 3 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.392197125256674, + "y": 124.3, + "b": null, + "centile": 54.7, + "sds": 0.11902705374328525, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 4 months and 3 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.392197125256674, + "y": 0.11902705374328525, + "b": null, + "centile": 54.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 4 months and 3 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.392197125256674, + "y": 0.11902705374328525, + "b": null, + "centile": 54.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 4 months and 3 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-10-31", + "chronological_decimal_age": 7.5564681724846, + "corrected_decimal_age": 7.5564681724846, + "chronological_calendar_age": "7 years, 6 months, 2 weeks and 6 days", + "corrected_calendar_age": "7 years, 6 months, 2 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 125.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.11690211955932109, + "corrected_centile": 54.7, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.11690211955932109, + "chronological_centile": 54.7, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.5564681724846, + "y": 125.3, + "b": null, + "centile": 54.7, + "sds": 0.11690211955932109, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 6 months, 2 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.5564681724846, + "y": 125.3, + "b": null, + "centile": 54.7, + "sds": 0.11690211955932109, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 6 months, 2 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.5564681724846, + "y": 0.11690211955932109, + "b": null, + "centile": 54.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 6 months, 2 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.5564681724846, + "y": 0.11690211955932109, + "b": null, + "centile": 54.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 6 months, 2 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-12-30", + "chronological_decimal_age": 7.7207392197125255, + "corrected_decimal_age": 7.7207392197125255, + "chronological_calendar_age": "7 years, 8 months, 2 weeks and 5 days", + "corrected_calendar_age": "7 years, 8 months, 2 weeks and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 126.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.13533916052237363, + "corrected_centile": 55.4, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.13533916052237363, + "chronological_centile": 55.4, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.7207392197125255, + "y": 126.4, + "b": null, + "centile": 55.4, + "sds": 0.13533916052237363, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 8 months, 2 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.7207392197125255, + "y": 126.4, + "b": null, + "centile": 55.4, + "sds": 0.13533916052237363, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 8 months, 2 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.7207392197125255, + "y": 0.13533916052237363, + "b": null, + "centile": 55.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 8 months, 2 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.7207392197125255, + "y": 0.13533916052237363, + "b": null, + "centile": 55.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 8 months, 2 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-02-28", + "chronological_decimal_age": 7.885010266940451, + "corrected_decimal_age": 7.885010266940451, + "chronological_calendar_age": "7 years, 10 months, 2 weeks and 3 days", + "corrected_calendar_age": "7 years, 10 months, 2 weeks and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 127.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.11760659783781095, + "corrected_centile": 54.7, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.11760659783781095, + "chronological_centile": 54.7, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.885010266940451, + "y": 127.3, + "b": null, + "centile": 54.7, + "sds": 0.11760659783781095, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 10 months, 2 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.885010266940451, + "y": 127.3, + "b": null, + "centile": 54.7, + "sds": 0.11760659783781095, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 10 months, 2 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.885010266940451, + "y": 0.11760659783781095, + "b": null, + "centile": 54.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 10 months, 2 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.885010266940451, + "y": 0.11760659783781095, + "b": null, + "centile": 54.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 10 months, 2 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-04-29", + "chronological_decimal_age": 8.049281314168377, + "corrected_decimal_age": 8.049281314168377, + "chronological_calendar_age": "8 years, 2 weeks and 4 days", + "corrected_calendar_age": "8 years, 2 weeks and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 128.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.1230948482168083, + "corrected_centile": 54.9, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.1230948482168083, + "chronological_centile": 54.9, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 8.049281314168377, + "y": 128.3, + "b": null, + "centile": 54.9, + "sds": 0.1230948482168083, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 2 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.049281314168377, + "y": 128.3, + "b": null, + "centile": 54.9, + "sds": 0.1230948482168083, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 2 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 8.049281314168377, + "y": 0.1230948482168083, + "b": null, + "centile": 54.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 2 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.049281314168377, + "y": 0.1230948482168083, + "b": null, + "centile": 54.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 2 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-06-28", + "chronological_decimal_age": 8.213552361396303, + "corrected_decimal_age": 8.213552361396303, + "chronological_calendar_age": "8 years, 2 months, 2 weeks and 3 days", + "corrected_calendar_age": "8 years, 2 months, 2 weeks and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 129.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.1155871800038564, + "corrected_centile": 54.6, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.1155871800038564, + "chronological_centile": 54.6, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 8.213552361396303, + "y": 129.2, + "b": null, + "centile": 54.6, + "sds": 0.1155871800038564, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 2 months, 2 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.213552361396303, + "y": 129.2, + "b": null, + "centile": 54.6, + "sds": 0.1155871800038564, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 2 months, 2 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 8.213552361396303, + "y": 0.1155871800038564, + "b": null, + "centile": 54.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 2 months, 2 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.213552361396303, + "y": 0.1155871800038564, + "b": null, + "centile": 54.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 2 months, 2 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-08-27", + "chronological_decimal_age": 8.37782340862423, + "corrected_decimal_age": 8.37782340862423, + "chronological_calendar_age": "8 years, 4 months, 2 weeks and 2 days", + "corrected_calendar_age": "8 years, 4 months, 2 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 130.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.11129137723229396, + "corrected_centile": 54.4, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.11129137723229396, + "chronological_centile": 54.4, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 8.37782340862423, + "y": 130.1, + "b": null, + "centile": 54.4, + "sds": 0.11129137723229396, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 4 months, 2 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.37782340862423, + "y": 130.1, + "b": null, + "centile": 54.4, + "sds": 0.11129137723229396, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 4 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 8.37782340862423, + "y": 0.11129137723229396, + "b": null, + "centile": 54.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 4 months, 2 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.37782340862423, + "y": 0.11129137723229396, + "b": null, + "centile": 54.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 4 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-10-26", + "chronological_decimal_age": 8.542094455852157, + "corrected_decimal_age": 8.542094455852157, + "chronological_calendar_age": "8 years, 6 months, 2 weeks and 1 day", + "corrected_calendar_age": "8 years, 6 months, 2 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 131.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.11169952605298744, + "corrected_centile": 54.4, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.11169952605298744, + "chronological_centile": 54.4, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 8.542094455852157, + "y": 131.0, + "b": null, + "centile": 54.4, + "sds": 0.11169952605298744, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 6 months, 2 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.542094455852157, + "y": 131.0, + "b": null, + "centile": 54.4, + "sds": 0.11169952605298744, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 6 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 8.542094455852157, + "y": 0.11169952605298744, + "b": null, + "centile": 54.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 6 months, 2 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.542094455852157, + "y": 0.11169952605298744, + "b": null, + "centile": 54.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 6 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-12-25", + "chronological_decimal_age": 8.706365503080082, + "corrected_decimal_age": 8.706365503080082, + "chronological_calendar_age": "8 years, 8 months and 2 weeks", + "corrected_calendar_age": "8 years, 8 months and 2 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 131.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.114614038994919, + "corrected_centile": 54.6, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.114614038994919, + "chronological_centile": 54.6, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 8.706365503080082, + "y": 131.9, + "b": null, + "centile": 54.6, + "sds": 0.114614038994919, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 8 months and 2 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.706365503080082, + "y": 131.9, + "b": null, + "centile": 54.6, + "sds": 0.114614038994919, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 8 months and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 8.706365503080082, + "y": 0.114614038994919, + "b": null, + "centile": 54.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 8 months and 2 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.706365503080082, + "y": 0.114614038994919, + "b": null, + "centile": 54.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 8 months and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1768-02-23", + "chronological_decimal_age": 8.870636550308008, + "corrected_decimal_age": 8.870636550308008, + "chronological_calendar_age": "8 years, 10 months, 1 week and 5 days", + "corrected_calendar_age": "8 years, 10 months, 1 week and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 132.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.11736088505050883, + "corrected_centile": 54.7, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.11736088505050883, + "chronological_centile": 54.7, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 8.870636550308008, + "y": 132.8, + "b": null, + "centile": 54.7, + "sds": 0.11736088505050883, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 10 months, 1 week and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.870636550308008, + "y": 132.8, + "b": null, + "centile": 54.7, + "sds": 0.11736088505050883, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 10 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 8.870636550308008, + "y": 0.11736088505050883, + "b": null, + "centile": 54.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 10 months, 1 week and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.870636550308008, + "y": 0.11736088505050883, + "b": null, + "centile": 54.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 10 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1768-04-23", + "chronological_decimal_age": 9.034907597535934, + "corrected_decimal_age": 9.034907597535934, + "chronological_calendar_age": "9 years, 1 week and 5 days", + "corrected_calendar_age": "9 years, 1 week and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 133.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.11813977958978868, + "corrected_centile": 54.7, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.11813977958978868, + "chronological_centile": 54.7, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 9.034907597535934, + "y": 133.7, + "b": null, + "centile": 54.7, + "sds": 0.11813977958978868, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 1 week and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.034907597535934, + "y": 133.7, + "b": null, + "centile": 54.7, + "sds": 0.11813977958978868, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 9.034907597535934, + "y": 0.11813977958978868, + "b": null, + "centile": 54.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 1 week and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.034907597535934, + "y": 0.11813977958978868, + "b": null, + "centile": 54.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1768-06-22", + "chronological_decimal_age": 9.19917864476386, + "corrected_decimal_age": 9.19917864476386, + "chronological_calendar_age": "9 years, 2 months, 1 week and 4 days", + "corrected_calendar_age": "9 years, 2 months, 1 week and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 134.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.13321943303124983, + "corrected_centile": 55.3, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.13321943303124983, + "chronological_centile": 55.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 9.19917864476386, + "y": 134.7, + "b": null, + "centile": 55.3, + "sds": 0.13321943303124983, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 2 months, 1 week and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.19917864476386, + "y": 134.7, + "b": null, + "centile": 55.3, + "sds": 0.13321943303124983, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 2 months, 1 week and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 9.19917864476386, + "y": 0.13321943303124983, + "b": null, + "centile": 55.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 2 months, 1 week and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.19917864476386, + "y": 0.13321943303124983, + "b": null, + "centile": 55.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 2 months, 1 week and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1768-08-21", + "chronological_decimal_age": 9.363449691991786, + "corrected_decimal_age": 9.363449691991786, + "chronological_calendar_age": "9 years, 4 months, 1 week and 3 days", + "corrected_calendar_age": "9 years, 4 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 135.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.1298280786457806, + "corrected_centile": 55.2, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.1298280786457806, + "chronological_centile": 55.2, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 9.363449691991786, + "y": 135.6, + "b": null, + "centile": 55.2, + "sds": 0.1298280786457806, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 4 months, 1 week and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.363449691991786, + "y": 135.6, + "b": null, + "centile": 55.2, + "sds": 0.1298280786457806, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 4 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 9.363449691991786, + "y": 0.1298280786457806, + "b": null, + "centile": 55.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 4 months, 1 week and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.363449691991786, + "y": 0.1298280786457806, + "b": null, + "centile": 55.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 4 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1768-10-20", + "chronological_decimal_age": 9.527720739219713, + "corrected_decimal_age": 9.527720739219713, + "chronological_calendar_age": "9 years, 6 months, 1 week and 2 days", + "corrected_calendar_age": "9 years, 6 months, 1 week and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 136.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.12357976033730331, + "corrected_centile": 54.9, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.12357976033730331, + "chronological_centile": 54.9, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 9.527720739219713, + "y": 136.5, + "b": null, + "centile": 54.9, + "sds": 0.12357976033730331, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 6 months, 1 week and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.527720739219713, + "y": 136.5, + "b": null, + "centile": 54.9, + "sds": 0.12357976033730331, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 6 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 9.527720739219713, + "y": 0.12357976033730331, + "b": null, + "centile": 54.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 6 months, 1 week and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.527720739219713, + "y": 0.12357976033730331, + "b": null, + "centile": 54.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 6 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1768-12-19", + "chronological_decimal_age": 9.69199178644764, + "corrected_decimal_age": 9.69199178644764, + "chronological_calendar_age": "9 years, 8 months, 1 week and 1 day", + "corrected_calendar_age": "9 years, 8 months, 1 week and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 137.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.13379112791142314, + "corrected_centile": 55.3, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.13379112791142314, + "chronological_centile": 55.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 9.69199178644764, + "y": 137.5, + "b": null, + "centile": 55.3, + "sds": 0.13379112791142314, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 8 months, 1 week and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.69199178644764, + "y": 137.5, + "b": null, + "centile": 55.3, + "sds": 0.13379112791142314, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 8 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 9.69199178644764, + "y": 0.13379112791142314, + "b": null, + "centile": 55.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 8 months, 1 week and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.69199178644764, + "y": 0.13379112791142314, + "b": null, + "centile": 55.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 8 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1769-02-17", + "chronological_decimal_age": 9.856262833675565, + "corrected_decimal_age": 9.856262833675565, + "chronological_calendar_age": "9 years, 10 months and 6 days", + "corrected_calendar_age": "9 years, 10 months and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 138.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.12595559541005752, + "corrected_centile": 55.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.12595559541005752, + "chronological_centile": 55.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 9.856262833675565, + "y": 138.4, + "b": null, + "centile": 55.0, + "sds": 0.12595559541005752, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 10 months and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.856262833675565, + "y": 138.4, + "b": null, + "centile": 55.0, + "sds": 0.12595559541005752, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 10 months and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 9.856262833675565, + "y": 0.12595559541005752, + "b": null, + "centile": 55.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 10 months and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.856262833675565, + "y": 0.12595559541005752, + "b": null, + "centile": 55.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 10 months and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1769-04-18", + "chronological_decimal_age": 10.020533880903491, + "corrected_decimal_age": 10.020533880903491, + "chronological_calendar_age": "10 years and 1 week", + "corrected_calendar_age": "10 years and 1 week", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 139.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.13407187310597687, + "corrected_centile": 55.3, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.13407187310597687, + "chronological_centile": 55.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 10.020533880903491, + "y": 139.4, + "b": null, + "centile": 55.3, + "sds": 0.13407187310597687, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years and 1 week", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.020533880903491, + "y": 139.4, + "b": null, + "centile": 55.3, + "sds": 0.13407187310597687, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years and 1 week", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 10.020533880903491, + "y": 0.13407187310597687, + "b": null, + "centile": 55.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years and 1 week", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.020533880903491, + "y": 0.13407187310597687, + "b": null, + "centile": 55.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years and 1 week", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1769-06-17", + "chronological_decimal_age": 10.184804928131417, + "corrected_decimal_age": 10.184804928131417, + "chronological_calendar_age": "10 years, 2 months and 6 days", + "corrected_calendar_age": "10 years, 2 months and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 140.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.1261125444356041, + "corrected_centile": 55.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.1261125444356041, + "chronological_centile": 55.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 10.184804928131417, + "y": 140.3, + "b": null, + "centile": 55.0, + "sds": 0.1261125444356041, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 2 months and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.184804928131417, + "y": 140.3, + "b": null, + "centile": 55.0, + "sds": 0.1261125444356041, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 2 months and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 10.184804928131417, + "y": 0.1261125444356041, + "b": null, + "centile": 55.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 2 months and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.184804928131417, + "y": 0.1261125444356041, + "b": null, + "centile": 55.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 2 months and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1769-08-16", + "chronological_decimal_age": 10.349075975359343, + "corrected_decimal_age": 10.349075975359343, + "chronological_calendar_age": "10 years, 4 months and 5 days", + "corrected_calendar_age": "10 years, 4 months and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 141.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.13410318183752243, + "corrected_centile": 55.3, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.13410318183752243, + "chronological_centile": 55.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 10.349075975359343, + "y": 141.3, + "b": null, + "centile": 55.3, + "sds": 0.13410318183752243, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 4 months and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.349075975359343, + "y": 141.3, + "b": null, + "centile": 55.3, + "sds": 0.13410318183752243, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 4 months and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 10.349075975359343, + "y": 0.13410318183752243, + "b": null, + "centile": 55.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 4 months and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.349075975359343, + "y": 0.13410318183752243, + "b": null, + "centile": 55.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 4 months and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1769-10-15", + "chronological_decimal_age": 10.513347022587268, + "corrected_decimal_age": 10.513347022587268, + "chronological_calendar_age": "10 years, 6 months and 4 days", + "corrected_calendar_age": "10 years, 6 months and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 142.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.12679821622459234, + "corrected_centile": 55.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.12679821622459234, + "chronological_centile": 55.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 10.513347022587268, + "y": 142.2, + "b": null, + "centile": 55.0, + "sds": 0.12679821622459234, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 6 months and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.513347022587268, + "y": 142.2, + "b": null, + "centile": 55.0, + "sds": 0.12679821622459234, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 6 months and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 10.513347022587268, + "y": 0.12679821622459234, + "b": null, + "centile": 55.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 6 months and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.513347022587268, + "y": 0.12679821622459234, + "b": null, + "centile": 55.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 6 months and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1769-12-14", + "chronological_decimal_age": 10.677618069815194, + "corrected_decimal_age": 10.677618069815194, + "chronological_calendar_age": "10 years, 8 months and 3 days", + "corrected_calendar_age": "10 years, 8 months and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 143.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.13459834954292277, + "corrected_centile": 55.4, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.13459834954292277, + "chronological_centile": 55.4, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 10.677618069815194, + "y": 143.2, + "b": null, + "centile": 55.4, + "sds": 0.13459834954292277, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 8 months and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.677618069815194, + "y": 143.2, + "b": null, + "centile": 55.4, + "sds": 0.13459834954292277, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 8 months and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 10.677618069815194, + "y": 0.13459834954292277, + "b": null, + "centile": 55.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 8 months and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.677618069815194, + "y": 0.13459834954292277, + "b": null, + "centile": 55.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 8 months and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1770-02-12", + "chronological_decimal_age": 10.841889117043122, + "corrected_decimal_age": 10.841889117043122, + "chronological_calendar_age": "10 years, 10 months and 1 day", + "corrected_calendar_age": "10 years, 10 months and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 144.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.12777768536290465, + "corrected_centile": 55.1, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.12777768536290465, + "chronological_centile": 55.1, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 10.841889117043122, + "y": 144.1, + "b": null, + "centile": 55.1, + "sds": 0.12777768536290465, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 10 months and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.841889117043122, + "y": 144.1, + "b": null, + "centile": 55.1, + "sds": 0.12777768536290465, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 10 months and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 10.841889117043122, + "y": 0.12777768536290465, + "b": null, + "centile": 55.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "10 years, 10 months and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 10.841889117043122, + "y": 0.12777768536290465, + "b": null, + "centile": 55.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "10 years, 10 months and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1770-04-13", + "chronological_decimal_age": 11.006160164271048, + "corrected_decimal_age": 11.006160164271048, + "chronological_calendar_age": "11 years and 2 days", + "corrected_calendar_age": "11 years and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 145.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.1370181524270528, + "corrected_centile": 55.4, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.1370181524270528, + "chronological_centile": 55.4, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 11.006160164271048, + "y": 145.1, + "b": null, + "centile": 55.4, + "sds": 0.1370181524270528, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.006160164271048, + "y": 145.1, + "b": null, + "centile": 55.4, + "sds": 0.1370181524270528, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 11.006160164271048, + "y": 0.1370181524270528, + "b": null, + "centile": 55.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.006160164271048, + "y": 0.1370181524270528, + "b": null, + "centile": 55.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1770-06-12", + "chronological_decimal_age": 11.170431211498974, + "corrected_decimal_age": 11.170431211498974, + "chronological_calendar_age": "11 years, 2 months and 1 day", + "corrected_calendar_age": "11 years, 2 months and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 146.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.1319255867081257, + "corrected_centile": 55.2, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.1319255867081257, + "chronological_centile": 55.2, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 11.170431211498974, + "y": 146.0, + "b": null, + "centile": 55.2, + "sds": 0.1319255867081257, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 2 months and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.170431211498974, + "y": 146.0, + "b": null, + "centile": 55.2, + "sds": 0.1319255867081257, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 2 months and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 11.170431211498974, + "y": 0.1319255867081257, + "b": null, + "centile": 55.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 2 months and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.170431211498974, + "y": 0.1319255867081257, + "b": null, + "centile": 55.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 2 months and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1770-08-11", + "chronological_decimal_age": 11.3347022587269, + "corrected_decimal_age": 11.3347022587269, + "chronological_calendar_age": "11 years and 4 months", + "corrected_calendar_age": "11 years and 4 months", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 146.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.12709959634991377, + "corrected_centile": 55.1, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.12709959634991377, + "chronological_centile": 55.1, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 11.3347022587269, + "y": 146.9, + "b": null, + "centile": 55.1, + "sds": 0.12709959634991377, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years and 4 months", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.3347022587269, + "y": 146.9, + "b": null, + "centile": 55.1, + "sds": 0.12709959634991377, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years and 4 months", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 11.3347022587269, + "y": 0.12709959634991377, + "b": null, + "centile": 55.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years and 4 months", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.3347022587269, + "y": 0.12709959634991377, + "b": null, + "centile": 55.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years and 4 months", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1770-10-10", + "chronological_decimal_age": 11.498973305954825, + "corrected_decimal_age": 11.498973305954825, + "chronological_calendar_age": "11 years, 5 months, 4 weeks and 1 day", + "corrected_calendar_age": "11 years, 5 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 147.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.13811798636338224, + "corrected_centile": 55.5, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.13811798636338224, + "chronological_centile": 55.5, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 11.498973305954825, + "y": 147.9, + "b": null, + "centile": 55.5, + "sds": 0.13811798636338224, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 5 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.498973305954825, + "y": 147.9, + "b": null, + "centile": 55.5, + "sds": 0.13811798636338224, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 5 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 11.498973305954825, + "y": 0.13811798636338224, + "b": null, + "centile": 55.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 5 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.498973305954825, + "y": 0.13811798636338224, + "b": null, + "centile": 55.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 5 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1770-12-09", + "chronological_decimal_age": 11.663244353182751, + "corrected_decimal_age": 11.663244353182751, + "chronological_calendar_age": "11 years, 7 months and 4 weeks", + "corrected_calendar_age": "11 years, 7 months and 4 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 148.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.13378421658013764, + "corrected_centile": 55.3, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.13378421658013764, + "chronological_centile": 55.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 11.663244353182751, + "y": 148.8, + "b": null, + "centile": 55.3, + "sds": 0.13378421658013764, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 7 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.663244353182751, + "y": 148.8, + "b": null, + "centile": 55.3, + "sds": 0.13378421658013764, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 7 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 11.663244353182751, + "y": 0.13378421658013764, + "b": null, + "centile": 55.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 7 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.663244353182751, + "y": 0.13378421658013764, + "b": null, + "centile": 55.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 7 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1771-02-07", + "chronological_decimal_age": 11.827515400410677, + "corrected_decimal_age": 11.827515400410677, + "chronological_calendar_age": "11 years, 9 months, 3 weeks and 6 days", + "corrected_calendar_age": "11 years, 9 months, 3 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 149.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.14238192237202707, + "corrected_centile": 55.7, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.14238192237202707, + "chronological_centile": 55.7, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 11.827515400410677, + "y": 149.8, + "b": null, + "centile": 55.7, + "sds": 0.14238192237202707, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 9 months, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.827515400410677, + "y": 149.8, + "b": null, + "centile": 55.7, + "sds": 0.14238192237202707, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 9 months, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 11.827515400410677, + "y": 0.14238192237202707, + "b": null, + "centile": 55.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 9 months, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.827515400410677, + "y": 0.14238192237202707, + "b": null, + "centile": 55.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 9 months, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1771-04-08", + "chronological_decimal_age": 11.991786447638603, + "corrected_decimal_age": 11.991786447638603, + "chronological_calendar_age": "11 years, 11 months and 4 weeks", + "corrected_calendar_age": "11 years, 11 months and 4 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 150.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.13869040754444284, + "corrected_centile": 55.5, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.13869040754444284, + "chronological_centile": 55.5, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 11.991786447638603, + "y": 150.7, + "b": null, + "centile": 55.5, + "sds": 0.13869040754444284, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 11 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.991786447638603, + "y": 150.7, + "b": null, + "centile": 55.5, + "sds": 0.13869040754444284, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 11 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 11.991786447638603, + "y": 0.13869040754444284, + "b": null, + "centile": 55.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 years, 11 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 11.991786447638603, + "y": 0.13869040754444284, + "b": null, + "centile": 55.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 years, 11 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1771-06-07", + "chronological_decimal_age": 12.15605749486653, + "corrected_decimal_age": 12.15605749486653, + "chronological_calendar_age": "12 years, 1 month, 3 weeks and 6 days", + "corrected_calendar_age": "12 years, 1 month, 3 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 151.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.14750604002337875, + "corrected_centile": 55.9, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.14750604002337875, + "chronological_centile": 55.9, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 12.15605749486653, + "y": 151.7, + "b": null, + "centile": 55.9, + "sds": 0.14750604002337875, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "12 years, 1 month, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 12.15605749486653, + "y": 151.7, + "b": null, + "centile": 55.9, + "sds": 0.14750604002337875, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "12 years, 1 month, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 12.15605749486653, + "y": 0.14750604002337875, + "b": null, + "centile": 55.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "12 years, 1 month, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 12.15605749486653, + "y": 0.14750604002337875, + "b": null, + "centile": 55.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "12 years, 1 month, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1771-08-06", + "chronological_decimal_age": 12.320328542094456, + "corrected_decimal_age": 12.320328542094456, + "chronological_calendar_age": "12 years, 3 months, 3 weeks and 5 days", + "corrected_calendar_age": "12 years, 3 months, 3 weeks and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 152.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.1429371885395845, + "corrected_centile": 55.7, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.1429371885395845, + "chronological_centile": 55.7, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 12.320328542094456, + "y": 152.6, + "b": null, + "centile": 55.7, + "sds": 0.1429371885395845, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "12 years, 3 months, 3 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 12.320328542094456, + "y": 152.6, + "b": null, + "centile": 55.7, + "sds": 0.1429371885395845, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "12 years, 3 months, 3 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 12.320328542094456, + "y": 0.1429371885395845, + "b": null, + "centile": 55.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "12 years, 3 months, 3 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 12.320328542094456, + "y": 0.1429371885395845, + "b": null, + "centile": 55.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "12 years, 3 months, 3 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1771-10-05", + "chronological_decimal_age": 12.484599589322382, + "corrected_decimal_age": 12.484599589322382, + "chronological_calendar_age": "12 years, 5 months, 3 weeks and 3 days", + "corrected_calendar_age": "12 years, 5 months, 3 weeks and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 153.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.13948716936496142, + "corrected_centile": 55.5, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.13948716936496142, + "chronological_centile": 55.5, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 12.484599589322382, + "y": 153.5, + "b": null, + "centile": 55.5, + "sds": 0.13948716936496142, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "12 years, 5 months, 3 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 12.484599589322382, + "y": 153.5, + "b": null, + "centile": 55.5, + "sds": 0.13948716936496142, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "12 years, 5 months, 3 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 12.484599589322382, + "y": 0.13948716936496142, + "b": null, + "centile": 55.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "12 years, 5 months, 3 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 12.484599589322382, + "y": 0.13948716936496142, + "b": null, + "centile": 55.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "12 years, 5 months, 3 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1771-12-04", + "chronological_decimal_age": 12.648870636550308, + "corrected_decimal_age": 12.648870636550308, + "chronological_calendar_age": "12 years, 7 months, 3 weeks and 2 days", + "corrected_calendar_age": "12 years, 7 months, 3 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 154.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.13892603257719582, + "corrected_centile": 55.5, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.13892603257719582, + "chronological_centile": 55.5, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 12.648870636550308, + "y": 154.4, + "b": null, + "centile": 55.5, + "sds": 0.13892603257719582, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "12 years, 7 months, 3 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 12.648870636550308, + "y": 154.4, + "b": null, + "centile": 55.5, + "sds": 0.13892603257719582, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "12 years, 7 months, 3 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 12.648870636550308, + "y": 0.13892603257719582, + "b": null, + "centile": 55.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "12 years, 7 months, 3 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 12.648870636550308, + "y": 0.13892603257719582, + "b": null, + "centile": 55.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "12 years, 7 months, 3 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1772-02-02", + "chronological_decimal_age": 12.813141683778234, + "corrected_decimal_age": 12.813141683778234, + "chronological_calendar_age": "12 years, 9 months, 3 weeks and 1 day", + "corrected_calendar_age": "12 years, 9 months, 3 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 155.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.14293195454275093, + "corrected_centile": 55.7, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.14293195454275093, + "chronological_centile": 55.7, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 12.813141683778234, + "y": 155.3, + "b": null, + "centile": 55.7, + "sds": 0.14293195454275093, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "12 years, 9 months, 3 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 12.813141683778234, + "y": 155.3, + "b": null, + "centile": 55.7, + "sds": 0.14293195454275093, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "12 years, 9 months, 3 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 12.813141683778234, + "y": 0.14293195454275093, + "b": null, + "centile": 55.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "12 years, 9 months, 3 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 12.813141683778234, + "y": 0.14293195454275093, + "b": null, + "centile": 55.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "12 years, 9 months, 3 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1772-04-02", + "chronological_decimal_age": 12.97741273100616, + "corrected_decimal_age": 12.97741273100616, + "chronological_calendar_age": "12 years, 11 months, 3 weeks and 1 day", + "corrected_calendar_age": "12 years, 11 months, 3 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 156.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.13488223308032657, + "corrected_centile": 55.4, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.13488223308032657, + "chronological_centile": 55.4, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 12.97741273100616, + "y": 156.1, + "b": null, + "centile": 55.4, + "sds": 0.13488223308032657, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "12 years, 11 months, 3 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 12.97741273100616, + "y": 156.1, + "b": null, + "centile": 55.4, + "sds": 0.13488223308032657, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "12 years, 11 months, 3 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 12.97741273100616, + "y": 0.13488223308032657, + "b": null, + "centile": 55.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "12 years, 11 months, 3 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 12.97741273100616, + "y": 0.13488223308032657, + "b": null, + "centile": 55.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "12 years, 11 months, 3 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1772-06-01", + "chronological_decimal_age": 13.141683778234086, + "corrected_decimal_age": 13.141683778234086, + "chronological_calendar_age": "13 years, 1 month and 3 weeks", + "corrected_calendar_age": "13 years, 1 month and 3 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 156.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.1326647101808268, + "corrected_centile": 55.3, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.1326647101808268, + "chronological_centile": 55.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 13.141683778234086, + "y": 156.9, + "b": null, + "centile": 55.3, + "sds": 0.1326647101808268, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "13 years, 1 month and 3 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 13.141683778234086, + "y": 156.9, + "b": null, + "centile": 55.3, + "sds": 0.1326647101808268, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "13 years, 1 month and 3 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 13.141683778234086, + "y": 0.1326647101808268, + "b": null, + "centile": 55.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "13 years, 1 month and 3 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 13.141683778234086, + "y": 0.1326647101808268, + "b": null, + "centile": 55.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "13 years, 1 month and 3 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1772-07-31", + "chronological_decimal_age": 13.305954825462011, + "corrected_decimal_age": 13.305954825462011, + "chronological_calendar_age": "13 years, 3 months, 2 weeks and 6 days", + "corrected_calendar_age": "13 years, 3 months, 2 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 157.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.11968521640081513, + "corrected_centile": 54.8, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.11968521640081513, + "chronological_centile": 54.8, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 13.305954825462011, + "y": 157.6, + "b": null, + "centile": 54.8, + "sds": 0.11968521640081513, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "13 years, 3 months, 2 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 13.305954825462011, + "y": 157.6, + "b": null, + "centile": 54.8, + "sds": 0.11968521640081513, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "13 years, 3 months, 2 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 13.305954825462011, + "y": 0.11968521640081513, + "b": null, + "centile": 54.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "13 years, 3 months, 2 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 13.305954825462011, + "y": 0.11968521640081513, + "b": null, + "centile": 54.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "13 years, 3 months, 2 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1772-09-29", + "chronological_decimal_age": 13.470225872689939, + "corrected_decimal_age": 13.470225872689939, + "chronological_calendar_age": "13 years, 5 months, 2 weeks and 4 days", + "corrected_calendar_age": "13 years, 5 months, 2 weeks and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 158.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.11564403054924088, + "corrected_centile": 54.6, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.11564403054924088, + "chronological_centile": 54.6, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 13.470225872689939, + "y": 158.3, + "b": null, + "centile": 54.6, + "sds": 0.11564403054924088, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "13 years, 5 months, 2 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 13.470225872689939, + "y": 158.3, + "b": null, + "centile": 54.6, + "sds": 0.11564403054924088, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "13 years, 5 months, 2 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 13.470225872689939, + "y": 0.11564403054924088, + "b": null, + "centile": 54.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "13 years, 5 months, 2 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 13.470225872689939, + "y": 0.11564403054924088, + "b": null, + "centile": 54.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "13 years, 5 months, 2 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1772-11-28", + "chronological_decimal_age": 13.634496919917865, + "corrected_decimal_age": 13.634496919917865, + "chronological_calendar_age": "13 years, 7 months, 2 weeks and 3 days", + "corrected_calendar_age": "13 years, 7 months, 2 weeks and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 159.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.11731313617636405, + "corrected_centile": 54.7, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.11731313617636405, + "chronological_centile": 54.7, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 13.634496919917865, + "y": 159.0, + "b": null, + "centile": 54.7, + "sds": 0.11731313617636405, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "13 years, 7 months, 2 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 13.634496919917865, + "y": 159.0, + "b": null, + "centile": 54.7, + "sds": 0.11731313617636405, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "13 years, 7 months, 2 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 13.634496919917865, + "y": 0.11731313617636405, + "b": null, + "centile": 54.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "13 years, 7 months, 2 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 13.634496919917865, + "y": 0.11731313617636405, + "b": null, + "centile": 54.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "13 years, 7 months, 2 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1773-01-27", + "chronological_decimal_age": 13.79876796714579, + "corrected_decimal_age": 13.79876796714579, + "chronological_calendar_age": "13 years, 9 months, 2 weeks and 2 days", + "corrected_calendar_age": "13 years, 9 months, 2 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 159.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.10877333803401426, + "corrected_centile": 54.3, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.10877333803401426, + "chronological_centile": 54.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 13.79876796714579, + "y": 159.6, + "b": null, + "centile": 54.3, + "sds": 0.10877333803401426, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "13 years, 9 months, 2 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 13.79876796714579, + "y": 159.6, + "b": null, + "centile": 54.3, + "sds": 0.10877333803401426, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "13 years, 9 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 13.79876796714579, + "y": 0.10877333803401426, + "b": null, + "centile": 54.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "13 years, 9 months, 2 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 13.79876796714579, + "y": 0.10877333803401426, + "b": null, + "centile": 54.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "13 years, 9 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } +] \ No newline at end of file diff --git a/src/testParameters/measurements/termToOverFourYearsGirlHeight.ts b/src/testParameters/measurements/termToOverFourYearsGirlHeight.ts new file mode 100644 index 0000000..5baa6f7 --- /dev/null +++ b/src/testParameters/measurements/termToOverFourYearsGirlHeight.ts @@ -0,0 +1,2020 @@ +import { Measurement } from "../../interfaces/RCPCHMeasurementObject" + +export const termToOverFourYearsGirlHeight: Measurement[] = [ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-11", + "chronological_decimal_age": 0.0, + "corrected_decimal_age": 0.0, + "chronological_calendar_age": "Happy Birthday", + "corrected_calendar_age": "Happy Birthday", + "corrected_gestational_age": { + "corrected_gestation_weeks": 40, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 50.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.00929688975104273, + "corrected_centile": 49.6, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.00929688975104273, + "chronological_centile": 49.6, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": 50.0, + "b": null, + "centile": 49.6, + "sds": -0.00929688975104273, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.0, + "y": 50.0, + "b": null, + "centile": 49.6, + "sds": -0.00929688975104273, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "Happy Birthday", + "corrected_gestational_age": "40 + 0 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": -0.00929688975104273, + "b": null, + "centile": 49.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.0, + "y": -0.00929688975104273, + "b": null, + "centile": 49.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "Happy Birthday", + "corrected_gestational_age": "40 + 0 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-08-10", + "chronological_decimal_age": 0.33127994524298426, + "corrected_decimal_age": 0.33127994524298426, + "chronological_calendar_age": "3 months, 4 weeks and 2 days", + "corrected_calendar_age": "3 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 62.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.02861570481643581, + "corrected_centile": 51.1, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.02861570481643581, + "chronological_centile": 51.1, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.33127994524298426, + "y": 62.1, + "b": null, + "centile": 51.1, + "sds": 0.02861570481643581, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.33127994524298426, + "y": 62.1, + "b": null, + "centile": 51.1, + "sds": 0.02861570481643581, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.33127994524298426, + "y": 0.02861570481643581, + "b": null, + "centile": 51.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.33127994524298426, + "y": 0.02861570481643581, + "b": null, + "centile": 51.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-12-09", + "chronological_decimal_age": 0.6625598904859685, + "corrected_decimal_age": 0.6625598904859685, + "chronological_calendar_age": "7 months and 4 weeks", + "corrected_calendar_age": "7 months and 4 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 68.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.008659454631093237, + "corrected_centile": 50.3, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.008659454631093237, + "chronological_centile": 50.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.6625598904859685, + "y": 68.7, + "b": null, + "centile": 50.3, + "sds": 0.008659454631093237, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.6625598904859685, + "y": 68.7, + "b": null, + "centile": 50.3, + "sds": 0.008659454631093237, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.6625598904859685, + "y": 0.008659454631093237, + "b": null, + "centile": 50.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.6625598904859685, + "y": 0.008659454631093237, + "b": null, + "centile": 50.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-04-08", + "chronological_decimal_age": 0.9938398357289527, + "corrected_decimal_age": 0.9938398357289527, + "chronological_calendar_age": "11 months and 4 weeks", + "corrected_calendar_age": "11 months and 4 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 74.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.0293647010743674, + "corrected_centile": 51.2, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.0293647010743674, + "chronological_centile": 51.2, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.9938398357289527, + "y": 74.0, + "b": null, + "centile": 51.2, + "sds": 0.0293647010743674, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.9938398357289527, + "y": 74.0, + "b": null, + "centile": 51.2, + "sds": 0.0293647010743674, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.9938398357289527, + "y": 0.0293647010743674, + "b": null, + "centile": 51.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.9938398357289527, + "y": 0.0293647010743674, + "b": null, + "centile": 51.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-08-07", + "chronological_decimal_age": 1.325119780971937, + "corrected_decimal_age": 1.325119780971937, + "chronological_calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "corrected_calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 78.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.03625222424849005, + "corrected_centile": 51.4, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.03625222424849005, + "chronological_centile": 51.4, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.325119780971937, + "y": 78.6, + "b": null, + "centile": 51.4, + "sds": 0.03625222424849005, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.325119780971937, + "y": 78.6, + "b": null, + "centile": 51.4, + "sds": 0.03625222424849005, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.325119780971937, + "y": 0.03625222424849005, + "b": null, + "centile": 51.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.325119780971937, + "y": 0.03625222424849005, + "b": null, + "centile": 51.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-12-06", + "chronological_decimal_age": 1.6563997262149213, + "corrected_decimal_age": 1.6563997262149213, + "chronological_calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "corrected_calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 82.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.0387549383364748, + "corrected_centile": 51.5, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.0387549383364748, + "chronological_centile": 51.5, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.6563997262149213, + "y": 82.7, + "b": null, + "centile": 51.5, + "sds": 0.0387549383364748, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.6563997262149213, + "y": 82.7, + "b": null, + "centile": 51.5, + "sds": 0.0387549383364748, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.6563997262149213, + "y": 0.0387549383364748, + "b": null, + "centile": 51.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.6563997262149213, + "y": 0.0387549383364748, + "b": null, + "centile": 51.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-04-06", + "chronological_decimal_age": 1.9876796714579055, + "corrected_decimal_age": 1.9876796714579055, + "chronological_calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "corrected_calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 86.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.036359046071351785, + "corrected_centile": 51.5, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.036359046071351785, + "chronological_centile": 51.5, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.9876796714579055, + "y": 86.4, + "b": null, + "centile": 51.5, + "sds": 0.036359046071351785, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.9876796714579055, + "y": 86.4, + "b": null, + "centile": 51.5, + "sds": 0.036359046071351785, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.9876796714579055, + "y": 0.036359046071351785, + "b": null, + "centile": 51.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.9876796714579055, + "y": 0.036359046071351785, + "b": null, + "centile": 51.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-08-05", + "chronological_decimal_age": 2.31895961670089, + "corrected_decimal_age": 2.31895961670089, + "chronological_calendar_age": "2 years, 3 months, 3 weeks and 4 days", + "corrected_calendar_age": "2 years, 3 months, 3 weeks and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 89.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.040680041319226715, + "corrected_centile": 51.6, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.040680041319226715, + "chronological_centile": 51.6, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.31895961670089, + "y": 89.1, + "b": null, + "centile": 51.6, + "sds": 0.040680041319226715, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 3 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.31895961670089, + "y": 89.1, + "b": null, + "centile": 51.6, + "sds": 0.040680041319226715, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 3 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.31895961670089, + "y": 0.040680041319226715, + "b": null, + "centile": 51.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 3 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.31895961670089, + "y": 0.040680041319226715, + "b": null, + "centile": 51.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 3 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-12-04", + "chronological_decimal_age": 2.650239561943874, + "corrected_decimal_age": 2.650239561943874, + "chronological_calendar_age": "2 years, 7 months, 3 weeks and 2 days", + "corrected_calendar_age": "2 years, 7 months, 3 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 92.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.04302339440670747, + "corrected_centile": 51.7, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.04302339440670747, + "chronological_centile": 51.7, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.650239561943874, + "y": 92.2, + "b": null, + "centile": 51.7, + "sds": 0.04302339440670747, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months, 3 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.650239561943874, + "y": 92.2, + "b": null, + "centile": 51.7, + "sds": 0.04302339440670747, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 7 months, 3 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.650239561943874, + "y": 0.04302339440670747, + "b": null, + "centile": 51.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months, 3 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.650239561943874, + "y": 0.04302339440670747, + "b": null, + "centile": 51.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 7 months, 3 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-04-04", + "chronological_decimal_age": 2.9815195071868583, + "corrected_decimal_age": 2.9815195071868583, + "chronological_calendar_age": "2 years, 11 months, 3 weeks and 3 days", + "corrected_calendar_age": "2 years, 11 months, 3 weeks and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 95.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.05330687784238667, + "corrected_centile": 52.1, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.05330687784238667, + "chronological_centile": 52.1, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.9815195071868583, + "y": 95.1, + "b": null, + "centile": 52.1, + "sds": 0.05330687784238667, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 11 months, 3 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.9815195071868583, + "y": 95.1, + "b": null, + "centile": 52.1, + "sds": 0.05330687784238667, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 11 months, 3 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.9815195071868583, + "y": 0.05330687784238667, + "b": null, + "centile": 52.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 11 months, 3 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.9815195071868583, + "y": 0.05330687784238667, + "b": null, + "centile": 52.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 11 months, 3 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-08-03", + "chronological_decimal_age": 3.3127994524298425, + "corrected_decimal_age": 3.3127994524298425, + "chronological_calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "corrected_calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 97.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.028384509759777337, + "corrected_centile": 51.1, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.028384509759777337, + "chronological_centile": 51.1, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.3127994524298425, + "y": 97.7, + "b": null, + "centile": 51.1, + "sds": 0.028384509759777337, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.3127994524298425, + "y": 97.7, + "b": null, + "centile": 51.1, + "sds": 0.028384509759777337, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.3127994524298425, + "y": 0.028384509759777337, + "b": null, + "centile": 51.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.3127994524298425, + "y": 0.028384509759777337, + "b": null, + "centile": 51.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-12-02", + "chronological_decimal_age": 3.6440793976728267, + "corrected_decimal_age": 3.6440793976728267, + "chronological_calendar_age": "3 years, 7 months and 3 weeks", + "corrected_calendar_age": "3 years, 7 months and 3 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 100.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.03943654196182017, + "corrected_centile": 51.6, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.03943654196182017, + "chronological_centile": 51.6, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.6440793976728267, + "y": 100.3, + "b": null, + "centile": 51.6, + "sds": 0.03943654196182017, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 7 months and 3 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.6440793976728267, + "y": 100.3, + "b": null, + "centile": 51.6, + "sds": 0.03943654196182017, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 7 months and 3 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.6440793976728267, + "y": 0.03943654196182017, + "b": null, + "centile": 51.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 7 months and 3 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.6440793976728267, + "y": 0.03943654196182017, + "b": null, + "centile": 51.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 7 months and 3 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-04-02", + "chronological_decimal_age": 3.975359342915811, + "corrected_decimal_age": 3.975359342915811, + "chronological_calendar_age": "3 years, 11 months, 3 weeks and 1 day", + "corrected_calendar_age": "3 years, 11 months, 3 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 101.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.24563140323221974, + "corrected_centile": 40.3, + "corrected_centile_band": "This height measurement is between the 25th and 50th centiles.", + "chronological_sds": -0.24563140323221974, + "chronological_centile": 40.3, + "chronological_centile_band": "This height measurement is between the 25th and 50th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.975359342915811, + "y": 101.5, + "b": null, + "centile": 40.3, + "sds": -0.24563140323221974, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 3 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 25th and 50th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.975359342915811, + "y": 101.5, + "b": null, + "centile": 40.3, + "sds": -0.24563140323221974, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 11 months, 3 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 25th and 50th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.975359342915811, + "y": -0.24563140323221974, + "b": null, + "centile": 40.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 3 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 25th and 50th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.975359342915811, + "y": -0.24563140323221974, + "b": null, + "centile": 40.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 11 months, 3 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 25th and 50th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-08-01", + "chronological_decimal_age": 4.306639288158795, + "corrected_decimal_age": 4.306639288158795, + "chronological_calendar_age": "4 years, 3 months and 3 weeks", + "corrected_calendar_age": "4 years, 3 months and 3 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 103.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.04407694178136925, + "corrected_centile": 51.8, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.04407694178136925, + "chronological_centile": 51.8, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.306639288158795, + "y": 103.9, + "b": null, + "centile": 51.8, + "sds": 0.04407694178136925, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 3 months and 3 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.306639288158795, + "y": 103.9, + "b": null, + "centile": 51.8, + "sds": 0.04407694178136925, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 3 months and 3 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.306639288158795, + "y": 0.04407694178136925, + "b": null, + "centile": 51.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 3 months and 3 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.306639288158795, + "y": 0.04407694178136925, + "b": null, + "centile": 51.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 3 months and 3 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } +] \ No newline at end of file diff --git a/src/testParameters/measurements/termToTwoYearsGirlHeight.ts b/src/testParameters/measurements/termToTwoYearsGirlHeight.ts new file mode 100644 index 0000000..9355d7f --- /dev/null +++ b/src/testParameters/measurements/termToTwoYearsGirlHeight.ts @@ -0,0 +1,1012 @@ +import { Measurement } from "../../interfaces/RCPCHMeasurementObject" + +export const termToTwoYearsGirlHeight: Measurement[] = [ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-04-11", + "chronological_decimal_age": 0.0, + "corrected_decimal_age": 0.0, + "chronological_calendar_age": "Happy Birthday", + "corrected_calendar_age": "Happy Birthday", + "corrected_gestational_age": { + "corrected_gestation_weeks": 40, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 50.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.00929688975104273, + "corrected_centile": 49.6, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.00929688975104273, + "chronological_centile": 49.6, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": 50.0, + "b": null, + "centile": 49.6, + "sds": -0.00929688975104273, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.0, + "y": 50.0, + "b": null, + "centile": 49.6, + "sds": -0.00929688975104273, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "Happy Birthday", + "corrected_gestational_age": "40 + 0 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": -0.00929688975104273, + "b": null, + "centile": 49.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.0, + "y": -0.00929688975104273, + "b": null, + "centile": 49.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "Happy Birthday", + "corrected_gestational_age": "40 + 0 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-08-10", + "chronological_decimal_age": 0.33127994524298426, + "corrected_decimal_age": 0.33127994524298426, + "chronological_calendar_age": "3 months, 4 weeks and 2 days", + "corrected_calendar_age": "3 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 62.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.02861570481643581, + "corrected_centile": 51.1, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.02861570481643581, + "chronological_centile": 51.1, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.33127994524298426, + "y": 62.1, + "b": null, + "centile": 51.1, + "sds": 0.02861570481643581, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.33127994524298426, + "y": 62.1, + "b": null, + "centile": 51.1, + "sds": 0.02861570481643581, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.33127994524298426, + "y": 0.02861570481643581, + "b": null, + "centile": 51.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.33127994524298426, + "y": 0.02861570481643581, + "b": null, + "centile": 51.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1759-12-09", + "chronological_decimal_age": 0.6625598904859685, + "corrected_decimal_age": 0.6625598904859685, + "chronological_calendar_age": "7 months and 4 weeks", + "corrected_calendar_age": "7 months and 4 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 68.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.008659454631093237, + "corrected_centile": 50.3, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.008659454631093237, + "chronological_centile": 50.3, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.6625598904859685, + "y": 68.7, + "b": null, + "centile": 50.3, + "sds": 0.008659454631093237, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.6625598904859685, + "y": 68.7, + "b": null, + "centile": 50.3, + "sds": 0.008659454631093237, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.6625598904859685, + "y": 0.008659454631093237, + "b": null, + "centile": 50.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.6625598904859685, + "y": 0.008659454631093237, + "b": null, + "centile": 50.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-04-08", + "chronological_decimal_age": 0.9938398357289527, + "corrected_decimal_age": 0.9938398357289527, + "chronological_calendar_age": "11 months and 4 weeks", + "corrected_calendar_age": "11 months and 4 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 74.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.0293647010743674, + "corrected_centile": 51.2, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.0293647010743674, + "chronological_centile": 51.2, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.9938398357289527, + "y": 74.0, + "b": null, + "centile": 51.2, + "sds": 0.0293647010743674, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.9938398357289527, + "y": 74.0, + "b": null, + "centile": 51.2, + "sds": 0.0293647010743674, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.9938398357289527, + "y": 0.0293647010743674, + "b": null, + "centile": 51.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 0.9938398357289527, + "y": 0.0293647010743674, + "b": null, + "centile": 51.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-08-07", + "chronological_decimal_age": 1.325119780971937, + "corrected_decimal_age": 1.325119780971937, + "chronological_calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "corrected_calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 78.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.03625222424849005, + "corrected_centile": 51.4, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.03625222424849005, + "chronological_centile": 51.4, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.325119780971937, + "y": 78.6, + "b": null, + "centile": 51.4, + "sds": 0.03625222424849005, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.325119780971937, + "y": 78.6, + "b": null, + "centile": 51.4, + "sds": 0.03625222424849005, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.325119780971937, + "y": 0.03625222424849005, + "b": null, + "centile": 51.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.325119780971937, + "y": 0.03625222424849005, + "b": null, + "centile": 51.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 3 months, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-12-06", + "chronological_decimal_age": 1.6563997262149213, + "corrected_decimal_age": 1.6563997262149213, + "chronological_calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "corrected_calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 82.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.0387549383364748, + "corrected_centile": 51.5, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.0387549383364748, + "chronological_centile": 51.5, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.6563997262149213, + "y": 82.7, + "b": null, + "centile": 51.5, + "sds": 0.0387549383364748, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.6563997262149213, + "y": 82.7, + "b": null, + "centile": 51.5, + "sds": 0.0387549383364748, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.6563997262149213, + "y": 0.0387549383364748, + "b": null, + "centile": 51.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.6563997262149213, + "y": 0.0387549383364748, + "b": null, + "centile": 51.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 7 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-04-06", + "chronological_decimal_age": 1.9876796714579055, + "corrected_decimal_age": 1.9876796714579055, + "chronological_calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "corrected_calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 86.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.036359046071351785, + "corrected_centile": 51.5, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.036359046071351785, + "chronological_centile": 51.5, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.9876796714579055, + "y": 86.4, + "b": null, + "centile": 51.5, + "sds": 0.036359046071351785, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.9876796714579055, + "y": 86.4, + "b": null, + "centile": 51.5, + "sds": 0.036359046071351785, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.9876796714579055, + "y": 0.036359046071351785, + "b": null, + "centile": 51.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.9876796714579055, + "y": 0.036359046071351785, + "b": null, + "centile": 51.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 11 months, 3 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } +] \ No newline at end of file diff --git a/src/testParameters/measurements/turnerHeightOneYearToEleven.ts b/src/testParameters/measurements/turnerHeightOneYearToEleven.ts new file mode 100644 index 0000000..7250940 --- /dev/null +++ b/src/testParameters/measurements/turnerHeightOneYearToEleven.ts @@ -0,0 +1,1444 @@ +import { Measurement } from "../../interfaces/RCPCHMeasurementObject"; + +export const turnerHeightOneYearToEleven: Measurement[]=[ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1760-04-10", + "chronological_decimal_age": 0.999315537303217, + "corrected_decimal_age": 0.999315537303217, + "chronological_calendar_age": "11 months, 4 weeks and 2 days", + "corrected_calendar_age": "11 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 62.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": null, + "corrected_centile": null, + "corrected_centile_band": null, + "chronological_sds": null, + "chronological_centile": null, + "chronological_centile_band": null, + "corrected_measurement_error": "There is no reference data below 1 year.", + "chronological_measurement_error": "There is no reference data below 1 year.", + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.999315537303217, + "y": 62.3, + "b": null, + "centile": null, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": null, + "observation_value_error": "There is no reference data below 1 year." + }, + "corrected_decimal_age_data": { + "x": 0.999315537303217, + "y": 62.3, + "b": null, + "centile": null, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": null, + "observation_value_error": "There is no reference data below 1 year." + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.999315537303217, + "y": null, + "b": null, + "centile": null, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": null, + "observation_value_error": "There is no reference data below 1 year." + }, + "corrected_decimal_age_data": { + "x": 0.999315537303217, + "y": null, + "b": null, + "centile": null, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": null, + "observation_value_error": "There is no reference data below 1 year." + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-04-10", + "chronological_decimal_age": 1.998631074606434, + "corrected_decimal_age": 1.998631074606434, + "chronological_calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 71.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.9920581000468799, + "corrected_centile": 16.1, + "corrected_centile_band": "This height measurement is between the 9th and 25th centiles.", + "chronological_sds": -0.9920581000468799, + "chronological_centile": 16.1, + "chronological_centile_band": "This height measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": 71.5, + "b": null, + "centile": 16.1, + "sds": -0.9920581000468799, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.998631074606434, + "y": 71.5, + "b": null, + "centile": 16.1, + "sds": -0.9920581000468799, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": -0.9920581000468799, + "b": null, + "centile": 16.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.998631074606434, + "y": -0.9920581000468799, + "b": null, + "centile": 16.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-04-10", + "chronological_decimal_age": 2.9979466119096507, + "corrected_decimal_age": 2.9979466119096507, + "chronological_calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "corrected_calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 80.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.981227999618639, + "corrected_centile": 16.3, + "corrected_centile_band": "This height measurement is between the 9th and 25th centiles.", + "chronological_sds": -0.981227999618639, + "chronological_centile": 16.3, + "chronological_centile_band": "This height measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.9979466119096507, + "y": 80.1, + "b": null, + "centile": 16.3, + "sds": -0.981227999618639, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.9979466119096507, + "y": 80.1, + "b": null, + "centile": 16.3, + "sds": -0.981227999618639, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.9979466119096507, + "y": -0.981227999618639, + "b": null, + "centile": 16.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.9979466119096507, + "y": -0.981227999618639, + "b": null, + "centile": 16.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-04-10", + "chronological_decimal_age": 3.997262149212868, + "corrected_decimal_age": 3.997262149212868, + "chronological_calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "corrected_calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 87.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.9979215022064063, + "corrected_centile": 15.9, + "corrected_centile_band": "This height measurement is between the 9th and 25th centiles.", + "chronological_sds": -0.9979215022064063, + "chronological_centile": 15.9, + "chronological_centile_band": "This height measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.997262149212868, + "y": 87.4, + "b": null, + "centile": 15.9, + "sds": -0.9979215022064063, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.997262149212868, + "y": 87.4, + "b": null, + "centile": 15.9, + "sds": -0.9979215022064063, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.997262149212868, + "y": -0.9979215022064063, + "b": null, + "centile": 15.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.997262149212868, + "y": -0.9979215022064063, + "b": null, + "centile": 15.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-04-09", + "chronological_decimal_age": 4.996577686516085, + "corrected_decimal_age": 4.996577686516085, + "chronological_calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "corrected_calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 93.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.978327233275901, + "corrected_centile": 16.4, + "corrected_centile_band": "This height measurement is between the 9th and 25th centiles.", + "chronological_sds": -0.978327233275901, + "chronological_centile": 16.4, + "chronological_centile_band": "This height measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.996577686516085, + "y": 93.2, + "b": null, + "centile": 16.4, + "sds": -0.978327233275901, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.996577686516085, + "y": 93.2, + "b": null, + "centile": 16.4, + "sds": -0.978327233275901, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.996577686516085, + "y": -0.978327233275901, + "b": null, + "centile": 16.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.996577686516085, + "y": -0.978327233275901, + "b": null, + "centile": 16.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-04-09", + "chronological_decimal_age": 5.9958932238193015, + "corrected_decimal_age": 5.9958932238193015, + "chronological_calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "corrected_calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 97.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.9859658119968102, + "corrected_centile": 16.2, + "corrected_centile_band": "This height measurement is between the 9th and 25th centiles.", + "chronological_sds": -0.9859658119968102, + "chronological_centile": 16.2, + "chronological_centile_band": "This height measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.9958932238193015, + "y": 97.6, + "b": null, + "centile": 16.2, + "sds": -0.9859658119968102, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.9958932238193015, + "y": 97.6, + "b": null, + "centile": 16.2, + "sds": -0.9859658119968102, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.9958932238193015, + "y": -0.9859658119968102, + "b": null, + "centile": 16.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.9958932238193015, + "y": -0.9859658119968102, + "b": null, + "centile": 16.2, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-04-09", + "chronological_decimal_age": 6.995208761122519, + "corrected_decimal_age": 6.995208761122519, + "chronological_calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "corrected_calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 101.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.9837852674691883, + "corrected_centile": 16.3, + "corrected_centile_band": "This height measurement is between the 9th and 25th centiles.", + "chronological_sds": -0.9837852674691883, + "chronological_centile": 16.3, + "chronological_centile_band": "This height measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.995208761122519, + "y": 101.5, + "b": null, + "centile": 16.3, + "sds": -0.9837852674691883, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.995208761122519, + "y": 101.5, + "b": null, + "centile": 16.3, + "sds": -0.9837852674691883, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.995208761122519, + "y": -0.9837852674691883, + "b": null, + "centile": 16.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.995208761122519, + "y": -0.9837852674691883, + "b": null, + "centile": 16.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-04-09", + "chronological_decimal_age": 7.994524298425736, + "corrected_decimal_age": 7.994524298425736, + "chronological_calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "corrected_calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 105.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.989598666016506, + "corrected_centile": 16.1, + "corrected_centile_band": "This height measurement is between the 9th and 25th centiles.", + "chronological_sds": -0.989598666016506, + "chronological_centile": 16.1, + "chronological_centile_band": "This height measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.994524298425736, + "y": 105.5, + "b": null, + "centile": 16.1, + "sds": -0.989598666016506, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.994524298425736, + "y": 105.5, + "b": null, + "centile": 16.1, + "sds": -0.989598666016506, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.994524298425736, + "y": -0.989598666016506, + "b": null, + "centile": 16.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.994524298425736, + "y": -0.989598666016506, + "b": null, + "centile": 16.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1768-04-08", + "chronological_decimal_age": 8.993839835728952, + "corrected_decimal_age": 8.993839835728952, + "chronological_calendar_age": "8 years, 11 months and 4 weeks", + "corrected_calendar_age": "8 years, 11 months and 4 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 109.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.9801755668271069, + "corrected_centile": 16.3, + "corrected_centile_band": "This height measurement is between the 9th and 25th centiles.", + "chronological_sds": -0.9801755668271069, + "chronological_centile": 16.3, + "chronological_centile_band": "This height measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 8.993839835728952, + "y": 109.8, + "b": null, + "centile": 16.3, + "sds": -0.9801755668271069, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 11 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.993839835728952, + "y": 109.8, + "b": null, + "centile": 16.3, + "sds": -0.9801755668271069, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 11 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 8.993839835728952, + "y": -0.9801755668271069, + "b": null, + "centile": 16.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "8 years, 11 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 8.993839835728952, + "y": -0.9801755668271069, + "b": null, + "centile": 16.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "8 years, 11 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1769-04-08", + "chronological_decimal_age": 9.99315537303217, + "corrected_decimal_age": 9.99315537303217, + "chronological_calendar_age": "9 years, 11 months and 4 weeks", + "corrected_calendar_age": "9 years, 11 months and 4 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 113.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.983757640286417, + "corrected_centile": 16.3, + "corrected_centile_band": "This height measurement is between the 9th and 25th centiles.", + "chronological_sds": -0.983757640286417, + "chronological_centile": 16.3, + "chronological_centile_band": "This height measurement is between the 9th and 25th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 9.99315537303217, + "y": 113.9, + "b": null, + "centile": 16.3, + "sds": -0.983757640286417, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 11 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.99315537303217, + "y": 113.9, + "b": null, + "centile": 16.3, + "sds": -0.983757640286417, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 11 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 9.99315537303217, + "y": -0.983757640286417, + "b": null, + "centile": 16.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "9 years, 11 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 9.99315537303217, + "y": -0.983757640286417, + "b": null, + "centile": 16.3, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "9 years, 11 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 9th and 25th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } +] \ No newline at end of file diff --git a/src/testParameters/measurements/twoToEight.ts b/src/testParameters/measurements/twoToEight.ts new file mode 100644 index 0000000..9f5a054 --- /dev/null +++ b/src/testParameters/measurements/twoToEight.ts @@ -0,0 +1,10660 @@ +import { Measurement } from "../../interfaces/RCPCHMeasurementObject" + +export const twoToEight: Measurement[] = [ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-04-10", + "chronological_decimal_age": 1.998631074606434, + "corrected_decimal_age": 1.998631074606434, + "chronological_calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 85.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.21718038979356746, + "corrected_centile": 41.0, + "corrected_centile_band": "This height measurement is between the 25th and 50th centiles.", + "chronological_sds": -0.21718038979356746, + "chronological_centile": 41.0, + "chronological_centile_band": "This height measurement is between the 25th and 50th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": 85.7, + "b": null, + "centile": 41.0, + "sds": -0.21718038979356746, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 25th and 50th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.998631074606434, + "y": 85.7, + "b": null, + "centile": 41.0, + "sds": -0.21718038979356746, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 25th and 50th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": -0.21718038979356746, + "b": null, + "centile": 41.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 25th and 50th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.998631074606434, + "y": -0.21718038979356746, + "b": null, + "centile": 41.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is between the 25th and 50th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": ['Very clever diagnosis made'] + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-05-10", + "chronological_decimal_age": 2.080766598220397, + "corrected_decimal_age": 2.080766598220397, + "chronological_calendar_age": "2 years, 4 weeks and 1 day", + "corrected_calendar_age": "2 years, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 86.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.0111556558035301, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.0111556558035301, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.080766598220397, + "y": 86.6, + "b": null, + "centile": 50.0, + "sds": 0.0111556558035301, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.080766598220397, + "y": 86.6, + "b": null, + "centile": 50.0, + "sds": 0.0111556558035301, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.080766598220397, + "y": 0.0111556558035301, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.080766598220397, + "y": 0.0111556558035301, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-06-09", + "chronological_decimal_age": 2.16290212183436, + "corrected_decimal_age": 2.16290212183436, + "chronological_calendar_age": "2 years, 1 month, 4 weeks and 1 day", + "corrected_calendar_age": "2 years, 1 month, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 87.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.0023895880578283218, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.0023895880578283218, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.16290212183436, + "y": 87.4, + "b": null, + "centile": 49.0, + "sds": -0.0023895880578283218, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 1 month, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.16290212183436, + "y": 87.4, + "b": null, + "centile": 49.0, + "sds": -0.0023895880578283218, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 1 month, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.16290212183436, + "y": -0.0023895880578283218, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 1 month, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.16290212183436, + "y": -0.0023895880578283218, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 1 month, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-07-09", + "chronological_decimal_age": 2.245037645448323, + "corrected_decimal_age": 2.245037645448323, + "chronological_calendar_age": "2 years, 2 months and 4 weeks", + "corrected_calendar_age": "2 years, 2 months and 4 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 88.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.009978442835373358, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.009978442835373358, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.245037645448323, + "y": 88.2, + "b": null, + "centile": 49.0, + "sds": -0.009978442835373358, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 2 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.245037645448323, + "y": 88.2, + "b": null, + "centile": 49.0, + "sds": -0.009978442835373358, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 2 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.245037645448323, + "y": -0.009978442835373358, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 2 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.245037645448323, + "y": -0.009978442835373358, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 2 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-08-08", + "chronological_decimal_age": 2.327173169062286, + "corrected_decimal_age": 2.327173169062286, + "chronological_calendar_age": "2 years, 3 months and 4 weeks", + "corrected_calendar_age": "2 years, 3 months and 4 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 89.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.017322749592956103, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.017322749592956103, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.327173169062286, + "y": 89.1, + "b": null, + "centile": 50.0, + "sds": 0.017322749592956103, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 3 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.327173169062286, + "y": 89.1, + "b": null, + "centile": 50.0, + "sds": 0.017322749592956103, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 3 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.327173169062286, + "y": 0.017322749592956103, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 3 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.327173169062286, + "y": 0.017322749592956103, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 3 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-09-07", + "chronological_decimal_age": 2.409308692676249, + "corrected_decimal_age": 2.409308692676249, + "chronological_calendar_age": "2 years, 4 months, 3 weeks and 6 days", + "corrected_calendar_age": "2 years, 4 months, 3 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 89.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.008432417958018034, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.008432417958018034, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.409308692676249, + "y": 89.8, + "b": null, + "centile": 49.0, + "sds": -0.008432417958018034, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 4 months, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.409308692676249, + "y": 89.8, + "b": null, + "centile": 49.0, + "sds": -0.008432417958018034, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 4 months, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.409308692676249, + "y": -0.008432417958018034, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 4 months, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.409308692676249, + "y": -0.008432417958018034, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 4 months, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-10-07", + "chronological_decimal_age": 2.4914442162902124, + "corrected_decimal_age": 2.4914442162902124, + "chronological_calendar_age": "2 years, 5 months, 3 weeks and 5 days", + "corrected_calendar_age": "2 years, 5 months, 3 weeks and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 90.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.0001040293100830685, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.0001040293100830685, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.4914442162902124, + "y": 90.6, + "b": null, + "centile": 49.0, + "sds": -0.0001040293100830685, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 5 months, 3 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.4914442162902124, + "y": 90.6, + "b": null, + "centile": 49.0, + "sds": -0.0001040293100830685, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 5 months, 3 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.4914442162902124, + "y": -0.0001040293100830685, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 5 months, 3 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.4914442162902124, + "y": -0.0001040293100830685, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 5 months, 3 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-11-06", + "chronological_decimal_age": 2.5735797399041753, + "corrected_decimal_age": 2.5735797399041753, + "chronological_calendar_age": "2 years, 6 months, 3 weeks and 5 days", + "corrected_calendar_age": "2 years, 6 months, 3 weeks and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 91.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.012735045729739462, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.012735045729739462, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.5735797399041753, + "y": 91.4, + "b": null, + "centile": 50.0, + "sds": 0.012735045729739462, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 6 months, 3 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.5735797399041753, + "y": 91.4, + "b": null, + "centile": 50.0, + "sds": 0.012735045729739462, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 6 months, 3 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.5735797399041753, + "y": 0.012735045729739462, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 6 months, 3 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.5735797399041753, + "y": 0.012735045729739462, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 6 months, 3 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-12-06", + "chronological_decimal_age": 2.6557152635181382, + "corrected_decimal_age": 2.6557152635181382, + "chronological_calendar_age": "2 years, 7 months, 3 weeks and 4 days", + "corrected_calendar_age": "2 years, 7 months, 3 weeks and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 92.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.0018789025126601264, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.0018789025126601264, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.6557152635181382, + "y": 92.1, + "b": null, + "centile": 50.0, + "sds": 0.0018789025126601264, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.6557152635181382, + "y": 92.1, + "b": null, + "centile": 50.0, + "sds": 0.0018789025126601264, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 7 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.6557152635181382, + "y": 0.0018789025126601264, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 7 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.6557152635181382, + "y": 0.0018789025126601264, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 7 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-01-05", + "chronological_decimal_age": 2.737850787132101, + "corrected_decimal_age": 2.737850787132101, + "chronological_calendar_age": "2 years, 8 months, 3 weeks and 4 days", + "corrected_calendar_age": "2 years, 8 months, 3 weeks and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 92.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.004862623341463532, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.004862623341463532, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.737850787132101, + "y": 92.8, + "b": null, + "centile": 49.0, + "sds": -0.004862623341463532, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 8 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.737850787132101, + "y": 92.8, + "b": null, + "centile": 49.0, + "sds": -0.004862623341463532, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 8 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.737850787132101, + "y": -0.004862623341463532, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 8 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.737850787132101, + "y": -0.004862623341463532, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 8 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-02-04", + "chronological_decimal_age": 2.8199863107460645, + "corrected_decimal_age": 2.8199863107460645, + "chronological_calendar_age": "2 years, 9 months, 3 weeks and 3 days", + "corrected_calendar_age": "2 years, 9 months, 3 weeks and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 93.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.00803312398148867, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.00803312398148867, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.8199863107460645, + "y": 93.5, + "b": null, + "centile": 49.0, + "sds": -0.00803312398148867, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 9 months, 3 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.8199863107460645, + "y": 93.5, + "b": null, + "centile": 49.0, + "sds": -0.00803312398148867, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 9 months, 3 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.8199863107460645, + "y": -0.00803312398148867, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 9 months, 3 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.8199863107460645, + "y": -0.00803312398148867, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 9 months, 3 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-03-06", + "chronological_decimal_age": 2.9021218343600275, + "corrected_decimal_age": 2.9021218343600275, + "chronological_calendar_age": "2 years, 10 months, 3 weeks and 2 days", + "corrected_calendar_age": "2 years, 10 months, 3 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 94.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.008084811409416427, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.008084811409416427, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.9021218343600275, + "y": 94.2, + "b": null, + "centile": 49.0, + "sds": -0.008084811409416427, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 10 months, 3 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.9021218343600275, + "y": 94.2, + "b": null, + "centile": 49.0, + "sds": -0.008084811409416427, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 10 months, 3 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.9021218343600275, + "y": -0.008084811409416427, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 10 months, 3 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.9021218343600275, + "y": -0.008084811409416427, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 10 months, 3 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-04-05", + "chronological_decimal_age": 2.9842573579739904, + "corrected_decimal_age": 2.9842573579739904, + "chronological_calendar_age": "2 years, 11 months, 3 weeks and 4 days", + "corrected_calendar_age": "2 years, 11 months, 3 weeks and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 94.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.005363931022688206, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.005363931022688206, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.9842573579739904, + "y": 94.9, + "b": null, + "centile": 49.0, + "sds": -0.005363931022688206, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 11 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.9842573579739904, + "y": 94.9, + "b": null, + "centile": 49.0, + "sds": -0.005363931022688206, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 11 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.9842573579739904, + "y": -0.005363931022688206, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 11 months, 3 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.9842573579739904, + "y": -0.005363931022688206, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 11 months, 3 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-05-05", + "chronological_decimal_age": 3.0663928815879533, + "corrected_decimal_age": 3.0663928815879533, + "chronological_calendar_age": "3 years, 3 weeks and 3 days", + "corrected_calendar_age": "3 years, 3 weeks and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 95.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.0001931115682819805, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.0001931115682819805, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.0663928815879533, + "y": 95.6, + "b": null, + "centile": 49.0, + "sds": -0.0001931115682819805, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.0663928815879533, + "y": 95.6, + "b": null, + "centile": 49.0, + "sds": -0.0001931115682819805, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 3 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.0663928815879533, + "y": -0.0001931115682819805, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.0663928815879533, + "y": -0.0001931115682819805, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 3 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-06-04", + "chronological_decimal_age": 3.1485284052019167, + "corrected_decimal_age": 3.1485284052019167, + "chronological_calendar_age": "3 years, 1 month, 3 weeks and 3 days", + "corrected_calendar_age": "3 years, 1 month, 3 weeks and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 96.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.007270651935085369, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.007270651935085369, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.1485284052019167, + "y": 96.3, + "b": null, + "centile": 50.0, + "sds": 0.007270651935085369, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 1 month, 3 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.1485284052019167, + "y": 96.3, + "b": null, + "centile": 50.0, + "sds": 0.007270651935085369, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 1 month, 3 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.1485284052019167, + "y": 0.007270651935085369, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 1 month, 3 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.1485284052019167, + "y": 0.007270651935085369, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 1 month, 3 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-07-04", + "chronological_decimal_age": 3.2306639288158796, + "corrected_decimal_age": 3.2306639288158796, + "chronological_calendar_age": "3 years, 2 months, 3 weeks and 2 days", + "corrected_calendar_age": "3 years, 2 months, 3 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 96.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.008624556213983354, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.008624556213983354, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.2306639288158796, + "y": 96.9, + "b": null, + "centile": 49.0, + "sds": -0.008624556213983354, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 2 months, 3 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.2306639288158796, + "y": 96.9, + "b": null, + "centile": 49.0, + "sds": -0.008624556213983354, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 2 months, 3 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.2306639288158796, + "y": -0.008624556213983354, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 2 months, 3 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.2306639288158796, + "y": -0.008624556213983354, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 2 months, 3 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-08-03", + "chronological_decimal_age": 3.3127994524298425, + "corrected_decimal_age": 3.3127994524298425, + "chronological_calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "corrected_calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 97.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.0032011933112151255, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.0032011933112151255, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.3127994524298425, + "y": 97.6, + "b": null, + "centile": 50.0, + "sds": 0.0032011933112151255, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.3127994524298425, + "y": 97.6, + "b": null, + "centile": 50.0, + "sds": 0.0032011933112151255, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.3127994524298425, + "y": 0.0032011933112151255, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.3127994524298425, + "y": 0.0032011933112151255, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 3 months, 3 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-09-02", + "chronological_decimal_age": 3.3949349760438055, + "corrected_decimal_age": 3.3949349760438055, + "chronological_calendar_age": "3 years, 4 months, 3 weeks and 1 day", + "corrected_calendar_age": "3 years, 4 months, 3 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 98.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.008040831084128376, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.008040831084128376, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.3949349760438055, + "y": 98.2, + "b": null, + "centile": 49.0, + "sds": -0.008040831084128376, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 4 months, 3 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.3949349760438055, + "y": 98.2, + "b": null, + "centile": 49.0, + "sds": -0.008040831084128376, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 4 months, 3 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.3949349760438055, + "y": -0.008040831084128376, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 4 months, 3 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.3949349760438055, + "y": -0.008040831084128376, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 4 months, 3 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-10-02", + "chronological_decimal_age": 3.477070499657769, + "corrected_decimal_age": 3.477070499657769, + "chronological_calendar_age": "3 years, 5 months and 3 weeks", + "corrected_calendar_age": "3 years, 5 months and 3 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 98.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.007729209190397716, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.007729209190397716, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.477070499657769, + "y": 98.9, + "b": null, + "centile": 50.0, + "sds": 0.007729209190397716, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 5 months and 3 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.477070499657769, + "y": 98.9, + "b": null, + "centile": 50.0, + "sds": 0.007729209190397716, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 5 months and 3 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.477070499657769, + "y": 0.007729209190397716, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 5 months and 3 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.477070499657769, + "y": 0.007729209190397716, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 5 months and 3 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-11-01", + "chronological_decimal_age": 3.5592060232717317, + "corrected_decimal_age": 3.5592060232717317, + "chronological_calendar_age": "3 years, 6 months and 3 weeks", + "corrected_calendar_age": "3 years, 6 months and 3 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 99.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.0008279536847762281, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.0008279536847762281, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.5592060232717317, + "y": 99.5, + "b": null, + "centile": 50.0, + "sds": 0.0008279536847762281, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 6 months and 3 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.5592060232717317, + "y": 99.5, + "b": null, + "centile": 50.0, + "sds": 0.0008279536847762281, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 6 months and 3 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.5592060232717317, + "y": 0.0008279536847762281, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 6 months and 3 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.5592060232717317, + "y": 0.0008279536847762281, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 6 months and 3 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-12-01", + "chronological_decimal_age": 3.6413415468856947, + "corrected_decimal_age": 3.6413415468856947, + "chronological_calendar_age": "3 years, 7 months, 2 weeks and 6 days", + "corrected_calendar_age": "3 years, 7 months, 2 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 100.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.003953582315670686, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.003953582315670686, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.6413415468856947, + "y": 100.1, + "b": null, + "centile": 49.0, + "sds": -0.003953582315670686, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 7 months, 2 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.6413415468856947, + "y": 100.1, + "b": null, + "centile": 49.0, + "sds": -0.003953582315670686, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 7 months, 2 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.6413415468856947, + "y": -0.003953582315670686, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 7 months, 2 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.6413415468856947, + "y": -0.003953582315670686, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 7 months, 2 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-12-31", + "chronological_decimal_age": 3.7234770704996576, + "corrected_decimal_age": 3.7234770704996576, + "chronological_calendar_age": "3 years, 8 months, 2 weeks and 6 days", + "corrected_calendar_age": "3 years, 8 months, 2 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 100.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.006704462427712976, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.006704462427712976, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.7234770704996576, + "y": 100.7, + "b": null, + "centile": 49.0, + "sds": -0.006704462427712976, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 8 months, 2 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.7234770704996576, + "y": 100.7, + "b": null, + "centile": 49.0, + "sds": -0.006704462427712976, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 8 months, 2 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.7234770704996576, + "y": -0.006704462427712976, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 8 months, 2 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.7234770704996576, + "y": -0.006704462427712976, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 8 months, 2 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-01-30", + "chronological_decimal_age": 3.805612594113621, + "corrected_decimal_age": 3.805612594113621, + "chronological_calendar_age": "3 years, 9 months, 2 weeks and 5 days", + "corrected_calendar_age": "3 years, 9 months, 2 weeks and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 101.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.007517862328804164, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.007517862328804164, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.805612594113621, + "y": 101.3, + "b": null, + "centile": 49.0, + "sds": -0.007517862328804164, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 9 months, 2 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.805612594113621, + "y": 101.3, + "b": null, + "centile": 49.0, + "sds": -0.007517862328804164, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 9 months, 2 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.805612594113621, + "y": -0.007517862328804164, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 9 months, 2 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.805612594113621, + "y": -0.007517862328804164, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 9 months, 2 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-03-01", + "chronological_decimal_age": 3.887748117727584, + "corrected_decimal_age": 3.887748117727584, + "chronological_calendar_age": "3 years, 10 months, 2 weeks and 4 days", + "corrected_calendar_age": "3 years, 10 months, 2 weeks and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 101.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.006538879023957687, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.006538879023957687, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.887748117727584, + "y": 101.9, + "b": null, + "centile": 49.0, + "sds": -0.006538879023957687, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 10 months, 2 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.887748117727584, + "y": 101.9, + "b": null, + "centile": 49.0, + "sds": -0.006538879023957687, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 10 months, 2 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.887748117727584, + "y": -0.006538879023957687, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 10 months, 2 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.887748117727584, + "y": -0.006538879023957687, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 10 months, 2 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-03-31", + "chronological_decimal_age": 3.969883641341547, + "corrected_decimal_age": 3.969883641341547, + "chronological_calendar_age": "3 years, 11 months, 2 weeks and 6 days", + "corrected_calendar_age": "3 years, 11 months, 2 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 102.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.003749300265598489, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.003749300265598489, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.969883641341547, + "y": 102.5, + "b": null, + "centile": 49.0, + "sds": -0.003749300265598489, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 2 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.969883641341547, + "y": 102.5, + "b": null, + "centile": 49.0, + "sds": -0.003749300265598489, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 11 months, 2 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.969883641341547, + "y": -0.003749300265598489, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 2 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.969883641341547, + "y": -0.003749300265598489, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 11 months, 2 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-04-30", + "chronological_decimal_age": 4.05201916495551, + "corrected_decimal_age": 4.05201916495551, + "chronological_calendar_age": "4 years, 2 weeks and 5 days", + "corrected_calendar_age": "4 years, 2 weeks and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 101.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.0005069984268294971, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.0005069984268294971, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.05201916495551, + "y": 101.9, + "b": null, + "centile": 49.0, + "sds": -0.0005069984268294971, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 2 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.05201916495551, + "y": 101.9, + "b": null, + "centile": 49.0, + "sds": -0.0005069984268294971, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 2 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.05201916495551, + "y": -0.0005069984268294971, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 2 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.05201916495551, + "y": -0.0005069984268294971, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 2 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-05-30", + "chronological_decimal_age": 4.134154688569473, + "corrected_decimal_age": 4.134154688569473, + "chronological_calendar_age": "4 years, 1 month, 2 weeks and 5 days", + "corrected_calendar_age": "4 years, 1 month, 2 weeks and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 102.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.005231455833344502, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.005231455833344502, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.134154688569473, + "y": 102.5, + "b": null, + "centile": 50.0, + "sds": 0.005231455833344502, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 1 month, 2 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.134154688569473, + "y": 102.5, + "b": null, + "centile": 50.0, + "sds": 0.005231455833344502, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 1 month, 2 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.134154688569473, + "y": 0.005231455833344502, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 1 month, 2 weeks and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.134154688569473, + "y": 0.005231455833344502, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 1 month, 2 weeks and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-06-29", + "chronological_decimal_age": 4.216290212183436, + "corrected_decimal_age": 4.216290212183436, + "chronological_calendar_age": "4 years, 2 months, 2 weeks and 4 days", + "corrected_calendar_age": "4 years, 2 months, 2 weeks and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 103.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.00807267920419676, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.00807267920419676, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.216290212183436, + "y": 103.1, + "b": null, + "centile": 50.0, + "sds": 0.00807267920419676, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 2 months, 2 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.216290212183436, + "y": 103.1, + "b": null, + "centile": 50.0, + "sds": 0.00807267920419676, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 2 months, 2 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.216290212183436, + "y": 0.00807267920419676, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 2 months, 2 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.216290212183436, + "y": 0.00807267920419676, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 2 months, 2 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-07-29", + "chronological_decimal_age": 4.298425735797399, + "corrected_decimal_age": 4.298425735797399, + "chronological_calendar_age": "4 years, 3 months, 2 weeks and 4 days", + "corrected_calendar_age": "4 years, 3 months, 2 weeks and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 103.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.010250361805068388, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.010250361805068388, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.298425735797399, + "y": 103.7, + "b": null, + "centile": 50.0, + "sds": 0.010250361805068388, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 3 months, 2 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.298425735797399, + "y": 103.7, + "b": null, + "centile": 50.0, + "sds": 0.010250361805068388, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 3 months, 2 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.298425735797399, + "y": 0.010250361805068388, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 3 months, 2 weeks and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.298425735797399, + "y": 0.010250361805068388, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 3 months, 2 weeks and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-08-28", + "chronological_decimal_age": 4.380561259411362, + "corrected_decimal_age": 4.380561259411362, + "chronological_calendar_age": "4 years, 4 months, 2 weeks and 3 days", + "corrected_calendar_age": "4 years, 4 months, 2 weeks and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 104.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.009488856412809828, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.009488856412809828, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.380561259411362, + "y": 104.3, + "b": null, + "centile": 50.0, + "sds": 0.009488856412809828, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 4 months, 2 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.380561259411362, + "y": 104.3, + "b": null, + "centile": 50.0, + "sds": 0.009488856412809828, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 4 months, 2 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.380561259411362, + "y": 0.009488856412809828, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 4 months, 2 weeks and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.380561259411362, + "y": 0.009488856412809828, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 4 months, 2 weeks and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-09-27", + "chronological_decimal_age": 4.462696783025325, + "corrected_decimal_age": 4.462696783025325, + "chronological_calendar_age": "4 years, 5 months, 2 weeks and 2 days", + "corrected_calendar_age": "4 years, 5 months, 2 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 104.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.00650691138706608, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.00650691138706608, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.462696783025325, + "y": 104.9, + "b": null, + "centile": 50.0, + "sds": 0.00650691138706608, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 5 months, 2 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.462696783025325, + "y": 104.9, + "b": null, + "centile": 50.0, + "sds": 0.00650691138706608, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 5 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.462696783025325, + "y": 0.00650691138706608, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 5 months, 2 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.462696783025325, + "y": 0.00650691138706608, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 5 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-10-27", + "chronological_decimal_age": 4.544832306639288, + "corrected_decimal_age": 4.544832306639288, + "chronological_calendar_age": "4 years, 6 months, 2 weeks and 2 days", + "corrected_calendar_age": "4 years, 6 months, 2 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 105.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.004001642963664196, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.004001642963664196, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.544832306639288, + "y": 105.5, + "b": null, + "centile": 50.0, + "sds": 0.004001642963664196, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 6 months, 2 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.544832306639288, + "y": 105.5, + "b": null, + "centile": 50.0, + "sds": 0.004001642963664196, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 6 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.544832306639288, + "y": 0.004001642963664196, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 6 months, 2 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.544832306639288, + "y": 0.004001642963664196, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 6 months, 2 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-11-26", + "chronological_decimal_age": 4.6269678302532515, + "corrected_decimal_age": 4.6269678302532515, + "chronological_calendar_age": "4 years, 7 months, 2 weeks and 1 day", + "corrected_calendar_age": "4 years, 7 months, 2 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 106.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 2.404722290604369e-05, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 2.404722290604369e-05, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.6269678302532515, + "y": 106.1, + "b": null, + "centile": 50.0, + "sds": 2.404722290604369e-05, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 7 months, 2 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.6269678302532515, + "y": 106.1, + "b": null, + "centile": 50.0, + "sds": 2.404722290604369e-05, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 7 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.6269678302532515, + "y": 2.404722290604369e-05, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 7 months, 2 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.6269678302532515, + "y": 2.404722290604369e-05, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 7 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-12-26", + "chronological_decimal_age": 4.7091033538672145, + "corrected_decimal_age": 4.7091033538672145, + "chronological_calendar_age": "4 years, 8 months, 2 weeks and 1 day", + "corrected_calendar_age": "4 years, 8 months, 2 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 106.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.0037632602190715275, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.0037632602190715275, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.7091033538672145, + "y": 106.7, + "b": null, + "centile": 49.0, + "sds": -0.0037632602190715275, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 8 months, 2 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.7091033538672145, + "y": 106.7, + "b": null, + "centile": 49.0, + "sds": -0.0037632602190715275, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 8 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.7091033538672145, + "y": -0.0037632602190715275, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 8 months, 2 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.7091033538672145, + "y": -0.0037632602190715275, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 8 months, 2 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-01-25", + "chronological_decimal_age": 4.791238877481177, + "corrected_decimal_age": 4.791238877481177, + "chronological_calendar_age": "4 years, 9 months and 2 weeks", + "corrected_calendar_age": "4 years, 9 months and 2 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 107.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.006120390155854739, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.006120390155854739, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.791238877481177, + "y": 107.3, + "b": null, + "centile": 49.0, + "sds": -0.006120390155854739, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 9 months and 2 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.791238877481177, + "y": 107.3, + "b": null, + "centile": 49.0, + "sds": -0.006120390155854739, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 9 months and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.791238877481177, + "y": -0.006120390155854739, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 9 months and 2 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.791238877481177, + "y": -0.006120390155854739, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 9 months and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-02-24", + "chronological_decimal_age": 4.87337440109514, + "corrected_decimal_age": 4.87337440109514, + "chronological_calendar_age": "4 years, 10 months, 1 week and 6 days", + "corrected_calendar_age": "4 years, 10 months, 1 week and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 107.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.008858110895584087, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.008858110895584087, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.87337440109514, + "y": 107.9, + "b": null, + "centile": 49.0, + "sds": -0.008858110895584087, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 10 months, 1 week and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.87337440109514, + "y": 107.9, + "b": null, + "centile": 49.0, + "sds": -0.008858110895584087, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 10 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.87337440109514, + "y": -0.008858110895584087, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 10 months, 1 week and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.87337440109514, + "y": -0.008858110895584087, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 10 months, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-03-25", + "chronological_decimal_age": 4.955509924709103, + "corrected_decimal_age": 4.955509924709103, + "chronological_calendar_age": "4 years, 11 months and 2 weeks", + "corrected_calendar_age": "4 years, 11 months and 2 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 108.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.013120400945862675, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.013120400945862675, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.955509924709103, + "y": 108.6, + "b": null, + "centile": 50.0, + "sds": 0.013120400945862675, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 11 months and 2 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.955509924709103, + "y": 108.6, + "b": null, + "centile": 50.0, + "sds": 0.013120400945862675, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 11 months and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.955509924709103, + "y": 0.013120400945862675, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 11 months and 2 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.955509924709103, + "y": 0.013120400945862675, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 11 months and 2 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-04-24", + "chronological_decimal_age": 5.037645448323066, + "corrected_decimal_age": 5.037645448323066, + "chronological_calendar_age": "5 years, 1 week and 6 days", + "corrected_calendar_age": "5 years, 1 week and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 109.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.00618423139009684, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.00618423139009684, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.037645448323066, + "y": 109.1, + "b": null, + "centile": 49.0, + "sds": -0.00618423139009684, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 1 week and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.037645448323066, + "y": 109.1, + "b": null, + "centile": 49.0, + "sds": -0.00618423139009684, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.037645448323066, + "y": -0.00618423139009684, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 1 week and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.037645448323066, + "y": -0.00618423139009684, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-05-24", + "chronological_decimal_age": 5.119780971937029, + "corrected_decimal_age": 5.119780971937029, + "chronological_calendar_age": "5 years, 1 month, 1 week and 6 days", + "corrected_calendar_age": "5 years, 1 month, 1 week and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 109.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.0010842747281655457, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.0010842747281655457, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.119780971937029, + "y": 109.7, + "b": null, + "centile": 49.0, + "sds": -0.0010842747281655457, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 1 month, 1 week and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.119780971937029, + "y": 109.7, + "b": null, + "centile": 49.0, + "sds": -0.0010842747281655457, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 1 month, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.119780971937029, + "y": -0.0010842747281655457, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 1 month, 1 week and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.119780971937029, + "y": -0.0010842747281655457, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 1 month, 1 week and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-06-23", + "chronological_decimal_age": 5.201916495550993, + "corrected_decimal_age": 5.201916495550993, + "chronological_calendar_age": "5 years, 2 months, 1 week and 5 days", + "corrected_calendar_age": "5 years, 2 months, 1 week and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 110.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.006069525240644622, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.006069525240644622, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.201916495550993, + "y": 110.3, + "b": null, + "centile": 50.0, + "sds": 0.006069525240644622, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 2 months, 1 week and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.201916495550993, + "y": 110.3, + "b": null, + "centile": 50.0, + "sds": 0.006069525240644622, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 2 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.201916495550993, + "y": 0.006069525240644622, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 2 months, 1 week and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.201916495550993, + "y": 0.006069525240644622, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 2 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-07-23", + "chronological_decimal_age": 5.284052019164956, + "corrected_decimal_age": 5.284052019164956, + "chronological_calendar_age": "5 years, 3 months, 1 week and 5 days", + "corrected_calendar_age": "5 years, 3 months, 1 week and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 110.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.006540520669702224, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.006540520669702224, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.284052019164956, + "y": 110.8, + "b": null, + "centile": 49.0, + "sds": -0.006540520669702224, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 3 months, 1 week and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.284052019164956, + "y": 110.8, + "b": null, + "centile": 49.0, + "sds": -0.006540520669702224, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 3 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.284052019164956, + "y": -0.006540520669702224, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 3 months, 1 week and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.284052019164956, + "y": -0.006540520669702224, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 3 months, 1 week and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-08-22", + "chronological_decimal_age": 5.366187542778919, + "corrected_decimal_age": 5.366187542778919, + "chronological_calendar_age": "5 years, 4 months, 1 week and 4 days", + "corrected_calendar_age": "5 years, 4 months, 1 week and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 111.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.004630195717040889, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.004630195717040889, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.366187542778919, + "y": 111.4, + "b": null, + "centile": 50.0, + "sds": 0.004630195717040889, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 4 months, 1 week and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.366187542778919, + "y": 111.4, + "b": null, + "centile": 50.0, + "sds": 0.004630195717040889, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 4 months, 1 week and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.366187542778919, + "y": 0.004630195717040889, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 4 months, 1 week and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.366187542778919, + "y": 0.004630195717040889, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 4 months, 1 week and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-09-21", + "chronological_decimal_age": 5.448323066392882, + "corrected_decimal_age": 5.448323066392882, + "chronological_calendar_age": "5 years, 5 months, 1 week and 3 days", + "corrected_calendar_age": "5 years, 5 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 111.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.0027078909899296523, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.0027078909899296523, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.448323066392882, + "y": 111.9, + "b": null, + "centile": 49.0, + "sds": -0.0027078909899296523, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 5 months, 1 week and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.448323066392882, + "y": 111.9, + "b": null, + "centile": 49.0, + "sds": -0.0027078909899296523, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 5 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.448323066392882, + "y": -0.0027078909899296523, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 5 months, 1 week and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.448323066392882, + "y": -0.0027078909899296523, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 5 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-10-21", + "chronological_decimal_age": 5.530458590006845, + "corrected_decimal_age": 5.530458590006845, + "chronological_calendar_age": "5 years, 6 months, 1 week and 3 days", + "corrected_calendar_age": "5 years, 6 months, 1 week and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 112.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.007307451806171626, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.007307451806171626, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.530458590006845, + "y": 112.4, + "b": null, + "centile": 49.0, + "sds": -0.007307451806171626, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 6 months, 1 week and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.530458590006845, + "y": 112.4, + "b": null, + "centile": 49.0, + "sds": -0.007307451806171626, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 6 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.530458590006845, + "y": -0.007307451806171626, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 6 months, 1 week and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.530458590006845, + "y": -0.007307451806171626, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 6 months, 1 week and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-11-20", + "chronological_decimal_age": 5.6125941136208075, + "corrected_decimal_age": 5.6125941136208075, + "chronological_calendar_age": "5 years, 7 months, 1 week and 2 days", + "corrected_calendar_age": "5 years, 7 months, 1 week and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 113.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.00992001513863766, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.00992001513863766, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.6125941136208075, + "y": 113.0, + "b": null, + "centile": 50.0, + "sds": 0.00992001513863766, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 7 months, 1 week and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.6125941136208075, + "y": 113.0, + "b": null, + "centile": 50.0, + "sds": 0.00992001513863766, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 7 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.6125941136208075, + "y": 0.00992001513863766, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 7 months, 1 week and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.6125941136208075, + "y": 0.00992001513863766, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 7 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-12-20", + "chronological_decimal_age": 5.69472963723477, + "corrected_decimal_age": 5.69472963723477, + "chronological_calendar_age": "5 years, 8 months, 1 week and 2 days", + "corrected_calendar_age": "5 years, 8 months, 1 week and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 113.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.007246693433621969, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.007246693433621969, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.69472963723477, + "y": 113.5, + "b": null, + "centile": 50.0, + "sds": 0.007246693433621969, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 8 months, 1 week and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.69472963723477, + "y": 113.5, + "b": null, + "centile": 50.0, + "sds": 0.007246693433621969, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 8 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.69472963723477, + "y": 0.007246693433621969, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 8 months, 1 week and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.69472963723477, + "y": 0.007246693433621969, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 8 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-01-19", + "chronological_decimal_age": 5.776865160848733, + "corrected_decimal_age": 5.776865160848733, + "chronological_calendar_age": "5 years, 9 months, 1 week and 1 day", + "corrected_calendar_age": "5 years, 9 months, 1 week and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 114.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.005129649799094235, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.005129649799094235, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.776865160848733, + "y": 114.0, + "b": null, + "centile": 50.0, + "sds": 0.005129649799094235, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 9 months, 1 week and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.776865160848733, + "y": 114.0, + "b": null, + "centile": 50.0, + "sds": 0.005129649799094235, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 9 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.776865160848733, + "y": 0.005129649799094235, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 9 months, 1 week and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.776865160848733, + "y": 0.005129649799094235, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 9 months, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-02-18", + "chronological_decimal_age": 5.859000684462697, + "corrected_decimal_age": 5.859000684462697, + "chronological_calendar_age": "5 years, 10 months and 1 week", + "corrected_calendar_age": "5 years, 10 months and 1 week", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 114.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.005383771149463882, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.005383771149463882, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.859000684462697, + "y": 114.5, + "b": null, + "centile": 50.0, + "sds": 0.005383771149463882, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 10 months and 1 week", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.859000684462697, + "y": 114.5, + "b": null, + "centile": 50.0, + "sds": 0.005383771149463882, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 10 months and 1 week", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.859000684462697, + "y": 0.005383771149463882, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 10 months and 1 week", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.859000684462697, + "y": 0.005383771149463882, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 10 months and 1 week", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-03-20", + "chronological_decimal_age": 5.94113620807666, + "corrected_decimal_age": 5.94113620807666, + "chronological_calendar_age": "5 years, 11 months, 1 week and 2 days", + "corrected_calendar_age": "5 years, 11 months, 1 week and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 115.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.006290759836864387, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.006290759836864387, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.94113620807666, + "y": 115.0, + "b": null, + "centile": 50.0, + "sds": 0.006290759836864387, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 11 months, 1 week and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.94113620807666, + "y": 115.0, + "b": null, + "centile": 50.0, + "sds": 0.006290759836864387, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 11 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.94113620807666, + "y": 0.006290759836864387, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 11 months, 1 week and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.94113620807666, + "y": 0.006290759836864387, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 11 months, 1 week and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-04-19", + "chronological_decimal_age": 6.023271731690623, + "corrected_decimal_age": 6.023271731690623, + "chronological_calendar_age": "6 years, 1 week and 1 day", + "corrected_calendar_age": "6 years, 1 week and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 115.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.006131807556591874, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.006131807556591874, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.023271731690623, + "y": 115.5, + "b": null, + "centile": 50.0, + "sds": 0.006131807556591874, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 1 week and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.023271731690623, + "y": 115.5, + "b": null, + "centile": 50.0, + "sds": 0.006131807556591874, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.023271731690623, + "y": 0.006131807556591874, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 1 week and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.023271731690623, + "y": 0.006131807556591874, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-05-19", + "chronological_decimal_age": 6.105407255304586, + "corrected_decimal_age": 6.105407255304586, + "chronological_calendar_age": "6 years, 1 month, 1 week and 1 day", + "corrected_calendar_age": "6 years, 1 month, 1 week and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 116.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.0076025985181898325, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.0076025985181898325, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.105407255304586, + "y": 116.0, + "b": null, + "centile": 50.0, + "sds": 0.0076025985181898325, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 1 month, 1 week and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.105407255304586, + "y": 116.0, + "b": null, + "centile": 50.0, + "sds": 0.0076025985181898325, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 1 month, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.105407255304586, + "y": 0.0076025985181898325, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 1 month, 1 week and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.105407255304586, + "y": 0.0076025985181898325, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 1 month, 1 week and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-06-18", + "chronological_decimal_age": 6.187542778918549, + "corrected_decimal_age": 6.187542778918549, + "chronological_calendar_age": "6 years, 2 months and 1 week", + "corrected_calendar_age": "6 years, 2 months and 1 week", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 116.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.00950696255759414, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.00950696255759414, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.187542778918549, + "y": 116.5, + "b": null, + "centile": 50.0, + "sds": 0.00950696255759414, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 2 months and 1 week", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.187542778918549, + "y": 116.5, + "b": null, + "centile": 50.0, + "sds": 0.00950696255759414, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 2 months and 1 week", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.187542778918549, + "y": 0.00950696255759414, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 2 months and 1 week", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.187542778918549, + "y": 0.00950696255759414, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 2 months and 1 week", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-07-18", + "chronological_decimal_age": 6.269678302532512, + "corrected_decimal_age": 6.269678302532512, + "chronological_calendar_age": "6 years, 3 months and 1 week", + "corrected_calendar_age": "6 years, 3 months and 1 week", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 116.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.007155529381225679, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.007155529381225679, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.269678302532512, + "y": 116.9, + "b": null, + "centile": 49.0, + "sds": -0.007155529381225679, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 3 months and 1 week", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.269678302532512, + "y": 116.9, + "b": null, + "centile": 49.0, + "sds": -0.007155529381225679, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 3 months and 1 week", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.269678302532512, + "y": -0.007155529381225679, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 3 months and 1 week", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.269678302532512, + "y": -0.007155529381225679, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 3 months and 1 week", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-08-17", + "chronological_decimal_age": 6.351813826146475, + "corrected_decimal_age": 6.351813826146475, + "chronological_calendar_age": "6 years, 4 months and 6 days", + "corrected_calendar_age": "6 years, 4 months and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 117.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.004174067534186756, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.004174067534186756, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.351813826146475, + "y": 117.4, + "b": null, + "centile": 49.0, + "sds": -0.004174067534186756, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 4 months and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.351813826146475, + "y": 117.4, + "b": null, + "centile": 49.0, + "sds": -0.004174067534186756, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 4 months and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.351813826146475, + "y": -0.004174067534186756, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 4 months and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.351813826146475, + "y": -0.004174067534186756, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 4 months and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-09-16", + "chronological_decimal_age": 6.433949349760438, + "corrected_decimal_age": 6.433949349760438, + "chronological_calendar_age": "6 years, 5 months and 5 days", + "corrected_calendar_age": "6 years, 5 months and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 117.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.002426880313221903, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.002426880313221903, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.433949349760438, + "y": 117.9, + "b": null, + "centile": 49.0, + "sds": -0.002426880313221903, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 5 months and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.433949349760438, + "y": 117.9, + "b": null, + "centile": 49.0, + "sds": -0.002426880313221903, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 5 months and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.433949349760438, + "y": -0.002426880313221903, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 5 months and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.433949349760438, + "y": -0.002426880313221903, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 5 months and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-10-16", + "chronological_decimal_age": 6.5160848733744015, + "corrected_decimal_age": 6.5160848733744015, + "chronological_calendar_age": "6 years, 6 months and 5 days", + "corrected_calendar_age": "6 years, 6 months and 5 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 118.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.0010804481239586523, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.0010804481239586523, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.5160848733744015, + "y": 118.4, + "b": null, + "centile": 50.0, + "sds": 0.0010804481239586523, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 6 months and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.5160848733744015, + "y": 118.4, + "b": null, + "centile": 50.0, + "sds": 0.0010804481239586523, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 6 months and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.5160848733744015, + "y": 0.0010804481239586523, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 6 months and 5 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.5160848733744015, + "y": 0.0010804481239586523, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 6 months and 5 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-11-15", + "chronological_decimal_age": 6.598220396988364, + "corrected_decimal_age": 6.598220396988364, + "chronological_calendar_age": "6 years, 7 months and 4 days", + "corrected_calendar_age": "6 years, 7 months and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 118.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.004454822896016176, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.004454822896016176, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.598220396988364, + "y": 118.9, + "b": null, + "centile": 50.0, + "sds": 0.004454822896016176, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 7 months and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.598220396988364, + "y": 118.9, + "b": null, + "centile": 50.0, + "sds": 0.004454822896016176, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 7 months and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.598220396988364, + "y": 0.004454822896016176, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 7 months and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.598220396988364, + "y": 0.004454822896016176, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 7 months and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-12-15", + "chronological_decimal_age": 6.680355920602327, + "corrected_decimal_age": 6.680355920602327, + "chronological_calendar_age": "6 years, 8 months and 4 days", + "corrected_calendar_age": "6 years, 8 months and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 119.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.007794064839284389, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.007794064839284389, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.680355920602327, + "y": 119.4, + "b": null, + "centile": 50.0, + "sds": 0.007794064839284389, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 8 months and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.680355920602327, + "y": 119.4, + "b": null, + "centile": 50.0, + "sds": 0.007794064839284389, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 8 months and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.680355920602327, + "y": 0.007794064839284389, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 8 months and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.680355920602327, + "y": 0.007794064839284389, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 8 months and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-01-14", + "chronological_decimal_age": 6.76249144421629, + "corrected_decimal_age": 6.76249144421629, + "chronological_calendar_age": "6 years, 9 months and 3 days", + "corrected_calendar_age": "6 years, 9 months and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 119.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.01119714202858684, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.01119714202858684, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.76249144421629, + "y": 119.9, + "b": null, + "centile": 50.0, + "sds": 0.01119714202858684, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 9 months and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.76249144421629, + "y": 119.9, + "b": null, + "centile": 50.0, + "sds": 0.01119714202858684, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 9 months and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.76249144421629, + "y": 0.01119714202858684, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 9 months and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.76249144421629, + "y": 0.01119714202858684, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 9 months and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-02-13", + "chronological_decimal_age": 6.844626967830253, + "corrected_decimal_age": 6.844626967830253, + "chronological_calendar_age": "6 years, 10 months and 2 days", + "corrected_calendar_age": "6 years, 10 months and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 120.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.005588608321042829, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.005588608321042829, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.844626967830253, + "y": 120.3, + "b": null, + "centile": 49.0, + "sds": -0.005588608321042829, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 10 months and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.844626967830253, + "y": 120.3, + "b": null, + "centile": 49.0, + "sds": -0.005588608321042829, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 10 months and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.844626967830253, + "y": -0.005588608321042829, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 10 months and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.844626967830253, + "y": -0.005588608321042829, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 10 months and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-03-15", + "chronological_decimal_age": 6.926762491444216, + "corrected_decimal_age": 6.926762491444216, + "chronological_calendar_age": "6 years, 11 months and 4 days", + "corrected_calendar_age": "6 years, 11 months and 4 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 120.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.006006947099523635, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.006006947099523635, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.926762491444216, + "y": 120.8, + "b": null, + "centile": 49.0, + "sds": -0.006006947099523635, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 11 months and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.926762491444216, + "y": 120.8, + "b": null, + "centile": 49.0, + "sds": -0.006006947099523635, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 11 months and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.926762491444216, + "y": -0.006006947099523635, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 11 months and 4 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.926762491444216, + "y": -0.006006947099523635, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 11 months and 4 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-04-14", + "chronological_decimal_age": 7.008898015058179, + "corrected_decimal_age": 7.008898015058179, + "chronological_calendar_age": "7 years and 3 days", + "corrected_calendar_age": "7 years and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 121.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.004489705418715047, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.004489705418715047, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.008898015058179, + "y": 121.3, + "b": null, + "centile": 49.0, + "sds": -0.004489705418715047, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.008898015058179, + "y": 121.3, + "b": null, + "centile": 49.0, + "sds": -0.004489705418715047, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.008898015058179, + "y": -0.004489705418715047, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.008898015058179, + "y": -0.004489705418715047, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-05-14", + "chronological_decimal_age": 7.091033538672143, + "corrected_decimal_age": 7.091033538672143, + "chronological_calendar_age": "7 years, 1 month and 3 days", + "corrected_calendar_age": "7 years, 1 month and 3 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 121.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.003244626925640595, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.003244626925640595, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.091033538672143, + "y": 121.8, + "b": null, + "centile": 49.0, + "sds": -0.003244626925640595, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 1 month and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.091033538672143, + "y": 121.8, + "b": null, + "centile": 49.0, + "sds": -0.003244626925640595, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 1 month and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.091033538672143, + "y": -0.003244626925640595, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 1 month and 3 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.091033538672143, + "y": -0.003244626925640595, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 1 month and 3 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-06-13", + "chronological_decimal_age": 7.173169062286106, + "corrected_decimal_age": 7.173169062286106, + "chronological_calendar_age": "7 years, 2 months and 2 days", + "corrected_calendar_age": "7 years, 2 months and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 122.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.0037666656120564765, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.0037666656120564765, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.173169062286106, + "y": 122.3, + "b": null, + "centile": 49.0, + "sds": -0.0037666656120564765, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 2 months and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.173169062286106, + "y": 122.3, + "b": null, + "centile": 49.0, + "sds": -0.0037666656120564765, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 2 months and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.173169062286106, + "y": -0.0037666656120564765, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 2 months and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.173169062286106, + "y": -0.0037666656120564765, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 2 months and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-07-13", + "chronological_decimal_age": 7.255304585900069, + "corrected_decimal_age": 7.255304585900069, + "chronological_calendar_age": "7 years, 3 months and 2 days", + "corrected_calendar_age": "7 years, 3 months and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 122.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.004386998973982863, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.004386998973982863, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.255304585900069, + "y": 122.8, + "b": null, + "centile": 49.0, + "sds": -0.004386998973982863, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 3 months and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.255304585900069, + "y": 122.8, + "b": null, + "centile": 49.0, + "sds": -0.004386998973982863, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 3 months and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.255304585900069, + "y": -0.004386998973982863, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 3 months and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.255304585900069, + "y": -0.004386998973982863, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 3 months and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-08-12", + "chronological_decimal_age": 7.337440109514032, + "corrected_decimal_age": 7.337440109514032, + "chronological_calendar_age": "7 years, 4 months and 1 day", + "corrected_calendar_age": "7 years, 4 months and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 123.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.0066952282838260635, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.0066952282838260635, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.337440109514032, + "y": 123.3, + "b": null, + "centile": 49.0, + "sds": -0.0066952282838260635, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 4 months and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.337440109514032, + "y": 123.3, + "b": null, + "centile": 49.0, + "sds": -0.0066952282838260635, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 4 months and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.337440109514032, + "y": -0.0066952282838260635, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 4 months and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.337440109514032, + "y": -0.0066952282838260635, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 4 months and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-09-11", + "chronological_decimal_age": 7.4195756331279945, + "corrected_decimal_age": 7.4195756331279945, + "chronological_calendar_age": "7 years and 5 months", + "corrected_calendar_age": "7 years and 5 months", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 123.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.0071388173646692605, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.0071388173646692605, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.4195756331279945, + "y": 123.8, + "b": null, + "centile": 49.0, + "sds": -0.0071388173646692605, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years and 5 months", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.4195756331279945, + "y": 123.8, + "b": null, + "centile": 49.0, + "sds": -0.0071388173646692605, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years and 5 months", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.4195756331279945, + "y": -0.0071388173646692605, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years and 5 months", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.4195756331279945, + "y": -0.0071388173646692605, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years and 5 months", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-10-11", + "chronological_decimal_age": 7.501711156741957, + "corrected_decimal_age": 7.501711156741957, + "chronological_calendar_age": "7 years and 6 months", + "corrected_calendar_age": "7 years and 6 months", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 124.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.007614924430398317, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.007614924430398317, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.501711156741957, + "y": 124.3, + "b": null, + "centile": 49.0, + "sds": -0.007614924430398317, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years and 6 months", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.501711156741957, + "y": 124.3, + "b": null, + "centile": 49.0, + "sds": -0.007614924430398317, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years and 6 months", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.501711156741957, + "y": -0.007614924430398317, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years and 6 months", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.501711156741957, + "y": -0.007614924430398317, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years and 6 months", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-11-10", + "chronological_decimal_age": 7.58384668035592, + "corrected_decimal_age": 7.58384668035592, + "chronological_calendar_age": "7 years, 6 months, 4 weeks and 2 days", + "corrected_calendar_age": "7 years, 6 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 124.9, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.01064818900276585, + "corrected_centile": 50.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": 0.01064818900276585, + "chronological_centile": 50.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.58384668035592, + "y": 124.9, + "b": null, + "centile": 50.0, + "sds": 0.01064818900276585, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 6 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.58384668035592, + "y": 124.9, + "b": null, + "centile": 50.0, + "sds": 0.01064818900276585, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 6 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.58384668035592, + "y": 0.01064818900276585, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 6 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.58384668035592, + "y": 0.01064818900276585, + "b": null, + "centile": 50.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 6 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-12-10", + "chronological_decimal_age": 7.665982203969883, + "corrected_decimal_age": 7.665982203969883, + "chronological_calendar_age": "7 years, 7 months, 4 weeks and 1 day", + "corrected_calendar_age": "7 years, 7 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 125.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.006682338675676971, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.006682338675676971, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.665982203969883, + "y": 125.3, + "b": null, + "centile": 49.0, + "sds": -0.006682338675676971, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 7 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.665982203969883, + "y": 125.3, + "b": null, + "centile": 49.0, + "sds": -0.006682338675676971, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 7 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.665982203969883, + "y": -0.006682338675676971, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 7 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.665982203969883, + "y": -0.006682338675676971, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 7 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-01-09", + "chronological_decimal_age": 7.748117727583847, + "corrected_decimal_age": 7.748117727583847, + "chronological_calendar_age": "7 years, 8 months, 4 weeks and 1 day", + "corrected_calendar_age": "7 years, 8 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 125.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.007139647207972174, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.007139647207972174, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.748117727583847, + "y": 125.8, + "b": null, + "centile": 49.0, + "sds": -0.007139647207972174, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 8 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.748117727583847, + "y": 125.8, + "b": null, + "centile": 49.0, + "sds": -0.007139647207972174, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 8 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.748117727583847, + "y": -0.007139647207972174, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 8 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.748117727583847, + "y": -0.007139647207972174, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 8 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-02-08", + "chronological_decimal_age": 7.83025325119781, + "corrected_decimal_age": 7.83025325119781, + "chronological_calendar_age": "7 years, 9 months and 4 weeks", + "corrected_calendar_age": "7 years, 9 months and 4 weeks", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 126.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.005827311295478304, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.005827311295478304, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.83025325119781, + "y": 126.3, + "b": null, + "centile": 49.0, + "sds": -0.005827311295478304, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 9 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.83025325119781, + "y": 126.3, + "b": null, + "centile": 49.0, + "sds": -0.005827311295478304, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 9 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.83025325119781, + "y": -0.005827311295478304, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 9 months and 4 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.83025325119781, + "y": -0.005827311295478304, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 9 months and 4 weeks", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-03-10", + "chronological_decimal_age": 7.912388774811773, + "corrected_decimal_age": 7.912388774811773, + "chronological_calendar_age": "7 years, 10 months, 3 weeks and 6 days", + "corrected_calendar_age": "7 years, 10 months, 3 weeks and 6 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 126.8, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.004498399061201705, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.004498399061201705, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.912388774811773, + "y": 126.8, + "b": null, + "centile": 49.0, + "sds": -0.004498399061201705, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 10 months, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.912388774811773, + "y": 126.8, + "b": null, + "centile": 49.0, + "sds": -0.004498399061201705, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 10 months, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.912388774811773, + "y": -0.004498399061201705, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 10 months, 3 weeks and 6 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.912388774811773, + "y": -0.004498399061201705, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 10 months, 3 weeks and 6 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-04-09", + "chronological_decimal_age": 7.994524298425736, + "corrected_decimal_age": 7.994524298425736, + "chronological_calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "corrected_calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "height", + "observation_value": 127.3, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.0014822539312566807, + "corrected_centile": 49.0, + "corrected_centile_band": "This height measurement is on or near the 50th centile.", + "chronological_sds": -0.0014822539312566807, + "chronological_centile": 49.0, + "chronological_centile_band": "This height measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.994524298425736, + "y": 127.3, + "b": null, + "centile": 49.0, + "sds": -0.0014822539312566807, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.994524298425736, + "y": 127.3, + "b": null, + "centile": 49.0, + "sds": -0.0014822539312566807, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.994524298425736, + "y": -0.0014822539312566807, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.994524298425736, + "y": -0.0014822539312566807, + "b": null, + "centile": 49.0, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This height measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } +] \ No newline at end of file diff --git a/src/testParameters/measurements/twoToEightOFC.ts b/src/testParameters/measurements/twoToEightOFC.ts new file mode 100644 index 0000000..153fbe3 --- /dev/null +++ b/src/testParameters/measurements/twoToEightOFC.ts @@ -0,0 +1,1012 @@ +import { Measurement } from "../../interfaces/RCPCHMeasurementObject" + +export const twoToEightOFC: Measurement[] = [ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-04-10", + "chronological_decimal_age": 1.998631074606434, + "corrected_decimal_age": 1.998631074606434, + "chronological_calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 47.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.014443438725268763, + "corrected_centile": 50.6, + "corrected_centile_band": "This head circumference measurement is on or near the 50th centile.", + "chronological_sds": 0.014443438725268763, + "chronological_centile": 50.6, + "chronological_centile_band": "This head circumference measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": 47.2, + "b": null, + "centile": 50.6, + "sds": 0.014443438725268763, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.998631074606434, + "y": 47.2, + "b": null, + "centile": 50.6, + "sds": 0.014443438725268763, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": 0.014443438725268763, + "b": null, + "centile": 50.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.998631074606434, + "y": 0.014443438725268763, + "b": null, + "centile": 50.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-04-10", + "chronological_decimal_age": 2.9979466119096507, + "corrected_decimal_age": 2.9979466119096507, + "chronological_calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "corrected_calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 48.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.005537230439987347, + "corrected_centile": 49.8, + "corrected_centile_band": "This head circumference measurement is on or near the 50th centile.", + "chronological_sds": -0.005537230439987347, + "chronological_centile": 49.8, + "chronological_centile_band": "This head circumference measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.9979466119096507, + "y": 48.5, + "b": null, + "centile": 49.8, + "sds": -0.005537230439987347, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.9979466119096507, + "y": 48.5, + "b": null, + "centile": 49.8, + "sds": -0.005537230439987347, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.9979466119096507, + "y": -0.005537230439987347, + "b": null, + "centile": 49.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.9979466119096507, + "y": -0.005537230439987347, + "b": null, + "centile": 49.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-04-10", + "chronological_decimal_age": 3.997262149212868, + "corrected_decimal_age": 3.997262149212868, + "chronological_calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "corrected_calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 51.1, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 1.246532676074717, + "corrected_centile": 89.4, + "corrected_centile_band": "This head circumference measurement is on or near the 91st centile.", + "chronological_sds": 1.246532676074717, + "chronological_centile": 89.4, + "chronological_centile_band": "This head circumference measurement is on or near the 91st centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.997262149212868, + "y": 51.1, + "b": null, + "centile": 89.4, + "sds": 1.246532676074717, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 91st centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.997262149212868, + "y": 51.1, + "b": null, + "centile": 89.4, + "sds": 1.246532676074717, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 91st centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.997262149212868, + "y": 1.246532676074717, + "b": null, + "centile": 89.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 91st centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.997262149212868, + "y": 1.246532676074717, + "b": null, + "centile": 89.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 91st centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-04-09", + "chronological_decimal_age": 4.996577686516085, + "corrected_decimal_age": 4.996577686516085, + "chronological_calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "corrected_calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 51.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.01742488039360197, + "corrected_centile": 50.7, + "corrected_centile_band": "This head circumference measurement is on or near the 50th centile.", + "chronological_sds": 0.01742488039360197, + "chronological_centile": 50.7, + "chronological_centile_band": "This head circumference measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.996577686516085, + "y": 51.7, + "b": null, + "centile": 50.7, + "sds": 0.01742488039360197, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.996577686516085, + "y": 51.7, + "b": null, + "centile": 50.7, + "sds": 0.01742488039360197, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.996577686516085, + "y": 0.01742488039360197, + "b": null, + "centile": 50.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.996577686516085, + "y": 0.01742488039360197, + "b": null, + "centile": 50.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-04-09", + "chronological_decimal_age": 5.9958932238193015, + "corrected_decimal_age": 5.9958932238193015, + "chronological_calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "corrected_calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 52.2, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.027461871526761793, + "corrected_centile": 51.1, + "corrected_centile_band": "This head circumference measurement is on or near the 50th centile.", + "chronological_sds": 0.027461871526761793, + "chronological_centile": 51.1, + "chronological_centile_band": "This head circumference measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.9958932238193015, + "y": 52.2, + "b": null, + "centile": 51.1, + "sds": 0.027461871526761793, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.9958932238193015, + "y": 52.2, + "b": null, + "centile": 51.1, + "sds": 0.027461871526761793, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.9958932238193015, + "y": 0.027461871526761793, + "b": null, + "centile": 51.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.9958932238193015, + "y": 0.027461871526761793, + "b": null, + "centile": 51.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-04-09", + "chronological_decimal_age": 6.995208761122519, + "corrected_decimal_age": 6.995208761122519, + "chronological_calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "corrected_calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 52.6, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.0016214531725369467, + "corrected_centile": 49.9, + "corrected_centile_band": "This head circumference measurement is on or near the 50th centile.", + "chronological_sds": -0.0016214531725369467, + "chronological_centile": 49.9, + "chronological_centile_band": "This head circumference measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.995208761122519, + "y": 52.6, + "b": null, + "centile": 49.9, + "sds": -0.0016214531725369467, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.995208761122519, + "y": 52.6, + "b": null, + "centile": 49.9, + "sds": -0.0016214531725369467, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.995208761122519, + "y": -0.0016214531725369467, + "b": null, + "centile": 49.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.995208761122519, + "y": -0.0016214531725369467, + "b": null, + "centile": 49.9, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1767-04-09", + "chronological_decimal_age": 7.994524298425736, + "corrected_decimal_age": 7.994524298425736, + "chronological_calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "corrected_calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "ofc", + "observation_value": 53.0, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": -0.004777318315390511, + "corrected_centile": 49.8, + "corrected_centile_band": "This head circumference measurement is on or near the 50th centile.", + "chronological_sds": -0.004777318315390511, + "chronological_centile": 49.8, + "chronological_centile_band": "This head circumference measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": null, + "chronological_percentage_median_bmi": null + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 7.994524298425736, + "y": 53.0, + "b": null, + "centile": 49.8, + "sds": -0.004777318315390511, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.994524298425736, + "y": 53.0, + "b": null, + "centile": 49.8, + "sds": -0.004777318315390511, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 7.994524298425736, + "y": -0.004777318315390511, + "b": null, + "centile": 49.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 7.994524298425736, + "y": -0.004777318315390511, + "b": null, + "centile": 49.8, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "7 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This head circumference measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } + ] \ No newline at end of file diff --git a/src/testParameters/measurements/twoToEightWeight.ts b/src/testParameters/measurements/twoToEightWeight.ts new file mode 100644 index 0000000..c1a4326 --- /dev/null +++ b/src/testParameters/measurements/twoToEightWeight.ts @@ -0,0 +1,10151 @@ +import { Measurement } from '../../interfaces/RCPCHMeasurementObject'; + +export const twoToEightWeight: Measurement[] = [ + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1761-04-10', + chronological_decimal_age: 1.998631074606434, + corrected_decimal_age: 1.998631074606434, + chronological_calendar_age: '1 year, 11 months, 4 weeks and 2 days', + corrected_calendar_age: '1 year, 11 months, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 12.2, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.03723176673990966, + corrected_centile: 51.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.03723176673990966, + chronological_centile: 51.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 1.998631074606434, + y: 12.2, + b: null, + centile: 51.0, + sds: 0.03723176673990966, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '1 year, 11 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 1.998631074606434, + y: 12.2, + b: null, + centile: 51.0, + sds: 0.03723176673990966, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '1 year, 11 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 1.998631074606434, + y: 0.03723176673990966, + b: null, + centile: 51.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '1 year, 11 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 1.998631074606434, + y: 0.03723176673990966, + b: null, + centile: 51.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '1 year, 11 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1761-05-10', + chronological_decimal_age: 2.080766598220397, + corrected_decimal_age: 2.080766598220397, + chronological_calendar_age: '2 years, 4 weeks and 1 day', + corrected_calendar_age: '2 years, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 12.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.03935925563596646, + corrected_centile: 51.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.03935925563596646, + chronological_centile: 51.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.080766598220397, + y: 12.4, + b: null, + centile: 51.0, + sds: 0.03935925563596646, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.080766598220397, + y: 12.4, + b: null, + centile: 51.0, + sds: 0.03935925563596646, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.080766598220397, + y: 0.03935925563596646, + b: null, + centile: 51.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.080766598220397, + y: 0.03935925563596646, + b: null, + centile: 51.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1761-06-10', + chronological_decimal_age: 2.1656399726214923, + corrected_decimal_age: 2.1656399726214923, + chronological_calendar_age: '2 years, 1 month, 4 weeks and 2 days', + corrected_calendar_age: '2 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 12.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.03057755188290589, + corrected_centile: 48.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.03057755188290589, + chronological_centile: 48.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.1656399726214923, + y: 12.5, + b: null, + centile: 48.0, + sds: -0.03057755188290589, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 1 month, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.1656399726214923, + y: 12.5, + b: null, + centile: 48.0, + sds: -0.03057755188290589, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.1656399726214923, + y: -0.03057755188290589, + b: null, + centile: 48.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 1 month, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.1656399726214923, + y: -0.03057755188290589, + b: null, + centile: 48.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1761-07-10', + chronological_decimal_age: 2.2477754962354553, + corrected_decimal_age: 2.2477754962354553, + chronological_calendar_age: '2 years, 2 months, 4 weeks and 1 day', + corrected_calendar_age: '2 years, 2 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 12.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.023704788850817428, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.023704788850817428, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.2477754962354553, + y: 12.7, + b: null, + centile: 49.0, + sds: -0.023704788850817428, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 2 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.2477754962354553, + y: 12.7, + b: null, + centile: 49.0, + sds: -0.023704788850817428, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 2 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.2477754962354553, + y: -0.023704788850817428, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 2 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.2477754962354553, + y: -0.023704788850817428, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 2 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1761-08-10', + chronological_decimal_age: 2.3326488706365502, + corrected_decimal_age: 2.3326488706365502, + chronological_calendar_age: '2 years, 3 months, 4 weeks and 2 days', + corrected_calendar_age: '2 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 12.9, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.01908896345998297, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.01908896345998297, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.3326488706365502, + y: 12.9, + b: null, + centile: 49.0, + sds: -0.01908896345998297, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 3 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.3326488706365502, + y: 12.9, + b: null, + centile: 49.0, + sds: -0.01908896345998297, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.3326488706365502, + y: -0.01908896345998297, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 3 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.3326488706365502, + y: -0.01908896345998297, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1761-09-09', + chronological_decimal_age: 2.414784394250513, + corrected_decimal_age: 2.414784394250513, + chronological_calendar_age: '2 years, 4 months, 4 weeks and 1 day', + corrected_calendar_age: '2 years, 4 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 13.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.008282616707856592, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.008282616707856592, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.414784394250513, + y: 13.1, + b: null, + centile: 49.0, + sds: -0.008282616707856592, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 4 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.414784394250513, + y: 13.1, + b: null, + centile: 49.0, + sds: -0.008282616707856592, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 4 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.414784394250513, + y: -0.008282616707856592, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 4 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.414784394250513, + y: -0.008282616707856592, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 4 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1761-10-10', + chronological_decimal_age: 2.4996577686516086, + corrected_decimal_age: 2.4996577686516086, + chronological_calendar_age: '2 years, 5 months, 4 weeks and 1 day', + corrected_calendar_age: '2 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 13.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.0004755334149001738, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.0004755334149001738, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.4996577686516086, + y: 13.3, + b: null, + centile: 50.0, + sds: 0.0004755334149001738, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 5 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.4996577686516086, + y: 13.3, + b: null, + centile: 50.0, + sds: 0.0004755334149001738, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.4996577686516086, + y: 0.0004755334149001738, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 5 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.4996577686516086, + y: 0.0004755334149001738, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1761-11-09', + chronological_decimal_age: 2.5817932922655715, + corrected_decimal_age: 2.5817932922655715, + chronological_calendar_age: '2 years, 6 months, 4 weeks and 1 day', + corrected_calendar_age: '2 years, 6 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 13.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.014714000972652403, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.014714000972652403, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.5817932922655715, + y: 13.5, + b: null, + centile: 50.0, + sds: 0.014714000972652403, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 6 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.5817932922655715, + y: 13.5, + b: null, + centile: 50.0, + sds: 0.014714000972652403, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 6 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.5817932922655715, + y: 0.014714000972652403, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 6 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.5817932922655715, + y: 0.014714000972652403, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 6 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1761-12-10', + chronological_decimal_age: 2.6666666666666665, + corrected_decimal_age: 2.6666666666666665, + chronological_calendar_age: '2 years, 7 months, 4 weeks and 1 day', + corrected_calendar_age: '2 years, 7 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 13.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.02660834402753991, + corrected_centile: 51.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.02660834402753991, + chronological_centile: 51.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.6666666666666665, + y: 13.7, + b: null, + centile: 51.0, + sds: 0.02660834402753991, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 7 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.6666666666666665, + y: 13.7, + b: null, + centile: 51.0, + sds: 0.02660834402753991, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 7 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.6666666666666665, + y: 0.02660834402753991, + b: null, + centile: 51.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 7 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.6666666666666665, + y: 0.02660834402753991, + b: null, + centile: 51.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 7 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1762-01-09', + chronological_decimal_age: 2.74880219028063, + corrected_decimal_age: 2.74880219028063, + chronological_calendar_age: '2 years, 8 months, 4 weeks and 1 day', + corrected_calendar_age: '2 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 13.8, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.01720888845769055, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.01720888845769055, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.74880219028063, + y: 13.8, + b: null, + centile: 49.0, + sds: -0.01720888845769055, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 8 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.74880219028063, + y: 13.8, + b: null, + centile: 49.0, + sds: -0.01720888845769055, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.74880219028063, + y: -0.01720888845769055, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 8 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.74880219028063, + y: -0.01720888845769055, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1762-02-08', + chronological_decimal_age: 2.830937713894593, + corrected_decimal_age: 2.830937713894593, + chronological_calendar_age: '2 years, 9 months and 4 weeks', + corrected_calendar_age: '2 years, 9 months and 4 weeks', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 14.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.0010858762350643102, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.0010858762350643102, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.830937713894593, + y: 14.0, + b: null, + centile: 50.0, + sds: 0.0010858762350643102, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 9 months and 4 weeks', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.830937713894593, + y: 14.0, + b: null, + centile: 50.0, + sds: 0.0010858762350643102, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 9 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.830937713894593, + y: 0.0010858762350643102, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 9 months and 4 weeks', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.830937713894593, + y: 0.0010858762350643102, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 9 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1762-03-11', + chronological_decimal_age: 2.915811088295688, + corrected_decimal_age: 2.915811088295688, + chronological_calendar_age: '2 years and 11 months', + corrected_calendar_age: '2 years and 11 months', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 14.2, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.016447280937946514, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.016447280937946514, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.915811088295688, + y: 14.2, + b: null, + centile: 50.0, + sds: 0.016447280937946514, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years and 11 months', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.915811088295688, + y: 14.2, + b: null, + centile: 50.0, + sds: 0.016447280937946514, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years and 11 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.915811088295688, + y: 0.016447280937946514, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years and 11 months', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.915811088295688, + y: 0.016447280937946514, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years and 11 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1762-04-10', + chronological_decimal_age: 2.9979466119096507, + corrected_decimal_age: 2.9979466119096507, + chronological_calendar_age: '2 years, 11 months, 4 weeks and 2 days', + corrected_calendar_age: '2 years, 11 months, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 14.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.022334104522123224, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.022334104522123224, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 2.9979466119096507, + y: 14.3, + b: null, + centile: 49.0, + sds: -0.022334104522123224, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 11 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.9979466119096507, + y: 14.3, + b: null, + centile: 49.0, + sds: -0.022334104522123224, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 11 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 2.9979466119096507, + y: -0.022334104522123224, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '2 years, 11 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 2.9979466119096507, + y: -0.022334104522123224, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '2 years, 11 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1762-05-11', + chronological_decimal_age: 3.082819986310746, + corrected_decimal_age: 3.082819986310746, + chronological_calendar_age: '3 years and 1 month', + corrected_calendar_age: '3 years and 1 month', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 14.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.00581608879367608, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.00581608879367608, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.082819986310746, + y: 14.5, + b: null, + centile: 49.0, + sds: -0.00581608879367608, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years and 1 month', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.082819986310746, + y: 14.5, + b: null, + centile: 49.0, + sds: -0.00581608879367608, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years and 1 month', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.082819986310746, + y: -0.00581608879367608, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years and 1 month', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.082819986310746, + y: -0.00581608879367608, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years and 1 month', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1762-06-10', + chronological_decimal_age: 3.164955509924709, + corrected_decimal_age: 3.164955509924709, + chronological_calendar_age: '3 years, 1 month, 4 weeks and 2 days', + corrected_calendar_age: '3 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 14.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.013562177908750599, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.013562177908750599, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.164955509924709, + y: 14.7, + b: null, + centile: 50.0, + sds: 0.013562177908750599, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 1 month, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.164955509924709, + y: 14.7, + b: null, + centile: 50.0, + sds: 0.013562177908750599, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.164955509924709, + y: 0.013562177908750599, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 1 month, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.164955509924709, + y: 0.013562177908750599, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1762-07-11', + chronological_decimal_age: 3.249828884325804, + corrected_decimal_age: 3.249828884325804, + chronological_calendar_age: '3 years and 3 months', + corrected_calendar_age: '3 years and 3 months', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 14.8, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.025433679512283897, + corrected_centile: 48.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.025433679512283897, + chronological_centile: 48.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.249828884325804, + y: 14.8, + b: null, + centile: 48.0, + sds: -0.025433679512283897, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years and 3 months', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.249828884325804, + y: 14.8, + b: null, + centile: 48.0, + sds: -0.025433679512283897, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years and 3 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.249828884325804, + y: -0.025433679512283897, + b: null, + centile: 48.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years and 3 months', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.249828884325804, + y: -0.025433679512283897, + b: null, + centile: 48.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years and 3 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1762-08-10', + chronological_decimal_age: 3.3319644079397674, + corrected_decimal_age: 3.3319644079397674, + chronological_calendar_age: '3 years, 3 months, 4 weeks and 2 days', + corrected_calendar_age: '3 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 15.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.006085491749053553, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.006085491749053553, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.3319644079397674, + y: 15.0, + b: null, + centile: 49.0, + sds: -0.006085491749053553, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 3 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.3319644079397674, + y: 15.0, + b: null, + centile: 49.0, + sds: -0.006085491749053553, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.3319644079397674, + y: -0.006085491749053553, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 3 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.3319644079397674, + y: -0.006085491749053553, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1762-09-09', + chronological_decimal_age: 3.4140999315537304, + corrected_decimal_age: 3.4140999315537304, + chronological_calendar_age: '3 years, 4 months, 4 weeks and 1 day', + corrected_calendar_age: '3 years, 4 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 15.2, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.012693490096378124, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.012693490096378124, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.4140999315537304, + y: 15.2, + b: null, + centile: 50.0, + sds: 0.012693490096378124, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 4 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.4140999315537304, + y: 15.2, + b: null, + centile: 50.0, + sds: 0.012693490096378124, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 4 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.4140999315537304, + y: 0.012693490096378124, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 4 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.4140999315537304, + y: 0.012693490096378124, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 4 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1762-10-10', + chronological_decimal_age: 3.4989733059548254, + corrected_decimal_age: 3.4989733059548254, + chronological_calendar_age: '3 years, 5 months, 4 weeks and 1 day', + corrected_calendar_age: '3 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 15.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.02444864380308804, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.02444864380308804, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.4989733059548254, + y: 15.3, + b: null, + centile: 49.0, + sds: -0.02444864380308804, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 5 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.4989733059548254, + y: 15.3, + b: null, + centile: 49.0, + sds: -0.02444864380308804, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.4989733059548254, + y: -0.02444864380308804, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 5 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.4989733059548254, + y: -0.02444864380308804, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1762-11-09', + chronological_decimal_age: 3.5811088295687883, + corrected_decimal_age: 3.5811088295687883, + chronological_calendar_age: '3 years, 6 months, 4 weeks and 1 day', + corrected_calendar_age: '3 years, 6 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 15.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.00586138669898741, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.00586138669898741, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.5811088295687883, + y: 15.5, + b: null, + centile: 49.0, + sds: -0.00586138669898741, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 6 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.5811088295687883, + y: 15.5, + b: null, + centile: 49.0, + sds: -0.00586138669898741, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 6 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.5811088295687883, + y: -0.00586138669898741, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 6 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.5811088295687883, + y: -0.00586138669898741, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 6 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1762-12-10', + chronological_decimal_age: 3.6659822039698837, + corrected_decimal_age: 3.6659822039698837, + chronological_calendar_age: '3 years, 7 months, 4 weeks and 1 day', + corrected_calendar_age: '3 years, 7 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 15.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.009444945097379571, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.009444945097379571, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.6659822039698837, + y: 15.7, + b: null, + centile: 50.0, + sds: 0.009444945097379571, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 7 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.6659822039698837, + y: 15.7, + b: null, + centile: 50.0, + sds: 0.009444945097379571, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 7 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.6659822039698837, + y: 0.009444945097379571, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 7 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.6659822039698837, + y: 0.009444945097379571, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 7 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1763-01-09', + chronological_decimal_age: 3.7481177275838466, + corrected_decimal_age: 3.7481177275838466, + chronological_calendar_age: '3 years, 8 months, 4 weeks and 1 day', + corrected_calendar_age: '3 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 15.8, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.023070417068430348, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.023070417068430348, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.7481177275838466, + y: 15.8, + b: null, + centile: 49.0, + sds: -0.023070417068430348, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 8 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.7481177275838466, + y: 15.8, + b: null, + centile: 49.0, + sds: -0.023070417068430348, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.7481177275838466, + y: -0.023070417068430348, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 8 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.7481177275838466, + y: -0.023070417068430348, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1763-02-09', + chronological_decimal_age: 3.8329911019849416, + corrected_decimal_age: 3.8329911019849416, + chronological_calendar_age: '3 years, 9 months, 4 weeks and 1 day', + corrected_calendar_age: '3 years, 9 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 16.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.007716608264734076, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.007716608264734076, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.8329911019849416, + y: 16.0, + b: null, + centile: 49.0, + sds: -0.007716608264734076, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 9 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.8329911019849416, + y: 16.0, + b: null, + centile: 49.0, + sds: -0.007716608264734076, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 9 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.8329911019849416, + y: -0.007716608264734076, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years, 9 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.8329911019849416, + y: -0.007716608264734076, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years, 9 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1763-03-11', + chronological_decimal_age: 3.915126625598905, + corrected_decimal_age: 3.915126625598905, + chronological_calendar_age: '3 years and 11 months', + corrected_calendar_age: '3 years and 11 months', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 16.2, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.009908848868179939, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.009908848868179939, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 3.915126625598905, + y: 16.2, + b: null, + centile: 50.0, + sds: 0.009908848868179939, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years and 11 months', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.915126625598905, + y: 16.2, + b: null, + centile: 50.0, + sds: 0.009908848868179939, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years and 11 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 3.915126625598905, + y: 0.009908848868179939, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '3 years and 11 months', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 3.915126625598905, + y: 0.009908848868179939, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '3 years and 11 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1763-04-11', + chronological_decimal_age: 4.0, + corrected_decimal_age: 4.0, + chronological_calendar_age: '4 years', + corrected_calendar_age: '4 years', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 16.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.025361076382041464, + corrected_centile: 51.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.025361076382041464, + chronological_centile: 51.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.0, + y: 16.6, + b: null, + centile: 51.0, + sds: 0.025361076382041464, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.0, + y: 16.6, + b: null, + centile: 51.0, + sds: 0.025361076382041464, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.0, + y: 0.025361076382041464, + b: null, + centile: 51.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.0, + y: 0.025361076382041464, + b: null, + centile: 51.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1763-05-11', + chronological_decimal_age: 4.082135523613963, + corrected_decimal_age: 4.082135523613963, + chronological_calendar_age: '4 years and 1 month', + corrected_calendar_age: '4 years and 1 month', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 16.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.0029942944020836166, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.0029942944020836166, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.082135523613963, + y: 16.7, + b: null, + centile: 49.0, + sds: -0.0029942944020836166, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years and 1 month', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.082135523613963, + y: 16.7, + b: null, + centile: 49.0, + sds: -0.0029942944020836166, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years and 1 month', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.082135523613963, + y: -0.0029942944020836166, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years and 1 month', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.082135523613963, + y: -0.0029942944020836166, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years and 1 month', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1763-06-10', + chronological_decimal_age: 4.164271047227926, + corrected_decimal_age: 4.164271047227926, + chronological_calendar_age: '4 years, 1 month, 4 weeks and 2 days', + corrected_calendar_age: '4 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 16.9, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.01807650457225559, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.01807650457225559, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.164271047227926, + y: 16.9, + b: null, + centile: 50.0, + sds: 0.01807650457225559, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 1 month, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.164271047227926, + y: 16.9, + b: null, + centile: 50.0, + sds: 0.01807650457225559, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.164271047227926, + y: 0.01807650457225559, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 1 month, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.164271047227926, + y: 0.01807650457225559, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1763-07-11', + chronological_decimal_age: 4.249144421629021, + corrected_decimal_age: 4.249144421629021, + chronological_calendar_age: '4 years and 3 months', + corrected_calendar_age: '4 years and 3 months', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 17.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.015657641179839536, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.015657641179839536, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.249144421629021, + y: 17.0, + b: null, + centile: 49.0, + sds: -0.015657641179839536, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years and 3 months', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.249144421629021, + y: 17.0, + b: null, + centile: 49.0, + sds: -0.015657641179839536, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years and 3 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.249144421629021, + y: -0.015657641179839536, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years and 3 months', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.249144421629021, + y: -0.015657641179839536, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years and 3 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1763-08-10', + chronological_decimal_age: 4.331279945242985, + corrected_decimal_age: 4.331279945242985, + chronological_calendar_age: '4 years, 3 months, 4 weeks and 2 days', + corrected_calendar_age: '4 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 17.2, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.001523115757664927, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.001523115757664927, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.331279945242985, + y: 17.2, + b: null, + centile: 50.0, + sds: 0.001523115757664927, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 3 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.331279945242985, + y: 17.2, + b: null, + centile: 50.0, + sds: 0.001523115757664927, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.331279945242985, + y: 0.001523115757664927, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 3 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.331279945242985, + y: 0.001523115757664927, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1763-09-10', + chronological_decimal_age: 4.41615331964408, + corrected_decimal_age: 4.41615331964408, + chronological_calendar_age: '4 years, 4 months, 4 weeks and 2 days', + corrected_calendar_age: '4 years, 4 months, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 17.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.013695332101053646, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.013695332101053646, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.41615331964408, + y: 17.4, + b: null, + centile: 50.0, + sds: 0.013695332101053646, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 4 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.41615331964408, + y: 17.4, + b: null, + centile: 50.0, + sds: 0.013695332101053646, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 4 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.41615331964408, + y: 0.013695332101053646, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 4 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.41615331964408, + y: 0.013695332101053646, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 4 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1763-10-10', + chronological_decimal_age: 4.498288843258043, + corrected_decimal_age: 4.498288843258043, + chronological_calendar_age: '4 years, 5 months, 4 weeks and 1 day', + corrected_calendar_age: '4 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 17.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.021362644380010176, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.021362644380010176, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.498288843258043, + y: 17.5, + b: null, + centile: 49.0, + sds: -0.021362644380010176, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 5 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.498288843258043, + y: 17.5, + b: null, + centile: 49.0, + sds: -0.021362644380010176, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.498288843258043, + y: -0.021362644380010176, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 5 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.498288843258043, + y: -0.021362644380010176, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1763-11-10', + chronological_decimal_age: 4.583162217659138, + corrected_decimal_age: 4.583162217659138, + chronological_calendar_age: '4 years, 6 months, 4 weeks and 2 days', + corrected_calendar_age: '4 years, 6 months, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 17.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.01183081114055052, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.01183081114055052, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.583162217659138, + y: 17.7, + b: null, + centile: 49.0, + sds: -0.01183081114055052, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 6 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.583162217659138, + y: 17.7, + b: null, + centile: 49.0, + sds: -0.01183081114055052, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 6 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.583162217659138, + y: -0.01183081114055052, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 6 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.583162217659138, + y: -0.01183081114055052, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 6 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1763-12-10', + chronological_decimal_age: 4.6652977412731005, + corrected_decimal_age: 4.6652977412731005, + chronological_calendar_age: '4 years, 7 months, 4 weeks and 1 day', + corrected_calendar_age: '4 years, 7 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 17.9, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.0006271101691896169, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.0006271101691896169, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.6652977412731005, + y: 17.9, + b: null, + centile: 49.0, + sds: -0.0006271101691896169, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 7 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.6652977412731005, + y: 17.9, + b: null, + centile: 49.0, + sds: -0.0006271101691896169, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 7 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.6652977412731005, + y: -0.0006271101691896169, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 7 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.6652977412731005, + y: -0.0006271101691896169, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 7 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1764-01-09', + chronological_decimal_age: 4.747433264887063, + corrected_decimal_age: 4.747433264887063, + chronological_calendar_age: '4 years, 8 months, 4 weeks and 1 day', + corrected_calendar_age: '4 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 18.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.009042983523557133, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.009042983523557133, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.747433264887063, + y: 18.1, + b: null, + centile: 50.0, + sds: 0.009042983523557133, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 8 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.747433264887063, + y: 18.1, + b: null, + centile: 50.0, + sds: 0.009042983523557133, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.747433264887063, + y: 0.009042983523557133, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 8 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.747433264887063, + y: 0.009042983523557133, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1764-02-09', + chronological_decimal_age: 4.832306639288158, + corrected_decimal_age: 4.832306639288158, + chronological_calendar_age: '4 years, 9 months, 4 weeks and 1 day', + corrected_calendar_age: '4 years, 9 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 18.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.01588589076111125, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.01588589076111125, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.832306639288158, + y: 18.3, + b: null, + centile: 50.0, + sds: 0.01588589076111125, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 9 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.832306639288158, + y: 18.3, + b: null, + centile: 50.0, + sds: 0.01588589076111125, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 9 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.832306639288158, + y: 0.01588589076111125, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 9 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.832306639288158, + y: 0.01588589076111125, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 9 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1764-03-10', + chronological_decimal_age: 4.914442162902122, + corrected_decimal_age: 4.914442162902122, + chronological_calendar_age: '4 years, 10 months and 4 weeks', + corrected_calendar_age: '4 years, 10 months and 4 weeks', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 18.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.024295029637246376, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.024295029637246376, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.914442162902122, + y: 18.5, + b: null, + centile: 50.0, + sds: 0.024295029637246376, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 10 months and 4 weeks', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.914442162902122, + y: 18.5, + b: null, + centile: 50.0, + sds: 0.024295029637246376, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 10 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.914442162902122, + y: 0.024295029637246376, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 10 months and 4 weeks', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.914442162902122, + y: 0.024295029637246376, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 10 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1764-04-10', + chronological_decimal_age: 4.999315537303217, + corrected_decimal_age: 4.999315537303217, + chronological_calendar_age: '4 years, 11 months, 4 weeks and 2 days', + corrected_calendar_age: '4 years, 11 months, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 18.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.01398304990583532, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.01398304990583532, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 4.999315537303217, + y: 18.6, + b: null, + centile: 49.0, + sds: -0.01398304990583532, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 11 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.999315537303217, + y: 18.6, + b: null, + centile: 49.0, + sds: -0.01398304990583532, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 11 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 4.999315537303217, + y: -0.01398304990583532, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '4 years, 11 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 4.999315537303217, + y: -0.01398304990583532, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '4 years, 11 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1764-05-10', + chronological_decimal_age: 5.08145106091718, + corrected_decimal_age: 5.08145106091718, + chronological_calendar_age: '5 years, 4 weeks and 1 day', + corrected_calendar_age: '5 years, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 18.8, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.004472105364775293, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.004472105364775293, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.08145106091718, + y: 18.8, + b: null, + centile: 49.0, + sds: -0.004472105364775293, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.08145106091718, + y: 18.8, + b: null, + centile: 49.0, + sds: -0.004472105364775293, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.08145106091718, + y: -0.004472105364775293, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.08145106091718, + y: -0.004472105364775293, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1764-06-10', + chronological_decimal_age: 5.166324435318275, + corrected_decimal_age: 5.166324435318275, + chronological_calendar_age: '5 years, 1 month, 4 weeks and 2 days', + corrected_calendar_age: '5 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 19.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.002819940746205152, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.002819940746205152, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.166324435318275, + y: 19.0, + b: null, + centile: 50.0, + sds: 0.002819940746205152, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 1 month, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.166324435318275, + y: 19.0, + b: null, + centile: 50.0, + sds: 0.002819940746205152, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.166324435318275, + y: 0.002819940746205152, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 1 month, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.166324435318275, + y: 0.002819940746205152, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1764-07-10', + chronological_decimal_age: 5.248459958932238, + corrected_decimal_age: 5.248459958932238, + chronological_calendar_age: '5 years, 2 months, 4 weeks and 1 day', + corrected_calendar_age: '5 years, 2 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 19.2, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.013309836540815401, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.013309836540815401, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.248459958932238, + y: 19.2, + b: null, + centile: 50.0, + sds: 0.013309836540815401, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 2 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.248459958932238, + y: 19.2, + b: null, + centile: 50.0, + sds: 0.013309836540815401, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 2 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.248459958932238, + y: 0.013309836540815401, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 2 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.248459958932238, + y: 0.013309836540815401, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 2 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1764-08-10', + chronological_decimal_age: 5.333333333333333, + corrected_decimal_age: 5.333333333333333, + chronological_calendar_age: '5 years, 3 months, 4 weeks and 2 days', + corrected_calendar_age: '5 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 19.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.02064952996383474, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.02064952996383474, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.333333333333333, + y: 19.3, + b: null, + centile: 49.0, + sds: -0.02064952996383474, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 3 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.333333333333333, + y: 19.3, + b: null, + centile: 49.0, + sds: -0.02064952996383474, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.333333333333333, + y: -0.02064952996383474, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 3 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.333333333333333, + y: -0.02064952996383474, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1764-09-09', + chronological_decimal_age: 5.415468856947296, + corrected_decimal_age: 5.415468856947296, + chronological_calendar_age: '5 years, 4 months, 4 weeks and 1 day', + corrected_calendar_age: '5 years, 4 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 19.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.00946511698945048, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.00946511698945048, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.415468856947296, + y: 19.5, + b: null, + centile: 49.0, + sds: -0.00946511698945048, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 4 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.415468856947296, + y: 19.5, + b: null, + centile: 49.0, + sds: -0.00946511698945048, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 4 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.415468856947296, + y: -0.00946511698945048, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 4 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.415468856947296, + y: -0.00946511698945048, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 4 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1764-10-09', + chronological_decimal_age: 5.49760438056126, + corrected_decimal_age: 5.49760438056126, + chronological_calendar_age: '5 years, 5 months and 4 weeks', + corrected_calendar_age: '5 years, 5 months and 4 weeks', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 19.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.0016596599978282228, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.0016596599978282228, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.49760438056126, + y: 19.7, + b: null, + centile: 50.0, + sds: 0.0016596599978282228, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 5 months and 4 weeks', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.49760438056126, + y: 19.7, + b: null, + centile: 50.0, + sds: 0.0016596599978282228, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 5 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.49760438056126, + y: 0.0016596599978282228, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 5 months and 4 weeks', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.49760438056126, + y: 0.0016596599978282228, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 5 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1764-11-09', + chronological_decimal_age: 5.582477754962355, + corrected_decimal_age: 5.582477754962355, + chronological_calendar_age: '5 years, 6 months, 4 weeks and 1 day', + corrected_calendar_age: '5 years, 6 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 19.9, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.010149735953871582, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.010149735953871582, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.582477754962355, + y: 19.9, + b: null, + centile: 50.0, + sds: 0.010149735953871582, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 6 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.582477754962355, + y: 19.9, + b: null, + centile: 50.0, + sds: 0.010149735953871582, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 6 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.582477754962355, + y: 0.010149735953871582, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 6 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.582477754962355, + y: 0.010149735953871582, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 6 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1764-12-09', + chronological_decimal_age: 5.664613278576318, + corrected_decimal_age: 5.664613278576318, + chronological_calendar_age: '5 years, 7 months and 4 weeks', + corrected_calendar_age: '5 years, 7 months and 4 weeks', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 20.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.020751537697345813, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.020751537697345813, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.664613278576318, + y: 20.1, + b: null, + centile: 50.0, + sds: 0.020751537697345813, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 7 months and 4 weeks', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.664613278576318, + y: 20.1, + b: null, + centile: 50.0, + sds: 0.020751537697345813, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 7 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.664613278576318, + y: 0.020751537697345813, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 7 months and 4 weeks', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.664613278576318, + y: 0.020751537697345813, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 7 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1765-01-09', + chronological_decimal_age: 5.749486652977413, + corrected_decimal_age: 5.749486652977413, + chronological_calendar_age: '5 years, 8 months, 4 weeks and 1 day', + corrected_calendar_age: '5 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 20.2, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.011019832196722527, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.011019832196722527, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.749486652977413, + y: 20.2, + b: null, + centile: 49.0, + sds: -0.011019832196722527, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 8 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.749486652977413, + y: 20.2, + b: null, + centile: 49.0, + sds: -0.011019832196722527, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.749486652977413, + y: -0.011019832196722527, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 8 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.749486652977413, + y: -0.011019832196722527, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1765-02-08', + chronological_decimal_age: 5.831622176591376, + corrected_decimal_age: 5.831622176591376, + chronological_calendar_age: '5 years, 9 months and 4 weeks', + corrected_calendar_age: '5 years, 9 months and 4 weeks', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 20.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.0015663499991921757, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.0015663499991921757, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.831622176591376, + y: 20.4, + b: null, + centile: 49.0, + sds: -0.0015663499991921757, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 9 months and 4 weeks', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.831622176591376, + y: 20.4, + b: null, + centile: 49.0, + sds: -0.0015663499991921757, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 9 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.831622176591376, + y: -0.0015663499991921757, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 9 months and 4 weeks', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.831622176591376, + y: -0.0015663499991921757, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 9 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1765-03-11', + chronological_decimal_age: 5.916495550992471, + corrected_decimal_age: 5.916495550992471, + chronological_calendar_age: '5 years and 11 months', + corrected_calendar_age: '5 years and 11 months', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 20.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.005249121813766004, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.005249121813766004, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.916495550992471, + y: 20.6, + b: null, + centile: 50.0, + sds: 0.005249121813766004, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years and 11 months', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.916495550992471, + y: 20.6, + b: null, + centile: 50.0, + sds: 0.005249121813766004, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years and 11 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.916495550992471, + y: 0.005249121813766004, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years and 11 months', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.916495550992471, + y: 0.005249121813766004, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years and 11 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1765-04-10', + chronological_decimal_age: 5.9986310746064335, + corrected_decimal_age: 5.9986310746064335, + chronological_calendar_age: '5 years, 11 months, 4 weeks and 2 days', + corrected_calendar_age: '5 years, 11 months, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 20.8, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.013623320574514446, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.013623320574514446, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 5.9986310746064335, + y: 20.8, + b: null, + centile: 50.0, + sds: 0.013623320574514446, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 11 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.9986310746064335, + y: 20.8, + b: null, + centile: 50.0, + sds: 0.013623320574514446, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 11 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 5.9986310746064335, + y: 0.013623320574514446, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '5 years, 11 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 5.9986310746064335, + y: 0.013623320574514446, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '5 years, 11 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1765-05-10', + chronological_decimal_age: 6.080766598220397, + corrected_decimal_age: 6.080766598220397, + chronological_calendar_age: '6 years, 4 weeks and 1 day', + corrected_calendar_age: '6 years, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 20.9, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.01616189747240591, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.01616189747240591, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.080766598220397, + y: 20.9, + b: null, + centile: 49.0, + sds: -0.01616189747240591, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.080766598220397, + y: 20.9, + b: null, + centile: 49.0, + sds: -0.01616189747240591, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.080766598220397, + y: -0.01616189747240591, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.080766598220397, + y: -0.01616189747240591, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1765-06-10', + chronological_decimal_age: 6.165639972621492, + corrected_decimal_age: 6.165639972621492, + chronological_calendar_age: '6 years, 1 month, 4 weeks and 2 days', + corrected_calendar_age: '6 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 21.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.010374720012447828, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.010374720012447828, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.165639972621492, + y: 21.1, + b: null, + centile: 49.0, + sds: -0.010374720012447828, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 1 month, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.165639972621492, + y: 21.1, + b: null, + centile: 49.0, + sds: -0.010374720012447828, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.165639972621492, + y: -0.010374720012447828, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 1 month, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.165639972621492, + y: -0.010374720012447828, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1765-07-10', + chronological_decimal_age: 6.247775496235455, + corrected_decimal_age: 6.247775496235455, + chronological_calendar_age: '6 years, 2 months, 4 weeks and 1 day', + corrected_calendar_age: '6 years, 2 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 21.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.002952546112469271, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.002952546112469271, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.247775496235455, + y: 21.3, + b: null, + centile: 49.0, + sds: -0.002952546112469271, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 2 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.247775496235455, + y: 21.3, + b: null, + centile: 49.0, + sds: -0.002952546112469271, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 2 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.247775496235455, + y: -0.002952546112469271, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 2 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.247775496235455, + y: -0.002952546112469271, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 2 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1765-08-10', + chronological_decimal_age: 6.33264887063655, + corrected_decimal_age: 6.33264887063655, + chronological_calendar_age: '6 years, 3 months, 4 weeks and 2 days', + corrected_calendar_age: '6 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 21.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.001231726027545732, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.001231726027545732, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.33264887063655, + y: 21.5, + b: null, + centile: 50.0, + sds: 0.001231726027545732, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 3 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.33264887063655, + y: 21.5, + b: null, + centile: 50.0, + sds: 0.001231726027545732, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.33264887063655, + y: 0.001231726027545732, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 3 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.33264887063655, + y: 0.001231726027545732, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1765-09-09', + chronological_decimal_age: 6.414784394250513, + corrected_decimal_age: 6.414784394250513, + chronological_calendar_age: '6 years, 4 months, 4 weeks and 1 day', + corrected_calendar_age: '6 years, 4 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 21.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.007096547461911161, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.007096547461911161, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.414784394250513, + y: 21.7, + b: null, + centile: 50.0, + sds: 0.007096547461911161, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 4 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.414784394250513, + y: 21.7, + b: null, + centile: 50.0, + sds: 0.007096547461911161, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 4 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.414784394250513, + y: 0.007096547461911161, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 4 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.414784394250513, + y: 0.007096547461911161, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 4 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1765-10-10', + chronological_decimal_age: 6.499657768651608, + corrected_decimal_age: 6.499657768651608, + chronological_calendar_age: '6 years, 5 months, 4 weeks and 1 day', + corrected_calendar_age: '6 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 21.9, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.010056358306361864, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.010056358306361864, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.499657768651608, + y: 21.9, + b: null, + centile: 50.0, + sds: 0.010056358306361864, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 5 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.499657768651608, + y: 21.9, + b: null, + centile: 50.0, + sds: 0.010056358306361864, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.499657768651608, + y: 0.010056358306361864, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 5 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.499657768651608, + y: 0.010056358306361864, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1765-11-09', + chronological_decimal_age: 6.581793292265571, + corrected_decimal_age: 6.581793292265571, + chronological_calendar_age: '6 years, 6 months, 4 weeks and 1 day', + corrected_calendar_age: '6 years, 6 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 22.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.014277475617397254, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.014277475617397254, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.581793292265571, + y: 22.1, + b: null, + centile: 50.0, + sds: 0.014277475617397254, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 6 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.581793292265571, + y: 22.1, + b: null, + centile: 50.0, + sds: 0.014277475617397254, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 6 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.581793292265571, + y: 0.014277475617397254, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 6 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.581793292265571, + y: 0.014277475617397254, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 6 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1765-12-10', + chronological_decimal_age: 6.666666666666667, + corrected_decimal_age: 6.666666666666667, + chronological_calendar_age: '6 years, 7 months, 4 weeks and 1 day', + corrected_calendar_age: '6 years, 7 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 22.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.015318518778245027, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.015318518778245027, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.666666666666667, + y: 22.3, + b: null, + centile: 50.0, + sds: 0.015318518778245027, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 7 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.666666666666667, + y: 22.3, + b: null, + centile: 50.0, + sds: 0.015318518778245027, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 7 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.666666666666667, + y: 0.015318518778245027, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 7 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.666666666666667, + y: 0.015318518778245027, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 7 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1766-01-09', + chronological_decimal_age: 6.74880219028063, + corrected_decimal_age: 6.74880219028063, + chronological_calendar_age: '6 years, 8 months, 4 weeks and 1 day', + corrected_calendar_age: '6 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 22.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.015862539696193056, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.015862539696193056, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.74880219028063, + y: 22.4, + b: null, + centile: 49.0, + sds: -0.015862539696193056, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 8 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.74880219028063, + y: 22.4, + b: null, + centile: 49.0, + sds: -0.015862539696193056, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.74880219028063, + y: -0.015862539696193056, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 8 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.74880219028063, + y: -0.015862539696193056, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1766-02-08', + chronological_decimal_age: 6.830937713894593, + corrected_decimal_age: 6.830937713894593, + chronological_calendar_age: '6 years, 9 months and 4 weeks', + corrected_calendar_age: '6 years, 9 months and 4 weeks', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 22.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.013947918934014418, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.013947918934014418, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.830937713894593, + y: 22.6, + b: null, + centile: 49.0, + sds: -0.013947918934014418, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 9 months and 4 weeks', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.830937713894593, + y: 22.6, + b: null, + centile: 49.0, + sds: -0.013947918934014418, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 9 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.830937713894593, + y: -0.013947918934014418, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 9 months and 4 weeks', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.830937713894593, + y: -0.013947918934014418, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 9 months and 4 weeks', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1766-03-11', + chronological_decimal_age: 6.915811088295688, + corrected_decimal_age: 6.915811088295688, + chronological_calendar_age: '6 years and 11 months', + corrected_calendar_age: '6 years and 11 months', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 22.8, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.015004321820124575, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.015004321820124575, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.915811088295688, + y: 22.8, + b: null, + centile: 49.0, + sds: -0.015004321820124575, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years and 11 months', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.915811088295688, + y: 22.8, + b: null, + centile: 49.0, + sds: -0.015004321820124575, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years and 11 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.915811088295688, + y: -0.015004321820124575, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years and 11 months', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.915811088295688, + y: -0.015004321820124575, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years and 11 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1766-04-10', + chronological_decimal_age: 6.997946611909651, + corrected_decimal_age: 6.997946611909651, + chronological_calendar_age: '6 years, 11 months, 4 weeks and 2 days', + corrected_calendar_age: '6 years, 11 months, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 23.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.01733221505789334, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.01733221505789334, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 6.997946611909651, + y: 23.1, + b: null, + centile: 50.0, + sds: 0.01733221505789334, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 11 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.997946611909651, + y: 23.1, + b: null, + centile: 50.0, + sds: 0.01733221505789334, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 11 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 6.997946611909651, + y: 0.01733221505789334, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '6 years, 11 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 6.997946611909651, + y: 0.01733221505789334, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '6 years, 11 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1766-05-11', + chronological_decimal_age: 7.082819986310746, + corrected_decimal_age: 7.082819986310746, + chronological_calendar_age: '7 years and 1 month', + corrected_calendar_age: '7 years and 1 month', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 23.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.013805638062059464, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.013805638062059464, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.082819986310746, + y: 23.3, + b: null, + centile: 50.0, + sds: 0.013805638062059464, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years and 1 month', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.082819986310746, + y: 23.3, + b: null, + centile: 50.0, + sds: 0.013805638062059464, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years and 1 month', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.082819986310746, + y: 0.013805638062059464, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years and 1 month', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.082819986310746, + y: 0.013805638062059464, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years and 1 month', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1766-06-10', + chronological_decimal_age: 7.1649555099247095, + corrected_decimal_age: 7.1649555099247095, + chronological_calendar_age: '7 years, 1 month, 4 weeks and 2 days', + corrected_calendar_age: '7 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 23.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.01202314807295702, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.01202314807295702, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.1649555099247095, + y: 23.5, + b: null, + centile: 50.0, + sds: 0.01202314807295702, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 1 month, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.1649555099247095, + y: 23.5, + b: null, + centile: 50.0, + sds: 0.01202314807295702, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.1649555099247095, + y: 0.01202314807295702, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 1 month, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.1649555099247095, + y: 0.01202314807295702, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 1 month, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1766-07-11', + chronological_decimal_age: 7.2498288843258045, + corrected_decimal_age: 7.2498288843258045, + chronological_calendar_age: '7 years and 3 months', + corrected_calendar_age: '7 years and 3 months', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 23.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.007501493316964366, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.007501493316964366, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.2498288843258045, + y: 23.7, + b: null, + centile: 50.0, + sds: 0.007501493316964366, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years and 3 months', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.2498288843258045, + y: 23.7, + b: null, + centile: 50.0, + sds: 0.007501493316964366, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years and 3 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.2498288843258045, + y: 0.007501493316964366, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years and 3 months', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.2498288843258045, + y: 0.007501493316964366, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years and 3 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1766-08-10', + chronological_decimal_age: 7.3319644079397674, + corrected_decimal_age: 7.3319644079397674, + chronological_calendar_age: '7 years, 3 months, 4 weeks and 2 days', + corrected_calendar_age: '7 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 23.9, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.004897302689737431, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.004897302689737431, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.3319644079397674, + y: 23.9, + b: null, + centile: 50.0, + sds: 0.004897302689737431, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 3 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.3319644079397674, + y: 23.9, + b: null, + centile: 50.0, + sds: 0.004897302689737431, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.3319644079397674, + y: 0.004897302689737431, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 3 months, 4 weeks and 2 days', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.3319644079397674, + y: 0.004897302689737431, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 3 months, 4 weeks and 2 days', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1766-09-09', + chronological_decimal_age: 7.41409993155373, + corrected_decimal_age: 7.41409993155373, + chronological_calendar_age: '7 years, 4 months, 4 weeks and 1 day', + corrected_calendar_age: '7 years, 4 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 24.1, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.0019309811370644989, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.0019309811370644989, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.41409993155373, + y: 24.1, + b: null, + centile: 50.0, + sds: 0.0019309811370644989, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 4 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.41409993155373, + y: 24.1, + b: null, + centile: 50.0, + sds: 0.0019309811370644989, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 4 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.41409993155373, + y: 0.0019309811370644989, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 4 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.41409993155373, + y: 0.0019309811370644989, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 4 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1766-10-10', + chronological_decimal_age: 7.498973305954825, + corrected_decimal_age: 7.498973305954825, + chronological_calendar_age: '7 years, 5 months, 4 weeks and 1 day', + corrected_calendar_age: '7 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 24.3, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.003338946557314559, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.003338946557314559, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.498973305954825, + y: 24.3, + b: null, + centile: 49.0, + sds: -0.003338946557314559, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 5 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.498973305954825, + y: 24.3, + b: null, + centile: 49.0, + sds: -0.003338946557314559, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.498973305954825, + y: -0.003338946557314559, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 5 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.498973305954825, + y: -0.003338946557314559, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 5 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1766-11-09', + chronological_decimal_age: 7.581108829568788, + corrected_decimal_age: 7.581108829568788, + chronological_calendar_age: '7 years, 6 months, 4 weeks and 1 day', + corrected_calendar_age: '7 years, 6 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 24.5, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.006819686534998159, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.006819686534998159, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.581108829568788, + y: 24.5, + b: null, + centile: 49.0, + sds: -0.006819686534998159, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 6 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.581108829568788, + y: 24.5, + b: null, + centile: 49.0, + sds: -0.006819686534998159, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 6 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.581108829568788, + y: -0.006819686534998159, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 6 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.581108829568788, + y: -0.006819686534998159, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 6 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1766-12-10', + chronological_decimal_age: 7.665982203969883, + corrected_decimal_age: 7.665982203969883, + chronological_calendar_age: '7 years, 7 months, 4 weeks and 1 day', + corrected_calendar_age: '7 years, 7 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 24.7, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.012830487689798619, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.012830487689798619, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.665982203969883, + y: 24.7, + b: null, + centile: 49.0, + sds: -0.012830487689798619, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 7 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.665982203969883, + y: 24.7, + b: null, + centile: 49.0, + sds: -0.012830487689798619, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 7 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.665982203969883, + y: -0.012830487689798619, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 7 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.665982203969883, + y: -0.012830487689798619, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 7 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1767-01-09', + chronological_decimal_age: 7.748117727583847, + corrected_decimal_age: 7.748117727583847, + chronological_calendar_age: '7 years, 8 months, 4 weeks and 1 day', + corrected_calendar_age: '7 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 25.0, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.011207599401145445, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.011207599401145445, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.748117727583847, + y: 25.0, + b: null, + centile: 50.0, + sds: 0.011207599401145445, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 8 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.748117727583847, + y: 25.0, + b: null, + centile: 50.0, + sds: 0.011207599401145445, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.748117727583847, + y: 0.011207599401145445, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 8 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.748117727583847, + y: 0.011207599401145445, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 8 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1767-02-09', + chronological_decimal_age: 7.832991101984942, + corrected_decimal_age: 7.832991101984942, + chronological_calendar_age: '7 years, 9 months, 4 weeks and 1 day', + corrected_calendar_age: '7 years, 9 months, 4 weeks and 1 day', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 25.2, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: 0.004427884996332249, + corrected_centile: 50.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: 0.004427884996332249, + chronological_centile: 50.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.832991101984942, + y: 25.2, + b: null, + centile: 50.0, + sds: 0.004427884996332249, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 9 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.832991101984942, + y: 25.2, + b: null, + centile: 50.0, + sds: 0.004427884996332249, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 9 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.832991101984942, + y: 0.004427884996332249, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years, 9 months, 4 weeks and 1 day', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.832991101984942, + y: 0.004427884996332249, + b: null, + centile: 50.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years, 9 months, 4 weeks and 1 day', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1767-03-11', + chronological_decimal_age: 7.915126625598905, + corrected_decimal_age: 7.915126625598905, + chronological_calendar_age: '7 years and 11 months', + corrected_calendar_age: '7 years and 11 months', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 25.4, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.0007865401392273065, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.0007865401392273065, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 7.915126625598905, + y: 25.4, + b: null, + centile: 49.0, + sds: -0.0007865401392273065, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years and 11 months', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.915126625598905, + y: 25.4, + b: null, + centile: 49.0, + sds: -0.0007865401392273065, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years and 11 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 7.915126625598905, + y: -0.0007865401392273065, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '7 years and 11 months', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 7.915126625598905, + y: -0.0007865401392273065, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '7 years and 11 months', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, + { + birth_data: { + birth_date: '1759-04-11', + gestation_weeks: 40, + gestation_days: 0, + estimated_date_delivery: '1759-04-11', + estimated_date_delivery_string: 'Wed 11 April, 1759', + sex: 'male', + }, + measurement_dates: { + observation_date: '1767-04-11', + chronological_decimal_age: 8.0, + corrected_decimal_age: 8.0, + chronological_calendar_age: '8 years', + corrected_calendar_age: '8 years', + corrected_gestational_age: { corrected_gestation_weeks: null, corrected_gestation_days: null }, + comments: { + clinician_corrected_decimal_age_comment: 'Born at term. No correction has been made for gestation.', + lay_corrected_decimal_age_comment: 'Your child was born on their due date.', + clinician_chronological_decimal_age_comment: 'Born Term. No correction has been made for gestation.', + lay_chronological_decimal_age_comment: 'Your child was born on their due date.', + }, + corrected_decimal_age_error: null, + chronological_decimal_age_error: null, + }, + child_observation_value: { + measurement_method: 'weight', + observation_value: 25.6, + observation_value_error: null, + }, + measurement_calculated_values: { + corrected_sds: -0.008069676572744275, + corrected_centile: 49.0, + corrected_centile_band: 'This weight measurement is on or near the 50th centile.', + chronological_sds: -0.008069676572744275, + chronological_centile: 49.0, + chronological_centile_band: 'This weight measurement is on or near the 50th centile.', + corrected_measurement_error: null, + chronological_measurement_error: null, + corrected_percentage_median_bmi: null, + chronological_percentage_median_bmi: null, + }, + plottable_data: { + centile_data: { + chronological_decimal_age_data: { + x: 8.0, + y: 25.6, + b: null, + centile: 49.0, + sds: -0.008069676572744275, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '8 years', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 8.0, + y: 25.6, + b: null, + centile: 49.0, + sds: -0.008069676572744275, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '8 years', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + sds_data: { + chronological_decimal_age_data: { + x: 8.0, + y: -0.008069676572744275, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'chronological_age', + calendar_age: '8 years', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born Term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + corrected_decimal_age_data: { + x: 8.0, + y: -0.008069676572744275, + b: null, + centile: 49.0, + sds: null, + bone_age_label: null, + events_text: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + observation_error: null, + age_type: 'corrected_age', + calendar_age: '8 years', + corrected_gestational_age: '', + lay_comment: 'Your child was born on their due date.', + clinician_comment: 'Born at term. No correction has been made for gestation.', + age_error: null, + centile_band: 'This weight measurement is on or near the 50th centile.', + observation_value_error: null, + }, + }, + }, + bone_age: { + bone_age: null, + bone_age_type: null, + bone_age_sds: null, + bone_age_centile: null, + bone_age_text: null, + }, + events_data: { events_text: null }, + }, +]; diff --git a/src/testParameters/measurements/twoToEightYearsGirlBMI.ts b/src/testParameters/measurements/twoToEightYearsGirlBMI.ts new file mode 100644 index 0000000..75b1959 --- /dev/null +++ b/src/testParameters/measurements/twoToEightYearsGirlBMI.ts @@ -0,0 +1,868 @@ +import { Measurement } from '../../interfaces/RCPCHMeasurementObject'; + +export const twoToEightGirlBMI: Measurement[] =[ + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1761-04-10", + "chronological_decimal_age": 1.998631074606434, + "corrected_decimal_age": 1.998631074606434, + "chronological_calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 15.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.2201676456009646, + "corrected_centile": 58.7, + "corrected_centile_band": "This body mass index measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.2201676456009646, + "chronological_centile": 58.7, + "chronological_centile_band": "This body mass index measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 101.91007516492827, + "chronological_percentage_median_bmi": 101.91007516492827 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": 15.7, + "b": null, + "centile": 58.7, + "sds": 0.2201676456009646, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.998631074606434, + "y": 15.7, + "b": null, + "centile": 58.7, + "sds": 0.2201676456009646, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 1.998631074606434, + "y": 0.2201676456009646, + "b": null, + "centile": 58.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 1.998631074606434, + "y": 0.2201676456009646, + "b": null, + "centile": 58.7, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "1 year, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1762-04-10", + "chronological_decimal_age": 2.9979466119096507, + "corrected_decimal_age": 2.9979466119096507, + "chronological_calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "corrected_calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 15.4, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.00209769841401986, + "corrected_centile": 50.1, + "corrected_centile_band": "This body mass index measurement is on or near the 50th centile.", + "chronological_sds": 0.00209769841401986, + "chronological_centile": 50.1, + "chronological_centile_band": "This body mass index measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 100.01790472733292, + "chronological_percentage_median_bmi": 100.01790472733292 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.9979466119096507, + "y": 15.4, + "b": null, + "centile": 50.1, + "sds": 0.00209769841401986, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.9979466119096507, + "y": 15.4, + "b": null, + "centile": 50.1, + "sds": 0.00209769841401986, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.9979466119096507, + "y": 0.00209769841401986, + "b": null, + "centile": 50.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 2.9979466119096507, + "y": 0.00209769841401986, + "b": null, + "centile": 50.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "2 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1763-04-10", + "chronological_decimal_age": 3.997262149212868, + "corrected_decimal_age": 3.997262149212868, + "chronological_calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "corrected_calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 15.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.3073488320121541, + "corrected_centile": 62.1, + "corrected_centile_band": "This body mass index measurement is between the 50th and 75th centiles.", + "chronological_sds": 0.3073488320121541, + "chronological_centile": 62.1, + "chronological_centile_band": "This body mass index measurement is between the 50th and 75th centiles.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 102.88069996605674, + "chronological_percentage_median_bmi": 102.88069996605674 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 3.997262149212868, + "y": 15.7, + "b": null, + "centile": 62.1, + "sds": 0.3073488320121541, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.997262149212868, + "y": 15.7, + "b": null, + "centile": 62.1, + "sds": 0.3073488320121541, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 3.997262149212868, + "y": 0.3073488320121541, + "b": null, + "centile": 62.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 50th and 75th centiles.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 3.997262149212868, + "y": 0.3073488320121541, + "b": null, + "centile": 62.1, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "3 years, 11 months, 4 weeks and 2 days", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is between the 50th and 75th centiles.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1764-04-09", + "chronological_decimal_age": 4.996577686516085, + "corrected_decimal_age": 4.996577686516085, + "chronological_calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "corrected_calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 15.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.011524562000486894, + "corrected_centile": 50.5, + "corrected_centile_band": "This body mass index measurement is on or near the 50th centile.", + "chronological_sds": 0.011524562000486894, + "chronological_centile": 50.5, + "chronological_centile_band": "This body mass index measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 100.10757956944111, + "chronological_percentage_median_bmi": 100.10757956944111 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 4.996577686516085, + "y": 15.5, + "b": null, + "centile": 50.5, + "sds": 0.011524562000486894, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.996577686516085, + "y": 15.5, + "b": null, + "centile": 50.5, + "sds": 0.011524562000486894, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 4.996577686516085, + "y": 0.011524562000486894, + "b": null, + "centile": 50.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 4.996577686516085, + "y": 0.011524562000486894, + "b": null, + "centile": 50.5, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "4 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1765-04-09", + "chronological_decimal_age": 5.9958932238193015, + "corrected_decimal_age": 5.9958932238193015, + "chronological_calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "corrected_calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 15.5, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.00988053110557109, + "corrected_centile": 50.4, + "corrected_centile_band": "This body mass index measurement is on or near the 50th centile.", + "chronological_sds": 0.00988053110557109, + "chronological_centile": 50.4, + "chronological_centile_band": "This body mass index measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 100.09956792198015, + "chronological_percentage_median_bmi": 100.09956792198015 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 5.9958932238193015, + "y": 15.5, + "b": null, + "centile": 50.4, + "sds": 0.00988053110557109, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.9958932238193015, + "y": 15.5, + "b": null, + "centile": 50.4, + "sds": 0.00988053110557109, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 5.9958932238193015, + "y": 0.00988053110557109, + "b": null, + "centile": 50.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 5.9958932238193015, + "y": 0.00988053110557109, + "b": null, + "centile": 50.4, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "5 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + }, + { + "birth_data": { + "birth_date": "1759-04-11", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "1759-04-11", + "estimated_date_delivery_string": "Wed 11 April, 1759", + "sex": "female" + }, + "measurement_dates": { + "observation_date": "1766-04-09", + "chronological_decimal_age": 6.995208761122519, + "corrected_decimal_age": 6.995208761122519, + "chronological_calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "corrected_calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": { + "corrected_gestation_weeks": null, + "corrected_gestation_days": null + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": null, + "chronological_decimal_age_error": null + }, + "child_observation_value": { + "measurement_method": "bmi", + "observation_value": 15.7, + "observation_value_error": null + }, + "measurement_calculated_values": { + "corrected_sds": 0.014227530425783256, + "corrected_centile": 50.6, + "corrected_centile_band": "This body mass index measurement is on or near the 50th centile.", + "chronological_sds": 0.014227530425783256, + "chronological_centile": 50.6, + "chronological_centile_band": "This body mass index measurement is on or near the 50th centile.", + "corrected_measurement_error": null, + "chronological_measurement_error": null, + "corrected_percentage_median_bmi": 100.15464949473764, + "chronological_percentage_median_bmi": 100.15464949473764 + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 6.995208761122519, + "y": 15.7, + "b": null, + "centile": 50.6, + "sds": 0.014227530425783256, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.995208761122519, + "y": 15.7, + "b": null, + "centile": 50.6, + "sds": 0.014227530425783256, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 50th centile.", + "observation_value_error": null + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 6.995208761122519, + "y": 0.014227530425783256, + "b": null, + "centile": 50.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "chronological_age", + "calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 50th centile.", + "observation_value_error": null + }, + "corrected_decimal_age_data": { + "x": 6.995208761122519, + "y": 0.014227530425783256, + "b": null, + "centile": 50.6, + "sds": null, + "bone_age_label": null, + "events_text": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "observation_error": null, + "age_type": "corrected_age", + "calendar_age": "6 years, 11 months, 4 weeks and 1 day", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": null, + "centile_band": "This body mass index measurement is on or near the 50th centile.", + "observation_value_error": null + } + } + }, + "bone_age": { + "bone_age": null, + "bone_age_type": null, + "bone_age_sds": null, + "bone_age_centile": null, + "bone_age_text": null + }, + "events_data": { + "events_text": null + } + } +] \ No newline at end of file diff --git a/src/testParameters/measurements/twoWeightMeasurements.ts b/src/testParameters/measurements/twoWeightMeasurements.ts new file mode 100644 index 0000000..5f979af --- /dev/null +++ b/src/testParameters/measurements/twoWeightMeasurements.ts @@ -0,0 +1,292 @@ +import { Measurement } from "../../interfaces/RCPCHMeasurementObject" + +export const twoWeightMeasurements:Measurement[] = [ + { + "birth_data": { + "birth_date": "2020-01-23", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "2020-01-23", + "estimated_date_delivery_string": "Thu 23 January, 2020", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "2020-01-23", + "chronological_decimal_age": 0.0, + "corrected_decimal_age": 0.0, + "chronological_calendar_age": "Happy Birthday", + "corrected_calendar_age": "Happy Birthday", + "corrected_gestational_age": { + "corrected_gestation_weeks": 40, + "corrected_gestation_days": 0 + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": undefined, + "chronological_decimal_age_error": undefined + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 3.5, + "observation_value_error": undefined + }, + "measurement_calculated_values": { + "corrected_sds": -0.1208093563347044, + "corrected_centile": 45.0, + "corrected_centile_band": "This weight measurement is on or near the 50th centile.", + "chronological_sds": -0.1208093563347044, + "chronological_centile": 45.0, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": undefined, + "chronological_measurement_error":undefined, + "corrected_percentage_median_bmi": undefined, + "chronological_percentage_median_bmi": undefined + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": 3.5, + "b": undefined, + "centile": 45.0, + "sds": -0.1208093563347044, + "bone_age_label": undefined, + "events_text": undefined, + "bone_age_type": undefined, + "bone_age_sds": undefined, + "bone_age_centile": undefined, + "observation_error": undefined, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": undefined, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": undefined + }, + "corrected_decimal_age_data": { + "x": 0.0, + "y": 3.5, + "b": undefined, + "centile": 45.0, + "sds": -0.1208093563347044, + "bone_age_label": undefined, + "events_text": undefined, + "bone_age_type": undefined, + "bone_age_sds": undefined, + "bone_age_centile": undefined, + "observation_error": undefined, + "age_type": "corrected_age", + "calendar_age": "Happy Birthday", + "corrected_gestational_age": "40 + 0 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": undefined, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": undefined + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 0.0, + "y": -0.1208093563347044, + "b": undefined, + "centile": 45.0, + "sds": -0.1208093563347044, + "bone_age_label": undefined, + "events_text": undefined, + "bone_age_type": undefined, + "bone_age_sds": undefined, + "bone_age_centile": undefined, + "observation_error": undefined, + "age_type": "chronological_age", + "calendar_age": "Happy Birthday", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": undefined, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": undefined + }, + "corrected_decimal_age_data": { + "x": 0.0, + "y": -0.1208093563347044, + "b": undefined, + "centile": 45.0, + "sds": -0.1208093563347044, + "bone_age_label": undefined, + "events_text": undefined, + "bone_age_type": undefined, + "bone_age_sds": undefined, + "bone_age_centile": undefined, + "observation_error": undefined, + "age_type": "corrected_age", + "calendar_age": "Happy Birthday", + "corrected_gestational_age": "40 + 0 weeks", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": undefined, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": undefined + } + } + }, + "bone_age": { + "bone_age": undefined, + "bone_age_type": undefined, + "bone_age_sds": undefined, + "bone_age_centile": undefined, + "bone_age_text": undefined + }, + "events_data": { + "events_text": undefined + } +}, +{ + "birth_data": { + "birth_date": "2020-01-23", + "gestation_weeks": 40, + "gestation_days": 0, + "estimated_date_delivery": "2020-01-23", + "estimated_date_delivery_string": "Thu 23 January, 2020", + "sex": "male" + }, + "measurement_dates": { + "observation_date": "2022-01-23", + "chronological_decimal_age": 2.001368925393566, + "corrected_decimal_age": 2.001368925393566, + "chronological_calendar_age": "2 years", + "corrected_calendar_age": "2 years", + "corrected_gestational_age": { + "corrected_gestation_weeks": undefined, + "corrected_gestation_days": undefined + }, + "comments": { + "clinician_corrected_decimal_age_comment": "Born at term. No correction has been made for gestation.", + "lay_corrected_decimal_age_comment": "Your child was born on their due date.", + "clinician_chronological_decimal_age_comment": "Born Term. No correction has been made for gestation.", + "lay_chronological_decimal_age_comment": "Your child was born on their due date." + }, + "corrected_decimal_age_error": undefined, + "chronological_decimal_age_error": undefined + }, + "child_observation_value": { + "measurement_method": "weight", + "observation_value": 12.0, + "observation_value_error": undefined + }, + "measurement_calculated_values": { + "corrected_sds": -0.11215291677676435, + "corrected_centile": 45.0, + "corrected_centile_band": "This weight measurement is on or near the 50th centile.", + "chronological_sds": -0.11215291677676435, + "chronological_centile": 45.0, + "chronological_centile_band": "This weight measurement is on or near the 50th centile.", + "corrected_measurement_error": undefined, + "chronological_measurement_error": undefined, + "corrected_percentage_median_bmi": undefined, + "chronological_percentage_median_bmi": undefined + }, + "plottable_data": { + "centile_data": { + "chronological_decimal_age_data": { + "x": 2.001368925393566, + "y": 12.0, + "b": undefined, + "centile": 45.0, + "sds": -0.11215291677676435, + "bone_age_label": undefined, + "events_text": undefined, + "bone_age_type": undefined, + "bone_age_sds": undefined, + "bone_age_centile": undefined, + "observation_error": undefined, + "age_type": "chronological_age", + "calendar_age": "2 years", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": undefined, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": undefined + }, + "corrected_decimal_age_data": { + "x": 2.001368925393566, + "y": 12.0, + "b": undefined, + "centile": 45.0, + "sds": -0.11215291677676435, + "bone_age_label": undefined, + "events_text": undefined, + "bone_age_type": undefined, + "bone_age_sds": undefined, + "bone_age_centile": undefined, + "observation_error": undefined, + "age_type": "corrected_age", + "calendar_age": "2 years", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": undefined, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": undefined + } + }, + "sds_data": { + "chronological_decimal_age_data": { + "x": 2.001368925393566, + "y": -0.11215291677676435, + "b": undefined, + "centile": 45.0, + "sds": -0.11215291677676435, + "bone_age_label": undefined, + "events_text": undefined, + "bone_age_type": undefined, + "bone_age_sds": undefined, + "bone_age_centile": undefined, + "observation_error": undefined, + "age_type": "chronological_age", + "calendar_age": "2 years", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born Term. No correction has been made for gestation.", + "age_error": undefined, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": undefined + }, + "corrected_decimal_age_data": { + "x": 2.001368925393566, + "y": -0.11215291677676435, + "b": undefined, + "centile": 45.0, + "sds": -0.11215291677676435, + "bone_age_label": undefined, + "events_text": undefined, + "bone_age_type": undefined, + "bone_age_sds": undefined, + "bone_age_centile": undefined, + "observation_error": undefined, + "age_type": "corrected_age", + "calendar_age": "2 years", + "corrected_gestational_age": "", + "lay_comment": "Your child was born on their due date.", + "clinician_comment": "Born at term. No correction has been made for gestation.", + "age_error": undefined, + "centile_band": "This weight measurement is on or near the 50th centile.", + "observation_value_error": undefined + } + } + }, + "bone_age": { + "bone_age": undefined, + "bone_age_type": undefined, + "bone_age_sds": undefined, + "bone_age_centile": undefined, + "bone_age_text": undefined + }, + "events_data": { + "events_text": undefined + } +} +] \ No newline at end of file diff --git a/src/testParameters/styles/monochromeStyles.ts b/src/testParameters/styles/monochromeStyles.ts new file mode 100644 index 0000000..fceda3e --- /dev/null +++ b/src/testParameters/styles/monochromeStyles.ts @@ -0,0 +1,387 @@ +import { AxisStyle, CentileStyle, ChartStyle, GridlineStyle, MeasurementStyle, SDSStyle } from "../../interfaces/StyleObjects" + +/* +The following styles are provided to the RCPCHChart component, and define the styles in the Monochrome theme +*/ + +export const monochromeAxisStyles: AxisStyle = { + axisStroke: "#000000", + axisLabelTextStyle: { + name: "Arial", + colour: "#000000", + size: 10, + style: 'normal' + }, + tickLabelTextStyle: { + name: "Arial", + colour: "#000000", + size: 8, + style: 'normal' + } +} + +export const monochromeChartStyles: ChartStyle = { + backgroundColour: "#FFFFFF", + titleStyle: { + name: "Arial", + colour: "#000000", + size: 14, + style: 'bold' + }, + subTitleStyle: { + name: "Arial", + colour: "#000000", + size: 12, + style: 'italic' + }, + tooltipBackgroundColour: "#b3b3b3", + tooltipStroke: "#b3b3b3", + tooltipTextStyle: { + name: "Montserrat", + colour: "#000000", + size: 14, + style: 'normal' + }, + termFill: "#CDCDCD", + termStroke: "#CDCDCD", + toggleButtonInactiveColour: "#b3b3b3", + toggleButtonActiveColour: "#000000", + toggleButtonTextStyle: { + name: "Arial", + colour: "#FFFFFF", + size: 14, + style: 'normal' + } +} + +export const monochromeGridlineStyle: GridlineStyle = { + gridlines: true, + stroke: "#d9d9d9", + strokeWidth: 0.25, + dashed: false +} + +export const monochromeCentileStyle: CentileStyle = { + sdsStroke: "#A9A9A9", + centileStroke: "#000000", + delayedPubertyAreaFill: "#b3b3b3", + midParentalCentileStroke: "#000000", + midParentalAreaFill: "#b3b3b3", +} + +export const monochromeMeasurementStyle: MeasurementStyle = { + measurementFill: "#000000", + highlightedMeasurementFill: "#000000", + eventTextStyle: { + name: "Montserrat", + colour: "#000000", + size: 12, + style: 'normal' + } +} +export const monochromeSDSStyle: SDSStyle = { + heightStroke: "#000000", + weightStroke: "#000000", + ofcStroke: "#000000", + bmiStroke: "#000000", +} + +/* +The following styles are provided to the CentileChart component, and are a step downstream from the user. +The user style props, passed into the RCPCHChart component, have been processed by the makeAllStyles function and returned in this format +*/ + +export const monochromeStyles = { + "chartMisc": { + "background": { + "fill": "#FFFFFF" + } + }, + "toolTipFlyout": { + "stroke": "#b3b3b3", + "fill": "#b3b3b3" + }, + "toolTipMain": { + "textAnchor": "end", + "strokeWidth": 0.25, + "fontSize": 14, + "fill": "#000000", + "fontFamily": "Montserrat", + "fontWeight": "normal" + }, + "chartTitle": { + "fontFamily": "Arial", + "color": "#000000", + "fontSize": 14, + "fontWeight": "bold", + "fontStyle": "normal" + }, + "chartSubTitle": { + "fontFamily": "Arial", + "color": "#000000", + "fontSize": 14, + "fontWeight": "normal", + "fontStyle": "normal" + }, + "termArea": { + "data": { + "fill": "#CDCDCD", + "stroke": "#CDCDCD" + } + }, + "xAxis": { + "axis": { + "stroke": "#000000", + "strokeWidth": 1 + }, + "axisLabel": { + "fontSize": 10, + "padding": 20, + "fill": "000000", + "fontFamily": "Arial" + }, + "ticks": { + "stroke": "000000" + }, + "tickLabels": { + "fontSize": 8, + "padding": 5, + "fill": "000000", + "color": "000000", + "fontFamily": "Arial" + }, + "grid": { + "stroke": "#d9d9d9", + "strokeWidth": 0.25, + "strokeDasharray": "" + } + }, + "xTicklabel": { + "fill": "000000", + "fontSize": 8, + "fontFamily": "Arial" + }, + "yAxis": { + "axis": { + "stroke": "#000000", + "strokeWidth": 1 + }, + "axisLabel": { + "fontSize": 10, + "padding": 25, + "fill": "000000", + "fontFamily": "Arial" + }, + "ticks": { + "stroke": "000000" + }, + "tickLabels": { + "fontSize": 8, + "padding": 5, + "fill": "000000", + "fontFamily": "Arial" + }, + "grid": { + "stroke": "#d9d9d9", + "strokeWidth": 0.25, + "strokeDasharray": "" + } + }, + "delayedPubertyArea": { + "data": { + "stroke": "#b3b3b3", + "fill": "#b3b3b3", + "strokeWidth": 1.5 + } + }, + "delayedPubertyThresholdLine": { + "data": { + "stroke": "#000000", + "strokeWidth": 1 + } + }, + "delayedPubertyThresholdLabel": { + "fontSize": 9, + "fill": "000000", + "fontFamily": "Arial", + "textAlign": "start" + }, + "sdsLine": { + "data": { + "stroke": "#A9A9A9", + "strokeWidth": 1, + "strokeLinecap": "round", + "strokeDasharray": "5 5" + }, + }, + "dashedCentile": { + "data": { + "stroke": "#000000", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeDasharray": "5 5" + } + }, + "continuousCentile": { + "data": { + "stroke": "#000000", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "centileLabel": { + "fill": "#000000", + "fontSize": 10, + }, + "heightSDS": { + "data": { + "stroke": "#000000ff", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "weightSDS": { + "data": { + "stroke": "#0000007f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "ofcSDS": { + "data": { + "stroke": "#0000003f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "bmiSDS": { + "data": { + "stroke": "#0000001f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "midParentalCentile": { + "data": { + "stroke": "#000000", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeOpacity": 1 + } + }, + "midParentalSDS": { + "data": { + "stroke": "#000000", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeOpacity": 1, + "strokeDasharray": "2 5" + } + }, + "midParentalArea": { + "data": { + "fill": "#b3b3b3", + "opacity": 0.5 + } + }, + "measurementPoint": { + "data": { + "fill": "#000000" + } + }, + "measurementLinkLine": { + "data": { + "stroke": "#000000", + "strokeWidth": 1.25 + } + }, + "highlightedMeasurementFill": { + "data": { + "fill": "#000000" + } + }, + "toggleStyle": { + "activeColour": "#000000", + "inactiveColour": "#b3b3b3", + "fontFamily": "Arial", + "color": "#FFFFFF", + "fontSize": 14, + "fontWeight": "normal", + "fontStyle": "normal" + } + } + +export const chartObject: ChartStyle = { + "backgroundColour": "#FFFFFF", + "titleStyle": { + "name": "Arial", + "colour": "#000000", + "size": 14, + "style": "bold" + }, + "subTitleStyle": { + "name": "Arial", + "colour": "#000000", + "size": 14, + "style": "normal" + }, + "tooltipBackgroundColour": "#b3b3b3", + "tooltipStroke": "#b3b3b3", + "tooltipTextStyle": { + "name": "Montserrat", + "colour": "#000000", + "size": 0.25, + "style": "normal" + }, + "termFill": "#CDCDCD", + "termStroke": "#CDCDCD", + "toggleButtonInactiveColour": "#b3b3b3", + "toggleButtonActiveColour": "#000000", + "toggleButtonTextStyle":{ + "name": "Montserrat", + "colour": "#000000", + "size": 0.25, + "style": "normal" + } +} + +export const measurementObjects: MeasurementStyle = { + "measurementFill": "#000000", + "highlightedMeasurementFill": "#000000", + "eventTextStyle": { + "name": "Montserrat", + "colour": "#000000", + "size": 14, + "style": "normal" + } +} + +export const centilesObject: CentileStyle = { + "centileStroke": "#000000", + "delayedPubertyAreaFill": "#b3b3b3", + "midParentalAreaFill": "#b3b3b3" +} + +export const gridlinesObject: GridlineStyle = { + "gridlines": true, + "stroke": "#d9d9d9", + "strokeWidth": 0.25, + "dashed": false +} + +export const axesObject: AxisStyle = { + "axisStroke": "#000000", + "axisLabelTextStyle": { + "name": "Arial", + "colour": "000000", + "size": 10, + "style": "normal" + }, +} + +export const sdsObject: SDSStyle = { + "heightStroke": "#000000", + "weightStroke": "#000000", + "ofcStroke": "#000000", + "bmiStroke": "#000000" +} \ No newline at end of file diff --git a/src/testParameters/styles/tanner1Styles.ts b/src/testParameters/styles/tanner1Styles.ts new file mode 100644 index 0000000..57a3239 --- /dev/null +++ b/src/testParameters/styles/tanner1Styles.ts @@ -0,0 +1,317 @@ +import { AxisStyle, CentileStyle, ChartStyle, GridlineStyle, MeasurementStyle, SDSStyle } from "../../interfaces/StyleObjects" + +/* +The following styles are provided to the RCPCHChart component, and define the styles in the Tanner 1 theme +*/ + +export const Tanner1AxisStyles: AxisStyle = { + axisStroke: "#000000", + axisLabelTextStyle: { + name: "Arial", + colour: "#000000", + size: 10, + style: 'normal' + }, + tickLabelTextStyle: { + name: "Arial", + colour: "#000000", + size: 8, + style: 'normal' + } +} + +export const Tanner1ChartStyles: ChartStyle = { + backgroundColour: "#FFFFFF", + titleStyle: { + name: "Arial", + colour: "#000000", + size: 14, + style: 'bold' + }, + subTitleStyle: { + name: "Arial", + colour: "#000000", + size: 12, + style: 'italic' + }, + tooltipBackgroundColour: "#fdc300", + tooltipStroke: "#fdc300", + tooltipTextStyle: { + name: "Montserrat", + colour: "#000000", + size: 14, + style: 'normal' + }, + termFill: "#CDCDCD", + termStroke: "#CDCDCD", + toggleButtonInactiveColour: "#c6bddd", + toggleButtonActiveColour: "#7159aa", + toggleButtonTextStyle: { + name: "Arial", + colour: "#FFFFFF", + size: 14, + style: 'normal' + } +} + +export const Tanner1GridlineStyles: GridlineStyle = { + gridlines: true, + stroke: "#d9d9d9", + strokeWidth: 0.25, + dashed: false +} + +export const Tanner1CentileStyles: CentileStyle = { + sdsStroke: "#A9A9A9", + centileStroke: "#7159aa", + delayedPubertyAreaFill: "#c6bddd", + midParentalCentileStroke: "#7159aa", + midParentalAreaFill: "#c6bddd", +} + +export const Tanner1MeasurementStyles: MeasurementStyle = { + measurementFill: "#000000", + highlightedMeasurementFill: "#7159aa", + eventTextStyle: { + name: "Montserrat", + colour: "#000000", + size: 12, + style: 'normal' + } +} +export const Tanner1SDSStyles: SDSStyle = { + heightStroke: "#7159aaff", + weightStroke: "#7159aa7f", + ofcStroke: "#7159aa3f", + bmiStroke: "#7159aa1f", +} + +/* +The following styles are provided to the CentileChart component, and are a step downstream from the user. +The user style props, passed into the RCPCHChart component, have been processed by the makeAllStyles function and returned in this format +*/ + +export const Tanner1Styles = { + "chartMisc": { + "background": { + "fill": "#FFFFFF" + } + }, + "toolTipFlyout": { + "stroke": "#fdc300", + "fill": "#fdc300" + }, + "toolTipMain": { + "textAnchor": "end", + "strokeWidth": 0.25, + "fill": "#000000", + "fontFamily": "Montserrat", + "fontWeight": "normal" + }, + "chartTitle": { + "fontFamily": "Arial", + "color": "#000000", + "fontSize": 14, + "fontWeight": "bold", + "fontStyle": "normal" + }, + "chartSubTitle": { + "fontFamily": "Arial", + "color": "#000000", + "fontSize": 14, + "fontWeight": "normal", + "fontStyle": "normal" + }, + "termArea": { + "data": { + "fill": "#CDCDCD", + "stroke": "#CDCDCD" + } + }, + "xAxis": { + "axis": { + "stroke": "#000000", + "strokeWidth": 1 + }, + "axisLabel": { + "fontSize": 10, + "padding": 20, + "fill": "000000", + "fontFamily": "Arial" + }, + "ticks": { + "stroke": "000000" + }, + "tickLabels": { + "fontSize": 8, + "padding": 5, + "fill": "000000", + "color": "000000", + "fontFamily": "Arial" + }, + "grid": { + "stroke": "#d9d9d9", + "strokeWidth": 0.25, + "strokeDasharray": "" + } + }, + "xTicklabel": { + "fill": "000000", + "fontSize": 8, + "fontFamily": "Arial" + }, + "yAxis": { + "axis": { + "stroke": "#000000", + "strokeWidth": 1 + }, + "axisLabel": { + "fontSize": 10, + "padding": 25, + "fill": "000000", + "fontFamily": "Arial" + }, + "ticks": { + "stroke": "000000" + }, + "tickLabels": { + "fontSize": 8, + "padding": 5, + "fill": "000000", + "fontFamily": "Arial" + }, + "grid": { + "stroke": "#d9d9d9", + "strokeWidth": 0.25, + "strokeDasharray": "" + } + }, + "delayedPubertyArea": { + "data": { + "stroke": "#c6bddd", + "fill": "#c6bddd", + "strokeWidth": 1.5 + } + }, + "delayedPubertyThresholdLine": { + "data": { + "stroke": "#000000", + "strokeWidth": 1 + } + }, + "delayedPubertyThresholdLabel": { + "fontSize": 9, + "fill": "000000", + "fontFamily": "Arial", + "textAlign": "start" + }, + "sdsLine": { + "data": { + "stroke": "#A9A9A9", + "strokeWidth": 1, + "strokeLinecap": "round", + "strokeDasharray": "5 5" + } + }, + "dashedCentile": { + "data": { + "stroke": "#7159aa", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeDasharray": "5 5" + } + }, + "continuousCentile": { + "data": { + "stroke": "#7159aa", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "centileLabel": { + "fill": "#7159aa", + "fontSize": 6 + }, + "heightSDS": { + "data": { + "stroke": "#7159aaff", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "weightSDS": { + "data": { + "stroke": "#7159aa7f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "ofcSDS": { + "data": { + "stroke": "#7159aa3f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "bmiSDS": { + "data": { + "stroke": "#7159aa1f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "midParentalCentile": { + "data": { + "stroke": "#7159aa", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeOpacity": 1 + } + }, + "midParentalSDS": { + "data": { + "stroke": "#7159aa", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeOpacity": 1, + "strokeDasharray": "2 5" + } + }, + "midParentalArea": { + "data": { + "fill": "#c6bddd", + "opacity": 0.5 + } + }, + "measurementPoint": { + "data": { + "fill": "#000000" + } + }, + "measurementLinkLine": { + "data": { + "stroke": "#000000", + "strokeWidth": 1.25 + } + }, + "highlightedMeasurementFill": { + "data": { + "fill": "#7159aa" + } + }, + "toggleStyle": { + "activeColour": "#7159aa", + "inactiveColour": "#c6bddd", + "fontFamily": "Arial", + "color": "#FFFFFF", + "fontSize": 14, + "fontWeight": "normal", + "fontStyle": "normal" + }, + "eventTextStyle": { + "name": "Montserrat", + "colour": "#000000", + "size": 14, + "style": "normal" + } +} \ No newline at end of file diff --git a/src/testParameters/styles/tanner2Styles.ts b/src/testParameters/styles/tanner2Styles.ts new file mode 100644 index 0000000..fc19547 --- /dev/null +++ b/src/testParameters/styles/tanner2Styles.ts @@ -0,0 +1,317 @@ +import { AxisStyle, CentileStyle, ChartStyle, GridlineStyle, MeasurementStyle, SDSStyle } from "../../interfaces/StyleObjects" + +/* +The following styles are provided to the RCPCHChart component, and define the styles in the Tanner 2 theme +*/ + +export const Tanner2AxisStyles: AxisStyle = { + axisStroke: "#000000", + axisLabelTextStyle: { + name: "Arial", + colour: "#000000", + size: 10, + style: 'normal' + }, + tickLabelTextStyle: { + name: "Arial", + colour: "#000000", + size: 8, + style: 'normal' + } +} + +export const Tanner2ChartStyles: ChartStyle = { + backgroundColour: "#FFFFFF", + titleStyle: { + name: "Arial", + colour: "#000000", + size: 14, + style: 'bold' + }, + subTitleStyle: { + name: "Arial", + colour: "#000000", + size: 12, + style: 'italic' + }, + tooltipBackgroundColour: "#fdc300", + tooltipStroke: "#fdc300", + tooltipTextStyle: { + name: "Montserrat", + colour: "#000000", + size: 14, + style: 'normal' + }, + termFill: "#CDCDCD", + termStroke: "#CDCDCD", + toggleButtonInactiveColour: "#c6bddd", + toggleButtonActiveColour: "#7159aa", + toggleButtonTextStyle: { + name: "Arial", + colour: "#FFFFFF", + size: 14, + style: 'normal' + } +} + +export const Tanner2GridlineStyles: GridlineStyle = { + gridlines: true, + stroke: "#d9d9d9", + strokeWidth: 0.25, + dashed: false +} + +export const Tanner2CentileStyles: CentileStyle = { + sdsStroke: "#A9A9A9", + centileStroke: "#7159aa", + delayedPubertyAreaFill: "#c6bddd", + midParentalCentileStroke: "#ff8000", + midParentalAreaFill: "#c6bddd", +} + +export const Tanner2MeasurementStyles: MeasurementStyle = { + measurementFill: "#000000", + highlightedMeasurementFill: "#ff8000", + eventTextStyle: { + name: "Montserrat", + colour: "#000000", + size: 12, + style: 'normal' + } +} +export const Tanner2SDSStyles: SDSStyle = { + heightStroke: "#ff8000ff", + weightStroke: "#ff80007f", + ofcStroke: "#ff80003f", + bmiStroke: "#ff80001f", +} + +/* +The following styles are provided to the CentileChart component, and are a step downstream from the user. +The user style props, passed into the RCPCHChart component, have been processed by the makeAllStyles function and returned in this format +*/ + +export const Tanner2Styles = { + "chartMisc": { + "background": { + "fill": "#FFFFFF" + } + }, + "toolTipFlyout": { + "stroke": "#3366cc", + "fill": "#3366cc" + }, + "toolTipMain": { + "textAnchor": "end", + "strokeWidth": 0.25, + "fill": "#FFFFFF", + "fontFamily": "Montserrat", + "fontWeight": "normal" + }, + "chartTitle": { + "fontFamily": "Arial", + "color": "#000000", + "fontSize": 14, + "fontWeight": "bold", + "fontStyle": "normal" + }, + "chartSubTitle": { + "fontFamily": "Arial", + "color": "#000000", + "fontSize": 14, + "fontWeight": "normal", + "fontStyle": "normal" + }, + "termArea": { + "data": { + "fill": "#CDCDCD", + "stroke": "#CDCDCD" + } + }, + "xAxis": { + "axis": { + "stroke": "#000000", + "strokeWidth": 1 + }, + "axisLabel": { + "fontSize": 10, + "padding": 20, + "fill": "000000", + "fontFamily": "Arial" + }, + "ticks": { + "stroke": "000000" + }, + "tickLabels": { + "fontSize": 8, + "padding": 5, + "fill": "000000", + "color": "000000", + "fontFamily": "Arial" + }, + "grid": { + "stroke": "#d9d9d9", + "strokeWidth": 0.25, + "strokeDasharray": "" + } + }, + "xTicklabel": { + "fill": "000000", + "fontSize": 8, + "fontFamily": "Arial" + }, + "yAxis": { + "axis": { + "stroke": "#000000", + "strokeWidth": 1 + }, + "axisLabel": { + "fontSize": 10, + "padding": 25, + "fill": "000000", + "fontFamily": "Arial" + }, + "ticks": { + "stroke": "000000" + }, + "tickLabels": { + "fontSize": 8, + "padding": 5, + "fill": "000000", + "fontFamily": "Arial" + }, + "grid": { + "stroke": "#d9d9d9", + "strokeWidth": 0.25, + "strokeDasharray": "" + } + }, + "delayedPubertyArea": { + "data": { + "stroke": "#ffc080", + "fill": "#ffc080", + "strokeWidth": 1.5 + } + }, + "delayedPubertyThresholdLine": { + "data": { + "stroke": "#000000", + "strokeWidth": 1 + } + }, + "delayedPubertyThresholdLabel": { + "fontSize": 9, + "fill": "000000", + "fontFamily": "Arial", + "textAlign": "start" + }, + "sdsLine": { + "data": { + "stroke": "#A9A9A9", + "strokeWidth": 1, + "strokeLinecap": "round", + "strokeDasharray": "5 5" + } + }, + "dashedCentile": { + "data": { + "stroke": "#ff8000", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeDasharray": "5 5" + } + }, + "continuousCentile": { + "data": { + "stroke": "#ff8000", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "centileLabel": { + "fill": "#ff8000", + "fontSize": 6 + }, + "heightSDS": { + "data": { + "stroke": "#ff8000ff", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "weightSDS": { + "data": { + "stroke": "#ff80007f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "ofcSDS": { + "data": { + "stroke": "#ff80003f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "bmiSDS": { + "data": { + "stroke": "#ff80001f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "midParentalCentile": { + "data": { + "stroke": "#ff8000", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeOpacity": 1 + } + }, + "midParentalSDS": { + "data": { + "stroke": "#ff8000", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeOpacity": 1, + "strokeDasharray": "2 5" + } + }, + "midParentalArea": { + "data": { + "fill": "#ffc080", + "opacity": 0.5 + } + }, + "measurementPoint": { + "data": { + "fill": "#000000" + } + }, + "measurementLinkLine": { + "data": { + "stroke": "#000000", + "strokeWidth": 1.25 + } + }, + "highlightedMeasurementFill": { + "data": { + "fill": "#ff8000" + } + }, + "toggleStyle": { + "activeColour": "#ff8000", + "inactiveColour": "#ffc080", + "fontFamily": "Arial", + "color": "#FFFFFF", + "fontSize": 14, + "fontWeight": "normal", + "fontStyle": "normal" + }, + "eventTextStyle": { + "name": "Montserrat", + "colour": "#000000", + "size": 14, + "style": "normal" + } +} \ No newline at end of file diff --git a/src/testParameters/styles/tanner3Styles.ts b/src/testParameters/styles/tanner3Styles.ts new file mode 100644 index 0000000..2b21bbb --- /dev/null +++ b/src/testParameters/styles/tanner3Styles.ts @@ -0,0 +1,317 @@ +import { AxisStyle, CentileStyle, ChartStyle, GridlineStyle, MeasurementStyle, SDSStyle } from "../../interfaces/StyleObjects" + +/* +The following styles are provided to the RCPCHChart component, and define the styles in the Tanner 3 theme +*/ + +export const Tanner3AxisStyles: AxisStyle = { + axisStroke: "#000000", + axisLabelTextStyle: { + name: "Arial", + colour: "#000000", + size: 10, + style: 'normal' + }, + tickLabelTextStyle: { + name: "Arial", + colour: "#000000", + size: 8, + style: 'normal' + } +} + +export const Tanner3ChartStyles: ChartStyle = { + backgroundColour: "#FFFFFF", + titleStyle: { + name: "Arial", + colour: "#000000", + size: 14, + style: 'bold' + }, + subTitleStyle: { + name: "Arial", + colour: "#000000", + size: 12, + style: 'italic' + }, + tooltipBackgroundColour: "#fdc300", + tooltipStroke: "#fdc300", + tooltipTextStyle: { + name: "Montserrat", + colour: "#000000", + size: 14, + style: 'normal' + }, + termFill: "#CDCDCD", + termStroke: "#CDCDCD", + toggleButtonInactiveColour: "#f59c99", + toggleButtonActiveColour: "#e60700", + toggleButtonTextStyle: { + name: "Arial", + colour: "#FFFFFF", + size: 14, + style: 'normal' + } +} + +export const Tanner3GridlineStyles: GridlineStyle = { + gridlines: true, + stroke: "#d9d9d9", + strokeWidth: 0.25, + dashed: false +} + +export const Tanner3CentileStyles: CentileStyle = { + sdsStroke: "#A9A9A9", + centileStroke: "#e60700", + delayedPubertyAreaFill: "#f59c99", + midParentalCentileStroke: "#e60700", + midParentalAreaFill: "#f59c99", +} + +export const Tanner3MeasurementStyles: MeasurementStyle = { + measurementFill: "#000000", + highlightedMeasurementFill: "#ff8000", + eventTextStyle: { + name: "Montserrat", + colour: "#000000", + size: 12, + style: 'normal' + } +} +export const Tanner3SDSStyles: SDSStyle = { + heightStroke: "#e60700ff", + weightStroke: "#e607007f", + ofcStroke: "#e607003f", + bmiStroke: "#e607001f", +} + +/* +The following styles are provided to the CentileChart component, and are a step downstream from the user. +The user style props, passed into the RCPCHChart component, have been processed by the makeAllStyles function and returned in this format +*/ + +export const Tanner3Styles = { + "chartMisc": { + "background": { + "fill": "#FFFFFF" + } + }, + "toolTipFlyout": { + "stroke": "#fdc300", + "fill": "#fdc300" + }, + "toolTipMain": { + "textAnchor": "end", + "strokeWidth": 0.25, + "fill": "#000000", + "fontFamily": "Montserrat", + "fontWeight": "normal" + }, + "chartTitle": { + "fontFamily": "Arial", + "color": "#000000", + "fontSize": 14, + "fontWeight": "bold", + "fontStyle": "normal" + }, + "chartSubTitle": { + "fontFamily": "Arial", + "color": "#000000", + "fontSize": 14, + "fontWeight": "normal", + "fontStyle": "normal" + }, + "termArea": { + "data": { + "fill": "#CDCDCD", + "stroke": "#CDCDCD" + } + }, + "xAxis": { + "axis": { + "stroke": "#000000", + "strokeWidth": 1 + }, + "axisLabel": { + "fontSize": 10, + "padding": 20, + "fill": "#000000", + "fontFamily": "Arial" + }, + "ticks": { + "stroke": "#000000" + }, + "tickLabels": { + "fontSize": 8, + "padding": 5, + "fill": "#000000", + "color": "#000000", + "fontFamily": "Arial" + }, + "grid": { + "stroke": "#d9d9d9", + "strokeWidth": 0.25, + "strokeDasharray": "" + } + }, + "xTicklabel": { + "fill": "#000000", + "fontSize": 8, + "fontFamily": "Arial" + }, + "yAxis": { + "axis": { + "stroke": "#000000", + "strokeWidth": 1 + }, + "axisLabel": { + "fontSize": 10, + "padding": 25, + "fill": "#000000", + "fontFamily": "Arial" + }, + "ticks": { + "stroke": "#000000" + }, + "tickLabels": { + "fontSize": 8, + "padding": 5, + "fill": "#000000", + "fontFamily": "Arial" + }, + "grid": { + "stroke": "#d9d9d9", + "strokeWidth": 0.25, + "strokeDasharray": "" + } + }, + "delayedPubertyArea": { + "data": { + "stroke": "#f59c99", + "fill": "#f59c99", + "strokeWidth": 1.5 + } + }, + "delayedPubertyThresholdLine": { + "data": { + "stroke": "#000000", + "strokeWidth": 1 + } + }, + "delayedPubertyThresholdLabel": { + "fontSize": 9, + "fill": "#000000", + "fontFamily": "Arial", + "textAlign": "start" + }, + "sdsLine": { + "data": { + "stroke": "#A9A9A9", + "strokeWidth": 1, + "strokeLinecap": "round", + "strokeDasharray": "5 5" + } + }, + "dashedCentile": { + "data": { + "stroke": "#e60700", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeDasharray": "5 5" + } + }, + "continuousCentile": { + "data": { + "stroke": "#e60700", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "centileLabel": { + "fill": "#e60700", + "fontSize": 6 + }, + "heightSDS": { + "data": { + "stroke": "#e60700ff", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "weightSDS": { + "data": { + "stroke": "#e607007f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "ofcSDS": { + "data": { + "stroke": "#e607003f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "bmiSDS": { + "data": { + "stroke": "#e607001f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "midParentalCentile": { + "data": { + "stroke": "#e60700", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeOpacity": 1 + } + }, + "midParentalSDS": { + "data": { + "stroke": "#e60700", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeOpacity": 1, + "strokeDasharray": "2 5" + } + }, + "midParentalArea": { + "data": { + "fill": "#f59c99", + "opacity": 0.5 + } + }, + "measurementPoint": { + "data": { + "fill": "#000000" + } + }, + "measurementLinkLine": { + "data": { + "stroke": "#000000", + "strokeWidth": 1.25 + } + }, + "highlightedMeasurementFill": { + "data": { + "fill": "#e60700" + } + }, + "toggleStyle": { + "activeColour": "#e60700", + "inactiveColour": "#f59c99", + "fontFamily": "Arial", + "color": "#FFFFFF", + "fontSize": 14, + "fontWeight": "normal", + "fontStyle": "normal" + }, + "eventTextStyle": { + "name": "Montserrat", + "colour": "#000000", + "size": 14, + "style": "normal" + } +} \ No newline at end of file diff --git a/src/testParameters/styles/traditionalBoysStyles.ts b/src/testParameters/styles/traditionalBoysStyles.ts new file mode 100644 index 0000000..b25434c --- /dev/null +++ b/src/testParameters/styles/traditionalBoysStyles.ts @@ -0,0 +1,317 @@ +import { AxisStyle, CentileStyle, ChartStyle, GridlineStyle, MeasurementStyle, SDSStyle } from "../../interfaces/StyleObjects" + +/* +The following styles are provided to the RCPCHChart component, and define the styles in the Traditional (Boys) theme +*/ + +export const traditionalBoyAxisStyles: AxisStyle = { + axisStroke: "#000000", + axisLabelTextStyle: { + name: "Arial", + colour: "#000000", + size: 10, + style: 'normal' + }, + tickLabelTextStyle: { + name: "Arial", + colour: "#000000", + size: 8, + style: 'normal' + } +} + +export const traditionalBoyChartStyles: ChartStyle = { + backgroundColour: "#FFFFFF", + titleStyle: { + name: "Arial", + colour: "#000000", + size: 14, + style: 'bold' + }, + subTitleStyle: { + name: "Arial", + colour: "#000000", + size: 12, + style: 'italic' + }, + tooltipBackgroundColour: "#66c8eb", + tooltipStroke: "#66c8eb", + tooltipTextStyle: { + name: "Montserrat", + colour: "#FFFFFF", + size: 14, + style: 'normal' + }, + termFill: "#CDCDCD", + termStroke: "#CDCDCD", + toggleButtonInactiveColour: "#66c8eb", + toggleButtonActiveColour: "#00a3de", + toggleButtonTextStyle: { + name: "Arial", + colour: "#FFFFFF", + size: 14, + style: 'normal' + } +} + +export const traditionalBoyGridlineStyles: GridlineStyle = { + gridlines: true, + stroke: "#d9d9d9", + strokeWidth: 0.25, + dashed: false +} + +export const traditionalBoyCentileStyles: CentileStyle = { + sdsStroke: "#A9A9A9", + centileStroke: "#00a3de", + delayedPubertyAreaFill: "#66c8eb", + midParentalCentileStroke: "#00a3de", + midParentalAreaFill: "#00a3de", +} + +export const traditionalBoyMeasurementStyles: MeasurementStyle = { + measurementFill: "#000000", + highlightedMeasurementFill: "#00a3de", + eventTextStyle: { + name: "Montserrat", + colour: "#000000", + size: 12, + style: 'normal' + } +} +export const traditionalBoySDSStyles: SDSStyle = { + heightStroke: "#a3deff", + weightStroke: "#a3de7f", + ofcStroke: "#a3de3f", + bmiStroke: "#a3de1f", +} + +/* +The following styles are provided to the CentileChart component, and are a step downstream from the user. +The user style props, passed into the RCPCHChart component, have been processed by the makeAllStyles function and returned in this format +*/ + +export const traditionalBoysStyles = { + "chartMisc": { + "background": { + "fill": "#FFFFFF" + } + }, + "toolTipFlyout": { + "stroke": "#66c8eb", + "fill": "#66c8eb" + }, + "toolTipMain": { + "textAnchor": "start", + "strokeWidth": 0.25, + "fill": "#FFFFFF", + "fontFamily": "Montserrat", + "fontWeight": "normal" + }, + "chartTitle": { + "fontFamily": "Arial", + "color": "#000000", + "fontSize": 14, + "fontWeight": "bold", + "fontStyle": "normal" + }, + "chartSubTitle": { + "fontFamily": "Arial", + "color": "#000000", + "fontSize": 14, + "fontWeight": "normal", + "fontStyle": "normal" + }, + "termArea": { + "data": { + "fill": "#CDCDCD", + "stroke": "#CDCDCD" + } + }, + "xAxis": { + "axis": { + "stroke": "#000000", + "strokeWidth": 1 + }, + "axisLabel": { + "fontSize": 10, + "padding": 20, + "fill": "000000", + "fontFamily": "Arial" + }, + "ticks": { + "stroke": "000000" + }, + "tickLabels": { + "fontSize": 8, + "padding": 5, + "fill": "000000", + "color": "000000", + "fontFamily": "Arial" + }, + "grid": { + "stroke": "#d9d9d9", + "strokeWidth": 0.25, + "strokeDasharray": "" + } + }, + "xTicklabel": { + "fill": "000000", + "fontSize": 8, + "fontFamily": "Arial" + }, + "yAxis": { + "axis": { + "stroke": "#000000", + "strokeWidth": 1 + }, + "axisLabel": { + "fontSize": 10, + "padding": 25, + "fill": "000000", + "fontFamily": "Arial" + }, + "ticks": { + "stroke": "000000" + }, + "tickLabels": { + "fontSize": 8, + "padding": 5, + "fill": "000000", + "fontFamily": "Arial" + }, + "grid": { + "stroke": "#d9d9d9", + "strokeWidth": 0.25, + "strokeDasharray": "" + } + }, + "delayedPubertyArea": { + "data": { + "stroke": "#66c8eb", + "fill": "#66c8eb", + "strokeWidth": 1.5 + } + }, + "delayedPubertyThresholdLine": { + "data": { + "stroke": "#000000", + "strokeWidth": 1 + } + }, + "delayedPubertyThresholdLabel": { + "fontSize": 9, + "fill": "000000", + "fontFamily": "Arial", + "textAlign": "start" + }, + "sdsLine": { + "data": { + "stroke": "#A9A9A9", + "strokeWidth": 1, + "strokeLinecap": "round", + "strokeDasharray": "5 5" + } + }, + "dashedCentile": { + "data": { + "stroke": "#00a3de", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeDasharray": "5 5" + } + }, + "continuousCentile": { + "data": { + "stroke": "#00a3de", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "centileLabel": { + "fill": "#00a3de", + "fontSize": 6 + }, + "heightSDS": { + "data": { + "stroke": "#00a3deff", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "weightSDS": { + "data": { + "stroke": "#00a3de7f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "ofcSDS": { + "data": { + "stroke": "#00a3de3f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "bmiSDS": { + "data": { + "stroke": "#00a3de1f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "midParentalCentile": { + "data": { + "stroke": "#00a3de", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeOpacity": 1 + } + }, + "midParentalSDS": { + "data": { + "stroke": "#00a3de", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeOpacity": 1, + "strokeDasharray": "2 5" + } + }, + "midParentalArea": { + "data": { + "fill": "#66c8eb", + "opacity": 0.5 + } + }, + "measurementPoint": { + "data": { + "fill": "#000000" + } + }, + "measurementLinkLine": { + "data": { + "stroke": "#000000", + "strokeWidth": 1.25 + } + }, + "highlightedMeasurementFill": { + "data": { + "fill": "#00a3de" + } + }, + "toggleStyle": { + "activeColour": "#00a3de", + "inactiveColour": "#66c8eb", + "fontFamily": "Arial", + "color": "#FFFFFF", + "fontSize": 14, + "fontWeight": "normal", + "fontStyle": "normal" + }, + "eventTextStyle": { + "name": "Montserrat", + "colour": "#000000", + "size": 14, + "style": "normal" + } +} \ No newline at end of file diff --git a/src/testParameters/styles/traditionalGirlsStyles.ts b/src/testParameters/styles/traditionalGirlsStyles.ts new file mode 100644 index 0000000..fcc08e5 --- /dev/null +++ b/src/testParameters/styles/traditionalGirlsStyles.ts @@ -0,0 +1,321 @@ +import { AxisStyle, CentileStyle, ChartStyle, GridlineStyle, MeasurementStyle, SDSStyle } from "../../interfaces/StyleObjects" + +/* +The following styles are provided to the RCPCHChart component, and define the styles in the Traditional (girls) theme +*/ + +export const traditionalGirlAxisStyles: AxisStyle = { + axisStroke: "#000000", + axisLabelTextStyle: { + name: "Arial", + colour: "#000000", + size: 10, + style: 'normal' + }, + tickLabelTextStyle: { + name: "Arial", + colour: "#000000", + size: 8, + style: 'normal' + } +} + +export const traditionalGirlChartStyles: ChartStyle = { + backgroundColour: "#FFFFFF", + titleStyle: { + name: "Arial", + colour: "#000000", + size: 14, + style: 'bold' + }, + subTitleStyle: { + name: "Arial", + colour: "#000000", + size: 12, + style: 'italic' + }, + tooltipBackgroundColour: "#df99c4", + tooltipStroke: "#df99c4", + tooltipTextStyle: { + name: "Montserrat", + colour: "#000000", + size: 14, + style: 'normal' + }, + termFill: "#CDCDCD", + termStroke: "#CDCDCD", + toggleButtonInactiveColour: "#df99c4", + toggleButtonActiveColour: "#c9559d", + toggleButtonTextStyle: { + name: "Arial", + colour: "#FFFFFF", + size: 14, + style: 'normal' + } +} + +export const traditionalGirlGridlineStyles: GridlineStyle = { + gridlines: true, + stroke: "#d9d9d9", + strokeWidth: 0.5, + dashed: false +} + +export const traditionalGirlCentileStyles: CentileStyle = { + sdsStroke: "#A9A9A9", + centileStroke: "#c9559d", + delayedPubertyAreaFill: "#df99c4", + midParentalCentileStroke: "#df99c4", + midParentalAreaFill: "##df99c4", +} + +export const traditionalGirlMeasurementStyles: MeasurementStyle = { + measurementFill: "#000000", + highlightedMeasurementFill: "#c9559d", + eventTextStyle: { + name: "Montserrat", + colour: "#000000", + size: 16, + style: 'normal' + } +} +export const traditionalGirlSDSStyles: SDSStyle = { + heightStroke: "#c9559dff", + weightStroke: "#c9559d7f", + ofcStroke: "#c9559d3f", + bmiStroke: "#c9559d1f", +} + + + + + +/* +The following styles are provided to the CentileChart component, and are a step downstream from the user. +The user style props, passed into the RCPCHChart component, have been processed by the makeAllStyles function and returned in this format +*/ + +export const traditionalGirlsStyles = { + "chartMisc": { + "background": { + "fill": "#FFFFFF" + } + }, + "toolTipFlyout": { + "stroke": "#df99c4", + "fill": "#df99c4" + }, + "toolTipMain": { + "textAnchor": "end", + "strokeWidth": 0.25, + "fill": "#000000", + "fontFamily": "Montserrat", + "fontWeight": "normal" + }, + "chartTitle": { + "fontFamily": "Arial", + "color": "#000000", + "fontSize": 14, + "fontWeight": "bold", + "fontStyle": "normal" + }, + "chartSubTitle": { + "fontFamily": "Arial", + "color": "#000000", + "fontSize": 14, + "fontWeight": "normal", + "fontStyle": "normal" + }, + "termArea": { + "data": { + "fill": "#CDCDCD", + "stroke": "#CDCDCD" + } + }, + "xAxis": { + "axis": { + "stroke": "#000000", + "strokeWidth": 1 + }, + "axisLabel": { + "fontSize": 10, + "padding": 20, + "fill": "000000", + "fontFamily": "Arial" + }, + "ticks": { + "stroke": "000000" + }, + "tickLabels": { + "fontSize": 8, + "padding": 5, + "fill": "000000", + "color": "000000", + "fontFamily": "Arial" + }, + "grid": { + "stroke": "#d9d9d9", + "strokeWidth": 0.25, + "strokeDasharray": "" + } + }, + "xTicklabel": { + "fill": "000000", + "fontSize": 8, + "fontFamily": "Arial" + }, + "yAxis": { + "axis": { + "stroke": "#000000", + "strokeWidth": 1 + }, + "axisLabel": { + "fontSize": 10, + "padding": 25, + "fill": "000000", + "fontFamily": "Arial" + }, + "ticks": { + "stroke": "000000" + }, + "tickLabels": { + "fontSize": 8, + "padding": 5, + "fill": "000000", + "fontFamily": "Arial" + }, + "grid": { + "stroke": "#d9d9d9", + "strokeWidth": 0.25, + "strokeDasharray": "" + } + }, + "delayedPubertyArea": { + "data": { + "stroke": "#df99c4", + "fill": "#df99c4", + "strokeWidth": 1.5 + } + }, + "delayedPubertyThresholdLine": { + "data": { + "stroke": "#000000", + "strokeWidth": 1 + } + }, + "delayedPubertyThresholdLabel": { + "fontSize": 9, + "fill": "000000", + "fontFamily": "Arial", + "textAlign": "start" + }, + "sdsLine": { + "data": { + "stroke": "#A9A9A9", + "strokeWidth": 1, + "strokeLinecap": "round", + "strokeDasharray": "5 5" + } + }, + "dashedCentile": { + "data": { + "stroke": "#c9559d", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeDasharray": "5 5" + } + }, + "continuousCentile": { + "data": { + "stroke": "#c9559d", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "centileLabel": { + "fill": "#c9559d", + "fontSize": 6 + }, + "heightSDS": { + "data": { + "stroke": "#c9559dff", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "weightSDS": { + "data": { + "stroke": "#c9559d7f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "ofcSDS": { + "data": { + "stroke": "#c9559d3f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "bmiSDS": { + "data": { + "stroke": "#c9559d1f", + "strokeWidth": 1.5, + "strokeLinecap": "round" + } + }, + "midParentalCentile": { + "data": { + "stroke": "#c9559d", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeOpacity": 1 + } + }, + "midParentalSDS": { + "data": { + "stroke": "#c9559d", + "strokeWidth": 1.5, + "strokeLinecap": "round", + "strokeOpacity": 1, + "strokeDasharray": "2 5" + } + }, + "midParentalArea": { + "data": { + "fill": "#df99c4", + "opacity": 0.5 + } + }, + "measurementPoint": { + "data": { + "fill": "#000000" + } + }, + "measurementLinkLine": { + "data": { + "stroke": "#000000", + "strokeWidth": 1.25 + } + }, + "highlightedMeasurementFill": { + "data": { + "fill": "#c9559d" + } + }, + "toggleStyle": { + "activeColour": "#c9559d", + "inactiveColour": "#df99c4", + "fontFamily": "Arial", + "color": "#FFFFFF", + "fontSize": 14, + "fontWeight": "normal", + "fontStyle": "normal" + }, + "eventTextStyle": { + "name": "Montserrat", + "colour": "#000000", + "size": 14, + "weight": "normal" + } +} \ No newline at end of file diff --git a/src/typography.scss b/src/typography.scss deleted file mode 100644 index 7674a1b..0000000 --- a/src/typography.scss +++ /dev/null @@ -1,5 +0,0 @@ -$font-family: 'Montserrat', Helvetica, Arial, sans-serif; - -@mixin font-defaults { - font-family: $font-family; -} diff --git a/src/variables.scss b/src/variables.scss deleted file mode 100644 index 04de4d7..0000000 --- a/src/variables.scss +++ /dev/null @@ -1,6 +0,0 @@ -// Variables -$rcpch-blue: #131111; -$rcpch-pink: #e0e0e0; -$rcpch-orange: #ff2323; -$rcpch-red: #005f20; -$rcpch-darkgrey: #c8cacc; diff --git a/util/create-component.js b/util/create-component.js deleted file mode 100644 index 8fd00c4..0000000 --- a/util/create-component.js +++ /dev/null @@ -1,34 +0,0 @@ - -const fs = require("fs"); -const templates = require("./templates"); - -const componentName = process.argv[2]; - -if (!componentName) { - console.error("Please supply a valid component name".red); - process.exit(1); -} - -console.log("Creating Component Templates with name: " + componentName); - -const componentDirectory = `./src/${componentName}`; - -if (fs.existsSync(componentDirectory)) { - console.error(`Component ${componentName} already exists.`.red); - process.exit(1); -} - -fs.mkdirSync(componentDirectory); - -const generatedTemplates = templates.map((template) => template(componentName)); - -generatedTemplates.forEach((template) => { - fs.writeFileSync( - `${componentDirectory}/${componentName}${template.extension}`, - template.content - ); -}); - -console.log( - "Successfully created component under: " + componentDirectory.green -); diff --git a/util/templates/component.js b/util/templates/component.js deleted file mode 100644 index 8104aa0..0000000 --- a/util/templates/component.js +++ /dev/null @@ -1,17 +0,0 @@ -module.exports = (componentName) => ({ - content: `// Generated with util/create-component.js -import * as React from "react"; - -import { ${componentName}Props } from "./${componentName}.types"; - -import "./${componentName}.scss"; - -const ${componentName}: React.FC<${componentName}Props> = ({ foo }) => ( -
{foo}
-); - -export default ${componentName}; - -`, - extension: `.tsx`, -}); diff --git a/util/templates/component.scss.js b/util/templates/component.scss.js deleted file mode 100644 index 40843b3..0000000 --- a/util/templates/component.scss.js +++ /dev/null @@ -1,13 +0,0 @@ -module.exports = (componentName) => ({ - content: `// Generated with util/create-component.js -@import "../variables.scss"; -@import "../typography.scss"; - -.foo-bar { - @include font-defaults; - - color: $harvey-green; -} -`, - extension: `.scss` -}); diff --git a/util/templates/component.stories.js b/util/templates/component.stories.js deleted file mode 100644 index 8cc2818..0000000 --- a/util/templates/component.stories.js +++ /dev/null @@ -1,15 +0,0 @@ -module.exports = (componentName) => ({ - content: `// Generated with util/create-component.js -import * as React from "react"; -import ${componentName} from "./${componentName}"; - -export default { - title: "${componentName}" -}; - -export const WithBar = () => <${componentName} foo="bar" />; - -export const WithBaz = () => <${componentName} foo="baz" />; -`, - extension: `.stories.tsx`, -}); diff --git a/util/templates/component.test.js b/util/templates/component.test.js deleted file mode 100644 index 922204b..0000000 --- a/util/templates/component.test.js +++ /dev/null @@ -1,31 +0,0 @@ -module.exports = (componentName) => ({ - content: `// Generated with util/create-component.js -import * as React from "react"; -import { render } from "@testing-library/react"; - -import ${componentName} from "./${componentName}"; -import { ${componentName}Props } from "./${componentName}.types"; - -describe("Test Component", () => { - let props: ${componentName}Props; - - beforeEach(() => { - props = { - foo: "bar" - }; - }); - - const renderComponent = () => render(<${componentName} {...props} />); - - it("should render foo text correctly", () => { - props.foo = "harvey was here"; - const { getByTestId } = renderComponent(); - - const component = getByTestId("${componentName}"); - - expect(component).toHaveTextContent("harvey was here"); - }); -}); -`, - extension: `.test.tsx`, -}); diff --git a/util/templates/component.types.js b/util/templates/component.types.js deleted file mode 100644 index a2bf177..0000000 --- a/util/templates/component.types.js +++ /dev/null @@ -1,8 +0,0 @@ -module.exports = (componentName) => ({ - content: `// Generated with util/create-component.js -export interface ${componentName}Props { - foo: string; -} -`, - extension: `.types.ts` -}); diff --git a/util/templates/index.js b/util/templates/index.js deleted file mode 100644 index e10df8c..0000000 --- a/util/templates/index.js +++ /dev/null @@ -1,13 +0,0 @@ -const component = require("./component"); -const componentTypes = require("./component.types"); -const componentStories = require("./component.stories"); -const componentTests = require("./component.test"); -const componentStyles = require("./component.scss"); - -module.exports = [ - component, - componentTypes, - componentStories, - componentTests, - componentStyles -];